@charset "utf-8";
/*
Theme Name: homestyle
Author: 株式会社シールズ
Description: original theme
version： 1.0.0
*/
/* COMMON
-------------------------------------------------------------- */
html {
  font-size: 62.5%;
}
body {
  position: relative;
  overflow-x: hidden;
  color: var(--black);
  line-height: 1.75;
  font-family:
    'Meiryo', 'メイリオ', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Segoe UI', 'Helvetica Neue',
    Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
}
:root {
  --white: #fff;
  --black: #393939;
  --gray: #525252;
  --darkgray: #474747;
  --lightgray: #dfe0df;
  --lightgray2: #f0f0f0;
  --gold: #b9923a;
  --lightyellow: #fff8f0;
  --brown: #ab8b67;
  --bluegray: #5e7691;
  --rose: #915e71;
  --purple: #880046;
}
main {
  position: relative;
  margin-top: 100px;
  z-index: 1;
}
.wrapper {
  overflow: hidden;
}
.hannari {
  font-family: "Hannari", serif;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
a:hover {
  color: inherit;
  opacity: 0.7;
}
.scale:hover {
  transform: scale(1.06);
}
a:focus {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.container {
  max-width: 1110px;
  width: 90%;
  margin: auto;
}
.container.wide {
  max-width: 90%;
}
.invisible {
  visibility: hidden;
}
.hidden_pc {
  display: none;
}
.hidden_sp {
  display: block;
}
.hidden_sp.inline {
  display: inline-block;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.grid {
  display: grid;
}
@media (min-width: 768px) {
  a[href^='tel:'] {
    pointer-events: none;
    cursor: auto;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
  .hidden_pc {
    display: block;
  }
  .hidden_sp {
    display: none;
  }
  main {
    margin-top: 60px;
  }
}

/* HEADER
-------------------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--white);
}
header .logo a {
  align-items: center;
}
header a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.hamburger {
  display: none;
}
header .headWrap {
  position: relative;
  align-items: center;
  height: 100px;
}
header .global-nav {
  width: calc(100% - 223px);
}
header .global-nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
}
header .global-nav li {
  position: relative;
}
header .global-nav li.contact a {
  padding: 0;
  background: var(--gold);
  border-radius: 25px;
  color: var(--white);
  width: 120px;
  height: 50px;
  font-weight: 400;
}
/* ---- PC ドロップダウン ---- */
header .global-nav ul.child {
  display: flex;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform: none;
  min-width: 200px;
  background: var(--white);
  z-index: 200;
  flex-direction: column;
  gap: 0;
  justify-content: flex-start;
  white-space: nowrap;
  transition: opacity 0.2s, visibility 0.2s;
}
header .global-nav ul.child li {
  width: 100%;
  border-bottom: none;
}
header .global-nav ul.child li a {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  font-size: 1.3rem;
  color: var(--black);
  transition: background 0.2s;
}
header .global-nav ul.child li a:hover {
  background: #f5f5f5;
}
header .global-nav li.parent:hover > ul.child {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 1300px) {
  header .logo {
    width: 150px;
  }
  header .global-nav {
    width: calc(100% - 150px);
  }
  header a {
    font-size: 1.3rem;
  }
  header .global-nav ul {
    gap: 15px;
  }
  header .global-nav li.contact a {
    width: 100px;
    height: 40px;
  }
  header .global-nav ul.child li a {
    font-size: 1.2rem;
  }
}
@media (max-width: 1000px) {
  header .logo {
    width: 100px;
  }
  header .global-nav {
    width: calc(100% - 100px);
  }
  header a {
    font-size: 1rem;
  }
  header .global-nav ul {
    gap: 10px;
  }
  header .global-nav li.contact a {
    width: 90px;
    height: 35px;
  }
  header .global-nav ul.child {
    min-width: 180px;
  }
  header .global-nav ul.child li a {
    font-size: 0.9rem;
  }
}
@media (max-width: 767px) {
  header .headWrap {
    padding: 8px 15px;
    margin: 0;
    width: calc(100% - 60px);
    height: 60px;
  }
  header .logo {
    width: 160px;
  }
  header a {
    color: var(--white);
  }
  header .global-nav {
    position: fixed;
    right: 0;
    top: 60px;
    padding: 20px 5% 100px;
    width: 100%;
    height: 100vh;
    background: var(--black);
    z-index: 100;
    overflow-y: auto;
    display: none;
  }
  .hamburger {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    z-index: 300;
    transition: all 0.5s ease-in-out;
  }
  .hamburger::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 7px;
    margin: auto;
    color: var(--black);
    font-size: 1rem;
    content: 'MENU';
  }
  header .global-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  header .global-nav li {
    width: 100%;
    border-bottom: 1px solid var(--white);
  }
  header .global-nav li::before {
    content: none;
  }
  header .global-nav li a {
    padding: 15px;
    font-size: 1.5rem;
  }
  header .global-nav li.contact {
    border-bottom: none;
  }
  header .global-nav li.contact a {
    margin: 20px auto;
    width: 140px;
    height: 50px;
  }
  /* ---- SP アコーディオン ---- */
  header .global-nav li.parent > a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  header .global-nav li.parent > a:hover {
    opacity: 1;
    color: var(--white);
  }
  header .global-nav li.parent > a::after {
    content: '＋';
    font-size: 1.6rem;
    line-height: 1;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
  header .global-nav li.parent.sp-open > a::after {
    content: '－';
  }
  header .global-nav ul.child {
    position: static;
    transform: none;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    background: rgba(255,255,255,0.08);
    padding: 0;
    min-width: auto;
    white-space: normal;
    flex-direction: unset;
    transition: none;
  }
  header .global-nav ul.child li {
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }
  header .global-nav ul.child li:last-child {
    border-bottom: none;
  }
  header .global-nav ul.child li a {
    padding: 12px 15px 12px 28px;
    font-size: 1.3rem;
    color: var(--white);
  }
  .hamburger__line {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    width: 34px;
    height: 3px;
    background-color: var(--black);
    border-radius: 10px;
    transition: all 0.6s;
  }
  .hamburger__line--1 {
    top: 13px;
  }
  .hamburger__line--2 {
    top: 23px;
  }
  .hamburger__line--3 {
    top: 33px;
  }
  /* 表示された時用のCSS */
  .nav-open .global-nav {
    display: block;
  }
  .nav-open .hamburger::after {
    content: 'CLOSE';
  }
  .nav-open .black-bg {
    opacity: 0.8;
    visibility: visible;
  }
  .nav-open .hamburger__line--1 {
    transform: rotate(45deg);
    top: 25px;
  }
  .nav-open .hamburger__line--2 {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger__line--3 {
    transform: rotate(-45deg);
    top: 25px;
  }
}
/* common style
-------------------------------------------------------------- */
.en {
  font-size: 9rem;
  line-height: 1;
}
.bg.real-estate,
.bg.real-estate_news {
  background: var(--bluegray)!important;
}
.bg.reform,
.bg.reform_news {
  background: var(--rose)!important;
}
.bg2.reform,
.bg2.on-sale {
  background: var(--brown)!important;
}
.btn a {
  position: relative;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  max-width: 300px;
  height: 60px;
}
.btn a span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}
.btn a .arrow {
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 1;
  transition: all 0.5s;
}
.btn a:hover .arrow {
  transform: translateX(10px);
}
.btnWhite a {
  background: var(--white);
}
.btnWhite a .arrow {
  background: var(--lightgray);
}
.btnBrown a {
  background: var(--brown);
  color: var(--white);
}
.btnBrown a .arrow {
  background: var(--lightgray);
  color: var(--black);
}
#sv {
  position: relative;
  margin-bottom: 150px;
  background: url(img/common/sv_bg.jpg) no-repeat center / cover;
  aspect-ratio: 1366 / 300;
}
.blog #sv,
.archive #sv,
.category #sv,
.single #sv {
  background: url(img/news/sv_bg.jpg) no-repeat center / cover;
}
.post-type-archive-staff #sv,
.single-staff #sv {
  background: url(img/staff/sv_bg.jpg) no-repeat center / cover;
}
.post-type-archive-recruit #sv,
.tax-job-type #sv,
.single-recruit #sv {
  background: url(img/recruit/sv_bg.jpg) no-repeat center / cover;
}
.post-type-archive-works #sv {
  justify-content: center;
  align-items: center;
  background: url(img/works/sv_bg.jpg) no-repeat center / cover;
  aspect-ratio: 4 / 1;
}
.single-works #sv {
  justify-content: center;
  align-items: center;
  background: url(img/works/sv_bg2.jpg) no-repeat center / cover;
  aspect-ratio: 4 / 1;
}
.post-type-archive-column #sv,
.tax-column_cat #sv,
.single-column #sv {
  justify-content: center;
  align-items: center;
  background: url(img/column/sv_bg.jpg) no-repeat center / cover;
}
.post-type-archive-property #sv,
.tax-sales #sv,
.tax-property_cat #sv {
  justify-content: center;
  align-items: center;
  background: url(img/property/sv_bg.jpg) no-repeat center / cover;
}
.single-property #sv {
  justify-content: center;
  align-items: center;
  background: url(img/assessment/sv_bg.jpg) no-repeat center / cover;  
}
#sv .ttl {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -60px;
  margin: auto;
  width: 90%;
  max-width: 1100px;
  font-family: "Hannari", serif;
  z-index: 2;
}
#sv .ttl strong {
  display: block;
  font-size: 7.2rem;
  line-height: 1;
}
#sv .ttl span {
  display: block;
  margin-top: 10px;
  font-size: 1.5rem;
  line-height: 1;
}
.post-type-archive-works #sv .txtLead,
.single-works #sv .txtLead,
.post-type-archive-property #sv .txtLead,
.tax-sales #sv .txtLead,
.tax-property_cat #sv .txtLead,
.single-property #sv .txtLead {
  padding: 10px 20px;
  font-size: 3.6rem;
  background: rgba(255,255,255,.6);
  box-shadow: 0px 0px 28.5px 1.5px rgba(255, 255, 255, 1);
  letter-spacing: 15px;
  text-indent: 30px;
}
.post-type-archive-column #sv .txtLead,
.tax-column_cat #sv .txtLead,
.single-column #sv .txtLead {
  font-size: 3.6rem;
  letter-spacing: 15px;
  text-indent: 20px;
}
.style01 {
  margin-bottom: 60px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--brown);
  color: var(--brown);
  font-family: "Hannari", serif;
  font-size: 4.8rem;
  letter-spacing: 3px;
}
.style02 {
  margin-bottom: 40px;
  padding-bottom: 10px;
  position: relative;
  text-align: center;
  font-family: "Hannari", serif;
  font-size: 3.6rem;
  font-weight: 400;
  letter-spacing: 3px;
}
.style02::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--brown);
  width: 42px;
  height: 1px;
  content: "";
}
.style03 {
  margin-bottom: 15px;
  padding: 10px 20px;
  background-color: var(--brown);
  color: var(--white);
  font-family: "Hannari", serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 1000px) {
  .post-type-archive-works #sv .txtLead,
  .single-works #sv .txtLead,
  .post-type-archive-property #sv .txtLead,
  .tax-sales #sv .txtLead,
  .tax-property_cat #sv .txtLead,
  .single-property #sv .txtLead {
    font-size: 2.6rem;
    letter-spacing: 10px;
    text-indent: 20px;
  }
  .post-type-archive-column #sv .txtLead,
  .tax-column_cat #sv .txtLead,
  .single-column #sv .txtLead {
    font-size: 2.6rem;
    letter-spacing: 10px;
    text-indent: 15px;
  }
}
@media (max-width: 767px) {
  .en {
    font-size: 4.5rem;
  }
  .btn a {
    max-width: 280px;
    height: 55px;
  }
  #sv {
    margin-bottom: 80px;
    aspect-ratio: 3 / 1;
  }
  .post-type-archive-works #sv,
  .single-works #sv {
    aspect-ratio: 3 / 1;
  }
  #sv .ttl {
    bottom: -40px;
  }
  #sv .ttl strong {
    font-size: 3.6rem;
  }
  #sv .ttl span {
    margin-top: 5px;
    font-size: 1.2rem;
  }
  .post-type-archive-works #sv .txtLead,
  .single-works #sv .txtLead,
  .post-type-archive-property #sv .txtLead,
  .tax-sales #sv .txtLead,
  .tax-property_cat #sv .txtLead,
  .single-property #sv .txtLead {
    padding: 5px 10px 5px 20px;
    text-align: center;
    font-size: 1.6rem;
    letter-spacing: 5px;
    line-height: 1.4;
    text-indent: 0;
  }
  .post-type-archive-column #sv .txtLead,
  .tax-column_cat #sv .txtLead,
  .single-column #sv .txtLead {
    font-size: 1.6rem;
    letter-spacing: 5px;
    text-indent: 5px;
  }
  .style01 {
    margin-bottom: 40px;
    font-size: 3rem;
    letter-spacing: 2px;
  }
  .style02 {
    padding-bottom: 5px;;
    margin-bottom: 30px;
    font-size: 2.4rem;
    letter-spacing: 2px;
  }
  .style02::after {
    width: 30px;
  }
  .style03 {
    font-size: 1.6rem;
  }
}

/* archive
-------------------------------------------------------------- */
#newsList,
#columnList {
  margin-bottom: 150px;
}
#newsList .postArea {
  border-top: 1px solid var(--gray);
}
#newsList .postArea > li {
  border-bottom: 1px solid var(--gray);
}
#newsList .postArea li.none,
#columnList .postArea li.none {
  padding: 35px 0;
}
#newsList .postArea li a {
  padding: 25px 0;
  align-items: center;
  gap: 40px;
}
#newsList .postArea li .cat {
  gap: 5px;
  font-size: 1.5rem;
  width: 100px;
}
#newsList .postArea li .cat li {
  padding: 6px 10px;
  width: 100%;
  background: var(--black);
  text-align: center;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
}
#newsList .postArea li .date {
  width: 140px;
  color: var(--brown);
  font-size: 1.5rem;
  font-weight: 700;
}
#newsList .postArea li .ttl {
  width: calc(100% - 320px);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
#columnList .postArea {
  gap: 0 40px;
}
#columnList .postArea > li:first-child,
#columnList .postArea > li:nth-child(2) {
  border-top: 1px solid var(--gray);
}
#columnList .postArea > li {
  border-bottom: 1px solid var(--gray);
  width: calc(50% - 20px);
}
#columnList .postArea li a {
  padding: 35px 0;
  justify-content: space-between;
  align-items: flex-start;
}
#columnList .postArea li .eyecatch {
  width: 37%;
  background-color: var(--lightgray);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  aspect-ratio: 20 / 14;
}
#columnList .postArea li .txtArea {
  align-items: center;
  gap: 10px;
  width: 58%;
}
#columnList .postArea li .cat {
  gap: 5px;
}
#columnList .postArea li .cat li {
  width: 100px;
  padding: 6px 10px;
  background: var(--black);
  color: var(--white);
  font-size: 1.5rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
}
#columnList .postArea li .date {
  width: 100%;
  color: var(--brown);
  font-size: 1.5rem;
  font-weight: 700;
}
#columnList .postArea li .ttl {
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
#columnList .btn {
  padding-top: 50px;
}
.pagination + .btn {
  padding-top: 0!important;
}
#columnList .btn a {
  margin: auto;
}
@media (max-width: 767px) {
  #newsList,
  #columnList {
    margin-bottom: 70px;
  }
  #newsList .postArea li.none,
  #columnList .postArea li.none {
    padding: 15px 0;
  }
  #newsList .postArea li a {
    padding: 15px 0;
    gap: 10px 20px;
  }
  #newsList .postArea li .cat {
    font-size: 1.3rem;
  }
  #newsList .postArea li .date {
    width: 140px;
    font-size: 1.3rem;
  }
  #newsList .postArea li .ttl {
    width: 100%;
    -webkit-line-clamp: 2;
  }
  #columnList .postArea li {
    width: 100%;
  }
  #columnList .postArea > li:nth-child(2) {
    border-top: none;
  }
  #columnList .postArea li a {
    padding: 20px 0;
  }
  #columnList .postArea li .txtArea {
    gap: 5px;
  }
  #columnList .postArea li .cat li {
    font-size: 1.3rem;
  }
  #columnList .postArea li .date {
    font-size: 1.3rem;
  }
  .pagination + .btn {
    padding-top: 20px!important;
  }
}
/* single
-------------------------------------------------------------- */
#newsSingle {
  margin-bottom: 150px;
}
#newsSingle article {
  border-bottom: 1px solid var(--gray);
}
#newsSingle .ttlheader .cat {
  gap: 5px;
  font-size: 1.5rem;
}
#newsSingle .ttlheader .cat li {
  padding: 6px 10px;
  width: 100px;
  background: var(--black);
  text-align: center;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
}
#newsSingle .ttlheader .date {
  margin: 15px 0 20px;
  color: var(--brown);
  font-size: 1.5rem;
  font-weight: 700;
}
#newsSingle .ttlheader .postTtl {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--gray);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 3px;
}
#newsSingle .eyecatch {
  margin-bottom: 80px;
}
.freetxt {
  overflow-wrap: anywhere;
}
.freetxt img {
  margin-bottom: 30px;
}
.freetxt a {
  color: var(--bluegray);
}
.freetxt p {
  margin-bottom: 50px;
  line-height: 2;
}
.freetxt blockquote {
  background: #efefef;
  padding: 20px;
}
.freetxt .aligncenter {
  display: block;
  margin: 0 auto;
}
.freetxt .alignleft {
  float: left;
}
.freetxt .alignright {
  float: right;
}
.freetxt ul,
.freetxt ol {
  margin: 0 20px;
}
.freetxt ul li {
  list-style: square;
  margin-bottom: 15px;
}
.freetxt ol li {
  list-style: decimal;
  margin-bottom: 15px;
}
.freetxt h1 {
  margin-bottom: 50px;
  font-weight: 700;
}
.freetxt h2 {
  margin-bottom: 50px;
  color: var(--brown);
  font-weight: 700;
}
.freetxt h3 {
  padding: 10px;
  margin-bottom: 50px;
  border-left: 5px solid var(--brown);
  border-bottom: 1px solid var(--gray);
  font-weight: 700;
  line-height: 1.4;
}
.freetxt table {
  width: 100%;
}
.freetxt table th {
  padding: 10px 15px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  background-color: var(--white);
  border: 1px solid #ccc;
}
.freetxt table td {
  padding: 10px 15px;
  border: 1px solid #ccc;
}
.freetxt .youtube {
  margin-bottom: 20px;
}
.freetxt .youtube iframe {
  width: 100%;
  height: 550px;
}

@media (max-width: 767px) {
  #newsSingle {
    margin-bottom: 70px;
  }
  #newsSingle .ttlheader .date {
    margin: 15px 0;
    font-size: 1.6rem;
  }
  #newsSingle .ttlheader .postTtl {
    font-size: 2rem;
  }
  #newsSingle .eyecatch {
    margin-bottom: 40px;
  }
  .freetxt h2 {
    margin-bottom: 30px;
  }
  .freetxt h3 {
    margin-bottom: 30px;
  }
}

/* staffList
-------------------------------------------------------------- */
#staffList {
  padding: 100px 0 150px;
  background: var(--lightgray);
}
#staffList ul {
  gap: 50px 30px;
}
#staffList li {
  width: calc((100% - 60px) / 3);
}
#staffList li a {
  display: block;
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
}
#staffList .eyecatch {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  aspect-ratio: 35 / 31;
}
#staffList .eyecatch.no-image {
  background: var(--lightyellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
#staffList .info {
  padding: 30px;
}
#staffList .role {
  position: relative;
  padding-bottom: 5px;
  color: var(--gold);
  font-size: 1.8rem;
  font-weight: 700;
}
#staffList .name {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
}
#staffList .staffSection:first-of-type {
  margin-bottom: 100px;
}
#staffSingle {
  margin-bottom: 150px;;
}
#staffSingle article {
  border-bottom: 1px solid var(--gray);
}
#staffSingle .role {
  position: relative;
  padding-bottom: 10px;
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 700;
}
#staffSingle .name {
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--gray);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.4;
}
#staffSingle .eyecatch {
  margin-bottom: 40px;
}
#staffSingle .interviewTtl {
  margin-bottom: 20px;
  padding: 10px 20px;
  background: var(--brown);
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1.4;
}
#staffSingle .staffInterview {
  margin-bottom: 40px;
}
#staffSingle .staffInterview.flex {
  gap: 30px;
}
#staffSingle .staffInterview.flex .interviewImg,
#staffSingle .staffInterview.flex .interviewText {
  flex: 1;
}
#staffSingle .staffInterview.flex.hasBoth .interviewImg {
  flex: none;
  width: calc(48% - 30px);
}
#staffSingle .staffInterview.flex.hasBoth .interviewText {
  flex: none;
  width: 52%;
}
@media (max-width: 767px) {
  #staffList {
    padding: 50px 0 70px;
  }
  #staffList ul {
    gap: 30px 20px;
  }
  #staffList li {
    width: calc((100% - 20px) / 2);
  }
  #staffList li a {
    border-radius: 15px;
  }
  #staffList .info {
    padding: 10px 20px;
  }
  #staffList .role {
    font-size: 1.5rem;
  }
  #staffList .name {
    font-size: 2rem;
  }
  #staffList .staffSection:first-of-type {
    margin-bottom: 50px;
  }
  #staffSingle {
    margin-bottom: 70px;
  }
  #staffSingle .role {
    font-size: 1.3rem;
  }
  #staffSingle .name {
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-size: 1.8rem;
  }
  #staffSingle .eyecatch {
    margin-bottom: 20px;
  }
  #staffSingle .interviewTtl {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
  #staffSingle .staffInterview {
    margin-bottom: 30px;
  }
  #staffSingle .staffInterview.flex {
    gap: 20px;
  }
  #staffSingle .staffInterview.flex .interviewImg,
  #staffSingle .staffInterview.flex .interviewText {
    flex: 1;
  }
  #staffSingle .staffInterview.flex.hasBoth .interviewImg ,
  #staffSingle .staffInterview.flex.hasBoth .interviewText {
    width: 100%;
  }
}

/* recruit
-------------------------------------------------------------- */
#recruitList,
#recruitSingle {
  margin-bottom: 150px;
}
#recruitList .message {
  margin-bottom: 100px;
}
#recruitList .message h2 {
  margin: 50px 0 20px;
}
#recruitList .message p {
  margin-bottom: 20px;
}
#recruitList .postArea {
  border-top: 1px solid var(--gray);
}
#recruitList .postArea > li {
  border-bottom: 1px solid var(--gray);
}
#recruitList .postArea li a {
  padding: 25px 0;
  align-items: center;
  gap: 40px;
}
#recruitList .postArea li .cat {
  gap: 5px;
  font-size: 1.5rem;
  width: 100px;
}
#recruitList .postArea li .cat li {
  padding: 6px 10px;
  width: 100%;
  background: var(--black);
  text-align: center;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
}
#recruitList .postArea li .ttl {
  width: calc(100% - 140px);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
#recruitSingle article {
  border-bottom: 1px solid var(--gray);
}
#recruitSingle .cat {
  margin-bottom: 30px;
  gap: 5px;
}
#recruitSingle .cat li {
  padding: 6px 10px;
  background: var(--black);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
#recruitSingle h1 {
  margin-bottom: 30px;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.4;
}
#recruitSingle dl {
  border-top: 1px solid var(--gray);
}
#recruitSingle dt {
  padding: 40px 20px 40px 0;
  width: 30%;
  border-bottom: 1px solid var(--gray);
  font-weight: 700;
}
#recruitSingle dd {
  padding: 40px 0;
  width: 70%;
  border-bottom: 1px solid var(--gray);
}
#recruitSingle .btn a {
  margin: 60px auto 100px;
}
@media (max-width: 767px) {
  #recruitList,
  #recruitSingle {
    margin-bottom: 70px;
  }
  #recruitList .message {
    margin-bottom: 50px;
  }
  #recruitList .message h2 {
    margin: 30px 0 10px;
  }
  #recruitList .message p {
    margin-bottom: 10px;
  }
  #recruitList .postArea li a {
    padding: 15px 0;
    gap: 10px 20px;
  }
  #recruitList .postArea li .cat {
    font-size: 1.3rem;
  }
  #recruitList .postArea li .ttl {
    width: 100%;
    -webkit-line-clamp: 2;
  }
  #recruitSingle .cat {
    margin-bottom: 20px;
  }
  #recruitSingle .cat li {
    font-size: 1.3rem;
  }
  #recruitSingle h1 {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  #recruitSingle dt {
    padding: 20px 0 0;
    width: 100%;
    border-bottom: none;
  }
  #recruitSingle dd {
    padding: 10px 0 20px;
    width: 100%;
  }
  #recruitSingle .btn a {
    margin: 30px auto 50px;
  }
}

/* works
-------------------------------------------------------------- */
#worksList {
  margin-bottom: 150px;
}
#worksList .worksFilter {
  margin-bottom: 130px;
  align-items: center;
  background: var(--lightgray);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
#worksList .worksFilter__label {
  padding: 20px;
  background: var(--brown);
  color: var(--white);
  width: 140px;
  text-align: center;
}
#worksList .worksFilter__checks {
  padding: 10px 20px;
  gap: 30px;
  width: calc(100% - 140px);
}
#worksList .worksFilter__item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}
#worksList .worksFilter__item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s;
}
#worksList .worksFilter__item input[type="checkbox"]:checked {
  border-color: var(--brown);
  background: var(--brown);
}
#worksList .worksFilter__item input[type="checkbox"]::after {
  content: "";
  display: none;
  position: absolute;
  top: 3px;
  left: 7px;
  width: 6px;
  height: 10px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
#worksList .worksFilter__item input[type="checkbox"]:checked::after {
  display: block;
}
#worksList .postArea {
  gap: 0 40px;
}
#worksList .postArea > li:first-child,
#worksList .postArea > li:nth-child(2) {
  border-top: 1px solid var(--gray);
}
#worksList .postArea > li {
  border-bottom: 1px solid var(--gray);
  width: calc(50% - 20px);
}
#worksList .postArea li a {
  padding: 35px 0;
  justify-content: space-between;
  align-items: flex-start;
}
#worksList .postArea li .eyecatch {
  width: 37%;
  background-color: var(--lightgray);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  aspect-ratio: 20 / 14;
}
#worksList .postArea li .info {
  align-items: center;
  gap: 10px;
  width: 58%;
}
#worksList .postArea li .cat {
  margin-bottom: 20px;
  gap: 5px;
}
#worksList .postArea li .cat li {
  padding: 6px 10px;
  background: var(--black);
  color: var(--white);
  font-size: 1.5rem;
  text-align: center;
  line-height: 1;
}
#worksList .postArea li .ttl {
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
#worksSingle article {
  border-bottom: 1px solid var(--gray);
}
#worksSingle .ttlheader .cat {
  margin-bottom: 20px;
  gap: 5px;
  font-size: 1.5rem;
}
#worksSingle .ttlheader .cat li {
  padding: 6px 10px;
  background: var(--black);
  text-align: center;
  color: var(--white);
  line-height: 1;
}
#worksSingle .ttlheader .postTtl {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--gray);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 3px;
}
#worksSingle .freearea,
#worksSingle .pointArea {
  margin-bottom: 50px;
}
#worksSingle .beforeAfter {
  margin-bottom: 50px;
  gap: 30px 60px;
  align-items: flex-start;
}
#worksSingle .beforeAfter .before,
#worksSingle .beforeAfter .after {
  position: relative;
  width: calc(50% - 30px);
}
#worksSingle .beforeAfter .before::after {
  display: block;
  position: absolute;
  right: -45px;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 30px solid var(--brown);
  content: "";
  transform: translateY(-50%);
}
#worksSingle .beforeAfter .before::before {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  content: "Before";
}
#worksSingle .beforeAfter .after::before {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  content: "After";
}
#worksSingle .beforeAfter .detail {
  width: 100%;
}
#worksSingle .appealArea {
  margin-bottom: 80px;
  gap: 60px;
}
#worksSingle .appealArea__box {
  width: calc(50% - 30px);
}
#worksSingle .appealArea__img a {
  display: block;
}
#worksSingle .appealArea__img img {
  width: 100%;
}
#worksSingle .appealArea__box .appealArea__txt {
  padding-top: 15px;
}
#worksSingle .btn a {
  margin: 0 auto 60px;
}
@media (max-width: 767px) {
  #worksList {
    margin-bottom: 70px;
  }
  #worksList .worksFilter {
    margin-bottom: 50px;
    font-size: 1.5rem;
  }
  #worksList .worksFilter__label {
    padding: 10px;
    width: 100%;
  }
  #worksList .worksFilter__checks {
    padding: 10px 15px;
    gap: 20px;
    width: 100%;
  }
  #worksList .worksFilter__item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }
  #worksList .worksFilter__item input[type="checkbox"]::after {
    top: 2px;
    left: 6px;
  }
  #worksList .postArea > li {
    width: 100%;
  }
  #worksList .postArea > li:nth-child(2) {
    border-top: none;
  }
  #worksList .postArea li a {
    padding: 20px 0;
  }
  #worksList .postArea li .info {
    gap: 5px;
  }
  #worksList .postArea li .cat {
    margin-bottom: 10px;
  }
  #worksList .postArea li .cat li {
    font-size: 1.3rem;
  }
  #worksSingle .ttlheader .postTtl {
    font-size: 2rem;
  }
  #worksSingle .beforeAfter {
    margin-bottom: 30px;
    gap: 40px;
  }
  #worksSingle .beforeAfter .before,
  #worksSingle .beforeAfter .after {
    position: relative;
    width: calc(50% - 20px);
  }
  #worksSingle .beforeAfter .before::after {
    right: -30px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 20px solid var(--brown);
  }
  #worksSingle .beforeAfter .before::before,
  #worksSingle .beforeAfter .after::before {
    bottom: 0;
    font-size: 1.5rem;
  }
  #worksSingle .appealArea {
    margin-bottom: 40px;
    gap: 40px;
  }
  #worksSingle .appealArea__box {
    width: 100%;
  }
  #worksSingle .appealArea__box .appealArea__txt {
    padding-top: 10px;
  }
  #worksSingle .btn a {
    margin: 0 auto 60px;
  }
}

/* property
-------------------------------------------------------------- */
#propertyList {
  margin-bottom: 150px;
}
#propertyList .propertyFilter__sales {
  align-items: center;
  background: var(--lightgray);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
#propertyList .propertyFilter__salesLabel {
  padding: 20px;
  background: var(--brown);
  color: var(--white);
  width: 140px;
  text-align: center;
}
#propertyList .propertyFilter__salesChecks {
  padding: 10px 20px;
  gap: 30px;
  width: calc(100% - 140px);
}
#propertyList .propertyFilter__salesItem {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}
#propertyList .propertyFilter__salesItem input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s;
}
#propertyList .propertyFilter__salesItem input[type="checkbox"]:checked {
  border-color: var(--brown);
  background: var(--brown);
}
#propertyList .propertyFilter__salesItem input[type="checkbox"]::after {
  content: "";
  display: none;
  position: absolute;
  top: 3px;
  left: 7px;
  width: 6px;
  height: 10px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
#propertyList .propertyFilter__salesItem input[type="checkbox"]:checked::after {
  display: block;
}
#propertyList .propertyFilter__cat {
  margin: 50px 0;
  gap: 10px;
}
#propertyList .propertyFilter__catBtn {
  width: calc((100% - 40px) / 5);
  background: var(--white);
  border: 1px solid var(--brown);
  border-radius: 30px;
  font-weight: 700;
  aspect-ratio: 21 / 6;
  transition: all 0.5s ease-in-out;
}
#propertyList .propertyFilter__catBtn:hover,
#propertyList .propertyFilter__catBtn.is-active {
  background: var(--brown);
  color: var(--white);
}
#propertyList .postArea {
  gap: 0 40px;
}
#propertyList .postArea > li:first-child,
#propertyList .postArea > li:nth-child(2) {
  border-top: 1px solid var(--gray);
}
#propertyList .postArea > li {
  border-bottom: 1px solid var(--gray);
  width: calc(50% - 20px);
}
#propertyList .postArea li a {
  padding: 35px 0;
  justify-content: space-between;
  align-items: flex-start;
}
#propertyList .postArea li .eyecatch {
  width: 37%;
  background-color: var(--lightgray);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  aspect-ratio: 20 / 14;
}
#propertyList .postArea li .info {
  align-items: center;
  gap: 10px;
  width: 58%;
}
#propertyList .postArea li .cat {
  margin-bottom: 20px;
  gap: 5px;
  align-items: center;
}
#propertyList .postArea li .cat li {
  padding: 6px 10px;
  background: var(--black);
  color: var(--white);
  font-size: 1.5rem;
  text-align: center;
  line-height: 1;
}
#propertyList .postArea li .cat li.cat__type {
  padding: 6px 0;
  background: var(--white);
  width: 120px;
  border: 1px solid var(--brown);
  color: var(--black);
  font-size: 1.5rem;
  text-align: center;
  line-height: 1;
}
#propertyList .postArea li .location {
  padding-bottom: 10px;
  color: var(--brown);
  font-size: 1.5rem;
  font-weight: 700;
}
#propertyList .postArea li .ttl {
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
#propertySingle article {
  border-bottom: 1px solid var(--gray);
}
#propertySingle .ttlheader .cat {
  margin-bottom: 20px;
  gap: 5px;
  font-size: 1.5rem;
}
#propertySingle .ttlheader .cat li {
  padding: 6px 10px;
  background: var(--black);
  text-align: center;
  color: var(--white);
  line-height: 1;
}
#propertySingle .ttlheader .postTtl {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--gray);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 3px;
}
#propertySingle article {
  border-bottom: 1px solid var(--gray);
}
#propertySingle .ttlheader .cat {
  margin-bottom: 20px;
  gap: 5px;
  font-size: 1.5rem;
}
#propertySingle .ttlheader .cat li {
  padding: 6px 10px;
  background: var(--black);
  text-align: center;
  color: var(--white);
  line-height: 1;
}
#propertySingle .ttlheader .cat li.cat__type {
  padding: 6px 0;
  background: var(--white);
  width: 120px;
  border: 1px solid var(--brown);
  color: var(--black);
  font-size: 1.5rem;
  text-align: center;
  line-height: 1;
}
#propertySingle .propertyMeta {
  margin-bottom: 40px;
  padding: 20px;
  background: var(--lightgray);
}
#propertySingle .propertyMeta__main {
  gap: 10px;
  width: calc(100% - 300px);
  font-size: 1.5rem;
  font-weight: 700;
}
#propertySingle  .no-btn .propertyMeta__main {
  gap: 0;
  width: 100%;
}
#propertySingle .propertyMeta .propertyMeta__location {
  width: 100%;
  color: var(--brown);
}
#propertySingle .propertyMeta .propertyMeta__fee {
  width: 100%;
  color: var(--purple);
}
#propertySingle .propertyMeta .propertyMeta__btn a {
  margin: 0;
  width: 280px;
}
#propertySingle .featureArea {
  margin-bottom: 30px;
}
#propertySingle .featureArea {
  margin-bottom: 30px;
}
#propertySingle .propertyTable {
  margin-bottom: 60px;
}
#propertySingle .propertyTable__list {
  gap: 0 30px;
  width: 100%;
  font-size: 1.5rem;
}
#propertySingle .propertyTable__cell {
  display: flex;
  width: calc(50% - 15px);
  padding: 30px 0;
  gap: 10px; 
  border-bottom: 1px solid var(--gray);
}
#propertySingle .propertyTable__cell dt {
  font-weight: 700;
  width: 150px;
  flex-shrink: 0;
}
#propertySingle .btn a {
  margin: 0 auto 60px;
}
#propertySingle .propertyGallery {
  position: relative;
  margin: 0 0 10px;
  width: 100%;
  max-width: 800px;
  overflow: hidden;
}
#propertySingle .single-img {
  margin-bottom: 50px;
}
#js-propertySwiper .swiper-slide img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
#js-propertySwiperThumb .swiper-slide {
  margin: 0!important;
  width: calc(25% - 10px);
  cursor: pointer;
  opacity: .7;
  transition: all 0.5s ease-in-out;
}
#js-propertySwiperThumb .swiper-slide img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
#js-propertySwiperThumb .swiper-slide:hover,
#js-propertySwiperThumb .swiper-slide-thumb-active {
  opacity: 1;
}
.propertyGallery .swiper-button-next,
.propertyGallery .swiper-button-prev {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  z-index: 10;
}
#js-propertySwiper .swiper-button-next,
#js-propertySwiper .swiper-button-prev {
  --swiper-navigation-color: #b9923a; 
}
.propertyGalleryThumb {
  margin: 0 0 50px;
  width: 100%;
  max-width: 810px;
}
#js-propertySwiperThumb .swiper-wrapper {
  gap: 10px;
  flex-wrap: wrap;
  transform: none !important;
}
.propertyGallery img,
.propertyGalleryThumb img {
  width: 100%;
}
@media (max-width: 767px) {
  #propertyList {
    margin-bottom: 70px;
  }
  #propertyList .propertyFilter__sales {
    font-size: 1.5rem;
  }
  #propertyList .propertyFilter__salesLabel {
    padding: 10px;
    width: 100%;
  }
  #propertyList .propertyFilter__salesChecks {
    padding: 10px 15px;
    gap: 20px;
    width: 100%;
  }
  #propertyList .propertyFilter__salesItem input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }
  #propertyList .propertyFilter__salesItem input[type="checkbox"]::after {
    top: 2px;
    left: 6px;
  }
  #propertyList .propertyFilter__cat {
    margin: 20px 0;
    gap: 10px;
  }
  #propertyList .propertyFilter__catBtn {
    width: calc((100% - 10px) / 2);
    aspect-ratio: 4 / 1;
  }
  #propertyList .postArea > li {
    width: 100%;
  }
  #propertyList .postArea > li:nth-child(2) {
    border-top: none;
  }
  #propertyList .postArea li a {
    padding: 20px 0;
  }
  #propertyList .postArea li .info {
    gap: 5px;
  }
  #propertyList .postArea li .cat {
    margin-bottom: 15px;
  }
  #propertyList .postArea li .cat li,
  #propertyList .postArea li .cat li.cat__type {
    font-size: 1.3rem;
  }
  #propertyList .postArea li .location {
    font-size: 1.3rem;
  }
  #propertySingle .ttlheader .postTtl {
    font-size: 2rem;
  }
  #propertySingle .propertyMeta {
    margin-bottom: 20px;
    padding: 15px;
  }
  #propertySingle .propertyMeta__main {
    width: 100%;
    font-size: 1.4rem;
  }
  #propertySingle .propertyMeta .propertyMeta__btn {
    margin: 0 auto;
    width: 280px;
  }
  #propertySingle .featureArea {
    margin-bottom: 20px;
  }
  #propertySingle .propertyTable {
    margin-bottom: 30px;
  }
  #propertySingle .propertyTable__cell {
    font-size: 1.4rem;
    width: 100%;
    padding: 15px 0;
  }
  #propertySingle .propertyTable__cell dt {
    width: 100px;
  }
  #propertySingle .single-img {
    margin-bottom: 30px;
  }
  #propertySingle .btn a {
    margin: 0 auto 60px;
  }
  #js-propertySwiperThumb .swiper-slide {
    width: calc(25% - 5px);
  }
  .propertyGallery .swiper-button-next,
  .propertyGallery .swiper-button-prev {
    --swiper-navigation-size: 30px;
  }
  .propertyGalleryThumb {
    margin: 0 0 30px;
  }
  #js-propertySwiperThumb .swiper-wrapper {
    gap: 5px;
  }
}

/* ページネーション
-------------------------------------------------------------- */
.paging {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.paging .prev {
  float: left;
}
.paging .next {
  float: right;
}
.paging .next a,
.paging .prev a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--brown);
  border: 1px solid var(--brown);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.paging .next a:hover,
.paging .prev a:hover {
  background: var(--white);
  color: var(--brown);
}
.pagination {
  position: relative;
  padding: 80px 0;
  width: 100%;
}
.pagination .nav-links {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: var(--white);
  max-width: 1100px;
  width: 90%;
}
a.page-numbers,
.pagination .current {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  border: 1px solid var(--brown);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  color: var(--brown);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.pagination .current,
a.page-numbers:hover {
  background: var(--brown);
  color: var(--white);
  opacity: 1;
}
a.next,
a.prev {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--brown);
  border: 1px solid var(--brown);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
a.next {
  margin-left: 20px;
}
a.prev {
  margin-right: 20px;
}
a.next:hover,
a.prev:hover {
  background: var(--white);
  color: var(--brown);
}
@media (max-width: 767px) {
  .paging {
    padding: 40px 0;
  }
  .paging .next a,
  .paging .prev a {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }
  .pagination {
    padding: 40px 0 20px;
  }
  a.page-numbers,
  .pagination .current {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }
  a.next,
  a.prev {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }
  a.next {
    margin-left: 10px;
  }
  a.prev {
    margin-right: 10px;
  }
}

/* ctaArea
-------------------------------------------------------------- */
#ctaArea {
  position: fixed;
  top: 120px;
  right: 10px;
  width: 100px;
  z-index: 1000;
}
#ctaArea li {
  margin-bottom: 10px;
  width: 100%;
}
#ctaArea li a {
  justify-content: center;
  align-items: center;
  height: 100px;
  background: rgba(255,255,255,.6);
  border: 2px solid var(--black);
  border-radius: 15px;
  color: var(--black);
  font-size: 1.5rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  #ctaArea {
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 1000;
  }
  #ctaArea li {
    margin: 0;
    width: 25%;
  }
  #ctaArea li a {
    padding-top: 5px;
    height: 65px;
    align-items: flex-end;
    border: 1px solid var(--black);
    border-radius: 10px 10px 0 0;
    background: var(--white);
    font-size: 1.4rem;
    letter-spacing: 0;
  }
  #ctaArea li:first-child img {
    max-width: 40px;
  }
  #ctaArea li img {
    max-width: 30px;
  }
  #ctaArea li span {
    width: 100%;
    text-align: center;
  }
}
/* footer
-------------------------------------------------------------- */
footer {
  position: relative;
  padding: 80px 0 70px;
  background: var(--black);
  color: var(--white);
}
footer .container {
  justify-content: space-between;
}
footer .infoArea {
  width: 220px;
}
footer .flogo {
  margin-bottom: 40px;
}
footer .infoArea p {
  padding-bottom: 30px;
  font-size: 1.4rem;  
  letter-spacing: 0;
}
footer .navArea {
  width: calc(100% - 250px);
  justify-content: flex-end;
  gap: 80px;
}
footer .navArea li a {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 1.5rem;
  line-height: 1;
}
footer .navArea .child {
  padding-left: 30px;
}
footer .copy {
  padding-top: 20px;
  font-size: 1.2rem;
  letter-spacing: 0;
}
/*page-top*/
#Pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  cursor: pointer;
  z-index: 999;
}
@media (max-width: 1100px) {
  footer .infoArea {
    width: 190px;
  }
  footer .infoArea p {
    font-size: 1.3rem;  
  }
  footer .navArea {
    gap: 30px;
    width: calc(100% - 200px);
  }
  footer .navArea li a {
    font-size: 1.4rem;
  }
  footer .copy {
    font-size: 1.1rem;
  }
}
@media (max-width: 900px) {
  footer .infoArea {
    width: 180px;
  }
  footer .infoArea p {
    font-size: 1.2rem;  
  }
  footer .navArea {
    gap: 10px;
    width: calc(100% - 190px);
  }
  footer .navArea li a {
    font-size: 1.2rem;
  }
  footer .copy {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  footer {
    padding: 40px 0 50px;
  }
  footer .infoArea {
    width: 100%;
    text-align: center;
  }
  footer .flogo {
    margin-bottom: 30px;
  }
  footer .infoArea p {
  padding-bottom: 20px;
  }
  footer .navArea {
    padding-bottom: 40px;
    justify-content: space-between;
    gap: 5px 20px;
    width: 100%;
    order: -1;
  }
  footer .navArea ul:last-child {
    width: 100%;
  }
  footer .navArea li a {
    margin-bottom: 10px;
  }
  footer .copy {
    padding-top: 10px;
    font-size: 1rem;
  }
  /*page-top*/
  #Pagetop {
    right: 10px;
    bottom: 80px;
    width: 30px;
  }
}

/* 404
-------------------------------------------------------------- */
.post-password-form {
  margin: 200px auto 100px;
  max-width: 1100px;
  width: 90%;
}
#errormsg {
  margin-bottom: 100px;
}
#errormsg p {
  margin-bottom: 30px;
  text-align: center;
}
#errormsg .btn a {
  margin: auto;
}
@media (max-width: 767px) {
  #errormsg {
    margin-bottom: 50px;
  }
  #errormsg p {
    margin-bottom: 20px;
    text-align: left;
  }
}