/*
Theme Name:cs-theme
Theme URI:https://cs-sa.jp/
Description:CSのテーマです。
Version:1.0
Author:FunkyCruise
*/

@charset "utf-8";

/*-----------------------------------
css変数
-----------------------------------*/
/* 修正チェック中(スプレッドシートNo.3)↓↓ */
:root {
  --brand-primary: #f7f7f7;
  --secondary-color: #3b3a3a;
  --font-color: #3b3a3a;
  --title-font-en: "Noto Sans JP", sans-serif;
  --font-ja: "Noto Sans JP", sans-serif;
  --title-font-ja: "Noto Sans JP", sans-serif;
}

/* 修正前↓ */
/* :root {
    --brand-primary: #F7F7F7;
    --secondary-color: #3B3A3A;
    --font-color: #3B3A3A;
    --title-font-en: "Montserrat", sans-serif;
    --font-ja: "Noto Sans JP", sans-serif;
    --title-font-ja: "Zen Old Mincho", sans-serif;
} */

/*-----------------------------------
general
-----------------------------------*/
html {
  scroll-behavior: auto !important;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--font-color);
  word-break: break-all;
  touch-action: manipulation;
  scroll-snap-type: none;
  font-family: "Yu Gothic", "游ゴシック", "游ゴシック体",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro",
    "ヒラギノ角ゴ Pro";
}
p,
span,
li {
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.02rem;
}
a {
  color: var(--font-color);
  letter-spacing: 0.02rem;
  text-decoration: none;
  transition: all 0.5s;
}
a:hover {
  opacity: 0.6;
}
li {
  list-style: none;
}
img {
  vertical-align: bottom;
}
:focus {
  outline: none;
}
select,
option {
  color: var(--font-color);
}
.display-tab {
  display: none;
}
.display-tab900 {
  display: none;
}
.display-sp {
  display: none;
}

/* reCAPTCHAバッジを非表示にする */
.grecaptcha-badge {
  visibility: hidden;
}

@media only screen and (max-width: 1024px) {
  .display-tab {
    display: block;
  }
}

@media only screen and (max-width: 900px) {
  .display-tab900 {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
  .display-pc {
    display: none;
  }
  .display-sp {
    display: block;
  }
}

/*-----------------------------------
Move
-----------------------------------*/
/* Loding画面 */
.c-loader-bg {
  position: fixed;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  z-index: 999;
  text-align: center;
  background: var(--brand-primary);
}
.splash_logo {
  opacity: 0;
}
.splash_logo img {
  width: 180px;
}

/* ページ遷移 */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

body {
  animation: fadeIn 2.5s forwards;
}

@media screen and (max-width: 767px) {
  .splash_logo img {
    width: 120px;
  }
}

/*-----------------------------------
header
-----------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 145px;
  background: #fff;
  padding-top: 30px;
  box-sizing: border-box;
}
.header-logo {
  width: 120px;
  margin: 0 auto 24px;
}
#menu-global {
  display: flex;
  justify-content: center;
  align-items: center;
}
#menu-global li {
  line-height: 1.3;
  text-align: center;
}
#menu-global li:last-child {
  margin-right: 0;
}
#menu-global li span {
  display: block;
  font-size: 12px;
  font-weight: normal;
  margin-bottom: 3px;
}
#menu-global li a {
  position: relative;
  display: block;
  font-family: var(--title-font-en);
  font-weight: 600;
  letter-spacing: 0.03rem;
  padding: 0 20px 20px 20px;
}
#menu-global li a::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: var(--font-color);
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: center top;
}
#menu-global li a:hover::after {
  transform: scale(1, 1);
}
#menu-global li.has-child ul li a::after {
  display: none;
}

/*---メガメニュー---*/
#menu-global li.has-child img {
  transition: all 0.5s;
  vertical-align: bottom;
}
#menu-global li.has-child img:hover {
  transform: scale(1.2);
}
#menu-global li.has-child dt {
  overflow: hidden;
}
#menu-global li.has-child dd {
  font-family: var(--font-ja);
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
}
#menu-global li.has-child ul {
  position: absolute;
  left: 5%;
  top: 135px;
  z-index: 100;
  display: none;
  width: 90%;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--brand-primary);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}
#menu-global li.has-child:hover > ul {
  display: flex;
}
#menu-global li.has-child ul li {
  width: 20%;
  margin-right: 0;
}
#menu-global li.has-child ul li a {
  padding: 30px 0;
}

/*---/メガメニュー---*/
.reserve-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--font-color);
  padding: 10px 15px;
  box-sizing: border-box;
}
.reserve-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 93%;
  height: 83%;
  border: 1px solid #fff;
}
.reserve-btn p {
  font-size: 12px;
  color: #fff;
  margin-right: 10px;
}
.reserve-btn img {
  width: 30px;
}

@media screen and (max-width: 1024px) {
  header {
    display: flex;
    align-items: center;
    height: 80px;
    padding-top: 0;
  }
  .header-logo {
    margin-bottom: 0;
  }
  /* ハンバーガーメニュー */
  .hamburger {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 200;
    width: 60px;
    height: 60px;
    border-radius: 0 0 0 15px;
  }
  .hamburger_border {
    position: absolute;
    left: 15px;
    width: 30px;
    height: 2px;
    background-color: var(--font-color);
    border-radius: 50px;
    transition: all 0.6s;
  }
  .hamburger_border_top {
    top: 18px;
  }
  .hamburger_border_center {
    top: 28px;
  }
  .hamburger_border_bottom {
    top: 38px;
    width: 20px;
  }
  /* /ハンバーガーメニュー */

  #header-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: var(--brand-primary);
    border-radius: 0;
    transition: all 0.3s;
    overflow-y: auto;
    display: none;
    opacity: 0;
    margin: 0;
  }
  /* 表示された時用のCSS */
  .nav-open #header-menu {
    display: block;
    height: 100svh;
    opacity: 1;
    z-index: 999;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 30px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 30px;
    width: 30px;
  }
  #menu-global {
    display: block;
    width: 80%;
    margin: 80px auto;
  }
  #menu-global li {
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
    margin: 0 0 30px;
  }
  #menu-global li a {
    padding-bottom: 0;
  }
  #menu-global li a:hover::after {
    transform: scale(0, 0);
  }
  .reserve-btn {
    position: relative;
    width: 400px;
    margin: 0 auto;
  }
  .reserve-btn::before {
    width: 97%;
  }

  /*---メガメニュー---*/
  #menu-global li.has-child ul {
    position: relative;
    left: 0;
    top: 20px;
    width: 100%;
    visibility: visible;
    opacity: 1;
    display: none;
    transition: none;
  }
  #menu-global li.has-child:hover > ul {
    display: none;
  }
  #menu-global li.has-child ul li {
    width: 80%;
    text-align: left;
    padding: 0;
    margin: 0 auto;
  }
  #menu-global li.has-child ul li dl {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #menu-global li.has-child ul li dt {
    width: 30%;
    margin: 0;
  }
  #menu-global li.has-child ul li dd {
    width: 64%;
    margin-top: 0;
  }
  /*---/メガメニュー---*/
}

@media screen and (max-width: 900px) {
  #menu-global {
    margin: 60px auto;
  }
}

@media screen and (max-width: 767px) {
  header {
    height: 60px;
  }
  .header-logo {
    width: 80px;
  }
  .hamburger_border_center {
    top: 26px;
  }
  .hamburger_border_bottom {
    top: 34px;
  }
  #menu-global li {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  #menu-global li.has-child ul li {
    width: 85%;
  }
  #menu-global li.has-child ul li a {
    padding: 20px 0;
  }
  #menu-global li.has-child ul li dt {
    width: 40%;
  }
  #menu-global li.has-child ul li dd {
    width: 55%;
    font-size: 13px;
  }
  .reserve-btn {
    width: 90%;
    margin-bottom: 60px;
  }
}

/*-----------------------------------
footer
-----------------------------------*/
footer {
  position: relative;
  background: #777777;
  padding: 100px 0 120px;
}
.footer-inner {
  max-width: 1200px;
  display: flex;
  padding: 0 2% 0 25%;
}
#footer_pagetop {
  position: absolute;
  top: 30px;
  right: 5%;
}
#footer_pagetop img {
  width: 45px;
}
.footer-top {
  position: absolute;
  top: -80px;
  left: 0;
  z-index: 100;
  max-width: 400px;
  width: 20%;
}
.footer-logo-area {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--font-color);
  aspect-ratio: 1 / 1;
}
.footer-logo {
  width: 120px;
}
.copyright {
  display: block;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.02rem;
  color: #fff;
  text-align: center;
  margin-top: 1rem;
}
.footer-sns.display-tab,
.footer-recruit-banner.display-tab,
.footer-sns.display-tab900,
.footer-recruit-banner.display-tab900,
.copyright.display-tab900 {
  display: none;
}
#footer-menu {
  margin-bottom: 40px;
}
.footer-nav {
  width: 60%;
  border-right: 1px solid #fff;
}
#menu-footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 10px;
  margin-bottom: 20px;
}
#menu-footer li {
  line-height: 1;
}
.footer-nav-bottom {
  display: flex;
}
.footer-nav-bottom li:first-child {
  margin-right: 85px;
}
#menu-footer a,
.footer-nav-bottom a {
  display: block;
  font-family: var(--title-font-en);
  font-size: 14px;
  color: #fff;
}
#menu-footer .footer-nav-ja a {
  font-family: var(--font-ja);
  font-size: 13px;
}
.sub-menu {
  margin-top: 8px;
}
.sub-menu li {
  margin-bottom: 10px;
}
#menu-footer li#menu-item-50 #menu-footer .sub-menu a {
  font-family: var(--font-ja);
}
footer .reserve-btn {
  position: relative;
  width: 200px;
  height: 70px;
  background: var(--font-color);
}
footer .reserve-btn::before {
  width: 95%;
}
.footer-secondly {
  width: 40%;
  padding-left: 5%;
  box-sizing: border-box;
}
.footer-sns {
  display: flex;
  gap: 20px;
}
.footer-sns img {
  width: 25px;
  height: 25px;
}
.footer-recruit-banner {
  max-width: 350px;
  width: 100%;
  display: block;
  margin-top: 30px;
}

@media screen and (max-width: 1080px) {
  .footer-inner {
    padding-left: 23%;
  }
  .footer-nav {
    width: 65%;
  }
  .footer-secondly {
    width: 35%;
  }
}

@media screen and (max-width: 1024px) {
  .footer-inner {
    display: block;
    padding: 0 3% 0 35%;
  }
  .footer-top {
    width: 30%;
  }
  .footer-sns.display-tab,
  .footer-recruit-banner.display-tab {
    display: block;
  }
  .footer-sns,
  .footer-recruit-banner {
    display: none;
  }
  .footer-sns.display-tab {
    margin: 30px 0 0 10%;
  }
  .footer-recruit-banner {
    margin-left: 10%;
  }
  .footer-nav {
    width: 100%;
    border-right: none;
  }
  footer .reserve-btn {
    margin: 0;
  }
  .footer-secondly {
    width: 100%;
  }
}

@media screen and (max-width: 900px) {
  footer {
    padding: 25% 0 30px;
  }
  .footer-inner {
    width: 80%;
    padding: 0;
    margin: 0 auto;
  }
  footer .reserve-btn {
    width: 300px;
    margin: 0 auto;
  }
  .footer-sns.display-tab,
  .footer-recruit-banner.display-tab,
  .copyright {
    display: none;
  }
  .footer-sns.display-tab900,
  .footer-recruit-banner.display-tab900,
  .copyright.display-tab900 {
    display: block;
  }
  .footer-sns.display-tab900 {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  .footer-recruit-banner.display-tab900 {
    margin: 30px auto 0;
  }
  .copyright.display-tab900 {
    margin-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  footer {
    padding: 35% 0 30px;
  }
  #footer_pagetop img {
    width: 35px;
  }
  .footer-top {
    width: 50%;
  }
  .footer-logo {
    width: 80px;
  }
  #menu-footer {
    display: block;
    margin-bottom: 10px;
  }
  #menu-footer li {
    margin-bottom: 10px;
  }
  #menu-footer a,
  .footer-nav-bottom a {
    margin-bottom: 8px;
  }
  .sub-menu {
    display: flex;
  }
  #menu-footer li#menu-item-204 .sub-menu li {
    margin-right: 10px;
  }
  #menu-footer li#menu-item-50 .sub-menu {
    flex-wrap: wrap;
  }
  #menu-footer li#menu-item-50 .sub-menu li {
    width: 50%;
    margin-bottom: 0;
  }
  #menu-footer li#menu-item-50 .sub-menu li a {
    font-size: 12px;
  }
  #menu-footer li.footer-about .sub-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 10px;
  }
  #menu-footer li.footer-about .sub-menu li {
    margin-bottom: 5px;
  }
  #menu-footer li.footer-about .sub-menu li a {
    font-size: 12px;
  }
  .footer-nav-bottom li:first-child {
    margin-right: 0;
  }
  .footer-nav-bottom li {
    width: 50%;
  }
  footer .reserve-btn {
    width: 100%;
  }
}

/*-----------------------------------
keyvisual
-----------------------------------*/
#keyvisual {
  position: relative;
  width: 85%;
  height: calc(100svh - 145px);
  margin: 145px auto 0;
}
.slick-slider {
  height: 100%;
}
.slick-list,
.slick-track,
.slick-slide,
.slick-slide div,
.slick-slide div li {
  height: 100%;
}
.slick-slide picture {
  display: block;
  height: 100%;
}
.slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#keyvisual h1 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  font-family: var(--title-font-en);
  font-size: 40px;
  font-weight: 500;
  text-shadow: 2px 2px 2px rgba(255, 255, 255, 0.6);
}
#keyvisual h1 p {
  font-family: var(--font-ja);
  font-size: 20px;
  line-height: 1.8;
  margin-top: 16px;
}

@media screen and (max-width: 1024px) {
  #keyvisual {
    height: calc(100svh - 80px);
    margin-top: 80px;
  }
  .slick-slider {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  #keyvisual {
    width: 90%;
    height: calc(100svh - 60px);
    margin-top: 60px;
  }
  #keyvisual h1 {
    bottom: 5%;
  }
  #keyvisual h1 p {
    font-size: 16px;
    line-height: 1.4;
  }
}

/*-----------------------------------
HOME-general
-----------------------------------*/
.sect-title {
  text-align: center;
  margin-bottom: 40px;
}
.sect-title h2 {
  font-family: var(--title-font-en);
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 10px;
}
.sect-title span {
  position: relative;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
}
.sect-heading {
  position: absolute;
  top: -20px;
  left: -3%;
  z-index: -1;
  font-family: "Karla", sans-serif;
  font-size: 140px;
  font-weight: 500;
  letter-spacing: -0.2rem;
  color: #f1f1f1;
}
.sect-title-en {
  font-family: var(--title-font-en);
  font-size: 35px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}
.sect-wrapper {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
.link-btn {
  position: relative;
  display: block;
  width: 300px;
  font-family: var(--title-font-en);
  letter-spacing: 0.04rem;
  color: #fff;
  background: var(--font-color);
  text-align: center;
  padding: 20px;
  margin: 0 auto;
  box-sizing: border-box;
}
.link-btn::after {
  content: "";
  display: block;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 13px;
  background: url("img/link-btn-arrow.png") no-repeat;
  background-size: contain;
  transition: all 0.6s;
}
.link-btn:hover::after {
  right: 8px;
}

@media screen and (max-width: 900px) {
  .link-btn {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .sect-title {
    margin-bottom: 30px;
  }
  .sect-title h2 {
    font-size: 24px;
    margin-bottom: 5px;
  }
  .sect-title span {
    font-size: 16px;
  }
  .sect-title-en {
    font-size: 26px;
  }
  .link-btn {
    width: 100%;
    padding: 15px;
  }
}

/*-----------------------------------
Search Form(サロン検索フォーム)
-----------------------------------*/
#sect-salon-search {
  background: var(--brand-primary);
  padding: 80px 0;
}
#salon-search-form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: 0 auto;
}
.search-filter_block {
  width: 32%;
}
.search-filter_heading {
  color: #fff;
  background: #8c8c8b;
  text-align: center;
  padding: 5px;
}
.search-filter_heading span {
  font-size: 14px;
}
.select-wrapper {
  position: relative;
}
.select-wrapper::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 12px;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 8px solid #555;
  border-bottom: 0;
  pointer-events: none;
}
.search-filter_select {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  border: 1px solid #8c8c8b;
  padding: 8px;
  appearance: none;
  cursor: pointer;
}
.select-wrapper option {
  text-align: center;
}
.parent-area {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: #e1e1e1;
}
.arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--font-color);
  margin-left: 5px;
}
#salon-search-form .link-btn {
  width: 250px;
  border: none;
  background: var(--font-color);
  margin: 0;
  cursor: pointer;
}
#salon-search-form .link-btn a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  letter-spacing: 0.06rem;
  color: #fff;
  padding: 20px;
}
#salon-search-form .link-btn:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1024px) {
  #salon-search-form {
    width: 90%;
  }
  .search-filter_block {
    width: 33%;
  }
  #salon-search-form .link-btn {
    width: calc(100% - 70%);
    padding: 25px 0;
  }
}

@media screen and (max-width: 900px) {
  #salon-search-form {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  #sect-salon-search {
    padding: 60px 0;
  }
  #salon-search-form {
    display: block;
  }
  .search-filter_block {
    width: 100%;
    margin-bottom: 20px;
  }
  #salon-search-form .link-btn {
    width: 100%;
    padding: 15px 0;
  }
}

/*-----------------------------------
HOME-About
-----------------------------------*/
#sect-about {
  padding: 180px 0 100px;
}
#sect-about .sect-wrapper {
  position: relative;
  text-align: center;
}
#sect-about .sect-heading {
  top: -100px;
  left: 5%;
  z-index: -1;
}
.message {
  position: relative;
  display: inline-block;
  font-family: var(--title-font-ja);
  font-size: 32px;
  opacity: 0;
  transform: translateY(30px);
  margin-bottom: 30px;
}
.message.fadeInBottom {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.message::before,
.message::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.message::before {
  top: -15px;
  left: -40px;
  background: url(img/title-brackets-l.png) no-repeat;
  background-size: contain;
}
.message.fadeInBottom:before {
  opacity: 1;
  transform: scaleX(1);
}
.message::after {
  bottom: -15px;
  right: -50px;
  background: url(img/title-brackets-r.png) no-repeat;
  background-size: contain;
}
.message.fadeInBottom:after {
  opacity: 1;
  transform: scaleX(1);
}
#sect-about p {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 60px;
}
.top-about-img {
  width: 100%;
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  #sect-about {
    padding: 120px 0 60px;
  }
  #sect-about .sect-heading {
    top: -60px;
    font-size: 80px;
  }
  .message {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .message::before,
  .message::after {
    width: 20px;
    height: 20px;
  }
  .message::before {
    top: -12px;
    left: -8%;
  }
  .message::after {
    bottom: -12px;
    right: -8%;
  }
  #sect-about p {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .top-about-img {
    margin-top: 60px;
  }
}

/*-----------------------------------
HOME-Business
-----------------------------------*/
#sect-business {
  margin-bottom: 240px;
}
.subTitle-ja {
  width: 90%;
  font-size: 20px;
  text-align: center;
  margin: 0 auto 60px;
}
.business-list li {
  position: relative;
  margin-bottom: 160px;
}
.business-list li:last-child {
  margin-bottom: 0;
}
.business-list li::after {
  content: "";
  position: absolute;
  bottom: -100px;
  z-index: -100;
  width: 40%;
  height: 240px;
}
.business-list li:first-child::after {
  right: 0;
  background: url("img/business-list-bg01.webp");
  background-size: cover;
}
.no-webp .business-list li:first-child::after {
  background: url("img/business-list-bg01.jpg");
  background-size: cover;
}
.business-list li:nth-child(2)::after {
  left: 0;
  background: url("img/business-list-bg02.webp");
  background-size: cover;
}
.no-webp .business-list li:nth-child(2)::after {
  background: url("img/business-list-bg02.jpg");
  background-size: cover;
}
.business-list li:last-child::after {
  right: 0;
  background: url("img/business-list-bg03.webp");
  background-size: cover;
}
.no-webp .business-list li:last-child::after {
  right: 0;
  background: url("img/business-list-bg03.jpg");
  background-size: cover;
}
.business-list li .sect-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.business-list li:nth-child(2) .sect-wrapper {
  flex-direction: row-reverse;
}
.business-list-content {
  width: 48%;
  border-left: 2px solid var(--font-color);
  padding: 30px;
  box-sizing: border-box;
}
.business-list-content h4 {
  font-family: var(--title-font-en);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 10px;
}
.business-list-content h4 span {
  display: inline-block;
  font-family: var(--font-ja);
  font-size: 18px;
  margin-left: 1rem;
}
.business-list-content p {
  line-height: 1.8;
  margin-bottom: 40px;
}
.business-list picture {
  width: 48%;
}
.business-list-content .link-btn {
  margin: 0 0 0 auto;
}

@media screen and (max-width: 900px) {
  #sect-business {
    margin-bottom: 160px;
  }
  .business-list-content {
    padding: 20px 20px 20px 30px;
  }
  .business-list li {
    margin-bottom: 80px;
  }
  .business-list li::after {
    bottom: -10px;
    height: 200px;
  }
  .business-list-content .link-btn {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .subTitle-ja {
    font-size: 16px;
  }
  .business-list {
    margin-top: 20px;
  }
  .business-list li {
    margin-bottom: 100px;
  }
  .business-list li .sect-wrapper {
    display: block;
  }
  .business-list-content {
    width: 100%;
    padding: 0 0 20px 20px;
    margin-bottom: 30px;
  }
  .business-list img {
    width: 95%;
  }
  .business-list-content h4 {
    font-size: 28px;
    margin-bottom: 0;
  }
  .business-list-content h4 span {
    font-size: 14px;
    margin-left: 10px;
  }
  .business-list-content p {
    margin-bottom: 30px;
  }
  .business-list-content .link-btn {
    margin: 0 auto;
  }
  .business-list li::after {
    bottom: -40px;
    height: auto;
    padding-top: 50%;
  }
}

/*-----------------------------------
HOME-Style
-----------------------------------*/
#sect-style {
  position: relative;
  background: var(--brand-primary);
  padding: 140px 0 120px;
}
#sect-style .sect-heading {
  top: -100px;
  left: 10%;
  z-index: 0;
  font-size: 130px;
}
.style-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 15px;
  width: 80%;
  margin: 0 auto 80px;
}
.style-list li {
  position: relative;
}
.style-list li::before {
  position: absolute;
  top: 40px;
  transform: rotate(-90deg);
  font-family: var(--title-font-en);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08rem;
}
.style-list li:first-child::before {
  content: "#Hair";
  left: -46px;
}
.style-list li:nth-child(2)::before {
  content: "#Eye";
  right: -45px;
}
.style-list li:last-child::before {
  content: "#Nail";
  right: -48px;
}
.style-list li a {
  display: block;
  height: 100%;
}
.box_01 {
  grid-row: 1 / 3;
}
.style-list li:first-child h4 {
  top: 40px;
  left: -46px;
}
.style-list li:nth-child(2) h4 {
  top: 65px;
  right: -73px;
}
.style-list li:last-child h4 {
  top: 45px;
  right: -48px;
}
.box_inner {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.box_inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-out;
}
.box_01 .box_inner::after,
.box_02 .box_inner::after,
.box_03 .box_inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-out;
}
.box_01 .box_inner::after {
  background: url(img/top-style-hair.webp) center;
  background-size: cover;
}
.no-webp .box_01 .box_inner::after {
  background: url(img/top-style-hair.jpg) center;
  background-size: cover;
}
.box_02 .box_inner::after {
  background: url(img/top-style-eye.webp) center;
  background-size: cover;
}
.no-webp .box_02 .box_inner::after {
  background: url(img/top-style-eye.jpg) center;
  background-size: cover;
}
.box_03 .box_inner::after {
  background: url(img/top-style-nail.webp) center;
  background-size: cover;
}
.no-webp .box_03 .box_inner::after {
  background: url(img/top-style-nail.jpg) center;
  background-size: cover;
}
.style-list li a:hover .box_inner::after {
  transform: scale(1.1);
}
.style-link-block {
  position: relative;
  z-index: 100;
  height: 100%;
  background: rgba(130, 130, 130, 0.6);
  transition: 0.3s ease-in-out;
  opacity: 0;
}
.style-link-block::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 1.5px solid #fff;
}
.style-list li a:hover .style-link-block {
  opacity: 1;
}
.style-link-block p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--title-font-en);
  font-size: 30px;
  color: #fff;
}
.style-link-block span {
  position: absolute;
  bottom: 15px;
  right: 20px;
  display: flex;
  align-items: center;
  font-family: var(--title-font-en);
  font-size: 18px;
  color: #fff;
}
.style-link-block span img {
  width: 15px;
  margin-left: 5px;
}

@media screen and (max-width: 900px) {
  #sect-style {
    padding: 100px 0;
  }
  #sect-style .sect-heading {
    top: -82px;
    left: 5%;
    font-size: 100px;
  }
  .style-list {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  #sect-style {
    padding: 60px 0;
  }
  #sect-style .sect-heading {
    font-size: 60px;
  }
  #sect-style .sect-wrapper {
    width: 95%;
  }
  .style-list {
    grid-template-rows: 200px 200px;
    gap: 8px;
    margin-bottom: 50px;
  }
  .style-list li::before {
    top: 20px;
    font-size: 14px;
    letter-spacing: 0.02rem;
  }
  .style-list li:first-child::before {
    left: -25px;
  }
  .style-list li:nth-child(2)::before,
  .style-list li:last-child::before {
    right: -25px;
  }
  .style-link-block p {
    font-size: 16px;
  }
  .style-link-block span {
    font-size: 12px;
  }
  .style-link-block span img {
    width: 10px;
    margin-left: 3px;
  }
  #sect-style .link-btn {
    width: 90%;
  }
}

/*-----------------------------------
HOME-Column
-----------------------------------*/
#sect-column {
  margin: 120px 0;
}
.post-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.post-list li a {
  display: block;
}
.post-list li figure {
  overflow: hidden;
}
.post-list img {
  transform: scale(1);
  transition: 0.3s ease-in-out;
}
.post-list figure a:hover img {
  transform: scale(1.1);
}
.post_content {
  padding: 10px;
}
.post-category {
  display: flex;
  flex-wrap: wrap;
  margin: 0 5px 5px 0;
}
.post-category a {
  font-size: 13px;
  background: #e5e5e5;
  border-radius: 50px;
  padding: 2px 8px;
}
.post-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}
.post-time {
  display: block;
  font-family: var(--title-font-en);
  font-size: 14px;
  letter-spacing: 0.04rem;
  color: #8c8c8b;
  text-align: right;
}

@media screen and (max-width: 900px) {
  #sect-column {
    margin: 100px 0;
  }
  .post-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  #sect-column {
    margin: 60px 0;
  }
  .post-list {
    gap: 10px;
    margin-bottom: 40px;
  }
  .post_content {
    padding: 8px 5px 5px;
  }
  .post-category a {
    font-size: 12px;
  }
  .post-title {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 3px;
  }
  .post-time {
    font-size: 12px;
  }
}

/*-----------------------------------
HOME-News
-----------------------------------*/
#sect-news {
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
}
#sect-news > div {
  width: 30%;
}
#sect-news .sect-title {
  text-align: left;
}
#sect-news .link-btn {
  width: 200px;
  margin: 0;
}
.news-list {
  width: 65%;
  border-left: 0.5px solid #3b3a3a;
}
.news-list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 30px;
}
.news-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--font-color);
  margin-right: 5px;
}
.news-list .post-title {
  position: relative;
  top: -7px;
  margin-bottom: 0;
}
.post_detail {
  display: flex;
  align-items: center;
}
.news-list .post-time {
  text-align: left;
  margin-right: 10px;
}
.link-btn.display-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  #sect-news {
    display: block;
  }
  #sect-news > div {
    width: 100%;
  }
  #sect-news .sect-title {
    text-align: center;
  }
  #sect-news .link-btn {
    display: none;
  }
  .news-list {
    width: 95%;
    margin: 0 auto 40px;
  }
  #sect-news .link-btn.display-sp {
    display: block;
    width: 100%;
  }
}

/*-----------------------------------
HOME-SNS
-----------------------------------*/
#sect-sns {
  margin-bottom: 120px;
}
.insta-icon {
  width: 25px;
  margin-right: 10px;
}
#sect-sns .link-btn {
  width: 280px;
}

@media screen and (max-width: 767px) {
  #sect-sns {
    margin-bottom: 60px;
  }
}

/*-----------------------------------
HOME-Recruit
-----------------------------------*/
#sect-recruit {
  background: var(--brand-primary);
  padding: 100px 0 240px;
}
.recruit-text {
  line-height: 2;
  text-align: center;
  margin-bottom: 60px;
}
.recruit-container {
  position: relative;
  max-width: 1600px;
  width: 90%;
  margin: 0 auto;
}
.recruit-img {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.recruit-link-box {
  position: absolute;
  bottom: -75px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  width: 90%;
  height: 150px;
  background: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
}
.recruit-link-box li {
  height: 100%;
  text-align: center;
  padding: 25px 0;
  box-sizing: border-box;
}
.recruit-link-box li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  border-right: 1.5px solid var(--font-color);
}
.recruit-link-box li:last-child a {
  border-right: none;
}
.recruit-link-box h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}
.recruit-link-box h3::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url(img/arrow-up-right.png) no-repeat;
  background-size: contain;
  margin-left: 5px;
}

@media screen and (max-width: 900px) {
  .recruit-link-box {
    bottom: -60px;
    width: 95%;
    height: 120px;
  }
}

@media screen and (max-width: 767px) {
  #sect-recruit {
    padding-top: 60px;
  }
  .recruit-text {
    line-height: 1.7;
    text-align: left;
    margin-bottom: 40px;
  }
  .recruit-container {
    width: 100%;
  }
  .recruit-img {
    gap: 5px;
  }
  .recruit-link-box {
    bottom: -60px;
    width: 95%;
    height: 100px;
  }
  .recruit-link-box li {
    padding: 20px 5px;
  }
  .recruit-link-box li a {
    border-right: 1px solid var(--font-color);
  }
  .recruit-link-box h3 {
    font-size: 14px;
  }
  .recruit-link-box h3::after {
    display: block;
    width: 10px;
    height: 10px;
    margin: 3px auto 0;
  }
}

/*-----------------------------------
Lower-Common
-----------------------------------*/
#lower_keyvisual {
  position: relative;
  height: 400px;
  margin-top: 145px;
}
#lower_keyvisual h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--title-font-en);
  font-size: 35px;
  font-weight: 500;
  text-align: center;
}
#lower_keyvisual h1 p {
  font-family: var(--font-ja);
  font-size: 20px;
  margin-top: 5px;
}
.breadcrumb {
  font-size: 14px;
  background: var(--brand-primary);
  padding: 20px 0;
  margin-bottom: 120px;
}
.breadcrumb-inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
.breadcrumb span {
  margin-right: 3px;
}
#lower_single {
  max-width: 1080px;
  width: 95%;
  margin: 0 auto 200px;
}
.lower-wrapper {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
#flex-main {
  display: flex;
  max-width: 1080px;
  width: 95%;
  margin: 0 auto 200px;
}
.flex-item,
.flex-wrapper {
  flex-grow: 1;
  padding-right: 3%;
}

@media screen and (max-width: 1024px) {
  #lower_keyvisual {
    margin-top: 80px;
  }
  .breadcrumb {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 900px) {
  #flex-main {
    display: block;
    width: 90%;
  }
  .flex-item,
  .flex-wrapper {
    padding-right: 0;
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 767px) {
  #lower_keyvisual {
    height: 200px;
    margin-top: 60px;
  }
  #lower_keyvisual h1 {
    font-size: 28px;
  }
  #lower_keyvisual h1 p {
    font-size: 16px;
    margin-top: 3px;
  }
  .breadcrumb {
    font-size: 12px;
    padding: 10px 0;
    margin-bottom: 40px;
  }
}

/*-----------------------------------
About-CS Inc.
-----------------------------------*/

/* 修正チェック中(スプレッドシートNo.4)↓↓ */
.page-template-page-about_cs #lower_keyvisual {
  background: url(img/lower-header-about_v01.webp) center;
  background-size: cover;
}
.no-webp .page-template-page-about_cs #lower_keyvisual {
  background: url(img/lower-header-about_v01.jpg) center;
  background-size: cover;
}
/* 修正チェック中(スプレッドシートNo.4)↑↑ */

#page-link {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 80px;
}
#page-link li a {
  display: block;
  border: 1px solid var(--font-color);
  padding: 10px 40px;
  transition: all 0.6s;
}
#page-link li a:hover {
  color: #fff;
  background: var(--font-color);
}

/* ===== about-cs ===== */

/* 修正チェック中(スプレッドシートNo.2)↓↓ */
.sect-about-cs {
  background: var(--brand-primary);
  padding: 80px 0;
}

/* 修正前↓↓ */
/* .sect-about-cs{
    background: var(--brand-primary);
    background: url(img/about-cs-bg.webp) center;
    background-size: cover;
    background-color: rgba(255, 255, 255, 0.7);
    background-blend-mode: lighten;
    padding: 80px 0;
}
.no-webp .sect-about-cs{
    background: url(img/about-cs-bg.jpg) center;
    background-size: cover;
} */

.sect-about-cs .lower-wrapper {
  margin: 0 auto;
}
.sect-about-cs h2 {
  font-family: var(--title-font-ja);
  font-size: 24px;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 40px;
}
.cs-date-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cs-date-list li {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  box-shadow: 3px 3px 3px 1px rgba(220, 220, 220, 0.6);
  text-align: center;
  padding: 20px;
}
.cs-date-list li dt {
  font-size: 20px;
}
.cs-date-list li dt span {
  display: block;
  font-family: var(--title-font-en);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
.cs-date-list-img {
  margin: 10px auto 15px;
}
.date-number {
  font-family: "Roboto", sans-serif;
  font-size: 4.5vw;
  font-weight: bold;
}
.date-number span {
  font-family: var(--font-ja);
  font-size: 24px;
  font-weight: bold;
  margin-left: 5px;
}
#about-cs .message {
  margin-bottom: 20px;
}
.philosophy {
  padding: 140px 0;
}
.heading-block {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}
.sect-about-cs .sect-heading {
  left: 0;
  font-size: 120px;
}
.philosophy .sect-heading {
  top: -80px;
  font-size: 120px;
}
.sect-about-cs .message {
  margin-bottom: 20px;
}
.heading-block p {
  font-family: var(--title-font-ja);
  font-size: 24px;
  font-weight: bold;
}
.about-flex-block {
  display: flex;
  justify-content: space-between;
}
.about-flex-block p {
  width: 48%;
  line-height: 2;
  padding-top: 10px;
}
.about-flex-block picture {
  width: 50%;
}
.vision {
  margin-bottom: 140px;
}
.vision .sect-heading {
  top: -100px;
}
.policy {
  background: var(--brand-primary);
  padding: 80px 0 160px;
}
.sect-subTitle {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 60px;
}
.policy .sect-heading {
  top: -170px;
  z-index: 0;
}
.policy-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  padding: 40px 30px;
}
.policy-list li {
  border-right: 2px dotted #bcbcbc;
  padding-right: 20px;
}
.policy-list li:last-child {
  border-right: none;
  padding-right: 0;
}
.policy-list dt {
  width: 150px;
  height: 150px;
  background: #9b9b9b;
  text-align: center;
  border-radius: 50%;
  margin: 0 auto 15px;
}
.policy-list dt p {
  line-height: 1.3;
  color: #fff;
  padding: 30px 0 8px;
}
.policy-list dt img {
  width: 70px;
}
.policy-list li:nth-child(3) dt img {
  width: 50px;
}
.policy-list li:nth-child(4) dt img {
  width: 80px;
  margin-top: 5px;
}
.policy-list li:last-child dt img {
  width: 60px;
}
.policy-list dd {
  font-size: 14px;
}

/* ===== CEO-message ===== */
.sect-ceo-message {
  padding: 200px 0 120px;
}
#ceo-message .sect-heading {
  top: -100px;
  font-size: 120px;
}
.message-container {
  display: flex;
  justify-content: space-between;
}
.message-text-block {
  width: 57%;
}
.message-title {
  font-family: var(--title-font-ja);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.message-text {
  line-height: 1.8;
}
.ceo-name {
  width: 170px;
  text-align: center;
  margin: 30px 0 0 auto;
}
.ceo-name img {
  width: 140px;
  margin-top: 5px;
}
.message-container picture {
  width: 38%;
}
.ceo-profile .sect-subTitle {
  margin-bottom: 40px;
}
.ceo-profile-container {
  width: 60%;
  margin: 0 auto;
}
.ceo-profile-container > p {
  text-align: center;
  margin-bottom: 30px;
}
.ceo-profile-list {
  border-left: 0.5px solid var(--font-color);
}
.ceo-profile-list li {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-left: 15px;
  margin-bottom: 24px;
}
.ceo-profile-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--font-color);
  margin-right: 5px;
}
.ceo-profile-list li span {
  width: 120px;
  margin-top: -7px;
}
.ceo-profile-list li p {
  width: calc(100% - 120px);
  margin-top: -7px;
}

/* ===== Company ===== */
#company-profile {
  padding-top: 160px;
}
.company-profile-inner {
  background: var(--brand-primary);
  padding: 80px 0 120px;
}
#company-profile .heading-block {
  max-width: 1080px;
  width: 95%;
  margin: 0 auto;
}
#company-profile .sect-heading {
  top: -160px;
  z-index: 100;
  font-size: 120px;
}
.company-img {
  display: block;
  width: 85%;
  margin-left: auto;
}
.company-profile-list {
  max-width: 1080px;
  width: 70%;
  background: #fff;
  padding: 80px 100px;
  margin: 100px auto 0;
  box-sizing: border-box;
}
.company-profile-list dl {
  display: flex;
  justify-content: space-between;
  line-height: 1.8;
  margin-bottom: 30px;
}
.company-profile-list dl:last-child {
  margin-bottom: 0;
}
.company-profile-list dt {
  width: 20%;
  border-bottom: 2px solid #636363;
  padding: 0 0 20px 20px;
  box-sizing: border-box;
}
.company-profile-list dd {
  width: 77%;
  border-bottom: 1px solid #636363;
  padding: 0 20px 20px;
  box-sizing: border-box;
}

/* ===== #history ===== */
#history {
  padding: 200px 0;
}
#history .sect-heading {
  top: -100px;
  left: 10%;
  font-size: 120px;
}
.history-list {
  width: 60%;
  border-left: 0.5px solid var(--font-color);
  margin: 0 auto;
}
.history-list li {
  position: relative;
  margin-bottom: 20px;
}
.history-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--font-color);
  margin-right: 5px;
}
.list-flex {
  display: flex;
}
.flex-item-l {
  position: relative;
  top: -7px;
  width: 200px;
  padding-left: 20px;
  box-sizing: border-box;
}
.flex-item-l.flex-item-business {
  top: 0;
}
.flex-item-r {
  position: relative;
  top: -3px;
  width: calc(100% - 200px);
  line-height: 2;
}
.flex-item-r.flex-item-s {
  top: -8px;
}
.month {
  width: 200px;
}
.month::before {
  content: "";
  display: inline-block;
  width: 46px;
  height: 1px;
  background: #3b3a3a;
  vertical-align: middle;
  margin-right: 3px;
}
.list-note {
  display: inline-block;
  border: 1px solid #707070;
  padding: 5px 15px;
  margin-top: 10px;
}

@media screen and (max-width: 1024px) {
  /* ===== about-cs ===== */
  .cs-date-list {
    width: 95%;
    margin: 0 auto;
  }
  .cs-date-list li {
    padding: 20px 10px;
  }
  .policy-list {
    gap: 15px;
  }
  .policy-list li {
    padding-right: 15px;
  }

  /* ===== company-profile ===== */
  #company-profile .sect-heading {
    left: 5%;
  }
}

@media screen and (max-width: 900px) {
  #page-link li a {
    padding: 10px 20px;
  }
  /* ===== about-cs ===== */
  .cs-date-list {
    gap: 15px;
  }
  .cs-date-list-img {
    margin-bottom: 5px;
  }
  .date-number {
    font-size: 5vw;
  }
  .page-template-page-about_cs .sect-heading {
    font-size: 100px;
  }
  .sect-about-cs .sect-heading {
    top: -80px;
  }
  .philosophy .sect-heading {
    font-size: 100px;
  }
  .policy .sect-heading {
    top: -145px;
  }
  .policy-list {
    display: block;
    padding: 40px 60px;
  }
  .policy-list li {
    border-right: none;
    border-bottom: 2px dotted #bcbcbc;
    padding: 0 0 20px;
    margin-bottom: 20px;
  }
  .policy-list li:last-child {
    border-bottom: none;
    padding: 0;
  }
  .policy-list li dl {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .policy-list dt {
    width: 140px;
    height: 140px;
    margin: 0;
  }
  .policy-list dt img {
    width: 60px;
  }
  .policy-list li:nth-child(3) dt img {
    width: 45px;
    margin-top: -5px;
  }
  .policy-list dd {
    width: calc(100% - 180px);
  }
  /* ===== ceo-message ===== */
  #ceo-message .sect-heading {
    font-size: 100px;
  }
  /* ===== ceo-profile ===== */
  #company-profile .sect-heading {
    top: -150px;
    font-size: 100px;
  }
  .ceo-profile-container {
    width: 80%;
  }
  /* ===== company ===== */
  .company-profile-list {
    width: 80%;
    padding: 80px 60px;
  }
  /* ===== history ===== */
  #history .sect-heading {
    font-size: 100px;
    left: 5%;
  }
  .history-list {
    width: 80%;
  }
}

@media screen and (max-width: 767px) {
  /* 修正チェック中(スプレッドシートNo.4)↓↓ */
  .page-template-page-about_cs #lower_keyvisual {
    background: url(img/lower-header-about_v01_sp.webp) center;
    background-size: cover;
  }
  .no-webp .page-template-page-about_cs #lower_keyvisual {
    background: url(img/lower-header-about_v01_sp.jpg) center;
    background-size: cover;
  }
  /* 修正チェック中(スプレッドシートNo.4)↑↑*/

  /* 修正前↓↓ */
  /* .page-template-page-about_cs #lower_keyvisual{
        background: url(img/lower-header-about_v02_sp.webp) center;
        background-size: cover;
    }
    .no-webp .page-template-page-about_cs #lower_keyvisual{
        background: url(img/lower-header-about_v02_sp.jpg) center;
        background-size: cover;
    } */

  #page-link {
    display: block;
    margin-bottom: 40px;
  }
  #page-link li {
    text-align: center;
    margin-bottom: 10px;
  }
  .page-template-page-about_cs .sect-heading {
    font-size: 60px;
  }
  /* ===== about-cs ===== */
  .sect-about-cs {
    padding: 60px 0;
  }
  .sect-about-cs h2 {
    font-size: 17px;
    line-height: 1.6;
    text-align: left;
  }
  .cs-date-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 10px;
  }
  .cs-date-list li {
    padding: 20px 10px;
  }
  .cs-date-list li dt {
    font-size: 16px;
    line-height: 1.2;
  }
  .cs-date-list li dt span {
    font-size: 14px;
    margin-bottom: 3px;
  }
  .date-number {
    font-size: 40px;
  }
  .date-number span {
    font-size: 14px;
    margin-left: 0;
  }
  .philosophy {
    padding: 100px 0;
  }
  .heading-block {
    margin-bottom: 30px;
  }
  .philosophy .sect-heading {
    top: -50px;
    font-size: 60px;
  }
  .message {
    font-size: 20px;
  }
  #about-CS .message {
    margin-bottom: 15px;
  }
  .heading-block p {
    font-size: 18px;
    line-height: 1.4;
  }
  .about-flex-block {
    display: block;
  }
  .about-flex-block p {
    width: 100%;
    line-height: 1.7;
    padding-top: 0;
    margin-bottom: 20px;
  }
  .about-flex-block img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
  .vision {
    margin-bottom: 80px;
  }
  .vision .sect-heading {
    top: -60px;
    font-size: 60px;
  }
  .vision .about-flex-block p {
    margin: 20px 0 0;
  }
  .policy {
    padding: 60px 0;
  }
  .policy .sect-heading {
    top: -105px;
  }
  .sect-subTitle {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .policy-list {
    padding: 30px 15px;
  }
  .policy-list li dl {
    display: block;
  }
  .policy-list dt {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
  }
  .policy-list dt p {
    font-size: 13px;
    padding: 25px 0 5px;
  }
  .policy-list li:nth-child(3) dt p,
  .policy-list li:last-child dt p {
    padding-top: 20px;
  }
  .policy-list dt img {
    width: 40px;
  }
  .policy-list li:nth-child(2) dt img {
    width: 50px;
    margin-top: -5px;
  }
  .policy-list li:nth-child(3) dt img {
    width: 35px;
  }
  .policy-list li:nth-child(4) dt img {
    width: 55px;
    margin-top: 0;
  }
  .policy-list li:last-child dt img {
    width: 40px;
  }
  .policy-list dd {
    width: 100%;
  }

  /* ===== CEO-message ===== */
  #ceo-message {
    padding-top: 100px;
  }
  .sect-ceo-message {
    padding: 0 0 60px;
  }
  #ceo-message .sect-heading {
    top: -50px;
    font-size: 60px;
  }
  .message-container {
    display: block;
  }
  .message-text-block {
    width: 100%;
  }
  .message-title {
    font-size: 18px;
  }
  .ceo-name {
    width: 100%;
    text-align: right;
    margin: 10px 0 30px;
  }
  .ceo-name img {
    width: 100px;
    margin-top: 3px;
  }
  .ceo-profile {
    width: 95%;
    margin: 0 auto;
  }
  .ceo-profile-container {
    width: 90%;
  }
  .ceo-profile-list li span {
    width: 20%;
  }
  .ceo-profile-list li p {
    width: 78%;
  }

  /* ===== Company ===== */
  #company-profile {
    padding-top: 80px;
  }
  .company-profile-inner {
    padding: 60px 0 80px;
  }
  #company-profile .sect-heading {
    top: -100px;
    font-size: 60px;
  }
  .company-img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
  .company-profile-list {
    width: 90%;
    padding: 40px 15px;
    margin-top: 60px;
  }
  .company-profile-list dl {
    margin-bottom: 15px;
  }
  .company-profile-list dt {
    line-height: 1.4;
    padding: 0;
  }
  .company-profile-list dd {
    line-height: 1.6;
    padding: 0 10px 15px;
  }

  /* ===== #history ===== */
  #history {
    padding: 100px 0 160px;
  }
  #history .sect-heading {
    top: -50px;
    left: 3%;
    font-size: 60px;
  }
  .history-list {
    width: 95%;
  }
  .list-flex {
    display: block;
  }
  .flex-item-l {
    width: 100%;
    padding-left: 10px;
  }
  .flex-item-l {
    width: 100%;
  }
  .month {
    display: block;
    width: 100%;
    margin-bottom: 3px;
  }
  .month::before {
    width: 20px;
  }
  .flex-item-r {
    width: 100%;
    line-height: 1.7;
    padding-left: 20px;
    box-sizing: border-box;
  }
  .list-note {
    line-height: 1.4;
    padding: 5px 10px;
    margin-top: 8px;
  }
}

/*-----------------------------------
Salon List-archive
-----------------------------------*/
#lower_keyvisual.salon {
  background: url(img/lower-header-salon.webp) center;
  background-size: cover;
}
.no-webp #lower_keyvisual.salon {
  background: url(img/lower-header-salon.jpg) center;
  background-size: cover;
}
.search-container {
  position: relative;
  margin-bottom: 200px;
}
.search-wrapper {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 1400px;
  background: #fff;
}
.search-container .breadcrumb {
  background: transparent;
  margin-bottom: 60px;
}
.sect-salon-search #sect-salon-search {
  padding: 60px 0;
}
.sect-salon-search .sect-title h1 {
  font-family: var(--title-font-en);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}
.sect-salon-search .sect-title span {
  font-size: 16px;
}
.sect-salon-search .sect-title {
  margin-bottom: 30px;
}
.salon-search-area {
  margin: 100px 0;
}
.salon-area-title-link {
  display: block;
  background: #8c8c8b;
  margin-bottom: 30px;
}
.salon-area-title-link a {
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  padding: 15px 30px;
}
.salon-area-title {
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  background: #8c8c8b;
  padding: 15px 30px;
  margin-bottom: 30px;
}
.salon-prefectures-title {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: var(--font-color);
  border-bottom: 2px dotted #ddd;
  padding: 0 20px 15px 30px;
  margin-bottom: 30px;
}
.salon-type-title {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}
.salon-type-title a {
  display: inline-block;
}
.salon-type-title span {
  display: block;
  width: 200px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  border: 2px solid #ddd;
  background: #fff;
  padding: 8px;
}
.salon-type-title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #ddd;
  top: 50%;
  left: 0;
  z-index: -1;
  transform: translateY(-50%);
}
.salon-type-title a:hover {
  opacity: 1;
}
.salon-area-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 20px;
  margin-bottom: 60px;
}
.salon-area-list a {
  display: block;
}
.salon-area-list figure {
  overflow: hidden;
}
.salon-area-list img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1);
  transition: 0.3s ease-in-out;
}
.salon-area-list a:hover img {
  transform: scale(1.1);
}
.salon-list-item {
  margin-top: 10px;
}
.salon-title-block {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.salon-title-block a {
  margin-right: 15px;
}
.salon-title-block img {
  width: 80px;
}
.salon-shopname {
  width: calc(100% - 100px);
  font-size: 14px;
}
.salon-info {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 15px;
}
.salon-address {
  margin-bottom: 3px;
}
.salon-phone {
  margin-bottom: 5px;
}
.salon-phone::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 18px;
  background: url(img/phone-icon.png) no-repeat;
  background-size: contain;
  vertical-align: sub;
  margin-right: 5px;
}
.salon-insta,
.salon-x,
.salon-fb {
  display: inline-block;
  width: 20px;
  height: 20px;
  text-indent: -9999px; /* テキストを非表示にする */
}
.salon-insta {
  background-image: url(img/Instagram_logo.png);
  background-size: cover;
}
.salon-x {
  background-image: url(img/x-icon.png);
  background-size: cover;
}
.salon-fb {
  width: 25px;
  height: 25px;
  background-image: url(img/fb-icon.png);
  background-size: cover;
}
.salon-reserve {
  display: block;
  font-size: 14px;
  text-align: center;
  color: #fff;
  background: var(--font-color);
  border-radius: 50px;
  padding: 12px;
  margin-top: 20px;
}
.salon-reserve::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(img/reserve-icon.png) no-repeat;
  background-size: contain;
  vertical-align: bottom;
  margin-left: 5px;
}
.salon-reserve p {
  display: inline;
}

@media screen and (max-width: 767px) {
  .search-container .breadcrumb {
    margin-bottom: 40px;
  }
  .search-container {
    margin-bottom: 400px;
  }
  .search-wrapper {
    top: -80px;
    width: 90%;
  }
  .salon-search-area {
    padding: 13px 10px;
    margin-bottom: 20px;
  }
  .salon-area-title-link {
    margin-bottom: 15px;
  }
  .salon-area-title-link a {
    font-size: 14px;
    padding: 15px;
  }
  .salon-area-title {
    font-size: 14px;
    padding: 15px;
    margin-bottom: 15px;
  }
  .salon-title-block a {
    margin-right: 10px;
  }
  .salon-prefectures-title {
    padding: 0 15px 10px;
    margin-bottom: 20px;
  }
  .salon-prefectures-title a {
    font-size: 14px;
  }
  .salon-type-title {
    margin-bottom: 30px;
  }
  .salon-type-title::after {
    height: 1.5px;
  }
  .salon-type-title span {
    width: 120px;
    font-size: 14px;
    border: 1px solid #ddd;
    padding: 5px;
  }
  .salon-area-list {
    display: block;
    margin-bottom: 40px;
  }
  .salon-area-list li {
    margin-bottom: 30px;
  }
}

/*-----------------------------------
Salon一覧-taxonomy(salon-area)
-----------------------------------*/
.salon_area-container h2 {
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  background: #8c8c8b;
  padding: 15px 30px;
  margin-bottom: 30px;
}
.salon_area-container h3 {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: var(--font-color);
  border-bottom: 2px dotted #ddd;
  padding: 0 20px 15px 30px;
  margin-bottom: 30px;
}
.salon-type-title02 {
  display: block;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  border: 2px solid #ddd;
  text-align: center;
  padding: 12px;
  margin-bottom: 40px;
}
.salon-area-explanation {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .salon-type-title02 {
    font-size: 14px;
    padding: 10px;
  }
  .salon-area-explanation {
    margin-bottom: 40px;
  }
}

/*-----------------------------------
Salon詳細ページ
-----------------------------------*/
.shop-container {
  margin-bottom: 200px;
}
.shop-wrapper {
  max-width: 1080px;
  width: 95%;
  margin: 0 auto;
}
.shop-container section {
  margin: 0 auto 100px;
}
.shop-container .slick-slide img {
  aspect-ratio: 16 / 9;
}
.shop-title-block {
  display: flex;
  align-items: center;
  padding: 20px 0;
}
.salon-logo {
  width: 100px;
  margin-right: 40px;
}
.salon-logo img {
  height: 100%;
}
.shop-title-block h1 {
  width: calc(100% - 140px);
  font-size: 20px;
  font-weight: 500;
}
.shop-info-container {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #3b3a3a;
  border-bottom: 1px solid #3b3a3a;
  padding: 40px;
  margin-bottom: 80px;
}
.shop-info-detail {
  width: 50%;
}
.shop-info-detail .sect-title h2 {
  font-size: 24px;
  text-align: left;
}
.shop-info-detail dl {
  display: flex;
  justify-content: space-between;
  border-bottom: 1.5px dotted #3b3a3a;
  padding: 0 15px 15px;
  margin-bottom: 20px;
}
.shop-info-detail dt {
  width: 30%;
  font-family: var(--title-font-en);
  font-weight: 600;
}
.shop-info-detail dd {
  width: 70%;
  font-size: 14px;
  line-height: 1.6;
}
.salon-hp {
  display: flex;
  line-height: 1.4;
}
.salon-hp img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.salon-hp a {
  font-size: 14px;
}
.sns-block {
  display: flex;
  align-items: center;
}
.shop-info-detail .sns-block {
  margin-top: 10px;
}
.sns-block img {
  width: 20px;
  height: 20px;
}
.salon-fb img {
  width: 22px;
  height: 22px;
}
.sns-block a {
  margin-right: 15px;
}
.sns-block a:last-child {
  margin-right: 0;
}
.shop-map {
  width: 45%;
}
.shop-map iframe {
  aspect-ratio: 4 / 3;
  width: 100%;
  height: 100%;
}
.shop-concept,
.shop-service {
  width: 80%;
  margin: 0 auto 80px;
}
.shop-concept h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 30px;
}
.shop-concept p {
  line-height: 1.8;
}
.youtube {
  text-align: center;
  margin-top: 30px;
}
.youtube iframe {
  width: 80%;
  height: auto;
  aspect-ratio: 16 / 9;
}
.shop-service ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.shop-service ul li {
  font-size: 14px;
  border: 1px solid var(--font-color);
  border-radius: 50px;
  padding: 3px 15px;
  margin: 0 15px 10px 0;
}
.shop-staff ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.shop-staff ul li img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.staff-name-block {
  margin-top: 10px;
}
.staff-post {
  font-weight: 600;
  font-size: 14px;
}
.staff-name-ja {
  position: relative;
  font-size: 15px;
  margin-top: 5px;
}
.staff-name-ja::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--font-color);
  border-radius: 50px;
}
.staff-name-en {
  font-family: var(--title-font-en);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
}
.shop-container .recruit-banner {
  display: block;
  margin: 0 auto 120px;
}
.shop-container section.shop-column {
  background: var(--brand-primary);
  padding: 80px 0;
  margin-bottom: 40px;
}
.salon-link-btn {
  font-size: 14px;
  font-weight: 500;
}
.salon-link-btn::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url(img/page-arrow-l.png) no-repeat;
  background-size: contain;
  vertical-align: bottom;
  margin-right: 8px;
}

@media screen and (max-width: 900px) {
  .shop-info-container {
    padding: 40px 20px;
  }
  .shop-container section {
    margin-bottom: 60px;
  }
  .shop-info-container {
    display: block;
  }
  .shop-info-detail {
    width: 100%;
    margin-bottom: 60px;
  }
  .shop-map {
    width: 100%;
  }
  .shop-map iframe {
    aspect-ratio: 16 / 9;
  }
  .shop-concept,
  .shop-service {
    width: 90%;
  }
  .shop-service ul li {
    justify-content: left;
  }
  .shop-container .recruit-banner {
    width: 100%;
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 767px) {
  .shop-container {
    margin-bottom: 160px;
  }
  .shop-container .slick-slide img {
    aspect-ratio: 4 / 3;
  }
  .salon-logo {
    width: 80px;
    margin-right: 20px;
  }
  .shop-title-block {
    padding: 0;
  }
  .shop-title-block h1 {
    width: calc(100% - 120px);
    font-size: 14px;
  }
  .shop-info-container {
    display: block;
    padding: 40px 10px;
  }
  .shop-info-detail {
    width: 100%;
    margin-bottom: 40px;
  }
  .shop-info-detail dt {
    width: 25%;
  }
  .shop-info-detail dd {
    width: 73%;
  }
  .shop-info-detail .sect-title h2 {
    font-size: 20px;
    text-align: center;
  }
  .shop-info-detail dl {
    padding: 0 10px 15px;
  }
  .salon-hp a {
    font-size: 13px;
  }
  .sns-block a {
    margin-right: 20px;
  }
  .shop-map {
    width: 100%;
  }
  .shop-map iframe {
    aspect-ratio: 4 / 3;
  }
  .shop-concept,
  .shop-service {
    width: 95%;
  }
  .shop-concept h4 {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  .youtube iframe {
    width: 100%;
  }
  .shop-service ul li {
    font-size: 12px;
    padding: 3px 8px;
    margin-right: 5px;
  }
  .shop-staff ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
  .shop-container .recruit-banner {
    margin-bottom: 60px;
  }
  .shop-container section.shop-column {
    padding: 60px 0;
    margin-bottom: 30px;
  }
}

/*-----------------------------------
Column-archive
-----------------------------------*/
/* 修正チェック中(スプレッドシートNo.5)↓↓ */
.post-type-archive-column.post-type-archive-column #lower_keyvisual,
.tax-column-category #lower_keyvisual {
  background: url(img/lower-header-column_v01.webp) center;
  background-size: cover;
}
.no-webp .post-type-archive-column.post-type-archive-column #lower_keyvisual,
.tax-column-category #lower_keyvisual {
  background: url(img/lower-header-column_v01.jpg) center;
  background-size: cover;
}

/* 修正前↓↓ */
/* .post-type-archive-column.post-type-archive-column #lower_keyvisual,.tax-column-category #lower_keyvisual{
    background: url(img/lower-header-column.jpg.webp) center;
    background-size: cover;
}
.no-webp .post-type-archive-column.post-type-archive-column #lower_keyvisual,.tax-column-category #lower_keyvisual{
    background: url(img/lower-header-column.jpg) center;
    background-size: cover;
} */

#flex-main .post-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
  margin-bottom: 60px;
}

/*---ページネーション(archive)---*/
.pagenation {
  display: flex;
  justify-content: center;
}
.pagenation .page-numbers.current,
.pagenation .page-numbers {
  display: block;
  width: 35px;
  height: 35px;
  font-size: 18px;
  font-weight: 400;
  line-height: 35px;
  background: #8d8b8b;
  color: #fff;
  border-radius: 3px;
  text-align: center;
  margin-right: 10px;
}
.pagenation .page-numbers.current {
  background: var(--font-color);
}
.pagenation .next.page-numbers,
.pagenation .prev.page-numbers {
  width: auto;
  height: auto;
  font-family: var(--title-font-en);
  font-size: 18px;
  font-weight: 500;
  color: var(--font-color);
  background: transparent;
}

@media screen and (max-width: 900px) {
  #flex-main .post-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  /* 修正チェック中(スプレッドシートNo.5)↓↓ */
  .post-type-archive-column.post-type-archive-column #lower_keyvisual,
  .tax-column-category #lower_keyvisual {
    background: url(img/lower-header-column_v01_sp.webp) center;
    background-size: cover;
  }
  .no-webp .post-type-archive-column.post-type-archive-column #lower_keyvisual,
  .tax-column-category #lower_keyvisual {
    background: url(img/lower-header-column_v01_sp.jpg) center;
    background-size: cover;
  }
  /* 修正チェック中(スプレッドシートNo.5)↑↑ */

  #flex-main .post-list {
    gap: 20px 10px;
    margin-bottom: 40px;
  }
  /*--- ページネーション(archive)---*/
  .pagenation .page-numbers.current,
  .pagenation .page-numbers {
    width: 30px;
    height: 30px;
    font-size: 16px;
    line-height: 30px;
  }
  .pagenation .next.page-numbers,
  .pagenation .prev.page-numbers {
    font-size: 16px;
  }
}

/*-----------------------------------
Column-single
-----------------------------------*/
.breadcrumb.single {
  margin-top: 145px;
}
.column-title {
  position: relative;
  padding: 40px 10px 10px 10px;
  margin-bottom: 60px;
}
.column-title::before,
.column-title::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 6px;
  box-sizing: border-box;
}
.column-title::before {
  top: 0;
  border-top: 3px solid var(--font-color);
  border-bottom: 1px solid var(--font-color);
}
.column-title::after {
  bottom: 0;
  border-top: 1px solid var(--font-color);
  border-bottom: 3px solid var(--font-color);
}
.column-title h1 {
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 10px;
}
.post-item {
  display: flex;
  align-items: center;
}
.post-item span {
  margin-right: 15px;
}
.post-thumb {
  display: block;
  width: 80%;
  margin: 0 auto 80px;
}
.post_body {
  margin-bottom: 80px;
}
.post_body h2 {
  font-size: 20px;
  margin-bottom: 20px;
}
.post_body h3 {
  font-size: 18px;
  border-radius: 10px;
  background: var(--brand-primary);
  padding: 15px;
  margin-bottom: 20px;
}
.post_body h4 {
  font-size: 18px;
  border-bottom: 1.5px solid var(--font-color);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.post_body p {
  font-size: 14px;
  line-height: 1.8;
}
.post_body a {
  color: #0000ee;
}

/*---目次---*/
#ez-toc-container {
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 60px !important;
  box-sizing: border-box;
}
.ez-toc-title-container {
  text-align: center;
  border-bottom: 2px solid #8c8c8b;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
div#ez-toc-container ul li {
  margin-bottom: 10px;
}
div#ez-toc-container ul.ez-toc-list a {
  font-weight: 600;
}
div#ez-toc-container ul.ez-toc-list a:hover {
  text-decoration: none;
}

/*---single-ページネーション---*/
.post_pagenavi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  padding: 30px 0;
}
.post-prev a,
.post-next a {
  display: inline-block;
  font-size: 14px;
}
.post-prev a::before,
.post-next a::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
}
.post-prev a::before {
  background: url(img/page-arrow-l.png) no-repeat;
  background-size: contain;
  margin-right: 5px;
}
.post-next {
  text-align: right;
}
.post-next a::before {
  background: url(img/page-arrow-r.png) no-repeat;
  background-size: contain;
  margin-left: 5px;
}
.post-top-link {
  font-size: 14px;
  text-align: center;
}
.post-top-link::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url(img/archive-icon.png) no-repeat;
  background-size: contain;
  margin-right: 5px;
}

@media screen and (max-width: 1024px) {
  .breadcrumb.single {
    margin: 80px 0 60px;
  }
}

@media screen and (max-width: 767px) {
  .breadcrumb.single {
    margin: 60px 0 40px;
  }
  .column-title {
    padding-top: 30px;
    margin-bottom: 40px;
  }
  .column-title h1 {
    font-size: 16px;
    line-height: 1.4;
    text-align: left;
    margin-bottom: 8px;
  }
  .post-item span {
    font-size: 12px;
    margin-right: 10px;
  }
  .post-thumb {
    width: 100%;
    margin-bottom: 60px;
  }
  .post_body h2 {
    font-size: 16px;
  }
  .post_body h3 {
    font-size: 15px;
    padding: 10px;
  }
  .post_body h4 {
    font-size: 14px;
  }
  /*---目次---*/
  #ez-toc-container {
    padding: 20px 20px 20px;
  }
  /*---ページネーション---*/
  .post_pagenavi {
    padding: 20px 0;
  }
  .post-prev a,
  .post-next a,
  .post-top-link {
    font-size: 12px;
  }
  .post-prev a::before,
  .post-next a::before,
  .post-top-link::before {
    width: 10px;
    height: 10px;
  }
  .post-prev a::before,
  .post-top-link::before {
    margin-right: 3px;
  }
  .post-next a::before {
    margin-left: 3px;
  }
}

/*-----------------------------------
News-Archive
-----------------------------------*/
.post-type-archive #lower_keyvisual,
.category #lower_keyvisual {
  background: url(img/lower-header-news.webp) center;
  background-size: cover;
}
.no-webp .post-type-archive #lower_keyvisual .category #lower_keyvisual {
  background: url(img/lower-header-news.jpg) center;
  background-size: cover;
}
#flex-main .news-list {
  width: 60%;
  margin: 0 auto 80px;
}
#flex-main .news-list li {
  margin-bottom: 40px;
}

@media screen and (max-width: 900px) {
  #flex-main .news-list {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  #flex-main .news-list {
    width: 95%;
  }
  #flex-main .news-list li {
    margin-bottom: 30px;
  }
}

/*-----------------------------------
Sidebar
-----------------------------------*/
#sidebar {
  flex-shrink: 0;
  flex-basis: 280px;
}
.sidebar-container {
  margin-bottom: 40px;
}
#sidebar h2 {
  position: relative;
  letter-spacing: 0.03rem;
  border: 1px solid var(--font-color);
  padding: 15px 25px;
  margin-bottom: 20px;
}
#sidebar h2::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--font-color);
  height: calc(tan(60deg) * 20px / 2);
  width: 18px;
  clip-path: polygon(0 0, 60% 50%, 0 100%);
}
.sidebar-caregory li {
  border-bottom: 1.5px dotted #8c8c8b;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.sidebar-caregory li a {
  font-size: 14px;
}
.sidebar-post > li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1.5px dotted #8c8c8b;
  padding-bottom: 13px;
  margin-bottom: 13px;
}
#sidebar figure {
  display: block;
  width: 45%;
}
#sidebar .post_content {
  width: 50%;
  padding: 0;
}
#sidebar .post-title {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 3px;
}
#sidebar .post-category a {
  font-size: 12px;
}
#sidebar .post-time {
  font-size: 12px;
}

/* ===== news ===== */
.news-sb .sidebar-post > li {
  display: block;
}
#sidebar.news-sb .post-time {
  margin-right: 10px;
}

@media screen and (max-width: 900px) {
  .sidebar-post {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .sidebar-post > li {
    display: block;
  }
  #sidebar figure {
    width: 100%;
  }
  #sidebar .post_content {
    width: 100%;
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .news-sb .sidebar-post > li {
    margin-bottom: 5px;
  }
  .news-sb .post_detail {
    align-items: flex-start;
    flex-direction: column-reverse;
  }
  #sidebar.news-sb .post-category a,
  #sidebar.news-sb .post-time {
    font-size: 10px;
  }
}

/*-----------------------------------
Style-Archive
-----------------------------------*/
/* 修正チェック中(スプレッドシートNo.6)↓↓ */
.page-template-page-style #lower_keyvisual {
  background: url(img/lower-header-style_v01.webp) center;
  background-size: cover;
}
.no-webp .page-template-page-style #lower_keyvisual {
  background: url(img/lower-header-style_v01.jpg) center;
  background-size: cover;
}
/* 修正チェック中(スプレッドシートNo.6)↑↑ */

/* 修正前↓↓ */
/* .page-template-page-style #lower_keyvisual{
    background: url(img/lower-header-style.webp) center;
    background-size: cover;
}
.no-webp .page-template-page-style #lower_keyvisual{
    background: url(img/lower-header-style.jpg) center;
    background-size: cover;
} */

.tab {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 80px;
}
.tab li a {
  display: block;
  font-family: var(--title-font-en);
  border: 1px solid var(--font-color);
  text-align: center;
  padding: 10px 80px;
}
.tab li.active a {
  color: #fff;
  background: var(--font-color);
}
.tabContent {
  display: none;
  opacity: 0;
}
.tabContent.active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.envira-gallery-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.envira-gallery-wrap img {
  transform: scale(1);
  transition: 0.3s ease-in-out;
}
.envira-gallery-wrap a {
  display: block;
  overflow: hidden;
}
.envira-gallery-wrap a:hover img {
  transform: scale(1.1);
}
.envira-gallery-wrap .envira-lightbox {
  max-width: 640px;
  max-height: 480px;
}

@media screen and (max-width: 900px) {
  .envira-gallery-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 767px) {
  /* 修正チェック中(スプレッドシートNo.6)↓↓ */
  .page-template-page-style #lower_keyvisual {
    background: url(img/lower-header-style_v01_sp.webp) center;
    background-size: cover;
  }
  .no-webp .page-template-page-style #lower_keyvisual {
    background: url(img/lower-header-style_v01_sp.jpg) center;
    background-size: cover;
  }
  /* 修正チェック中(スプレッドシートNo.6)↑↑ */

  .tab {
    display: block;
    margin-bottom: 40px;
  }
  .tab li {
    margin-bottom: 10px;
  }
  .envira-gallery-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/*-----------------------------------
Contact
-----------------------------------*/
.lower-heading {
  font-family: var(--title-font-en);
  font-size: 35px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 80px;
}
.lower-heading p {
  font-family: var(--font-ja);
  font-size: 20px;
  margin-top: 5px;
}
.page-template-page-contact .breadcrumb {
  margin-bottom: 80px;
}
.form-container {
  width: 70%;
  margin: 0 auto;
  background: var(--brand-primary);
  padding: 80px;
  margin-bottom: 200px;
  box-sizing: border-box;
}
.contact-text {
  border: 1px solid #ddd;
  background: #fff;
  padding: 30px;
  margin-bottom: 60px;
  box-sizing: border-box;
}
.contact-text h2 {
  text-align: center;
  margin-bottom: 20px;
}
.contact-text h2::before,
.contact-text h2::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 18px;
  background: #ddd;
  transform: rotate(35deg);
  vertical-align: top;
}
.contact-text h2::before {
  margin-right: 10px;
}
.contact-text h2::after {
  margin-left: 10px;
}
.contact-text ul li {
  display: flex;
  font-size: 14px;
  margin-bottom: 8px;
}
.link-text {
  text-decoration: underline;
}
.contact_form li {
  margin-bottom: 30px;
}
.contact_form p {
  display: flex;
  align-items: center;
}
.contact_item {
  width: 180px;
  font-size: 14px;
}
.wpcf7-form-control-wrap {
  width: calc(100% - 180px);
}
.essential {
  font-size: 11px;
  color: #dc3232;
  border: 1px solid #dc3232;
  padding: 0 3px 2px;
  margin-left: 5px;
}
.contact_form input {
  width: 100%;
  line-height: 1.8;
  border: 1px solid #ddd;
  padding: 8px;
  box-sizing: border-box;
}
.contact_form textarea {
  width: 100%;
  height: 200px;
  border: 1px solid #ddd;
  padding: 15px;
  box-sizing: border-box;
}
.contact_submit {
  width: 280px;
  margin: 60px auto 0;
}
.contact_submit input {
  width: 100%;
  font-family: var(--font-ja);
  color: #fff;
  background: var(--font-color);
  border: none;
  cursor: pointer;
  padding: 12px;
  transition: all 0.6s;
}
.contact_submit input:hover {
  opacity: 0.6;
}
.wpcf7-not-valid-tip {
  font-size: 14px;
}
.wpcf7-response-output {
  font-size: 14px;
  border: #dc3232;
  padding: 15px;
}
.recapcha-text {
  font-size: 14px;
  text-align: center;
}
.recapcha-text a {
  color: #007aff;
}

@media screen and (max-width: 1024px) {
  .form-container {
    width: 80%;
    padding: 80px 40px;
  }
}

@media screen and (max-width: 900px) {
  .form-container {
    width: 90%;
    padding: 80px 20px;
  }
}

@media screen and (max-width: 767px) {
  .lower-heading {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .lower-heading p {
    font-size: 16px;
  }
  .form-container {
    padding: 60px 0;
    margin-bottom: 150px;
  }
  .contact-text {
    padding: 30px 10px;
  }
  .contact_form li {
    margin-bottom: 20px;
  }
  .contact_form p {
    display: block;
    line-height: 1;
  }
  .contact_item {
    display: block;
    width: 100%;
    margin-bottom: -5px;
  }
  .wpcf7-form-control-wrap {
    width: 100%;
  }
  .contact_form input {
    padding: 5px 10px;
  }
  .essential {
    font-size: 10px;
    padding: 0 3px 1px;
  }
  .contact_submit {
    width: 100%;
    margin-top: 40px;
  }
  .recapcha-text {
    text-align: left;
  }
}

/*-----------------------------------
Contact-Confirm
-----------------------------------*/
.contact_form.confirm_form li {
  display: flex;
  font-size: 14px;
}
.contact_form.confirm_form p {
  display: block;
}
.contact_form.confirm_form p:first-child {
  width: 150px;
}
.confirm-item {
  width: calc(100% - 150px);
}
.contact_submit.confirm {
  width: 100%;
}
.contact_submit.confirm p {
  display: flex;
  justify-content: center;
  gap: 30px;
  width: 100%;
}
.contact_submit.confirm input {
  width: 200px;
}
.contact_submit.confirm input.wpcf7-previous {
  color: var(--font-color);
  background: #fff;
  border: 1px solid var(--font-color);
}
.wpcf7-spinner {
  display: none;
}

@media screen and (max-width: 767px) {
  .contact_form.confirm_form li {
    display: block;
  }
  .contact_form.confirm_form p {
    line-height: 1.4;
  }
  .contact_form.confirm_form p:first-child {
    width: 100%;
    margin-bottom: 5px;
  }
  .confirm-item {
    width: 100%;
  }
  .contact_submit.confirm p {
    display: block;
  }
  .contact_submit.confirm input {
    width: 100%;
  }
  .contact_submit.confirm input.wpcf7-previous {
    margin-bottom: 20px;
  }
}

/*-----------------------------------
Contact-Thanks
-----------------------------------*/
.page-template-page-contact-thanks .breadcrumb {
  margin-bottom: 80px;
}
.contact-thanks {
  margin-bottom: 150px;
}
.contact-thanks-container {
  text-align: center;
}
.contact-thanks-container h1 {
  font-size: 20px;
  margin-bottom: 20px;
}
.contact-thanks-container p {
  line-height: 1.8;
  margin-bottom: 80px;
}

@media screen and (max-width: 900px) {
  .contact-thanks p {
    margin-bottom: 60px;
  }
  .contact-thanks .link-btn {
    width: 300px;
  }
}

@media screen and (max-width: 767px) {
  .contact-thanks {
    width: 95%;
  }
  .contact-thanks-container h1 {
    font-size: 16px;
  }
  .contact-thanks p {
    line-height: 1.5;
    text-align: left;
    margin-bottom: 40px;
  }
  .contact-thanks .link-btn {
    width: 100%;
  }
}

/*-----------------------------------
privacy-policy
-----------------------------------*/
.privacyPolicy-container {
  width: 60%;
  margin-bottom: 200px;
}
.privacyPolicy-container h2 {
  font-size: 20px;
  margin-bottom: 20px;
}
.privacyPolicy-container div {
  margin-bottom: 60px;
}
.privacyPolicy-container ul li {
  display: flex;
  margin-bottom: 10px;
}
.privacyPolicy-container ul li span {
  margin-right: 5px;
}
.page-template-page-privacy-policy .link-btn {
  font-family: var(--font-ja);
}

@media screen and (max-width: 900px) {
  .privacyPolicy-container {
    width: 80%;
  }
}

@media screen and (max-width: 767px) {
  .privacyPolicy-container {
    width: 90%;
    margin-bottom: 150px;
  }
  .privacyPolicy-container h2 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .privacyPolicy-container div {
    margin-bottom: 40px;
  }
}

/*-----------------------------------
Site Map
-----------------------------------*/
.site-map {
  width: 50%;
  margin-bottom: 200px;
}
.site-map li {
  border-bottom: 1px solid #ddd;
  padding: 30px;
}
.site-map li a::after,
.hierarchy ul li a::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 14px;
  background: url(img/arrow-r.png) no-repeat;
  background-size: contain;
  margin-left: 8px;
  vertical-align: middle;
}
.hierarchy ul {
  display: flex;
  margin-top: 10px;
}
.hierarchy ul li {
  border-bottom: none;
  padding: 0;
  margin-right: 30px;
}

@media screen and (max-width: 1024px) {
  .site-map {
    width: 70%;
  }
}

@media screen and (max-width: 900px) {
  .site-map {
    width: 80%;
  }
}

@media screen and (max-width: 767px) {
  .site-map {
    width: 90%;
    margin-bottom: 150px;
  }
  .site-map li {
    padding: 20px;
  }
  .hierarchy ul {
    display: block;
  }
  .hierarchy ul li {
    margin-bottom: 8px;
  }
}

/*-----------------------------------
404 2025/06/09 yoshioka 修正
-----------------------------------*/
.NF-link-btn {
  position: relative;
  display: block;
  width: 300px;
  font-family: var(--title-font-en);
  letter-spacing: 0.04rem;
  color: #fff;
  background: var(--font-color);
  text-align: center;
  padding: 20px;
  margin: 5px auto;
  box-sizing: border-box;
}
.NF-link-btn::after {
  content: "";
  display: block;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 13px;
  background: url("img/link-btn-arrow.png") no-repeat;
  background-size: contain;
  transition: all 0.6s;
}
.NF-link-btn:hover::after {
  right: 8px;
}

@media screen and (max-width: 900px) {
  .NF-link-btn {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .NF-link-btn {
    width: 100%;
    padding: 15px;
  }
}
#notfound {
  text-align: center;
  padding: 200px 0 ;
  margin-top: 145px;
}
.notfound-inner {
  position: relative;
}
.NF-lower-wrapper {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
.NF-sect-heading{
  position: absolute;
  top: -20px;
  left: -3%;
  z-index: -1;
  font-family: "Karla", sans-serif;
  font-size: 140px;
  font-weight: 500;
  letter-spacing: -0.2rem;
  color: #f1f1f1;
}
#notfound .NF-sect-heading {
  top: -110px;
  left: 15%;
  font-size: 80px;
}
#notfound h2 {
  font-size: 24px;
  margin: 30px 0;
}
#notfound p {
  display: inline-block;
  text-align: left;
  margin-bottom: 60px;
}

@media screen and (max-width: 1024px) {
  #notfound {
    margin-top: 80px;
  }
}

@media screen and (max-width: 900px) {
  #notfound {
    padding: 200px 0;
  }
  #notfound .NF-sect-heading {
    left: 0;
    font-size: 80px;
  }
}
@media screen and (max-width: 767px) {
  #notfound {
    padding: 160px 0;
    margin-top: 60px;
  }
  #notfound .NF-sect-heading {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    font-size: 50px;
    letter-spacing: 0.01rem;
  }
  #notfound h2 {
    font-size: 18px;
    line-height: 1.4;
  }
  #notfound p {
    margin-bottom: 40px;
  }
}
/*-----------------------------------
404 header 2025/06/09 yoshioka 追加
-----------------------------------*/
.NF-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 90px;
  background: #fff;
  padding-top: 30px;
  box-sizing: border-box;
}
.NF-header-logo {
  width: 120px;
  margin: 0 auto 24px;
}

@media screen and (max-width: 1024px) {
  .NF-header {
    display: flex;
    align-items: center;
    height: 80px;
    padding-top: 0;
  }
  .header-logo {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .NF-header {
    height: 60px;
  }
  .NF-header-logo {
    width: 80px;
  }
}
/*-----------------------------------
404 footer 2025/06/09 yoshioka 追加
-----------------------------------*/
.NF-footer {
  position: relative;
  background: #777777;
  padding: 100px 0 120px;
  height: 50px;
}
#NF-footer_pagetop {
  position: absolute;
  top: 30px;
  right: 5%;
}
#NF-footer_pagetop img {
  width: 45px;
}
.NF-footer-top {
  position: absolute;
  top: -80px;
  left: 0;
  z-index: 100;
  max-width: 400px;
  width: 20%;
}
.NF-footer-logo-area {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #3b3a3a;
  aspect-ratio: 1 / 1;
}
.NF-footer-logo {
  width: 50%;
  min-width: 120px;
}
.NF-copyright {
  display: block;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.02rem;
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 8px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .NF-footer-top {
    width: 30%;
  }
}
@media screen and (max-width: 900px) {
  .NF-footer {
    padding: 25% 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .NF-footer {
    padding: 35% 0 30px;
  }
  #NF-footer_pagetop img {
    width: 35px;
  }
  .NF-footer-top {
    width: 50%;
  }
}


/*-----------------------------------
maintenance
-----------------------------------*/
.page-template-wpmm-page-template {
  background: var(--brand-primary);
}
#wp-block-themeisle-blocks-advanced-column-7a21d599 {
  border: solid 10px #ddd !important;
  background: #fff !important;
  padding: 60px !important;
}
#wp-block-themeisle-blocks-advanced-heading-84bfa495 {
  font-size: 40px !important;
}

@media screen and (max-width: 900px) {
  #wp-block-themeisle-blocks-advanced-column-7a21d599 {
    padding: 60px 40px !important;
  }
  #wp-block-themeisle-blocks-advanced-heading-84bfa495 {
    font-size: 40px !important;
  }
}

@media screen and (max-width: 767px) {
  #wp-block-themeisle-blocks-advanced-column-7a21d599 {
    padding: 40px 15px !important;
  }
  #wp-block-themeisle-blocks-advanced-heading-84bfa495 {
    font-size: 18px !important;
    font-weight: bold !important;
    margin-bottom: 0 !important;
  }
  .wp-block-image img {
    width: 100px !important;
  }
}
