@charset "UTF-8";
/*
---------------------------------------
reset
---------------------------------------
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

img,
picture {
  max-width: 100%;
  display: block;
}

img {
  height: auto;
}

picture {
  height: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

button,
input[type=button],
input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  box-shadow: none;
  background: none;
}

button {
  cursor: pointer;
  padding: 0;
  color: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

em {
  font-weight: inherit;
}

:root {
  --main-color: #33b8a6;
  --accent-color: #a00;
}

html {
  min-height: 100%;
  width: 100%;
  font-size: 62.5%;
}

body {
  font-family: "Zen Maru Gothic", "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO", sans-serif;
  font-weight: 400;
  text-justify: inter-ideograph;
  word-wrap: break-word;
  color: #5C3911;
  background: #fff;
  min-width: 375px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 1140px;
  font-size: 1.6rem;
}
@media (max-width: 959px) {
  body {
    min-width: 0;
  }
}

.container {
  position: relative;
  overflow: hidden;
  padding-top: 137px;
}
@media (max-width: 959px) {
  .container {
    padding-top: 0;
  }
}

p,
dt,
dd,
li {
  font-style: normal;
  line-height: 1.6;
  line-break: strict;
  overflow-wrap: break-word;
}

/*
----------------------------------------
flex
----------------------------------------
*/
.flex {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  -js-display: flex;
}

.flex.nowrap {
  flex-wrap: nowrap;
}

.flex.reverse {
  flex-direction: row-reverse;
}

.flex.item-center {
  align-items: center;
}

.flex-column {
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*
---------------------------------------
link
---------------------------------------
*/
a {
  font-size: inherit;
  font-weight: inherit;
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

/*
---------------------------------------
clear
---------------------------------------
*/
.clearfix:after {
  font-size: 0;
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: ".";
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*\*/
  /*/
     height: auto;
     overflow: hidden;
     /**/
}

*:first-child + html .clearfix {
  zoom: 1;
}

/* IE7 */
/*
---------------------------------------
common
---------------------------------------
*/
.pc {
  display: block !important;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .pc {
    display: none !important;
  }
}

.tab {
  display: none !important;
}
@media (max-width: 959px) {
  .tab {
    display: block !important;
  }
}
@media (max-width: 750px) {
  .tab {
    display: block !important;
  }
}

.sp {
  display: none !important;
}
@media (max-width: 750px) {
  .sp {
    display: block !important;
  }
}

.inline-pc {
  display: inline-block !important;
}
@media (max-width: 750px) {
  .inline-pc {
    display: none !important;
  }
}

.inline-sp {
  display: none !important;
}
@media (max-width: 750px) {
  .inline-sp {
    display: inline-block !important;
  }
}

.inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  word-wrap: break-word;
  word-break: break-all;
}
@media (max-width: 750px) {
  .inner {
    padding-inline: 1.5rem;
  }
}
.inner--s {
  max-width: 990px;
}
.inner--l {
  max-width: 1240px;
}

span {
  font-size: inherit;
  font-weight: inherit;
}

.img {
  line-height: 0;
}

.en {
  font-weight: 700;
}

.mid {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

.ofi {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ofi-contain {
  object-fit: contain;
}

@media (max-width: 750px) {
  .no-telLink a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
    pointer-events: none;
  }
}
.anc {
  margin-top: -137px;
  padding-top: 137px;
}
@media (max-width: 959px) {
  .anc {
    margin-top: 0;
    padding-top: 0;
  }
}

.capitalize {
  text-transform: capitalize;
}

.chevron-right-svg {
  fill: #EF8862;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.breadcrumbsWrap {
  padding-block: 0.6rem;
  background: #E9E5E0;
}
@media (max-width: 750px) {
  .breadcrumbsWrap {
    padding-block: 0.2rem;
  }
}

#breadcrumbs {
  font-size: 1.4rem;
}
@media (max-width: 750px) {
  #breadcrumbs {
    font-size: 1.2rem;
  }
}
#breadcrumbs a {
  text-decoration: underline;
}
#breadcrumbs .space {
  display: inline-block;
  margin: 0 4px;
  background: #fff;
  width: 10px;
  height: 10px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: relative;
}
@media (max-width: 750px) {
  #breadcrumbs .space {
    margin: 0 3px;
    width: 8px;
    height: 8px;
  }
}

.c-block__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
}
@media (max-width: 750px) {
  .c-block__list {
    gap: 3.8rem;
  }
}

.c-block__item {
  display: grid;
  grid-template-columns: auto 470px 1fr;
  grid-template-areas: "c-block__catch c-block__img c-block__txtbox";
  gap: 0;
}
@media (max-width: 959px) {
  .c-block__item {
    grid-template-columns: auto 186px 1fr;
  }
}
@media (max-width: 750px) {
  .c-block__item {
    grid-template-columns: auto 1fr;
    grid-template-rows: max-content 1fr;
    gap: 0px 0px;
    grid-template-areas: "c-block__catch c-block__img" "c-block__catch c-block__txtbox";
    justify-content: center;
    justify-items: stretch;
  }
}
.c-block__item--reverse {
  grid-template-columns: 1fr auto 470px;
  grid-template-areas: "c-block__txtbox c-block__catch c-block__img";
}
@media (max-width: 959px) {
  .c-block__item--reverse {
    grid-template-columns: 1fr auto 186px;
  }
}
@media (max-width: 750px) {
  .c-block__item--reverse {
    grid-template-columns: auto 1fr;
    grid-template-areas: "c-block__catch c-block__img" "c-block__catch c-block__txtbox";
  }
}
.c-block__item--reverse .c-block__txtbox {
  padding-left: 0;
  padding-right: 5.6rem;
}
@media (max-width: 959px) {
  .c-block__item--reverse .c-block__txtbox {
    padding-right: 2rem;
  }
}
@media (max-width: 750px) {
  .c-block__item--reverse .c-block__txtbox {
    padding-right: 0;
  }
}

.c-block__catch {
  margin-right: 0.7rem;
  margin-top: 3.8rem;
  grid-area: c-block__catch;
}
@media (max-width: 959px) {
  .c-block__catch {
    margin-top: 0;
  }
}
@media (max-width: 750px) {
  .c-block__catch {
    margin-right: 0.6rem;
    margin-top: 2rem;
    justify-self: end;
    line-height: 1.3;
  }
}

.c-block__img {
  aspect-ratio: 1/1;
  grid-area: c-block__img;
}
@media (max-width: 750px) {
  .c-block__img {
    justify-self: start;
  }
}
.c-block__img img {
  width: 100%;
  border-radius: 40px;
}
@media (max-width: 750px) {
  .c-block__img img {
    border-radius: 24px;
  }
}

.c-block__txtbox {
  grid-area: c-block__txtbox;
  padding-left: 5.6rem;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 959px) {
  .c-block__txtbox {
    padding-left: 2rem;
    padding-top: 0;
    display: block;
  }
}
@media (max-width: 750px) {
  .c-block__txtbox {
    padding-top: 1.4rem;
    padding-left: 0;
  }
}

.c-block__ttl {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.53;
  margin-bottom: 2.4rem;
}
@media (max-width: 750px) {
  .c-block__ttl {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
}

.c-block__btn {
  margin-top: 3.9rem;
}
@media (max-width: 750px) {
  .c-block__btn {
    margin-top: 2rem;
  }
}

.c-box-01 {
  border-radius: 20px;
  border: 3px solid #E9E5E0;
  padding: 4.8rem 5.5rem;
  position: relative;
}
@media (max-width: 750px) {
  .c-box-01 {
    padding: 4rem 2rem;
  }
}

.c-box-01__ttl {
  position: absolute;
  top: -1.3rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 750px) {
  .c-box-01__ttl {
    top: -1.2rem;
  }
}
.c-box-01__ttl span {
  background: #fff;
  padding-inline: 2.4rem;
  display: inline-block;
  font-size: 2.2rem;
  font-weight: bold;
}
@media (max-width: 750px) {
  .c-box-01__ttl span {
    font-size: 1.8rem;
    padding-inline: 2rem;
  }
}
.c-box-01__ttl--bgBrown span {
  background: #F6F5F2;
}
.c-box-01__ttl--orange span {
  color: #EF8862;
}
.c-box-01__ttl--blue span {
  color: #44a9d4;
}

.c-btn-01__link {
  background: #fff;
  display: grid;
  place-items: center;
  width: fit-content;
  width: 380px;
  height: 60px;
  border: 1px solid #5C3911;
  padding-inline: 57px;
  text-align: center;
  font-weight: bold;
  border-radius: 60px;
  transition: all 0.3s ease-out;
  position: relative;
}
@media (max-width: 750px) {
  .c-btn-01__link {
    width: 100%;
    max-width: 83vw;
    font-size: 1.5rem;
  }
}
.c-btn-01__link:before {
  content: "";
  background: #9B8D82;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 2.4rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
}
@media (hover: hover) {
  .c-btn-01__link:where(:any-link, :enabled, summary):hover {
    background: #9B8D82;
    color: #fff;
    border-color: #9B8D82;
  }
  .c-btn-01__link:where(:any-link, :enabled, summary):hover:before {
    transform: translateY(-50%) scale(1.4);
    background: #fff;
  }
}

.c-btn-02 {
  text-align: right;
}

.c-btn-02__link {
  font-size: 1.5rem;
  font-weight: 500;
  display: inline-block;
  background: url(../img/news/btn-02-dot@2x.png) no-repeat center bottom/100%;
  padding-bottom: 5px;
  padding-left: 1.7rem;
  position: relative;
  transition: color 0.3s ease-out;
}
.c-btn-02__link:before {
  content: "";
  background: #EF8862;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 44%;
  transform: translateY(-50%);
}

.c-dl-01 {
  border-top: 2px solid #9B8D82;
}
.c-dl-01 .row {
  display: grid;
  grid-template-columns: 15em 1fr;
  gap: 0 8.5rem;
  align-items: center;
  border-bottom: 1px dashed #9b8d82;
  padding-block: 2.4rem;
}
@media (max-width: 959px) {
  .c-dl-01 .row {
    grid-template-columns: 10em 1fr;
  }
}
@media (max-width: 750px) {
  .c-dl-01 .row {
    grid-template-columns: 6em 1fr;
    gap: 0 1.5rem;
    padding-block: 1.5rem;
  }
}
.c-dl-01 dt {
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 750px) {
  .c-dl-01 dt {
    font-size: 1.6rem;
    text-align: left;
  }
}
.c-dl-01 dd {
  font-size: 1.6rem;
  line-height: 1.875;
}
.c-dl-01 dd p {
  line-height: 1.875;
}

.addressWrap {
  display: flex;
  align-items: center;
}
@media (max-width: 750px) {
  .addressWrap {
    display: block;
  }
}

.address__txt {
  padding-right: 2rem;
}
@media (max-width: 750px) {
  .address__txt {
    padding-right: 0;
    margin-bottom: 1rem;
  }
}

.address__btn .c-btn-01__link {
  width: 200px;
  height: 40px;
  font-size: 1.4rem;
  padding-inline: 27px 10px;
  border-color: #5C3911;
}
.address__btn .c-btn-01__link:before {
  width: 0.6rem;
  height: 0.6rem;
  background: #EF8862;
  left: 2rem;
}

.c-heading-01 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 750px) {
  .c-heading-01 {
    font-size: 2.5rem;
  }
}

.c-heading-02 {
  font-size: 2.6rem;
  font-weight: bold;
  padding-left: 1.8rem;
  position: relative;
}
@media (max-width: 750px) {
  .c-heading-02 {
    font-size: 2.1rem;
    padding-left: 1.3rem;
  }
}
.c-heading-02:before {
  content: "";
  background: #EF8862;
  width: 6px;
  height: 3.4rem;
  border-radius: 10px;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 750px) {
  .c-heading-02:before {
    height: 2.9rem;
  }
}

.c-heading-03 {
  font-size: 1.6rem;
  color: #9B8D82;
  font-weight: bold;
  display: inline-block;
  position: relative;
  padding-left: 1.8rem;
}
.c-heading-03:before {
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #EF8862;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.c-heading-03--vertical {
  padding-left: 0;
  padding-top: 1.8rem;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.c-heading-03--vertical:before {
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
  transform: translateY(0);
}

.c-heading-04 {
  font-weight: bold;
  text-align: center;
  line-height: 1.7;
  position: relative;
  padding-bottom: 1.6rem;
}
@media (max-width: 750px) {
  .c-heading-04 {
    line-height: 1.5;
    padding-bottom: 1rem;
  }
}
.c-heading-04:before {
  content: "";
  background: #EF8862;
  width: 40px;
  height: 3px;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -3px;
}
@media (max-width: 750px) {
  .c-heading-04:before {
    width: 30px;
  }
}
.c-heading-04 .small {
  font-size: 2.4rem;
}
@media (max-width: 750px) {
  .c-heading-04 .small {
    font-size: 1.6rem;
  }
}
.c-heading-04 .big {
  font-size: 3.6rem;
  color: #EF8862;
}
@media (max-width: 750px) {
  .c-heading-04 .big {
    font-size: 2.4rem;
  }
}

.c-ul-01 li {
  line-height: 1.875;
  position: relative;
  padding-left: 1.2em;
}
.c-ul-01 li:before {
  content: "";
  background: #EF8862;
  width: 0.6rem;
  height: 0.6rem;
  display: block;
  position: absolute;
  border-radius: 50%;
  left: 0;
  top: 0.8em;
  border-radius: 50%;
}
.c-ul-01 li:not(:last-child) {
  margin-bottom: 0.6rem;
}

.c-pageNav {
  background: #fff;
  border-radius: 0 0 160px 160px;
  padding-block: 4.7rem 6rem;
  margin-bottom: 7.7rem;
}
@media (max-width: 959px) {
  .c-pageNav {
    border-radius: 0 0 80px 80px;
  }
}
@media (max-width: 750px) {
  .c-pageNav {
    padding-block: 3.6rem 0;
    margin-bottom: 5rem;
    background: none;
  }
}

.c-pageNav__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, calc(25% - 1.5rem));
  justify-content: center;
  gap: 0 2rem;
}
@media (max-width: 959px) {
  .c-pageNav__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
  }
}
@media (max-width: 750px) {
  .c-pageNav__list {
    grid-template-columns: 1fr;
    gap: 17px 0;
    background: #fff;
    border: 1px solid #2E201D;
    border-radius: 30px;
    padding: 3rem 3.6rem;
    width: 89.5%;
    margin-inline: auto;
  }
}

.c-pageNav__item .c-btn-01__link {
  width: 100%;
  padding-inline: 2.9rem 0;
}
@media (max-width: 750px) {
  .c-pageNav__item .c-btn-01__link {
    background: none;
    border: none;
    padding-inline: 2.2rem 0;
    height: auto;
    place-items: center start;
    font-size: 1.6rem;
  }
}
.c-pageNav__item .c-btn-01__link:before {
  left: 2.9rem;
}
@media (max-width: 750px) {
  .c-pageNav__item .c-btn-01__link:before {
    left: 0;
  }
}

.c-pageTtl {
  height: 170px;
}
@media (max-width: 750px) {
  .c-pageTtl {
    height: 117px;
  }
}
.c-pageTtl .inner {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.c-pageTtl__heading__ja {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 0;
  margin-bottom: 1rem;
}
@media (max-width: 959px) {
  .c-pageTtl__heading__ja {
    font-size: 3rem;
  }
}
@media (max-width: 750px) {
  .c-pageTtl__heading__ja {
    font-size: 2.6rem;
  }
}

.c-petsitter__itemWrap:not(:last-child) {
  margin-bottom: 5.6rem;
}
@media (max-width: 750px) {
  .c-petsitter__itemWrap:not(:last-child) {
    margin-bottom: 4rem;
  }
}

.c-petsitter__item {
  display: grid;
  grid-template-columns: auto 470px 1fr;
  align-items: start;
  gap: 0;
}
@media (max-width: 959px) {
  .c-petsitter__item {
    grid-template-columns: auto 186px 1fr;
  }
}
@media (max-width: 750px) {
  .c-petsitter__item {
    grid-template-columns: auto 1fr;
    grid-template-rows: max-content 1fr;
    gap: 0px 0px;
    grid-template-areas: "c-petsitter__catch c-petsitter__img" "c-petsitter__catch c-petsitter__txtbox";
    justify-content: center;
    justify-items: stretch;
  }
}

.c-petsitter__catch {
  margin-right: 0.7rem;
  margin-top: 3.8rem;
}
@media (max-width: 959px) {
  .c-petsitter__catch {
    margin-top: 0;
  }
}
@media (max-width: 750px) {
  .c-petsitter__catch {
    line-height: 1.2;
    margin-top: 2.3rem;
    justify-self: end;
    grid-area: c-petsitter__catch;
  }
}

.c-petsitter__img {
  aspect-ratio: 1/1;
  border-radius: 40px;
  overflow: hidden;
}
@media (max-width: 750px) {
  .c-petsitter__img {
    border-radius: 24px;
    justify-self: start;
    grid-area: c-petsitter__img;
  }
}
.c-petsitter__img img {
  border-radius: 40px;
}
@media (max-width: 750px) {
  .c-petsitter__img img {
    border-radius: 24px;
  }
}

.c-petsitter__txtbox {
  padding-left: 5.6rem;
}
@media (max-width: 959px) {
  .c-petsitter__txtbox {
    padding-left: 2rem;
  }
}
@media (max-width: 750px) {
  .c-petsitter__txtbox {
    grid-area: c-petsitter__txtbox;
    padding-top: 0.8rem;
    padding-left: 0;
  }
}

.c-petsitter__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  margin-bottom: 1rem;
}
@media (max-width: 750px) {
  .c-petsitter__tags {
    gap: 0.5rem 0.8rem;
    margin-bottom: 0.5rem;
  }
}

.c-petsitter__tag {
  display: inline-flex;
  align-items: center;
  background: #887E7B;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 0.2rem 1.4rem;
  border-radius: 100px;
  white-space: nowrap;
  line-height: 1.6;
}

.c-petsitter__name {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}
@media (max-width: 959px) {
  .c-petsitter__name {
    font-size: 1.8rem;
  }
}
@media (max-width: 750px) {
  .c-petsitter__name {
    font-size: 2.2rem;
  }
}

.c-petsitter__review {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 0;
  margin-bottom: 1.4rem;
}

.c-petsitter__stars {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-right: 0.4rem;
}

.c-petsitter__starIcon {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
}

.c-petsitter__score {
  font-size: 1.4rem;
  line-height: 1;
}

.c-petsitter__reviewCount {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 2.6rem;
}

.c-petsitter__commentIcon {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
}

.c-petsitter__count {
  font-size: 1.4rem;
  font-weight: normal;
}

.c-petsitter__info {
  display: flex;
  flex-direction: column;
}

.c-petsitter__infoRow {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.c-petsitter__infoRow:not(:last-child) {
  margin-bottom: 1.6rem;
}
@media (max-width: 750px) {
  .c-petsitter__infoRow:not(:last-child) {
    margin-bottom: 1.2rem;
  }
}

.c-petsitter__infoLabel {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0;
}

.c-petsitter__infoValue {
  font-size: 1.6rem;
  line-height: 1.6;
  background: #fff;
  border-radius: 8px;
  padding: 0.7rem 2.3rem;
}

.c-petsitter__btn {
  margin-top: 3.5rem;
}
@media (max-width: 750px) {
  .c-petsitter__btn {
    margin-top: 2.5rem;
  }
}
.c-petsitter__btn .c-btn-01__link {
  margin-inline: auto;
}

.c-point__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5.5rem;
}
@media (max-width: 959px) {
  .c-point__list {
    gap: 5rem 2rem;
  }
}
@media (max-width: 750px) {
  .c-point__list {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
}

.c-point__item {
  text-align: center;
}

.c-point__img {
  overflow: hidden;
  margin-bottom: 1.6rem;
}
@media (max-width: 750px) {
  .c-point__img {
    margin-bottom: 2.1rem;
  }
}
.c-point__img img {
  border-radius: 40px;
  margin-inline: auto;
}
@media (max-width: 750px) {
  .c-point__img img {
    width: 100%;
    border-radius: 24px;
  }
}

.c-point__ttl {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1.4rem;
}
@media (max-width: 750px) {
  .c-point__ttl {
    font-size: 2.2rem;
  }
}

.c-point__txt {
  text-align: left;
}

.c-tel__number {
  background: url(../img/common/icn_tel.svg) no-repeat left top 7px/20px;
  padding-left: 21px;
  font-size: 26px;
  letter-spacing: 0.04em;
  font-weight: 500;
  line-height: 1.25;
}

.c-tel__info {
  font-size: 13px;
  text-align: center;
  letter-spacing: 0.04em;
}

.c-ul-02 {
  display: grid;
  place-items: center;
}
.c-ul-02 li {
  width: fit-content;
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
  padding-left: 4rem;
}
@media (max-width: 750px) {
  .c-ul-02 li {
    font-size: 1.6rem;
    padding-left: 3rem;
  }
}
.c-ul-02 li:before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  display: block;
  position: absolute;
  left: 0;
  top: 0.3rem;
}
@media (max-width: 750px) {
  .c-ul-02 li:before {
    width: 2rem;
    height: 2rem;
    top: 0.2rem;
  }
}
.c-ul-02 li:not(:last-child) {
  margin-bottom: 2.1rem;
}
.c-ul-02--orange li:before {
  background: url(../img/guide/icn_check-orange@4x.png) no-repeat center center/cover;
}
.c-ul-02--blue li:before {
  background: url(../img/guide/icn_check-blue@4x.png) no-repeat center center/cover;
}

.post__content * {
  max-width: 100%;
}
.post__content h2 {
  font-size: 24px;
  border-top: 2px solid #887e7b;
  border-bottom: 2px solid #887e7b;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  padding: 31px 15px;
  margin: 30px 0 28px;
}
@media (max-width: 750px) {
  .post__content h2 {
    font-size: 22px;
    margin: 30px 0 15px;
    padding: 12px 15px;
    line-height: 1.47;
  }
}
.post__content h3 {
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 26px;
  border-bottom: 2px solid #887e7b;
  position: relative;
  margin: 30px 0 28px;
}
@media (max-width: 750px) {
  .post__content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
  }
}
.post__content h3:before {
  content: "";
  background: #EF8862;
  width: 100px;
  height: 2px;
  display: block;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.post__content h4 {
  font-size: 20px;
  font-weight: bold;
  padding-left: 21px;
  position: relative;
  margin: 30px 0 28px;
}
@media (max-width: 750px) {
  .post__content h4 {
    font-size: 18px;
    padding-left: 15px;
    margin: 30px 0 15px;
  }
}
.post__content h4:before {
  content: "";
  background: #EF8862;
  width: 6px;
  height: 30px;
  border-radius: 10px;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.post__content h5 {
  font-size: 18px;
  font-weight: bold;
  color: #EF8862;
  margin: 30px 0 20px;
  line-height: 1.5;
}
@media (max-width: 750px) {
  .post__content h5 {
    font-size: 17px;
    margin: 30px 0 15px;
  }
}
.post__content h6 {
  font-size: 16px;
  font-weight: bold;
  margin: 30px 0 20px;
  line-height: 1.5;
}
@media (max-width: 750px) {
  .post__content h6 {
    font-size: 16px;
    margin: 30px 0 15px;
  }
}
.post__content p {
  line-height: 2;
  margin: 28px 0 37px;
  word-wrap: break-word;
  word-break: break-all;
  font-weight: 400;
}
@media (max-width: 750px) {
  .post__content p {
    line-height: 1.78;
    margin: 15px 0 15px;
  }
}
.post__content p a {
  text-decoration: underline;
  color: #EF8862;
  font-weight: bold;
}
.post__content .full {
  margin: 2em 0;
}
.post__content .wp-caption-text {
  margin-top: 0;
}
.post__content strong,
.post__content b {
  font-weight: 700;
}
.post__content em {
  font-style: italic;
}
.post__content blockquote {
  background: #f6f5f2;
  position: relative;
  padding: 8px 50px;
  border-radius: 20px;
  margin: 50px 0;
}
@media (max-width: 750px) {
  .post__content blockquote {
    padding: 5px 24px;
    margin: 30px 0;
  }
}
.post__content blockquote:before {
  content: "";
  background: url(../img/news/icn_quote_top@2x.png) no-repeat center center/cover;
  width: 31px;
  height: 24px;
  position: absolute;
  top: -13px;
  left: 39px;
}
@media (max-width: 750px) {
  .post__content blockquote:before {
    left: 15px;
  }
}
.post__content ul,
.post__content ol {
  margin: 0 0 30px;
}
.post__content ul li {
  list-style: none;
  line-height: 1.875;
  padding: 0 0 0 1em;
  position: relative;
}
.post__content ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #EF8862;
  display: inline-block;
  margin-right: 11px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.8em;
}
.post__content ul li ul {
  padding-top: 5px;
  margin-bottom: 0;
}
.post__content ul li ul li {
  line-height: 1.875;
  padding: 0 0 0 20px;
}
.post__content ul li ul li:last-child {
  padding: 0 0 0 20px;
}
.post__content ul li ul li:before {
  border: 1px solid #EF8862;
  background: #fff;
}
.post__content ol {
  counter-reset: item;
  list-style-type: none;
}
.post__content ol li {
  list-style-type: none;
  list-style-position: inside;
  counter-increment: cnt;
  line-height: 1.875;
  position: relative;
  padding: 0 0 0 26px;
  margin-bottom: 1px;
}
.post__content ol li:before {
  position: absolute;
  left: 0;
  top: 0;
  counter-increment: item;
  content: counter(item) ".";
  font-size: 16px;
  font-weight: bold;
  color: #EF8862;
  text-align: center;
}
@media (max-width: 750px) {
  .post__content ol li:before {
    top: 1px;
  }
}
.post__content hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-top: 1px dashed #dedede;
  margin: 10px 0;
}
.post__content table {
  margin: 30px 0;
  border-collapse: collapse !important;
}
.post__content table tr:first-child th,
.post__content table tr:first-child td {
  background: #887e7b;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-bottom: none;
}
@media (max-width: 750px) {
  .post__content table tr:first-child th,
  .post__content table tr:first-child td {
    font-size: 14px;
  }
}
.post__content table tr:first-child th p,
.post__content table tr:first-child td p {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.857;
}
@media (max-width: 750px) {
  .post__content table tr:first-child th p,
  .post__content table tr:first-child td p {
    font-size: 14px;
  }
}
.post__content table tr:first-child th:first-child,
.post__content table tr:first-child td:first-child {
  border-radius: 10px 0 0 0;
}
.post__content table tr:first-child th:last-child,
.post__content table tr:first-child td:last-child {
  border-radius: 0 10px 0 0;
}
.post__content table tr:first-child th:not(:first-child),
.post__content table tr:first-child td:not(:first-child) {
  border-left: 1px solid #ddd7d2;
}
.post__content table tr:not(:first-child) th,
.post__content table tr:not(:first-child) td {
  border-right: 1px solid #ddd7d2;
  border-left: 1px solid #ddd7d2;
}
.post__content table tr th,
.post__content table tr td {
  font-size: 16px;
}
.post__content table th {
  font-weight: bold;
  color: #fff;
}
.post__content table th,
.post__content table td {
  text-align: center;
  font-size: 14px;
  padding: 20px 10px;
  vertical-align: middle;
  line-height: 1.857;
}
@media (max-width: 750px) {
  .post__content table th,
  .post__content table td {
    font-size: 13px;
    padding: 13px 5px;
  }
}
.post__content table th p,
.post__content table td p {
  margin: 0;
  font-size: 14px;
  line-height: 1.857;
  text-align: center;
}
@media (max-width: 750px) {
  .post__content table th p,
  .post__content table td p {
    font-size: 13px;
  }
}
.post__content table tr {
  border-bottom: 2px solid #edeae7;
}
.post__content .aligncenter {
  display: block;
  margin: 0 auto;
}
.post__content .alignright {
  float: right;
  margin-left: 45px;
}
@media (max-width: 750px) {
  .post__content .alignright {
    float: none;
    margin-left: 0;
  }
}
.post__content .alignleft {
  float: left;
  margin-right: 45px;
}
@media (max-width: 750px) {
  .post__content .alignleft {
    float: none;
    margin-right: 0;
  }
}
.post__content #image-details-caption {
  display: none;
}
.post__content .wp-caption {
  position: relative;
  width: 100% !important;
  margin-bottom: 0rem !important;
}
@media (max-width: 959px) {
  .post__content .wp-caption {
    padding: 0;
  }
}
.post__content .wp-caption.alignleft, .post__content .wp-caption.alignright {
  width: 34.5% !important;
}
@media (max-width: 750px) {
  .post__content .wp-caption.alignleft, .post__content .wp-caption.alignright {
    width: 100% !important;
  }
}
.post__content .wp-caption.alignleft {
  margin-left: 45px;
}
@media (max-width: 750px) {
  .post__content .wp-caption.alignleft {
    margin-left: 0;
  }
}
.post__content .wp-caption.alignright {
  margin-right: 45px;
}
@media (max-width: 750px) {
  .post__content .wp-caption.alignright {
    margin-right: 0;
  }
}
.post__content .wp-caption .wp-caption-text {
  margin-bottom: 0;
}
.post__content img[class*=wp-image-],
.post__content img[class*=attachment-] {
  height: auto;
  max-width: 100%;
  max-width: 840px;
  border-radius: 40px;
}
@media (max-width: 750px) {
  .post__content img[class*=wp-image-],
  .post__content img[class*=attachment-] {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 24px;
  }
}
.post__content img[class*=wp-image-].alignright,
.post__content img[class*=attachment-].alignright {
  height: auto;
  width: 46.5%;
}
@media (max-width: 750px) {
  .post__content img[class*=wp-image-].alignright,
  .post__content img[class*=attachment-].alignright {
    width: 100%;
    margin-bottom: 20px;
  }
}
.post__content img[class*=wp-image-].alignleft,
.post__content img[class*=attachment-].alignleft {
  height: auto;
  width: 46.5%;
}
@media (max-width: 750px) {
  .post__content img[class*=wp-image-].alignleft,
  .post__content img[class*=attachment-].alignleft {
    width: 100%;
    margin-bottom: 20px;
  }
}
.post__content .lkc-card {
  margin: 0;
}
.post__content .linkcard {
  max-width: 100%;
}
@media (max-width: 750px) {
  .post__content .linkcard {
    margin-bottom: 30px;
  }
}
.post__content .lkc-content {
  margin-top: 0;
}
@media (max-width: 750px) {
  .post__content .lkc-content {
    height: auto;
  }
}
.post__content .lkc-internal-wrap a {
  position: relative;
}
@media (max-width: 750px) {
  .post__content .lkc-internal-wrap a {
    padding-right: 30px;
  }
}
.post__content .lkc-internal-wrap a .lkc-url {
  position: relative;
}
.post__content .lkc-internal-wrap a .lkc-url:before {
  content: "";
  background: #EF8862;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 18px;
}
@media (max-width: 750px) {
  .post__content .lkc-internal-wrap a .lkc-url:before {
    width: 24px;
    height: 24px;
    right: 15px;
  }
}
.post__content .lkc-external-wrap a {
  position: relative;
}
@media (max-width: 750px) {
  .post__content .lkc-external-wrap a {
    padding-right: 3.5rem;
  }
}
.post__content .lkc-external-wrap .lkc-url {
  position: relative;
}
.post__content .lkc-external-wrap .lkc-url:before {
  content: "";
  background: url(../img/news/icn-external@2x.png) no-repeat center center/cover;
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 13px;
}
@media (max-width: 750px) {
  .post__content .lkc-external-wrap .lkc-url:before {
    width: 24px;
    height: 24px;
    right: 15px;
  }
}
.post__content .lkc-link,
.post__content .lkc-unlink {
  display: block;
  padding: 40px;
}
@media (max-width: 750px) {
  .post__content .lkc-link,
  .post__content .lkc-unlink {
    padding: 20px 15px;
  }
}
.post__content .lkc-thumbnail {
  margin-right: 34px;
  margin-bottom: 0;
}
@media (max-width: 750px) {
  .post__content .lkc-thumbnail {
    margin-right: 15px;
  }
}
.post__content .lkc-thumbnail img {
  border-radius: 20px;
}
.post__content .lkc-thumbnail-img {
  object-fit: cover;
}
@media (max-width: 750px) {
  .post__content .lkc-thumbnail-img {
    width: 65px;
  }
}
.post__content .lkc-title {
  font-size: 20px;
  font-weight: bold;
  padding-left: 21px;
  padding-block: 3px;
  position: relative;
  margin-bottom: 20px;
}
.post__content .lkc-title:before {
  content: "";
  background: #EF8862;
  width: 6px;
  height: 100%;
  border-radius: 10px;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.post__content .lkc-title-text {
  margin-bottom: 10px;
}
.post__content .lkc-url {
  background: #fff;
  border-radius: 8px;
  padding: 9px 14px;
  color: #EF8862;
  font-weight: bold;
  margin-bottom: 9px;
  text-decoration: none;
}
@media (max-width: 750px) {
  .post__content .lkc-url {
    font-size: 12px;
    line-height: 1.6;
  }
}
.post__content .lkc-excerpt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 2;
}
@media (max-width: 750px) {
  .post__content .lkc-excerpt {
    font-size: 13px;
  }
}

.secCriteria .inner {
  max-width: 1160px;
}

.secCriteria__heading {
  margin-bottom: 4.5rem;
}
@media (max-width: 750px) {
  .secCriteria__heading {
    margin-bottom: 2.5rem;
  }
}

.secCriteria__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 3.8rem;
}
@media (max-width: 959px) {
  .secCriteria__list {
    gap: 5rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 750px) {
  .secCriteria__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.4rem;
  }
}

.secCriteria__item {
  text-align: center;
}
@media (max-width: 750px) {
  .secCriteria__item {
    display: flex;
    align-items: center;
    text-align: left;
  }
}

.secCriteria__img {
  margin-bottom: 1.8rem;
}
@media (max-width: 750px) {
  .secCriteria__img {
    margin-bottom: 0;
    width: 12.9rem;
  }
}
.secCriteria__img img {
  margin-inline: auto;
  border-radius: 2.4rem;
}

.secCriteria__txt {
  white-space: nowrap;
}
@media (max-width: 959px) {
  .secCriteria__txt {
    white-space: normal;
  }
}
@media (max-width: 750px) {
  .secCriteria__txt {
    flex: 1;
    padding-left: 1.5rem;
    font-size: 1.5rem;
  }
}

.secCriteria__btn a {
  margin-inline: auto;
}

.secFaq {
  background: #E9E5E0;
  padding-block: 8.6rem 8rem;
  border-radius: 0 0 160px 160px;
}
@media (max-width: 959px) {
  .secFaq {
    border-radius: 0 0 80px 80px;
  }
}
@media (max-width: 750px) {
  .secFaq {
    padding-block: 6.4rem 7.5rem;
    border-radius: 0 0 40px 40px;
  }
}

.secFaq__heading {
  margin-bottom: 4.4rem;
}
@media (max-width: 750px) {
  .secFaq__heading {
    line-height: 1.5;
    margin-bottom: 2.5rem;
  }
}

.secFaq__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}
@media (max-width: 750px) {
  .secFaq__list {
    gap: 0.8rem;
  }
}

.secFaq__item {
  border-radius: 40px;
  overflow: hidden;
}
@media (max-width: 750px) {
  .secFaq__item {
    border-radius: 16px;
  }
}

.secFaq__item__q {
  background: #fff;
  cursor: pointer;
  width: 100%;
  position: relative;
}
.secFaq__item__q:before {
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #EF8862;
  content: "";
  display: block;
  position: absolute;
  right: 8rem;
  top: 52%;
  transform: translateY(-50%);
}
@media (max-width: 750px) {
  .secFaq__item__q:before {
    right: 5.7rem;
    top: 1.5rem;
    transform: translateY(0);
  }
}
.secFaq__item__q:after {
  content: "Open";
  font-weight: bold;
  color: #9B8D82;
  font-size: 1.6rem;
  position: absolute;
  right: 3.3rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 750px) {
  .secFaq__item__q:after {
    right: 1.4rem;
    top: 0.6rem;
    transform: translateY(0);
  }
}
.secFaq__item__q.on:before {
  background: url(../img/common/icn_close.svg) no-repeat center center/1.2rem;
  width: 1.2rem;
  height: 1.2rem;
}
.secFaq__item__q.on:after {
  content: "Close";
}

.secFaq__item__q__ttl {
  font-size: 1.8rem;
  font-weight: bold;
  padding-block: 3.1rem;
  padding-inline: 4.8rem 15rem;
  display: flex;
  position: relative;
  text-align: left;
}
@media (max-width: 750px) {
  .secFaq__item__q__ttl {
    padding: 3.7rem 1.5rem 1.5rem;
    line-height: 1.4;
  }
}

.secFaq__item__a {
  background: #fff;
}

.secFaq__item__a__ttl {
  font-size: 1.8rem;
  font-weight: bold;
  color: #EF8862;
  padding-inline: 4.8rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 750px) {
  .secFaq__item__a__ttl {
    padding-top: 0.5rem;
    padding-inline: 1.5rem;
    line-height: 1.4;
    margin-bottom: 0.7rem;
  }
}

.secFaq__item__a__txt {
  padding-inline: 4.8rem;
  padding-bottom: 3.1rem;
  position: relative;
}
@media (max-width: 750px) {
  .secFaq__item__a__txt {
    padding-inline: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.secFilter {
  background: #fff;
  border-radius: 0 0 160px 160px;
  padding-block: 8rem 8rem;
}
@media (max-width: 959px) {
  .secFilter {
    border-radius: 0 0 80px 80px;
  }
}
@media (max-width: 750px) {
  .secFilter {
    padding-block: 6rem 7.4rem;
    border-radius: 0 0 40px 40px;
  }
}

.secFilter__lead {
  margin-bottom: 3.2rem;
  line-height: 1.6;
}
@media (max-width: 750px) {
  .secFilter__lead {
    margin-bottom: 2.1rem;
  }
}

.secFilter__form {
  width: 100%;
}

.secFilter__tabs {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 2.2rem;
}
@media (max-width: 750px) {
  .secFilter__tabs {
    gap: 0;
    margin-bottom: 1.5rem;
  }
}

.secFilter__tab {
  padding: 0.7rem 1.2rem;
  min-width: 20rem;
  font-size: 2.2rem;
  color: #887E7B;
  font-weight: bold;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
@media (max-width: 750px) {
  .secFilter__tab {
    flex: 1;
    min-width: 0;
    font-size: 2.1rem;
    padding: 0.7rem 0;
  }
}
.secFilter__tab:before {
  content: "";
  background: #E9E5E0;
  width: 100%;
  height: 4px;
  display: block;
  border-radius: 4px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -4px;
}
.secFilter__tab:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -1.4rem;
  height: 1.4rem;
  aspect-ratio: 1.2;
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  background: #E9E5E0;
}
@media (max-width: 750px) {
  .secFilter__tab:after {
    bottom: -1.2rem;
    height: 1.2rem;
  }
}
.secFilter__tab--active {
  color: #5C3911;
}
.secFilter__tab--active:before, .secFilter__tab--active:after {
  background: #EF8862;
}

.secFilter__panels {
  background: #F6F5F2;
  border-radius: 2.4rem;
  padding: 4.4rem 6.4rem;
  margin-bottom: 3.2rem;
}
@media (max-width: 750px) {
  .secFilter__panels {
    border-radius: 1.6rem 1.6rem 0 0;
    padding: 3.7rem 1.5rem 2.4rem;
    margin-bottom: 0;
  }
}

.secFilter__panel[hidden] {
  display: none;
}

.secFilter__checkList {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 2rem 2rem;
}
@media (max-width: 959px) {
  .secFilter__checkList {
    display: flex;
    flex-wrap: wrap;
    gap: 1.7rem 2.5rem;
  }
}
@media (max-width: 750px) {
  .secFilter__checkList {
    display: flex;
    flex-wrap: wrap;
    gap: 1.7rem 2.5rem;
  }
}

.secFilter__checkItem {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}

.secFilter__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.secFilter__input:checked + .secFilter__checkLabel {
  color: #EF8862;
  font-weight: bold;
}
.secFilter__input:checked + .secFilter__checkLabel::before {
  background-color: #EF8862;
  background-image: url(../img/common/icn_check-white.svg);
  border-color: #EF8862;
}

.secFilter__checkLabel {
  position: relative;
  padding-left: 3rem;
  font-size: 1.6rem;
  font-weight: bold;
  transition: color 0.2s;
}
.secFilter__checkLabel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background-color: #fff;
  background-image: url(../img/common/icn_check-gray.svg);
  background-position: center;
  background-size: 1.5rem;
  background-repeat: no-repeat;
  border: 1px solid #9B8D82;
  transition: background 0.2s, border-color 0.2s;
}

@media (max-width: 750px) {
  .secFilter__btnWrap {
    background: #F6F5F2;
    border-radius: 0 0 1.6rem 1.6rem;
    padding: 0 1.5rem 3.2rem;
  }
}

.secFilter__btn .c-btn-01__link {
  margin-inline: auto;
}

.secFind {
  padding-block: 17rem 17rem;
  position: relative;
}
@media (max-width: 750px) {
  .secFind {
    background: #fff;
    padding-block: 43vw 7.4rem;
    border-radius: 0 0 40px 40px;
  }
}
.secFind:before {
  content: "";
  background: #fff;
  width: calc(100% - 59.3vw + 570px);
  height: 630px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 16rem 0 0 16rem;
  z-index: 0;
}
@media (max-width: 959px) {
  .secFind:before {
    width: 98%;
    border-radius: 8rem 0 0 8rem;
  }
}
@media (max-width: 750px) {
  .secFind:before {
    width: 100%;
    height: 40px;
    top: -40px;
    border-radius: 0;
    z-index: -1;
  }
}
.secFind:after {
  content: "Find Your Pet Sitter";
  font-size: 9.3rem;
  line-height: 1;
  color: #F6F5F2;
  font-weight: bold;
  position: absolute;
  right: 0;
  bottom: -0.3em;
  letter-spacing: 0.04em;
}
@media (max-width: 959px) {
  .secFind:after {
    font-size: 7.3rem;
    bottom: 2.4rem;
  }
}
@media (max-width: 750px) {
  .secFind:after {
    font-size: 20.8vw;
    line-height: 0.97;
    bottom: auto;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
  }
}
.secFind .inner {
  display: grid;
  grid-template-columns: 500px 1fr;
  grid-template-rows: 70px 0fr 60px;
  align-items: center;
  gap: 0 5.6rem;
  grid-template-areas: "secFind__img secFind__head" "secFind__img secFind__txt" "secFind__img secFind__btn";
  position: relative;
  z-index: 1;
}
@media (max-width: 959px) {
  .secFind .inner {
    grid-template-columns: 1fr 1fr;
    gap: 0 2.8rem;
  }
}
@media (max-width: 750px) {
  .secFind .inner {
    display: block;
  }
}

.secFind__head {
  grid-area: secFind__head;
}
.secFind__catch {
  margin-bottom: 1rem;
}
@media (max-width: 750px) {
  .secFind__catch {
    margin-bottom: 0.6rem;
  }
}

.secFind__heading {
  font-size: 2.6rem;
  font-weight: bold;
}
@media (max-width: 750px) {
  .secFind__heading {
    font-size: 2.4rem;
  }
}

.secFind__img {
  grid-area: secFind__img;
  border-radius: 40px;
  overflow: hidden;
  margin-left: 3rem;
}
@media (max-width: 750px) {
  .secFind__img {
    width: 100%;
    margin-left: 0;
    margin-bottom: 2.2rem;
  }
}

.secFind__txt {
  grid-area: secFind__txt;
  margin-top: 2.4rem;
  margin-bottom: 4rem;
}
@media (max-width: 750px) {
  .secFind__txt {
    margin-top: 1.6rem;
    margin-bottom: 2rem;
  }
}

.secFind__btn {
  grid-area: secFind__btn;
}
@media (max-width: 750px) {
  .secFind__btn .c-btn-01__link {
    margin-inline: auto;
  }
}

.secSearch .inner {
  position: relative;
}

.secSearch__heading {
  margin-bottom: 7.4rem;
}
@media (max-width: 750px) {
  .secSearch__heading {
    margin-bottom: 4.4rem;
  }
}

.secSearch__map {
  position: absolute;
  top: 13.7rem;
  right: 22rem;
  z-index: 0;
}
@media (max-width: 959px) {
  .secSearch__map {
    position: static;
    width: 70%;
    margin-inline: auto;
    margin-bottom: 5rem;
  }
}
@media (max-width: 750px) {
  .secSearch__map {
    width: 100%;
    margin-bottom: 2.6rem;
  }
}

.secSearch__tax {
  position: relative;
  z-index: 1;
  margin-bottom: 6.6rem;
}
@media (max-width: 750px) {
  .secSearch__tax {
    margin-bottom: 4.7rem;
  }
}
.secSearch__tax--area {
  margin-bottom: 7rem;
}
@media (max-width: 750px) {
  .secSearch__tax--area {
    margin-bottom: 5rem;
  }
}
.secSearch__tax--area .secSearch__tax__item:not(:last-child) {
  margin-bottom: 1rem;
}
@media (max-width: 750px) {
  .secSearch__tax--area .secSearch__tax__item:not(:last-child) {
    margin-bottom: 0;
  }
}
@media (max-width: 750px) {
  .secSearch__tax--scene {
    margin-bottom: 2.5rem;
  }
}

.secSearch__tax__ttl {
  margin-bottom: 2.9rem;
}
@media (max-width: 750px) {
  .secSearch__tax__ttl {
    margin-bottom: 2.4rem;
  }
}
.secSearch__tax__ttl--area {
  margin-bottom: 4.3rem;
}
@media (max-width: 750px) {
  .secSearch__tax__ttl--area {
    margin-bottom: 0.9rem;
  }
}

.secSearch__areaList {
  width: max-content;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 959px) {
  .secSearch__areaList {
    width: 100%;
  }
}
@media (max-width: 750px) {
  .secSearch__areaList {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.secSearch__areaList.item-01 {
  margin-bottom: 23rem;
}
@media (max-width: 959px) {
  .secSearch__areaList.item-01 {
    margin-bottom: 2rem;
  }
}
.secSearch__areaList.item-02 {
  margin-left: auto;
}
@media (max-width: 959px) {
  .secSearch__areaList.item-02 {
    margin-left: 0;
  }
}

.secSearch__areaList__ttl {
  border: 1px solid #fff;
  font-weight: bold;
  display: grid;
  place-items: center;
  color: #fff;
  padding: 0.7rem 0;
  border-radius: 2.1rem;
  width: 12rem;
  margin-bottom: 1.7rem;
}
@media (max-width: 750px) {
  .secSearch__areaList__ttl {
    width: 100%;
    padding: 0.6rem 0;
    margin-bottom: 1.4rem;
  }
}
.secSearch__areaList__ttl--hokkaido-tohoku {
  background: #29A9E0;
}
.secSearch__areaList__ttl--kanto {
  background: #7BD4F0;
}
.secSearch__areaList__ttl--hokuriku-koshinetsu {
  background: #6BCEB3;
}
.secSearch__areaList__ttl--tokai {
  background: #5EAC60;
}
.secSearch__areaList__ttl--kinki {
  background: #83B54C;
}
.secSearch__areaList__ttl--chugoku {
  background: #C4CF41;
}
.secSearch__areaList__ttl--shikoku {
  background: #F89D5A;
}
.secSearch__areaList__ttl--kyushu-okinawa {
  background: #F08087;
}

.secSearch__areaList__list {
  padding-left: 1.6rem;
}
@media (max-width: 750px) {
  .secSearch__areaList__list {
    padding-inline: 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
  }
}

.secSearch__tax__item {
  position: relative;
}

.secSearch__tax__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.secSearch__tax__input:checked + label::after {
  opacity: 1;
}
.secSearch__tax__input:checked + label .secSearch__tax__name {
  color: #EF8862;
}

.secSearch__tax__label {
  position: relative;
  padding-left: 3rem;
  cursor: pointer;
}
.secSearch__tax__label:before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  position: absolute;
  left: 0;
  background-color: #fff;
  background-image: url(../img/common/icn_check-gray.svg);
  background-position: center;
  background-size: 1.5rem;
  background-repeat: no-repeat;
  border: 1px solid #9B8D82;
}
.secSearch__tax__label:after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  position: absolute;
  left: 0;
  background-color: #EF8862;
  background-image: url(../img/common/icn_check-white.svg);
  background-position: center;
  background-size: 1.5rem;
  background-repeat: no-repeat;
  border: 1px solid #EF8862;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.secSearch__tax__name {
  font-weight: bold;
  transition: color 0.1s ease-out;
}

.secSearch__tax__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
}
@media (max-width: 750px) {
  .secSearch__tax__list {
    gap: 0.8rem 1.8rem;
  }
}

.secSearch__btn {
  margin-top: -0.5rem;
}
.secSearch__btn .c-btn-01__link {
  margin-inline: auto;
}

.secVoice__box {
  border: 9px solid #E9E5E0;
  border-radius: 80px;
  padding: 6rem 2rem 5.2rem;
}
@media (max-width: 959px) {
  .secVoice__box {
    border-radius: 40px;
  }
}
@media (max-width: 750px) {
  .secVoice__box {
    border-width: 6px;
    border-radius: 24px;
    padding: 4.3rem 1.5rem 4rem;
  }
}

.secVoice__heading {
  margin-bottom: 4.4rem;
}
@media (max-width: 750px) {
  .secVoice__heading {
    margin-bottom: 2.5rem;
  }
}

.secVoice__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5.6rem;
  max-width: 922px;
  margin-inline: auto;
  margin-bottom: 4rem;
}
@media (max-width: 959px) {
  .secVoice__list {
    gap: 2rem;
  }
}
@media (max-width: 750px) {
  .secVoice__list {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 750px) {
  .secVoice__item {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    grid-template-rows: max-content 1fr;
    gap: 0px 1.4rem;
    align-items: center;
    grid-template-areas: "secVoice__img secVoice__ttl" "secVoice__txt secVoice__txt";
  }
}

.secVoice__img {
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  width: 207px;
  margin-inline: auto;
  margin-bottom: 1.9rem;
}
@media (max-width: 750px) {
  .secVoice__img {
    grid-area: secVoice__img;
    margin-bottom: 0;
  }
}
.secVoice__img img {
  margin-inline: auto;
}

.secVoice__ttl {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
@media (max-width: 750px) {
  .secVoice__ttl {
    grid-area: secVoice__ttl;
    text-align: left;
    margin-bottom: 0;
  }
}

@media (max-width: 750px) {
  .secVoice__txt {
    grid-area: secVoice__txt;
    margin-top: 0.7rem;
  }
}
.secVoice__txt strong {
  font-weight: 400;
  background: linear-gradient(transparent 65%, #fce7e0 65%);
}

.secVoice__btn a {
  margin-inline: auto;
}

.page-nav {
  margin: 5.6rem auto 0;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 750px) {
  .page-nav {
    margin: 40px auto 0;
  }
}

.wp-pagenavi {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: stretch;
  -js-display: flex;
  text-align: center;
  position: relative;
  gap: 10px 0;
}

.wp-pagenavi a,
.wp-pagenavi > span {
  font-size: 25px;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  font-weight: bold;
  display: inline-grid;
  place-items: center;
  margin: 0 8px;
  line-height: 1;
  padding-bottom: 2px;
  background-color: #9B8D82;
  color: #fff;
  border: 1px solid #fff;
}
@media (max-width: 750px) {
  .wp-pagenavi a,
  .wp-pagenavi > span {
    margin: 0 5px;
  }
}

.wp-pagenavi a {
  transition: all 0.2s;
}

.wp-pagenavi a:not(.previouspostslink, .nextpostslink):hover {
  background: #EF8862;
}

.wp-pagenavi .page .icon,
.wp-pagenavi .previouspostslink .icon,
.wp-pagenavi .nextpostslink .icon {
  font-size: 20px;
  color: #44a9d4;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  background: none;
  border: none;
}

.wp-pagenavi .previouspostslink {
  background: url(../img/common/feather-arrow-left.svg) no-repeat center center/24px;
}

.wp-pagenavi .nextpostslink {
  background: url(../img/common/feather-arrow-right.svg) no-repeat center center/24px;
}

.wp-pagenavi .current {
  background: #EF8862;
}

.writtenby__ttl {
  font-size: 2.6rem;
  font-weight: bold;
  padding-left: 1.8rem;
  position: relative;
  margin-bottom: 21px;
}
@media (max-width: 750px) {
  .writtenby__ttl {
    font-size: 2.1rem;
    padding-left: 1.3rem;
  }
}
.writtenby__ttl:before {
  content: "";
  background: #EF8862;
  width: 6px;
  height: 3.4rem;
  border-radius: 10px;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 750px) {
  .writtenby__ttl:before {
    height: 2.9rem;
  }
}

.writtenby__box {
  padding: 36px 48px;
  display: -ms-flexbox;
  display: flex;
  border: 3px solid #E9E5E0;
  border-radius: 20px;
}
@media (max-width: 750px) {
  .writtenby__box {
    padding: 20px 15px;
    display: block;
  }
}

.writtenby__img {
  width: 180px;
  height: 180px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid #EF8862;
  overflow: hidden;
}
@media (max-width: 750px) {
  .writtenby__img {
    margin: 0 auto 10px;
  }
}

.writtenby__detail {
  flex: 1;
  padding-left: 26px;
}
@media (max-width: 750px) {
  .writtenby__detail {
    padding-left: 0;
  }
}

.writer__name {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.04em;
  padding-bottom: 4px;
}
@media (max-width: 750px) {
  .writer__name {
    font-size: 20px;
  }
}

.writer__info {
  line-height: 2;
  margin-bottom: 9px;
}

.writer__social {
  justify-content: flex-end;
}
.writer__social li {
  margin-left: 8px;
  border-radius: 50%;
}
@media (max-width: 750px) {
  .writer__social li {
    width: 30px;
    margin-left: 10px;
  }
}
.writer__social li img {
  border-radius: 50%;
}
.writer__social li.instagram img {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.st-footer {
  background: #E9E5E0;
  border-radius: 16rem 16rem 0 0;
  padding-block: 8rem 4rem;
  color: #887E7B;
}
@media (max-width: 959px) {
  .st-footer {
    border-radius: 8rem 8rem 0 0;
  }
}
@media (max-width: 750px) {
  .st-footer {
    padding-block: 3.6rem 1.5rem;
    border-radius: 4rem 4rem 0 0;
  }
}
.st-footer .inner {
  display: grid;
  grid-template-columns: 0.55fr 0.8fr 1fr;
  grid-template-rows: max-content, 1fr;
  gap: 0px 0;
  grid-template-areas: "st-footer__info st-footer__nav--01 st-footer__nav--03" "st-footer__copyright st-footer__nav--02 st-footer__nav--03";
}
@media (max-width: 750px) {
  .st-footer .inner {
    display: block;
    padding-inline: 0;
  }
}

.st-footer__info {
  grid-area: st-footer__info;
}
@media (max-width: 750px) {
  .st-footer__info {
    padding-inline: 1.5rem;
  }
}

.st-footer__logo {
  margin-bottom: 2.2rem;
}
@media (max-width: 750px) {
  .st-footer__logo {
    width: 218px;
    margin-bottom: 1.8rem;
  }
}

.st-footer__address {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
  font-size: 1.4rem;
  line-height: 1.59;
  margin-bottom: 3.8rem;
}
@media (max-width: 750px) {
  .st-footer__address {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    margin-bottom: 1.5rem;
  }
}

.st-footer__policy {
  font-size: 1.4rem;
  line-height: 1.59;
}
@media (max-width: 750px) {
  .st-footer__policy {
    padding-inline: 1.5rem;
    margin-bottom: 2.4rem;
  }
}
@media (hover: hover) {
  .st-footer__policy a:where(:any-link, :enabled, summary):hover {
    text-decoration: underline;
  }
}

.st-footer__nav {
  border-left: 2px solid #fff;
  padding-left: 2.3rem;
}
@media (max-width: 750px) {
  .st-footer__nav {
    padding-left: 0;
    border-left: none;
  }
}

.st-footer__nav--01 {
  grid-area: st-footer__nav--01;
  margin-bottom: 4rem;
}
@media (max-width: 750px) {
  .st-footer__nav--01 {
    border-top: 2px solid #fff;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }
}
@media (max-width: 750px) {
  .st-footer__nav--01 .st-footer__nav__item {
    border-bottom: 2px solid #fff;
  }
}
@media (max-width: 750px) {
  .st-footer__nav--01 .st-footer__nav__item:nth-of-type(odd) {
    border-right: 2px solid #fff;
  }
}
@media (max-width: 750px) {
  .st-footer__nav--01 .st-footer__nav__item a {
    display: grid;
    place-items: center start;
    height: 100%;
    padding: 1.6rem 1.5rem;
  }
}

.st-footer__nav--02 {
  grid-area: st-footer__nav--02;
  padding-right: 4.8rem;
}
@media (max-width: 750px) {
  .st-footer__nav--02 {
    padding-inline: 1.5rem;
    border-bottom: 2px solid #fff;
  }
}
@media (max-width: 750px) {
  .st-footer__nav--02 .st-footer__nav__item a {
    display: grid;
    place-items: center start;
    height: 100%;
    padding: 1.6rem 0;
  }
}

.st-footer__nav--03 {
  grid-area: st-footer__nav--03;
}
@media (max-width: 750px) {
  .st-footer__nav--03 {
    padding-inline: 1.5rem;
    border-bottom: 2px solid #fff;
    margin-bottom: 3rem;
  }
}
@media (max-width: 750px) {
  .st-footer__nav--03 .st-footer__nav__item span {
    display: grid;
    place-items: center start;
    height: 100%;
    padding: 1.6rem 0;
  }
}

.st-footer__nav__item {
  font-size: 1.5rem;
  font-weight: bold;
}
@media (max-width: 750px) {
  .st-footer__nav__item {
    font-size: 1.4rem;
    line-height: 1.2;
  }
}
.st-footer__nav__item:not(:last-child) {
  margin-bottom: 2.1rem;
}
@media (max-width: 750px) {
  .st-footer__nav__item:not(:last-child) {
    margin-bottom: 0;
  }
}
@media (hover: hover) {
  .st-footer__nav__item a:where(:any-link, :enabled, summary):hover {
    text-decoration: underline;
  }
}
@media (max-width: 750px) {
  .st-footer__nav__item--petsitter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
  }
}
@media (max-width: 750px) {
  .st-footer__nav__item--area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
  }
}

.st-footer__nav__accordion-btn {
  display: none;
}
@media (max-width: 750px) {
  .st-footer__nav__accordion-btn {
    display: block;
    width: 100%;
    height: 4.8rem;
    position: relative;
    right: -1.5rem;
    top: 0;
    background: url(../img/common/icn_triangle-down.svg) no-repeat right 1.5rem center/1rem;
    transition: transform 0.3s ease-out;
    border-radius: 0;
  }
  .st-footer__nav__accordion-btn[aria-expanded=true] {
    background: url(../img/common/icn_triangle-up.svg) no-repeat right 1.5rem center/1rem;
  }
}

@media (max-width: 750px) {
  .st-footer__nav__sub {
    padding-bottom: 1.5rem;
  }
}

.st-footer__nav__child:not(:last-child) {
  margin-bottom: 2.3rem;
}
@media (max-width: 750px) {
  .st-footer__nav__child:not(:last-child) {
    margin-bottom: 1.1rem;
  }
}
.st-footer__nav__child .child__ttl {
  font-size: 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media (max-width: 750px) {
  .st-footer__nav__child .child__ttl {
    font-size: 1.4rem;
  }
}
.st-footer__nav__child .child__ttl:after {
  content: "";
  background: #fff;
  width: 100%;
  height: 1px;
  display: block;
  flex: 1;
}
.st-footer__nav__child .child__item {
  font-size: 1.4rem;
  line-height: 1.59;
  display: inline-block;
}
.st-footer__nav__child .child__item:not(:last-child):after {
  content: "/";
  margin-inline: 0;
}
@media (hover: hover) {
  .st-footer__nav__child .child__item a:where(:any-link, :enabled, summary):hover {
    text-decoration: underline;
  }
}

.st-footer__copyright {
  grid-area: st-footer__copyright;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 750px) {
  .st-footer__copyright {
    display: block;
    text-align: center;
  }
}
.st-footer__copyright small {
  font-size: 1.4rem;
}

/*
---------------------------------------
header
---------------------------------------
*/
.st-header {
  min-width: 128rem;
  width: 100%;
  background: #fff;
  height: 13.7rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  padding-inline: 4.1rem 2.4rem;
}
@media (max-width: 1360px) {
  .st-header {
    padding-inline: 2rem;
  }
}
@media (max-width: 959px) {
  .st-header {
    padding-inline: 1.4rem;
    min-width: 0;
    position: relative;
    height: 7.3rem;
  }
}

.st-header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.st-header__logo {
  flex: 1;
  transition: transform 0.4s;
}
.st-header__logo a {
  transition: all 0.3s ease-out;
}
@media (hover: hover) {
  .st-header__logo a:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
@media (max-width: 959px) {
  .st-header__logo {
    width: 50.1vw;
    max-width: 18.7rem;
  }
}

.st-header__nav {
  height: 100%;
}
.st-header__nav .st-header__logo {
  display: none;
}
@media (max-width: 959px) {
  .st-header__nav .st-header__logo {
    display: block;
  }
}

.st-header__nav__content {
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}
@media (max-width: 959px) {
  .st-header__nav__content {
    display: block;
    height: auto;
    background: #fff;
    border: 1px solid #5C3911;
    border-radius: 3rem;
    margin-top: 3rem;
    padding: 3rem 3.6rem;
  }
}

.st-header__pageLink {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 959px) {
  .st-header__pageLink {
    display: block;
    width: 100%;
    margin-bottom: 3.4rem;
  }
}

.st-header__pageLink__item {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  position: relative;
  color: #5E5D5D;
}
@media (max-width: 959px) {
  .st-header__pageLink__item {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .st-header__pageLink__item:before {
    content: "";
    background: #9B8D82;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 959px) {
  .st-header__pageLink__item:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.st-header__pageLink__item:not(:last-child):after {
  content: "";
  background: #CBCBCB;
  width: 0.1rem;
  height: 1.8rem;
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 959px) {
  .st-header__pageLink__item:not(:last-child):after {
    display: none;
  }
}
.st-header__pageLink__item > a:not(.st-header__pageLink__btn) {
  display: block;
  padding: 1.3rem 1.6rem;
  position: relative;
}
@media (max-width: 959px) {
  .st-header__pageLink__item > a:not(.st-header__pageLink__btn) {
    padding: 0rem 1.6rem;
  }
}
.st-header__pageLink__item > a:not(.st-header__pageLink__btn):before {
  content: "";
  background: #E9E5E0;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
@media (hover: hover) {
  .st-header__pageLink__item > a:not(.st-header__pageLink__btn):where(:any-link, :enabled, summary):hover:before {
    opacity: 1;
  }
}

.st-header__pageLink__item--dropdown:hover .st-header__dropdown {
  opacity: 1;
  visibility: visible;
}
.st-header__pageLink__item--dropdown .st-header__dropdown.focused {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 959px) {
  .st-header__pageLink__item--dropdown:before {
    content: none;
  }
}

.st-header__pageLink__btn {
  display: flex;
  align-items: center;
  padding: 1.3rem 1.6rem;
  transition: color 0.3s ease-out;
}
@media (max-width: 959px) {
  .st-header__pageLink__btn {
    padding: 0rem 1.6rem;
    width: 100%;
    position: relative;
  }
  .st-header__pageLink__btn:before {
    content: "";
    background: #9B8D82;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (hover: hover) {
  .st-header__pageLink__btn:where(:any-link, :enabled, summary):hover + .st-header__dropdown {
    opacity: 1;
    visibility: visible;
  }
}
.st-header__dropdown {
  position: absolute;
  top: 4.5rem;
  left: 0rem;
  width: 49.7rem;
  background: #EAE5DD;
  border-radius: 2.4rem;
  box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out;
  padding: 1.6rem 0 1.6rem 2.4rem;
}
.st-header__dropdown.focused {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 959px) {
  .st-header__dropdown {
    display: none;
  }
}

.st-header__dropdown__list {
  display: grid;
  grid-template-columns: repeat(1fr);
  gap: 0;
}

.st-header__dropdown__item a {
  color: #2E201D;
  display: block;
  position: relative;
  height: 4rem;
  display: grid;
  place-items: center start;
  transition: all 0.3s ease-out;
  padding-left: 1.7rem;
}
@media (max-width: 959px) {
  .st-header__dropdown__item a {
    height: auto;
    padding: 1.3rem 6rem;
  }
}
.st-header__dropdown__item a:before {
  content: "";
  background: #9B8D82;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (hover: hover) {
  .st-header__dropdown__item a:where(:any-link, :enabled, summary):hover {
    text-decoration: underline;
  }
}

.st-header__nav__contact {
  order: -1;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding-bottom: 5px;
}
@media (max-width: 959px) {
  .st-header__nav__contact {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    order: 0;
    padding-bottom: 0;
    gap: 2.8rem;
  }
}

.st-header__tel {
  padding-top: 0.5rem;
}
@media (max-width: 959px) {
  .st-header__tel .c-tel__number {
    font-size: 3.2rem;
    background-size: 25px;
    padding-left: 29px;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 959px) {
  .st-header__tel .c-tel__info {
    font-size: 1.5rem;
  }
}

.st-header__search a {
  display: block;
  background: #FF6F4F;
  color: #fff;
  transition: all 0.3s ease-out;
  border: 1px solid #FF6F4F;
  font-weight: 500;
  padding: 1.3rem 2.4rem;
  border-radius: 5rem;
  letter-spacing: 0.04em;
}
@media (hover: hover) {
  .st-header__search a:where(:any-link, :enabled, summary):hover {
    background: #fff;
    color: #FF6F4F;
  }
}
@media (max-width: 959px) {
  .st-header__search a {
    font-size: 1.7rem;
    padding: 1.8rem 4.7rem;
  }
}

#sp-btn {
  display: none;
}

@media (max-width: 959px) {
  /* sp-btn */
  .scroll-prevent {
    position: fixed;
    width: 100%;
    height: 100%;
  }
  #sp-btn {
    position: fixed;
    z-index: 2;
    top: 1.3rem;
    right: 1.3rem;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 8px;
    cursor: pointer;
    background: #9B8D82;
    transition: background 0.4s;
    padding-bottom: 1.4rem;
  }
  #sp-btn span {
    width: 3rem;
    height: 0.2rem;
    transition: all 0.4s;
    background: #fff;
    border-radius: 0.2rem;
  }
  #sp-btn span:not(:last-child) {
    margin-bottom: 0.6rem;
  }
  #sp-btn #sp-btn-a,
  #sp-btn #sp-btn-a span {
    display: inline-block;
    box-sizing: border-box;
    transition: all 0.4s;
  }
  #sp-btn #sp-btn-a {
    display: block;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 3.5rem;
    height: 2.8rem;
    position: relative;
    padding: 0;
  }
  #sp-btn #sp-btn-a:after {
    content: "Menu";
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    position: absolute;
    bottom: -1.3rem;
    left: 50%;
    transform: translate(-50%, 0%);
  }
  #sp-btn.active #sp-btn-a:after {
    content: "Close";
  }
  #sp-btn #sp-btn-a:hover {
    opacity: 1;
  }
  #sp-btn.active span:nth-of-type(1) {
    -webkit-transform: translate(0, 0.4rem) rotate(-25deg);
    transform: translate(0, 0.4rem) rotate(-25deg);
  }
  #sp-btn.active span:nth-of-type(2) {
    -webkit-transform: translate(0, -0.4rem) rotate(25deg);
    transform: translate(0, -0.4rem) rotate(25deg);
  }
  /* g-anv */
  #g-nav {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    margin: 0 auto;
    overflow-x: hidden;
    overflow-y: scroll;
    width: 100%;
    max-width: 44rem;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    display: none;
    background: #fff;
    border-radius: 0;
    padding: 1.3rem 1.4rem 7rem;
  }
  #overlay {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
  }
}
#aboutus .c-block__img {
  aspect-ratio: 470/400;
}
#aboutus .secConcept {
  margin-bottom: 7.4rem;
}
@media (max-width: 750px) {
  #aboutus .secConcept {
    margin-bottom: 5rem;
  }
}
#aboutus .secConcept__heading {
  margin-bottom: 3.8rem;
}
@media (max-width: 750px) {
  #aboutus .secConcept__heading {
    margin-bottom: 2.5rem;
  }
}
#aboutus .secConcept__main {
  position: relative;
  margin-bottom: 3rem;
}
@media (max-width: 750px) {
  #aboutus .secConcept__main {
    margin-bottom: 2rem;
  }
}
#aboutus .secConcept__img img {
  border-radius: 80px;
}
@media (max-width: 959px) {
  #aboutus .secConcept__img img {
    border-radius: 40px;
  }
}
@media (max-width: 750px) {
  #aboutus .secConcept__img img {
    border-radius: 24px;
  }
}
#aboutus .secConcept__catch {
  line-height: 2;
  position: absolute;
  left: 6rem;
  bottom: 8.9rem;
}
@media (max-width: 959px) {
  #aboutus .secConcept__catch {
    left: 2rem;
    bottom: 2rem;
  }
}
@media (max-width: 750px) {
  #aboutus .secConcept__catch {
    left: 1rem;
    bottom: 1rem;
    line-height: 1.5;
  }
}
#aboutus .secConcept__catch span {
  font-size: 3rem;
  font-weight: bold;
  display: inline-block;
  background: #EF8862;
  color: #fff;
  padding: 0.2rem 1rem 0.2rem 2.7rem;
}
@media (max-width: 959px) {
  #aboutus .secConcept__catch span {
    font-size: 2.2rem;
  }
}
@media (max-width: 750px) {
  #aboutus .secConcept__catch span {
    font-size: 1.6rem;
    padding: 0rem 0.2rem 0rem 0.9rem;
  }
}
#aboutus .secConcept__catch span:not(:last-child) {
  margin-bottom: 7px;
}
@media (max-width: 750px) {
  #aboutus .secConcept__catch span:not(:last-child) {
    margin-bottom: 5px;
  }
}
#aboutus .secConcept__txt {
  text-align: center;
  line-height: 2;
}
@media (max-width: 750px) {
  #aboutus .secConcept__txt {
    text-align: left;
  }
}
#aboutus .secSecurity {
  margin-bottom: 10rem;
}
@media (max-width: 750px) {
  #aboutus .secSecurity {
    margin-bottom: 5rem;
  }
}
#aboutus .secSecurity__heading {
  margin-bottom: 3.8rem;
}
@media (max-width: 750px) {
  #aboutus .secSecurity__heading {
    margin-bottom: 2.5rem;
  }
}
#aboutus .secSecurity__lead {
  line-height: 1.875;
  margin-bottom: 4.2rem;
}
@media (max-width: 750px) {
  #aboutus .secSecurity__lead {
    margin-bottom: 2rem;
  }
}
#aboutus .secStandard {
  background: #E9E5E0;
  border-radius: 0 0 160px 160px;
  padding-block: 9.8rem 10rem;
  margin-bottom: 9.5rem;
}
@media (max-width: 959px) {
  #aboutus .secStandard {
    border-radius: 0 0 80px 80px;
  }
}
@media (max-width: 750px) {
  #aboutus .secStandard {
    border-radius: 0 0 40px 40px;
    padding-block: 5rem 5rem;
    margin-bottom: 0;
  }
}
#aboutus .secStandard__heading {
  margin-bottom: 3.8rem;
}
@media (max-width: 750px) {
  #aboutus .secStandard__heading {
    margin-bottom: 2.5rem;
  }
}
#aboutus .secStandard__lead {
  line-height: 1.875;
  text-align: center;
  margin-bottom: 4.2rem;
}
@media (max-width: 750px) {
  #aboutus .secStandard__lead {
    text-align: left;
    margin-bottom: 2rem;
  }
}
#aboutus .secFind {
  margin-bottom: 14.2rem;
}
@media (max-width: 750px) {
  #aboutus .secFind {
    margin-bottom: 5rem;
  }
}
#aboutus .secGreeting {
  margin-bottom: 11.5rem;
}
@media (max-width: 750px) {
  #aboutus .secGreeting {
    background: #fff;
    padding-block: 23vw 7.3rem;
    border-radius: 0 0 40px 40px;
    margin-bottom: 7.3rem;
    position: relative;
  }
}
@media (max-width: 750px) {
  #aboutus .secGreeting:before {
    content: "Greeting";
    line-height: 1;
    color: #F6F5F2;
    font-weight: bold;
    position: absolute;
    z-index: 0;
    font-size: 20.8vw;
    bottom: auto;
    top: 10.6vw;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
  }
}
#aboutus .secGreeting__heading {
  margin-bottom: 4.7rem;
}
@media (max-width: 750px) {
  #aboutus .secGreeting__heading {
    position: relative;
    margin-bottom: 2.5rem;
  }
}
#aboutus .secGreeting__cont {
  padding-block: 8.2rem 8rem;
  position: relative;
}
@media (max-width: 750px) {
  #aboutus .secGreeting__cont {
    padding-block: 0;
  }
}
#aboutus .secGreeting__cont:before {
  content: "";
  background: #fff;
  width: calc(100% - 59.3vw + 570px);
  height: 630px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0 16rem 16rem 0;
  z-index: 0;
}
@media (max-width: 959px) {
  #aboutus .secGreeting__cont:before {
    width: 98%;
    border-radius: 0 8rem 8rem 0;
  }
}
@media (max-width: 750px) {
  #aboutus .secGreeting__cont:before {
    width: 100%;
    height: 40px;
    top: -40px;
    border-radius: 0;
    z-index: -1;
  }
}
#aboutus .secGreeting__cont .inner {
  display: grid;
  grid-template-columns: 1fr 500px;
  grid-template-rows: max-content max-content 1fr;
  align-items: center;
  gap: 0 5.2rem;
  grid-template-areas: "secGreeting__head secGreeting__img" "secGreeting__txt secGreeting__img" "secGreeting__sign secGreeting__img";
  position: relative;
  z-index: 1;
}
@media (max-width: 959px) {
  #aboutus .secGreeting__cont .inner {
    grid-template-columns: 1fr 1fr;
    gap: 0 2.8rem;
  }
}
@media (max-width: 750px) {
  #aboutus .secGreeting__cont .inner {
    display: block;
  }
}
#aboutus .secGreeting__cont .inner:after {
  content: "Greeting";
  font-size: 12rem;
  line-height: 1;
  color: #F6F5F2;
  font-weight: bold;
  position: absolute;
  left: 2rem;
  bottom: -8.9rem;
  z-index: -1;
}
@media (max-width: 959px) {
  #aboutus .secGreeting__cont .inner:after {
    font-size: 7.3rem;
    bottom: -6.9rem;
  }
}
@media (max-width: 750px) {
  #aboutus .secGreeting__cont .inner:after {
    display: none;
  }
}
#aboutus .secGreeting__head {
  grid-area: secGreeting__head;
  padding-top: 4.3rem;
}
@media (max-width: 959px) {
  #aboutus .secGreeting__head {
    padding-top: 0;
  }
}
@media (max-width: 750px) {
  #aboutus .secGreeting__head {
    padding-top: 0;
  }
}
#aboutus .secGreeting__catch {
  margin-bottom: 1rem;
}
#aboutus .secGreeting__ttl {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.53;
}
#aboutus .secGreeting__img {
  grid-area: secGreeting__img;
  border-radius: 40px;
  overflow: hidden;
  margin-right: 3rem;
}
@media (max-width: 750px) {
  #aboutus .secGreeting__img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2.2rem;
  }
}
#aboutus .secGreeting__txt {
  grid-area: secGreeting__txt;
  margin-top: 2.2rem;
  margin-bottom: 1rem;
}
@media (max-width: 750px) {
  #aboutus .secGreeting__txt {
    margin-top: 1.6rem;
    margin-bottom: 2rem;
  }
}
#aboutus .secGreeting__sign {
  grid-area: secGreeting__sign;
  text-align: right;
  font-weight: bold;
  padding-bottom: 3rem;
}
@media (max-width: 750px) {
  #aboutus .secGreeting__sign {
    padding-bottom: 0;
  }
}
#aboutus .secCompany {
  margin-bottom: 10rem;
}
@media (max-width: 750px) {
  #aboutus .secCompany {
    margin-bottom: 7.5rem;
  }
}
#aboutus .secCompany__heading {
  margin-bottom: 4rem;
}
@media (max-width: 750px) {
  #aboutus .secCompany__heading {
    margin-bottom: 2.5rem;
  }
}

.serach_heading {
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: bold;
  text-align: left;
}
@media (max-width: 750px) {
  .serach_heading {
    font-size: 20px;
  }
}

.wrap {
  max-width: 1140px;
  padding: 38px 20px 117px;
  margin: 0 auto;
  position: relative;
  gap: 40px;
}
@media (max-width: 750px) {
  .wrap {
    padding: 20px 0 0;
    gap: 0;
  }
}

#main-contents {
  flex: 1;
}
@media (max-width: 959px) {
  #main-contents {
    width: 100%;
    margin-bottom: 50px;
  }
}
#main-contents .inner {
  padding: 0;
}
@media (max-width: 959px) {
  #main-contents .inner {
    padding: 0 20px;
  }
}

/*
---------------------------------------
archive-blog
---------------------------------------
*/
#archive-blog {
  background: #faf8f6;
}
#archive-blog .secNewsList__post:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  #archive-blog .secNewsList__post:not(:last-child) {
    margin-bottom: 20px;
  }
}
#archive-blog .secNewsList__post a {
  display: block;
  background: #fff;
  border-radius: 20px;
  padding: 48px 50px 50px;
  position: relative;
}
@media (max-width: 750px) {
  #archive-blog .secNewsList__post a {
    padding: 24px 15px;
  }
}
@media (hover: hover) {
  #archive-blog .secNewsList__post a:where(:any-link, :enabled, summary):hover .c-btn-02__link {
    color: #EF8862;
  }
}
#archive-blog .secNewsList__post .post__meta {
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 17px;
}
@media (max-width: 750px) {
  #archive-blog .secNewsList__post .post__meta {
    margin-bottom: 5px;
  }
}
#archive-blog .secNewsList__post .post__meta .c-item__date {
  font-size: 18px;
  font-weight: bold;
  color: #9B8D82;
  letter-spacing: 0.04em;
}
@media (max-width: 750px) {
  #archive-blog .secNewsList__post .post__meta .c-item__date {
    font-size: 14px;
  }
}
#archive-blog .secNewsList__post .post__meta .c-item__date .icon-clock {
  margin-right: 6px;
}
#archive-blog .secNewsList__post .post__cat {
  margin-right: 13px;
  display: flex;
  flex-wrap: wrap;
}
#archive-blog .secNewsList__post .post__cat .c-category {
  display: inline-block;
  color: #fff;
  background: #9B8D82;
  padding: 4px 16px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  border-radius: 20px;
}
@media (max-width: 750px) {
  #archive-blog .secNewsList__post .post__cat .c-category {
    font-size: 12px;
    padding: 1px 10px;
  }
}
#archive-blog .secNewsList__post .post__cat .c-category:not(:last-child) {
  margin-right: 10px;
}
#archive-blog .secNewsList__post .post__title {
  font-size: 24px;
  font-weight: bold;
  border-bottom: 4px dotted #E9E5E0;
  line-height: 1.5;
  padding-bottom: 17px;
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  #archive-blog .secNewsList__post .post__title {
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
}
#archive-blog .secNewsList__post .post__cont {
  align-items: flex-start;
}
@media (max-width: 750px) {
  #archive-blog .secNewsList__post .post__cont {
    display: block;
  }
}
#archive-blog .secNewsList__post .post__img {
  aspect-ratio: 1/1;
  width: 200px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 959px) {
  #archive-blog .secNewsList__post .post__img {
    width: 200px;
  }
}
@media (max-width: 750px) {
  #archive-blog .secNewsList__post .post__img {
    width: 100%;
  }
}
#archive-blog .secNewsList__post .post__img img {
  border-radius: 25px;
}
#archive-blog .secNewsList__post .post__excerpt {
  text-box: trim-both text;
  margin-bottom: 2.5rem;
}
@media (max-width: 750px) {
  #archive-blog .secNewsList__post .post__excerpt {
    margin-bottom: 1rem;
  }
}
#archive-blog .secNewsList__post .post__excerpt p {
  line-height: 2;
}
@media (max-width: 959px) {
  #archive-blog .secNewsList__post .post__excerpt p {
    line-height: 1.86;
  }
}
#archive-blog .secNewsList__post .post__txt {
  flex: 1;
  padding-left: 40px;
}
@media (max-width: 750px) {
  #archive-blog .secNewsList__post .post__txt {
    padding-left: 0;
    padding-top: 15px;
  }
}

/*
---------------------------------------
single-blog
---------------------------------------
*/
#single-blog {
  background: #faf8f6;
}
#single-blog .post__article {
  background: #fff;
  border-radius: 20px;
  position: relative;
  margin-bottom: 50px;
  overflow: hidden;
}
#single-blog .post__article:before {
  content: "";
  width: 100%;
  height: 3px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 750px) {
  #single-blog .post__article:before {
    content: none;
  }
}
#single-blog .post__article .post__head {
  padding: 50px 50px 0;
}
@media (max-width: 959px) {
  #single-blog .post__article .post__head {
    padding: 40px 20px 0;
  }
}
@media (max-width: 750px) {
  #single-blog .post__article .post__head {
    padding: 24px 15px 0;
  }
}
#single-blog .post__article .post__meta {
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}
@media (max-width: 750px) {
  #single-blog .post__article .post__meta {
    margin-bottom: 5px;
    gap: 10px;
  }
}
#single-blog .post__article .c-item__date {
  font-size: 18px;
  font-weight: bold;
  color: #9B8D82;
}
@media (max-width: 750px) {
  #single-blog .post__article .c-item__date {
    font-size: 14px;
  }
}
#single-blog .post__article .c-item__date .icon-clock {
  margin-right: 6px;
}
#single-blog .post__article .post__cat {
  display: flex;
  flex-wrap: wrap;
}
#single-blog .post__article .post__cat .c-category:not(:last-child) {
  margin-right: 10px;
}
#single-blog .post__article .post__cat .c-category a {
  display: inline-block;
  color: #fff;
  background: #887e7b;
  padding: 4px 16px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  border-radius: 20px;
}
@media (max-width: 750px) {
  #single-blog .post__article .post__cat .c-category a {
    font-size: 12px;
    padding: 1px 10px;
  }
}
#single-blog .post__article .post__title {
  font-size: 24px;
  font-weight: bold;
  border-bottom: 4px dotted #ddd7d2;
  line-height: 1.5;
  padding-bottom: 17px;
  margin-bottom: 50px;
}
@media (max-width: 750px) {
  #single-blog .post__article .post__title {
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
}
#single-blog .post__article .post__thumb {
  margin-bottom: 24px;
}
#single-blog .post__article .post__thumb img {
  width: 100%;
}
#single-blog .post__article .post__content {
  padding: 0 50px 5px;
}
@media (max-width: 959px) {
  #single-blog .post__article .post__content {
    padding: 0 20px 5px;
  }
}
@media (max-width: 750px) {
  #single-blog .post__article .post__content {
    padding: 0 15px 10px;
  }
}
#single-blog #ez-toc-container {
  width: 100%;
  background: #f6f5f2;
  position: relative;
  border-radius: 0;
  border: none;
  padding: 25px 41px 30px;
  margin-bottom: 50px;
}
@media (max-width: 750px) {
  #single-blog #ez-toc-container {
    padding: 20px 20px;
    margin-bottom: 30px;
  }
}
#single-blog #ez-toc-container:before, #single-blog #ez-toc-container:after {
  content: "";
  background: url(../img/news/toc_line@2x.png) no-repeat center center/cover;
  width: 58px;
  height: 58px;
  display: block;
  position: absolute;
}
#single-blog #ez-toc-container:before {
  top: -11px;
  left: -11px;
}
#single-blog #ez-toc-container:after {
  bottom: -11px;
  right: -11px;
}
#single-blog #ez-toc-container .ez-toc-title-container {
  display: flex;
  align-items: center;
  margin-bottom: 21px;
}
@media (max-width: 750px) {
  #single-blog #ez-toc-container .ez-toc-title-container {
    margin-bottom: 15px;
  }
}
#single-blog #ez-toc-container .ez-toc-title-container:before {
  content: "";
  display: block;
  background: url(../img/news/lab_toc@2x.png);
  background-size: cover;
  width: 30px;
  height: 23px;
  margin-right: 13px;
}
@media (max-width: 750px) {
  #single-blog #ez-toc-container .ez-toc-title-container:before {
    margin-right: 10px;
    width: 20px;
    height: 16px;
  }
}
#single-blog #ez-toc-container .ez-toc-title {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 750px) {
  #single-blog #ez-toc-container .ez-toc-title {
    font-size: 20px;
  }
}
#single-blog .ez-toc-list,
#single-blog .ez-toc-list ul {
  margin-bottom: 0;
  list-style: none;
}
#single-blog .ez-toc-list li {
  list-style: none;
  line-height: 1.6;
}
#single-blog .ez-toc-list li.ez-toc-page-1:not(:last-child) {
  margin-bottom: 23px;
}
@media (max-width: 750px) {
  #single-blog .ez-toc-list li.ez-toc-page-1:not(:last-child) {
    margin-bottom: 15px;
  }
}
#single-blog .ez-toc-list li:before {
  content: none;
}
#single-blog .ez-toc-list li a {
  display: block;
  font-size: 16px;
  color: #5C3911;
  margin-bottom: 8px;
  font-weight: 500;
  text-decoration: underline;
}
@media (max-width: 750px) {
  #single-blog .ez-toc-list li a {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
#single-blog .ez-toc-list li a:before {
  color: #EF8862;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 750px) {
  #single-blog .ez-toc-list li a:before {
    font-size: 14px;
  }
}
#single-blog .ez-toc-list {
  counter-reset: item;
  margin: 0 0 0 1em;
}
@media (max-width: 750px) {
  #single-blog .ez-toc-list {
    margin: 0 0 0 10px;
  }
}
#single-blog .ez-toc-list-level-1 {
  margin-left: 0;
}
#single-blog li.ez-toc-heading-level-2 {
  margin-left: 0;
}
@media (max-width: 750px) {
  #single-blog li.ez-toc-heading-level-2 {
    margin-left: 0;
  }
}
#single-blog li.ez-toc-heading-level-2 > a {
  font-size: 18px;
  background: #fff;
  border-radius: 60px;
  padding: 21px 38px;
  text-decoration: none;
  margin-bottom: 19px;
  position: relative;
}
@media (max-width: 750px) {
  #single-blog li.ez-toc-heading-level-2 > a {
    padding: 10px 20px;
    margin-bottom: 10px;
  }
}
#single-blog li.ez-toc-heading-level-2 > a:before {
  font-size: 18px;
}
#single-blog li.ez-toc-heading-level-2 > a:after {
  content: "";
  background: #EF8862;
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 750px) {
  #single-blog li.ez-toc-heading-level-2 > a:after {
    right: 15px;
  }
}
#single-blog .ez-toc-list-level-3 {
  margin-left: 5.5rem;
}
#single-blog #ez-toc-container ul.ez-toc-list li a::before,
#single-blog .ez-toc-widget-container ul.ez-toc-list li a::before {
  margin-right: 8px;
}
#single-blog #ez-toc-container a span {
  font-weight: 400;
}
#single-blog .share-social {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0px 50px 40px;
}
@media (max-width: 750px) {
  #single-blog .share-social {
    padding: 18px 15px;
  }
}
#single-blog .share-social .share__ttl {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-right: 20px;
}
@media (max-width: 750px) {
  #single-blog .share-social .share__ttl {
    font-size: 16px;
    margin-right: 15px;
  }
}
#single-blog .share-social .share__list {
  display: grid;
  grid-template-columns: repeat(3, 36px);
  gap: 0 8px;
  justify-content: center;
}
@media (max-width: 750px) {
  #single-blog .share-social .share__list {
    grid-template-columns: repeat(3, 30px);
    gap: 0 5px;
  }
}
#single-blog .share-social .share__item:last-child {
  margin-right: 0;
}
#single-blog .postnav {
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: 1fr 200px 1fr;
  gap: 0 34px;
  align-items: center;
}
@media (max-width: 750px) {
  #single-blog .postnav {
    margin: 24px 0 0;
    grid-template-columns: 1fr;
    gap: 0;
  }
}
#single-blog .postnav .post-label {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.6;
}
@media (max-width: 959px) {
  #single-blog .postnav .post-label {
    width: 100%;
  }
}
#single-blog .postnav .post-label a {
  display: block;
  position: relative;
  text-decoration: underline;
  text-decoration-color: #9B8D82;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
#single-blog .postnav .post-label a:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
}
@media (max-width: 750px) {
  #single-blog .postnav .post-label a:before {
    font-size: 14px;
  }
}
#single-blog .postnav .prev-label a {
  padding-left: 74px;
}
#single-blog .postnav .prev-label a:before {
  background: url(../img/news/chevron-left@2x.png) no-repeat center center/60px;
  left: 0;
}
#single-blog .postnav .next-label a {
  padding-right: 74px;
}
#single-blog .postnav .next-label a:before {
  background: url(../img/news/chevron-right@2x.png) no-repeat center center/60px;
  right: 0;
}
#single-blog .postnav .btn-back {
  text-align: center;
}
@media (max-width: 959px) {
  #single-blog .postnav .btn-back {
    margin: 30px auto;
  }
}
@media (max-width: 750px) {
  #single-blog .postnav .btn-back {
    margin: 15px auto;
  }
}
#single-blog .postnav .btn-back a {
  display: block;
  background: #fff;
  font-weight: bold;
  text-align: center;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
  width: 200px;
  height: 60px;
  padding-inline: 10px 0;
  margin: 0 auto;
  font-size: 16px;
  border-radius: 60px;
  border: 1px solid #5C3911;
  transition: all 0.3s ease-out;
}
#single-blog .postnav .btn-back a:before {
  content: "";
  background: #9B8D82;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 2.4rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
}
@media (hover: hover) {
  #single-blog .postnav .btn-back a:where(:any-link, :enabled, summary):hover {
    background: #9B8D82;
    color: #fff;
    border-color: #9B8D82;
  }
  #single-blog .postnav .btn-back a:where(:any-link, :enabled, summary):hover:before {
    transform: translateY(-50%) scale(1.4);
    background: #fff;
  }
}
#single-blog .related-posts {
  margin-top: 64px;
  position: relative;
}
@media (max-width: 959px) {
  #single-blog .related-posts {
    padding-inline: 20px;
  }
}
@media (max-width: 750px) {
  #single-blog .related-posts {
    padding-inline: 15px;
    margin-top: 50px;
  }
}
#single-blog .related-posts .related-posts__heading {
  margin-bottom: 32px;
}
@media (max-width: 750px) {
  #single-blog .related-posts .related-posts__heading {
    margin-bottom: 20px;
  }
}
#single-blog .related-posts .results__cont {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
}
@media (max-width: 959px) {
  #single-blog .related-posts .results__cont {
    padding: 30px;
  }
}
@media (max-width: 750px) {
  #single-blog .related-posts .results__cont {
    padding: 20px;
  }
}
#single-blog .related-posts .results__cont.c-news__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 48px;
}
@media (max-width: 959px) {
  #single-blog .related-posts .results__cont.c-news__list {
    gap: 0 10px;
  }
}
@media (max-width: 750px) {
  #single-blog .related-posts .results__cont.c-news__list {
    grid-template-columns: 1fr;
    gap: 20px 0;
  }
}
#single-blog .related-posts .results__cont .c-news__item a {
  display: block;
}
@media (max-width: 750px) {
  #single-blog .related-posts .results__cont .c-news__item a {
    display: flex;
    align-items: flex-start;
  }
}
#single-blog .related-posts .results__cont .c-news__item__imgWrap {
  transition: filter 0.3s ease-out;
  aspect-ratio: 1/1;
}
@media (max-width: 750px) {
  #single-blog .related-posts .results__cont .c-news__item__imgWrap {
    width: 34%;
    margin-bottom: 0;
  }
}
#single-blog .related-posts .results__cont .c-news__item__imgWrap img {
  background: #fff;
  object-fit: cover;
  border-radius: 25px;
}
#single-blog .related-posts .results__cont .results__txtbox {
  padding: 7px 0 0;
}
@media (max-width: 750px) {
  #single-blog .related-posts .results__cont .results__txtbox {
    flex: 1;
    padding-top: 0;
    padding-left: 2rem;
  }
}
#single-blog .related-posts .results__cont .c-news__item__ttl {
  font-size: 15px;
  line-height: 1.46;
  font-weight: bold;
  text-decoration: underline;
  text-decoration-color: #9B8D82;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
@media (max-width: 750px) {
  #single-blog .related-posts .results__cont .c-news__item__ttl {
    line-height: 1.5;
  }
}
#single-blog .related-posts .results__cont .c-news__item__date {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #9B8D82;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
}
@media (max-width: 750px) {
  #single-blog .related-posts .results__cont .c-news__item__date {
    font-size: 12px;
    line-height: 1.5;
    text-align: left;
  }
}

.secError404 {
  padding-block: 8.6rem 8rem;
  text-align: center;
}
@media (max-width: 750px) {
  .secError404 {
    padding: 4rem;
  }
}

.secError404__heading {
  margin-bottom: 3rem;
}

.secError404__lead {
  margin-bottom: 60px;
}
@media (max-width: 750px) {
  .secError404__lead {
    margin-bottom: 30px;
    text-align: left;
  }
}

.secError404__btn a {
  margin-inline: auto;
}

#faq .b-pageNav {
  background: #fff;
  border-radius: 0 0 160px 160px;
  padding-block: 32px 58px;
}
@media (max-width: 959px) {
  #faq .b-pageNav {
    border-radius: 0 0 80px 80px;
  }
}
@media (max-width: 750px) {
  #faq .b-pageNav {
    border-radius: 0 0 40px 40px;
    padding-block: 32px 48px;
  }
}
@media (max-width: 750px) {
  #faq .b-pageNav .inner {
    padding-inline: 0;
  }
}
#faq .b-pageNav__box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 27px 0;
}
@media (max-width: 750px) {
  #faq .b-pageNav__box {
    gap: 3.2rem 0;
  }
}
#faq .b-pageNavWrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, calc(25% - 9px));
  justify-content: center;
  gap: 24px 12px;
}
@media (max-width: 959px) {
  #faq .b-pageNavWrap {
    grid-template-columns: repeat(auto-fit, calc(25% - 3.75px));
    gap: 15px 5px;
  }
}
#faq .js-tabButton {
  padding: 0.7rem 1.2rem;
  min-width: 20rem;
  font-size: 2.2rem;
  color: #887E7B;
  font-weight: bold;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
@media (max-width: 959px) {
  #faq .js-tabButton {
    min-width: 0;
    padding: 0.7rem 0;
  }
}
@media (max-width: 750px) {
  #faq .js-tabButton {
    font-size: 1.7rem;
    line-height: 1.3;
    padding: 1.3rem 0;
  }
}
#faq .js-tabButton:before {
  content: "";
  background: #E9E5E0;
  width: 100%;
  height: 4px;
  display: block;
  border-radius: 4px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -4px;
}
#faq .js-tabButton:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -1.4rem;
  height: 1.4rem;
  aspect-ratio: 1.2;
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  background: #E9E5E0;
}
@media (max-width: 750px) {
  #faq .js-tabButton:after {
    bottom: -1.2rem;
    height: 1.2rem;
  }
}
#faq .js-tabButton.active {
  color: #5C3911;
}
#faq .js-tabButton.active:before, #faq .js-tabButton.active:after {
  background: #EF8862;
}
#faq .b-pageNavContWrap {
  background: #F6F5F2;
  border-radius: 2.4rem;
  padding: 4.2rem 5.1rem;
}
@media (max-width: 959px) {
  #faq .b-pageNavContWrap {
    padding: 30px 40px;
  }
}
@media (max-width: 750px) {
  #faq .b-pageNavContWrap {
    border-radius: 20px;
    padding: 23px 13px;
    width: calc(100% - 3rem);
    margin-inline: auto;
  }
}
@media (max-width: 750px) {
  #faq .b-pageNavCont__in {
    background: #44a9d4;
    padding: 0 20px 30px;
    border-radius: 0 0 12px 12px;
  }
}
#faq .b-pageNavCont__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 70px;
}
@media (max-width: 959px) {
  #faq .b-pageNavCont__list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 750px) {
  #faq .b-pageNavCont__list {
    gap: 20px 0;
  }
}
#faq .b-pageNavCont__list li {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.66;
}
@media (max-width: 750px) {
  #faq .b-pageNavCont__list li {
    font-size: 15px;
  }
}
@media (hover: hover) {
  #faq .b-pageNavCont__list li:where(:any-link, :enabled, summary):hover {
    color: #EF8862;
  }
}
#faq .b-pageNavCont__list a {
  position: relative;
  display: inline-block;
  padding-left: 17px;
  text-decoration: underline;
  text-decoration-color: #c4c0bd;
  transition: all 0.2s ease-out;
}
@media (max-width: 750px) {
  #faq .b-pageNavCont__list a {
    padding-left: 17px;
  }
}
#faq .b-pageNavCont__list a:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #EF8862;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 11px;
}
@media (max-width: 750px) {
  #faq .b-pageNavCont__list a:before {
    width: 5px;
    height: 5px;
    top: 9px;
  }
}
@media (hover: hover) {
  #faq .b-pageNavCont__list a:where(:any-link, :enabled, summary):hover {
    text-decoration: underline;
    color: #EF8862;
  }
}
#faq .secFaqWrap {
  padding-block: 0 115px;
}
@media (max-width: 750px) {
  #faq .secFaqWrap {
    padding-block: 0 40px;
  }
}
#faq .secFaq {
  padding-block: 7.2rem 8rem;
}
@media (max-width: 750px) {
  #faq .secFaq {
    padding-block: 5rem;
  }
}
#faq .secFaq:nth-of-type(odd) {
  background: none;
  border-radius: 0px;
}
#faq .secFaq__cat__heading {
  margin-bottom: 3rem;
}
@media (max-width: 750px) {
  #faq .secFaq__cat__heading {
    margin-bottom: 2.5rem;
  }
}
#faq .secFind {
  margin-bottom: 14rem;
}
@media (max-width: 750px) {
  #faq .secFind {
    margin-bottom: 7.5rem;
  }
}

#flow .secFlow {
  padding-block: 4rem 11rem;
}
@media (max-width: 750px) {
  #flow .secFlow {
    padding-block: 3rem 8rem;
  }
}
#flow .secFlow__list {
  margin-bottom: 6.3rem;
  position: relative;
}
@media (max-width: 750px) {
  #flow .secFlow__list {
    margin-bottom: 4rem;
  }
}
#flow .secFlow__list:before {
  content: "";
  background: url(../img/flow/flow_line@2x.png) repeat-y top center/5px;
  width: 5px;
  height: calc(100% - 32.4rem);
  display: block;
  position: absolute;
  left: 4.1rem;
  top: 7rem;
}
@media (max-width: 959px) {
  #flow .secFlow__list:before {
    height: calc(100% - 39.1rem);
  }
}
@media (max-width: 750px) {
  #flow .secFlow__list:before {
    height: calc(100% - 57.8rem);
    left: 2rem;
    top: 4.5rem;
  }
}
#flow .secFlow__item {
  background: #fff;
  border-radius: 20px;
  padding: 4rem 5rem 4rem 7.7rem;
  display: grid;
  grid-template-columns: 1fr 400px;
  grid-template-rows: max-content max-content 1fr;
  gap: 0px 5rem;
  grid-template-areas: "secFlow__catch secFlow__img" "secFlow__ttl secFlow__img" "secFlow__txt secFlow__img";
}
@media (max-width: 959px) {
  #flow .secFlow__item {
    grid-template-columns: 1fr 186px;
    gap: 0px 3rem;
    padding-right: 4rem;
  }
}
@media (max-width: 750px) {
  #flow .secFlow__item {
    display: block;
    padding: 3.2rem 2rem 3.2rem 4.7rem;
    border-radius: 10px;
  }
}
#flow .secFlow__item:not(:last-child) {
  margin-bottom: 4rem;
}
@media (max-width: 750px) {
  #flow .secFlow__item:not(:last-child) {
    margin-bottom: 3rem;
  }
}
#flow .secFlow__catch {
  grid-area: secFlow__catch;
  font-size: 2rem;
  padding-left: 0.5rem;
  letter-spacing: 0.04em;
  margin-top: 1.4rem;
  margin-bottom: 1.3rem;
}
@media (max-width: 750px) {
  #flow .secFlow__catch {
    font-size: 1.6rem;
    margin-top: 0;
    padding-left: 0;
    margin-bottom: 1rem;
  }
}
#flow .secFlow__catch:before {
  left: -3.8rem;
}
@media (max-width: 750px) {
  #flow .secFlow__catch:before {
    left: -2.9rem;
  }
}
#flow .secFlow__img {
  grid-area: secFlow__img;
}
@media (max-width: 750px) {
  #flow .secFlow__img {
    margin-bottom: 1.5rem;
  }
}
#flow .secFlow__ttl {
  grid-area: secFlow__ttl;
  font-size: 2.4rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
@media (max-width: 750px) {
  #flow .secFlow__ttl {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
#flow .secFlow__txt {
  grid-area: secFlow__txt;
  line-height: 2;
}
#flow .secFlow__attention {
  border-radius: 20px;
  border: 2px dotted #bab0a8;
  padding: 4rem 5rem 3.4rem;
  position: relative;
}
@media (max-width: 750px) {
  #flow .secFlow__attention {
    border-radius: 10px;
    padding: 3.2rem 2rem 2.6rem;
  }
}
#flow .attention__ttl {
  position: absolute;
  top: -1.1rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
#flow .attention__ttl span {
  background: #F6F5F2;
  padding-inline: 2.4rem;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: bold;
  color: #EF8862;
  letter-spacing: 0.22em;
}
#flow .attention__txt {
  line-height: 2;
}
#flow .secFind {
  margin-bottom: 14rem;
}
@media (max-width: 750px) {
  #flow .secFind {
    margin-bottom: 8rem;
  }
}

#guide .c-block__img {
  aspect-ratio: 470/400;
}
#guide .secService {
  padding-bottom: 10rem;
}
@media (max-width: 750px) {
  #guide .secService {
    padding-bottom: 5rem;
  }
}
#guide .secService__heading {
  margin-bottom: 3.8rem;
}
@media (max-width: 750px) {
  #guide .secService__heading {
    margin-bottom: 2.5rem;
  }
}
#guide .secService__lead {
  line-height: 1.875;
  text-align: center;
  margin-bottom: 4.2rem;
}
@media (max-width: 750px) {
  #guide .secService__lead {
    text-align: left;
    margin-bottom: 2rem;
  }
}
#guide .secService__list {
  margin-bottom: 10rem;
}
@media (max-width: 750px) {
  #guide .secService__list {
    margin-bottom: 5rem;
  }
}
#guide .secService__genre {
  border: 9px solid #E9E5E0;
  border-radius: 40px;
  padding: 5.1rem 8.2rem 5.6rem;
}
@media (max-width: 959px) {
  #guide .secService__genre {
    padding: 5rem 3rem;
  }
}
@media (max-width: 750px) {
  #guide .secService__genre {
    border-width: 6px;
    border-radius: 24px;
    padding: 4rem 1rem;
  }
}
#guide .genre__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5.5rem 4rem;
}
@media (max-width: 959px) {
  #guide .genre__list {
    gap: 5.5rem 2rem;
  }
}
@media (max-width: 750px) {
  #guide .genre__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 0;
  }
}
@media (hover: hover) {
  #guide .genre__item a:where(:any-link, :enabled, summary):hover .genre__name {
    text-decoration: underline;
  }
}
#guide .genre__icn {
  margin-bottom: 1.6rem;
}
@media (max-width: 750px) {
  #guide .genre__icn {
    width: 102px;
    margin-inline: auto;
    margin-bottom: 1rem;
  }
}
#guide .genre__ttl {
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 750px) {
  #guide .genre__ttl {
    font-size: 1.5rem;
  }
}
#guide .genre__arrow {
  line-height: 1;
  display: block;
  margin-right: 0.8rem;
}
@media (max-width: 750px) {
  #guide .genre__arrow {
    margin-right: 0.5rem;
    width: 1.5rem;
  }
  #guide .genre__arrow svg {
    width: 100%;
    height: auto;
  }
}
#guide .chevron-right-svg--01 {
  fill: #f08087;
}
#guide .chevron-right-svg--02 {
  fill: #f89d5a;
}
#guide .chevron-right-svg--03 {
  fill: #5eac60;
}
#guide .chevron-right-svg--04 {
  fill: #83b54c;
}
#guide .chevron-right-svg--05 {
  fill: #c4cf41;
}
#guide .chevron-right-svg--06 {
  fill: #6bceb3;
}
#guide .chevron-right-svg--07 {
  fill: #29a9e0;
}
#guide .chevron-right-svg--08 {
  fill: #7bd4f0;
}
#guide .secWhen {
  background: #E9E5E0;
  padding-block: 7.8rem 7.5rem;
  border-radius: 0 0 160px 160px;
}
@media (max-width: 959px) {
  #guide .secWhen {
    border-radius: 0 0 80px 80px;
  }
}
@media (max-width: 750px) {
  #guide .secWhen {
    padding-block: 5rem;
    border-radius: 0 0 40px 40px;
  }
}
#guide .secWhen__heading {
  margin-bottom: 5.8rem;
}
@media (max-width: 750px) {
  #guide .secWhen__heading {
    margin-bottom: 2.5rem;
  }
}
#guide .secWhen__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5rem 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 959px) {
  #guide .secWhen__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5rem 3rem;
  }
}
@media (max-width: 750px) {
  #guide .secWhen__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem 2rem;
  }
}
#guide .secWhen__img img {
  border-radius: 40px;
}
@media (max-width: 750px) {
  #guide .secWhen__img img {
    border-radius: 24px;
  }
}
#guide .secWhen__ttl {
  text-align: center;
  margin-top: -1.9rem;
}
@media (max-width: 750px) {
  #guide .secWhen__ttl {
    margin-top: -1.3rem;
  }
}
#guide .secWhen__ttl span {
  display: inline-block;
  background: #fff;
  border-radius: 40px;
  padding: 0.5rem 2.8rem;
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 959px) {
  #guide .secWhen__ttl span {
    padding: 0.5rem 1.5rem;
  }
}
@media (max-width: 750px) {
  #guide .secWhen__ttl span {
    font-size: 1.6rem;
    padding: 0.1rem 1.5rem;
  }
}
#guide .secWhen__txt {
  line-height: 1.875;
}
#guide .secMerit {
  padding-block: 9.8rem 7.5rem;
}
@media (max-width: 750px) {
  #guide .secMerit {
    padding-block: 7.5rem;
  }
}
#guide .secMerit__heading {
  margin-bottom: 6.3rem;
}
@media (max-width: 750px) {
  #guide .secMerit__heading {
    margin-bottom: 3.5rem;
  }
}
#guide .secMerit__cont.item-01 {
  margin-bottom: 6.9rem;
}
@media (max-width: 750px) {
  #guide .secMerit__cont.item-01 {
    margin-bottom: 5rem;
  }
}
#guide .secMerit__box {
  padding: 5.7rem 14rem;
  margin-bottom: 2rem;
}
@media (max-width: 959px) {
  #guide .secMerit__box {
    padding-inline: 5.5rem;
  }
}
@media (max-width: 750px) {
  #guide .secMerit__box {
    padding: 4rem 2rem 3rem;
  }
}
#guide .secMerit__txt {
  line-height: 1.875;
}
#guide .secSelection {
  background: #fff;
  padding-block: 7.6rem 8rem;
  border-radius: 0 0 160px 160px;
  margin-bottom: 12rem;
}
@media (max-width: 959px) {
  #guide .secSelection {
    border-radius: 0 0 80px 80px;
  }
}
@media (max-width: 750px) {
  #guide .secSelection {
    border-radius: 0 0 40px 40px;
    padding-block: 7rem 6rem;
    margin-bottom: 0;
  }
}
#guide .secSelection__heading {
  margin-bottom: 6.3rem;
}
@media (max-width: 750px) {
  #guide .secSelection__heading {
    margin-bottom: 3rem;
  }
}
#guide .secSelection__box {
  margin-bottom: 5.6rem;
}
@media (max-width: 750px) {
  #guide .secSelection__box {
    margin-bottom: 4rem;
  }
}
#guide .secSelection__txt {
  line-height: 1.875;
}
#guide .secSelection__box--failure {
  padding: 5.7rem 14rem;
  margin-bottom: 0;
}
@media (max-width: 959px) {
  #guide .secSelection__box--failure {
    padding-inline: 5.5rem;
  }
}
@media (max-width: 750px) {
  #guide .secSelection__box--failure {
    padding: 4rem 2rem 3rem;
  }
}
#guide .secFind {
  margin-bottom: 14rem;
}
@media (max-width: 750px) {
  #guide .secFind {
    margin-bottom: 7.5rem;
  }
}

#petsitter-ac .secSearch {
  background: #fff;
  border-radius: 0 0 160px 160px;
  padding-block: 8.6rem 8rem;
}
@media (max-width: 959px) {
  #petsitter-ac .secSearch {
    border-radius: 0 0 80px 80px;
  }
}
@media (max-width: 750px) {
  #petsitter-ac .secSearch {
    border-radius: 0 0 40px 40px;
    padding-block: 6.4rem 7.5rem;
  }
}
#petsitter-ac .secCriteria {
  padding-block: 12.7rem 0;
}
#petsitter-ac .secFilter ~ .secCriteria {
  padding-top: 7rem;
}
@media (max-width: 750px) {
  #petsitter-ac .secFilter ~ .secCriteria {
    padding-top: 6.4rem;
    margin-bottom: 3rem;
  }
}
#petsitter-ac .secVoice {
  padding-bottom: 9.1rem;
}
@media (max-width: 750px) {
  #petsitter-ac .secVoice {
    padding-bottom: 4.3rem;
  }
}
#petsitter-ac .secCatContents {
  padding-bottom: 8.1rem;
}
@media (max-width: 750px) {
  #petsitter-ac .secCatContents {
    padding-bottom: 5rem;
  }
}
#petsitter-ac .secCatContents .post__content h2 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  margin: 30px 0 39px;
  border: none;
  padding: 0;
}
@media (max-width: 750px) {
  #petsitter-ac .secCatContents .post__content h2 {
    font-size: 26px;
    margin: 30px 0 15px;
  }
}
#petsitter-ac .secCatContents .post__content h3 {
  font-size: 2.6rem;
  font-weight: bold;
  padding-left: 1.8rem;
  position: relative;
  margin: 70px 0 27px;
  border-bottom: none;
  padding-bottom: 0;
}
@media (max-width: 750px) {
  #petsitter-ac .secCatContents .post__content h3 {
    font-size: 2.2rem;
    margin: 30px 0 15px;
    padding-left: 1.3rem;
    line-height: 1.4;
  }
}
#petsitter-ac .secCatContents .post__content h3:before {
  content: "";
  background: #EF8862;
  width: 6px;
  height: 3.4rem;
  border-radius: 10px;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 750px) {
  #petsitter-ac .secCatContents .post__content h3:before {
    height: 100%;
  }
}
#petsitter-ac .secCatContents .post__content h4 {
  font-size: 24px;
  font-weight: bold;
  margin: 64px 0 27px;
  line-height: 1.5;
  padding-left: 0;
}
@media (max-width: 750px) {
  #petsitter-ac .secCatContents .post__content h4 {
    font-size: 1.8rem;
    margin: 30px 0 15px;
  }
}
#petsitter-ac .secCatContents .post__content h4:before {
  display: none;
}
@media (max-width: 750px) {
  #petsitter-ac .secCatContents .post__content p {
    margin: 20px 0 15px;
    line-height: 1.6;
  }
}
#petsitter-ac .secList {
  padding-block: 8rem 8rem;
}
@media (max-width: 959px) {
  #petsitter-ac .secList {
    padding-block: 5rem 7rem;
  }
}
#petsitter-ac .secSearch ~ .secList {
  padding-top: 12.5rem;
}
@media (max-width: 959px) {
  #petsitter-ac .secSearch ~ .secList {
    padding-top: 8rem;
  }
}
#petsitter-ac .no-posts {
  text-align: center;
}
#petsitter-ac .serach_heading {
  margin-bottom: 4.5rem;
}
@media (max-width: 959px) {
  #petsitter-ac .serach_heading {
    margin-bottom: 3.2rem;
  }
}
#petsitter-ac .secList__heading {
  margin-bottom: 4.5rem;
}
@media (max-width: 959px) {
  #petsitter-ac .secList__heading {
    margin-bottom: 3.2rem;
  }
}
@media (max-width: 750px) {
  #petsitter-ac .secList__heading {
    margin-bottom: 2.4rem;
  }
}
#petsitter-ac .secPoint {
  background: #fff;
  border-radius: 160px 160px 0 0;
  padding-block: 8.8rem 24rem;
  margin-bottom: -16rem;
}
@media (max-width: 959px) {
  #petsitter-ac .secPoint {
    border-radius: 80px 80px 0 0;
    margin-bottom: -8rem;
    padding-bottom: 16rem;
  }
}
@media (max-width: 750px) {
  #petsitter-ac .secPoint {
    border-radius: 40px 40px 0 0;
    padding-block: 6.8rem 11.5rem;
    margin-bottom: -4rem;
  }
}
#petsitter-ac .secPoint__heading {
  margin-bottom: 4.3rem;
}
@media (max-width: 750px) {
  #petsitter-ac .secPoint__heading {
    margin-bottom: 2.5rem;
  }
}

#policy .secPolicy {
  padding-block: 7.2rem 8rem;
}
@media (max-width: 750px) {
  #policy .secPolicy {
    padding-block: 5rem;
  }
}
#policy .secPolicy__heading {
  margin-bottom: 5rem;
}
@media (max-width: 750px) {
  #policy .secPolicy__heading {
    margin-bottom: 4rem;
  }
}
#policy .secPolicy__section {
  margin-bottom: 4rem;
}
@media (max-width: 750px) {
  #policy .secPolicy__section {
    margin-bottom: 3.2rem;
  }
}
#policy .secPolicy__subheading {
  margin-bottom: 1.2rem;
}
@media (max-width: 750px) {
  #policy .secPolicy__subheading {
    margin-bottom: 1rem;
  }
}
#policy .secPolicy__text {
  line-height: 1.8;
}
#policy .secPolicy__text + #policy .secPolicy__text {
  margin-top: 1.2em;
}
#policy .secPolicy__list {
  margin-top: 1.2em;
  padding-left: 1.5em;
  list-style: disc;
  line-height: 1.8;
}
#policy .secPolicy__list li + li {
  margin-top: 0.75em;
}
#policy .secPolicy__list strong {
  font-weight: 700;
}

#sidebar {
  width: 260px;
  position: relative;
}
@media (max-width: 959px) {
  #sidebar {
    display: none;
  }
}
#sidebar #search-newspost {
  background: #fff;
  position: relative;
  margin-bottom: 35px;
  overflow: hidden;
  border-radius: 30px;
}
#sidebar input[type=text] {
  border-radius: 5px;
  display: block;
  width: 100%;
  padding: 16px 40px 16px 24px;
  font-size: 16px;
  border-radius: 30px;
  border: 2px solid #5C3911;
  background: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
#sidebar input::-webkit-input-placeholder {
  color: #aaa;
  font-size: 16px;
  font-weight: 500;
}
#sidebar input:-moz-placeholder {
  color: #aaa;
  font-size: 16px;
  font-weight: 500;
}
#sidebar button {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 60px;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  line-height: 0;
}
#sidebar button img {
  margin: 0 auto;
}
#sidebar .sidebar__heading {
  font-size: 1.8rem;
  margin-bottom: 3.1rem;
}
#sidebar .sidebar__heading:before {
  height: 3rem;
}
@media (max-width: 750px) {
  #sidebar .sidebar__heading {
    margin-bottom: 20px;
  }
}
#sidebar .sidebar__ranking {
  counter-reset: wpp-ranking;
  margin-bottom: 4.2rem;
}
@media (max-width: 750px) {
  #sidebar .sidebar__ranking {
    margin-bottom: 40px;
  }
}
#sidebar .ranking__item .thumb {
  position: relative;
  margin-bottom: 7px;
}
@media (max-width: 750px) {
  #sidebar .ranking__item .thumb {
    margin-bottom: 0;
  }
}
#sidebar .ranking__item .thumb:before {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  content: counter(wpp-ranking);
  counter-increment: wpp-ranking;
  background: #EF8862;
  position: absolute;
  top: -1.3rem;
  left: -1rem;
  width: 4.6rem;
  border: 2px solid #fff;
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 959px) {
  #sidebar .ranking__item .thumb:before {
    width: 40px;
    font-size: 20px;
    top: -8px;
    left: -17px;
  }
}
@media (max-width: 750px) {
  #sidebar .ranking__item .thumb:before {
    width: 30px;
    font-size: 12px;
    top: -6px;
    left: -12px;
  }
}
#sidebar .post__list p {
  font-size: 13px;
}
#sidebar .post__item:not(:last-child) {
  margin-bottom: 2.7rem;
}
@media (max-width: 750px) {
  #sidebar .post__item:not(:last-child) {
    margin-bottom: 20px;
  }
}
#sidebar .post__item a {
  display: block;
}
@media (min-width: 960px) {
  #sidebar .post__item a {
    transition: all 0.2s;
  }
  #sidebar .post__item a:hover .thumb {
    opacity: 0.8;
  }
}
@media (max-width: 959px) {
  #sidebar .post__item a {
    display: flex;
  }
}
#sidebar .post__item:first-child a {
  padding-top: 0;
}
#sidebar .post__item .thumb {
  transition: all 0.2s;
  aspect-ratio: 1/1;
  width: 200px;
  margin-inline: auto;
  margin-bottom: 8px;
}
@media (max-width: 959px) {
  #sidebar .post__item .thumb {
    width: 200px;
    margin-bottom: 0;
  }
}
@media (max-width: 750px) {
  #sidebar .post__item .thumb {
    width: 112px;
  }
}
#sidebar .post__item .thumb img {
  border-radius: 25px;
}
@media (max-width: 959px) {
  #sidebar .post__item .txtbox {
    flex: 1;
    padding-left: 25px;
  }
}
@media (max-width: 750px) {
  #sidebar .post__item .txtbox {
    padding-left: 14px;
  }
}
#sidebar .post__item .txtbox .ttl {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.625;
  text-decoration: underline;
  text-decoration-color: #9B8D82;
  text-decoration-thickness: 1px;
}
@media (max-width: 750px) {
  #sidebar .post__item .txtbox .ttl {
    font-size: 15px;
    line-height: 1.6;
    text-underline-offset: 4px;
  }
}
#sidebar .sidebar__categories .sidebar__heading {
  margin-bottom: 2rem;
}
#sidebar .categories__list > .cat-item > a {
  font-size: 1.5rem;
  font-weight: 500;
  display: block;
  background: #fff;
  border-radius: 30px;
  padding: 12px 26px;
  position: relative;
  transition: color 0.3s ease-out;
}
@media (max-width: 750px) {
  #sidebar .categories__list > .cat-item > a {
    font-size: 16px;
  }
}
#sidebar .categories__list .children {
  padding-top: 1.2rem;
  padding-left: 2rem;
  padding-bottom: 2rem;
}
#sidebar .categories__list .children .cat-item {
  padding-left: 8px;
}
#sidebar .categories__list .children .cat-item:not(:last-child) {
  margin-bottom: 1rem;
}
#sidebar .categories__list .children .cat-item a {
  font-size: 1.4rem;
  display: block;
  padding: 0 20px;
  position: relative;
  text-decoration: underline;
}
@media (max-width: 750px) {
  #sidebar .categories__list .children .cat-item a {
    font-size: 16px;
  }
}
#sidebar .categories__list .children .cat-item a:before {
  display: none;
}
#sidebar .categories__list .children .cat-item a:after {
  content: "";
  width: 1rem;
  height: 0.2rem;
  background: #EF8862;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#sidebar .categories__list a {
  transition: color 0.3s ease-out;
  position: relative;
}
#sidebar .categories__list a:before {
  content: "";
  background: #EF8862;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  right: 1.9rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (hover: hover) {
  #sidebar .categories__list a:where(:any-link, :enabled, summary):hover {
    color: #EF8862;
  }
}

#sitter-dtl .secSupport {
  margin-bottom: 10.5rem;
}
@media (max-width: 750px) {
  #sitter-dtl .secSupport {
    margin-bottom: 7.5rem;
  }
}
#sitter-dtl .secSupport__heading {
  margin-bottom: 4.8rem;
}
@media (max-width: 750px) {
  #sitter-dtl .secSupport__heading {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 750px) {
  #sitter-dtl .c-point__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem 2rem;
  }
}
#sitter-dtl .c-point__img {
  margin-bottom: 2.2rem;
}
@media (max-width: 750px) {
  #sitter-dtl .c-point__img {
    margin-bottom: 1rem;
  }
}
#sitter-dtl .c-point__img img {
  aspect-ratio: 1/1;
  max-width: 267px;
}
#sitter-dtl .c-point__ttl {
  font-size: 2rem;
  line-height: 1.6;
}
@media (max-width: 750px) {
  #sitter-dtl .c-point__ttl {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}
#sitter-dtl .c-point__txt {
  line-height: 1.875;
}
@media (max-width: 750px) {
  #sitter-dtl .c-point__txt {
    font-size: 1.4rem;
  }
}
#sitter-dtl .secReason {
  margin-bottom: 11.5rem;
}
@media (max-width: 750px) {
  #sitter-dtl .secReason {
    margin-bottom: 7.5rem;
  }
}
#sitter-dtl .secReason__heading {
  margin-bottom: 3.5rem;
}
@media (max-width: 750px) {
  #sitter-dtl .secReason__heading {
    margin-bottom: 2.5rem;
  }
}
#sitter-dtl .secReason__lead {
  line-height: 1.875;
  text-align: center;
  margin-bottom: 6.2rem;
}
@media (max-width: 750px) {
  #sitter-dtl .secReason__lead {
    text-align: left;
    margin-bottom: 2.5rem;
  }
}
#sitter-dtl .c-block__img {
  aspect-ratio: 470/400;
}
#sitter-dtl .secReport {
  margin-bottom: 7rem;
}
@media (max-width: 750px) {
  #sitter-dtl .secReport {
    margin-bottom: 5rem;
  }
}
#sitter-dtl .secReport__heading {
  margin-bottom: 2.9rem;
}
@media (max-width: 750px) {
  #sitter-dtl .secReport__heading {
    line-height: 1.5;
    margin-bottom: 2.5rem;
  }
}
#sitter-dtl .secReport__lead {
  line-height: 1.875;
  text-align: center;
  margin-bottom: 5.2rem;
}
@media (max-width: 750px) {
  #sitter-dtl .secReport__lead {
    text-align: left;
    margin-bottom: 2.5rem;
  }
}
#sitter-dtl .secReport__item:not(:last-child) {
  margin-bottom: 4.2rem;
}
@media (max-width: 750px) {
  #sitter-dtl .secReport__item:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}
#sitter-dtl .secReport__ttl {
  background: #fff;
  border-radius: 40px;
  font-size: 2.1rem;
  font-weight: bold;
  position: relative;
  padding: 2.9rem 8rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 750px) {
  #sitter-dtl .secReport__ttl {
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
}
#sitter-dtl .secReport__ttl:before {
  content: "";
  background: #EF8862;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 4rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 750px) {
  #sitter-dtl .secReport__ttl:before {
    left: 2rem;
  }
}
#sitter-dtl .secReport__item__ttl {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
#sitter-dtl .secReport__item__txt {
  line-height: 1.875;
}
#sitter-dtl .secFaq {
  margin-bottom: 11.6rem;
}
@media (max-width: 750px) {
  #sitter-dtl .secFaq {
    margin-bottom: 0;
  }
}
#sitter-dtl .secFind {
  margin-bottom: 14rem;
}
@media (max-width: 750px) {
  #sitter-dtl .secFind {
    margin-bottom: 7.5rem;
  }
}

@media (max-width: 750px) {
  #top .secMainView {
    padding: 1.5rem 1.3rem 0;
  }
}
#top .secMainView__cont {
  max-width: 1210px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
#top .secMainView__img {
  border-radius: 8rem;
  overflow: hidden;
}
@media (max-width: 750px) {
  #top .secMainView__img {
    border-radius: 2.2rem;
  }
}
#top .secMainView__txtbox {
  position: absolute;
  bottom: 16.1rem;
  left: 5.2rem;
}
@media (max-width: 959px) {
  #top .secMainView__txtbox {
    bottom: 2rem;
  }
}
@media (max-width: 750px) {
  #top .secMainView__txtbox {
    position: static;
    margin-top: -4.7rem;
  }
}
#top .secMainView__ttl {
  font-size: 3.9rem;
  font-weight: bold;
  line-height: 2.157;
  text-shadow: 0 0 0.5rem #fff;
  margin-bottom: 2.5rem;
  letter-spacing: 0;
}
@media (max-width: 959px) {
  #top .secMainView__ttl {
    line-height: 1.6;
  }
}
@media (max-width: 750px) {
  #top .secMainView__ttl {
    font-size: 3.2rem;
    text-align: center;
    line-height: 1.39;
    margin-bottom: 1.5rem;
  }
}
#top .secMainView__ttl .small {
  font-size: 2.4rem;
}
@media (max-width: 750px) {
  #top .secMainView__ttl .small {
    font-size: 2rem;
  }
}
@media (max-width: 750px) {
  #top .secMainView__subTtl {
    text-align: center;
  }
}
#top .secMainView__subTtl span {
  display: inline-block;
  background: #EAE2D8;
  color: #2E201D;
  border-radius: 70px;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0.4rem 2rem;
}
@media (max-width: 750px) {
  #top .secMainView__subTtl span {
    font-size: 1.6rem;
    padding: 0rem 0.7rem;
    margin-bottom: 0.3rem;
  }
}
#top .secCriteria {
  padding-block: 12.7rem 8rem;
}
@media (max-width: 750px) {
  #top .secCriteria {
    padding-block: 6.2rem 6rem;
  }
}
#top .secSearch {
  background: #E9E5E0;
  border-radius: 0 0 160px 160px;
  padding-block: 8.6rem 8rem;
}
@media (max-width: 959px) {
  #top .secSearch {
    border-radius: 0 0 80px 80px;
  }
}
@media (max-width: 750px) {
  #top .secSearch {
    border-radius: 0 0 40px 40px;
    padding-block: 6.4rem 7.5rem;
  }
}
#top .secAbout {
  padding-block: 8.7rem 12rem;
}
@media (max-width: 750px) {
  #top .secAbout {
    padding-block: 6.4rem 7.9rem;
  }
}
#top .secAbout__heading {
  margin-bottom: 4.4rem;
}
@media (max-width: 750px) {
  #top .secAbout__heading {
    margin-bottom: 2.4rem;
  }
}
#top .secAbout__lead {
  text-align: center;
  margin-bottom: 6.4rem;
}
@media (max-width: 750px) {
  #top .secAbout__lead {
    text-align: left;
    margin-bottom: 2.4rem;
  }
}
#top .secScene {
  margin-bottom: 12rem;
}
@media (max-width: 750px) {
  #top .secScene {
    margin-bottom: 7.5rem;
  }
}
#top .secScene__heading {
  margin-bottom: 4.3rem;
}
@media (max-width: 750px) {
  #top .secScene__heading {
    margin-bottom: 2.5rem;
  }
}
#top .secScene__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 3.8rem;
}
@media (max-width: 959px) {
  #top .secScene__list {
    gap: 1.5rem;
  }
}
@media (max-width: 750px) {
  #top .secScene__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.3rem 1.4rem;
    margin-bottom: 2rem;
  }
}
#top .secScene__img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.6rem;
}
@media (max-width: 750px) {
  #top .secScene__img {
    margin-bottom: 0.8rem;
  }
}
#top .secScene__img img {
  border-radius: 24px;
}
@media (max-width: 750px) {
  #top .secScene__img img {
    border-radius: 16px;
  }
}
#top .secScene__num {
  position: absolute;
  left: 2.5rem;
  bottom: -0.7rem;
  font-size: 5.1rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
}
@media (max-width: 750px) {
  #top .secScene__num {
    font-size: 3.5rem;
    left: 1.5rem;
    bottom: -0.4rem;
  }
}
#top .secScene__ttl {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 750px) {
  #top .secScene__ttl {
    font-size: 1.6rem;
  }
}
#top .secScene__btn .c-btn-01__link {
  margin-inline: auto;
}
#top .secVoice {
  padding-bottom: 12.8rem;
}
@media (max-width: 750px) {
  #top .secVoice {
    padding-bottom: 7.9rem;
  }
}
#top .secFlow {
  padding-bottom: 8rem;
}
@media (max-width: 750px) {
  #top .secFlow {
    padding-bottom: 6.4rem;
  }
}
#top .secFlow .inner {
  max-width: 1180px;
}
@media (max-width: 959px) {
  #top .secFlow .inner {
    padding-inline: 0;
  }
}
#top .secFlow__heading {
  margin-bottom: 4.6rem;
}
@media (max-width: 750px) {
  #top .secFlow__heading {
    margin-bottom: 2.5rem;
  }
}
#top .secFlow__listWrap {
  background: url(../img/top/flow_arrow@2x.png) no-repeat center center/100%;
  margin-bottom: 4.2rem;
}
@media (max-width: 750px) {
  #top .secFlow__listWrap {
    background: url(../img/top/flow_arrow_sp@2x.png) no-repeat left 0.2rem center/100%;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
  }
}
#top .secFlow__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 1024px;
  margin-inline: auto;
  transform: translateX(-2.6rem);
}
@media (max-width: 959px) {
  #top .secFlow__list {
    width: 1040px;
    transform: translateX(0);
    padding-inline: 1.5rem 6rem;
  }
}
@media (max-width: 750px) {
  #top .secFlow__list {
    width: 1040px;
    padding-left: 2.6rem;
    padding-right: 7.9rem;
  }
}
#top .secFlow__item {
  border: 8px solid #E9E5E0;
  border-radius: 40px;
  padding: 1.4rem 1.6rem;
  background: #fff;
}
@media (max-width: 959px) {
  #top .secFlow__item {
    border-width: 6px;
  }
}
#top .secFlow__catch {
  margin-bottom: 0.2rem;
}
#top .secFlow__img {
  margin-bottom: 1.7rem;
}
@media (max-width: 750px) {
  #top .secFlow__img {
    width: 81%;
    margin-inline: auto;
    margin-bottom: 1.8rem;
  }
}
#top .secFlow__img img {
  margin-inline: auto;
}
#top .secFlow__txt {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
#top .secFlow__btn a {
  margin-inline: auto;
}
@media (max-width: 750px) {
  #top .scroll-hint-icon {
    top: calc(50% - 46px);
    left: auto;
    right: 1.2rem;
    zoom: 1.23;
  }
}
#top .scroll-hint-text {
  font-family: sans-serif;
  font-weight: bold;
}
#top .secFaq {
  margin-bottom: 7.8rem;
}
@media (max-width: 750px) {
  #top .secFaq {
    margin-bottom: 0;
  }
}
#top .secFind {
  margin-bottom: 12rem;
}
@media (max-width: 750px) {
  #top .secFind {
    margin-bottom: 8rem;
  }
}
#top .secColumn {
  padding-bottom: 7.8rem;
}
@media (max-width: 750px) {
  #top .secColumn {
    padding-bottom: 7.6rem;
  }
}
#top .secColumn .inner {
  display: grid;
  grid-template-columns: 1fr 1.54fr;
  gap: 0 8rem;
}
@media (max-width: 959px) {
  #top .secColumn .inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 959px) {
  #top .secColumn__left {
    margin-bottom: 5rem;
  }
}
@media (max-width: 750px) {
  #top .secColumn__left {
    margin-bottom: 3rem;
  }
}
#top .secColumn__heading {
  text-align: left;
  margin-bottom: 4.8rem;
}
@media (max-width: 959px) {
  #top .secColumn__heading {
    text-align: center;
  }
}
@media (max-width: 750px) {
  #top .secColumn__heading {
    margin-bottom: 2.3rem;
  }
}
#top .secColumn__txt {
  margin-bottom: 3.8rem;
}
@media (max-width: 750px) {
  #top .secColumn__txt {
    margin-bottom: 0;
  }
}
@media (max-width: 959px) {
  #top .secColumn__btn .c-btn-01__link {
    margin-inline: auto;
  }
}
#top .secColumn__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.2rem 0;
}
@media (max-width: 750px) {
  #top .secColumn__list {
    gap: 1.6rem 0;
    margin-bottom: 2.4rem;
  }
}
#top .secColumn__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 0.6rem;
}
#top .secColumn__item a {
  display: grid;
  grid-template-columns: 186px 1fr;
  gap: 0 2.4rem;
}
@media (hover: hover) {
  #top .secColumn__item a:where(:any-link, :enabled, summary):hover .secColumn__ttl {
    text-decoration: underline;
  }
}
@media (max-width: 750px) {
  #top .secColumn__item a {
    grid-template-columns: 122px 1fr;
    gap: 0 1.4rem;
  }
}
@media (max-width: 750px) {
  #top .secColumn__category {
    line-height: 1;
  }
}
#top .secColumn__img {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
@media (max-width: 750px) {
  #top .secColumn__img {
    border-radius: 16px;
  }
}
#top .secColumn__date {
  font-size: 1.8rem;
  font-weight: bold;
  color: #9B8D82;
  margin-bottom: 1.2rem;
}
@media (max-width: 750px) {
  #top .secColumn__date {
    font-size: 1.5rem;
    line-height: 1;
  }
}
#top .secColumn__ttl {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
}
@media (max-width: 750px) {
  #top .secColumn__ttl {
    font-size: 1.6rem;
  }
}

@media (max-width: 750px) {
  #single-voice .c-pageTtl__heading__ja {
    font-size: 2rem;
  }
}
#single-voice .secVoice {
  padding-bottom: 116px;
}
@media (max-width: 750px) {
  #single-voice .secVoice {
    padding-bottom: 50px;
  }
}
#single-voice .secVoice__wrap {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  max-width: 1100px;
  margin-top: 4rem;
  margin-inline: auto;
}
@media (max-width: 959px) {
  #single-voice .secVoice__wrap {
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 750px) {
  #single-voice .secVoice__wrap {
    display: block;
    max-width: 100%;
  }
}
#single-voice .secVoice__main {
  flex: 1;
  min-width: 0;
}
#single-voice .petType__heading {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
@media (max-width: 750px) {
  #single-voice .petType__heading {
    font-size: 1.7rem;
    margin-bottom: 1.7rem;
  }
}
#single-voice .secVoice__petType {
  padding: 24px 28px;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  background: #fff;
  border-radius: 40px;
  margin-bottom: 42px;
}
@media (max-width: 750px) {
  #single-voice .secVoice__petType {
    font-size: 1.6rem;
    padding: 16px 20px;
  }
}
#single-voice .secVoice__thumbWrap {
  display: flex;
  justify-content: center;
  padding-right: 4rem;
  margin-bottom: 5rem;
}
@media (max-width: 750px) {
  #single-voice .secVoice__thumbWrap {
    padding-right: 0;
  }
}
#single-voice .secVoice__thumb__catch {
  margin-top: 3rem;
  margin-right: 1rem;
}
@media (max-width: 750px) {
  #single-voice .secVoice__thumb__catch {
    margin-top: 2rem;
  }
}
#single-voice .secVoice__thumb {
  width: 560px;
  aspect-ratio: 1/1;
  border-radius: 40px;
  overflow: hidden;
}
@media (max-width: 750px) {
  #single-voice .secVoice__thumb {
    flex: 1;
    width: 100%;
    border-radius: 24px;
  }
}
#single-voice .secVoice__thumb img {
  width: 100%;
  vertical-align: bottom;
}
#single-voice .secVoice__block {
  margin-bottom: 54px;
}
@media (max-width: 750px) {
  #single-voice .secVoice__block {
    margin-bottom: 36px;
  }
}
#single-voice .secVoice__heading {
  margin-bottom: 2rem;
}
#single-voice .secVoice__box {
  padding: 30px 38px;
  background: #fff;
  border: none;
  border-radius: 20px;
}
@media (max-width: 750px) {
  #single-voice .secVoice__box {
    padding: 20px 22px;
    font-size: 1.4rem;
    border-radius: 16px;
  }
}
#single-voice .customer_voice__txt {
  line-height: 2;
}
#single-voice .customer_voice__txt strong {
  font-weight: 400;
  background: linear-gradient(transparent 65%, #fce7e0 65%);
}
#single-voice .secVoice__careList {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 750px) {
  #single-voice .secVoice__careList {
    border-radius: 16px;
    padding: 24px;
    gap: 32px;
  }
}
#single-voice .secVoice__careItem {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 750px) {
  #single-voice .secVoice__careItem {
    flex-direction: column;
    gap: 10px;
  }
}
#single-voice .secVoice__careImg {
  flex-shrink: 0;
  width: 240px;
  aspect-ratio: 1/1;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
#single-voice .secVoice__careImg img {
  width: 100%;
  vertical-align: bottom;
}
@media (max-width: 750px) {
  #single-voice .secVoice__careImg {
    width: 100%;
  }
}
#single-voice .secVoice__careBody {
  flex: 1;
  line-height: 2;
}
@media (max-width: 750px) {
  #single-voice .secVoice__careBody {
    font-size: 1.4rem;
  }
}
#single-voice .secVoice__sitterCard {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 32px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(46, 32, 29, 0.06);
}
@media (max-width: 750px) {
  #single-voice .secVoice__sitterCard {
    flex-direction: column;
    padding: 22px;
  }
}
#single-voice .secVoice__sitterAvatar {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
}
#single-voice .secVoice__sitterAvatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#single-voice .secVoice__sitterBody {
  flex: 1;
  position: relative;
  min-width: 0;
}
#single-voice .secVoice__sitterName {
  margin: 0 0 4px;
  font-size: 1.8rem;
  font-weight: bold;
}
#single-voice .secVoice__sitterRole {
  margin: 0 0 16px;
  font-size: 1.3rem;
  color: #666;
}
#single-voice .secVoice__sitterMsg {
  margin: 0 0 16px;
  font-size: 1.5rem;
  line-height: 1.85;
}
@media (max-width: 750px) {
  #single-voice .secVoice__sitterMsg {
    font-size: 1.4rem;
  }
}
#single-voice .secVoice__sitterSocial {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
#single-voice .secVoice__sitterSocial li a {
  display: block;
  line-height: 0;
  opacity: 0.85;
}
@media (hover: hover) {
  #single-voice .secVoice__sitterSocial li a:where(:any-link, :enabled, summary):hover {
    opacity: 1;
  }
}
#single-voice .secVoice__aside {
  flex-shrink: 0;
}
@media (max-width: 959px) {
  #single-voice .secVoice__aside {
    display: none;
  }
}
#single-voice .secVoice__asideHeading {
  margin: 0 0 24px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}
#single-voice .secVoice__asideGroup {
  margin-bottom: 28px;
}
#single-voice .secVoice__asideRegion {
  margin: 0 0 10px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #666;
}
#single-voice .secVoice__asideList {
  margin: 0;
  padding: 0;
  list-style: none;
}
#single-voice .secVoice__asideItem {
  border-bottom: 1px solid rgba(46, 32, 29, 0.1);
}
#single-voice .secVoice__asideItem:first-child {
  border-top: 1px solid rgba(46, 32, 29, 0.1);
}
#single-voice .secVoice__asideLink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 4px 14px 0;
  font-size: 1.4rem;
  color: #5C3911;
  text-decoration: none;
}
#single-voice .secVoice__asideLink::after {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid #9B8D82;
  border-bottom: 2px solid #9B8D82;
  transform: rotate(-45deg);
  opacity: 0.6;
}
@media (hover: hover) {
  #single-voice .secVoice__asideLink:where(:any-link, :enabled, summary):hover {
    color: var(--main-color, #33b8a6);
  }
}
#single-voice .secVoice__asideRecent {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(46, 32, 29, 0.12);
}
#single-voice .secVoice__asideRecentTtl {
  margin: 0 0 12px;
  font-size: 1.4rem;
  font-weight: bold;
}
#single-voice .secVoice__asideRecentList {
  margin: 0;
  padding: 0;
  list-style: none;
}
#single-voice .secVoice__asideRecentList li {
  margin-bottom: 10px;
  font-size: 1.3rem;
  line-height: 1.5;
}
#single-voice .secVoice__asideRecentList li a {
  color: #5C3911;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (hover: hover) {
  #single-voice .secVoice__asideRecentList li a:where(:any-link, :enabled, summary):hover {
    color: var(--main-color, #33b8a6);
  }
}
#single-voice .secVoicePetsitter {
  padding: 0 0 120px;
}
@media (max-width: 750px) {
  #single-voice .secVoicePetsitter {
    padding: 0 0 95px;
  }
}
#single-voice .secVoicePetsitter__heading {
  margin-bottom: 3.7rem;
}
@media (max-width: 750px) {
  #single-voice .secVoicePetsitter__heading {
    margin-bottom: 2.5rem;
  }
}
#single-voice .secFind {
  margin-bottom: 14rem;
}
@media (max-width: 750px) {
  #single-voice .secFind {
    margin-bottom: 7.5rem;
  }
}

#archive-voice {
  background: #faf8f6;
}
#archive-voice .secVoiceArchive__pageHeading {
  margin-bottom: 2.8rem;
}
@media (max-width: 750px) {
  #archive-voice .secVoiceArchive__pageHeading {
    margin-bottom: 2rem;
  }
}
#archive-voice .secVoiceArchive__post:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  #archive-voice .secVoiceArchive__post:not(:last-child) {
    margin-bottom: 20px;
  }
}
#archive-voice .secVoiceArchive__link {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  display: flex;
}
@media (max-width: 750px) {
  #archive-voice .secVoiceArchive__link {
    display: block;
    padding: 22px 15px;
  }
}
@media (hover: hover) {
  #archive-voice .secVoiceArchive__link:where(:any-link, :enabled, summary):hover .c-btn-02__link {
    color: #EF8862;
  }
}
#archive-voice .secVoiceArchive__thumbWrap {
  width: 150px;
}
@media (max-width: 750px) {
  #archive-voice .secVoiceArchive__thumbWrap {
    margin-inline: auto;
    margin-bottom: 20px;
  }
}
#archive-voice .secVoiceArchive__thumb {
  width: 150px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 3px solid #EF8862;
  overflow: hidden;
}
#archive-voice .secVoiceArchive__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#archive-voice .secVoiceArchive__name {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}
#archive-voice .secVoiceArchive__name .big {
  font-size: 2.4rem;
}
#archive-voice .secVoiceArchive__body {
  flex: 1;
  padding-left: 33px;
}
@media (max-width: 750px) {
  #archive-voice .secVoiceArchive__body {
    padding-left: 0;
  }
}
#archive-voice .secVoiceArchive__category {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  margin-bottom: 1.7rem;
}
@media (max-width: 750px) {
  #archive-voice .secVoiceArchive__category {
    margin-bottom: 1.5rem;
  }
}
#archive-voice .secVoiceArchive__category__item {
  display: inline-block;
  border-radius: 28px;
  background: #887e7b;
  padding: 2px 9px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 750px) {
  #archive-voice .secVoiceArchive__category__item {
    font-size: 1.2rem;
    padding: 1px 10px;
  }
}
#archive-voice .secVoiceArchive__title {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1.8rem;
}
@media (max-width: 750px) {
  #archive-voice .secVoiceArchive__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
#archive-voice .secVoiceArchive__excerpt {
  line-height: 2;
}
@media (max-width: 750px) {
  #archive-voice .secVoiceArchive__excerpt {
    line-height: 1.86;
  }
}
#archive-voice .secVoiceArchive__excerpt strong {
  font-weight: 400;
  background: linear-gradient(transparent 65%, #fce7e0 65%);
}
#archive-voice .secVoiceArchive__empty {
  padding: 40px 20px;
  text-align: center;
  font-size: 1.5rem;
}
#archive-voice .secFind {
  margin-bottom: 14rem;
}
@media (max-width: 750px) {
  #archive-voice .secFind {
    margin-bottom: 7.5rem;
  }
}

/**
* Foundation
* ========================== */
/* Object
* ========================== */
/* Component ------------ */
/* Structures ------------ */
/* Project ------------ */
/*# sourceMappingURL=style.css.map */
