@charset "utf-8";
:root {
  --sans: "Noto Sans JP", sans-serif;
  --zen-kaku-gothic: "Zen Kaku Gothic New", sans-serif;
  --text-color: #000;
  --side-margin-sp: 8vw;
  --spacing: 1em;
}

/* ------------------------------
  common(sp)
------------------------------ */
* {
  letter-spacing: var(--spacing);
}

html {
  scroll-behavior: auto;
  overflow-anchor: none;
}

body {
  font-family: var(--sans);
  line-height: 1;
  font-weight: 400;
  color: var(--text-color);
  --spacing: 0.05em;
}

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

img {
  max-width: 100%;
  vertical-align: middle;
  height: auto;
}

.pc {
  display: none;
}

.sp {
  display: inline-block;
}

.zen {
  font-family: var(--zen-kaku-gothic);
  font-weight: 600;
}

.main {
  padding-top: 70px;
  overflow: hidden;
}

/* ------------------------------
  header(sp)
------------------------------ */
.header {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 70px;
  font-size: 16px;
  font-weight: 400;
  color: #595757;
  background-color: rgb(255 255 255 / 0.95);
}

.header-logo {
  position: relative;
  width: 120px;
  margin: 11px auto 0;
  left: -5%;
}

.header-logo span {
  position: absolute;
  top: 25px;
  right: -75px;
  font-size: 10px;
  display: inline-block;
  white-space: nowrap;
  color: #fff;
  padding: 0.5em 0.7em;
  background-color: #a58734;
}

.pc-nav {
  display: none;
}

.sp-nav {
  z-index: 1;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  top: 70px;
  left: -500px;
  width: fit-content;
  height: 100%;
  padding: 38px 30px 110px 30px;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  background-color: #f5efe6;
  transition: all 0.5s;
}

.sp-nav::-webkit-scrollbar {
  display: none;
}

.sp-nav-inner {
  min-height: calc(100% + 1px);
}

.active .sp-nav {
  opacity: 1;
  visibility: visible;
  left: 0;
}

.mask {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 70px;
  left: 0;
  background-color: #000;
  width: 100%;
  height: calc(100% - 70px);
  transition: all 0.3s;
}

.active .mask {
  visibility: visible;
  opacity: 0.6;
}

.hamburger {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 15px;
  width: 46px;
  height: 46px;
  background: url(../images/btn_menu_sp.png) no-repeat center top / cover;
}

.active .hamburger {
  background-position: center bottom;
}

.sp-nav ul {
  display: flex;
  flex-direction: column;
  row-gap: 38px;
  margin-bottom: 36px;
}

.header-blog-btn {
  display: grid;
  place-items: center;
  width: 144px;
  height: 32px;
  border-radius: calc(infinity * 1px);
  color: #a58734;
  border: solid 1px #a58734;
  font-size: 15px;
  font-weight: 400;
}

/* ------------------------------
  footer(sp)
------------------------------ */
.footer {
  padding: 80px 0 60px;
}

.footer-text {
  max-width: 310px;
  margin-inline: auto;
}

.footer-text > img {
  width: 100%;
}

.footer-btn-wrap {
  margin-top: -24px;
  padding: 42px 0 48px;
  background: url(../images/bg_pattern_2.png) center -20px / 346px auto;
}

.footer-btn-wrap ul > li {
  overflow: hidden;
  background-color: #fff;
}

.footer-btn-wrap ul > li:nth-of-type(1) {
  max-width: 330px;
  margin: 0 auto;
  border-radius: 8px;
}

.footer-btn-wrap ul > li:nth-of-type(2) {
  max-width: 242px;
  margin: 15px auto 0;
  border-radius: 6px;
}

.footer-nav-1-wrap {
  background-color: #4f3300;
  padding: 32px 34px;
}

.footer-nav-1 {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.footer-nav-2 {
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  margin-inline: auto;
  row-gap: 0.8em;
  padding: 20px 32px;
  font-size: 12px;
}

.footer-nav-2 li:not(:last-of-type)::after {
  content: "｜";
}

.pagetop {
  position: fixed;
  right: 5px;
  bottom: 5px;
  display: block;
  width: 36px;
  height: 36px;
  background: url("../images/btn_pagetop.svg") no-repeat center / cover;
}

.pagetop,
.fixed-btn-list {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.pagetop.active,
.fixed-btn-list.active {
  opacity: 1;
  visibility: visible;
}

.fixed-btn-list {
  position: fixed;
  z-index: 999;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  display: flex;
  height: 50px;
}

.fixed-btn-list .satei {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 1em;
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  background-color: #009fe6;
  white-space: nowrap;
  border-radius: 5px 5px 0 0;
}

.fixed-btn-list .satei span {
  font-size: 18px;
}

.fixed-btn-list .line {
  display: block;
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 1em;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  font-weight: normal;
  color: #fff;
  background-color: #06c755;
  border-radius: 5px 5px 0 0;
}

/* ------------------------------
  front-page(sp)
------------------------------ */
.front-page {
  container-type: inline-size;
  padding: 50px 0;
}

.front-page-logo {
  max-width: 50cqw;
  margin-inline: auto;
}

.front-page-pic {
  padding: 0 5cqw;
  margin-top: 10cqw;
}

.front-page-pic img {
  max-width: auto;
  width: 100%;
}

.front-page-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8cqw;
}

.front-page-heading span:nth-of-type(1) {
  display: block;
  font-size: 4.8cqw;
  font-weight: 600;
  color: #bf9258;
}

.front-page-heading span:nth-of-type(1)::before {
  content: "＼";
}

.front-page-heading span:nth-of-type(1)::after {
  content: "／";
}

.front-page-heading span:nth-of-type(2) {
  display: block;
  margin-top: 3cqw;
  font-size: 9cqw;
  font-weight: 600;
}

.front-page-btn-list {
  display: flex;
  flex-direction: column;
  width: fit-content;
  margin: 5.33cqw auto 0;
  row-gap: 5.33cqw;
}

.front-page-btn-list li {
  overflow: hidden;
  border-radius: 3px;
}

.front-page-btn-list a {
  display: grid;
  place-items: center;
  width: 74.13cqw;
  height: 17.06cqw;
  font-size: 7cqw;
  font-weight: 600;
  color: #fff;
  background-color: #a58734;
  text-indent: 0.05em;
}

.front-page-text-1 {
  margin-top: 14cqw;
  font-size: 5.8cqw;
  line-height: 1.8;
  text-align: center;
  font-weight: 600;
  color: #aa944e;
}

.front-page-text-2 {
  margin-top: 6cqw;
  font-size: 3.5cqw;
  line-height: 2.2;
  text-align: center;
}

.notfound-title {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 600;
  text-align: center;
  color: #bf9258;
  margin: 2em 0 1em;
}

.notfound-text {
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 4em;
}
/* ------------------------------
  home(sp)
------------------------------ */
/* ホーム_ヒーロー(sp) */
.hero-wrap {
  margin-top: 15px;
  padding: 0 5.85vw;
}

.soja .hero-wrap {
  background: url(../images/bg_hero-wrap_soja_sp.jpg) no-repeat center bottom /
    100% auto;
}

.kurashiki .hero-wrap {
  background: url(../images/bg_hero-wrap_kurashiki_sp.jpg) no-repeat center
    bottom / 100% auto;
}

.hero {
  container-type: inline-size;
  aspect-ratio: 330 / 650;
  margin-inline: auto;
  background-repeat: no-repeat;
  background-position: center 7.2vw;
  background-size: 100% auto;
}

.soja .hero {
  background-image: url(../images/bg_hero_soja_sp.png);
}

.kurashiki .hero {
  background-image: url(../images/bg_hero_kurashiki_sp.png);
}

.hero-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-heading-text-line {
  display: inline-block;
  background: linear-gradient(0deg, #f9be00 4.2cqw, transparent 4.2cqw);
  padding-bottom: 2cqw;
}

.hero-heading-text-1 {
  font-size: 13.15cqw;
}

.hero-heading-text-2 {
  font-size: 11.21cqw;
  margin-top: 5.45cqw;
}

.hero-heading-text-3 {
  display: block;
  margin-top: 4.2cqw;
  font-size: 5.96cqw;
}

.hero-heading-text-4 {
  display: block;
  margin-top: 4.2cqw;
  font-size: 5.96cqw;
}

.hero-point {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 13cqw 3.93cqw 0 5.5cqw;
}

.hero-point p {
  width: 29.1cqw;
  height: 29.1cqw;
}

.hero-satei {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 47cqw;
}

.hero-satei p:nth-of-type(1) {
  font-size: 4.73cqw;
  font-weight: 600;
  color: #bf9258;
}

.hero-satei p:nth-of-type(1)::before {
  content: "＼";
}

.hero-satei p:nth-of-type(1)::after {
  content: "／";
}

.hero-satei p:nth-of-type(2) {
  margin-top: 3cqw;
  font-size: 10.5cqw;
  font-weight: 600;
}

.hero-btn-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 3.63cqw;
  width: fit-content;
  margin: 7.5cqw auto;
}

.hero-btn-list li {
  overflow: hidden;
  background-color: #fff;
}

.hero-btn-list li:nth-of-type(1) {
  width: 78.78cqw;
  border-radius: 6px;
}

.hero-btn-list li:nth-of-type(2) {
  width: 58.18cqw;
  border-radius: 4px;
}

/* ホーム_ブログ(sp) */
.home-blog {
  padding: 50px var(--side-margin-sp);
  background-color: #f5efe6;
}

.home-blog-heading {
  width: 288px;
  height: 79px;
  margin-inline: auto;
  background: url(../images/bg_home-blog_heading.png) no-repeat center / 100%
    auto;
  font-size: 24px;
  padding-top: 18px;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  font-weight: 600;
  color: #bf9258;
}

.home-blog-text {
  margin: 12px 0 40px;
  font-size: 17px;
  line-height: 1.8;
  text-align: center;
  font-weight: 400;
  color: #a58734;
  white-space: nowrap;
}

.home-blog-list {
  margin: 50px 0 40px;
}

.home-blog-list li:not(:first-of-type) {
  margin-top: 30px;
}

.home-blog-item {
  display: flex;
}

.home-blog-item-pic {
  flex-shrink: 0;
  width: 32vw;
}

.home-blog-item-text {
  margin-left: 16px;
}

.home-blog-item-title {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 600;
  margin-top: 0.3em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.btn-round {
  display: grid;
  place-items: center;
  width: fit-content;
  margin-inline: auto;
  border-radius: calc(infinity * 1px);
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  border: solid 1px #000;
}

/* ホーム_選ばれる理由(sp) */
.home-reasons {
  padding: 60px 0 0;
}

.home-heading {
  font-size: 25px;
  line-height: 1.6;
  text-align: center;
  font-weight: 600;
  color: #bf9258;
  text-indent: 0.05em;
}

.home-heading::after {
  content: "";
  display: block;
  width: fit-content;
  margin: 0 auto;
  width: 258px;
  height: 6px;
  margin-top: 10px;
  background: repeating-linear-gradient(
    90deg,
    #bf9258,
    #bf9258 2px,
    #fff 2px,
    #fff 4px
  );
}

.home-reasons-message {
  text-align: center;
  margin-top: 30px;
}

.home-reasons-message-inner {
  display: inline;
  font-size: 32px;
  line-height: 1.6;
  font-weight: 600;
  background: linear-gradient(transparent 75%, #f9be00 0%);
}

.home-reasons-message + p {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 600;
  text-align: center;
  margin: 30px 0 60px;
}

.home-reasons-point-item {
  margin-top: 50px;
  padding: 0 var(--side-margin-sp);
}

.home-reasons-point-item-inner {
  position: relative;
  background: linear-gradient(
      180deg,
      #fff 0%,
      #fff 20px,
      transparent 20px,
      transparent 100%
    ),
    #f4f7e4;
}

.home-reasons-point-item-text-wrap {
  padding: 0 1.5em;
}

.home-reasons-point-item-heading-number {
  display: block;
  font-size: 60px;
  font-weight: 600;
  color: #06c755;
}

.home-reasons-point-item-heading-text {
  display: block;
  margin-top: 12px;
}

.home-reasons-point-item-heading-text-inner {
  display: inline;
  font-size: 26px;
  line-height: 1.6;
  font-weight: 600;
  color: #bf9258;
  background: linear-gradient(transparent 75%, #ffe000 0%);
}

.home-reasons-point-item-text {
  margin-top: 25px;
  font-size: 15px;
  line-height: 2;
  text-align: justify;
}

.point-1 .home-reasons-point-item-inner {
  padding-bottom: 246px;
}

.point-1 .home-reasons-point-item-pic {
  position: absolute;
  width: 352px;
  max-width: initial;
  bottom: -31px;
  right: -110px;
}

.point-2 .home-reasons-point-item-inner {
  padding-bottom: 190px;
}

.point-2 .home-reasons-point-item-pic {
  position: absolute;
  width: 142px;
  max-width: initial;
  bottom: 10px;
  left: calc(50% - 52px);
}

.point-3 .home-reasons-point-item-inner {
  padding-bottom: 160px;
}

.point-3 .home-reasons-point-item-pic {
  position: absolute;
  width: 270px;
  max-width: initial;
  bottom: -20px;
  right: -46px;
}

.point-4 .home-reasons-point-item-inner {
  padding-bottom: 190px;
}

.point-4 .home-reasons-point-item-pic {
  position: absolute;
  width: 280px;
  max-width: initial;
  bottom: -15px;
  left: calc(50% - 140px);
}

.home-reasons > p:last-of-type {
  width: fit-content;
  margin-inline: auto;
  padding: 60px 0;
  font-size: 22px;
  line-height: 1.8;
  font-weight: 600;
  color: #a58734;
}

/* ホーム_こういった方に選ばれています(sp) */
.home-chosen {
  padding-top: 50px;
  background-color: #f5efe6;
}

.home-chosen-pic {
  position: relative;
  margin: 35px auto 0;
  height: 742px;
}

.home-chosen-pic img {
  max-width: initial;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  width: 398px;
}

.home-chosen-satei {
  padding: 0 var(--side-margin-sp) 50px;
  background: linear-gradient(
      180deg,
      #f5efe6 0%,
      #f5efe6 205px,
      transparent 205px,
      transparent 100%
    ),
    url(../images/bg_pattern_2.png);
  background-position: center;
  background-size: 346px auto;
}

.home-chosen-satei-inner {
  background-color: #fff;
}

.home-chosen-satei-heading {
  padding: 1em 0;
  font-size: 24px;
  line-height: 1.6;
  text-align: center;
  font-weight: 600;
  color: #fff;
  background-color: #ff8040;
}

.home-chosen-satei-heading-sub {
  font-size: 26px;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
  padding: 1em 0;
}

.home-chosen-satei-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 15px;
  padding-bottom: 40px;
}

.home-chosen-satei-text p {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 600;
  color: #bf9258;
  white-space: nowrap;
}

.home-chosen-satei-text span {
  display: inline-block;
  text-align: center;
}

.home-chosen-satei-text p::before,
.home-chosen-satei-text p::after {
  position: relative;
  display: inline-block;
  content: "";
  background: #bf9258;
  width: 1px;
  height: 3.5em;
  margin: 0 1em;
  vertical-align: bottom;
}

.home-chosen-satei-text p::before {
  transform: rotate(-20deg);
}

.home-chosen-satei-text p::after {
  transform: rotate(20deg);
}

.home-chosen-satei-btn-list {
  width: fit-content;
  margin-inline: auto;
  padding: 0 15px 30px;
}

.home-chosen-satei-btn-list li {
  overflow: hidden;
  background-color: #fff;
}

.home-chosen-satei-btn-list li:nth-of-type(1) {
  max-width: 330px;
  margin: 0 auto;
  border-radius: 6px;
}

.home-chosen-satei-btn-list li:nth-of-type(2) {
  max-width: 242px;
  margin: 15px auto 0;
  border-radius: 4px;
}

/* ホーム_査定・売却事例(sp) */
.home-case {
  padding: 60px var(--side-margin-sp) 120px;
}

.home-case-text {
  font-size: 17px;
  line-height: 1.8;
  font-weight: normal;
  text-align: center;
  margin: 1em 0 2em;
}

.home-case-list-wrap {
  position: relative;
  padding: 40px 18px 100px;
  border-radius: 20px;
  background-color: #f2f2f2;
}

.home-case-list {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  margin-bottom: 40px;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 600;
}

.home-case-list dt {
  display: flex;
  
  flex-direction: column;
  row-gap: 0.5em;
  font-weight: 400;
}

.home-case-list-title{
  margin: 0 0 10px 0;
  font-size: 14px;
}

.home-case-list-title::first-line{
  font-weight: 600;
  font-size: 16px;
}

.home-case-list-tag {
  display: block;
  width: fit-content;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  padding: 0.4em 0.5em;
  background-color: #aa944e;
}

.home-case-list dd {
  text-align: right;
  color: #ea5514;
}

.home-case-pic {
  position: absolute;
  width: 235px;
  bottom: -63px;
  left: calc(50% - 114px);
}

/* ホーム_よくあるご質問(sp) */
.home-faq {
  padding: 50px var(--side-margin-sp);
  background-color: #f5efe6;
}

.home-faq-text {
  font-size: 17px;
  line-height: 1.8;
  font-weight: 600;
  text-align: center;
  margin: 1em 0 2em;
}

/* よくあるご質問_アコーディオン(sp) */
.faq-content {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.faq-content details {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #aa944e;
  background-color: #fff;
  margin-bottom: 20px;
}

.faq-content summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  background-color: #aa944e;
  cursor: pointer;
  position: relative;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 600;
  color: #fff;
}

.faq-content details:nth-child(even) summary {
  background-color: #8b7838;
}

.faq-content summary span:first-of-type {
  flex-grow: 1;
}

.faq-content summary::before {
  content: "";
  display: block;
  flex-shrink: 0;
  margin-right: 17px;
  width: 20px;
  height: 27px;
  background: url(../images/icon_faq_q.svg) no-repeat center / cover;
}

.faq-details {
  overflow: hidden;
}

.faq-content summary::-webkit-details-marker {
  display: none;
}

.faq-accordion .icon {
  align-self: center;
  flex-shrink: 0;
  position: relative;
  width: 20px;
  height: 20px;
  margin-left: 17px;
}

.faq-accordion .icon::before,
.faq-accordion .icon::after {
  content: "";
  position: absolute;
  background-color: #fff;
  transition: transform 0.2s ease;
}

.faq-accordion .icon::before {
  width: 2px;
  height: 20px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: center;
}

.faq-accordion .icon::after {
  width: 20px;
  height: 2px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.faq-accordion .icon.open::before {
  transform: translateX(-50%) rotate(90deg);
}

.faq-details-inner {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  font-size: 15px;
  line-height: 1.8;
}

.faq-details-inner {
}

.faq-details-inner::before {
  content: "";
  display: block;
  flex-shrink: 0;
  margin-right: 17px;
  width: 20px;
  height: 25px;
  background: url(../images/icon_faq_A.svg) no-repeat center / cover;
}

.faq-details-inner section {
  padding: 1em 0;
  margin: 1em 0 0 0;
  border-top: 1px solid #aa944e;
  border-bottom: 1px solid #aa944e;
}

.faq-details-inner div section:last-of-type {
  margin: 0 0 1em 0;
  border-top: none;
}

.faq-details-inner h3 {
  display: flex;
  align-items: baseline;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.3em;
}

.faq-details-inner .bold {
  font-weight: 600;
}

.faq-details-inner h3::before {
  content: "■";
  display: inline-block;
  margin-right: 0.2em;
}

.faq-details-inner ul {
  margin: 1em 0;
}

.faq-details-inner li {
  display: flex;
  align-items: baseline;
}

.faq-details-inner li::before {
  content: "・";
}

.home-faq > div:last-of-type {
  margin-top: 40px;
}

/* ホーム_お客様の声(sp) */
.home-voice {
  padding: 50px var(--side-margin-sp);
}

.home-voice-text {
  font-size: 17px;
  line-height: 1.8;
  font-weight: normal;
  text-align: center;
  margin: 1em 0 2em;
}

/* カルーセル(お客様の声) */
.home-voice-slider-wrap {
  position: relative;
  margin-bottom: 40px;
}

.home-voice-slider {
  overflow: hidden;
  width: 100%;
  margin: 40px auto 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 20px,
    #f2f2f2 20px,
    #f2f2f2 100%
  );
}

.swiper-button-next:after,
.swiper-button-prev:after {
  content: none;
}

.home-voice-slider-wrap .swiper-button-prev {
  position: absolute;
  top: 50%;
  left: -15px;
  z-index: 1;
  width: 30px;
  height: 30px;
  background: url(../images/btn_voice_slider_sp.svg);
  transform: translateY(-50%) rotate(180deg);
}

.home-voice-slider-wrap .swiper-button-next {
  position: absolute;
  top: 50%;
  right: -15px;
  z-index: 1;
  width: 30px;
  height: 30px;
  background: url(../images/btn_voice_slider_sp.svg);
  transform: translateY(-50%);
}

.swiper-slide-inner {
  display: block;
  padding: 0 30px 30px;
}

.home-voice-slider img {
  display: block;
  width: 90px;
  margin-inline: auto;
}

.home-voice-slider .title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
  margin: 1em 0 0.5em;
}

.home-voice-slider .text {
  font-size: 15px;
  line-height: 1.8;
}

/* ホーム_不動産売却のヒント(sp) */
.home-hint {
  padding: 50px var(--side-margin-sp);
  background-color: #f5efe6;
}

.home-hint-text {
  font-size: 16.5px;
  line-height: 1.8;
  font-weight: normal;
  text-align: center;
  margin: 1em 0 2em;
}

.home-hint-list {
  margin: 50px 0 40px;
}

.home-hint-list li:not(:first-of-type) {
  margin-top: 30px;
}

.home-hint-item {
  display: flex;
}

.home-hint-item-pic {
  flex-shrink: 0;
  width: 32vw;
}

.home-hint-item-text {
  margin-left: 16px;
  line-height: 1.8;
  font-weight: 600;
}

.home-hint-item-cat {
  display: block;
  width: fit-content;
  padding: 0.2em 1em;
  border-radius: calc(infinity * 1px);
  font-size: 13px;
  color: #06c755;
  border: solid 1px #06c755;
  font-weight: 400;
}

.home-hint-item-title {
  font-size: 16px;
  margin-top: 0.5em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* home_不動産査定・売却の流れ(sp) */
.home-flow {
  padding: 50px var(--side-margin-sp) 0;
}

.home-flow-text {
  font-size: 17px;
  line-height: 1.8;
  font-weight: normal;
  text-align: center;
  margin: 1em 0 2em;
}

.home-flow-list {
  width: fit-content;
  margin: 0 auto 50px;
}

.home-flow-list div {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.home-flow-list > li:not(:last-of-type)::after {
  content: "";
  display: block;
  background: #a58734;
  height: calc(tan(60deg) * 15px / 2);
  width: 15px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin: 16px auto;
}

.home-flow-list img {
  max-width: 132px;
}

.home-flow-list p {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
  color: #4f3300;
}

/* ------------------------------
  よくあるご質問(sp)
------------------------------ */
.page-heading {
  padding-top: 10px;
}

.page-heading span {
  display: grid;
  place-items: center;
  height: 125px;
  font-size: 26px;
  line-height: 1.5;
  font-weight: 600;
  color: #fff;
  background: url(../images/bg_pattern_3.png) center 0 / 274px auto;
}

.faq-text {
  font-size: 17px;
  line-height: 1.8;
  font-weight: 600;
  text-align: center;
  padding: 1.8em 0;
}

.faq-list-wrap {
  padding: 30px 0;
  background-color: #f5f6f5;
}

.faq-list {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  width: fit-content;
  margin-inline: auto;
}

.faq-list li {
  overflow: hidden;
  border-radius: calc(infinity * 1px);
  background-color: #fff;
  border: solid 1px #a58734;
}

.faq-list a {
  display: grid;
  place-items: center;
  width: 218px;
  height: 40px;
  font-size: 20px;
  font-weight: 600;
  color: #a58734;
}

.faq-content-heading {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 600;
  margin: 1.8em 0;
  text-align: center;
}

.faq-content-heading::before,
.faq-content-heading::after {
  content: "●";
  color: #aa944e;
}

.faq .faq-content {
  padding: 0 var(--side-margin-sp);
}

.faq .faq-accordion > section:not(:first-of-type) {
  padding-top: 20px;
}

/* ------------------------------
  ウルっちについて(sp)
------------------------------ */
.about-inner {
  padding: 0 5vw;
}

.about-text-1 {
  font-size: 24px;
  line-height: 1.8;
  font-weight: 600;
  text-align: center;
  color: #aa944e;
  margin: 2em 0 1em;
  white-space: nowrap;
}

.about-text-2 {
  font-size: 15px;
  line-height: 2.2;
  text-align: center;
  white-space: nowrap;
}

.about-pic {
  padding: 40px 0 50px;
}

.about-pic img {
  max-width: auto;
  width: 100%;
}

.about-content-heading {
  display: grid;
  place-items: center;
  height: 80px;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 600;
  background-color: #e5eae5;
}

.about-content + .about-content {
  margin-top: 60px;
}

.about-content-company-list {
  display: flex;
  flex-direction: column;
  row-gap: 1.5em;
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.8;
}

.about-content-company-item > dt {
  font-weight: 600;
  background-color: #f5f6f5;
  padding: 0.5em 1em;
}

.about-content-company-item > dd {
  margin-top: 0.5em;
  padding: 0 1em;
}

.about-content-company-item.address > dt {
  letter-spacing: 0.8em;
}

.about-content-company-item.address dl dt {
  font-weight: 400;
}

.about-content-company-item.address dl dt::before {
  content: "■";
}

.about-content-company-item li::before {
  content: "・";
}

.about-content-inquiry-text {
  font-size: 14px;
  line-height: 2.2;
  text-align: center;
  white-space: nowrap;
  padding-top: 30px;
}

.about-content-frame {
  margin-top: 30px;
  padding: 1em;
  font-size: 14px;
  line-height: 2;
  border: solid 1px #dcdcdc;
}

.about-content-frame dl,
.about-content-frame dl > div:not(:first-of-type),
.about-content-frame dl + p {
  margin-top: 1.5em;
}

/* ------------------------------
  売買事例(sp)
------------------------------ */
.case-text {
  font-size: 17px;
  line-height: 1.8;
  font-weight: 600;
  text-align: center;
  padding: 1.8em 0 calc(1.8em + 40px);
}

.case-inner {
  padding: 0 var(--side-margin-sp);
}

.case-list-wrap {
  position: relative;
  padding: 110px 18px 20px;
  border-radius: 20px;
  background-color: #f2f2f2;
}

.case-pic {
  position: absolute;
  width: 228px;
  top: -40px;
  left: calc(50% - 114px);
}

.case-list {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 600;
}

.case-list > div {
  padding-bottom: 1em;
}

.case-list > div:not(:last-of-type) {
  border-bottom: solid 1px #fff;
}

.case-list dt {
  display: flex;
  flex-direction: column;
  row-gap: 0.5em;
  font-weight: 400;
}

.case-list-title{
  margin: 0 0 10px 0;
  font-size: 14px;
}

.case-list-title::first-line{
  font-weight: 600;
  font-size: 16px;
}

.case-list-tag {
  display: block;
  width: fit-content;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  padding: 0.4em 0.5em;
  background-color: #aa944e;
}

.case-list dd {
  color: #ea5514;
  text-align: right;
}

/* ------------------------------
  ご利用された方の声(sp)
------------------------------ */
.voice-text {
  font-size: 17px;
  line-height: 1.8;
  font-weight: 600;
  text-align: center;
  padding: 1.8em 0;
}

.voice-inner {
  padding: 20px 6.66vw 0;
}

.voice-card {
  background-color: #f2f2f2;
  padding: 0 20px 20px;
  border-radius: 20px;
}

.voice-card + .voice-card {
  margin-top: 50px;
}

.voice-card-inner {
  transform: translateY(-20px);
}

.voice-card-pic {
  display: block;
  width: 90px;
  margin-inline: auto;
}

.voice-card-title-wrap {
  display: flex;
  flex-direction: column-reverse;
}

.voice-card-title {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 600;
}

.voice-card-age {
  display: block;
  font-size: 15px;
  text-align: center;
  margin: 0.5em 0 1em;
}

.voice-card-text {
  font-size: 16px;
  line-height: 2;
  padding-top: 0.5em;
}

/* ------------------------------
  不動産査定から売却までの流れ(sp)
------------------------------ */
.flow-inner {
  padding: 0 5vw;
}

.flow-container {
  margin-top: 20px;
}

.flow-container-heading {
  font-weight: 600;
  color: #fff;
}

.flow-container-heading span:nth-of-type(1) {
  display: grid;
  place-items: center;
  margin-inline: auto;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  font-size: 21px;
  background-color: #7b6949;
  transform: translateY(20px);
}

.flow-container-heading span:nth-of-type(2) {
  display: block;
  padding: 20px 10px 15px 10px;
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  background-color: #7b6949;
}

.flow-container-inner {
  padding: 40px 20px;
  background-color: #f5efe6;
}

.flow-container-pic {
  display: block;
  width: 144px;
  margin-inline: auto;
}

.flow-container-content {
  padding-top: 30px;
}

.flow-container-content p {
  display: flex;
  font-size: 15px;
  line-height: 2;
}

.flow-container-content p::before {
  content: "●";
  padding-right: 0.2em;
}

.flow-container-content p + p {
  margin-top: 1.5em;
}

.flow-container-content ul {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 600;
  color: #aa944e;
  margin-top: 30px;
}

.flow-container-content li {
  display: flex;
}

.flow-container-content li::before {
  content: "→";
  padding-right: 0.2em;
}

.flow-satei-btn {
  margin-top: 40px;
}

.flow-satei-btn > li {
  overflow: hidden;
  background-color: #fff;
}

.flow-satei-btn > li:nth-of-type(1) {
  max-width: 330px;
  margin: 0 auto;
  border-radius: 4px;
}

.flow-satei-btn > li:nth-of-type(2) {
  max-width: 242px;
  margin: 15px auto 0;
  border-radius: 3px;
}

/* ------------------------------
  ブログ(sp)
------------------------------ */
/* ブログ_アーカイブ(sp) */
.blog-heading-wrap {
  padding-top: 10px;
}

.blog-heading-bg {
  height: 206px;
  background-image: url(../images/bg_blog_heading_text_sp.png),
    url(../images/bg_blog_heading.png);
  background-size: 375px auto, 275px auto;
  background-repeat: no-repeat, repeat;
  background-position: center, center top 123px;
}

.blog-heading {
  height: 206px;
  padding-top: 90px;
  font-size: 24px;
  text-align: center;
  font-weight: 600;
  color: #bf9258;
}

.blog-archive-wrap {
  background-color: #f5efe6;
  padding-bottom: 50px;
}

.blog-date-title {
  font-size: 22px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 1.8em 0;
}

.blog-archive-text {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.06em;
  text-align: center;
  font-weight: 600;
  color: #a58734;
  padding: 1.8em 0;
}

.blog-list {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  padding: 0 var(--side-margin-sp) 0;
}

.blog-item a {
  display: flex;
}

.blog-item-thumb {
  flex-shrink: 0;
  width: 41.26%;
}

.blog-item-inner {
  flex-grow: 1;
  padding-left: 20px;
}

.blog-item-date-wrap {
  display: flex;
  align-items: center;
  column-gap: 15px;
  font-size: 14px;
}

.blog-item-date {
  font-size: 16px;
}

.blog-item-tag-new {
  font-size: 13px;
  color: #fff;
  padding: 0.3em 0.5em;
  background-color: #ffa640;
  border-radius: 3px;
}

.blog-item-title {
  margin-top: 0.3em;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 600;
  display: -webkit-box; /* 必須 */
  -webkit-box-orient: vertical; /* 必須 */
  -webkit-line-clamp: 2; /* 行数を制限 */
  overflow: hidden; /* はみ出た部分を非表示 */
}

/* アーカイブのページネーション(sp) */
.pagination,
.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  width: fit-content;
  margin-inline: auto;
  font-size: 17px;
  color: #6b6b6b;
}

.blog-archive-wrap .pagination {
  padding-top: 40px;
}

.pagination:empty {
  margin-top: 0;
}

.pagination a,
.pagination span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background-color: #fff;
}

.pagination .page-numbers.current {
  color: #fff;
  background-color: #b8bfb8;
}

.pagination .dots {
  width: fit-content;
  border: none;
  border-radius: 0;
  background-color: transparent;
}

.pagination .prev,
.pagination .next {
  display: block;
  width: 35px;
  height: 35px;
  background: url(../images/btn_pagination_arrow.svg) no-repeat center / cover;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.pagination .prev {
  transform: rotate(180deg);
}

/* 月別アーカイブ(sp) */
.dropdown-month-archive-heading {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1em;
}

.dropdown-month-archive {
  max-width: 200px;
  margin: 30px auto 0;
}

.dropdown-month-archive form {
  background-color: #fff;
}

.dropdown-month-archive select {
  width: 100%;
  padding: 10px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #f9f9f9;
  color: #333;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.dropdown-month-archive select:focus {
  border-color: #007acc;
  box-shadow: 0 0 5px rgba(0, 122, 204, 0.5);
  outline: none;
}

.dropdown-month-archive option {
  padding: 8px;
}

.dropdown-month-archive select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23333'/%3E%3C/svg%3E")
    no-repeat right 12px center;
  background-size: 10px 6px;
  padding-right: 30px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  padding: 10px 15px;
}

/* ブログ_シングル(sp) */
.blog-single {
  background-color: #f5efe6;
  padding-bottom: 50px;
}

.blog-single-article {
  padding: 40px var(--side-margin-sp) 0;
}

.blog-single-title {
  font-size: 22px;
  line-height: 1.8;
  margin-top: 0.2em;
  padding-bottom: 0.8em;
  border-bottom: solid 1px #d7d5a6;
}

.blog-single-content {
  margin: 30px 0 0 0;
  padding-bottom: 30px;
  border-bottom: solid 1px #d7d5a6;
}

/* シングルのページネーション(sp) */
.pagination-single-wrap {
  margin-top: 40px;
}

.pagination-single {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 13px;
  line-height: 1.8;
}

.prev-post,
.next-post {
  display: flex;
  align-items: center;
  gap: 0.6em;
}

.next-post {
  width: fit-content;
  margin-left: auto;
}

.prev-post-arrow,
.next-post-arrow {
  flex-shrink: 0;
  display: block;
  width: 30px;
  height: 30px;
  background: url(../images/btn_pagination_arrow.svg) no-repeat center / cover;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.prev-post-arrow {
  transform: rotate(180deg);
}

.pagination-single .empty {
  display: none;
}

.btn-return-archive {
  display: grid;
  place-items: center;
  width: fit-content;
  margin-inline: auto;
  border-radius: calc(infinity * 1px);
  padding: 0.6em 1.2em;
  font-size: 14px;
  background-color: #fff;
  margin-top: 20px;
}

/* ------------------------------
  ヒント(sp)
------------------------------ */
/* ヒント_アーカイブ(sp) */
.hint-text {
  font-size: 17px;
  line-height: 1.8;
  font-weight: 600;
  text-align: center;
  margin: 1.8em 0;
}

.hint-cat-title {
  font-size: 22px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 1.8em 0;
}

.hint-list-wrap {
  padding: 0 var(--side-margin-sp) 50px;
}

.hint-list-heading {
  display: grid;
  place-items: center;
  padding: 0.3em 1.5em;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  font-weight: 600;
  color: #06c755;
  border-radius: calc(infinity * 1px);
  background-color: #f5f6f5;
  margin-top: 30px;
}

.hint-list {
  font-size: 17px;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  row-gap: 1.5em;
  margin-top: 30px;
}

.hint-item {
  border-bottom: solid 1px #b2b2b2;
  padding-bottom: 1.5em;
  font-weight: 600;
}

.hint-item a {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}

.hint-cat-tag {
  flex-shrink: 0;
  width: fit-content;
  display: grid;
  place-items: center;
  min-width: 152px;
  padding: 0.2em 1.2em;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 400;
  color: #06c755;
  border: solid 1px #06c755;
  border-radius: calc(infinity * 1px);
}

.hint .pagination {
  margin-top: 40px;
}

.hint .pagination .page-numbers {
  border: solid 1px #bbb;
}

.hint .pagination .page-numbers.dots,
.hint .pagination .page-numbers.current {
  border: none;
}

.hint-cat-list {
  background-color: #f5f6f5;
  padding: 40px var(--side-margin-sp);
}

.hint-cat-list ul {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  width: fit-content;
  margin: 0 auto;
}

.hint-cat-list ul a {
  width: fit-content;
  display: grid;
  place-items: center;
  min-width: 220px;
  padding: 0.3em 1.5em;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: #06c755;
  border: solid 1px #06c755;
  border-radius: calc(infinity * 1px);
  background-color: #fff;
}

.btn-return-hint-archive {
  width: fit-content;
  display: grid;
  min-width: 220px;
  place-items: center;
  padding: 0.4em 2em;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: #a0a0a0;
  border-radius: calc(infinity * 1px);
  background-color: #fff;
  margin: 20px auto 0;
}

/* ヒント_よく見られているヒント(sp) */
.hint-seen {
  background-color: #f5efe6;
  padding: 40px var(--side-margin-sp);
}

.hint-seen-title {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  font-weight: 600;
  padding: 0.3em 1em;
  border-radius: calc(infinity * 1px);
  color: #fff;
  background-color: #a58734;
}

.hint-seen-list {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  margin-top: 30px;
}

.hint-seen-item-cat {
  display: block;
  width: fit-content;
  padding: 0.2em 1em;
  border-radius: calc(infinity * 1px);
  font-size: 13px;
  color: #06c755;
  border: solid 1px #06c755;
  margin-top: 1.5em;
}

.hint-seen-item-title {
  font-size: 17px;
  line-height: 1.8;
  font-weight: 600;
  margin-top: 0.5em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.hint-seen-item-excerpt {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 0.8em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* ヒント_シングル(sp) */
.hint-single-article {
  padding: 40px var(--side-margin-sp) 60px;
}

.hint-single-cat {
  width: fit-content;
  display: grid;
  place-items: center;
  padding: 0.3em 1.5em;
  margin: 0 auto 1em;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 600;
  color: #06c755;
  border: solid 1px #06c755;
  border-radius: calc(infinity * 1px);
}

.hint-single-title {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 600;
  text-align: center;
}

.hint-single-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  margin-top: 0.6em;
  background: repeating-linear-gradient(
    90deg,
    #bf9258,
    #bf9258 2px,
    #fff 2px,
    #fff 4px
  );
}

.hint-single-content {
  margin: 40px 0;
}

/* ヒント_シングルのページネーション(sp) */
.pagination-single-hint .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 40px;
  font-size: 13px;
  line-height: 1.8;
}

.pagination-single-hint a {
  display: block;
}

.pagination-single-hint .nav-next {
  margin-left: auto;
}

.pagination-single-hint .next-post-arrow,
.pagination-single-hint .prev-post-arrow {
  border: solid 1px #bbb;
  border-radius: 100%;
}

.btn-return-hint-single {
  display: grid;
  place-items: center;
  width: fit-content;
  margin-inline: auto;
  font-size: 14px;
  font-weight: 600;
  margin-top: 20px;
}

@media (min-width: 900px) {
  /* ------------------------------
    common(pc)
  ------------------------------ */
  .pc {
    display: inline-block;
  }

  .sp {
    display: none;
  }

  .main {
    padding-top: 100px;
  }

  /* ------------------------------
    header(pc)
  ------------------------------ */
  .header {
    height: 100px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1200px;
    margin-inline: auto;
    padding: 0 15px;
  }

  .header-logo {
    width: auto;
    margin: 16px 0 0 0;
    left: 0;
  }

  .header-logo img {
    width: min(15vw, 145px);
  }

  .header-logo span {
    top: auto;
    bottom: 0;
    right: 0;
    transform: translate(112%, -30%);
    font-size: min(1.16vw, 14px);
  }

  .sp-nav-wrap {
    display: none;
  }

  .pc-nav {
    display: block;
    padding: 10px 0 0 0;
  }

  .pc-nav-main {
    display: flex;
    flex-wrap: wrap;
    margin-top: 24px;
    font-size: clamp(14px, 1.25vw, 15px);
    font-weight: 400;
  }

  .pc-nav-main li:not(:first-of-type) {
    margin-left: min(2vw, 30px);
  }

  .pc-nav-sub {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 20px;
  }

  .pc-nav-sub li:first-of-type {
    font-size: 14px;
    font-weight: normal;
  }

  /* ------------------------------
    footer(pc)
    ------------------------------ */
  .footer {
    padding: 120px 0 0 0;
  }

  .footer-text {
    max-width: 530px;
  }

  .footer-btn-wrap {
    padding: 64px 0 62px;
    background-size: 493px auto;
    background-position: center 115px;
  }

  .footer-btn-wrap ul > li:nth-of-type(1) {
    max-width: 444px;
  }

  .footer-btn-wrap ul > li:nth-of-type(2) {
    max-width: 326px;
    margin: 20px auto 0;
  }

  .footer-nav-1-wrap {
    padding: 46px 1em;
  }

  .footer-nav-1 {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    max-width: 900px;
    margin-inline: auto;
  }

  .footer-nav-2 {
    padding: 30px;
    font-size: 14px;
  }

  .pagetop {
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
  }

  .fixed-btn-list {
    position: fixed;
    z-index: 11;
    left: auto;
    transform: none;
    bottom: auto;
    top: 100px;
    right: 0;
    flex-direction: column;
    height: auto;
  }

  .fixed-btn-list li {
    background-color: #fff;
    border-radius: 5px;
    margin: 5px 0;
  }

  .fixed-btn-list .satei {
    height: auto;
    width: 40px;
    padding: 1em 0;
    font-size: 18px;

    writing-mode: vertical-rl;
  }

  .fixed-btn-list .line {
    height: auto;
    width: 40px;
    padding: 0.5em 0 1em 0;
    font-size: 18px;
    line-height: 1;
    border-radius: 5px;
    writing-mode: vertical-rl;
    text-orientation: upright;
  }

  .fixed-btn-list .line::before {
    content: "";
    width: 40px;
    height: 40px;
    background: url(../images/icon_line.svg) no-repeat center / cover;
  }

  .fixed-btn-list {
    transition: all;
  }

  /* ------------------------------
    front-page(pc)
  ------------------------------ */
  .front-page {
    max-width: 980px;
    padding: 80px 0;
    margin-inline: auto;
  }

  .front-page-logo {
    max-width: 230px;
  }

  .front-page-pic {
    padding: 0;
    margin: 50px auto 0;
    max-width: 920px;
  }

  .front-page-heading {
    margin-top: 60px;
  }

  .front-page-heading span:nth-of-type(1) {
    font-size: 22px;
  }

  .front-page-heading span:nth-of-type(2) {
    margin-top: 16px;
    font-size: 50px;
  }

  .front-page-btn-list {
    container-type: inline-size;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 80%;
    margin: 40px auto 0;
    padding: 0 20px;
  }

  .front-page-btn-list li {
    width: 48.28%;
    border-radius: 5px;
  }

  .front-page-btn-list a {
    width: 100%;
    height: 10cqw;
    font-size: 4cqw;
  }

  .front-page-text-1 {
    margin-top: 70px;
    font-size: 30px;
  }

  .front-page-text-2 {
    margin-top: 30px;
    font-size: 18px;
  }

  .notfound-title {
    font-size: 30px;
    margin: 1.5em 0 0.5em;
  }

  .notfound-text {
    font-size: 18px;
  }

  /* ------------------------------
    home(pc)
  ------------------------------ */
  /* ホーム_ヒーロー(pc) */
  .hero-wrap {
    position: relative;
    margin-top: 30px;
    padding: 0 50px;
    background: none !important;
  }

  .hero-wrap::after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: min(51.3vw, 616px);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .soja .hero-wrap::after {
    background-image: url(../images/bg_hero-wrap_soja_pc.jpg);
  }

  .kurashiki .hero-wrap::after {
    background-image: url(../images/bg_hero-wrap_kurashiki_pc.jpg);
  }

  .hero {
    max-width: 1100px;
    aspect-ratio: 1100 / 950;
    background-position: center min(3.33vw, 40px);
  }

  .soja .hero {
    background-image: url(../images/bg_hero_soja_pc.png);
  }

  .kurashiki .hero {
    background-image: url(../images/bg_hero_kurashiki_pc.png);
  }

  .hero-heading {
    display: block;
    width: fit-content;
    margin-inline: auto;
  }

  .hero-heading-text-line {
    display: inline-block;
    background: linear-gradient(0deg, #f9be00 1.5cqw, transparent 1.5cqw);
    padding-bottom: 0.8cqw;
  }

  .hero-heading-text-1 {
    font-size: 5.5cqw;
  }

  .hero-heading-text-2 {
    font-size: 4.45cqw;
    margin-top: 5.45cqw;
    margin-top: 0;
  }

  .hero-heading-text-3 {
    display: inline;
    font-size: 4.05cqw;
  }

  .hero-heading-text-4 {
    margin-top: 1.8cqw;
    font-size: 3.63cqw;
  }

  .hero-point {
    display: flex;
    justify-content: space-between;
    width: 29.9cqw;
    padding: 0;
    margin: 0 4.54cqw 0 auto;
  }

  .hero-point p {
    width: 14.36cqw;
    height: 14.36cqw;
    transform: translateY(-1.8cqw);
  }

  .hero-satei {
    margin-top: 16cqw;
  }

  .hero-satei p:nth-of-type(1) {
    font-size: 2.3cqw;
  }

  .hero-satei p:nth-of-type(2) {
    margin-top: 1.5cqw;
    font-size: 5.36cqw;
  }

  .hero-btn-list {
    row-gap: 1.81cqw;
    margin: 4cqw auto;
  }

  .hero-btn-list li:nth-of-type(1) {
    width: 40.36cqw;
  }

  .hero-btn-list li:nth-of-type(2) {
    width: 29.63cqw;
  }

  /* ホーム_ブログ(pc) */
  .home-blog {
    padding: 80px 0;
  }

  .home-blog-heading {
    width: 385px;
    height: 106px;
    font-size: 32px;
    padding-top: 24px;
  }

  .home-blog-text {
    margin: 26px 0 60px;
    font-size: 20px;
  }

  .home-blog-list {
    display: flex;
    column-gap: 45px;
    width: 840px;
    margin: 50px auto;
  }

  .home-blog-list li:not(:first-of-type) {
    margin-top: 0;
  }

  .home-blog-item {
    display: block;
    width: 250px;
  }

  .home-blog-item-pic {
    width: 100%;
  }

  .home-blog-item .blog-item-date-wrap {
    margin-top: 0.5em;
  }

  .home-blog-item-text {
    margin-left: 0;
  }

  /* ホーム_選ばれる理由(pc) */
  .home-reasons {
    padding: 100px 0 0;
  }

  .home-heading {
    font-size: 36px;
  }

  .home-heading::after {
    width: 338px;
    height: 8px;
    margin-top: 6px;
  }

  .home-reasons .home-heading::after {
    width: 560px;
  }

  .home-reasons-message {
    margin-top: 40px;
  }

  .home-reasons-message-inner {
    font-size: 46px;
  }

  .home-reasons-message + p {
    font-size: 30px;
    margin: 20px 0 100px;
  }

  .home-reasons-point-item {
    margin-top: 60px;
    padding: 0;
  }

  .home-reasons-point-item-odd {
    position: relative;
    width: 100%;
    background-color: #f4f7e4;
    background: linear-gradient(
        180deg,
        #fff 0%,
        #fff 40px,
        transparent 40px,
        transparent 100%
      ),
      linear-gradient(90deg, #fff 0%, #fff 50%, #f4f7e4 50%, #f4f7e4 100%);
  }

  .home-reasons-point-item-even {
    position: relative;
    width: 100%;
    background-color: #f4f7e4;
    background: linear-gradient(
        180deg,
        #fff 0%,
        #fff 40px,
        transparent 40px,
        transparent 100%
      ),
      linear-gradient(270deg, #fff 0%, #fff 50%, #f4f7e4 50%, #f4f7e4 100%);
  }

  .home-reasons-point-item-inner {
    max-width: 1000px;
    margin-inline: auto;
    background: linear-gradient(
        180deg,
        #fff 0%,
        #fff 40px,
        transparent 40px,
        transparent 100%
      ),
      #f4f7e4;
  }

  .home-reasons-point-item-inner::before {
    height: 40px;
  }

  .home-reasons-point-item-text-wrap {
    padding: 0;
  }

  .home-reasons-point-item-heading-number {
    font-size: 80px;
  }

  .home-reasons-point-item-heading-text-inner {
    font-size: 40px;
  }

  .home-reasons-point-item-text {
    margin-top: 30px;
    font-size: 16px;
  }

  .point-1 .home-reasons-point-item-inner {
    padding: 0;
  }

  .point-1 .home-reasons-point-item-text-wrap {
    max-width: 774px;
    padding: 0 0 65px 75px;
  }

  .point-1 .home-reasons-point-item-pic {
    width: 490px;
    top: -30px;
    left: 708px;
    right: auto;
    bottom: auto;
  }

  .point-2 .home-reasons-point-item-text-wrap {
    padding: 0 0 65px 75px;
  }

  .point-2 .home-reasons-point-item-heading-text,
  .point-2 .home-reasons-point-item-text {
    max-width: 720px;
    padding-right: 20px;
    margin-left: 170px;
  }

  .point-2 .home-reasons-point-item-heading-text {
    margin-top: 0;
  }

  .point-2 .home-reasons-point-item-inner {
    padding-bottom: 0;
  }

  .point-2 .home-reasons-point-item-pic {
    width: 178px;
    bottom: -10px;
    left: 25px;
  }

  .point-3 .home-reasons-point-item-inner {
    padding: 0;
  }

  .point-3 .home-reasons-point-item-text-wrap {
    max-width: 815px;
    padding: 0 0 65px 75px;
  }

  .point-3 .home-reasons-point-item-pic {
    width: 390px;
    top: 33px;
    left: 735px;
    right: auto;
    bottom: auto;
  }

  .point-4 .home-reasons-point-item-text-wrap {
    padding: 0 0 65px 75px;
  }

  .point-4 .home-reasons-point-item-heading-text {
    max-width: 596px;
    margin-left: 270px;
  }

  .point-4 .home-reasons-point-item-text {
    max-width: 616px;
    padding-right: 20px;
    margin-left: 270px;
  }

  .point-4 .home-reasons-point-item-heading-text {
    margin-top: 0;
  }

  .point-4 .home-reasons-point-item-inner {
    padding-bottom: 0;
  }

  .point-4 .home-reasons-point-item-pic {
    width: 350px;
    bottom: 93px;
    left: -27px;
  }

  .home-reasons > p:last-of-type {
    width: fit-content;
    margin-inline: auto;
    padding: 80px 0;
    font-size: 28px;
    line-height: 1.6;
    text-align: center;
  }

  /* ホーム_こういった方に選ばれています(pc) */
  .home-chosen {
    padding-top: 80px;
  }

  .home-chosen-pic {
    position: static;
    margin: 50px auto 0;
    height: auto;
  }

  .home-chosen-pic img {
    display: block;
    position: static;
    width: 100%;
    height: auto;
    max-width: 1064px;
    margin-inline: auto;
    bottom: auto;
    left: auto;
    transform: none;
  }

  .home-chosen-satei {
    padding: 0 20px 80px;
    background: linear-gradient(
        180deg,
        #f5efe6 0%,
        #f5efe6 50px,
        transparent 50px,
        transparent 100%
      ),
      url(../images/bg_pattern_2.png);
    background-position: 0, center;
    background-size: 493px auto;
  }

  .home-chosen-satei-inner {
    max-width: 1000px;
    margin-inline: auto;
  }

  .home-chosen-satei-heading {
    font-size: 30px;
    padding: 0.7em 0;
  }

  .home-chosen-satei-heading-sub {
    font-size: 36px;
  }

  .home-chosen-satei-text {
    display: flex;
    flex-direction: row;
    row-gap: 20px;
    padding-bottom: 50px;
  }

  .home-chosen-satei-text p {
    font-size: 25px;
  }

  .home-chosen-satei-btn-list {
    padding: 0 0 50px 0;
  }

  .home-chosen-satei-btn-list li:nth-of-type(1) {
    max-width: 444px;
  }

  .home-chosen-satei-btn-list li:nth-of-type(2) {
    max-width: 326px;
    margin: 20px auto 0;
  }

  /* ホーム_査定・売却事例(pc) */
  .home-case {
    padding: 80px 20px 170px;
  }

  .home-case-text {
    font-size: 20px;
  }

  .home-case-list-wrap {
    max-width: 1000px;
    margin-inline: auto;
    padding: 50px 0;
  }

  .home-case-list {
    display: block;
    max-width: 850px;

    margin-inline: auto;
    border-bottom: solid 1px #fff;
  }

  .home-case-list > div {
    display: flex;
    flex-direction: row;
    padding: 25px 0;
    border-top: solid 1px #fff;
  }

  .home-case-list dt {
    flex-direction: row;
    align-items: center;
  }

  .home-case-list-tag {
    width: 96px;
    text-align: center;
    margin-left: 60px;
  }

  .home-case-list-title {
    width: 334px;
    margin-left: 35px;
  }

  .home-case-list-text {
    display: flex;
    align-items: center;
  }

  .home-case-list-text::before {
    flex-shrink: 0;
    content: "";
    display: inline-block;
    width: 54px;
    height: 6px;
    background: url(../images/icon_arrow_home_case.svg) no-repeat center / 54px
      auto;
    margin: 0 20px;
  }

  .home-case-pic {
    width: 286px;
    bottom: -96px;
    left: calc(50% + 135px);
  }

  /* ホーム_よくあるご質問(pc) */
  .home-faq {
    padding: 80px 20px;
  }

  .home-faq-text {
    font-size: 20px;
  }

  /* よくあるご質問_アコーディオン(pc) */
  .faq-content {
    row-gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .faq-content summary {
    padding: 20px 35px 20px 45px;
    font-size: 20px;
  }

  .faq-content summary::before {
    width: 25px;
    height: 33px;
    margin-right: 17px;
  }

  .faq-accordion .icon {
    width: 25px;
    height: 25px;
    margin-left: 20px;
  }

  .faq-accordion .icon::before {
    width: 3px;
    height: 25px;
  }

  .faq-accordion .icon::after {
    width: 25px;
    height: 3px;
  }

  .faq-details-inner {
    padding: 20px 35px 20px 45px;
    font-size: 16px;
  }

  .faq-details-inner::before {
    margin-right: 20px;
    width: 25px;
    height: 31px;
  }

  .home-faq > div:last-of-type {
    margin-top: 50px;
  }

  /* ホーム_お客様の声(pc) */
  .home-voice {
    padding: 80px 20px;
  }

  .home-voice-text {
    font-size: 20px;
    margin: 1em 0 3em;
  }

  /* カルーセル解除(お客様の声) */
  .home-voice-slider-wrap {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto 50px;
  }

  .home-voice-slider {
    margin: 0;
    overflow: visible;
    background: none;
  }

  .home-voice-slider .swiper-wrapper {
    transform: inherit !important;
    display: flex;
    justify-content: space-between;
  }

  .home-voice-slider .swiper-slide {
    width: 31% !important;
    background-color: #f2f2f2;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: unset;
    overflow: visible;
  }

  .swiper-slide-inner {
    padding: 0 30px 30px;
    margin-top: -15px;
  }

  .home-voice-slider .swiper-slide-duplicate {
    display: none;
  }

  .home-voice-slider-wrap .swiper-button-prev,
  .home-voice-slider-wrap .swiper-button-next {
    display: none;
  }

  /* ホーム_不動産売却のヒント(pc) */
  .home-hint {
    padding: 80px 20px;
  }

  .home-hint-text {
    font-size: 20px;
    margin: 1em 0 0;
  }

  .home-hint-list {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 20px;
    max-width: 1000px;
    margin: 60px auto 50px;
  }

  .home-hint-list li:not(:first-of-type) {
    margin-top: 0;
  }

  .home-hint-list li {
    width: calc(50% - 10px);
  }

  .home-hint-item {
    display: flex;
  }

  .home-hint-item-pic {
    width: 200px;
  }

  .home-hint-item-text {
    margin-left: 20px;
  }

  .home-hint-item-title {
    font-size: 18px;
  }

  /* home_不動産査定・売却の流れ(pc) */
  .home-flow {
    padding: 80px 20px 0;
  }

  .home-flow-text {
    font-size: 20px;
    margin: 1em 0 3em;
  }

  .home-flow-list {
    display: flex;
    margin: 0 auto 60px;
  }

  .home-flow-list div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px 0;
    max-width: 153px;
  }

  .home-flow-list > li {
    display: flex;
  }

  .home-flow-list > li:not(:last-of-type)::after {
    transform: rotate(-90deg);
    margin: 70px 34px 0 34px;
  }

  .home-flow-list img {
    max-width: 153px;
  }

  .home-flow-list p {
    white-space: nowrap;
  }

  /* ------------------------------
    よくあるご質問(pc)
  ------------------------------ */
  .page-heading {
    padding: 50px 20px 0;
  }

  .page-heading span {
    max-width: 1100px;
    margin-inline: auto;
    height: 180px;
    font-size: 36px;
    background-size: 394px auto;
    border-radius: 10px;
  }

  .faq-text {
    font-size: 20px;
    padding: 3em 0;
  }

  .faq-list-wrap {
    padding: 50px 0;
  }

  .faq-list {
    flex-direction: row;
    gap: 0 25px;
  }

  .faq-list a {
    width: 272px;
    height: 50px;
    font-size: 25px;
  }

  .faq .faq-content {
    max-width: 920px;
    padding: 0 20px;
  }

  .faq .faq-accordion > section:not(:first-of-type) {
    padding-top: 40px;
  }

  /* ------------------------------
    ウルっちについて(pc)
  ------------------------------ */
  .about-inner {
    max-width: 1040px;
    margin-inline: auto;
    padding: 0 20px;
  }

  .about-text-1 {
    font-size: 30px;
  }

  .about-text-2 {
    font-size: 18px;
  }

  .about-pic {
    padding: 0;
    margin: 50px auto 80px;
    max-width: 736px;
  }

  .about-content-heading {
    height: 100px;
    font-size: 20px;
  }

  .about-content + .about-content {
    margin-top: 80px;
  }

  .about-content-company-list {
    display: block;
    max-width: 570px;
    margin: 20px auto 0;
    font-size: 15px;
  }

  .about-content-company-item {
    display: flex;
  }

  .about-content-company-list > div:not(:first-of-type) {
    border-top: solid 1px #000;
  }

  .about-content-company-item > dt {
    width: 140px;
    flex-shrink: 0;
    padding: 1.8em 0 1.8em 2em;
    background: none;
  }

  .about-content-company-item > dd {
    margin: 0;
    padding: 1.8em 1em 1.8em 0;
  }

  .about-content-company-list > div:last-of-type dt,
  .about-content-company-list > div:last-of-type dd {
    padding-bottom: 0;
  }

  .about-conten-inquiry-text {
    font-size: 16px;
    padding-top: 50px;
  }

  .about-content-frame {
    max-width: 800px;
    margin: 50px auto 0;
    padding: 2em;
  }

  /* ------------------------------
    売買事例(pc)
  ------------------------------ */
  .case-text {
    font-size: 20px;
    padding: 3em 0 calc(2em + 80px);
  }

  .case-inner {
    padding: 0 20px;
  }

  .case-list-wrap {
    max-width: 1000px;
    margin-inline: auto;
    padding: 70px 0 60px;
  }

  .case-pic {
    width: 286px;
    top: -80px;
    left: auto;
    right: 40px;
  }

  .case-list {
    display: block;
    max-width: 850px;
    margin-inline: auto;
  }

  .case-list > div {
    display: flex;
    flex-direction: row;
    padding: 25px 0;
  }

  .case-list dt {
    flex-direction: row;
    align-items: center;
  }

  .case-list-tag {
    width: 96px;
    text-align: center;
    margin-left: 60px;
  }

  .case-list-title {
    width: 334px;
    margin-left: 35px;
    margin-bottom: 0;
  }

  .case-list-text {
    display: flex;
    align-items: center;
    margin-right: 60px;
  }

  .case-list-text::before {
    flex-shrink: 0;
    content: "";
    display: inline-block;
    width: 54px;
    height: 6px;
    background: url(../images/icon_arrow_home_case.svg) no-repeat center / 54px
      auto;
    margin: 0 20px;
  }

  /* ------------------------------
    ご利用された方の声(pc)
  ------------------------------ */
  .voice-text {
    font-size: 20px;
    padding: 3em 0;
  }

  .voice-inner {
    padding: 0 20px;
  }

  .voice-card {
    background-color: #f2f2f2;
    padding: 30px 50px;
    max-width: 960px;
    margin-inline: auto;
  }

  .voice-card + .voice-card {
    margin-top: 30px;
  }

  .voice-card-inner {
    transform: none;
    display: flex;
    align-items: center;
  }

  .voice-card-pic {
    flex-shrink: 0;
    width: 120px;
    margin-inline: 0;
    margin-right: 50px;
  }

  .voice-card-title-wrap {
    flex-direction: row;
    align-items: baseline;
  }

  .voice-card-age {
    text-align: left;
    margin: 0 0 0 0.5em;
  }

  /* ------------------------------
    不動産査定から売却までの流れ(pc)
  ------------------------------ */
  .flow-inner {
    padding: 0 20px;
  }

  .flow-container {
    max-width: 964px;
    margin-inline: auto;
    margin-top: 40px;
  }

  .flow-container-heading span:nth-of-type(1) {
    width: 58px;
    height: 58px;
    font-size: 30px;
    transform: translateY(29px);
  }

  .flow-container-heading span:nth-of-type(2) {
    font-size: 30px;
    padding: 20px 20px 20px 22px;
  }

  .flow-container-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 50px 45px 60px;
  }

  .flow-container-pic {
    flex-shrink: 0;
    width: 219px;
    margin-inline: 0;
    padding: 10px 45px 0 0;
  }

  .flow-container-content {
    padding-top: 0;
    max-width: calc(100% - 219px);
  }

  .flow-container-content p {
    font-size: 16px;
  }

  .flow-container-content ul {
    width: fit-content;
    font-size: 18px;
    margin: 30px 0 0 auto;
  }

  .flow-container-content ul li a:hover {
    text-decoration: underline;
    text-underline-offset: 0.3em;
    transition: 0.3s;
  }

  .flow-satei-btn {
    flex-shrink: 0;
    width: 100%;
    margin-top: 50px;
  }

  .flow-satei-btn > li:nth-of-type(1) {
    max-width: 444px;
  }

  .flow-satei-btn > li:nth-of-type(2) {
    max-width: 326px;
    margin: 20px auto 0;
  }

  /* ------------------------------
    ブログ(pc )
  ------------------------------ */
  /* ブログ_アーカイブ(pc) */
  .blog-heading-wrap {
    padding-top: 20px;
  }

  .blog-heading-bg {
    background-image: url(../images/bg_blog_heading_text_pc.png),
      url(../images/bg_blog_heading.png);
    background-size: 1200px auto, 336px auto;
    background-position: center, center;
  }

  .blog-heading {
    padding-top: 72px;
    font-size: 32px;
  }

  .blog-archive-wrap {
    padding: 0 20px 80px;
  }

  .blog-date-title {
    font-size: 28px;
    font-weight: 600;
  }

  .blog-archive-text {
    font-size: 18px;
    padding: 3em 0;
  }

  .blog-archive {
    max-width: 950px;
    margin-inline: auto;
  }

  .blog-list {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 60px calc((100% - 810px) / 2);
    padding: 0;
  }

  .blog-item {
    width: 270px;
    margin-top: 0px;
  }

  .blog-item a {
    display: block;
  }

  .blog-item-btn-more {
    margin-top: 30px;
  }

  .blog-item-inner {
    flex-grow: 0;
    padding-left: 0;
  }

  .blog-list .blog-item-date-wrap {
    margin-top: 0.5em;
  }

  .blog-item-title {
    font-size: 18px;
  }

  /* アーカイブのページネーション(pc) */
  .blog-archive-wrap .pagination {
    padding-top: 60px;
  }

  /* 月別アーカイブ(pc) */
  .dropdown-month-archive {
    margin: 50px auto 0;
  }

  /* ブログ_シングル(pc) */
  .blog-single {
    padding-bottom: 80px;
  }

  .blog-single-article {
    width: 890px;
    margin-inline: auto;
    padding: 80px 20px 0;
  }

  .blog-single-title {
    font-size: 30px;
  }

  .blog-single-content {
    margin: 50px 0 0 0;
    padding-bottom: 50px;
    /* padding: 30px 0; */
  }

  /* シングルのページネーション(pc) */
  .pagination-single-wrap {
    margin-top: 50px;
  }

  .pagination-single {
    font-size: 15px;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: space-between;
  }

  .prev-post,
  .next-post {
    flex-shrink: 0;
    width: fit-content;
    max-width: calc(50% - 2em);
  }

  .prev-post span,
  .next-post span {
    display: -webkit-box; /* 必須 */
    -webkit-box-orient: vertical; /* 必須 */
    -webkit-line-clamp: 2; /* 行数を制限 */
    overflow: hidden; /* はみ出た部分を非表示 */
  }

  .prev-post-arrow,
  .next-post-arrowr {
    width: 35px;
    height: 35px;
  }

  .btn-return-archive {
    margin-top: 30px;
  }

  /* ------------------------------
    ヒント(pc)
  ------------------------------ */
  /* ヒント_アーカイブ(pc) */
  .hint-text {
    font-size: 20px;
    margin: 3em 0;
  }

  .hint-cat-title {
    font-size: 28px;
  }

  .hint-list-wrap {
    max-width: 1040px;
    margin-inline: auto;
    padding: 0 20px 80px;
  }

  .hint-list-heading {
    font-size: 25px;
    margin-top: 60px;
  }

  .hint-seen-item-title {
    font-size: 18px;
  }

  .hint-list {
    font-size: 18px;
    margin-top: 50px;
  }

  .hint-item a {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 0 1em;
  }

  .hint .pagination {
    margin-top: 60px;
  }

  .hint-cat-list {
    background-color: #f5f6f5;
    padding: 50px 20px;
  }

  .hint-cat-list ul {
    row-gap: 30px;
  }

  .hint-cat-list ul a {
    min-width: 360px;
    font-size: 20px;
  }

  .btn-return-hint-archive {
    margin: 30px auto 0;
  }

  /* ヒント_よく見られているヒント(pc) */
  .hint-seen {
    background-color: #f5efe6;
    padding: 60px 20px;
  }

  .hint-seen-inner {
    max-width: 950px;
    margin-inline: auto;
  }

  .hint-seen-title {
    font-size: 23px;
  }

  .hint-seen-list {
    display: flex;
    flex-direction: row;
    gap: 0 55px;
    margin-top: 50px;
  }

  .hint-seen-list > li {
    width: 280px;
  }

  /* ヒント_シングル(pc) */
  .hint-single-article {
    width: 890px;
    margin-inline: auto;
    padding: 60px 20px 80px;
  }

  .hint-single-cat {
    font-size: 17px;
  }

  .hint-single-title {
    font-size: 28px;
  }

  .hint-single-title::after {
    height: 8px;
  }

  .hint-single-content {
    margin: 60px 0;
  }

  /* ヒント_シングルのページネーション(pc) */
  .pagination-single-hint .nav-links {
    font-size: 15px;
    flex-wrap: nowrap;
    flex-wrap: wrap;
    gap: 0;
    justify-content: space-between;
  }

  .pagination-single-hint .nav-previous,
  .pagination-single-hint .nav-next {
    flex-shrink: 0;
    width: fit-content;
    max-width: calc(50% - 2em);
  }

  .pagination-single-hint .next-post,
  .pagination-single-hint .prev-post {
    max-width: none;
  }

  .btn-return-hint-single {
    font-weight: 17px;
    margin-top: 40px;
  }
}

@media (any-hover: hover) {
  .hover,
  .hover-group a {
    transition: 0.3s;
  }

  .hover:hover,
  .hover-group a:hover {
    opacity: 0.8;
  }

  header .hover:hover,
  header .hover-group a:hover:not(.header-blog-btn),
  footer .hover:hover:not(.btn-round),
  footer .hover-group a:hover,
  a.home-hint-item .home-hint-item-title:hover,
  .hint-item-title:hover,
  .hint-seen-item-title:hover,
  .blog-item-title:hover,
  .home-blog-item-title:hover {
    transition: 0.3s;
    text-decoration: underline;
    text-underline-offset: 0.3em;
  }
  a.header-blog-btn:hover {
    background-color: #a58734;
    color: white;
    transition: 0.3s;
  }
  a.btn-round:hover {
    background-color: rgb(0 0 0 / 0.15);
    mix-blend-mode: multiply;
    transition: 0.3s;
  }

  footer .hover-group a.satei:hover,
  footer .hover-group a.line:hover {
    text-decoration: none;
  }
}
