@charset "UTF-8";
/*===
  #common
  ===*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

body {
  color: #ffffff;
  background-color: #0e0e0e;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  font-size: clamp(14px, 0.833vw, 16px);
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: all 0.5s ease;
}

a:hover {
  opacity: 0.6;
}

.main {
  overflow: hidden;
}

.container {
  width: 1840px;
  max-width: 100%;
  padding: 0 40px;
  padding: 0 clamp(20px, 2.083vw, 40px);
  margin: 0 auto;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}

.sec_ttl {
  padding-left: 40px;
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  position: relative;
}

@media screen and (max-width: 767px) {
  .sec_ttl {
    padding-left: 20px;
  }
}

.sec_ttl::before {
  position: absolute;
  content: "";
  background: url(../img/icon-sec_ttl.png) center center/cover no-repeat;
  width: 115px;
  height: 48px;
  top: -60px;
  left: 10px;
}

@media screen and (max-width: 767px) {
  .sec_ttl::before {
    width: 90px;
    height: 38px;
    top: -43px;
  }
}

.sec_ttl .ttl {
  font-size: clamp(28px, 2.1875vw, 42px);
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .sec_ttl .ttl {
    font-size: 24px;
  }
}

.sec_ttl .en_ttl {
  font-size: 12px;
  letter-spacing: 0.2em;
}

.simple_ttl {
  font-family: "Noto Serif JP", serif;
}

.simple_ttl .ttl {
  font-size: clamp(28px, 2.1875vw, 42px);
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .simple_ttl .ttl {
    font-size: 24px;
  }
}

.simple_ttl .en_ttl {
  font-size: 12px;
  letter-spacing: 0.2em;
}

.sec_btn a {
  display: inline-block;
  line-height: 1;
  padding: 20px 65px;
  border: 1px solid #fff;
  outline: 1px solid #fff;
  outline-offset: 2px;
  color: #fff;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.16em;
  transition: all 0.5s ease;
}

@media screen and (max-width: 767px) {
  .sec_btn a {
    font-size: 16px;
  }
}

.sec_btn a:hover {
  background-color: #5c5c5c;
}

.bg_illust {
  position: relative;
}

.bg_illust::before {
  position: absolute;
  content: "";
  background: url(../img/bg-illust.png) center center/cover no-repeat;
  width: 34.47916vw;
  height: 34.47916vw;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .bg_illust::before {
    width: 250px;
    height: 250px;
  }
}

.bg_illust-left {
  position: relative;
}

.bg_illust-left::after {
  position: absolute;
  content: "";
  background: url(../img/bg_illust-left.png) center center/cover no-repeat;
  width: 34.47916vw;
  height: 34.47916vw;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .bg_illust-left::after {
    width: 250px;
    height: 250px;
  }
}

/* ===============================================
# ヘッダー
=============================================== */
#header {
  z-index: 20;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: transparent;
}

@media screen and (max-width: 767px) {
  #header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
  }
}

#header.change-color {
  backdrop-filter: blur(20px);
  background-color: rgba(0, 0, 0, 0.379);
  transition: 0.3s;
}

#header.change-color .header-nav li > a {
  color: #fff;
  display: block;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

#header > .inner {
  display: flex;
  align-items: center;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  #header > .inner {
    display: block;
    padding-bottom: 8px;
    padding-top: 5px;
    padding-left: 10px;
  }
}

.header-left {
  margin-right: auto;
}

.header-logo {
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .header-logo {
    margin-top: 3px;
  }
}

.header-logo a {
  transition: all 0.3s ease 0s;
}

.header-logo a img {
  width: clamp(200px, 13.5416vw, 260px);
}

@media screen and (max-width: 767px) {
  .header-logo a img {
    width: 180px;
    position: relative;
    z-index: 41;
  }
}

.header-logo a:hover {
  opacity: 0.6;
}

.header-right {
  margin-left: auto;
}

.header-nav {
  top: 100px;
  left: 0;
  right: 0;
  z-index: 20;
}

@media screen and (max-width: 767px) {
  .header-nav {
    display: none;
  }
}

.header-nav > .inner {
  display: flex;
  align-items: center;
}

.header-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, 1.5625vw, 30px);
}

.header-nav li {
  margin-bottom: 12px;
}

.header-nav li:last-child {
  margin-right: 0;
}

.header-nav li > a {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all 0.3s ease 0s;
  opacity: 1;
  line-height: 1;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.header-nav li > a span {
  font-size: 12px;
}

.header-nav li > a:hover {
  opacity: 0.6;
}

.header-tel {
  text-align: center;
  margin: 0 clamp(10px, 1.5625vw, 30px);
  white-space: nowrap;
}

.header-tel .tel {
  font-size: clamp(22px, 1.4583vw, 28px);
  font-weight: 400;
  letter-spacing: 0.06;
}

.header-tel .tel span {
  font-size: 16px;
}

.header-tel .time {
  font-size: 15px;
  letter-spacing: 0.06em;
  text-align: right;
}

.header-contact a {
  background-color: #776bb3;
  display: block;
  text-align: center;
  padding: clamp(30px, 2.60416vw, 50px) clamp(20px, 2.083vw, 40px);
}

.header-contact a img {
  width: 30px;
  margin: 0 auto;
}

.header-contact a .txt {
  color: #fff;
  letter-spacing: 0.06em;
}

/* 以下、ドロップダウン */
li.menu-item-has-children {
  position: relative;
}

li.menu-item-has-children ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  gap: 18px;
  flex-direction: column;
  justify-content: left;
  background-color: #2c2c2c;
  padding: 15px 40px;
  margin: 0 auto;
}

li.menu-item-has-children:hover ul {
  visibility: visible;
  opacity: 1;
  top: 40px;
}

/* 以下、リンク色 */
.menu-item-has-children li {
  margin: 0 !important;
  text-align: left;
}

.menu-item li a {
  text-align: left;
  height: 20px !important;
  line-height: 20px !important;
  white-space: nowrap;
}

.header-list li ul li a {
  position: relative;
}

.header-list li ul li a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 10px solid #776bb3;
  border-right: 0;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.header-list li ul li a:hover {
  color: #fff;
  opacity: 0.6;
}

.menu-item li:hover > a {
  opacity: 0.6;
}

/* ===============================================
# ドロワー 
=============================================== */
.drawer {
  display: none;
}

@media screen and (max-width: 767px) {
  .drawer {
    display: block;
  }
}

.drawer-icon {
  cursor: pointer;
  font-size: 20px;
  position: absolute;
  right: 25px;
  text-align: center;
  top: 20px;
  z-index: 41;
  color: #fff;
}

.drawer-icon .bg {
  position: relative;
}

.drawer-icon .bg::after {
  position: absolute;
  content: "";
  clip-path: polygon(100% 0, 100% 50%, 50% 100%, 0 50%, 50% 0);
  background-color: #615796;
  width: 76px;
  height: 70px;
  top: -22px;
  right: -29px;
  z-index: -1;
}

.drawer-open {
  display: block;
}

.m_checked .drawer-open {
  display: none;
}

.drawer-close {
  display: none;
}

.m_checked .drawer-close {
  display: block;
}

.drawer-content {
  background: #2e2e2e;
  height: 100vh;
  left: 0;
  opacity: 0;
  overflow: scroll;
  padding: 170px 16px 250px;
  position: fixed;
  text-align: left;
  top: 0;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  width: 100%;
  z-index: 40;
}

.m_checked .drawer-content {
  opacity: 1;
  visibility: visible;
}

.drawer-nav li a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 6px solid transparent;
  color: #fff;
  display: block;
  font-size: 16px;
  padding: 40px 12px 40px 5px;
  text-decoration: none;
  text-align: center;
}

.drawer-nav li a:first-child {
  border-top: 1px dotted #fff;
}

.fa-times::before {
  color: #fff;
}

/* ===============================================
# ドロップダウン ドロワー 
=============================================== */
/*========= ナビゲーションドロップダウンのためのCSS ===============*/
/*==ナビゲーション全体の設定*/
.drawer-nav ul {
  list-style: none;
  text-align: center;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
.drawer-nav ul li {
  position: relative;
}

.drawer-nav ul li a:hover {
  color: #fff;
}

/*==矢印の設定*/
/*2階層目を持つliの矢印の設定*/
.drawer-nav ul li.has-child::before {
  content: "";
  position: absolute;
  right: 30px;
  top: 50px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

/*3階層目を持つliの矢印の設定*/
.drawer-nav ul ul li.has-child::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 21px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

/*== 2・3階層目の共通設定 */
/*hoverしたら表示*/
.drawer-nav li.has-child:hover > ul,
.drawer-nav li.has-child ul li:hover > ul,
.drawer-nav li.has-child:active > ul,
.drawer-nav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
.drawer-nav li.has-child ul li a {
  color: #fff;
  background-color: #62448c;
  padding: 15px 0;
}

.drawer-nav li.has-child ul li a:hover,
.drawer-nav li.has-child ul li a:active {
  background: #2993c1;
}

/*==3階層目*/
/*3階層目の位置*/
.drawer-nav li.has-child ul ul {
  top: 0;
  left: 182px;
  background: #62448c;
}

.drawer-nav li.has-child ul ul li a:hover,
.drawer-nav li.has-child ul ul li a:active {
  background: #62448c;
}

/*==768px以下の形状*/
@media screen and (max-width: 768px) {
  .drawer-nav {
    color: #fff;
  }
  .drawer-nav li.has-child ul,
  .drawer-nav li.has-child ul ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible;
    /*JSで制御するため一旦表示*/
    opacity: 1;
    /*JSで制御するため一旦表示*/
    display: none;
    /*JSのslidetoggleで表示させるため非表示に*/
    transition: none;
    /*JSで制御するためCSSのアニメーションを切る*/
  }
  .drawer-nav ul li a {
    color: #fff;
  }
  /*矢印の向き*/
  .drawer-nav ul li.has-child::before,
  .drawer-nav ul ul li.has-child::before {
    transform: rotate(135deg);
    right: 29px;
  }
  .drawer-nav ul li.has-child.active::before {
    transform: rotate(-45deg);
  }
}

.has-child ul {
  display: flex;
  flex-wrap: wrap;
  background-color: #776bb3;
  padding: 0;
}

.has-child ul li {
  width: 50%;
  /* 2カラムにするために幅を50%に設定 */
  box-sizing: border-box;
  /* パディングやボーダーを含めた幅を計算 */
  border-right: 1px dotted #fff;
  /* 縦の区切り線 */
}

.has-child ul li:nth-child(2n) {
  border-right: none;
  /* 右端の項目には区切り線を表示しない */
}

/* ===============================================
# fv
=============================================== */
.fv {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 767px) {
  .fv {
    height: 500px;
    overflow: unset;
    background-position: 80% center;
  }
}

@media screen and (max-width: 767px) {
  .fv_movie {
    height: 500px;
  }
}

.fv_movie video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .fv_movie video {
    height: 500px;
  }
}

.fv_txt-box {
  position: absolute;
  bottom: 5%;
  left: 5%;
}

@media screen and (max-width: 767px) {
  .fv_txt-box {
    left: 10px;
  }
}

.fv_txt-box h2 {
  font-size: clamp(20px, 2.0833vw, 40px);
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  letter-spacing: 0.1em;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .fv_txt-box h2 {
    font-size: 20px;
    margin-top: 15px;
    line-height: 1.8;
  }
}

.fv_news {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(400px, 28.64583vw, 550px);
}

@media screen and (max-width: 767px) {
  .fv_news {
    position: static;
    width: 100%;
  }
}

.fv_news .wrapper {
  display: flex;
}

.fv_news .wrapper .left {
  width: 70.91%;
}

@media screen and (max-width: 767px) {
  .fv_news .wrapper .left {
    width: 100%;
  }
}

.fv_news .wrapper .left .news {
  background-color: #62448c;
  padding: clamp(10px, 1.0416vw, 20px) clamp(15px, 1.30208vw, 25px);
}

.fv_news .wrapper .left .news a {
  color: #fff;
}

.fv_news .wrapper .left .news a .wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.fv_news .wrapper .left .news a .wrap .fv-sec_ttl {
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .fv_news .wrapper .left .news a .wrap .fv-sec_ttl {
    font-size: 18px;
  }
}

.fv_news .wrapper .left .news a .wrap .published {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.06em;
  line-height: 1;
  padding: 4px 15px;
  border: 1px solid #fff;
}

.fv_news .wrapper .left .news a .ttl {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.733;
  padding-left: clamp(10px, 1.5625vw, 30px);
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .fv_news .wrapper .left .news a .ttl {
    padding-left: 10px;
  }
}

.fv_news .wrapper .left .voice {
  background-color: #776bb3;
}

.fv_news .wrapper .left .voice a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 10px 0;
}

.fv_news .wrapper .left .voice a img {
  width: clamp(26px, 1.666vw, 32px);
}

@media screen and (max-width: 767px) {
  .fv_news .wrapper .left .voice a img {
    width: 26px;
  }
}

.fv_news .wrapper .left .voice a .txt {
  font-size: clamp(16px, 1.0416vw, 20px);
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 767px) {
  .fv_news .wrapper .left .voice a .txt {
    font-size: 18px;
  }
}

.fv_news .wrapper .right {
  width: 29%;
}

@media screen and (max-width: 767px) {
  .fv_news .wrapper .right {
    display: none;
  }
}

.fv_news .wrapper .right a {
  color: #fff;
  font-family: "Roboto", sans-serif;
  position: relative;
}

.fv_news .wrapper .right a img {
  height: 100%;
  object-fit: cover;
}

.fv_news .wrapper .right a .txt {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.fv_news .wrapper .right a .txt span {
  position: relative;
}

.fv_news .wrapper .right a .txt span::before {
  position: absolute;
  content: "";
  background: url(../img/icon-more.png) center center/cover no-repeat;
  width: 11px;
  height: 11px;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
}

/* ===============================================
# シラト工業について
=============================================== */
.t_about {
  padding-top: clamp(180px, 14.5833vw, 280px);
  padding-bottom: clamp(130px, 11.97916vw, 230px);
}

@media screen and (max-width: 767px) {
  .t_about {
    padding-bottom: 120px;
  }
}

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

@media screen and (max-width: 767px) {
  .t_about .wrapper {
    flex-direction: column-reverse;
  }
}

.t_about .wrapper .left {
  width: 50%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .t_about .wrapper .left {
    width: 100%;
    margin-top: 40px;
  }
}

.t_about .wrapper .left::after {
  position: absolute;
  content: "";
  background-color: rgba(255, 255, 255, 0.08);
  width: 48.4375vw;
  height: 36.4583vw;
  left: -80px;
  top: 63px;
  z-index: -1;
}

.t_about .wrapper .right {
  width: 46.25%;
  margin-top: 90px;
}

@media screen and (max-width: 767px) {
  .t_about .wrapper .right {
    width: 100%;
  }
}

.t_about .wrapper .right::before {
  right: -10%;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .t_about .wrapper .right::before {
    right: 0;
    bottom: 5%;
  }
}

.t_about .wrapper .right .txt {
  margin-top: clamp(40px, 3.90625vw, 75px);
  letter-spacing: 0.06em;
  line-height: 2.25;
}

@media screen and (max-width: 767px) {
  .t_about .wrapper .right .txt {
    margin-top: 40px;
    text-align: justify;
  }
}

.t_about .wrapper .right .sec_btn {
  margin-top: clamp(40px, 4.6875vw, 90px);
}

@media screen and (max-width: 767px) {
  .t_about .wrapper .right .sec_btn {
    text-align: center;
    margin-top: 40px;
  }
}

/* ===============================================
# 施工実績--TOPページ
=============================================== */
.t_work {
  --twork-bg: rgba(255, 255, 255, 0.42);
  padding: 200px 0 170px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .t_work {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}

.t_work::after {
  position: absolute;
  content: "";
  max-width: 1760px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  background-color: var(--twork-bg);
}

.t_work.gaikou {
  --twork-bg: rgba(140, 99, 198, 0.54);
}

.t_work.kaitai {
  --twork-bg: rgba(98, 68, 140, 0.42);
}

.t_work.kawara {
  --twork-bg: rgba(62, 48, 82, 0.42);
}

.t_work:not(.gaikou):not(.kaitai):not(.kawara) {
  --twork-bg: rgba(255, 255, 255, 0.42);
}

@media screen and (max-width: 767px) {
  .t_work .sec_btn {
    text-align: center;
    margin-top: 60px;
  }
}

.t_work-top {
  display: flex;
  justify-content: space-around;
}

.t_work-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media screen and (max-width: 767px) {
  .t_work-right {
    flex-direction: column;
  }
}

.t_work-right .cat_select {
  width: fit-content;
  position: relative;
}

.t_work-right .cat_select__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  cursor: pointer;
  font: inherit;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  background-color: transparent;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.16em;
  border-bottom: 1px dotted #fff;
}

@media screen and (max-width: 767px) {
  .t_work-right .cat_select__toggle {
    font-size: 16px;
  }
}

.t_work-right .cat_select__toggle .caret {
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.t_work-right .cat_select__list {
  position: absolute;
  width: 100%;
  margin: 0.6rem 0 0;
  padding: 0.4rem 0;
  list-style: none;
  background-color: #2c2c2c;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.28s ease, opacity 0.2s ease, visibility 0.2s;
  z-index: 1;
}

.t_work-right .cat_select__list li a {
  display: block;
  padding: 0.7em 1rem;
  color: inherit;
  text-decoration: none;
  padding-left: 40px;
  position: relative;
}

.t_work-right .cat_select__list li a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 10px solid #776bb3;
  border-right: 0;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.t_work-right .cat_select__list li a:hover {
  opacity: 0.6;
}

.t_work-right .cat_select.is-open .cat_select__toggle .caret {
  transform: rotate(-135deg);
}

.t_work-right .cat_select.is-open .cat_select__list {
  max-height: 480px;
  opacity: 1;
  visibility: visible;
}

.t_work-slider {
  margin-top: 50px;
}

.t_work-slider ul li {
  margin: 0 20px;
  width: auto;
}

@media screen and (max-width: 767px) {
  .t_work-slider ul li {
    margin: 0 10px;
  }
}

.t_work-slider ul li:nth-child(odd) {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .t_work-slider ul li:nth-child(odd) {
    margin-top: 50px;
  }
}

.t_work-slider ul li a {
  display: block;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: clamp(260px, 17.1875vw, 330px);
  padding: 10px 0;
}

@media screen and (max-width: 767px) {
  .t_work-slider ul li a {
    width: 200px;
  }
}

.t_work-slider ul li a:hover {
  transform: translateY(-5px);
}

.t_work-slider ul li a .img_wrap {
  aspect-ratio: 285/425;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
  position: relative;
}

.t_work-slider ul li a .img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.t_work-slider ul li a .img_wrap .cat {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  background-color: #8c63c6;
  padding: 15px 50px;
  width: 70%;
  text-align: center;
  clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 767px) {
  .t_work-slider ul li a .img_wrap .cat {
    padding: 10px 20px;
  }
}

.t_work-slider .content {
  margin-top: 20px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .t_work-slider .content {
    margin-top: 15px;
  }
}

.t_work-slider .content .info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Noto Serif JP", serif;
}

.t_work-slider .content .ttl {
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 1.866;
  padding-right: 60px;
  text-align: justify;
  position: relative;
}

@media screen and (max-width: 767px) {
  .t_work-slider .content .ttl {
    padding-right: 40px;
    line-height: 1.5;
  }
}

.t_work-slider .content .ttl::after {
  position: absolute;
  content: "";
  background: url(../img/arrow-right_bg-black.png) center center/cover no-repeat;
  width: 45px;
  height: 45px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .t_work-slider .content .ttl::after {
    width: 30px;
    height: 30px;
  }
}

.t_work-slider .slick-track {
  will-change: transform;
}

.slick-slider div {
  transition: none;
}

/* ===============================================
# 選ばれる理由--TOPページ
=============================================== */
.t_reason {
  padding-top: clamp(140px, 12.5vw, 240px);
  position: relative;
}

@media screen and (max-width: 767px) {
  .t_reason {
    padding-top: 120px;
  }
}

.t_reason::after {
  position: absolute;
  content: "";
  background: url(../img/reason-logo.webp) center center/cover no-repeat;
  width: 806px;
  height: 806px;
  top: 15%;
  left: 2%;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .t_reason::after {
    width: 300px;
    height: 300px;
    top: 2%;
    left: -13%;
  }
}

.t_reason .simple_ttl {
  text-align: center;
}

.t_reason .sec_btn {
  text-align: center;
  margin-top: 40px;
}

.t_reason .wrapper {
  margin-top: 38px;
}

.t_reason .wrapper ul {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .t_reason .wrapper ul {
    flex-direction: column;
  }
}

.t_reason .wrapper ul li {
  background-color: #fff;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  width: 325px;
  height: 325px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .t_reason .wrapper ul li {
    width: 100%;
    height: auto;
    clip-path: none;
    justify-content: space-between;
    display: block;
    padding-bottom: 0;
    margin-top: 15px;
  }
  .t_reason .wrapper ul li:first-child {
    margin-top: 0;
  }
}

.t_reason .wrapper ul li::before {
  position: absolute;
  content: "";
  background-color: #62448c;
  width: 117px;
  height: 6px;
  top: 40px;
  left: 62%;
  transform: translateX(-50%) rotate(45deg);
}

@media screen and (max-width: 767px) {
  .t_reason .wrapper ul li::before {
    width: 70px;
    height: 3px;
    left: 0;
    top: 0;
    transform: none;
  }
}

.t_reason .wrapper ul li::after {
  position: absolute;
  content: "";
  background-color: #62448c;
  width: 117px;
  height: 6px;
  top: 40px;
  left: 38%;
  transform: translateX(-50%) rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .t_reason .wrapper ul li::after {
    width: 3px;
    height: 70px;
    left: 0;
    top: 0;
    transform: none;
  }
}

.t_reason .wrapper ul li:nth-child(odd) {
  margin: 170px -155px 0;
}

@media screen and (max-width: 767px) {
  .t_reason .wrapper ul li:nth-child(odd) {
    margin: 15px 0 0;
  }
}

.t_reason .wrapper ul li .content {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .t_reason .wrapper ul li .content {
    display: flex;
    align-items: center;
    padding: 10px 0;
  }
}

.t_reason .wrapper ul li .content .no {
  color: #62448c;
  font-size: 26px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .t_reason .wrapper ul li .content .no {
    width: 30%;
    padding-bottom: 15px;
  }
}

.t_reason .wrapper ul li .content .no span {
  font-size: 12px;
  letter-spacing: 0.2em;
}

.t_reason .wrapper ul li .content .txt {
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 1.555;
  color: #0e0e0e;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .t_reason .wrapper ul li .content .txt {
    font-size: 16px;
    margin-top: 0;
    width: 70%;
    padding-right: 50px;
  }
}

.t_reason .banner_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1220px;
  margin: 160px auto 0;
}

@media screen and (max-width: 767px) {
  .t_reason .banner_wrapper {
    margin-top: 100px;
  }
}

.t_reason .banner_item {
  width: 48%;
}

@media screen and (max-width: 767px) {
  .t_reason .banner_item {
    width: 100%;
  }
}

/* ===============================================
# お客様の声--TOPページ
=============================================== */
.t_voice {
  padding-top: 400px;
  padding-top: clamp(180px, 20.83vw, 400px);
}

@media screen and (max-width: 767px) {
  .t_voice {
    padding-top: 150px;
  }
}

.t_voice::before {
  top: 0;
  right: 0;
}

.t_voice .btn_wrapper {
  margin-top: 100px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .t_voice .btn_wrapper {
    margin-top: 60px;
  }
}

.t_voice .btn_wrapper .sec_btn {
  margin-top: 20px;
}

.t_voice .btn_wrapper .sec_btn:first-child {
  margin-top: 0;
}

.t_voice .btn_wrapper .sec_btn a {
  min-width: 380px;
}

@media screen and (max-width: 767px) {
  .t_voice .btn_wrapper .sec_btn a {
    min-width: 360px;
  }
}

.t_voice .warpper {
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .t_voice .warpper {
    flex-direction: column;
  }
}

.t_voice .warpper::after {
  bottom: -25%;
  left: 0;
}

@media screen and (max-width: 767px) {
  .t_voice .warpper::after {
    bottom: -50%;
  }
}

.t_voice .warpper .left {
  width: clamp(400px, 32.03125vw, 615px);
  margin-top: 100px;
}

.t_voice .warpper .left .sec_ttl {
  display: inline-block;
}

.t_voice .warpper .left .sec_ttl .en_ttl {
  text-align: right;
}

.t_voice .warpper .right {
  width: calc(100% - 32.03125vw);
}

@media screen and (max-width: 767px) {
  .t_voice .warpper .right {
    width: 100%;
    margin-top: 40px;
  }
}

.t_voice .warpper .right .list_wrapper .list {
  padding-bottom: 2.083vw;
  margin-bottom: 2.083vw;
  border-bottom: 1px dotted #fff;
  padding-right: clamp(10px, 2.083vw, 40px);
  transition: all 0.5s ease;
}

@media screen and (max-width: 767px) {
  .t_voice .warpper .right .list_wrapper .list {
    padding-right: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
}

.t_voice .warpper .right .list_wrapper .list:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.t_voice .warpper .right .list_wrapper .list a {
  display: flex;
  align-items: center;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .t_voice .warpper .right .list_wrapper .list a {
    flex-direction: column;
  }
}

.t_voice .warpper .right .list_wrapper .list a .list_left {
  width: 230px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .t_voice .warpper .right .list_wrapper .list a .list_left {
    width: 100%;
  }
}

.t_voice .warpper .right .list_wrapper .list a .list_left .info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 10px 35px;
  background-color: #62448c;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

.t_voice .warpper .right .list_wrapper .list a .list_left .info .cat {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
}

.t_voice .warpper .right .list_wrapper .list a .list_left .info .name {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
}

.t_voice .warpper .right .list_wrapper .list a .list_left picture {
  display: block;
  text-align: center;
  margin-top: 25px;
}

.t_voice .warpper .right .list_wrapper .list a .list_left picture img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .t_voice .warpper .right .list_wrapper .list a .list_left picture img {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }
}

.t_voice .warpper .right .list_wrapper .list a .list_right {
  width: calc(100% - 230px);
}

@media screen and (max-width: 767px) {
  .t_voice .warpper .right .list_wrapper .list a .list_right {
    width: 100%;
    margin-top: 30px;
  }
}

.t_voice .warpper .right .list_wrapper .list a .list_right .ttl {
  font-size: clamp(18px, 1.0416vw, 20px);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .t_voice .warpper .right .list_wrapper .list a .list_right .ttl {
    font-size: 18px;
    text-align: center;
  }
}

.t_voice .warpper .right .list_wrapper .list a .list_right .txt {
  font-size: 15px;
  letter-spacing: 0.06em;
  margin-top: clamp(20px, 1.5625vw, 30px);
  line-height: 1.866;
}

@media screen and (max-width: 767px) {
  .t_voice .warpper .right .list_wrapper .list a .list_right .txt {
    margin-top: 20px;
    text-align: justify;
    font-size: 15px !important;
  }
}

@media screen and (max-width: 767px) {
  .t_voice .warpper .right .list_wrapper .list a .list_right .txt p {
    font-size: 15px;
  }
}

@media screen and (max-width: 767px) {
  .t_voice .warpper {
    /* ドット少し下げたい場合（任意） */
  }
  .t_voice .warpper .right .list_wrapper .slick-arrow {
    position: absolute;
    top: 150px;
    z-index: 5;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 9999px;
    background: rgba(98, 68, 140, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .t_voice .warpper .right .list_wrapper .slick-prev {
    left: 0px;
  }
  .t_voice .warpper .right .list_wrapper .slick-next {
    right: 0px;
  }
  .t_voice .warpper .right .list_wrapper .slick-arrow svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    display: block;
  }
  .t_voice .warpper .right .list_wrapper .slick-arrow.slick-disabled {
    opacity: 0.35;
    cursor: default;
  }
  .t_voice .warpper .right .list_wrapper .slick-dots {
    margin-top: 8px;
  }
}

/* ===============================================
# 代表挨拶--TOPページ
=============================================== */
.t_message {
  padding-top: clamp(140px, 17.7083vw, 340px);
}

@media screen and (max-width: 767px) {
  .t_message {
    padding-top: 100px;
  }
}

.t_message .sec_ttl {
  display: inline-block;
}

.t_message .sec_ttl .en_ttl {
  text-align: right;
}

.t_message .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .t_message .wrapper {
    flex-direction: column;
  }
}

.t_message .wrapper .left {
  width: 43.41%;
  padding-top: 100px;
}

@media screen and (max-width: 767px) {
  .t_message .wrapper .left {
    width: 100%;
  }
}

.t_message .wrapper .left .txt {
  margin-top: clamp(30px, 3.125vw, 60px);
  line-height: 2.25;
  letter-spacing: 0.06em;
  margin-left: 15px;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .t_message .wrapper .left .txt {
    margin-top: 30px;
    margin-left: 0;
  }
}

.t_message .wrapper .left .name {
  text-align: right;
  margin-top: 20px;
  font-size: 26px;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 767px) {
  .t_message .wrapper .left .name {
    font-size: 20px;
  }
}

.t_message .wrapper .left .name span {
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .t_message .wrapper .left .name span {
    font-size: 16px;
  }
}

.t_message .wrapper .right {
  width: 42.05%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .t_message .wrapper .right {
    width: 100%;
    margin-top: 30px;
  }
}

.t_message .wrapper .right::after {
  position: absolute;
  content: "";
  background-color: rgba(255, 255, 255, 0.08);
  width: 48.4375vw;
  height: 31.25vw;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .t_message .wrapper .right::after {
    width: 400px;
    height: 250px;
  }
}

.t_message .wrapper .right picture img {
  display: block;
  width: 90%;
  margin: 0 auto;
}

/* ===============================================
# 問い合わせ　TOP
=============================================== */
.t_contact {
  padding-top: clamp(150px, 18.22916vw, 350px);
}

@media screen and (max-width: 767px) {
  .t_contact {
    padding-top: 200px;
  }
}

.t_contact .simple_ttl {
  text-align: center;
}

.t_contact-left {
  max-width: 1400px;
  margin: 0 auto;
  padding: 180px 300px;
  padding: clamp(60px, 9.375vw, 180px) clamp(15px, 15.625vw, 300px);
  background-color: rgba(255, 255, 255, 0.35);
  position: relative;
}

@media screen and (max-width: 767px) {
  .t_contact-left {
    width: 100%;
    padding: 60px 15px;
  }
}

.t_contact-box .contact-contents__items {
  max-width: 1008px;
  margin: 70px auto 0;
}

@media screen and (max-width: 767px) {
  .t_contact-box .contact-contents__items {
    margin-top: 40px;
  }
}

.t_contact-box .contact-contents__item--required {
  display: flex;
  align-items: flex-start;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .t_contact-box .contact-contents__item--required {
    flex-direction: column;
    margin-top: 20px;
  }
}

.t_contact-box .contact-contents__item--required:first-child {
  margin-top: 0;
}

.t_contact-box .contact-contents__item--required .required {
  position: relative;
}

.t_contact-box .contact-contents__item--required .required::after {
  position: absolute;
  content: "必須";
  font-size: 14px;
  font-family: "Noto Serif JP", serif;
  background-color: #8c63c6;
  clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
  padding: 8px 35px;
  line-height: 1;
  left: 0;
  top: -30px;
}

@media screen and (max-width: 767px) {
  .t_contact-box .contact-contents__item--required .required::after {
    font-size: 12px;
    top: -28px;
  }
}

.t_contact-box .contact-contents__item--required .any {
  position: relative;
}

.t_contact-box .contact-contents__item--required .any::after {
  position: absolute;
  content: "任意";
  font-size: 14px;
  font-family: "Noto Serif JP", serif;
  background-color: #3c3c3c;
  clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
  padding: 8px 35px;
  line-height: 1;
  left: 0;
  top: -30px;
}

@media screen and (max-width: 767px) {
  .t_contact-box .contact-contents__item--required .any::after {
    font-size: 12px;
    top: -28px;
  }
}

.t_contact-box .contact-contents__item--required-kind {
  align-items: center;
}

.t_contact-box .contact-contents__item-title {
  width: 190px;
  height: 50px;
  line-height: 50px;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 767px) {
  .t_contact-box .contact-contents__item-title {
    display: inline;
    width: auto;
    height: 42px;
    line-height: 42px;
    font-size: 16px;
    margin-bottom: 5px;
    width: 100%;
  }
}

.t_contact-box .contact-contents__item-input--text {
  width: calc(100% - 190px);
}

@media screen and (max-width: 767px) {
  .t_contact-box .contact-contents__item-input--text {
    width: 100%;
    margin-top: 20px;
  }
}

.t_contact-box .wpcf7-form-control-wrap {
  display: flex;
}

@media screen and (max-width: 767px) {
  .t_contact-box .wpcf7-form-control-wrap {
    margin-top: 0;
  }
}

.t_contact-box .contact-contents__item-textarea {
  width: calc(100% - 190px);
}

@media screen and (max-width: 767px) {
  .t_contact-box .contact-contents__item-textarea {
    width: 100%;
    margin-top: 20px;
  }
}

.t_contact-box .contact-btn-wrap {
  text-align: center;
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .t_contact-box .contact-btn-wrap {
    margin-top: 30px;
  }
}

.t_contact-box .contact-contents__submit {
  display: inline-block;
}

.t_contact-box .contact-contents__btn {
  width: 297px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 1px solid #fff;
  outline: 1px solid #fff;
  outline-offset: 2px;
  background-color: transparent;
  color: #fff;
  text-align: center;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1rem;
  cursor: pointer;
  transition: all 0.5s ease;
}

.t_contact-box .contact-contents__btn:hover {
  opacity: 0.6;
  background-color: #5c5c5c;
}

@media screen and (max-width: 767px) {
  .t_contact-box .contact-contents__btn {
    width: 200px;
    font-size: 18px;
    height: 40px !important;
    display: flex;
    justify-content: center;
    border-radius: 0 !important;
  }
}

.t_contact-box input[type="text"], .t_contact-box input[type="email"], .t_contact-box input[type="tel"] {
  width: 100%;
  border: none;
  height: 50px;
  background: #f8f8f8;
  padding-left: 10px;
}

@media screen and (max-width: 767px) {
  .t_contact-box input[type="text"], .t_contact-box input[type="email"], .t_contact-box input[type="tel"] {
    height: 42px;
    border-radius: 0;
  }
}

.t_contact-box textarea {
  width: 100%;
  min-height: 180px;
  resize: vertical;
  border: none;
  background: #ffffff;
  padding: 10px;
}

@media screen and (max-width: 767px) {
  .t_contact-box textarea {
    min-height: 200px;
    border-radius: 0;
  }
}

.t_contact-box .wpcf7-form-control {
  display: flex;
  flex-wrap: wrap;
}

.t_contact-box input[type="radio"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.t_contact-box .wpcf7-list-item.first {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .t_contact-box .wpcf7-list-item.first {
    margin-top: 0;
  }
}

.t_contact-box .wpcf7-list-item {
  display: block;
  font-size: 16px;
  margin-left: 30px;
}

@media screen and (max-width: 767px) {
  .t_contact-box .wpcf7-list-item {
    font-size: 16px;
    width: 100%;
    margin-left: 0;
    margin-top: 15px;
  }
}

.t_contact-box span.wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.t_contact-box span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  border-radius: 50%;
  background-color: #ffffff;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.t_contact-box span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background-color: #62448c;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

.t_contact-box input[type="radio"]:checked + span.wpcf7-list-item-label::after {
  display: block;
}

/* ===============================================
# 対応エリア
=============================================== */
.area {
  padding-top: clamp(190px, 15.10416vw, 290px);
  padding-bottom: clamp(180px, 14.583vw, 280px);
}

@media screen and (max-width: 767px) {
  .area {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}

.area .container {
  position: relative;
}

.area .container::after {
  position: absolute;
  content: "";
  background: url(../img/map.webp) center center/cover no-repeat;
  width: 802px;
  height: 585px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .area .container::after {
    width: 350px;
    height: 250px;
    top: unset;
    right: unset;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
  }
}

.area_content {
  max-width: 1120px;
}

.area_content .sec_ttl {
  display: inline-block;
}

.area_content .sec_ttl .en_ttl {
  text-align: right;
}

.area_item {
  padding-left: 85px;
  padding-right: 80px;
  margin-top: clamp(40px, 3.64583vw, 70px);
  border-bottom: 1px dotted #fff;
  padding-bottom: 37px;
  margin-bottom: 37px;
}

@media screen and (max-width: 767px) {
  .area_item {
    padding-left: 0;
    padding-right: 0;
    margin-top: 40px;
  }
}

.area_item:last-child {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.area_item .ttl {
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .area_item .ttl {
    font-size: 18px;
  }
}

.area_item .txt {
  line-height: 2.25;
  letter-spacing: 0.06em;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .area_item .txt {
    padding-left: 10px;
    line-height: 2;
    text-align: justify;
  }
}

/* ===============================================
# フッター
=============================================== */
@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 60px;
  }
}

.footer .top {
  padding: clamp(60px, 6.25vw, 120px) 0;
  border-top: 1px dotted #fff;
  border-bottom: 1px dotted #fff;
}

@media screen and (max-width: 767px) {
  .footer .top {
    padding: 60px 0;
  }
}

.footer .top .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(40px, 7.2916vw, 140px);
}

@media screen and (max-width: 767px) {
  .footer .top .wrapper {
    flex-direction: column;
    gap: 40px;
  }
}

.footer .top .wrapper .logo img {
  max-width: 260px;
}

@media screen and (max-width: 767px) {
  .footer .top .wrapper .logo img {
    max-width: 230px;
  }
}

.footer .top .wrapper .code {
  letter-spacing: 0.06em;
  line-height: 2;
  white-space: nowrap;
}

.footer .top .wrapper .code a {
  border-bottom: 1px dotted #fff;
  color: #fff;
}

.footer .top .wrapper .tel_wrap {
  font-size: clamp(30px, 2.0833vw, 40px);
  letter-spacing: 0.06em;
  font-family: "Roboto", sans-serif;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .footer .top .wrapper .tel_wrap {
    font-size: 30px;
  }
}

.footer .top .wrapper .tel_wrap span {
  font-size: 16px;
}

.footer .top .wrapper .tel_wrap .time {
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  line-height: 1;
}

.footer .bottom {
  padding: clamp(60px, 6.25vw, 120px) 0;
}

@media screen and (max-width: 767px) {
  .footer .bottom {
    padding: 60px 0;
  }
}

.footer .bottom .wrapper {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .footer .bottom .wrapper {
    flex-direction: column;
  }
}

.footer .bottom .wrapper .footer_list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(15px, 2.08333vw, 40px);
}

@media screen and (max-width: 767px) {
  .footer .bottom .wrapper .footer_list {
    gap: 10px;
    justify-content: center;
    padding-left: 20px;
  }
}

@media screen and (max-width: 767px) {
  .footer .bottom .wrapper .footer_list li {
    width: 40%;
  }
}

.footer .bottom .wrapper .footer_list li a {
  color: #fff;
  letter-spacing: 0.06em;
}

.footer .bottom .wrapper .copy {
  color: #9b9b9b;
}

@media screen and (max-width: 767px) {
  .footer .bottom .wrapper .copy {
    text-align: center;
    margin-top: 40px;
  }
}

/* ===============================================
# CTA下部固定
=============================================== */
.cta_btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}

.cta_btn .wrapper {
  display: flex;
}

.cta_btn .wrapper .item {
  width: 100%;
}

.cta_btn .wrapper .item a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 60px;
}

.cta_btn .wrapper .item a .txt {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.06em;
}

.cta_btn .wrapper .tel {
  width: 32.56%;
  background-color: #62448c;
}

.cta_btn .wrapper .tel img {
  width: 20px;
}

.cta_btn .wrapper .contact {
  width: 67.44%;
  background-color: #776bb3;
}

.cta_btn .wrapper .contact img {
  width: 30px;
}

/* ===============================================
# 下層共通
=============================================== */
.l_main {
  padding-top: clamp(180px, 11.97916vw, 230px);
}

@media screen and (max-width: 767px) {
  .l_main {
    padding-top: 80px;
  }
}

.mv_img {
  padding-top: clamp(60px, 5.2083vw, 100px);
}

@media screen and (max-width: 767px) {
  .mv_img {
    padding-top: 20px;
  }
}

.c_mv-breadcrumb {
  margin-top: 20px;
  text-align: right;
}

.breadcrumb {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  padding: 13px 23px;
  border-radius: 20px;
  font-weight: 300;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    line-height: 1.2;
    margin: 0px 5px 14px;
    padding: 0;
    font-size: 12px;
  }
}

.breadcrumb .home::before {
  content: "\f015";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  margin-right: 10px;
  color: #fff;
}

.breadcrumb a {
  text-decoration: none;
  transition: all 0.3s ease 0s;
  color: #fff;
}

.breadcrumb a:hover {
  opacity: 0.6;
}

.breadcrumb i {
  margin-left: 10px;
  margin-right: 10px;
}

.banner .wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.banner .wrapper .item {
  width: 40%;
}

@media screen and (max-width: 767px) {
  .banner .wrapper .item {
    width: 100%;
  }
}

.page_navi {
  margin-top: 20px;
}

.page_navi .navi {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page_navi .navi li {
  padding-right: 40px;
  margin-right: 40px;
  border-right: 1px dotted #fff;
}

@media screen and (max-width: 767px) {
  .page_navi .navi li {
    padding-right: 15px;
    margin-right: 15px;
  }
}

.page_navi .navi li:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}

.page_navi .navi li a {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.16em;
  color: #fff;
}

.page_navi .navi li a.is-active {
  color: #8e5ad7;
}

.tab_navi .navi a {
  display: inline-block;
  padding: 10px 16px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.tab_navi .navi a.is-active {
  color: #776bb3;
  border-color: #776bb3;
}

.pagination {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .pagination {
    margin-top: 40px;
  }
}

.pagination a {
  transition: all 0.3s ease 0s;
}

.pagination a:hover {
  color: #776bb3;
}

.pagination a.next,
.pagination a.prev {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #424e57;
  background-color: transparent;
  width: 40px;
  height: 58px;
  position: relative;
}

.pagination a.next::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border: 1px solid #776bb3;
  border-width: 1px 1px 0 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  right: 10px;
}

.pagination a.prev::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border: 1px solid #776bb3;
  border-width: 0 0 1px 1px;
  position: absolute;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  right: 23px;
}

.pagination a.next:hover,
.pagination a.prev:hover {
  opacity: 0.6;
}

.page-numbers {
  display: inline-block;
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  margin-right: 10px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  padding: 10px 17px;
  color: #fff;
}

.page-numbers:last-child {
  margin-right: 0;
}

.page-numbers.current {
  color: #fff;
  background-color: #776bb3;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.page-numbers.dots,
.page-numbers.next,
.page-numbers.prev {
  border: none;
  line-height: 40px;
  min-width: initial;
  width: auto;
}

.sec_category {
  position: relative;
  padding-right: 50px;
}

.sec_category::before {
  top: -20%;
  left: -50%;
}

@media screen and (max-width: 767px) {
  .sec_category::before {
    top: 0;
    right: 0;
    left: unset;
  }
}

.sec_category::after {
  position: absolute;
  content: "";
  background-color: rgba(255, 255, 255, 0.08);
  width: 340px;
  height: 300px;
  top: -30px;
  right: 0;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .sec_category::after {
    height: 120px;
  }
}

.sec_category .simple_ttl {
  text-align: right;
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .sec_category .simple_ttl {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 15px;
  }
}

.sec_category .simple_ttl .ttl {
  font-size: clamp(22px, 1.45833vw, 28px);
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .sec_category .simple_ttl .ttl {
    font-size: 20px;
  }
}

.sec_category ul {
  margin-top: 20px;
}

.sec_category ul li {
  margin-top: 2px;
}

.sec_category ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #2e2e2e;
  width: clamp(280px, 17.70833vw, 340px);
  min-height: clamp(60px, 4.1666vw, 80px);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  transition: all 0.5s ease;
}

@media screen and (max-width: 767px) {
  .sec_category ul li a {
    width: 320px;
    height: 50px;
  }
}

.sec_category ul li a:hover {
  background-color: #62448c;
}

.sec_category ul li a.is-active {
  background-color: #62448c;
  color: #fff;
}

/* 矢印ボタン（ベース） */
.sec_category .cat_toggle {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  position: relative;
  display: none;
  /* PCでは非表示、SPで表示 */
}

/* 矢印アイコン（CSSだけで描画） */
.sec_category .cat_toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  /* ▼風（右下矢印） */
  transition: transform 0.2s ease;
  opacity: 0.95;
}

/* 開いた時は上向きに */
.sec_category.is-open .cat_toggle::before {
  transform: rotate(-135deg);
}

@media screen and (max-width: 767px) {
  .sec_category .cat_toggle {
    display: inline-block;
  }
  .sec_category ul {
    display: none;
    margin-top: 12px;
  }
  .sec_category.is-open ul {
    display: block;
  }
}

/* ===============================================
# 選ばれる理由
=============================================== */
.reason {
  padding-top: 130px;
  padding-bottom: clamp(200px, 22.91666vw, 440px);
}

@media screen and (max-width: 767px) {
  .reason {
    padding-top: 80px;
    padding-bottom: 150px;
  }
}

.reason .wrapper .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dotted #fff;
  padding-bottom: clamp(100px, 13.02083vw, 250px);
  margin-bottom: clamp(100px, 9.89583vw, 190px);
}

@media screen and (max-width: 767px) {
  .reason .wrapper .wrap {
    flex-direction: column;
    padding-bottom: 100px;
    margin-bottom: 80px;
  }
}

.reason .wrapper .wrap:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.reason .wrapper .wrap:nth-child(even) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .reason .wrapper .wrap:nth-child(even) {
    flex-direction: column;
  }
}

.reason .wrapper .wrap:nth-child(1)::before {
  right: 0;
  bottom: -10%;
}

.reason .wrapper .wrap:nth-child(3)::after {
  left: 0;
  bottom: -40%;
}

.reason .wrapper .wrap:nth-child(5)::before {
  right: 0;
  bottom: -80%;
}

@media screen and (max-width: 767px) {
  .reason .wrapper .wrap:nth-child(5)::before {
    bottom: -25%;
  }
}

.reason .wrapper .wrap .content {
  width: 44.72%;
}

@media screen and (max-width: 767px) {
  .reason .wrapper .wrap .content {
    width: 100%;
  }
}

.reason .wrapper .wrap .content .top {
  display: flex;
  align-items: center;
  gap: 38px;
}

@media screen and (max-width: 767px) {
  .reason .wrapper .wrap .content .top {
    gap: 15px;
  }
}

.reason .wrapper .wrap .content .top .check {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  letter-spacing: 0.1em;
  background-color: #fff;
  color: #62448c;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 767px) {
  .reason .wrapper .wrap .content .top .check {
    width: 60px;
    height: 60px;
    font-size: 18px;
    line-height: 1;
    padding-bottom: 0;
  }
}

.reason .wrapper .wrap .content .top .check::before {
  position: absolute;
  content: "";
  background-color: #62448c;
  width: 58px;
  height: 3px;
  top: 34%;
  right: -7px;
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 767px) {
  .reason .wrapper .wrap .content .top .check::before {
    width: 20px;
    height: 2px;
    top: 38%;
    right: -1px;
  }
}

.reason .wrapper .wrap .content .top .check::after {
  position: absolute;
  content: "";
  background-color: #62448c;
  width: 58px;
  height: 3px;
  top: 67%;
  right: -6px;
  transform: translateY(-50%) rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .reason .wrapper .wrap .content .top .check::after {
    width: 20px;
    height: 2px;
    top: 61%;
    right: -2px;
  }
}

.reason .wrapper .wrap .content .top .check span {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .reason .wrapper .wrap .content .top .check span {
    font-size: 10px;
  }
}

.reason .wrapper .wrap .content .top .ttl {
  font-size: clamp(24px, 2.1875vw, 42px);
  width: calc(100% - 158px);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .reason .wrapper .wrap .content .top .ttl {
    font-size: 18px;
    width: calc(100% - 75px);
  }
}

.reason .wrapper .wrap .content .txt {
  margin-top: 30px;
  padding-left: 60px;
  letter-spacing: 0.06em;
  line-height: 2.25;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .reason .wrapper .wrap .content .txt {
    padding-left: 20px;
    margin-top: 20px;
    line-height: 2;
  }
}

.reason .wrapper .wrap .img {
  width: 48.3%;
  padding: 0 clamp(20px, 5.20833vw, 100px);
  position: relative;
}

@media screen and (max-width: 767px) {
  .reason .wrapper .wrap .img {
    width: 100%;
    padding: 0;
    margin-top: 30px;
    text-align: center;
  }
}

.reason .wrapper .wrap .img::after {
  position: absolute;
  content: "";
  background-color: rgba(140, 99, 198, 0.17);
  width: 44.27083vw;
  height: 22.760416vw;
  top: 63px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .reason .wrapper .wrap .img::after {
    width: 100%;
    height: 150px;
  }
}

@media screen and (max-width: 767px) {
  .reason .wrapper .wrap .img img {
    width: 80%;
  }
}

/* ===============================================
# 瓦チップについて
=============================================== */
.l_kawara .about {
  padding-top: clamp(150px, 11.97916vw, 230px);
  padding-bottom: clamp(100px, 9.89583vw, 190px);
  text-align: center;
  border-bottom: 1px dotted #fff;
}

@media screen and (max-width: 767px) {
  .l_kawara .about {
    padding-top: 100px;
    padding-bottom: 80px;
    text-align: justify;
  }
}

.l_kawara .about::before {
  top: -10%;
  left: 60%;
  transform: translateX(-50%);
}

.l_kawara .about .sec_ttl {
  text-align: left;
  margin-right: 100px;
}

.l_kawara .about .txt {
  margin-top: clamp(40px, 3.64583vw, 70px);
  letter-spacing: 0.06em;
  line-height: 2.25;
}

@media screen and (max-width: 767px) {
  .l_kawara .about .txt {
    margin-top: 30px;
    line-height: 2;
  }
}

.l_kawara .flow {
  padding-top: clamp(100px, 5.2083vw, 180px);
  padding-bottom: clamp(100px, 5.2083vw, 180px);
}

@media screen and (max-width: 767px) {
  .l_kawara .flow {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.l_kawara .flow .wrapper {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .l_kawara .flow .wrapper {
    flex-direction: column-reverse;
  }
}

.l_kawara .flow .wrapper .left {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .l_kawara .flow .wrapper .left {
    width: 100%;
  }
}

.l_kawara .flow .wrapper .left video {
  width: 100%;
  height: 745px;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .l_kawara .flow .wrapper .left video {
    height: 300px;
  }
}

.l_kawara .flow .wrapper .right {
  width: 42.19%;
}

@media screen and (max-width: 767px) {
  .l_kawara .flow .wrapper .right {
    width: 100%;
  }
}

.l_kawara .flow .wrapper .right .simple_ttl {
  padding-left: 90px;
  display: flex;
  align-items: end;
  gap: 25px;
}

@media screen and (max-width: 767px) {
  .l_kawara .flow .wrapper .right .simple_ttl {
    gap: 15px;
    padding-left: 15px;
  }
}

.l_kawara .flow .wrapper .right .simple_ttl .ttl {
  font-size: clamp(26px, 1.875vw, 36px);
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .l_kawara .flow .wrapper .right .simple_ttl .ttl {
    font-size: 24px;
  }
}

.l_kawara .flow .wrapper .right ul {
  margin-top: 50px;
  margin-left: -60px;
}

@media screen and (max-width: 767px) {
  .l_kawara .flow .wrapper .right ul {
    margin-left: 15px;
    margin-right: 15px;
  }
}

.l_kawara .flow .wrapper .right ul li {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .l_kawara .flow .wrapper .right ul li {
    gap: 10px;
    border-bottom: 1px dotted #fff;
    padding-bottom: 30px;
  }
  .l_kawara .flow .wrapper .right ul li:last-child {
    border-bottom: none;
  }
}

.l_kawara .flow .wrapper .right ul li:first-child {
  margin-top: 0;
}

.l_kawara .flow .wrapper .right ul li .point {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  letter-spacing: 0.1em;
  background-color: #fff;
  color: #62448c;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 767px) {
  .l_kawara .flow .wrapper .right ul li .point {
    width: 50px;
    height: 50px;
    font-size: 16px;
    line-height: 1;
    padding-bottom: 0;
  }
}

.l_kawara .flow .wrapper .right ul li .point::before {
  position: absolute;
  content: "";
  background-color: #62448c;
  width: 58px;
  height: 3px;
  top: 34%;
  right: -7px;
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 767px) {
  .l_kawara .flow .wrapper .right ul li .point::before {
    width: 20px;
    height: 2px;
    top: 38%;
    right: -2px;
  }
}

.l_kawara .flow .wrapper .right ul li .point::after {
  position: absolute;
  content: "";
  background-color: #62448c;
  width: 58px;
  height: 3px;
  top: 67%;
  right: -6px;
  transform: translateY(-50%) rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .l_kawara .flow .wrapper .right ul li .point::after {
    width: 20px;
    height: 2px;
    top: 65%;
    right: -1px;
  }
}

.l_kawara .flow .wrapper .right ul li .point span {
  font-size: 12px;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 767px) {
  .l_kawara .flow .wrapper .right ul li .point span {
    font-size: 10px;
  }
}

.l_kawara .flow .wrapper .right ul li .content {
  width: calc(100% - 180px);
}

@media screen and (max-width: 767px) {
  .l_kawara .flow .wrapper .right ul li .content {
    width: calc(100% - 60px);
  }
}

.l_kawara .flow .wrapper .right ul li .content .ttl {
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .l_kawara .flow .wrapper .right ul li .content .ttl {
    font-size: 18px;
  }
}

.l_kawara .flow .wrapper .right ul li .content .txt {
  margin-top: 15px;
  padding-left: 20px;
  font-size: 15px;
  line-height: 2.25;
}

@media screen and (max-width: 767px) {
  .l_kawara .flow .wrapper .right ul li .content .txt {
    text-align: justify;
    line-height: 2;
    margin-top: 10px;
    padding-left: 10px;
  }
}

.l_kawara .effect .wrapper {
  background: url(../img/bg_kawara-effect.webp) center center/cover no-repeat;
  padding: clamp(0px, 5.2083vw, 100px) clamp(0px, 6.77083vw, 130px);
}

@media screen and (max-width: 767px) {
  .l_kawara .effect .wrapper {
    padding: 0;
  }
}

.l_kawara .effect .wrapper .content {
  background-color: rgba(0, 0, 0, 0.7);
  padding: clamp(60px, 8.333vw, 160px) clamp(15px, 5.2083vw, 100px) clamp(60px, 6.25vw, 120px);
  display: flex;
  justify-content: space-between;
  align-items: end;
}

@media screen and (max-width: 767px) {
  .l_kawara .effect .wrapper .content {
    padding: 120px 15px 60px;
    flex-direction: column;
  }
}

.l_kawara .effect .wrapper .content .left {
  width: 47.24%;
}

@media screen and (max-width: 767px) {
  .l_kawara .effect .wrapper .content .left {
    width: 100%;
  }
}

.l_kawara .effect .wrapper .content .left .sec_ttl {
  margin-bottom: 70px;
}

@media screen and (max-width: 767px) {
  .l_kawara .effect .wrapper .content .left .sec_ttl {
    margin-bottom: 0px;
  }
}

.l_kawara .effect .wrapper .content .left .sec_ttl .en_ttl {
  text-align: right;
}

.l_kawara .effect .wrapper .content .effect_list li {
  margin-top: 50px;
}

.l_kawara .effect .wrapper .content .effect_list li:first-child {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .l_kawara .effect .wrapper .content .effect_list li:first-child {
    margin-top: 50px;
  }
}

.l_kawara .effect .wrapper .content .effect_list li .ttl {
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .l_kawara .effect .wrapper .content .effect_list li .ttl {
    font-size: 18px;
  }
}

.l_kawara .effect .wrapper .content .effect_list li .txt {
  margin-top: 10px;
  padding-left: 10px;
  font-size: 15px;
  line-height: 2.25;
}

@media screen and (max-width: 767px) {
  .l_kawara .effect .wrapper .content .effect_list li .txt {
    line-height: 2;
    text-align: justify;
  }
}

.l_kawara .effect .wrapper .content .right {
  width: 47.24%;
}

@media screen and (max-width: 767px) {
  .l_kawara .effect .wrapper .content .right {
    width: 100%;
  }
}

.l_kawara .sale {
  padding-top: clamp(150px, 16.666vw, 320px);
  padding-bottom: clamp(130px, 9.375vw, 180px);
}

@media screen and (max-width: 767px) {
  .l_kawara .sale {
    padding-top: 100px;
  }
}

.l_kawara .sale::before {
  top: -10%;
  right: 0;
}

@media screen and (max-width: 767px) {
  .l_kawara .sale::before {
    top: -5%;
  }
}

.l_kawara .sale::after {
  bottom: 10%;
}

@media screen and (max-width: 767px) {
  .l_kawara .sale::after {
    bottom: 0;
  }
}

.l_kawara .sale .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .l_kawara .sale .wrapper {
    flex-direction: column;
  }
}

.l_kawara .sale .wrapper .left {
  width: 44.83%;
}

@media screen and (max-width: 767px) {
  .l_kawara .sale .wrapper .left {
    width: 100%;
  }
}

.l_kawara .sale .wrapper .left .read {
  margin-top: 70px;
  letter-spacing: 0.06em;
  line-height: 2.25;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .l_kawara .sale .wrapper .left .read {
    margin-top: 50px;
    padding-left: 0;
  }
}

.l_kawara .sale .wrapper .left ul {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .l_kawara .sale .wrapper .left ul {
    margin-top: 30px;
  }
}

.l_kawara .sale .wrapper .left ul li {
  padding: 45px 20px;
  border-top: 1px dotted #fff;
}

@media screen and (max-width: 767px) {
  .l_kawara .sale .wrapper .left ul li {
    padding: 30px 0;
  }
}

.l_kawara .sale .wrapper .left ul li .ttl {
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .l_kawara .sale .wrapper .left ul li .ttl {
    font-size: 18px;
  }
}

.l_kawara .sale .wrapper .left ul li .txt {
  line-height: 2.1;
  margin-top: 15px;
  padding-left: 15px;
}

@media screen and (max-width: 767px) {
  .l_kawara .sale .wrapper .left ul li .txt {
    line-height: 2;
    padding-left: 10px;
  }
}

.l_kawara .sale .wrapper .right {
  width: 48.3%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .l_kawara .sale .wrapper .right {
    width: 100%;
  }
}

.l_kawara .sale .wrapper .right::after {
  position: absolute;
  content: "";
  background-color: rgba(140, 99, 198, 0.17);
  width: 48.4375vw;
  height: 31.25vw;
  top: 63px;
  right: -80px;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .l_kawara .sale .wrapper .right::after {
    right: 0;
    width: 100%;
    height: 200px;
  }
}

.l_kawara .sale .wrapper .right img {
  display: block;
  max-width: 740px;
  width: 100%;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .l_kawara .sale .wrapper .right img {
    width: 80%;
    margin: 0 auto;
  }
}

.l_kawara .sale .btn_wrapper {
  margin-top: clamp(100px, 10.416vw, 200px);
  display: flex;
  justify-content: center;
  gap: 30px;
}

@media screen and (max-width: 767px) {
  .l_kawara .sale .btn_wrapper {
    margin-top: 100px;
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .l_kawara .sale .btn_wrapper .sec_btn {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .l_kawara .sale .btn_wrapper .sec_btn a {
    padding-left: 10px;
    padding-right: 10px;
    min-width: 320px;
    text-align: center;
  }
}

/* ===============================================
# 事業紹介
=============================================== */
.l_service .service {
  border-bottom: 1px dotted #fff;
}

.l_service .service::before {
  top: 0;
  right: 20%;
}

@media screen and (max-width: 767px) {
  .l_service .service::before {
    right: 0;
  }
}

.l_service .service .top {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .l_service .service .top {
    text-align: left;
  }
}

.l_service .service .top .sec_ttl {
  margin-right: 100px;
}

@media screen and (max-width: 767px) {
  .l_service .service .top .sec_ttl {
    margin-right: 0;
  }
}

.l_service .service .top .sec_ttl .en_ttl {
  text-align: left;
}

.l_service .service .top .read_ttl {
  margin-top: 70px;
  font-size: clamp(22px, 1.45833vw, 28px);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .l_service .service .top .read_ttl {
    font-size: 18px;
    margin-top: 40px;
  }
}

.l_service .service .top .read_txt {
  margin-top: 30px;
  letter-spacing: 0.06em;
  line-height: 2.25;
}

@media screen and (max-width: 767px) {
  .l_service .service .top .read_txt {
    line-height: 2;
    text-align: justify;
  }
}

.l_service .service .wrapper {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .l_service .service .wrapper {
    flex-direction: column-reverse;
    margin-top: 60px;
  }
}

.l_service .service .wrapper .content {
  width: 44.89%;
}

@media screen and (max-width: 767px) {
  .l_service .service .wrapper .content {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .l_service .service .wrapper .content ul {
    margin-top: 60px;
  }
}

.l_service .service .wrapper .content ul li {
  margin-bottom: clamp(10px, 2.08333vw, 40px);
  padding-bottom: clamp(10px, 2.08333vw, 40px);
  padding-left: clamp(10px, 2.08333vw, 40px);
  padding-right: clamp(10px, 2.08333vw, 40px);
  border-bottom: 1px dotted #fff;
}

@media screen and (max-width: 767px) {
  .l_service .service .wrapper .content ul li {
    margin-bottom: 30px;
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }
}

.l_service .service .wrapper .content ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.l_service .service .wrapper .content ul li .ttl {
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .l_service .service .wrapper .content ul li .ttl {
    font-size: 18px;
  }
}

.l_service .service .wrapper .content ul li .txt {
  margin-top: 15px;
  padding-left: 20px;
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 2.13;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .l_service .service .wrapper .content ul li .txt {
    padding-left: 10px;
    line-height: 2;
  }
}

.l_service .service .wrapper .img {
  width: 48.3%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .l_service .service .wrapper .img {
    width: 100%;
    text-align: center;
  }
}

.l_service .service .wrapper .img::after {
  position: absolute;
  content: "";
  background-color: rgba(140, 99, 198, 0.17);
  width: 48.4375vw;
  height: 31.25vw;
  top: 63px;
  right: -80px;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .l_service .service .wrapper .img::after {
    width: 100%;
    height: 180px;
    right: 0;
  }
}

.l_service .service .wrapper .img img {
  display: block;
  max-width: 740px;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .l_service .service .wrapper .img img {
    width: 80%;
    margin: 0 auto;
  }
}

.l_service .service .sec_btn {
  text-align: center;
  margin-top: clamp(60px, 5.20833vw, 100px);
}

@media screen and (max-width: 767px) {
  .l_service .service .sec_btn {
    margin-top: 60px;
  }
}

.l_service .demolition {
  padding-top: clamp(150px, 10.41666vw, 200px);
  padding-bottom: clamp(150px, 10.41666vw, 200px);
}

@media screen and (max-width: 767px) {
  .l_service .demolition {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.l_service .external {
  padding-top: clamp(150px, 13.02083vw, 250px);
  padding-bottom: clamp(150px, 13.02083vw, 250px);
}

@media screen and (max-width: 767px) {
  .l_service .external {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.l_service .external .wrapper {
  flex-direction: row-reverse;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .l_service .external .wrapper {
    flex-direction: column-reverse;
  }
}

.l_service .external .wrapper .img {
  width: 48.3%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .l_service .external .wrapper .img {
    width: 100%;
  }
}

.l_service .external .wrapper .img::after {
  position: absolute;
  content: "";
  background-color: rgba(140, 99, 198, 0.17);
  width: 48.4375vw;
  height: 31.25vw;
  top: 63px;
  left: -80px;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .l_service .external .wrapper .img::after {
    left: 0;
    width: 100%;
    height: 180px;
  }
}

.l_service .external .wrapper .img img {
  display: block;
  max-width: 740px;
  margin-right: auto;
}

.l_service .service_kawara {
  padding-top: clamp(100px, 9.375vw, 180px);
  padding-bottom: clamp(150px, 13.02083vw, 250px);
}

@media screen and (max-width: 767px) {
  .l_service .service_kawara {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.l_service .service_kawara .bg {
  background: url(../img/service-kawara.webp) center center/cover no-repeat;
  padding: clamp(60px, 5.20833vw, 100px) clamp(20px, 6.77083vw, 130px);
}

@media screen and (max-width: 767px) {
  .l_service .service_kawara .bg {
    padding: 0;
  }
}

.l_service .service_kawara .bg .wrapper {
  background-color: rgba(0, 0, 0, 0.7);
  padding: clamp(100px, 6.77083vw, 130px) clamp(40px, 3.125vw, 60px);
}

@media screen and (max-width: 767px) {
  .l_service .service_kawara .bg .wrapper {
    padding: 100px 15px 60px;
  }
}

.l_service .service_kawara .bg .wrapper .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(50px, 7.8125vw, 150px);
}

@media screen and (max-width: 767px) {
  .l_service .service_kawara .bg .wrapper .wrap {
    flex-direction: column;
    align-items: baseline;
    gap: 60px;
  }
}

.l_service .service_kawara .bg .wrapper .wrap .sec_ttl {
  white-space: nowrap;
}

.l_service .service_kawara .bg .wrapper .wrap .content .txt {
  line-height: 2.25;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .l_service .service_kawara .bg .wrapper .wrap .content .txt {
    line-height: 2;
  }
}

.l_service .service_kawara .bg .wrapper .wrap .content .sec_btn {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .l_service .service_kawara .bg .wrapper .wrap .content .sec_btn {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .l_service .service_kawara .bg .wrapper .wrap .content .sec_btn a {
    padding-left: 30px;
    padding-right: 30px;
    text-align: center;
  }
}

/* ===============================================
# よくあるご質問
=============================================== */
.l_faq .faq {
  padding-top: clamp(140px, 12.5vw, 240px);
  padding-bottom: clamp(100px, 8.333vw, 160px);
  border-bottom: 1px dotted #fff;
}

@media screen and (max-width: 767px) {
  .l_faq .faq {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.l_faq .faq:last-child {
  border-bottom: none;
  padding-bottom: clamp(100px, 13.02083vw, 250px);
}

@media screen and (max-width: 767px) {
  .l_faq .faq:last-child {
    padding-bottom: 100px;
  }
}

.l_faq .faq::before {
  top: 0;
  right: 20%;
}

@media screen and (max-width: 767px) {
  .l_faq .faq::before {
    right: 0;
  }
}

.l_faq .faq .top {
  text-align: center;
}

.l_faq .faq .sec_ttl {
  display: inline-block;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .l_faq .faq .sec_ttl .ttl {
    font-size: 20px;
  }
}

.l_faq .faq .sec_ttl .en_ttl {
  text-align: right;
}

.l_faq .faq .wrapper {
  max-width: 1240px;
  margin: clamp(60px, 5.2083vw, 100px) auto 0;
}

@media screen and (max-width: 767px) {
  .l_faq .faq .wrapper {
    margin-top: 60px;
  }
}

.l_faq .faq .wrapper dl {
  margin-top: 50px;
}

.l_faq .faq .wrapper dl:first-child {
  margin-top: 0;
}

.l_faq .faq .wrapper dl dt {
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 35px;
}

@media screen and (max-width: 767px) {
  .l_faq .faq .wrapper dl dt {
    font-size: 16px;
    gap: 10px;
    text-align: justify;
  }
}

.l_faq .faq .wrapper dl dt span {
  font-size: 26px;
  font-family: "Noto Serif JP", serif;
  background-color: #fff;
  color: #62448c;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 767px) {
  .l_faq .faq .wrapper dl dt span {
    font-size: 18px;
    width: 40px;
    height: 40px;
  }
}

.l_faq .faq .wrapper dl dt span::before {
  position: absolute;
  content: "";
  background-color: #62448c;
  width: 40px;
  height: 2px;
  top: 34%;
  right: -5px;
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 767px) {
  .l_faq .faq .wrapper dl dt span::before {
    width: 20px;
    top: 35%;
    right: -2px;
  }
}

.l_faq .faq .wrapper dl dt span::after {
  position: absolute;
  content: "";
  background-color: #62448c;
  width: 40px;
  height: 2px;
  top: 67%;
  right: -4px;
  transform: translateY(-50%) rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .l_faq .faq .wrapper dl dt span::after {
    width: 20px;
    top: 69%;
    right: -1px;
  }
}

.l_faq .faq .wrapper dl dt p {
  width: calc(100% - 105px);
}

@media screen and (max-width: 767px) {
  .l_faq .faq .wrapper dl dt p {
    width: calc(100% - 50px);
  }
}

.l_faq .faq .wrapper dl dd {
  margin-top: -15px;
  padding-left: 130px;
  letter-spacing: 0.06em;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .l_faq .faq .wrapper dl dd {
    padding-left: 20px;
    padding-top: 20px;
  }
}

/* ===============================================
# 施工の流れ
=============================================== */
.l_flow .flow {
  padding-top: 120px;
  padding-bottom: clamp(100px, 11.97916vw, 230px);
  display: none;
}

@media screen and (max-width: 767px) {
  .l_flow .flow {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}

.l_flow .flow.is-active {
  display: block;
}

.l_flow .flow .wrapper {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
}

.l_flow .flow .wrapper::before {
  position: absolute;
  content: "";
  border: 1px dotted #fff;
  width: 1px;
  height: 90%;
  left: 58px;
  top: 5%;
}

@media screen and (max-width: 767px) {
  .l_flow .flow .wrapper::before {
    left: 28px;
    top: 1%;
  }
}

.l_flow .flow .wrapper .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .l_flow .flow .wrapper .item {
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 60px;
    gap: 10px;
  }
}

.l_flow .flow .wrapper .item:first-child {
  margin-top: 0;
}

.l_flow .flow .wrapper .item .point {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  letter-spacing: 0.1em;
  background-color: #fff;
  color: #62448c;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 767px) {
  .l_flow .flow .wrapper .item .point {
    width: 60px;
    height: 60px;
    font-size: 18px;
    line-height: 1;
    padding-bottom: 0;
  }
}

.l_flow .flow .wrapper .item .point::before {
  position: absolute;
  content: "";
  background-color: #62448c;
  width: 58px;
  height: 3px;
  top: 34%;
  right: -7px;
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 767px) {
  .l_flow .flow .wrapper .item .point::before {
    width: 20px;
    height: 2px;
    top: 39%;
    right: -2px;
  }
}

.l_flow .flow .wrapper .item .point::after {
  position: absolute;
  content: "";
  background-color: #62448c;
  width: 58px;
  height: 3px;
  top: 67%;
  right: -6px;
  transform: translateY(-50%) rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .l_flow .flow .wrapper .item .point::after {
    width: 20px;
    height: 2px;
    top: 63%;
    right: -1px;
  }
}

.l_flow .flow .wrapper .item .point span {
  font-size: 12px;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 767px) {
  .l_flow .flow .wrapper .item .point span {
    font-size: 10px;
  }
}

.l_flow .flow .wrapper .item .wrap {
  display: flex;
  align-items: center;
  width: calc(100% - 200px);
}

@media screen and (max-width: 767px) {
  .l_flow .flow .wrapper .item .wrap {
    flex-wrap: wrap;
    width: calc(100% - 70px);
    gap: 10px;
  }
}

@media screen and (max-width: 767px) {
  .l_flow .flow .wrapper .item picture {
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }
}

.l_flow .flow .wrapper .item picture img {
  max-width: 420px;
}

@media screen and (max-width: 767px) {
  .l_flow .flow .wrapper .item picture img {
    width: 80%;
  }
}

.l_flow .flow .wrapper .item .content {
  width: 51.27%;
  margin-left: 75px;
}

@media screen and (max-width: 767px) {
  .l_flow .flow .wrapper .item .content {
    width: 100%;
    margin-left: auto;
    margin-top: 10px;
  }
}

.l_flow .flow .wrapper .item .content .ttl {
  font-size: clamp(22px, 1.5625vw, 30px);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .l_flow .flow .wrapper .item .content .ttl {
    font-size: 18px;
    text-align: center;
  }
}

.l_flow .flow .wrapper .item .content .txt {
  margin-top: 25px;
  letter-spacing: 0.03em;
  line-height: 2;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .l_flow .flow .wrapper .item .content .txt {
    padding-left: 0;
    text-align: justify;
    margin-top: 15px;
  }
}

/* ===============================================
# 会社概要
=============================================== */
.l_compnay .message {
  padding-top: 130px;
  padding-bottom: clamp(100px, 9.375vw, 180px);
}

@media screen and (max-width: 767px) {
  .l_compnay .message {
    padding-top: 60px;
    padding-bottom: 100px;
  }
}

.l_compnay .message .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .l_compnay .message .wrapper {
    flex-direction: column;
  }
}

.l_compnay .message .wrapper .content {
  width: 43.41%;
}

@media screen and (max-width: 767px) {
  .l_compnay .message .wrapper .content {
    width: 100%;
  }
}

.l_compnay .message .wrapper .content .ttl {
  font-size: clamp(24px, 2.1875vw, 42px);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .l_compnay .message .wrapper .content .ttl {
    font-size: 22px;
  }
}

.l_compnay .message .wrapper .content .ttl span:last-child {
  text-align: right;
  margin-left: clamp(50px, 10.416vw, 200px);
}

@media screen and (max-width: 767px) {
  .l_compnay .message .wrapper .content .ttl span:last-child {
    margin-left: 80px;
  }
}

.l_compnay .message .wrapper .content .txt {
  margin-top: 40px;
  line-height: 2.25;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .l_compnay .message .wrapper .content .txt {
    margin-top: 20px;
    text-align: justify;
    line-height: 2;
  }
}

.l_compnay .message .wrapper .content .name {
  margin-top: 30px;
  text-align: right;
  font-size: clamp(22px, 1.35416vw, 26px);
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 767px) {
  .l_compnay .message .wrapper .content .name {
    margin-top: 20px;
    font-size: 22px;
  }
}

.l_compnay .message .wrapper .content .name span {
  font-size: clamp(16px, 1.0416vw, 20px);
  font-family: "Noto Sans JP", sans-serif;
  margin-right: 15px;
}

@media screen and (max-width: 767px) {
  .l_compnay .message .wrapper .content .name span {
    font-size: 16px;
  }
}

.l_compnay .message .wrapper .img {
  width: 42.05%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .l_compnay .message .wrapper .img {
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
}

.l_compnay .message .wrapper .img::after {
  position: absolute;
  content: "";
  background-color: rgba(255, 255, 255, 0.08);
  width: 48.4375vw;
  height: 31.25vw;
  top: 63px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .l_compnay .message .wrapper .img::after {
    width: 100%;
    height: 200px;
  }
}

.l_compnay .message .wrapper .img img {
  width: 90%;
  margin: 0 auto;
}

.l_compnay .overview {
  background: url(../img/company-overview_bg.webp) center center/cover no-repeat;
  padding: clamp(0px, 5.20833vw, 100px) clamp(0px, 6.77083vw, 130px);
}

@media screen and (max-width: 767px) {
  .l_compnay .overview {
    padding: 0;
  }
}

.l_compnay .overview .wrapper {
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 13.02083vw, 250px);
  padding: 120px 60px;
}

@media screen and (max-width: 767px) {
  .l_compnay .overview .wrapper {
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 60px 15px;
    gap: 60px;
  }
}

.l_compnay .overview .wrapper .left img {
  display: block;
  max-width: 320px;
}

@media screen and (max-width: 767px) {
  .l_compnay .overview .wrapper .left img {
    width: 180px;
  }
}

.l_compnay .overview .wrapper .right dl {
  display: flex;
  align-items: center;
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .l_compnay .overview .wrapper .right dl {
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dotted #fff;
  }
}

.l_compnay .overview .wrapper .right dl:first-child {
  margin-top: 0;
}

.l_compnay .overview .wrapper .right dl dt {
  width: 125px;
  font-size: clamp(16px, 1.0416vw, 20px);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .l_compnay .overview .wrapper .right dl dt {
    width: 100%;
    font-size: 18px;
  }
}

.l_compnay .overview .wrapper .right dl dd {
  width: calc(100% - 125px);
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .l_compnay .overview .wrapper .right dl dd {
    width: 100%;
    font-size: 16px;
    margin-top: 10px;
    padding-left: 20px;
  }
}

.l_compnay .overview .wrapper .right dl dd a {
  color: #fff;
}

.l_compnay .map {
  padding-top: 80px;
  padding-bottom: 180px;
}

@media screen and (max-width: 767px) {
  .l_compnay .map {
    padding-top: 60px;
    padding-bottom: 100px;
  }
}

.l_compnay .map .wrapper {
  aspect-ratio: 1760/920;
}

.l_compnay .map .wrapper iframe {
  width: 100%;
  height: 100%;
}

/* ===============================================
# スタッフ紹介
=============================================== */
.l_staff .staff {
  padding-top: 130px;
  padding-bottom: clamp(120px, 9.375vw, 180px);
}

@media screen and (max-width: 767px) {
  .l_staff .staff {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}

.l_staff .staff .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .l_staff .staff .wrapper {
    flex-direction: column;
  }
}

.l_staff .staff .wrapper .item {
  width: 46.02%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .l_staff .staff .wrapper .item {
    width: 100%;
    margin-top: 60px;
  }
  .l_staff .staff .wrapper .item:first-child {
    margin-top: 0;
  }
}

.l_staff .staff .wrapper .item::after {
  position: absolute;
  content: "";
  background-color: rgba(140, 99, 198, 0.17);
  width: 100%;
  height: 80%;
  bottom: 0;
  z-index: -1;
}

.l_staff .staff .wrapper .item:nth-child(n + 3) {
  margin-top: 90px;
}

@media screen and (max-width: 767px) {
  .l_staff .staff .wrapper .item:nth-child(n + 3) {
    margin-top: 60px;
  }
}

.l_staff .staff .wrapper .item picture {
  display: block;
  padding: 0 clamp(20px, 4.1666vw, 80px);
}

@media screen and (max-width: 767px) {
  .l_staff .staff .wrapper .item picture {
    padding: 0;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .l_staff .staff .wrapper .item picture img {
    width: 80%;
  }
}

.l_staff .staff .wrapper .item .content {
  padding: 40px 60px 60px;
  padding: 40px clamp(15px, 3.125vw, 60px) 60px;
}

@media screen and (max-width: 767px) {
  .l_staff .staff .wrapper .item .content {
    padding: 30px 15px 40px;
  }
}

.l_staff .staff .wrapper .item .content .name {
  text-align: center;
  font-size: clamp(22px, 1.5625vw, 30px);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .l_staff .staff .wrapper .item .content .name {
    font-size: 18px;
  }
}

.l_staff .staff .wrapper .item .content .name span {
  font-size: clamp(16px, 1.04167vw, 20px);
  margin-right: 30px;
}

@media screen and (max-width: 767px) {
  .l_staff .staff .wrapper .item .content .name span {
    font-size: 14px;
  }
}

.l_staff .staff .wrapper .item .content .referral {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 480px;
  margin: 20px auto 0;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .l_staff .staff .wrapper .item .content .referral {
    padding-left: 0;
  }
}

.l_staff .staff .wrapper .item .content .referral li {
  width: 50%;
}

.l_staff .staff .wrapper .item .content .referral li:nth-child(3) {
  width: 100%;
  margin-top: 10px;
}

.l_staff .staff .wrapper .item .content .txt {
  margin-top: 30px;
  letter-spacing: 0.06em;
  line-height: 2;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .l_staff .staff .wrapper .item .content .txt {
    margin-top: 20px;
  }
}

/* ===============================================
# プライバシーポリシー
=============================================== */
.policy {
  padding-top: 110px;
  padding-bottom: 180px;
}

@media screen and (max-width: 767px) {
  .policy {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}

.policy::before {
  top: -10%;
  right: 15%;
}

@media screen and (max-width: 767px) {
  .policy::before {
    top: -5%;
    right: 0;
  }
}

.policy::after {
  bottom: 0;
}

.policy .wrapper {
  max-width: 1240px;
  margin: 0 auto;
}

.policy .wrapper .item {
  margin-bottom: 60px;
  padding: 0 80px 60px;
  border-bottom: 1px dotted #fff;
}

@media screen and (max-width: 767px) {
  .policy .wrapper .item {
    padding: 0 0 30px;
    margin-bottom: 30px;
  }
}

.policy .wrapper .item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.policy .wrapper .item .ttl {
  font-size: clamp(18px, 1.25vw, 24px);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .policy .wrapper .item .ttl {
    font-size: 18px;
  }
}

.policy .wrapper .item .txt {
  letter-spacing: 0.06em;
  line-height: 2;
  margin-top: 15px;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .policy .wrapper .item .txt {
    padding-left: 10px;
  }
}

/* ===============================================
# お問い合わせ
=============================================== */
.l_contact {
  padding-top: 130px;
  padding-bottom: 250px;
}

@media screen and (max-width: 767px) {
  .l_contact {
    padding-top: 60px;
    padding-bottom: 100px;
  }
}

.l_contact .contact {
  max-width: 1240px;
  margin: 0 auto;
}

.l_contact .contact::before {
  top: -15%;
  right: 0;
}

@media screen and (max-width: 767px) {
  .l_contact .contact::before {
    top: 0;
  }
}

.l_contact .contact::after {
  left: -10%;
  bottom: 0;
}

.l_contact .c_contact-top_read {
  line-height: 2;
  letter-spacing: 0.06em;
  padding-bottom: 30px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .l_contact .c_contact-top_read {
    text-align: justify;
  }
}

.l_contact .c_contact-top_read a {
  color: #fff;
  border-bottom: 1px dotted #fff;
}

.l_contact .c_contact-top_required {
  display: inline-block;
  padding-left: 80px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .l_contact .c_contact-top_required {
    padding-left: 30px;
  }
}

.l_contact .c_contact-top_required::before {
  position: absolute;
  content: "";
  background-color: #776bb3;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .l_contact .c_contact-top_required::before {
    left: 0;
  }
}

.l_contact .l_conatct-wrapper {
  margin-top: 30px;
}

.l_contact .c_contact-txt {
  font-weight: 500;
  line-height: 2;
}

.l_contact .contact-contents__items {
  border-top: 1px dotted #fff;
}

.l_contact .contact-contents__item--required {
  padding: clamp(30px, 3.125vw, 60px) clamp(30px, 2.60417vw, 50px);
  display: flex;
  align-items: center;
  border-bottom: 1px dotted #fff;
}

@media screen and (max-width: 767px) {
  .l_contact .contact-contents__item--required {
    flex-direction: column;
    padding: 20px 15px;
  }
}

.l_contact .contact-contents__item--required:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.l_contact .flex_start {
  align-items: flex-start;
}

.l_contact .required {
  display: block;
  position: relative;
}

.l_contact .required::after {
  position: absolute;
  content: "";
  background-color: #776bb3;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .l_contact .required::after {
    right: unset;
    margin-left: 10px;
  }
}

.l_contact .contact-contents__item-title {
  width: 230px;
  height: 60px;
  line-height: 60px;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 767px) {
  .l_contact .contact-contents__item-title {
    display: inline;
    width: auto;
    height: 42px;
    line-height: 42px;
    font-size: 16px;
    margin-bottom: 5px;
    width: 100%;
  }
}

.l_contact .contact-contents__item-title p {
  display: inline-block;
}

.l_contact .contact-contents__item-input--text {
  width: calc(100% - 230px);
}

@media screen and (max-width: 767px) {
  .l_contact .contact-contents__item-input--text {
    width: 100%;
  }
}

.l_contact .contact-contents__item-input--text_flex {
  display: flex;
  align-items: center;
}

.l_contact .contact-contents__item-input--text_flex p {
  font-size: 16px;
}

.l_contact .contact-contents__item-input--text_flex .input_first {
  max-width: 160px;
  margin-right: 10px;
  margin-left: 16px;
}

@media screen and (max-width: 767px) {
  .l_contact .contact-contents__item-input--text_flex .input_first {
    max-width: 120px;
  }
}

.l_contact .wpcf7-form-control-wrap {
  margin-top: 15px;
}

.l_contact .wpcf7-form-control {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.l_contact .contact-contents__item-textarea {
  width: calc(100% - 230px);
}

@media screen and (max-width: 767px) {
  .l_contact .contact-contents__item-textarea {
    width: 100%;
  }
}

.l_contact .textarea_read {
  color: #a7a7a7;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-top: 12px;
}

.l_contact .contact-btn-wrap {
  text-align: center;
  margin-top: 90px;
}

@media screen and (max-width: 767px) {
  .l_contact .contact-btn-wrap {
    margin-top: 40px;
  }
}

.l_contact .contact-contents__submit {
  width: 300px;
  display: inline-block;
  position: relative;
}

@media screen and (max-width: 767px) {
  .l_contact .contact-contents__submit {
    width: 250px;
    margin: 0 auto;
  }
}

.l_contact .contact-contents__btn {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 1px solid #fff;
  outline: 1px solid #fff;
  outline-offset: 2px;
  color: #fff;
  background-color: transparent;
  text-align: center;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: all 0.5s ease;
}

.l_contact .contact-contents__btn:hover {
  opacity: 0.6;
  background-color: #5c5c5c;
}

@media screen and (max-width: 767px) {
  .l_contact .contact-contents__btn {
    width: 250px;
    font-size: 16px;
    height: 50px !important;
    display: flex;
    justify-content: center;
    border-radius: 0;
  }
}

.l_contact input[type="text"], .l_contact input[type="email"], .l_contact input[type="tel"] {
  width: 100%;
  border: 1px solid #000;
  height: 60px;
  padding-left: 10px;
  background-color: #626262;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .l_contact input[type="text"], .l_contact input[type="email"], .l_contact input[type="tel"] {
    height: 42px;
    border-radius: 0;
  }
}

.l_contact .small input[type="text"] {
  max-width: 360px;
  width: 100%;
}

.l_contact input[type="date"] {
  height: 60px;
  max-width: 360px;
  border: 1px solid #000;
  width: 100%;
  padding: 20px 0;
}

.l_contact #place::placeholder {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.06em;
  opacity: 1;
  /* Firefox はデフォで薄いので明示 */
}

.l_contact textarea {
  width: 100%;
  min-height: 210px;
  resize: vertical;
  border: 1px solid #000;
  padding: 10px;
  background-color: #626262;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .l_contact textarea {
    min-height: 200px;
    border-radius: 0;
  }
}

.l_contact input[type="radio"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.l_contact .wpcf7-list-item.first {
  margin-left: 0;
}

.l_contact .wpcf7-list-item {
  display: block;
  width: 20%;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .l_contact .wpcf7-list-item {
    font-size: 16px;
    width: 100%;
  }
  .l_contact .wpcf7-list-item:nth-child(n + 2) {
    margin-top: 10px;
    margin-left: 0;
  }
}

.l_contact span.wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.l_contact span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  background-color: #626262;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.l_contact span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  background-color: white;
  border-radius: 50%;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

.l_contact input[type="radio"]:checked + span.wpcf7-list-item-label::after {
  display: block;
}

.l_contact .wpcf7-spinner {
  display: none;
}

.l_contact .contact_txt_policy {
  margin-top: 40px;
  padding-left: 50px;
  line-height: 2.5;
}

@media screen and (max-width: 767px) {
  .l_contact .contact_txt_policy {
    margin-top: 20px;
    padding-left: 0;
    line-height: 2;
  }
}

/* ===============================================
# 新着情報一覧
=============================================== */
.a_news {
  padding-top: 90px;
  padding-bottom: 190px;
}

@media screen and (max-width: 767px) {
  .a_news {
    padding-bottom: 100px;
  }
}

.a_news .news {
  max-width: 1500px;
  margin: 0 auto;
}

.a_news .news .wrapper {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

@media screen and (max-width: 767px) {
  .a_news .news .wrapper {
    flex-direction: column-reverse;
  }
}

.a_news .news .wrapper .left {
  max-width: 1000px;
  width: 100%;
}

.a_news .news .wrapper .left ul {
  border-top: 1px dotted #fff;
}

.a_news .news .wrapper .left ul li a {
  display: block;
  color: #fff;
  border-bottom: 1px dotted #fff;
  padding: 0 20px 30px;
  transition: all 0.5s ease;
}

@media screen and (max-width: 767px) {
  .a_news .news .wrapper .left ul li a {
    padding: 0 10px 30px;
  }
}

.a_news .news .wrapper .left ul li a:hover {
  background-color: #2e2e2e;
}

.a_news .news .wrapper .left ul li a .info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.a_news .news .wrapper .left ul li a .info .cat {
  padding: 10px 50px;
  background-color: #62448c;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.06em;
}

.a_news .news .wrapper .left ul li a .info .published {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
}

.a_news .news .wrapper .left ul li a .bottom {
  display: flex;
  align-items: center;
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .a_news .news .wrapper .left ul li a .bottom {
    flex-direction: column;
  }
}

.a_news .news .wrapper .left ul li a .bottom picture img {
  width: 175px;
  height: 115px;
  object-fit: cover;
}

.a_news .news .wrapper .left ul li a .bottom .ttl {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .a_news .news .wrapper .left ul li a .bottom .ttl {
    margin-top: 20px;
  }
}

.a_news .news .wrapper .left ul li a .ttl {
  line-height: 2;
  letter-spacing: 0.06em;
  padding: 0 20px;
  margin-top: 20px;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .a_news .news .wrapper .left ul li a .ttl {
    padding: 0;
    margin-top: 20px;
  }
}

/* ===============================================
# 新着詳細
=============================================== */
.s_news {
  padding-top: 100px;
  padding-bottom: 148px;
}

@media screen and (max-width: 767px) {
  .s_news {
    padding-bottom: 100px;
  }
}

.s_news .news {
  max-width: 1500px;
  margin: 0 auto;
}

.s_news .news .wrapper {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

@media screen and (max-width: 767px) {
  .s_news .news .wrapper {
    flex-direction: column-reverse;
  }
}

.s_news .news .wrapper .left {
  max-width: 1000px;
  border-top: 1px dotted #fff;
}

.s_news .news .wrapper .left .info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.s_news .news .wrapper .left .info .cat {
  padding: 10px 50px;
  background-color: #62448c;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.06em;
}

.s_news .news .wrapper .left .info .published {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
}

.s_news .news .wrapper .left picture {
  display: block;
  margin-top: 35px;
}

.s_news .news .wrapper .left .ttl {
  margin-top: 20px;
  line-height: 2;
  letter-spacing: 0.08em;
  padding: 0 20px;
  font-size: clamp(20px, 1.25vw, 24px);
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 767px) {
  .s_news .news .wrapper .left .ttl {
    font-size: 18px;
  }
}

.s_news .news .wrapper .left .content h2,
.s_news .news .wrapper .left .content h3 {
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .s_news .news .wrapper .left .content h2,
  .s_news .news .wrapper .left .content h3 {
    margin-top: 20px;
    font-size: 16px;
  }
}

.s_news .news .wrapper .left .content h2 {
  background-color: #241d2e;
  padding: 20px 40px;
}

@media screen and (max-width: 767px) {
  .s_news .news .wrapper .left .content h2 {
    padding: 10px 15px;
  }
}

.s_news .news .wrapper .left .content h3 {
  background-color: #2e2e2e;
  padding: 20px 40px;
}

@media screen and (max-width: 767px) {
  .s_news .news .wrapper .left .content h3 {
    padding: 10px 15px;
  }
}

.s_news .news .wrapper .left .content h4 {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  border: 1px dotted #fff;
  padding: 15px 20px;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .s_news .news .wrapper .left .content h4 {
    margin-top: 20px;
    padding: 10px 15px;
  }
}

.s_news .news .wrapper .left .content h5 {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  border-left: 5px solid #fff;
  margin-top: 40px;
  padding-left: 15px;
}

@media screen and (max-width: 767px) {
  .s_news .news .wrapper .left .content h5 {
    margin-top: 20px;
  }
}

.s_news .news .wrapper .left .content p {
  letter-spacing: 0.06em;
  line-height: 2;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .s_news .news .wrapper .left .content p {
    margin-top: 20px;
  }
}

.s_news .news .wrapper .left .content img {
  margin-top: 30px;
}

.s_news .news .wrapper .left .sec_btn {
  text-align: center;
  margin-top: 60px;
}

/* ===============================================
# お客様の声
=============================================== */
.l_voice-article {
  padding-top: 140px;
  padding-bottom: 210px;
}

@media screen and (max-width: 767px) {
  .l_voice-article {
    padding-top: 60px;
  }
}

.voice_wrapper {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .voice_wrapper {
    flex-direction: column;
  }
}

.voice_item {
  display: block;
  width: calc((100% - 6.77083vw) / 3);
  margin-right: 3.385416vw;
  position: relative;
}

.voice_item::after {
  position: absolute;
  content: "";
  background-color: rgba(140, 99, 198, 0.17);
  width: 100%;
  height: 70%;
  bottom: 0;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .voice_item {
    width: 100%;
    margin-right: 0;
  }
  .voice_item:nth-child(n + 2) {
    margin-top: 60px;
  }
}

.voice_item:nth-child(3n) {
  margin-right: 0;
}

.voice_item:nth-child(n + 4) {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .voice_item:nth-child(n + 4) {
    margin-top: 60px;
  }
}

.voice_item picture {
  display: block;
  padding: 0 clamp(20px, 2.60417vw, 50px);
}

.voice_item picture img {
  aspect-ratio: 440/360;
  object-fit: cover;
}

.voice_item-content {
  color: #fff;
  padding: 20px clamp(15px, 3.125vw, 60px) 40px;
}

@media screen and (max-width: 767px) {
  .voice_item-content {
    margin-top: 10px;
    padding: 20px 15px;
  }
}

.voice_item-content h3 {
  margin-top: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
}

.voice_item-content .arrow_btn {
  position: absolute;
  right: 20px;
  bottom: 10px;
  font-size: 12px;
}

.voice_item-content .arrow_btn span {
  position: relative;
}

.voice_item-content .arrow_btn span::after {
  position: absolute;
  content: "";
  background-color: #fff;
  clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 60% 100%, 90% 50%, 60% 0);
  width: 30px;
  height: 15px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
}

.voice_item-info {
  display: flex;
  align-items: center;
  font-family: "Noto Serif JP", serif;
}

.voice_item-info .place {
  padding-right: 20px;
}

.g_voice {
  margin-top: 180px;
}

@media screen and (max-width: 767px) {
  .g_voice {
    margin-top: 120px;
  }
}

.g_voice-wrapper {
  text-align: center;
}

.g_voice-wrapper .sec_ttl .en_ttl {
  text-align: right;
}

.g_voice-content {
  max-width: 1100px;
  background-color: #fff;
  margin: clamp(40px, 3.64583vw, 70px) auto 0;
  padding: 50px 70px;
}

@media screen and (max-width: 767px) {
  .g_voice-content {
    padding: 30px 15px;
  }
}

.g_voice-btn {
  margin-top: 50px;
}

.g_voice-btn a {
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .g_voice-btn a {
    padding-left: 20px;
    padding-right: 20px;
    min-width: 320px;
  }
}

/* ===============================================
# お客様の声詳細
=============================================== */
.s_voice {
  padding-top: 100px;
  padding-bottom: 160px;
}

@media screen and (max-width: 767px) {
  .s_voice {
    padding-top: 20px;
    padding-bottom: 100px;
  }
}

.s_voice .wrapper {
  border-top: 1px dotted #fff;
  max-width: 1500px;
  margin: 0 auto;
}

.s_voice .wrapper .info_box {
  padding-top: 30px;
  padding-left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .s_voice .wrapper .info_box {
    flex-direction: column-reverse;
    padding-left: 0;
  }
}

.s_voice .wrapper .info_box .info {
  display: flex;
  align-items: center;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(16px, 0.9375vw, 18px);
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .s_voice .wrapper .info_box .info {
    font-size: 16px;
    margin-top: 15px;
  }
}

.s_voice .wrapper .info_box .evaluation {
  display: flex;
  gap: 30px;
  background-color: #241d2e;
  padding: 15px 30px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(16px, 0.9375vw, 18px);
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .s_voice .wrapper .info_box .evaluation {
    font-size: 14px;
    min-width: 320px;
  }
}

.s_voice .wrapper .voice_ttl {
  font-size: clamp(20px, 1.35417vw, 26px);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  padding-left: 30px;
}

@media screen and (max-width: 767px) {
  .s_voice .wrapper .voice_ttl {
    font-size: 18px;
    padding-left: 0;
    margin-top: 20px;
  }
}

.s_voice .wrapper picture {
  display: block;
  margin-top: 30px;
  padding: 0 20px;
}

.s_voice .wrapper picture img {
  aspect-ratio: 1160/560;
  object-fit: cover;
}

.s_voice .wrapper .bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
}

@media screen and (max-width: 767px) {
  .s_voice .wrapper .bottom {
    flex-direction: column-reverse;
    gap: 40px;
    margin-top: 30px;
  }
}

.s_voice .wrapper .bottom .sheet {
  width: 35.61%;
}

@media screen and (max-width: 767px) {
  .s_voice .wrapper .bottom .sheet {
    width: 100%;
  }
}

.s_voice .wrapper .bottom .txt {
  width: 55.39%;
  line-height: 2;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .s_voice .wrapper .bottom .txt {
    width: 100%;
    text-align: justify;
  }
}

.s_voice .wrapper .sec_btn {
  text-align: center;
  margin-top: 60px;
}

.s_voice .wrapper .comment {
  display: flex;
  align-items: center;
  margin-top: 120px;
  padding: 40px 0;
  position: relative;
}

@media screen and (max-width: 767px) {
  .s_voice .wrapper .comment {
    margin-top: 60px;
    flex-direction: column;
    padding: 15px;
  }
}

.s_voice .wrapper .comment::after {
  position: absolute;
  content: "";
  background-color: rgba(140, 99, 198, 0.17);
  width: 98%;
  height: 100%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .s_voice .wrapper .comment::after {
    width: 100%;
    height: 80%;
    top: unset;
    transform: none;
    bottom: 0;
  }
}

.s_voice .wrapper .comment .comment_img {
  display: block;
}

.s_voice .wrapper .comment .comment_img img {
  display: block;
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.s_voice .wrapper .comment .right {
  margin-left: 60px;
  padding-right: 60px;
}

@media screen and (max-width: 767px) {
  .s_voice .wrapper .comment .right {
    margin-left: 0;
    padding-right: 0;
    margin-top: 30px;
  }
}

.s_voice .wrapper .comment .right .ttl {
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .s_voice .wrapper .comment .right .ttl {
    font-size: 18px;
    text-align: center;
  }
}

.s_voice .wrapper .comment .right .txt {
  margin-top: 20px;
  padding-left: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .s_voice .wrapper .comment .right .txt {
    padding-left: 10px;
  }
}

/* ===============================================
# 施工実績一覧
=============================================== */
.a_works {
  padding-top: clamp(90px, 6.77083vw, 130px);
  padding-bottom: clamp(100px, 9.375vw, 180px);
}

@media screen and (max-width: 767px) {
  .a_works {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}

.a_works .work .wrapper ul {
  display: flex;
  flex-wrap: wrap;
}

.a_works .work .wrapper ul li {
  display: block;
  width: calc((100% - 6.77083vw) / 3);
  margin-right: 3.385416vw;
  position: relative;
}

@media screen and (max-width: 767px) {
  .a_works .work .wrapper ul li {
    width: 100%;
    margin-right: 0;
    margin-top: 60px;
  }
  .a_works .work .wrapper ul li:first-child {
    margin-top: 0;
  }
}

.a_works .work .wrapper ul li::after {
  position: absolute;
  content: "";
  background-color: rgba(140, 99, 198, 0.17);
  width: 100%;
  height: 70%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.a_works .work .wrapper ul li:nth-child(3n) {
  margin-right: 0;
}

.a_works .work .wrapper ul li:nth-child(n + 4) {
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .a_works .work .wrapper ul li:nth-child(n + 4) {
    margin-top: 60px;
  }
}

.a_works .work .wrapper ul li a {
  color: #fff;
}

.a_works .work .wrapper ul li a .img {
  padding: 0 clamp(20px, 2.60417vw, 50px);
  position: relative;
}

.a_works .work .wrapper ul li a .img img {
  aspect-ratio: 440/360;
  object-fit: cover;
}

.a_works .work .wrapper ul li a .img .cat {
  position: absolute;
  top: 0;
  background-color: #3e3052;
  padding: 12px 50px;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .a_works .work .wrapper ul li a .img .cat {
    padding: 7px 30px;
  }
}

.a_works .work .wrapper ul li a .content {
  padding: 20px 60px 40px;
  padding: 20px clamp(15px, 3.125vw, 60px) 40px;
}

@media screen and (max-width: 767px) {
  .a_works .work .wrapper ul li a .content {
    padding: 20px 15px 40px;
  }
}

.a_works .work .wrapper ul li a .content .info {
  display: flex;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  gap: clamp(10px, 1.04167vw, 20px);
}

@media screen and (max-width: 767px) {
  .a_works .work .wrapper ul li a .content .info {
    font-size: 14px;
  }
}

.a_works .work .wrapper ul li a .content .txt {
  margin-top: 20px;
  letter-spacing: 0.06em;
  line-height: 2;
}

.a_works .work .wrapper ul li a .content .arrow_btn {
  position: absolute;
  right: 30px;
  bottom: 10px;
  font-size: 12px;
}

.a_works .work .wrapper ul li a .content .arrow_btn span {
  position: relative;
}

.a_works .work .wrapper ul li a .content .arrow_btn span::after {
  position: absolute;
  content: "";
  background-color: #fff;
  clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 60% 100%, 90% 50%, 60% 0);
  width: 30px;
  height: 15px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
}

/* ===============================================
# 施工実績の詳細
=============================================== */
.s_work {
  padding-top: 30px;
  padding-bottom: 160px;
  max-width: 1500px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .s_work {
    padding-top: 20px;
  }
}

.s_work .wrapper {
  border-top: 1px dotted #fff;
}

.s_work .wrapper .info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.s_work .wrapper .info .cat {
  background-color: #3e3052;
  color: #fff;
  padding: 12px 50px;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.06em;
}

.s_work .wrapper .info .published {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
}

.s_work .wrapper .ttl {
  font-size: clamp(20px, 1.25vw, 24px);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  margin-top: 30px;
  padding-left: 40px;
}

@media screen and (max-width: 767px) {
  .s_work .wrapper .ttl {
    font-size: 18px;
    padding-left: 0;
    margin-top: 20px;
  }
}

.s_work .work_img-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 60px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .s_work .work_img-wrapper {
    flex-direction: column;
    margin-top: 40px;
  }
}

.s_work .work_img-wrapper .before {
  width: 46.67%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .s_work .work_img-wrapper .before {
    width: 100%;
  }
}

.s_work .work_img-wrapper .before::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 23px solid #776bb3;
  border-right: 0;
  right: -9%;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .s_work .work_img-wrapper .before::after {
    right: unset;
    top: unset;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}

.s_work .work_img-wrapper .before img {
  aspect-ratio: 700/460;
  object-fit: cover;
}

.s_work .work_img-wrapper .before .before_txt {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(14, 14, 14, 0.7);
  font-size: clamp(18px, 1.04167vw, 20px);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  padding: 22px 30px;
}

@media screen and (max-width: 767px) {
  .s_work .work_img-wrapper .before .before_txt {
    font-size: 16px;
    padding: 15px 25px;
  }
}

.s_work .work_img-wrapper .after {
  width: 46.67%;
}

@media screen and (max-width: 767px) {
  .s_work .work_img-wrapper .after {
    width: 100%;
    margin-top: 40px;
  }
}

.s_work .work_img-wrapper .after .after_txt {
  position: absolute;
  z-index: 1;
  background-color: rgba(98, 68, 140, 0.7);
  font-size: clamp(18px, 1.04167vw, 20px);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  padding: 22px 30px;
}

@media screen and (max-width: 767px) {
  .s_work .work_img-wrapper .after .after_txt {
    font-size: 16px;
    padding: 15px 25px;
  }
}

@media screen and (max-width: 767px) {
  .s_work .work_img-wrapper .after .slick-dotted.slick-slider {
    margin-bottom: 15px;
  }
}

.s_work .work_img-wrapper .after .slider6-wrap {
  margin: 0 auto;
  position: relative;
}

.s_work .work_img-wrapper .after .slider-6 .slick-slide {
  overflow: hidden;
}

.s_work .work_img-wrapper .after .slider-6 .slick-slide img {
  display: block;
  aspect-ratio: 700/460;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s_work .work_img-wrapper .after .thumbs_dots {
  margin: 10px 0 0;
}

.s_work .work_img-wrapper .after .thumbs_list li {
  display: inline-block;
  width: 20%;
  height: 80px;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.3s;
}

@media screen and (max-width: 767px) {
  .s_work .work_img-wrapper .after .thumbs_list li {
    height: 50px;
  }
}

.s_work .work_img-wrapper .after .thumbs_list li.slick-active {
  opacity: 1;
}

.s_work .work-meta {
  max-width: 800px;
  margin: 60px auto 0;
  display: flex;
  flex-wrap: wrap;
  padding-left: 40px;
}

@media screen and (max-width: 767px) {
  .s_work .work-meta {
    flex-direction: column;
    margin-top: 40px;
    padding-left: 0;
  }
}

.s_work .work-meta .work-meta_block {
  display: flex;
  align-items: center;
  width: 50%;
  padding-right: 20px;
}

@media screen and (max-width: 767px) {
  .s_work .work-meta .work-meta_block {
    width: 100%;
    margin-top: 30px;
    padding-right: 0;
  }
  .s_work .work-meta .work-meta_block:first-child {
    margin-top: 0;
  }
}

.s_work .work-meta .work-meta_block:nth-child(n + 3) {
  margin-top: 30px;
}

.s_work .work-meta .work-meta_block dt {
  width: 130px;
  border-left: 5px solid #fff;
  padding-left: 15px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .s_work .work-meta .work-meta_block dt {
    width: 115px;
  }
}

.s_work .work-meta .work-meta_block dd {
  width: calc(100% - 130px);
  font-weight: 300;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .s_work .work-meta .work-meta_block dd {
    width: calc(100% - 115px);
    margin-left: 0;
  }
}

.s_work .bottom {
  margin-top: clamp(80px, 6.25vw, 120px);
}

@media screen and (max-width: 767px) {
  .s_work .bottom {
    margin-top: 60px;
  }
}

.s_work .bottom .bottom-block {
  border-bottom: 1px dotted #fff;
  padding: 40px clamp(40px, 5.20833vw, 100px) 40px clamp(40px, 6.77083vw, 130px);
  display: flex;
  align-items: center;
  gap: clamp(40px, 5.20833vw, 100px);
}

@media screen and (max-width: 767px) {
  .s_work .bottom .bottom-block {
    flex-direction: column;
    padding: 40px 0;
    align-items: baseline;
    gap: 20px;
  }
}

.s_work .bottom .bottom-block:first-child {
  border-top: 1px dotted #fff;
}

.s_work .bottom .bottom-block .ttl {
  background-color: #fff;
  color: #0e0e0e;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  width: 155px;
  height: 155px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  position: relative;
}

@media screen and (max-width: 767px) {
  .s_work .bottom .bottom-block .ttl {
    clip-path: none;
    width: 100%;
    height: 60px;
  }
}

.s_work .bottom .bottom-block .ttl::before {
  position: absolute;
  content: "";
  background-color: #62448c;
  width: 60px;
  height: 3px;
  top: 21px;
  left: 63%;
  transform: translateX(-50%) rotate(45deg);
}

@media screen and (max-width: 767px) {
  .s_work .bottom .bottom-block .ttl::before {
    top: 0;
    left: 0;
    transform: none;
    width: 30px;
  }
}

.s_work .bottom .bottom-block .ttl::after {
  position: absolute;
  content: "";
  background-color: #62448c;
  width: 65px;
  height: 3px;
  top: 22px;
  left: 36%;
  transform: translateX(-50%) rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .s_work .bottom .bottom-block .ttl::after {
    top: 0;
    left: 0;
    transform: none;
    width: 3px;
    height: 30px;
  }
}

.s_work .bottom .bottom-block .txt {
  width: calc(100% - 255px);
  letter-spacing: 0.06em;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .s_work .bottom .bottom-block .txt {
    width: 100%;
  }
}

.s_work .sec_btn {
  text-align: center;
  margin-top: clamp(60px, 5.20833vw, 100px);
}

@media screen and (max-width: 767px) {
  .s_work .sec_btn {
    margin-top: 60px;
  }
}

/* iOSの自動文字拡大を無効化（推奨） */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* 念のため該当ブロックにもスコープして固定 */
.t_voice .right .list_wrapper .list a .list_right p.txt,
.t_voice .right .list_wrapper .list a .list_right p.txt * {
  font-size: 15px !important;
  line-height: 1.866;
}

/* 対象ブロック限定で完全無効化 */
.t_voice {
  -webkit-text-size-adjust: none;
}
