@charset "UTF-8";
@font-face {
  font-family: "Sansita One";
  src: url("../font/SansitaOne.ttf") format("truetype");
}
/* *****************************************
  Base 
***************************************** */
body {
  margin: 0;
  padding: 0;
  color: #000000;
  background-color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.375rem;
}

a {
  text-decoration: none;
  color: #000000;
}

a:hover {
  color: #aaaaaa;
}

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

.m50 {
  padding-bottom: 50px;
}

.m40 {
  padding-bottom: 40px;
}

.m30 {
  padding-bottom: 30px;
}

.m20 {
  padding-bottom: 20px;
}

@media screen and (max-width: 840px) {
  .sp-none {
    display: none;
  }
}
.img-top-none img {
  margin-top: 0 !important;
}

/* *****************************************
  Layout
***************************************** */
.head-inner {
  width: 1230px;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1240px) {
  .head-inner {
    width: 100%;
    padding: 0 20px;
  }
}

.container {
  margin-top: 120px;
}
@media screen and (max-width: 760px) {
  .container {
    margin-top: 40px;
  }
}

@media screen and (max-width: 760px) {
  .home .container {
    margin-top: 20px;
  }
}

.inner {
  width: 1240px;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1240px) {
  .inner {
    width: calc(100% - 40px);
  }
}

.inner-in {
  width: 1200px;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1240px) {
  .inner-in {
    width: 100%;
  }
}

.layout {
  display: grid;
  gap: 0px 70px;
  grid-template-columns: 1fr 345px;
  grid-template-areas: "main sidebar" "full full";
}
@media screen and (max-width: 1240px) and (min-width: 761px) {
  .layout {
    grid-template-columns: 1fr 345px;
    gap: 0px 30px;
  }
}
@media screen and (max-width: 760px) {
  .layout {
    display: block;
    width: 100%;
    margin: 0;
  }
}

.archive-layout {
  display: grid;
  gap: 0px 70px;
  grid-template-columns: 1fr 345px;
  grid-template-areas: "main sidebar" "full full";
}
@media screen and (max-width: 1240px) and (min-width: 841px) {
  .archive-layout {
    grid-template-columns: 1fr 345px;
    gap: 0px 30px;
  }
}
@media screen and (max-width: 840px) {
  .archive-layout {
    display: block;
    width: 100%;
    margin: 0;
  }
}

.post-bana-tel {
  margin: 15px auto 10px;
  text-align: center;
  padding-bottom: 25px;
}
.post-bana-tel a {
  display: block;
  width: 480px;
  margin: 0 auto;
}
@media screen and (max-width: 840px) {
  .post-bana-tel a {
    width: 52%;
  }
}
@media screen and (max-width: 540px) {
  .post-bana-tel a {
    width: 86%;
  }
}

.archive-layout.single-layout {
  margin-top: 40px;
}

.main {
  grid-area: main;
}
@media screen and (max-width: 1240px) and (min-width: 761px) {
  .main {
    min-width: 0;
  }
}

.side {
  grid-area: sidebar;
  padding-bottom: 100px;
}
@media screen and (max-width: 760px) {
  .side {
    padding-bottom: 0px;
  }
}

.full {
  grid-area: full;
}

.layout-after {
  width: 100%;
}

/*  Single
---------------------- */
.single-content {
  padding-bottom: 40px;
}

.single-inner {
  width: calc(100% - 40px);
  margin: 0 auto;
}
@media screen and (max-width: 760px) {
  .single-inner {
    width: 100%;
  }
}

.single-content {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*  Common
---------------------- */
.section-container {
  padding: 0px 0 120px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1240px) {
  .section-container {
    padding: 0 0 80px;
  }
}
@media screen and (max-width: 760px) {
  .section-container {
    padding: 0 0 35px;
  }
}

.custompost-container {
  padding: 0px 0 0px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1240px) {
  .custompost-container {
    padding: 0 0 80px;
  }
}
@media screen and (max-width: 760px) {
  .custompost-container {
    padding: 0 0 35px;
    margin-bottom: 10px;
  }
}

/* *****************************************
  Common
***************************************** */
*, *:before, *:after {
  box-sizing: border-box;
}

.font-wh {
  color: #FFFFFF !important;
}

.font-red,
.red {
  color: #FF0000 !important;
}

.font-en {
  font-family: "Lexend Deca", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.font-num {
  font-family: "Sansita", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.none {
  display: none;
}

:target,
:focus {
  outline: none;
  box-shadow: none;
}

/* 見出し用 h1、h2 タイトル 
---------------------- */
.title,
.title-wh {
  padding-bottom: 50px;
}
@media screen and (max-width: 760px) {
  .title,
  .title-wh {
    padding-bottom: 15px;
  }
}
.title-inner, .title-inner-col1,
.title-wh-inner,
.title-wh-inner-col1 {
  max-width: 790px;
  position: relative;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 1000px) {
  .title-inner, .title-inner-col1,
  .title-wh-inner,
  .title-wh-inner-col1 {
    flex-direction: column;
    align-items: flex-start;
  }
}
.title-inner,
.title-wh-inner {
  max-width: 790px;
}
.title-inner-col1,
.title-wh-inner-col1 {
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .title-inner-col1,
  .title-wh-inner-col1 {
    width: 100vw;
    max-width: 100vw;
  }
}
.title__header,
.title-wh__header {
  padding-left: 35px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .title__header,
  .title-wh__header {
    padding-left: 20px;
    margin-bottom: 35px;
  }
}
.title__header::before,
.title-wh__header::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  display: inline-block;
  background-color: #ffd700;
  height: 100%;
  width: 6px;
  border: 1px;
}
@media screen and (max-width: 760px) {
  .title__header::before,
  .title-wh__header::before {
    height: auto;
    top: 0;
    bottom: 0;
  }
}
.title h2,
.title-wh h2 {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: 3.6px;
  padding-bottom: 16px;
}
@media screen and (max-width: 760px) {
  .title h2,
  .title-wh h2 {
    font-size: 1.5rem;
    padding-bottom: 10px;
  }
}
.title__en,
.title-wh__en {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto;
  align-items: center;
  width: calc(100% - 5px);
  line-height: 1;
  letter-spacing: 1.9px;
  margin: 0;
  white-space: nowrap;
}
.title__en::before,
.title-wh__en::before {
  content: "";
  grid-column: 2/3;
  grid-row: 1/2;
  display: inline-block;
  width: calc(100% - 4px);
  height: 3px;
  background-color: #000000;
  margin-right: 4px;
}
.title__en span,
.title-wh__en span {
  font-family: "Lexend Deca", sans-serif;
  font-weight: 900;
  grid-column: 1/2;
  grid-row: 1/2;
  padding-bottom: 5px;
  margin-right: 10px;
  margin-bottom: 2px;
  word-break: keep-all;
}
.title__en::after,
.title-wh__en::after {
  display: inline-block;
  content: "";
  grid-column: 3/3;
  grid-row: 1/2;
  border-left: solid 5px #000000;
  border-right: solid 5px #000000;
  width: 14px;
  height: 5px;
}
.title-wh .title__en::before,
.title-wh .title-wh__en::before {
  background-color: #FFF;
}
.title-wh .title__en::after,
.title-wh .title-wh__en::after {
  border-left: solid 5px #FFF;
  border-right: solid 5px #FFF;
}
.title__info,
.title-wh__info {
  flex: 1;
  padding-left: 50px;
  padding-bottom: 5px;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 1000px) {
  .title__info,
  .title-wh__info {
    padding-left: 0;
  }
  .title__info br,
  .title-wh__info br {
    display: none;
  }
}

.page-title {
  position: relative;
  border-left: solid 8px #ffd700;
}
@media screen and (max-width: 760px) {
  .page-title {
    border-left: solid 6px #ffd700;
  }
}
.page-title .title__header {
  padding-left: 0;
}
@media screen and (max-width: 760px) {
  .page-title .title__header {
    margin-bottom: 10px;
  }
}
.page-title .title__header::before {
  display: none;
}
.page-title .title-inner,
.page-title .page-title__meta {
  padding-left: 50px;
}
@media screen and (max-width: 760px) {
  .page-title .title-inner,
  .page-title .page-title__meta {
    padding-left: 15px;
  }
}
.page-title .title-inner {
  max-width: 100%;
}
.page-title h1 {
  display: inline-block !important;
  font-size: 2.25em;
  font-weight: 900;
  letter-spacing: 7px;
  line-height: 1.5;
  margin-top: 30px;
  padding-bottom: 0px;
  word-break: break-word;
  overflow-wrap: anywhere;
  width: auto;
}
@media screen and (max-width: 760px) {
  .page-title h1 {
    font-size: 1.5em;
    letter-spacing: 3px;
    margin-top: 5px;
    padding-bottom: 10px;
  }
}
.page-title .title__en {
  padding-top: 13px;
}
@media screen and (max-width: 760px) {
  .page-title .title__en {
    font-size: 0.75rem;
    padding-top: 0px;
  }
}
.page-title .title__en::after {
  margin-left: 8px;
  border-left: solid 12px #ffd700;
  border-right: solid 12px #ffd700;
  width: 30px;
  height: 12px;
  border-radius: 2px;
}
.page-title__info {
  padding-left: 25px;
  margin-bottom: -15px;
  line-height: 2rem;
}
@media screen and (max-width: 1000px) {
  .page-title__info {
    padding-left: 0px;
  }
}
@media screen and (max-width: 760px) {
  .page-title__info {
    text-align: left;
    padding-left: 0px;
    margin-bottom: 0px;
  }
}
.page-title .page-title__meta {
  margin-top: 45px;
}
@media screen and (max-width: 760px) {
  .page-title .page-title__meta {
    margin-top: 20px;
  }
}
.page-title .page-title__meta.no-meta::before {
  content: "";
  position: absolute;
  left: -8px;
  bottom: -20px;
  width: 8px;
  height: 20px;
  background-color: #ffd700;
}
@media screen and (max-width: 760px) {
  .page-title .page-title__meta.no-meta::before {
    display: none;
  }
}

/* アーカイブ用調整
---------------------- */
.archive-title .title-inner {
  max-width: 100%;
}
@media screen and (max-width: 760px) {
  .archive-title .title__header {
    margin-bottom: 15px;
  }
}
.archive-title .title__header h1 {
  font-size: 2.25em;
  font-weight: 900;
  letter-spacing: 7px;
  padding-bottom: 20px;
}
@media screen and (max-width: 760px) {
  .archive-title .title__header h1 {
    font-size: 1.5em;
    letter-spacing: 3px;
    padding-bottom: 10px;
  }
}
.archive-title .title__header::before {
  width: 8px;
}
@media screen and (max-width: 760px) {
  .archive-title .title__header::before {
    width: 6px;
  }
}
.archive-title .title__en {
  padding-left: 2px;
}
@media screen and (max-width: 760px) {
  .archive-title .title__en {
    font-size: 0.75rem;
  }
}
.archive-title .title__info {
  font-weight: 900;
  padding-bottom: 0px;
}
@media screen and (min-width: 760px) {
  .archive-title .title__info {
    margin-bottom: -10px;
  }
}

/* 本文用タイポグラフィ
---------------------- */
.typo-base ul, .typo-base ol {
  line-height: 2rem;
  margin-left: 20px;
}
.typo-base ul {
  list-style: disc;
}
.typo-base ol {
  list-style: decimal;
}
.typo-base li {
  line-height: 2rem;
}
.typo-base p {
  line-height: 2rem;
  margin-bottom: 1.5rem;
}
.typo-base hr {
  margin: 20px 0;
}
.typo-base strong, .typo-base b {
  font-weight: 900;
}
.typo-base .wp-block-buttons > .wp-block-button a {
  text-decoration: none;
}
.typo-base .wp-block-button__link {
  border: 2px solid #000;
}
.typo-base .wp-block-button__link:hover {
  background-color: #000;
  color: #FFF;
}
.typo-base img[src*="1f4de.svg"] {
  filter: invert(36%) sepia(92%) saturate(5477%) hue-rotate(306deg) brightness(95%) contrast(88%);
}

.wp-block-table thead {
  border-bottom: 1px solid;
}

/* サイドバー見出し
---------------------- */
.sidebar-headline {
  margin-bottom: 20px;
}
.sidebar-headline h2 {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto;
  align-items: center;
  width: calc(100% - 5px);
  line-height: 1;
  letter-spacing: 1.9px;
  margin: 0;
  font-weight: 900;
  font-size: 1rem;
}
.sidebar-headline h2::after {
  content: "";
  display: inline-block;
  width: calc(100% - 10px);
  height: 10px;
  border-top: 3px solid #EFEFEF;
  border-bottom: 3px solid #EFEFEF;
  margin-left: 10px;
}

/* *****************************************
  Header
***************************************** */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.35s ease;
  z-index: 1000;
}

#header.hide {
  transform: translateY(-100%);
}

/*  Header
---------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0 15px;
  background-color: transparent;
  transition: background-color 0.4s ease;
  z-index: 100;
}
@media screen and (max-width: 760px) {
  .header {
    padding: 8px 0;
  }
}
.header a:hover {
  color: #5dc2d0;
  transition-duration: 800ms;
}

.home .header {
  background-color: #ffd700;
}

body.archive .header,
body.archive-header {
  background-color: #efefef;
  transition: background-color 0.4s ease;
}

/* スクロール後（.scrolledが付いたら白） */
.archive-header.scrolled {
  background-color: #fff !important;
}

.single .header,
.white-header {
  background-color: #FFF;
}

.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
}

.head {
  display: flex;
  justify-content: space-between;
}

.head_title {
  display: flex;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 360px;
  height: 47px;
  font-weight: 900;
  padding-top: 2px;
  z-index: 100;
}
@media screen and (max-width: 1100px) {
  .head_title {
    flex-shrink: auto;
    width: 320px;
  }
  .head_title__zenkoku {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 761px) and (max-width: 1000px) {
  .head_title {
    flex-shrink: auto;
    width: 240px;
  }
  .head_title__ex {
    font-size: 0.8125rem;
  }
  .head_title__ex span {
    display: none;
  }
  .head_title__zenkoku {
    display: block;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 420px) {
  .head_title__ex {
    font-size: 0.875rem;
  }
  .head_title__zenkoku {
    font-size: 0.875rem;
  }
}
.head_title__logo {
  width: 65px;
}
@media screen and (max-width: 760px) {
  .head_title__logo {
    width: 55px;
    padding-top: 4px;
  }
}
.head_title__title {
  margin-left: 15px;
}
@media screen and (max-width: 760px) {
  .head_title__title {
    margin-left: 10px;
  }
}
.head_title__company {
  font-size: 1.1875rem;
}
@media screen and (max-width: 420px) {
  .head_title__company {
    font-size: 1rem;
  }
}

.head_tel {
  width: 240px;
  height: 60px;
  flex-shrink: 0;
  font-weight: 900;
  padding-left: 10px;
}
@media screen and (max-width: 1100px) {
  .head_tel {
    flex-shrink: auto;
    width: 190px;
    padding-left: 0px;
    margin-left: 0px;
    transform: scale(0.9);
  }
}
@media screen and (min-width: 761px) and (max-width: 900px) {
  .head_tel {
    width: 160px;
  }
}
@media screen and (max-width: 760px) {
  .head_tel {
    display: none;
  }
}
.head_tel__info {
  font-size: 0.75rem;
}
.head_tel__tel {
  display: flex;
  align-items: center;
  font-size: 1.75rem;
  letter-spacing: -1.5px;
}
@media screen and (max-width: 1100px) {
  .head_tel__tel {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 761px) and (max-width: 900px) {
  .head_tel__tel {
    font-size: 1.25rem;
  }
}
.head_tel__icon img {
  width: 40px;
  transition: width 0.5s ease-in-out;
}
@media screen and (max-width: 1100px) {
  .head_tel__icon img {
    width: 30px;
  }
}
.head_tel__num {
  margin-left: 7px;
}
.head_tel__time {
  font-size: 0.8125rem;
  text-align: right;
  padding-right: 12px;
  margin-top: -1px;
}

/* ナビメニュー
---------------------- */
.head_nav {
  width: 650px;
  margin-left: 20px;
  margin-top: 13px;
}
@media screen and (max-width: 1400px) {
  .head_nav {
    width: 55%;
  }
}
@media screen and (max-width: 1240px) {
  .head_nav {
    position: relative;
    top: -10px;
    width: 55%;
    margin-left: 30px;
    margin-right: 0;
    margin-bottom: 0;
    margin-top: 10px;
    padding: 0;
  }
}
@media screen and (max-width: 1100px) {
  .head_nav {
    width: 53%;
    margin-top: 10px;
    margin-left: 0px;
  }
}
@media screen and (min-width: 761px) and (max-width: 900px) {
  .head_nav {
    width: 50%;
  }
}
.head_nav.active {
  top: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.head_nav.closing {
  opacity: 0;
  visibility: visible; /* アニメ中だけ表示 */
  pointer-events: none;
}

@-moz-document url-prefix() {
  .head_nav {
    transition: none !important;
  }
}
/* ul */
.head_nav__nav {
  display: flex;
  justify-content: space-between;
  list-style: none;
  font-weight: 900;
}
@media screen and (max-width: 1240px) {
  .head_nav__nav {
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 761px) and (max-width: 1400px) {
  .head_nav__nav {
    justify-content: start;
  }
}

.head_nav__nav-item {
  position: relative;
  display: inline-block;
  text-decoration: none;
  transition-duration: 500ms;
  font-size: 0.9375rem;
  padding-right: 0px;
  margin-right: 15px;
}
@media screen and (max-width: 1240px) {
  .head_nav__nav-item {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 940px) {
  .head_nav__nav-item {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 860px) {
  .head_nav__nav-item {
    font-size: 0.8125rem;
    letter-spacing: 0;
    padding: 0;
  }
}
@media screen and (min-width: 761px) and (max-width: 1240px) {
  .head_nav__nav-item {
    padding: -5px 5px 0px;
    margin-left: 10px;
    margin-bottom: 5px;
  }
}
.head_nav__nav-item::after {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 22px;
  content: "";
  width: 0;
  height: 4px;
  background-color: #ffd700;
  transition-duration: 500ms;
}
@media screen and (max-width: 760px) {
  .head_nav__nav-item::after {
    content: none;
  }
}
.head_nav__nav-item:hover::after {
  width: 100%;
}

/* 共通 */
.head-btn__mail a,
.head-btn__line a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  margin-top: -9px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
  transition: all 0.3s ease;
  background-repeat: no-repeat;
  background-position: 8px center;
  background-size: 25px auto;
}

.head-btn__mail::after,
.head-btn__line::after {
  content: none !important;
  display: none !important;
}

/* メールで相談 */
.head-btn__mail a {
  color: #000;
  background-color: #FFF;
  background-image: url("../img/icon-mail.png");
  padding-left: 38px; /* アイコン分だけ左を空ける */
  border: solid 1.5px #000;
  margin-right: -5px;
}

.head-btn__mail a:hover {
  background-color: #ffd700;
  color: #000;
  transform: translateY(-2px);
  opacity: 1;
}

/* LINEで相談 */
.head-btn__line a {
  background-color: #06c755;
  background-image: url("../img/icon-line.png");
  padding-left: 38px;
  border: solid 1.5px #06c755;
}

.head-btn__line a:hover {
  background-color: #05a046;
  border: solid 1.5px #05a046;
  color: #FFF;
  transform: translateY(-2px);
  opacity: 1;
}

/* レイアウト上の微調整 */
.head-btn__mail,
.head-btn__line {
  display: inline-block;
  margin-left: 0px;
}

/* 1240px以下でボタンを縦並びにする
------------------------------ */
@media screen and (max-width: 1240px) {
  /* 通常メニューだけ幅指定 */
  .head_nav__nav-item {
    display: inline-block;
    text-align: center;
    text-align: left;
  }
  /* 親のナビを縦方向に並べるよう変更 */
  .head-btn__mail,
  .head-btn__line {
    width: 40%;
    margin: 14px 0 -10px 10px;
  }
  /* aタグ（ボタン）の幅調整 */
  .head-btn__mail a,
  .head-btn__line a {
    justify-content: center;
    width: 100%;
  }
  .head-btn__mail {
    margin-right: 5px;
  }
}
@media screen and (max-width: 860px) {
  .head_nav__nav-item {
    display: inline-block;
    text-align: center;
    text-align: left;
  }
  /* 親のナビを縦方向に並べるよう変更 */
  .head-btn__mail,
  .head-btn__line {
    width: 42%;
    margin: 14px 0 -10px 10px;
  }
  /* aタグ（ボタン）の幅調整 */
  .head-btn__mail a,
  .head-btn__line a {
    justify-content: center;
    width: 100%;
    font-size: 0.75rem !important;
  }
  .head-btn__mail {
    margin-right: 5px;
  }
}
@media screen and (max-width: 800px) {
  .head_nav__nav-item {
    display: inline-block;
    text-align: center;
    text-align: left;
    margin-right: 5px;
  }
}
/* home スクロールでメールボタン色変更 
------------------------------ */
.head-btn__mail a {
  background-color: #fff;
  border: 1.5px solid #000;
  color: #000;
}

.head-btn__mail a.scrolled {
  background-color: #ffd700;
  color: #000;
}

.head-btn__mail a:hover.scrolled {
  background-color: #FFF;
  color: #000;
}

/* home以外では最初から黄色に
------------------------------ */
body:not(.home) .head-btn__mail a {
  background-color: #ffd700;
  border-color: #000;
  color: #000;
}

body:not(.home) .head-btn__mail a:hover {
  background-color: #FFF;
  color: #000;
}

/* ▼ sub-menu 初期状態（非表示） */
/* 
.sub-menu {
  position: absolute;
  top: 130%;
  left: 0;
  background: #fff;
  list-style: none;
  min-width: 200px;
  padding: 10px 0;
  margin: 0;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 10;

  li {
    display: block;
    padding: 6px 16px;

    a {
      position: relative;
      display: inline-block; // ← テキスト幅に合わせる
      color: $text-color;
      font-weight: 900 !important;
      text-decoration: none;
      transition: 0.3s ease;

      &:hover {
        color: $hover-color;
      }

      // ▼ 下線アニメーション
      &::after {
        content: "";
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 0;
        height: 4px;
        background-color: $main-color;
        transition: width 0.3s ease;
      }

      &:hover::after {
        width: 100%; // ← テキスト幅ぴったりに伸びる！
      }
    }

    &::after {
      content: none;
    }
  }
}


// ▼ 親にホバーでサブメニュー表示 
.head_nav__nav-item.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

// ▼ 親リンク（メインメニュー）調整
.head_nav__nav-item.menu-item-has-children > a::after {
  font-size: 0.6em;
  margin-left: 6px;
  transition: transform 0.3s;
}

.head_nav__nav-item.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}
 */
/* スマホ用メニュー
---------------------- */
@media screen and (max-width: 760px) {
  .head_nav:not(.sp-nav) {
    display: none;
  }
}
.sp-nav {
  display: none;
}

@media screen and (max-width: 760px) {
  .sp-title {
    position: absolute;
    top: 9px;
    left: 19px;
  }
  .sp-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12%);
    transition: opacity 0.45s cubic-bezier(0.4, 0.4, 0, 1), transform 0.45s cubic-bezier(0.4, 0.4, 0, 1);
    z-index: 1000;
  }
  .sp-nav .head_nav__nav {
    position: absolute;
    flex-direction: column;
    gap: 20px;
    top: 130px;
    left: 85px;
    text-align: left;
    margin-top: 10px;
    width: 75%;
  }
  .sp-nav .head_nav__nav-item {
    text-align: left;
    padding-left: 18px;
    margin-bottom: 17px;
    font-size: 1.125rem;
    width: 100%;
    margin-bottom: 0;
    margin-top: -15px;
  }
  .sp-nav .head_nav__nav-item a {
    display: block;
    padding: 0 0 20px;
    margin-bottom: 14px;
  }
  .sp-nav .head_nav__nav-item a:hover {
    color: #000000;
    opacity: 0.7;
  }
  .sp-nav .head_nav__nav-item::after {
    content: none;
  }
  .sp-nav .head_nav__nav-item::before {
    position: absolute;
    top: 10px;
    left: -35px;
    content: "";
    width: 30px;
    height: 4px;
    background-color: #ffd700;
  }
  .sp-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .sp-nav.closing {
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    transform: translateY(12%);
  }
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  z-index: 9;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.head_nav__nav-item.nav-bana-contact a {
  padding: 0;
}
.head_nav__nav-item.nav-bana-contact a img {
  border-radius: 8px;
  display: block;
  margin-top: 30px;
  margin-left: -53px;
  width: calc(100% - 0px);
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 540px) {
  .head_nav__nav-item.nav-bana-contact a img {
    width: 320px;
  }
}

.sp-nav .nav-bana-contact img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.4s ease;
}

.sp-nav .nav-bana-contact img:hover {
  opacity: 0.6;
}

@media screen and (max-width: 760px) {
  /* バナー部分 */
  .nav-banners {
    position: absolute;
    top: 310px; /* ← これで縦位置を明示。調整してOK */
    left: 50%;
    transform: translateX(-50%); /* 中央寄せ */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    width: 120%;
    margin-left: -25px;
    margin-right: -65px;
    z-index: 10; /* 上にくるように */
  }
  .nav-banners li {
    list-style: none;
    flex: 0 0 50%;
    width: 100%;
    margin-left: -25px;
  }
  .nav-banners li::before {
    content: none !important;
    display: none !important;
  }
  .nav-banners li a {
    display: block;
    width: 100%;
    height: 160px;
    text-indent: -9999px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  /* 各バナー画像指定 */
  .nav-banners .sp-btn__line a {
    background-image: url("../img/bana-line.svg");
    background-position: left top;
  }
  .nav-banners .sp-btn__mail a {
    background-image: url("../img/bana-contact.svg");
    background-position: left top;
  }
}
/* ハンバーガー
---------------------- */
.hamburger {
  display: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  pointer-events: none;
}
@media screen and (max-width: 760px) {
  .hamburger {
    all: unset;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    z-index: 1001;
  }
  .hamburger span {
    display: block;
    height: 4px;
    margin: 6px 0;
    background: #000;
    transition: 0.4s;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    cursor: pointer;
    pointer-events: none;
  }
  .hamburger p {
    font-family: "Lexend Deca", sans-serif;
    font-weight: 900;
    font-size: 10px !important;
    text-align: center;
    margin-top: -5px !important;
    margin-left: -1px;
    color: #000;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    cursor: pointer;
    pointer-events: none;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    transform: rotate(-45deg) translate(2px, -2px);
  }
}
@media screen and (max-width: 760px) {
  .hamburger {
    top: 12px;
  }
}

/* *****************************************
  Footer
***************************************** */
.footer {
  position: relative;
  padding-top: 50px;
  padding-bottom: 170px;
  background-image: linear-gradient(0deg, #ffd700, #ffffff 21%);
}
@media screen and (max-width: 760px) {
  .footer {
    padding-bottom: 40px;
    background-image: linear-gradient(0deg, #ffd700, #ffffff 10%);
  }
}
@media screen and (max-width: 540px) {
  .footer {
    padding-top: 0px;
  }
}

.totop {
  display: block;
  position: absolute;
  top: -110px;
  right: 20px;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .totop {
    top: 460px;
    right: 10px;
  }
}
@media screen and (max-width: 540px) {
  .totop {
    top: 650px;
    right: 5px;
  }
}
.totop span::before {
  display: block;
  content: "";
  width: 24.25px;
  height: 104.55px;
  background: url("../img/totop.svg") no-repeat center/contain;
  margin-left: auto;
  margin-bottom: 10px;
  margin-right: 5px;
}
@media screen and (max-width: 760px) {
  .totop span::before {
    height: 55px;
  }
}
.totop a {
  transition: opacity 0.3s;
  display: inline-block;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.totop a:hover {
  transform: translateY(-3px);
}
.totop a:hover span {
  color: #000000;
  opacity: 0.7;
  transition: 0.3s;
}
.totop:hover::after {
  opacity: 0.7;
  transition: 0.3s;
}

@media screen and (max-width: 760px) {
  .page-contact .totop {
    top: 305px;
  }
}
@media screen and (max-width: 540px) {
  .page-contact .totop {
    top: 495px;
  }
}
@media screen and (max-width: 840px) {
  .sp-tel {
    position: fixed;
    right: 30px;
    bottom: 70px;
    z-index: 100;
  }
}
@media screen and (max-width: 540px) {
  .sp-tel {
    right: 20px;
    bottom: 40px;
  }
}

.sp-tel__img {
  display: none;
}
@media screen and (max-width: 840px) {
  .sp-tel__img {
    width: 90px;
    height: auto;
    display: block;
  }
}
@media screen and (max-width: 540px) {
  .sp-tel__img {
    width: 80px;
  }
}

/* .sp-tel {
  position: fixed;
  right: 20px;
  bottom: 40px;
  text-align: center;
  font-size: 10px;
  font-weight: 900;
  line-height: 1rem;
  transition: 0.3s ease;
  z-index: 100;

  // TBサイズ
  @media screen and (max-width: 840px) {
    right: 30px;
    bottom: 70px;
  }
  // SPサイズ
  @media screen and (max-width: 540px) {
    right: 20px;
    bottom: 40px;
  }

  a {
    display: block;
    background-color: #FFF;
    border-radius: 50%;
    border: solid 2px $main-color;
    width: 70px;
    height: 70px;
    padding-top: 6px;
    transition: 0.3s;

    // PCでは非表示
    @media screen and (min-width: 761px) {
      display: none;
    }

    // TBサイズ
    @media screen and (max-width: 840px) {
      border: solid 3px $main-color;
      padding-top: 10px;
      width: 90px;
      height: 90px;
    }
    // SPサイズ
    @media screen and (max-width: 540px) {
      border: solid 2px $main-color;
      padding-top: 6px;
      width: 70px;
      height: 70px;
    }

    img {
      display: block;
      margin: 0 auto;
      width: 37px;
      transition: width 0.5s ease-in-out;

      // TBサイズ
      @media screen and (max-width: 840px) {
        width: 50px;
      }
      // SPサイズ
      @media screen and (max-width: 540px) {
        width: 37px;
      }
    }
  }

  a:hover {
    color: $text-color;
    transition: 0.3s;
    opacity: 0.7;
  }
} */
.foot-greeting {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 840px) {
  .foot-greeting {
    flex-direction: column-reverse;
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .foot-greeting__message {
    padding-right: 15px;
  }
}
@media screen and (max-width: 840px) {
  .foot-greeting__message {
    padding-right: 0px;
  }
}
@media screen and (max-width: 540px) {
  .foot-greeting__message {
    max-width: 98%;
    margin-left: auto;
    margin-right: auto;
  }
}
.foot-greeting__message__head {
  font-size: 1.5625rem;
  font-weight: 900;
  line-height: 2rem;
  margin-bottom: 25px;
  text-align: center;
}
@media screen and (min-width: 800px) {
  .foot-greeting__message__head {
    white-space: nowrap;
  }
}
@media screen and (max-width: 760px) {
  .foot-greeting__message__head {
    margin-top: 20px;
  }
}
@media screen and (max-width: 620px) {
  .foot-greeting__message__head {
    line-height: 3rem;
    text-align: left;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 540px) {
  .foot-greeting__message__head {
    font-size: 1.125rem;
    text-align: center;
  }
}
@media screen and (max-width: 460px) {
  .foot-greeting__message__head {
    text-align: left;
    line-height: 2.125rem;
  }
}
.foot-greeting__message__text {
  line-height: 2rem;
  text-align: center;
  padding-top: 5px;
  letter-spacing: 0.2px;
}
@media screen and (max-width: 620px) {
  .foot-greeting__message__text {
    text-align: center;
    line-height: 1.8125rem;
  }
}
@media screen and (max-width: 540px) {
  .foot-greeting__message__text {
    text-align: left;
    font-size: 0.9375rem;
    line-height: 1.8125rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.foot-greeting__img {
  display: flex;
  align-items: flex-end;
  padding-top: 17px;
  padding-bottom: 17px;
}
@media screen and (max-width: 840px) {
  .foot-greeting__img {
    justify-content: center;
    width: calc(100% - 100px);
    padding-bottom: 40px;
    margin: 55px auto 17px;
  }
}
@media screen and (max-width: 620px) {
  .foot-greeting__img {
    margin: 55px auto 0px;
  }
}
@media screen and (max-width: 540px) {
  .foot-greeting__img {
    width: 80% !important;
    margin: 0 auto;
  }
}
.foot-greeting__img img {
  width: 350px;
  transition: width 0.5s ease-in-out;
}
@media screen and (min-width: 361px) {
  .foot-greeting__img img {
    max-width: 350px;
  }
}
@media screen and (max-width: 360px) {
  .foot-greeting__img img {
    width: 100%;
    height: auto;
  }
}

.foot-greeting__img {
  display: flex;
  justify-content: center;
  padding-top: 17px;
  padding-bottom: 17px;
}
@media screen and (max-width: 840px) {
  .foot-greeting__img {
    width: calc(100% - 100px);
    padding-bottom: 40px;
    margin: 55px auto 17px;
  }
}
@media screen and (max-width: 620px) {
  .foot-greeting__img {
    margin: 55px auto 0;
  }
}
@media screen and (max-width: 540px) {
  .foot-greeting__img {
    width: 100%;
    margin: 0 auto;
  }
}
.foot-greeting__img img {
  width: 350px;
  max-width: 100%;
  height: auto;
  transition: width 0.5s ease-in-out;
}
@media screen and (max-width: 360px) {
  .foot-greeting__img img {
    width: 80% !important;
    display: block;
    margin: 0 auto;
  }
}

.foot {
  display: flex;
  justify-content: flex-start;
  padding-top: 82px;
  flex-wrap: nowrap;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .foot {
    padding-top: 82px;
    white-space: nowrap;
    overflow: hidden;
  }
  .foot > * {
    display: inline-block;
    vertical-align: top;
  }
}
@media screen and (max-width: 540px) {
  .foot {
    flex-direction: column;
    padding-top: 50px;
  }
}
.foot .foot-info {
  display: flex;
  justify-content: space-around;
  flex-shrink: 0;
}
@media screen and (max-width: 540px) {
  .foot .foot-info {
    flex-direction: column;
  }
}
.foot__logo {
  margin-right: 50px;
}
.foot__logo img {
  width: 150px;
  transition: width 0.5s ease-in-out;
}
@media screen and (max-width: 1240px) {
  .foot__logo {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .foot__logo img {
    width: 150px;
  }
}
@media screen and (max-width: 540px) {
  .foot__logo {
    margin-bottom: 0;
  }
  .foot__logo a img {
    width: 200px;
  }
}
.foot__companyinfo {
  font-weight: 900;
  font-size: 0.875rem;
  line-height: 1.75rem;
  margin-top: 0px;
}
@media screen and (max-width: 1240px) {
  .foot__companyinfo {
    margin-bottom: 30px;
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 540px) {
  .foot__company-name {
    display: none;
  }
}
.foot__nav {
  display: flex;
  justify-content: flex-start;
  margin-top: -8px;
  white-space: nowrap;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .foot__nav {
    margin-left: 50px;
  }
}
@media screen and (max-width: 540px) {
  .foot__nav {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
.foot__nav__menu {
  font-size: 0.9375rem;
  line-height: 2.8725rem;
  font-weight: 900;
}
@media screen and (max-width: 1000px) and (min-width: 761px) {
  .foot__nav__menu:nth-child(1) {
    margin-left: 80px;
  }
}
.foot__nav__menu a {
  text-decoration: underline;
  transition: 0.3s;
}
.foot__nav__menu a:hover {
  transition: 0.3s;
}
.foot__nav .footer-menu01 {
  margin-right: 55px;
  margin-left: 60px;
}
@media screen and (max-width: 1000px) {
  .foot__nav .footer-menu01 {
    margin-right: 20px;
    margin-left: 60px;
  }
}
@media screen and (max-width: 840px) {
  .foot__nav .footer-menu01 {
    margin-right: 20px;
    margin-left: 0px;
  }
}
@media screen and (max-width: 760px) {
  .foot__nav .footer-menu01 {
    margin-right: 70px;
    margin-left: 0px;
  }
}
.foot__nav .footer-menu02 {
  margin-right: 55px;
  margin-left: 10px;
  transition: 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .foot__nav .footer-menu02 {
    margin-right: 15px;
    margin-left: 10px;
  }
}
@media screen and (max-width: 840px) {
  .foot__nav .footer-menu02 {
    margin-right: 25px;
    margin-left: 15px;
  }
}
@media screen and (max-width: 760px) {
  .foot__nav .footer-menu02 {
    margin-right: 70px;
    margin-left: 0px;
  }
}
.foot .foot__bana {
  flex-shrink: 0;
  width: 370px;
}
.foot .foot__bana img {
  width: 100%;
  height: auto;
}
.foot__bana {
  max-width: 100%;
  height: auto;
  flex-shrink: 1;
}
@media screen and (max-width: 760px) {
  .foot__bana {
    display: none;
  }
}
.foot__bana a {
  transition: 0.3s;
}
.foot__bana a:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.foot__bana img {
  width: 370px;
  border-radius: 8px;
  margin-left: 40px;
  transition: width 0.5s ease-in-out;
}
.foot__bana-tb {
  display: none;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .foot__bana-tb {
    display: block;
    width: 100%;
    max-width: 320px;
  }
}
.foot__bana-sp {
  display: none;
}
@media screen and (max-width: 540px) {
  .foot__bana-sp {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 10px;
  }
}

.foot-bana_01 {
  padding-bottom: 70px;
}

@media screen and (min-width: 761px) and (max-width: 840px) {
  .footer .sidebar-bana.foot__bana-tb {
    width: 50% !important;
    max-width: 50% !important;
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
    left: calc((100vw - 100%) / -2);
  }
  .footer .sidebar-bana.foot__bana-tb img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
    display: block;
    margin: 0 auto;
  }
}
body.page-id-1560 .foot__bana-sp,
body.page-id-1560 .foot-greeting__img {
  display: none !important;
}

.address {
  margin-top: 28px;
  margin-right: 25px;
  letter-spacing: 0.1px;
}
.address__text {
  text-align: right;
  font-size: 0.875rem;
  font-weight: 900;
  font-style: normal;
}
@media screen and (min-width: 541px) and (max-width: 840px) {
  .address__text {
    text-align: center;
  }
}
@media screen and (max-width: 540px) {
  .address__text {
    text-align: left;
    margin-top: 0px;
    margin-bottom: 125px;
  }
}

/* *****************************************
  Home
***************************************** */
.home {
  overflow-x: hidden;
}

/*  Top Contents
---------------------- */
.home-title {
  display: none;
}

/*  累計問い合わせ数
---------------------- */
.total-home {
  font-size: 1.25rem;
}
@media screen and (max-width: 1240px) {
  .total-home {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 761px) and (max-width: 850px) {
  .total-home {
    font-size: 0.9125rem;
  }
}
@media screen and (max-width: 760px) {
  .total-home {
    font-size: 1rem;
  }
}

.t-red-big {
  color: #C40000;
  font-family: "Sansita", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 2.5rem;
  padding-left: 10px;
  padding-right: 7px;
}
@media screen and (max-width: 900px) {
  .t-red-big {
    font-size: 1.725rem;
  }
}
@media screen and (max-width: 760px) {
  .t-red-big {
    font-size: 1.5rem;
    padding-left: 5px;
    padding-right: 5px;
  }
}

.t-red {
  color: #C40000;
  font-family: "Sansita", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 2.125rem;
  padding-left: 10px;
  padding-right: 7px;
}
@media screen and (max-width: 900px) {
  .t-red {
    font-size: 1.5625rem;
    padding-left: 7px;
    padding-right: 4px;
  }
}
@media screen and (max-width: 760px) {
  .t-red {
    font-size: 1.3125rem;
  }
}

.t-month {
  font-family: "Sansita", sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 1.725rem;
  padding-left: 8px;
  padding-right: 5px;
}
@media screen and (max-width: 760px) {
  .t-month {
    font-size: 1.3125rem;
  }
}

.t-red-2nd {
  color: #C40000;
  font-family: "Sansita One", sans-serif;
  font-size: 3rem;
  padding-left: 8px;
  padding-right: 5px;
}

.total-contact {
  border-top: solid 5px #000000;
  border-bottom: solid 5px #000000;
  padding-top: 24px;
  padding-bottom: 30px;
  margin-bottom: 120px;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .total-contact {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 760px) {
  .total-contact {
    margin-top: 50px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.total-contact__inner {
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .total-contact__inner {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media screen and (max-width: 760px) {
  .total-contact .total-contact-none {
    display: none;
  }
}
.total-contact__intro {
  margin-bottom: 24px;
}
@media screen and (max-width: 760px) {
  .total-contact__intro {
    margin-bottom: 18px;
  }
}
.total-contact__title {
  background-color: #ffd700;
  padding: 7px 0;
}
@media screen and (max-width: 760px) {
  .total-contact__title {
    padding: 5px 0;
  }
}
.total-contact__body {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.total-contact__body-item {
  text-align: center;
  width: 50%;
  padding: 4px 0;
  margin: 20px 0;
}
@media screen and (max-width: 760px) {
  .total-contact__body-item {
    margin: 10px 0;
  }
}
.total-contact__body-item:nth-of-type(1) {
  border-right: solid 2px #000;
}
.total-contact__info {
  font-size: 0.9375rem;
  text-align: right;
  padding-right: 30px;
}
@media screen and (max-width: 760px) {
  .total-contact__info {
    padding-right: 0px;
    font-size: 0.825rem;
  }
}

/* 文字サイズ サイド用
---------------------- */
.total-contact.total-side {
  padding: 10px 0;
  margin-bottom: 50px;
}

.total-side {
  font-size: 0.9125rem;
  border-top: solid 4px #000;
  border-bottom: solid 4px #000;
}
.total-side .t-red-big {
  font-size: 1.5rem;
  padding-left: 5px;
  padding-right: 5px;
}
.total-side .t-red {
  font-size: 1.25rem;
  padding-left: 5px;
  padding-right: 5px;
}
.total-side .t-month {
  font-size: 1.25rem;
  padding-right: 2px;
}
.total-side .total-contact__intro {
  margin-bottom: 10px;
}
.total-side .total-contact__kome {
  display: none;
}
.total-side .total-contact__inner {
  padding: 0;
  margin: 0 0 10px;
}
.total-side .total-contact__body-title {
  padding: 5px 0;
}
.total-side .total-contact__body-item {
  margin: 10px 0;
}
.total-side .total-contact__info {
  text-align: right;
  font-size: 0.825rem;
  padding-right: 0px;
}
@media screen and (max-width: 400px) {
  .total-side .total-contact__info {
    font-size: 0.8125rem;
  }
}

/*  記事一覧
---------------------- */
.post-wrap {
  padding: 0;
}

.post-lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.post-list a,
.post-list-3col a {
  transition: 0.3s;
}
.post-list a:hover,
.post-list-3col a:hover {
  opacity: 0.7;
  color: #000000;
  transition: 0.3s;
}
.post-list__item,
.post-list-3col__item {
  margin-bottom: 45px;
}
@media screen and (max-width: 760px) {
  .post-list__item,
  .post-list-3col__item {
    margin-bottom: 35px;
  }
}
.post-list__img,
.post-list-3col__img {
  position: relative;
  margin-bottom: 12px;
  width: 370px;
  height: 230px;
}
@media screen and (max-width: 1240px) {
  .post-list__img,
  .post-list-3col__img {
    width: 100%;
    max-width: 370px;
    aspect-ratio: 370/230;
    height: auto;
  }
}
@media screen and (max-width: 760px) {
  .post-list__img,
  .post-list-3col__img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 370/230;
    height: auto;
    margin-top: 20px;
  }
  .post-list__img img,
  .post-list-3col__img img {
    height: auto;
    aspect-ratio: 370/230;
    max-width: none;
    transition: width 0.5s ease-in-out;
  }
}
.post-list__img img,
.post-list-3col__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: width 0.5s ease-in-out;
}
.post-list__category,
.post-list-3col__category {
  position: absolute;
  bottom: 12px;
  left: -12px;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1;
  background-color: #000;
  border-radius: 4px;
  padding: 10px 12px;
  z-index: 10;
}
@media screen and (min-width: 761px) and (max-width: 1000px) {
  .post-list__category,
  .post-list-3col__category {
    padding: 7px 8px;
    left: -10px;
  }
}
.post-list__title,
.post-list-3col__title {
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.625em;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: break-word;
  -webkit-box-pack: start;
  min-height: 4.875em;
}
@media screen and (min-width: 761px) and (max-width: 1000px) {
  .post-list__title,
  .post-list-3col__title {
    font-size: 0.9375rem;
    line-height: 1.5em;
    min-height: 4.5em;
  }
}
@media screen and (max-width: 760px) {
  .post-list__title,
  .post-list-3col__title {
    font-size: 1rem;
    margin-top: 15px;
    min-height: 4.875em;
  }
}
.post-list__meta,
.post-list-3col__meta {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  font-weight: 900;
}
@media screen and (min-width: 761px) and (max-width: 1000px) {
  .post-list__meta,
  .post-list-3col__meta {
    grid-template-columns: 1fr;
    align-items: start;
  }
}
.post-list__meta-tag,
.post-list-3col__meta-tag {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  margin-right: 10px;
}
.post-list__meta-tag li,
.post-list-3col__meta-tag li {
  font-size: 0.75rem;
  letter-spacing: 1.2px;
  line-height: 1.125rem;
  margin-right: 12px;
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 760px) {
  .post-list__meta-tag li,
  .post-list-3col__meta-tag li {
    font-size: 0.9125rem;
    margin-bottom: 3px;
  }
}
.post-list__meta-tag li::before,
.post-list-3col__meta-tag li::before {
  content: "#";
  display: inline-block;
  color: #ffd700;
  margin-right: 5px;
}
.post-list__meta-time,
.post-list-3col__meta-time {
  font-family: "Lexend Deca", sans-serif;
  font-size: 0.9375rem;
  color: #999999;
  white-space: nowrap;
  padding-top: 5px;
  width: 100%;
  text-align: right;
}

.post-1col {
  flex: 0 1 370px;
  letter-spacing: 1.25px;
  font-weight: 900;
}
@media screen and (max-width: 1240px) and (min-width: 761px) {
  .post-1col {
    flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}
@media screen and (max-width: 760px) {
  .post-1col {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 1240px) {
  .post-1col:nth-child(2n) {
    margin-right: 0;
  }
}

.post-3col {
  flex: 0 1 370px;
  letter-spacing: 1.25px;
  font-weight: 900;
}
@media screen and (min-width: 1240px) {
  .post-3col:nth-child(3n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 1240px) {
  .service .inner-in {
    width: calc(100% - 40px);
  }
}
.service .post-lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0 50px;
  row-gap: 45px;
}
@media screen and (max-width: 1240px) and (min-width: 761px) {
  .service .post-lists {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0 30px;
  }
}
@media screen and (max-width: 760px) {
  .service .post-lists {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
.service .post-service {
  flex: none;
  width: 100%;
  max-width: none;
}
@media screen and (min-width: 1240px) {
  .service .post-service:nth-child(3n) {
    margin-right: 0;
  }
}

/*  大カード1・小カード3 レイアウト
---------------------- */
.grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0 45px;
}
@media screen and (max-width: 1240px) and (min-width: 761px) {
  .grid-layout {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0 30px;
  }
}
@media screen and (max-width: 760px) {
  .grid-layout {
    grid-template-columns: 1fr;
    grid-gap: 0px;
  }
}
.grid-layout .post-list:nth-child(1) {
  grid-column: 1/-1;
}
.grid-layout .post-list:nth-child(1) .post-list__item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 760px) {
  .grid-layout .post-list:nth-child(1) .post-list__item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.grid-layout .post-list:nth-child(1) .post-list__img {
  width: 575px;
  height: 360px;
}
@media screen and (max-width: 1240px) and (min-width: 761px) {
  .grid-layout .post-list:nth-child(1) .post-list__img {
    width: 50%;
    height: auto;
    aspect-ratio: 370/230;
    max-width: none;
  }
}
@media screen and (max-width: 760px) {
  .grid-layout .post-list:nth-child(1) .post-list__img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
  }
  .grid-layout .post-list:nth-child(1) .post-list__img img {
    aspect-ratio: 370/230;
    transition: width 0.5s ease-in-out;
  }
}
.grid-layout .post-list:nth-child(1) .post-list__category {
  bottom: 20px;
  font-size: 0.9375rem;
  height: 40px;
  padding: 12px 12px;
}
@media screen and (max-width: 760px) {
  .grid-layout .post-list:nth-child(1) .post-list__category {
    font-size: 0.75rem;
    padding: 10px 12px;
    height: auto;
  }
}
.grid-layout .post-list:nth-child(1) .post-list__body {
  flex: 1;
  margin-left: 75px;
  margin-right: 40px;
}
@media screen and (max-width: 1240px) and (min-width: 761px) {
  .grid-layout .post-list:nth-child(1) .post-list__body {
    flex: 1;
    width: 50%;
    margin-left: 40px;
    margin-right: 0px;
  }
}
@media screen and (max-width: 760px) {
  .grid-layout .post-list:nth-child(1) .post-list__body {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.grid-layout .post-list:nth-child(1) .post-list__title {
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 4.2em;
}
@media screen and (min-width: 1241px) {
  .grid-layout .post-list:nth-child(1) .post-list__title {
    max-width: 100%;
    display: inline-block;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 1240px) and (min-width: 761px) {
  .grid-layout .post-list:nth-child(1) .post-list__title {
    font-size: 1.25rem;
  }
}
.grid-layout .post-list:nth-child(1) .post-list__meta-time {
  padding-top: 15px;
  padding-bottom: 0px;
  line-height: 1rem;
}
.grid-layout .post-list:not(:first-child) {
  width: 370px;
}
@media screen and (max-width: 1240px) and (min-width: 761px) {
  .grid-layout .post-list:not(:first-child) {
    width: 100%;
  }
}
@media screen and (max-width: 760px) {
  .grid-layout .post-list:not(:first-child) {
    width: 100%;
  }
}

@media screen and (max-width: 760px) {
  .post-list.sp-mini {
    height: auto !important;
    min-height: 0 !important;
  }
  .post-list.sp-mini .post-list__item {
    display: flex;
    align-items: flex-start;
  }
  .post-list__img {
    flex: 0 0 145px;
    aspect-ratio: 29/18;
    margin-bottom: 0;
    margin-right: 12px;
  }
  .post-list__img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 6px;
    transition: width 0.5s ease-in-out;
  }
  .post-list__body {
    flex: 1;
  }
  .sp-mini .post-list__category {
    display: none;
  }
  .sp-mini .post-list__title {
    letter-spacing: 0;
  }
  .sp-mini .post-list__meta {
    grid-template-columns: 1fr;
    row-gap: 2px;
  }
  .sp-mini .post-list__meta-tag {
    display: none;
  }
  .grid-layout .post-list.sp-mini:nth-child(1) {
    grid-column: auto;
  }
  .grid-layout .post-list.sp-mini:nth-child(1) .post-list__item {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
  }
  .grid-layout .post-list.sp-mini:nth-child(1) .post-list__img {
    flex: 0 0 145px;
    aspect-ratio: 29/18;
    margin-bottom: 0;
    margin-right: 12px;
    width: auto;
    height: auto;
  }
  .grid-layout .post-list.sp-mini:nth-child(1) .post-list__body {
    flex: 1;
    margin: 0;
  }
}
@media screen and (max-width: 760px) {
  .post-lists {
    display: block;
  }
  .post-list {
    display: flex;
    flex-direction: row;
    height: auto !important;
    margin-bottom: 20px;
  }
  .post-list.sp-mini {
    margin-bottom: 5px;
  }
  .post-list:last-child {
    margin-bottom: 0;
  }
  .post-list__item {
    margin-bottom: 0;
    padding: 0 !important;
    margin: 0 !important;
  }
  .post-list.sp-mini .post-list__body {
    padding-top: 3px;
  }
  /* Service 内のリスト：gridの行間(row-gap)を消してmargin管理にする */
  .service .post-lists {
    display: block;
    grid-gap: 0 !important;
  }
  .service .post-list {
    height: auto !important;
    margin-bottom: 10px;
  }
  .service .post-list:last-child {
    margin-bottom: 0;
  }
}
/* スマホ件数表示操作
---------------------- */
@media screen and (max-width: 760px) {
  .big-work .post-wrap ul li:nth-child(n+4),
  .house-work .post-wrap ul li:nth-child(n+4),
  .interview .post-wrap ul li:nth-child(n+4) {
    display: none;
  }
}

@media screen and (min-width: 761px) {
  .top-topics .post-wrap ul li:nth-child(n+7) {
    display: none;
  }
}
@media screen and (max-width: 760px) {
  .top-topics .post-wrap ul li:nth-child(n+6) {
    display: none;
  }
}

@media screen and (min-width: 761px) {
  .category-order .post-wrap ul li:nth-child(n+11) {
    display: none;
  }
}

/*  ページャー：一覧、前・後
---------------------- */
.pager {
  text-align: center;
  margin-top: 15px;
  padding-bottom: 5px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
@media screen and (max-width: 760px) {
  .pager {
    margin-top: 35px;
  }
}

.pager.show {
  opacity: 1;
  transform: translateY(0);
}

.go-btn {
  display: table;
  height: 26px;
  width: 26px;
  padding-right: 40px;
  transition: 0.3s;
}

.btn-arrow {
  height: 26px;
  width: 26px;
  margin-bottom: -5px;
  margin-left: 10px;
  background: #000000;
  border-radius: 50%;
  transition: 0.3s;
  border-radius: 50%;
}

a:hover .btn-arrow {
  background: #ffd700;
  border-radius: 50%;
  transition: 0.3s;
}

.btn-arrow-gray {
  margin-bottom: -5px;
  margin-left: 10px;
  background: #FFF;
  border-radius: 50%;
  transition: 0.8s;
  border-radius: 50%;
}

a:hover .btn-arrow-gray {
  background: #ffd700;
  border-radius: 50%;
  transition: 0.8s;
}

.contact-bana a img {
  margin-bottom: 0 !important;
}

a:hover .contact-bana-text {
  color: #000;
  opacity: 0.9;
}

.contact-bana-btn {
  height: 30px;
}
.contact-bana-btn .btn-arrow {
  margin-top: 0;
  margin-bottom: 0;
  width: 26px !important;
  border-radius: 50%;
}

.pager-all,
.pager-all-wh {
  font-weight: 900;
  font-size: 1.25rem;
  padding: 5px 35px;
  transition: 0.3s;
}

.pager-all-wh {
  color: #FFF;
}

.pager-all:hover {
  color: #000;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
}

.pager-all-wh:hover {
  color: #FFF;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
}

.pager:hover .btn-arrow {
  background: #ffd700;
  border-radius: 50%;
  transition: 0.3s;
}

.pager-col1-spacer {
  padding-left: 10px;
}

/* ページネーション
---------------------- */
.page-numbers {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-numbers li {
  display: inline-block;
}

.page-numbers a,
.page-numbers span {
  display: inline-block;
  font-family: "Lexend Deca", sans-serif;
  font-weight: 800 !important;
  padding: 8px 15px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}

.page-numbers .current {
  background: #000;
  color: #ffd700;
}

.page-numbers a:hover:not(.current) {
  background: #000;
  color: #ffd700;
  transition: 0.3s;
  opacity: 1;
}

.page-numbers .prev,
.page-numbers .next {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-numbers .prev.disabled,
.page-numbers .next.disabled {
  background: #eee;
  color: #aaa;
}

.page-numbers .prev::before,
.page-numbers .next::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
}

.page-numbers.prev::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-left: 4px solid #FFF;
  border-bottom: 4px solid #FFF;
  transform: rotate(45deg);
  margin-left: 4px;
}

.page-numbers.next::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 4px solid #FFF;
  border-top: 4px solid #FFF;
  transform: rotate(45deg);
  margin-left: -4px;
}

.page-numbers .prev:not(.disabled):hover,
.page-numbers .next:not(.disabled):hover {
  background: #ffd700;
  color: #000;
}

.ajax-nav {
  margin-top: 0;
}
@media screen and (max-width: 760px) {
  .ajax-nav {
    margin-top: 40px;
  }
}
.ajax-nav .page-numbers {
  margin-top: 10px;
}

.ajax-nav .prev,
.ajax-nav .next {
  font-size: 0;
}

.ajax-nav .prev::before {
  content: "";
  font-size: 16px;
}

.ajax-nav .next::before {
  content: "";
  font-size: 16px;
}

/*  サイドバー
---------------------- */
@media screen and (max-width: 840px) {
  .side .sidebar-tag-container {
    width: 100%;
  }
}
@media screen and (max-width: 760px) {
  .side {
    margin-top: 0px;
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 540px) {
  .side {
    margin-bottom: 30px;
  }
}

.sidebar-bana,
.sidebar-bana-m60 {
  margin-bottom: 30px;
}
@media screen and (max-width: 840px) {
  .sidebar-bana,
  .sidebar-bana-m60 {
    width: 50%;
    margin: 0 auto 30px;
  }
}
@media screen and (max-width: 540px) {
  .sidebar-bana,
  .sidebar-bana-m60 {
    width: 90%;
  }
}
.sidebar-bana a,
.sidebar-bana-m60 a {
  transition: 0.3s ease;
}
.sidebar-bana a:hover,
.sidebar-bana-m60 a:hover {
  opacity: 0.7;
  transition: 0.3s ease;
}
.sidebar-bana img,
.sidebar-bana-m60 img {
  display: block;
  width: 100%;
  height: auto;
  text-align: center;
  border-radius: 8px;
  margin: 0 auto;
  transition: width 0.5s ease-in-out;
  /* @media screen and (max-width: 760px) {
    width: 390px;
    max-width: 100%;
  }
  */
}

.sidebar-bana-m60 {
  margin-bottom: 60px;
}
@media screen and (max-width: 760px) {
  .sidebar-bana-m60 {
    margin-bottom: 40px;
  }
}

.side-lists {
  margin: 0;
  padding: 0;
  padding-bottom: 15px;
}

.wpp-lists {
  counter-reset: rank;
  margin: 0;
  padding: 0;
  padding-bottom: 15px;
}

.wpp-list,
.side-list {
  margin-bottom: 25px;
}
.wpp-list a,
.side-list a {
  transition: 0.3s;
}
.wpp-list a:hover,
.side-list a:hover {
  opacity: 0.7;
  color: #000000;
  transition: 0.3s;
}

.wpp-item,
.side-item {
  display: flex;
  align-items: flex-start;
  counter-increment: rank;
  position: relative;
}

.wpp-img,
.side-img {
  margin-right: 15px;
}
.wpp-img img,
.side-img img {
  width: 145px;
  height: 95px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  transition: width 0.5s ease-in-out;
}

.wpp-item::after {
  content: counter(rank);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 35px;
  color: #ffd700;
  font-family: "Lexend Deca", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  text-align: center;
  padding-left: 1px;
}

.wpp-list:nth-child(-n+3) .wpp-item::after {
  bottom: -13px;
  background: url(../img/crown.svg) no-repeat;
  background-position: center top;
  padding-top: 6px;
}

.wpp-list:nth-child(n+4):nth-child(-n+5) .wpp-item::after {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background: #CCC;
  color: #000;
  padding-top: 1px;
}

.wpp-meta,
.side-meta {
  flex: 1;
}
.wpp-meta .wpp-title,
.wpp-meta .side-title,
.side-meta .wpp-title,
.side-meta .side-title {
  font-weight: 900;
  font-size: 0.875rem;
  line-height: 1.5rem;
  padding-top: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.wpp-meta .wpp-date,
.wpp-meta .side-date,
.side-meta .wpp-date,
.side-meta .side-date {
  display: block;
  font-family: "Lexend Deca", sans-serif;
  color: #999999;
  font-weight: 800;
  font-size: 0.8125rem;
  letter-spacing: 1.2px;
  margin-top: 0px;
}

@media screen and (max-width: 760px) {
  .side-ranking {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-top: 20px;
    margin-bottom: 30px;
  }
  .side-ranking .inner-side {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  .side-ranking .sidebar-headline h2::before {
    border-left: 4px solid #ffd700;
    border-right: 4px solid #ffd700;
  }
  .side-ranking .sidebar-headline h2::after {
    border-top: 3px solid #efefef;
    border-bottom: 3px solid #efefef;
  }
  .side-ranking .wpp-item {
    padding-bottom: 6px;
  }
  .side-ranking .wpp-list:nth-child(-n+3) .wpp-item::after {
    background: url(../img/crown-yellow.svg) no-repeat;
    background-position: center top;
    padding-top: 6px;
    color: #000000;
  }
  .side-ranking .wpp-list:nth-child(n+4):nth-child(-n+5) .wpp-item::after {
    color: #FFF !important;
    background-color: #888;
  }
}

.sidebar-tag-container {
  width: 345px;
  max-height: 180px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
  scrollbar-width: auto;
  scrollbar-color: #B8C0C2;
  /* Chrome, Safari, Edge */
}
@media screen and (max-width: 760px) {
  .sidebar-tag-container {
    width: 100%;
    max-height: 250px;
  }
}
.sidebar-tag-container::-webkit-scrollbar {
  width: 12px;
}
.sidebar-tag-container::-webkit-scrollbar-track {
  border-radius: 8px;
  background-color: #FFF;
}
.sidebar-tag-container::-webkit-scrollbar-track:hover {
  background-color: #ffd700;
}
.sidebar-tag-container::-webkit-scrollbar-track:active {
  background-color: #ffd700;
}
.sidebar-tag-container::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: #B8C0C2;
}

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  margin-right: 10px;
}
.sidebar-tags li {
  font-size: 0.9375rem;
  font-weight: 900;
  line-height: 1.125rem;
  margin-right: 12px;
  margin-top: 0;
  margin-bottom: 15px;
  padding-bottom: 2px;
  border-bottom: dashed 2px #A8A8A8;
}
.sidebar-tags li a {
  transition: 0.3s;
}
.sidebar-tags li a:hover {
  color: #000000;
  opacity: 0.78;
  transition: 0.3s;
}
.sidebar-tags li::before {
  content: "#";
  display: inline-block;
  color: #ffd700;
  margin-right: 5px;
}

/*  サービス紹介
---------------------- */
.service {
  background: #2f3133 url("../img/service-bg-logo-sp.svg");
  background-repeat: no-repeat;
  background-position: right 33px;
  color: #FFFFFF !important;
  background-size: 60%;
  padding: 120px 0 120px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 120px;
}
@media screen and (max-width: 840px) {
  .service {
    background: #2f3133 url("../img/service-bg-logo-sp.svg");
    background-repeat: no-repeat;
    background-position: 300px 50px;
    background-size: 90%;
    padding: 80px 0 80px;
    margin-bottom: 80px;
  }
}
.service .post-wrap {
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1240px) {
  .service .post-wrap {
    width: 100%;
  }
}
.service .post-lists {
  justify-content: space-between;
}
@media screen and (max-width: 1240px) {
  .service .post-list {
    margin-bottom: 20px;
  }
}
.service .post-list__img {
  margin-bottom: 15px;
}
.service .post-list__category {
  bottom: 20px;
  left: -15px;
}
.service .post-list__body {
  color: #FFFFFF;
}
.service .post-list__meta-time {
  display: none;
}

.big-work .title__en br,
.house-work .title__en br {
  display: none;
}
@media screen and (max-width: 760px) {
  .big-work .title__en br,
  .house-work .title__en br {
    display: block;
  }
}

/* *****************************************
	Animation
***************************************** */
.fadein {
  opacity: 0;
  transform: translateY(30px); /* 下から */
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadein.show {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .post-lists .post-list:first-child {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
  }
}
.post-list {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.post-list.show {
  opacity: 1;
  transform: translateY(0);
}

/* *****************************************
  ぱんくず
***************************************** */
.breadcrumb {
  font-size: 0.9375rem;
  padding-bottom: 40px;
  width: 785px;
  margin-left: 0;
  margin-right: auto;
  max-width: 100%;
  width: calc(100% - 345px - 70px);
}
@media screen and (max-width: 1240px) {
  .breadcrumb {
    width: calc(100% - 345px - 30px);
  }
}
@media screen and (max-width: 840px) {
  .breadcrumb {
    padding-top: 0px;
    font-size: 0.825rem;
    width: 100%;
  }
}
@media screen and (max-width: 760px) {
  .breadcrumb {
    padding-top: 50px;
  }
}
.breadcrumb span[property=itemListElement] {
  display: contents;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 0.5em;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
@media screen and (max-width: 760px) {
  .breadcrumb li {
    white-space: normal;
  }
}

.breadcrumb li + li::before {
  content: ">";
  margin: 0 0.5em;
}

.breadcrumb a {
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb a:hover {
  transition: 0.3s;
}

/* フレックスと省略制御
------------------------------ */
.breadcrumb li:nth-child(1),
.breadcrumb li:nth-child(2) {
  flex: 0 0 auto;
}

.breadcrumb li.current-item {
  flex: 1 1 auto;
  min-width: 0;
}

.breadcrumb li.taxonomy {
  flex: 0 0 auto;
  white-space: normal;
}

.breadcrumb li.current-item a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumb li:not(.current-item) a {
  overflow: visible;
  text-overflow: unset;
  white-space: normal;
}

/* ------------------------------
  その他補正
------------------------------ */
.breadcrumb li.current-item,
.breadcrumb a[aria-current=page] {
  background-color: transparent !important;
}

/* *****************************************
  下層ページ
***************************************** */
body.page:not(.home), .post, .single, .archive, .taxonomy {
  overflow-x: hidden;
}

/*  共通タイポグラフィ
---------------------- */
.typo-base {
  /* テーブル全体 */
  /* ヘッダーセル */
  /* データセル */
}
.typo-base a {
  font-weight: 900;
  color: #007cff;
  text-decoration: underline;
}
.typo-base a:hover {
  opacity: 0.7;
  color: #007cff;
}
.typo-base h3 {
  font-size: 1.25rem;
  font-weight: 900;
  padding: 15px 0;
  margin: 40px 0 30px;
  border-top: 3px solid #CCC;
  border-bottom: 3px solid #CCC;
}
.typo-base h4 {
  font-size: 1.125rem;
  font-weight: 900;
  padding: 20px 0 10px;
}
.typo-base h5, .typo-base h6 {
  font-size: 1rem;
  font-weight: 900;
  padding: 0;
  margin: 20px 0 10px;
}
.typo-base img {
  width: 100%;
  margin-top: 25px;
  margin-bottom: 25px;
}
.typo-base table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc;
  margin: 40px 0 30px;
}
.typo-base th {
  text-align: left;
  padding: 15px 10px;
  background-color: #fafafa;
  border: 1px solid #ccc;
  font-weight: bold;
}
.typo-base td {
  text-align: left;
  padding: 15px 10px;
  border: 1px solid #ccc;
}
.typo-base dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.typo-base dt,
.typo-base dd {
  padding: 25px 0;
  margin: 0;
  line-height: 2.25rem;
}
@media screen and (max-width: 540px) {
  .typo-base dt,
  .typo-base dd {
    width: 100%;
  }
}
.typo-base dt {
  font-weight: 900;
  width: 32%;
  padding-left: 80px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 1000px) {
  .typo-base dt {
    padding-left: 0px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 540px) {
  .typo-base dt {
    width: 100%;
    border: none;
    padding: 25px 30px 2px !important;
  }
}
.typo-base dd {
  width: 68%;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 540px) {
  .typo-base dd {
    width: 100%;
    padding: 2px 30px 25px !important;
  }
}

/*  固定ページ
---------------------- */
.page-header__page {
  background: url(../img/bg-hareiro.png) no-repeat;
  background-position: right 80px;
  margin-bottom: 70px;
}
@media screen and (max-width: 760px) {
  .page-header__page {
    background-size: 60%;
    background-position: right center;
  }
}

.page-base {
  margin-top: 10px;
}
.page-base p {
  line-height: 2.25rem;
}
.page-base h1 {
  margin: 40px 0;
}
.page-base h2 {
  font-size: 1.25rem;
  font-weight: 900;
  position: relative;
  padding: 30px 0;
  margin-top: 40px;
  margin-bottom: 50px;
  position: relative;
}
@media screen and (max-width: 540px) {
  .page-base h2 {
    font-size: 1.125rem;
    padding-bottom: 17px;
    margin-bottom: 25px;
  }
}
.page-base h2::after {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(to right, #ffd700 0 20%, #000 20% 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.page-base .page-block-col2 {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  flex-wrap: nowrap;
  width: calc(100% - 100px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1100px) {
  .page-base .page-block-col2 {
    width: 100%;
  }
}
.page-base .f18 p {
  font-size: 1.125rem !important;
  padding-bottom: 10px;
}
@media screen and (max-width: 840px) {
  .page-base .f18 p {
    font-size: 1rem !important;
    text-align: left;
  }
}
@media screen and (max-width: 840px) {
  .page-base .page-block-col2 {
    flex-direction: column-reverse;
    padding-left: 0;
    padding-right: 0;
    gap: 20px;
  }
  .page-base .page-block-col2 .wp-block-column:first-child {
    width: 100%;
    padding-left: 0px;
  }
  .page-base .page-block-col2 .wp-block-column:last-child {
    width: 100%;
    margin-bottom: 20px;
  }
  .page-base .page-block-col2 .wp-block-column {
    width: 100%;
  }
  .page-base dt:first-child {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
}

/*  企業情報
---------------------- */
.access-map {
  display: flex;
  align-items: stretch;
  height: 500px;
  overflow: hidden;
}
@media screen and (max-width: 1240px) {
  .access-map {
    height: auto;
  }
}
@media screen and (max-width: 760px) {
  .access-map {
    height: auto;
  }
}
.access-map img {
  margin-top: 0;
}

h2.page-h2-top {
  padding-top: 0;
}

.map-wrap {
  position: relative;
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 1240px) {
  .map-wrap {
    height: calc(100% - 25px);
  }
}
@media screen and (max-width: 760px) {
  .map-wrap {
    padding-top: 84.375%;
    height: auto;
  }
}

.map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.list-f18 {
  font-size: 1.125rem;
}
@media screen and (max-width: 760px) {
  .list-f18 {
    font-size: 1rem;
  }
}

p.kigyo-p-top0 {
  margin-bottom: 5px;
}

p.kigyo-p-bottom0 {
  margin-top: -25px !important;
  text-align: right;
}
@media screen and (max-width: 760px) {
  p.kigyo-p-bottom0 {
    text-align: left;
  }
}

/*  Single
---------------------- */
.single-base h1 {
  padding: 40px 0;
}
.single-base h2 {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 2.375rem;
  padding: 65px 0 15px;
  margin-top: 25px;
  position: relative;
}
@media screen and (max-width: 760px) {
  .single-base h2 {
    font-size: 1.125rem;
    line-height: 2rem;
    padding: 60px 0 20px;
  }
}
.single-base h2::before {
  position: absolute;
  top: 25px;
  left: -42px;
  content: "#";
  font-family: "Lexend Deca", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  color: #ffd700;
  margin-right: 6px;
}
@media screen and (max-width: 760px) {
  .single-base h2::before {
    top: 20px;
    left: -20px;
    font-size: 2.875rem;
  }
}

.single-title {
  padding-top: 12px;
  padding-left: 40px;
  border-left: 8px solid #ffd700;
}
@media screen and (max-width: 760px) {
  .single-title {
    padding-top: 0px;
    padding-left: 10px;
    border-left: 6px solid #ffd700;
  }
}
@media screen and (max-width: 760px) {
  .single-title__text {
    padding-top: 15px;
    padding-left: 10px;
  }
}
.single-title__text h1 {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: 1.28px;
  line-height: 3.5rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 760px) {
  .single-title__text h1 {
    font-size: 1.5em;
    line-height: 2.25rem;
    padding-bottom: 10px;
  }
}
.single-title .title__en {
  padding-top: 0px;
  padding-bottom: 20px;
}
@media screen and (max-width: 760px) {
  .single-title .title__en {
    font-size: 0.75rem;
    padding-bottom: 10px;
    margin-top: -3px;
  }
}
.single-title .title__en::after {
  margin-left: 8px;
  border-left: solid 12px #ffd700;
  border-right: solid 12px #ffd700;
  width: 30px;
  height: 12px;
  border-radius: 2px;
}
.single-title__meta {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1.28px;
  color: #AAA;
  border-bottom: 8px solid #000;
  padding-bottom: 10px;
  margin-top: 12px;
  margin-bottom: 35px;
  transition: 0.3s;
}
@media screen and (min-width: 760px) and (max-width: 840px) {
  .single-title__meta {
    margin-top: 40px;
  }
}
@media screen and (max-width: 840px) {
  .single-title__meta {
    font-size: 1.125rem;
    border-bottom: 5px solid #000;
    padding-bottom: 4px;
    text-align: right;
    margin-bottom: 20px;
    padding-top: 5px;
  }
}
.single-title__time {
  font-family: "Lexend Deca", sans-serif;
  font-weight: 900;
}

.single-title-layout {
  position: relative;
  /* SPではサイド側だけ表示 */
}
@media screen and (max-width: 840px) {
  .single-title-layout {
    position: static;
  }
}
.single-title-layout .side {
  position: absolute;
  bottom: -15px;
  width: 100%;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 840px) {
  .single-title-layout .side {
    position: static;
  }
}
@media screen and (min-width: 841px) {
  .single-title-layout .side .title-tag {
    display: none;
  }
}
@media screen and (max-width: 840px) {
  .single-title-layout header .title-tag {
    display: none;
  }
}

@media screen and (max-width: 840px) {
  .archive-layout.single-title-layout .main {
    margin-bottom: -25px;
  }
}
ul.title-tag {
  margin: 0;
}

.title-tag {
  display: flex;
  flex-wrap: wrap;
  padding: 9px 0 0;
  margin: 0 10px 0 0;
}
.title-tag li {
  list-style: none;
  margin-right: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 760px) {
  .title-tag li {
    margin-right: 8px;
    margin-bottom: 20px;
  }
}
.title-tag li a {
  font-size: 0.9375rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  line-height: 1.125rem;
  border-radius: 5px;
  background-color: #000;
  color: #FFF;
  padding: 10px 15px;
  text-decoration: none;
  transition: 0.3s ease;
}
@media screen and (max-width: 760px) {
  .title-tag li a {
    font-size: 0.875rem;
    padding: 6px 12px;
  }
}
.title-tag li a:hover {
  opacity: 0.7;
}
.title-tag li a::before {
  content: "#";
  display: inline-block;
  color: #ffd700;
  margin-right: 5px;
}

.single-tag-pc {
  display: block;
}
@media screen and (max-width: 840px) {
  .single-tag-pc {
    display: none;
  }
}

.single-tag-sp {
  display: none;
}
@media screen and (max-width: 840px) {
  .single-tag-sp {
    display: block;
  }
}

.single-thumb {
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}
.single-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  margin-top: 0;
  margin-bottom: 0;
}

.single-index {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0;
  margin-bottom: 50px;
  background-color: #FFF;
}
.single-index .single-index-title {
  position: relative;
  font-weight: 900 !important;
  font-size: 1rem !important;
  display: flex;
  align-items: center;
  margin-bottom: 0 !important;
}
.single-index .single-index-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: #000;
  margin-left: 10px;
}
.single-index li,
.single-index li.ez-toc-heading-level-1,
.single-index li.ez-toc-heading-level-2 {
  list-style: none;
  font-size: 1.0625rem;
  margin-bottom: 12px;
  position: relative;
}
.single-index li::before,
.single-index li.ez-toc-heading-level-1::before,
.single-index li.ez-toc-heading-level-2::before {
  content: "#";
  display: inline-block;
  color: #ffd700;
  font-family: "Lexend Deca", sans-serif;
  font-weight: 700;
  margin-right: 10px;
}
.single-index li a,
.single-index li.ez-toc-heading-level-1 a,
.single-index li.ez-toc-heading-level-2 a {
  text-decoration: underline;
  color: #000000;
  font-weight: 400;
}
.single-index li ul,
.single-index li.ez-toc-heading-level-1 ul,
.single-index li.ez-toc-heading-level-2 ul {
  margin-top: 15px;
  margin-left: 20px;
}
.single-index li ul li,
.single-index li ul li.ez-toc-heading-level-3,
.single-index li.ez-toc-heading-level-1 ul li,
.single-index li.ez-toc-heading-level-1 ul li.ez-toc-heading-level-3,
.single-index li.ez-toc-heading-level-2 ul li,
.single-index li.ez-toc-heading-level-2 ul li.ez-toc-heading-level-3 {
  margin-bottom: 7px;
}
.single-index li ul li::before,
.single-index li ul li.ez-toc-heading-level-3::before,
.single-index li.ez-toc-heading-level-1 ul li::before,
.single-index li.ez-toc-heading-level-1 ul li.ez-toc-heading-level-3::before,
.single-index li.ez-toc-heading-level-2 ul li::before,
.single-index li.ez-toc-heading-level-2 ul li.ez-toc-heading-level-3::before {
  content: "#";
  color: #ffd700;
  margin-right: 6px;
}
.single-index li:has(ul) {
  margin-bottom: 0;
}
.single-index li:has(ul)::before {
  content: none;
}

.single-index {
  border-bottom: solid 2px #000 !important;
}

.lwptoc {
  margin-bottom: 30px !important;
  margin-right: -20px !important;
}
@media (max-width: 840px) {
  .lwptoc {
    margin-right: 0px !important;
  }
}

.lwptoc_i {
  width: calc(100% + 20px);
  margin-left: -20px;
  border: none !important;
  border-bottom: solid 2px #000 !important;
}
@media (max-width: 840px) {
  .lwptoc_i {
    width: 100%;
    margin-left: 0px;
  }
}

.lwptoc_header {
  margin-left: -15px;
  text-align: left !important;
  position: relative;
  font-weight: 900 !important;
  font-size: 1rem !important;
  display: flex;
  align-items: center;
  margin-bottom: 10px !important;
}

.lwptoc_header::after {
  content: "";
  flex: 1;
  height: 2px;
  background: #000;
  margin-left: 10px;
  margin-right: -15px;
}

.lwptoc_toggle {
  display: none;
}

.lwptoc_item_number {
  display: none;
}

.lwptoc_i {
  padding-left: 10px !important;
}
.lwptoc_i a {
  color: #000000 !important;
  font-weight: 400 !important;
  font-size: 1rem;
  transition: 0.3s;
}
.lwptoc_i a:hover {
  opacity: 0.7;
}
.lwptoc_i .lwptoc_item_label {
  text-decoration: underline !important;
  text-underline-offset: 2px;
}

.lwptoc_item_label:hover {
  border-bottom: none;
}

.lwptoc_item a {
  display: inline-block;
  position: relative;
  text-indent: 0;
  line-height: 1.6;
  margin-left: 17px;
}

/* #記号 */
.lwptoc_item::before {
  position: absolute;
  content: "#";
  color: #ffd700;
  font-family: "Lexend Deca", sans-serif;
  font-weight: 700;
  margin-right: 5px;
}

.lwptoc_i a,
.lwptoc_i a:hover,
.lwptoc_i a:focus,
.lwptoc_i a:active {
  text-decoration: none !important;
}

.lwptoc_item_label {
  text-decoration: none !important;
  text-underline-offset: 0px;
}

.lwptoc_i a:hover .lwptoc_item_label {
  text-decoration: none !important;
  border-bottom: none !important;
}

.lwptoc-notInherit .lwptoc_i div.lwptoc_items a:hover,
.lwptoc-notInherit .lwptoc_i div a:hover {
  border-bottom: none !important;
  text-decoration: none !important;
}

.single-author {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  border-radius: 8px;
  padding: 42px 20px;
  border: solid 2px #000;
  box-shadow: 3px 3px 0px #ffd700;
}
@media (max-width: 760px) {
  .single-author {
    border: solid 3px #000;
  }
}
@media (max-width: 540px) {
  .single-author {
    gap: 30px;
    border-radius: 4px;
    padding: 30px 30px;
  }
}
@media (max-width: 460px) {
  .single-author {
    padding-right: 0;
  }
}
.single-author__img {
  flex: 0 0 auto;
  width: 65px;
  height: auto;
}
@media (max-width: 760px) {
  .single-author__img {
    width: 65px;
  }
}
@media (max-width: 540px) {
  .single-author__img {
    width: 82px;
  }
}
@media (max-width: 460px) {
  .single-author__img {
    width: 55px;
  }
}
.single-author__img img {
  display: block;
  max-width: 100%;
  height: auto;
}
.single-author__text-title {
  margin-top: -8px;
  font-size: 1rem;
  font-weight: 900;
}
@media (max-width: 540px) {
  .single-author__text-title {
    margin-top: 0px;
  }
}
.single-author__desc {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2rem;
  margin-top: -45px;
  margin-left: 85px;
}
@media (max-width: 840px) {
  .single-author__desc {
    margin-top: -35px;
    margin-left: 0;
    padding-left: 85px;
    line-height: 1.5rem;
  }
}
@media (max-width: 540px) {
  .single-author__desc {
    font-size: 1rem;
    margin-top: -8px;
    padding-left: 0px;
  }
}
@media (max-width: 460px) {
  .single-author__desc {
    padding-right: 30px;
  }
}
.single-author a {
  font-weight: 900;
  color: #0006ff;
  text-decoration: underline;
}
@media (max-width: 760px) {
  .single-author a {
    font-weight: 400;
  }
}
.single-author a:hover {
  opacity: 0.7;
  color: #007cff;
}

@media (max-width: 768px) {
  .single-author__text {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }
  .single-author__text-title {
    margin-right: 8px;
  }
  .single-author__desc {
    flex-basis: 100%;
    margin-left: 0;
  }
}
.related {
  margin-top: 100px;
}

.related-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 35px;
}

.related-title {
  margin: 0;
  font-weight: 900;
}

.related-title-en {
  margin: 0;
  font-size: 0.9em;
  font-family: "Lexend Deca", sans-serif;
  font-weight: 900;
  letter-spacing: 2px;
}

@media (max-width: 760px) {
  .sekou.related-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    margin-bottom: 0;
  }
  .sekou .related-title {
    font-size: 1.25rem;
    margin-top: 15px;
    position: relative;
    margin-bottom: 0px;
  }
  .sekou .related-title::after {
    content: "";
    display: block;
    width: calc(100vw - 60px);
    height: 3px;
    background-color: #ffd700;
    margin-top: 10px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .sekou .related-title-en {
    font-size: 0.825rem !important;
    margin-top: 5px !important;
  }
}
/*  アーカイブ
---------------------- */
body.archive,
body.tag,
body.search,
body.notfound {
  background-image: url(../img/bg-back.jpg);
  background-repeat: repeat-x;
}

.page-header {
  margin-left: -10px;
  padding-left: 10px;
}

.page-header__topics {
  background: url(../img/bg-logo-topics.svg) no-repeat;
  background-position: right 20px;
}
@media screen and (max-width: 760px) {
  .page-header__topics {
    background-size: auto 50px;
    background-position: right 110px;
  }
}

/*.page-header__works {
  position: relative;
  background: none;
}

.page-header__works::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/bg-logo-works.svg) no-repeat right 20px;
  filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.05));
  z-index: 0;

  @media screen and (max-width: 760px) {
    background-size: auto 50px;
    background-position: right 110px;
  }
}

.page-header__works > * {
  position: relative;
  z-index: 1;
} */
.page-header__works {
  background: url(../img/bg-logo-works.svg) no-repeat;
  background-position: right 20px;
}
@media screen and (max-width: 760px) {
  .page-header__works {
    background-size: auto 50px;
    background-position: right 110px;
  }
}

.page-header__interview {
  background: url(../img/bg-logo-interview.svg) no-repeat;
  background-position: right 20px;
}
@media screen and (max-width: 760px) {
  .page-header__interview {
    background-size: auto 50px;
    background-position: right 110px;
  }
}

.page-header__tag {
  background: url(../img/bg-logo-tag.svg) no-repeat;
  background-position: right 20px;
}
@media screen and (max-width: 760px) {
  .page-header__tag {
    background-size: auto 50px;
    background-position: right 110px;
  }
}

.page-header__service {
  background: url(../img/bg-logo-service.svg) no-repeat;
  background-position: right 20px;
}
@media screen and (max-width: 760px) {
  .page-header__service {
    background-size: auto 50px;
    background-position: right 110px;
  }
}

.page-header__search {
  background: url(../img/bg-logo-search.svg) no-repeat;
  background-position: right 20px;
}
@media screen and (max-width: 760px) {
  .page-header__search {
    background-size: auto 50px;
    background-position: right 110px;
  }
}

.page-header__404 {
  background: url(../img/bg-logo-404.svg) no-repeat;
  background-position: right 20px;
}
@media screen and (max-width: 760px) {
  .page-header__404 {
    background-size: auto 50px;
    background-position: right 110px;
  }
}

.post-no-anime {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.post-no-anime.show {
  opacity: 1;
}

a {
  transition: opacity 0.3s ease;
  color: #000000;
}

a:hover {
  color: #000000;
  transition: opacity 0.3s ease;
  opacity: 0.7;
}

/*  求人情報
---------------------- */
.job-photo img {
  margin-bottom: 0;
  margin-top: 0;
}

h2.job-h2-title {
  background: url(../img/job-chack.svg) no-repeat;
  background-position: 15px calc(100% - 13px);
  background-size: 25px;
  padding-left: 50px;
  padding-bottom: 10px;
  margin-bottom: 25px;
}
h2.job-h2-title::after {
  background: linear-gradient(to right, #ffd700 0 20%, #ffd700 20% 100%);
}
@media screen and (max-width: 540px) {
  h2.job-h2-title {
    background-position: 5px calc(100% - 12px);
    background-size: 23px;
    font-size: 1.125rem;
    padding-left: 35px;
    padding-bottom: 12px;
  }
  h2.job-h2-title::after {
    height: 6px;
  }
}

dl.job-info {
  display: flex;
  align-items: flex-end;
  margin-top: 0;
  margin-bottom: 90px;
  padding-top: 0;
}
@media screen and (max-width: 540px) {
  dl.job-info {
    align-items: flex-start;
    margin-top: -15px;
  }
}
dl.job-info dt, dl.job-info dd {
  padding-bottom: 0px;
  width: auto;
}
@media screen and (max-width: 540px) {
  dl.job-info dt, dl.job-info dd {
    padding-top: 0 !important;
    padding-bottom: 0px !important;
    margin-top: 25px;
  }
}
dl.job-info dt {
  background: url(../img/job-maru.svg) no-repeat;
  background-position: 12px 31px;
  background-size: 24px;
  padding-left: 45px;
  width: 20%;
  border: none;
}
@media screen and (max-width: 840px) {
  dl.job-info dt:first-child {
    padding-top: 25px !important;
    margin-top: auto !important;
  }
}
@media screen and (max-width: 760px) {
  dl.job-info dt {
    width: 27%;
  }
}
@media screen and (max-width: 540px) {
  dl.job-info dt {
    width: 100px;
    padding-top: 25px !important;
    padding-right: 0 !important;
    background-position: 0px calc(100% - 5px);
    line-height: 1.825rem;
  }
}
dl.job-info .job-title {
  position: relative;
  margin-left: -45px;
  padding-left: 45px;
  padding-bottom: 2px;
}
@media screen and (max-width: 540px) {
  dl.job-info .job-title {
    margin-left: -30px;
    padding-left: 30px;
  }
}
dl.job-info .job-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #ffd700;
}
dl.job-info dd {
  border: none;
  padding-left: 102px;
  width: 80%;
}
@media screen and (max-width: 840px) {
  dl.job-info dd {
    padding-left: 30px;
  }
}
@media screen and (max-width: 760px) {
  dl.job-info dd {
    width: 73%;
    padding-left: 5px;
  }
}
@media screen and (max-width: 540px) {
  dl.job-info dd {
    width: calc(100% - 100px);
    padding-right: 0 !important;
    padding-top: 25px !important;
    line-height: 1.825rem;
    text-align: center;
  }
}

.job-btn {
  margin-top: 60px;
}
.job-btn a {
  font-weight: 700 !important;
  color: #000000;
  transition: 0.3s ease;
}
.job-btn .wp-block-button {
  width: 250px;
}
.job-btn .wp-block-button__link {
  border: solid 1px #000;
}

/* 施工事例（新着工事）
---------------------- */
.sekou-menu {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 760px) {
  .sekou-menu {
    margin-bottom: 0px;
  }
}

@media screen and (max-width: 760px) {
  .sekou-menu-item {
    margin-bottom: 20px;
  }
}

.sekou-menu-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  height: 50px;
  width: 100%;
  padding: 0 20px 0 0;
  background: url(../img/arrow-right.svg) #ffd700 no-repeat;
  background-position: calc(100% - 12px) center;
  color: #000;
  font-size: 1.125rem;
  font-weight: 900;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s ease;
}
@media screen and (max-width: 640px) {
  .sekou-menu-item a {
    font-size: 1rem;
  }
}

.sekou-menu-item a:hover {
  background: url(../img/arrow-right-wh-bk.svg) #000 no-repeat;
  background-position: calc(100% - 12px) center;
  color: #ffd700;
  opacity: 1;
}

@media screen and (max-width: 760px) {
  .sekou-menu.main.post-lists {
    display: flex !important;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }
  .sekou-menu.main.post-lists .sekou-menu-item {
    flex: 0 1 48%;
    max-width: 48%;
  }
}
@media screen and (max-width: 540px) {
  .sekou-menu.main.post-lists {
    gap: 0px;
    margin-bottom: 20px;
  }
  .sekou-menu-wrap.archive-layout .sekou-menu-item.post-1col {
    flex: 1 1 80%;
    max-width: 80%;
  }
}
@media screen and (max-width: 960px) {
  .sekou-menu-wrap.archive-layout {
    display: block;
    width: 100%;
  }
  .sekou-menu.main.post-lists {
    width: 100%;
    max-width: 100%;
  }
}
.sekou-menu-wrap.archive-layout .side {
  margin: 0;
  padding: 0;
}

.post-list__item.sticky {
  position: relative;
  z-index: 0;
}

.post-list__item.sticky img {
  display: block;
  max-width: 100%;
  height: auto;
}

.post-list__item.sticky::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -90px;
  right: -17px;
  bottom: auto;
  width: 260px;
  height: 125px;
  background: url("../img/ico-check.svg") no-repeat center/contain;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 2;
}
@media screen and (max-width: 1100px) {
  .post-list__item.sticky::before {
    top: -30px;
    left: -20%;
    width: 150px;
  }
}
@media screen and (max-width: 940px) {
  .post-list__item.sticky::before {
    top: -40px;
    left: -20%;
    width: 100px;
  }
}
@media screen and (max-width: 760px) {
  .post-list__item.sticky::before {
    top: -15px;
    left: -90px;
    width: 260px;
  }
}
@media screen and (max-width: 400px) {
  .post-list__item.sticky::before {
    top: -30px;
    left: -55px;
    width: 150px;
  }
}

.grid-layout .post-list:nth-child(1) .post-list__img.sticky::before {
  left: -90px;
  width: 260px;
}
@media screen and (max-width: 1100px) {
  .grid-layout .post-list:nth-child(1) .post-list__img.sticky::before {
    top: -30px;
    left: -90px;
    width: 260px;
  }
}
@media screen and (max-width: 940px) {
  .grid-layout .post-list:nth-child(1) .post-list__img.sticky::before {
    top: -10px;
    left: -90px;
  }
}
@media screen and (max-width: 840px) {
  .grid-layout .post-list:nth-child(1) .post-list__img.sticky::before {
    top: -15px;
    left: -90px;
  }
}
@media screen and (max-width: 400px) {
  .grid-layout .post-list:nth-child(1) .post-list__img.sticky::before {
    top: -30px;
    left: -55px;
    width: 150px;
  }
}

@media screen and (min-width: 841px) and (max-width: 940px) {
  .grid-layout .post-list:not(:nth-child(1)) .post-list__img.sticky::before {
    left: -40px;
  }
}
@media screen and (min-width: 761px) and (max-width: 840px) {
  .grid-layout .post-list:not(:nth-child(1)) .post-list__img.sticky::before {
    top: -40px;
    left: -40px;
    width: 100px;
  }
}
@media screen and (max-width: 760px) {
  .grid-layout .post-list:not(:nth-child(1)) .post-list__img.sticky::before {
    top: -15px;
    left: -90px;
    width: 260px;
  }
}
@media screen and (max-width: 400px) {
  .grid-layout .post-list:not(:nth-child(1)) .post-list__img.sticky::before {
    top: -30px;
    left: -55px;
    width: 150px;
  }
}

@media screen and (max-width: 840px) {
  .archive .post-list__item.sticky::before {
    top: -15px;
    left: -25%;
    width: 260px;
  }
}
@media screen and (max-width: 760px) {
  .archive .post-list__item.sticky::before {
    top: -15px;
    left: -90px;
    width: 260px;
  }
}
@media screen and (max-width: 400px) {
  .archive .post-list__item.sticky::before {
    top: -30px;
    left: -55px;
    width: 150px;
  }
}

.post-list__img.custom-post-img.sticky::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -90px;
  right: -17px;
  bottom: auto;
  width: 260px;
  height: 125px;
  background: url("../img/ico-check.svg") no-repeat center/contain;
  pointer-events: none;
  z-index: 2;
}
@media screen and (max-width: 1100px) {
  .post-list__img.custom-post-img.sticky::before {
    top: -30px;
    left: -20%;
    width: 150px;
  }
}
@media screen and (max-width: 940px) {
  .post-list__img.custom-post-img.sticky::before {
    top: -40px;
    left: -20%;
    width: 100px;
  }
}
@media screen and (max-width: 840px) {
  .post-list__img.custom-post-img.sticky::before {
    top: -15px;
    left: -90px;
    width: 260px;
  }
}
@media screen and (max-width: 400px) {
  .post-list__img.custom-post-img.sticky::before {
    top: -30px;
    left: -55px;
    width: 150px;
  }
}

/* 目次
---------------------- */
:target {
  scroll-margin-top: 120px;
}/*# sourceMappingURL=style.css.map */