@charset "utf-8";

/* リセットCSSの読み込み */
@import url("reset.css");

/* アニメーションCSSの読み込み */
@import url("animate.css");

/* Utsukushi（公式サイトからの提供） */
@font-face {
  font-family: 'Utsukushi';
  src: url('../fonts/02UtsukushiMincho.woff2') format('woff2'),
    url('../fonts/02UtsukushiMincho.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

/* 全体の設定 */

html {
  font-size: 16px;
  margin: 0;
  overflow-x: hidden;
}

body {
  font-family: 'Utsukushi', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', sans-serif;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  margin: 0;
}

main {
  overflow: hidden;
  position: relative;
}

#container {}

/* 見出し設定 */
h2 {
  font-weight: normal;
}

h3 {
  font-weight: normal;
}

/* 画像全般 */
img {
  margin: auto;
}

a img:hover {
  transition: all 0.3s;
  opacity: 0.7;
}

/* iframe設定 */
iframe {
  width: 100%;
}

/* リストタグ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* リンクテキスト設定 */
a {
  color: #fff;
  transition: 0.3s;
  text-decoration: none;
}

a:hover {
  color: #fff;
}

/* section共通設定 */
section {
  margin: auto;
  width: 100%;
}

/* ヘッダー設定 */
header {
  z-index: 10;
  width: 90%;
  max-width: 1200px;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 80px 1fr 100px;
  height: 80px;
  justify-items: end;
  align-items: center;
}

.contact_btn {
  width: 260px;
  height: 60px;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  font-family: 'Noto Sans JP';
}

.contact_btn:hover {
  transition: all 0.3s;
  opacity: 0.7;
}

@media (max-width: 1000px) {
  header {
    top: 4px;
    grid-template-columns: 60px 1fr 60px;
    height: 100px;
    width: 90%;
  }
}

.c-nav-btn {
  height: 60px;
  width: 60px;
  position: absolute;
  background: none;
  border: none;
  transform-origin: center;
  transition: .3s;
  z-index: 10;
  cursor: pointer;
}

.c-nav-btn::after {
  position: absolute;
  content: '';
  width: 12px;
  height: 12px;
  background: #333;
  display: block;
  left: calc(50% - 6px);
  top: calc(50% - 6px);
  box-shadow: -16px 0 0 #333, 16px 0 0 #333, -16px -16px 0 #333, 0 -16px 0 #333, 16px -16px 0 #333, -16px 16px 0 #333, 0 16px 0 #333, 16px 16px 0 #333;
}

.c-nav-btn::before {
  position: absolute;
  content: '';
  height: 27px;
  width: 4px;
  left: 28px;
  top: 16px;
  background: #fff;
}

.c-nav-btn.is-active {
  background: #333;
  border-radius: 30px;
  transform: rotate(45deg);
}

.c-nav-btn.is-active::after {
  box-shadow: none;
  width: 27px;
  height: 4px;
  left: 16px;
  top: 28px;
  background: #fff;
}

/* アニメーション用に共通の初期状態を設定 */
#menubar {
  display: none;
  opacity: 0;
}

/* 表示時：スライドダウンして表示 */
#menubar.db {
  display: block;
  opacity: 1;
}

/* 非表示時：再び上にスライドしながらフェードアウト */
#menubar.dn {
  opacity: 0;
}


/*メニュー１個あたりの設定*/
#menubar a {
  display: block;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.1em;
  /*文字間隔を少しだけ広くする指定*/
  padding: 20px;
  font-size: 20px;
  /*メニュー内の余白*/
}

/*小さな端末用の設定（開閉ブロック）
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
#menubar.db {
  position: fixed;
  overflow: auto;
  z-index: 9;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  padding: 100px 20px 0;
  /*上下、左右へのブロック内の余白*/
  text-align: center;
  /*内容をセンタリング*/
  color: #fff;
  /*文字色*/
  opacity: 1;
  transition: all 1.6s;
  background-color: #000;
}

#menubar.db a {
  color: #fff;
  /*リンクテキストの文字色*/
}

#menubar.dn {
  opacity: 0;
  display: none;
  padding: 70px 20px;
  /*上下、左右へのブロック内の余白*/
  color: #fff;
  /*文字色*/
}

#menubar dl {
  position: fixed;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  bottom: 0;
  left: 0;
  justify-content: center;
  align-content: center;
}

#menubar dd {
  width: calc(100% - 0px);
  background: #333;
  height: 60px;
  display: table;
}

#menubar dd a {
  width: 100%;
  height: 100%;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}

/*トップページのメイン画像
---------------------------------------------------------------------------*/
/*全体を囲むブロック*/
#main_area {
  position: relative;
  width: 100%;
  margin: 150px auto 0;
  overflow: hidden;
}

.main-image {
  width: 100%;
  display: block;
  filter: grayscale(100%);
  transition: filter 1s ease-out;
}

.fog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 1));
  animation: clearFog 2s forwards ease-out;
  pointer-events: none;
  z-index: 2;
}

@keyframes clearFog {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

@media (max-width:1000px) {}

#main_area {
  position: relative;
  width: 100%;
  margin: 110px auto 0;
  overflow: hidden;
}

/*about
---------------------------------------------------------------------------*/
.about {
  margin: 100px auto 150px;
  width: 1000px;
  padding: 70px 30px;
  background: #1C1C1C;
  position: relative;
  border-radius: 20px;
}

.about_tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
}

.about_bl {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  transform: scaleY(-1);
}

.about_tr {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  transform: scaleX(-1);
}

.about_br {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70px;
  transform: scaleX(-1) scaleY(-1);
}

.about h2 {
  margin: 0px auto 40px;
  font-size: 30px;
  font-family: 'Noto Sans JP';
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  background: #fff;
  width: 425px;
  height: 90px;
  font-weight: bold;
  border-radius: 20px;
}

.about .top_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  font-size: 24px;
  text-align: center;
  margin: 0 auto 70px;
}

.about .top_list li {
  background-image: url(../images/about_bg.webp);
  width: 180px;
  height: 180px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
}

.about_mtest {
  font-size: 40px;
  text-align: center;
  width: auto;
  margin: 0 auto 50px;
  color: #fff;
}

.about_mtest h3 {
  font-size: 60px;
  text-align: center;
  width: auto;
  margin: 0 auto 50px;
  font-weight: normal;
  position: relative;
}

.about_mtest h3::before {
  position: absolute;
  content: "";
  width: 47px;
  height: 80px;
  background-size: cover;
  background-image: url(../images/about_ashirai2.webp);
  left: 30px;
}

.about_mtest h3::after {
  position: absolute;
  content: "";
  width: 47px;
  height: 80px;
  background-size: cover;
  background-image: url(../images/about_ashirai2.webp);
  right: 30px;
  transform: scaleX(-1);
}

.about .b_list {
  display: grid;
  grid-template-columns: repeat(3, 2fr);
  gap: 20px;
  font-size: 22px;
  color: #fff;
}

.about .b_list li {
  width: 300px;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.about .b_list li:nth-of-type(3),
.about .b_list li:nth-of-type(6) {
  border-right: none;
}

.about .b_list li h4 {
  padding: 10px 20px 5px;
  background-color: #fff;
  margin-bottom: 15px;
  color: #000;
  display: inline-block;
}

.about .b_list li dt {
  margin-bottom: 0px;
}

.about .b_list li dd {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-items: end;
  line-height: 1.3;
}

.about .b_list li dd div:nth-of-type(1) {
  font-size: 70px;
}

.about .b_list li dd div:nth-of-type(2) {
  text-align: center;
}

.about .b_list li dd p:nth-of-type(1) {
  font-size: 14px;
}

.about .b_list li dd p:nth-of-type(2) {

  font-size: 30px;
}


@media (max-width: 1000px) {
  .about {
    margin: 50px auto 50px;
    width: 100%;
    padding: 50px 15px;
  }

  .about_tl {
    width: 40px;
  }

  .about_bl {
    width: 40px;
  }

  .about_tr {
    width: 40px;
  }

  .about_br {
    width: 40px;
  }

  .about h2 {
    margin: 0px auto 30px;
    font-size: 20px;
    width: 94%;
    height: 70px;
  }

  .about .top_list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 18px;
    text-align: center;
    margin: 0 auto 35px;
  }

  .about .top_list li {
    width: 140px;
    height: 140px;
  }

  .about_mtest {
    font-size: 24px;
    margin: 0 auto 30px;
  }

  .about_mtest h3 {
    font-size: 30px;
    margin: 0 auto 50px;
  }

  .about_mtest h3::before {
    width: 30px;
    height: 51px;
    left: -13px;
    bottom: 16px;
  }

  .about_mtest h3::after {
    width: 30px;
    height: 51px;
    right: -13px;
    bottom: 16px;
  }

  .about .b_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
  }

  .about .b_list li {
    width: 165px;
  }

  .about .b_list li:nth-of-type(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.4);
  }

  .about .b_list li:nth-of-type(2),
  .about .b_list li:nth-of-type(4),
  .about .b_list li:nth-of-type(6) {
    border-right: none;
  }

  .about .b_list li h4 {
    padding: 10px 10px 5px;
    background-color: #fff;
    margin-bottom: 15px;
    color: #000;
    display: inline-block;
  }

  .about .b_list li dd div:nth-of-type(1) {
    font-size: 32px;
  }

  .about .b_list li dd p:nth-of-type(1) {
    font-size: 12px;
  }

  .about .b_list li dd p:nth-of-type(2) {

    font-size: 24px;
  }
}


/*cta
---------------------------------------------------------------------------*/
.cta {
  background-image: url(../images/cta_bg.webp);
  background-size: cover;
  color: #fff;
  font-size: 30px;
  text-align: center;
  padding: 50px 0px 100px;
  position: relative;
  margin-bottom: 250px;
}

.cta p {
  width: 980px;
  margin: auto;
}

.cta strong {
  font-size: 50px;
  font-weight: normal;
  line-height: 1.3;
}

.cta::before {
  content: "";
  background-image: url(../images/cta_img.webp);
  background-size: cover;
  width: 250px;
  height: 531px;
  position: absolute;
  bottom: 0;
  left: 1%;
}

.cta_btn {
  width: 900px;
  height: 180px;
  border-radius: 20px;
  background-color: #242424;
  position: absolute;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  font-size: 40px;
}

.cta_btn::after {
  content: "";
  width: 880px;
  height: 160px;
  border-radius: 20px;
  border: 5px solid #fff;
  position: absolute;
}

.cta_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
}

.cta_btn:hover::before {
  animation: shine 1s ease;
}

@keyframes shine {
  0% {
    left: -75%;
  }

  100% {
    left: 125%;
  }
}

.cta_btn span {
  padding-top: 20px;
  position: relative;
}

.cta_btn span::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 30px solid #fff;
  animation: arrowWiggle 1.2s ease-in-out infinite;
  right: -200px;
  top: 27px;
}

@keyframes arrowWiggle {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(10px);
  }
}

.cta_btn span::after {
  position: absolute;
  background: url(../images/con_img.webp);
  content: "";
  width: 40px;
  height: 40px;
  background-size: cover;
  top: 26px;
  left: -60px;
}

@media (max-width: 1000px) {
  .cta {
    font-size: 16px;
    padding: 14px 0px 50px;
    margin-bottom: 100px;
  }

  .cta p {
    width: 80%;
    margin-left: 20%;
  }

  .cta strong {
    font-size: 20px;
    font-weight: normal;
    line-height: 1.3;
  }

  .cta::before {
    content: "";
    background-image: url(../images/cta_img.webp);
    background-size: cover;
    width: 100px;
    height: 212px;
    position: absolute;
    bottom: 30px;
    left: 1%;
  }

  .cta_btn {
    width: 98%;
    height: 80px;
    border-radius: 20px;
    background-color: #242424;
    position: absolute;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    font-size: 24px;
  }

  .cta_btn::after {
    content: "";
    width: 97%;
    height: 70px;
    border-radius: 20px;
    border: 5px solid #fff;
    position: absolute;
  }

  .cta_btn span {
    padding-top: 10px;
  }

  .cta_btn span::before {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    right: -35px;
    top: 18px;
  }

  @keyframes arrowWiggle {

    0%,
    100% {
      transform: translateX(0);
    }

    50% {
      transform: translateX(10px);
    }
  }

  .cta_btn span::after {
    width: 30px;
    height: 30px;
    top: 11px;
    left: -54px;
  }
}


/*staff
---------------------------------------------------------------------------*/
.staff {
  max-width: 1000px;
  width: 90%;
  margin-bottom: 150px;
}

.staff h2 {
  text-align: center;
  font-size: 60px;
  margin-bottom: 80px;
}

/* スライダー内リスト */
.staff ul {
  display: flex;
  gap: 50px;
}

.staff li {
  width: 300px;
}

/* ────────────────────────────
   ① LI全体をリンク化
──────────────────────────── */
.staff__item {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
}

/* 画像 */
.staff__item figure {
  margin: 0;
}

.staff__item img {
  display: block;
  width: 100%;
  height: auto;
}

/* ボタン風テキスト */
.staff__btn {
  position: absolute;
  bottom: -30px;
  right: -1px;
  width: 220px;
  padding: 10px 0;
  background-color: #fff;
  border-radius: 20px 0 20px 20px;
  text-align: center;
  font-size: 24px;
  color: #000;
  transition: background-color .3s, color .3s;
}

/* ボタンだけホバーさせる */
.staff__item:hover .staff__btn {
  background-color: #000;
  color: #fff;
}

/* ────────────────────────────
   ② Slick の拡大縮小アニメ
──────────────────────────── */
.slick-slide {
  transform: scale(0.85);
  transition: transform 0.4s ease;
}

.slick-active {
  transform: scale(0.95);
}

/* ────────────────────────────
   レスポンシブ（〜1000px）
──────────────────────────── */
@media (max-width: 1000px) {
  .staff {
    margin-bottom: 50px;
  }

  .staff h2 {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .staff ul {
    gap: 20px;
  }
}

/*salon
---------------------------------------------------------------------------*/
.salon {
  background-color: #1C1C1C;
  position: relative;
  padding: 100px 0px 200px 0px;
}

.salon::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 300px solid transparent;
  border-right: 300px solid transparent;
  border-top: 50px solid white;
}

.salon article {
  max-width: 1000px;
  margin: auto;
  width: 90%;
}

.salon h2 {
  text-align: center;
  font-size: 60px;
  margin-bottom: 80px;
  color: #fff;
}

.salon ul {
  display: flex;
  gap: 20px;
  font-size: 22px;
  font-family: 'Noto Sans JP';
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 100px;
}

.salon li {
  width: 300px;
  background-color: #fff;
  border-radius: 30px;
  padding: 30px 10px 10px 20px;
}

.salon li h4 {
  padding: 5px 10px 5px;
  background-color: #000;
  margin: 0px 0px 15px -20px;
  color: #fff;
  display: inline-block;
  width: 90%;
  font-size: 20px;
}

.salon_text {
  font-size: 16px;
  margin-bottom: 10px;
}

.salon li dt {
  margin-bottom: 10px;
  font-size: 20px;
}

.salon li dd {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-items: end;
  line-height: 1.3;
  font-family: 'Utsukushi', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', sans-serif;
}

.salon li dd div:nth-of-type(1) {
  font-size: 65px;
  color: #BA0C0C;
}

.salon li dd div:nth-of-type(2) {
  text-align: center;
}

.salon li dd p:nth-of-type(1) {
  font-size: 12px;
}

.salon li dd p:nth-of-type(2) {
  font-size: 30px;
}

.accordion-header {
  margin-bottom: 50px;
  cursor: pointer;
  position: relative;
  background-color: #fff;
  text-align: left;
  font-size: 50px;
  color: #000;
}

.accordion-header:hover {
  transition: 0.3s;
  background: #333;
  color: #fff;
}

.accordion-header::after {
  content: '▼';
  position: absolute;
  top: 57%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 24px;
  color: #333;
  transition: transform 0.3s, color 0.3s;
}

.accordion-header:hover::after {
  color: #fff;
}

.accordion-header.active::after {
  content: '▲';
  color: #fff;
}

.accordion-header.active {
  color: #fff;
  background: #333;
}

.accordion-content {
  display: none;
  color: #fff;
  text-align: left;
  padding-bottom: 10px;
}

.accordion-content p {
  padding: 0px 0 30px 45px;
  position: relative;
  display: block;
  font-size: 24px;
}

.accordion-content a {
  font-weight: bold;
  padding: 0 5px 0;
}

.accordion-header p {
  padding: 12px 0 0px 65px;
  position: relative;
  display: block;
}


@media (max-width: 1000px) {
  .salon {
    padding: 50px 0px 25px 0px;
  }

  .salon h2 {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .salon ul {
    width: 100%;
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin-bottom: 50px;
  }

  .salon li {
    width: 300px;
    background-color: #fff;
    border-radius: 30px;
    padding: 20px 10px 0px 20px;
  }

  .salon li h4 {
    font-size: 16px;
  }

  .salon_text {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .salon li dt {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .salon li dd div:nth-of-type(1) {
    font-size: 60px;
    color: #BA0C0C;
  }

  .salon li dd div:nth-of-type(2) {
    text-align: center;
  }

  .salon li dd p:nth-of-type(1) {
    font-size: 12px;
  }

  .salon li dd p:nth-of-type(2) {
    font-size: 30px;
  }

  .accordion-header {
    margin-bottom: 30px;
    font-size: 20px;
  }


  .accordion-header::after {
    font-size: 16px;
  }

  .accordion-content {
    display: none;
    color: #fff;
    text-align: left;
    padding-bottom: 10px;
  }

  .accordion-content p {
    padding: 0px 0 15px 25px;
    position: relative;
    display: block;
    font-size: 16px;
  }

  .accordion-content a {
    font-weight: bold;
    padding: 0 5px 0;
  }

  .accordion-header p {
    padding: 20px 0 15px 20px;
    position: relative;
    display: block;
  }
}

/*access
---------------------------------------------------------------------------*/
.access {
  width: 90%;
  max-width: 1000px;
  margin-bottom: 200px;
}

.access h2 {
  text-align: center;
  font-size: 60px;
  margin-bottom: 70px;
}

.access h3 {
  font-size: 30px;
  margin-bottom: 5px;
}

.access h3:nth-of-type(1) {
  margin-top: 50px;
}

.access p {
  font-size: 20px;
  margin-bottom: 30px;
}

@media (max-width: 1000px) {
  .access {
    margin-bottom: 100px;
  }

  .access h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
  }

  .access h3 {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .access h3:nth-of-type(1) {
    margin-top: 40px;
  }

  .access p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

/*cta2
---------------------------------------------------------------------------*/
.cta2 {
  background-image: url(../images/cta2_bg.webp);
  background-size: cover;
  color: #fff;
  font-size: 30px;
  text-align: center;
  height: 620px;
  position: relative;
  padding: 60px 0px 0px;
}

.cta2::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 160px;
  /* カーブ画像の高さに合わせて調整 */
  background: url("../images/cta2_bg2.webp") no-repeat bottom center;
  background-size: cover;
  pointer-events: none;
}

.cta2 p {
  width: 900px;
  margin: auto;
}

.cta2 strong {
  font-size: 50px;
  font-weight: normal;
  line-height: 1.3;
}

.cta2_staff {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 300px;
}

.cta2 img:nth-of-type(1) {
  position: absolute;
  width: 130px;
  bottom: 6%;
  right: 19%;
}

.cta2 img:nth-of-type(2) {
  position: absolute;
  width: 113px;
  bottom: 5%;
  right: 9%;
}

.cta2 img:nth-of-type(3) {
  position: absolute;
  width: 115px;
  bottom: 6%;
  right: 0%;
}

.cta2 img:nth-of-type(4) {
  position: absolute;
  width: 130px;
  bottom: 6%;
  left: 19%;
}

.cta2 img:nth-of-type(5) {
  position: absolute;
  width: 113px;
  bottom: 8%;
  left: 10%;
}

.cta2 img:nth-of-type(6) {
  position: absolute;
  width: 115px;
  bottom: 6%;
  left: 0%;
}

.cta2_btn {
  width: 600px;
  height: 130px;
  border-radius: 20px;
  background-color: #242424;
  position: absolute;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  font-size: 30px;
  position: absolute;
  z-index: 2;
  bottom: 10px;
}

.cta2_btn::after {
  content: "";
  width: 580px;
  height: 110px;
  border-radius: 20px;
  border: 5px solid #fff;
  position: absolute;
}

.cta2_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
}

.cta2_btn:hover::before {
  animation: shine 1s ease;
}

@keyframes shine {
  0% {
    left: -75%;
  }

  100% {
    left: 125%;
  }
}

.cta2_btn span {
  padding-top: 20px;
  position: relative;
}

.cta2_btn span::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 20px solid #fff;
  animation: arrowWiggle 1.2s ease-in-out infinite;
  right: -50px;
  top: 27px;
}

@keyframes arrowWiggle {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(10px);
  }
}

.cta2_btn span::after {
  position: absolute;
  background: url(../images/con_img.webp);
  content: "";
  width: 30px;
  height: 30px;
  background-size: cover;
  top: 25px;
  left: -40px;
}

@media (max-width: 1000px) {
  .cta2 {
    background-image: url(../images/cta2_bg.webp);
    background-size: cover;
    color: #fff;
    font-size: 16px;
    text-align: center;
    height: 380px;
    position: relative;
    padding: 30px 0px 0px;
  }

  .cta2::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    /* カーブ画像の高さに合わせて調整 */
    background: url("../images/cta2_bg2.webp") no-repeat bottom center;
    background-size: cover;
    pointer-events: none;
  }

  .cta2 p {
    width: 100%;
    margin: auto;
  }

  .cta2 strong {
    font-size: 20px;
  }

  .cta2_staff {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    height: 300px;
  }

  .cta2 img:nth-of-type(1) {
    position: absolute;
    width: 66px;
    bottom: 6%;
    right: 30%;
  }

  .cta2 img:nth-of-type(2) {
    position: absolute;
    width: 60px;
    bottom: 5%;
    right: 15%;
  }

  .cta2 img:nth-of-type(3) {
    position: absolute;
    width: 60px;
    bottom: 10%;
    right: 0%;
  }

  .cta2 img:nth-of-type(4) {
    position: absolute;
    width: 66px;
    bottom: 6%;
    left: 30%;
  }

  .cta2 img:nth-of-type(5) {
    position: absolute;
    width: 63px;
    bottom: 8%;
    left: 16%;
  }

  .cta2 img:nth-of-type(6) {
    position: absolute;
    width: 60px;
    bottom: 10%;
    left: -1%;
  }

  .cta2_btn {
    width: 98%;
    height: 80px;
    border-radius: 20px;
    background-color: #242424;
    position: absolute;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    font-size: 24px;
  }

  .cta2_btn::after {
    content: "";
    width: 97%;
    height: 70px;
    border-radius: 20px;
    border: 5px solid #fff;
    position: absolute;
  }

  .cta2_btn span {
    padding-top: 10px;
  }

  .cta2_btn span::before {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    right: -35px;
    top: 18px;
  }

  .cta2_btn span::after {
    position: absolute;
    background: url(../images/con_img.webp);
    content: "";
    width: 30px;
    height: 30px;
    background-size: cover;
    top: 11px;
    left: -40px;
  }
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
  text-align: center;
  background: #000;
  font-size: 24px;
  color: #fff;
}

footer article {
  width: 440px;
  height: 200px;
  margin: auto;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer img {
  width: 80px;
}

@media (max-width:1000px) {
  footer {
    text-align: center;
    background: #000;
    font-size: 16px;
    color: #fff;
  }

  footer article {
    width: 80%;
    height: 120px;
    margin: auto;
    text-align: center;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  footer img {
    width: 60px;
    margin-right: 20px;
  }
}

/*追尾メニュー
---------------------------------------------------------------------------*/
#right_btn {
  overflow: hidden;
  position: fixed;
  top: 100px;
  right: 0;
  z-index: 999;
  width: 100px;
  height: 300px;
  background-color: #000;
  color: #fff;
  font-size: 20px;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.4s ease, opacity 0.4s ease;
  border-radius: 20px 0 0 20px;

  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* shine 用の擬似要素 */
#right_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  /* より外へ */
  width: 40%;
  /* 少し細めに */
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-25deg);
  opacity: 0;
  /* 初期は見せない */
  transition: left 0.8s ease-in-out, opacity 0.2s ease-in-out;
}

/* show クラスで表示 */
#right_btn.show {
  opacity: 1;
  transform: translateX(0);
}

/* ホバー時：scale 削除、グローだけ残す */
#right_btn.show:hover {
  transform: translateX(0);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* ホバー時のみ shine を動かして表示 */
#right_btn.show:hover::before {
  opacity: 1;
  left: 150%;
  /* 完全に通過 */
}

/*下層
---------------------------------------------------------------------------*/
.l_main {
  width: 100%;
  max-height: 350px;
  background: url("../images/l_main.webp") center center no-repeat;
  background-size: cover;
  overflow: hidden;
  margin: 150px auto 0;
}

.l_main__inner {
  max-width: 1000px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  /* 縦中央寄せ */
  justify-content: space-between;
  /* 左右両端に配置 */
  box-sizing: border-box;
  padding: 0 20px;
}

/* 左側テキスト */
.l_main__text {
  width: 400px;
  height: 90px;
  margin: 0;
  padding: 20px 0px 0px 40px;
  display: flex;
  align-items: center;
  /* テキストの上下中央寄せ */
  background: rgba(255, 255, 255, 0.7);
  font-size: 60px;
  color: #000;
  box-sizing: border-box;
  line-height: 1rem;
}

/* 右側の人物画像 */
.l_main__figure {
  margin: 0;
}

.l_main__figure img {
  display: block;
  max-height: 340px;
  /* 背景内に収まる高さ */
  width: auto;
  object-fit: cover;
}

/* ================================
   レスポンシブ（768px以下）
   ================================ */
@media (max-width: 768px) {
  .l_main {
    width: 100%;
    background: url("../images/l_main.webp") left center no-repeat;
    margin: 90px auto 0;
  }

  .l_main__inner {
    min-height: 350px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    /* 縦中央寄せ */
    justify-content: space-between;
    /* 左右両端に配置 */
    box-sizing: border-box;
    padding: 0px;
    position: relative;
  }

  /* 左側テキスト */
  .l_main__text {
    width: auto;
    height: 70px;
    padding: 20px 40px 0px 40px;
    font-size: 40px;
    position: absolute;
    bottom: 0px;
    left: 0;
    z-index: 3;
  }

  /* 右側の人物画像 */
  .l_main__figure {
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
  }

  .l_main__figure img {
    display: block;
    max-height: 350px;
    /* 背景内に収まる高さ */
    width: auto;
    object-fit: cover;
  }
}

.staff_area {
  display: grid;
  max-width: 1000px;
  margin: 100px auto 100px;
  grid-template-columns: 380px 1fr;
  /* 写真エリアを380pxに、テキストエリアを残り幅に */
  gap: 40px;
}

/* スライダー枠を固定サイズ＆角丸に */
.slider2 {
  width: 380px;
  /* 写真エリア幅に合わせる */
  height: 500px;
  /* 画像に合わせる */
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  /* 矢印の位置指定のため */
}

/* スライド内の画像をボックスにフィット */
.slider2 .slick-slide img {
  width: auto;
  /* およそ340px幅 */
  object-fit: cover;
  height: 470px;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
  /* センター配置 */
}

/* 矢印ボタン */
.slider2 .slick-prev,
.slider2 .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: none;
  /* 背景なし */
  color: #000;
  /* 矢印を黒に */
  border: none;
  border-radius: 0;
  cursor: pointer;
}

.slider2 .slick-prev:before,
.slider2 .slick-next:before {
  font-size: 20px;
  color: #000;
}

.slider2 .slick-prev {
  left: 0px;
  /* 画像からはみ出さず、マージン内に配置 */
}

.slider2 .slick-next {
  right: 0px;
}

/* ドットナビゲーション（スライドボタン） */
.slider2 .slick-dots {
  position: absolute;
  bottom: -30px;
  /* 画像下に出るように */
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
  list-style: none;
}

.slider2 .slick-dots li {
  display: inline-block;
  margin: 0 4px;
}

.slider2 .slick-dots li button:before {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.3);
}

.slider2 .slick-dots li.slick-active button:before {
  color: #000;
  opacity: 1;
}

/* ドットを画像内の下端から10px上に */
.slider2 .slick-dots {
  position: absolute;
  bottom: -10px;
  z-index: 20;
  /* 矢印より前面に */
}

/* slick のデフォルトをリセットして 20px に */
.slider2 .slick-dots li button {
  width: 20px !important;
  height: 20px !important;
  padding: 0;
  background: none;
  border: none;
}

/* img がはみ出したり縮んだりしないように */
.slider2 .slick-dots li button img {
  display: block;
  width: 20px;
  height: 20px;
}

/* staff_text のフォントサイズとマージン */
.staff_text li {
  font-size: 24px;
  line-height: 1.5em;
}

.staff_text li a {
  color: #000;
}

.staff_text li span {
  font-size: 18px;
}

.staff_text h3 {
  font-size: 30px;
  margin-bottom: 0;
}

.staff_text h4 {
  font-weight: normal;
}

.staff_text li:not(:last-child) {
  margin-bottom: 25px;
}

.staff_text li:last-child {
  margin-bottom: 0;
}

.slider2 .slick-active {
  transform: scale(1);
}

.slider2 .slick-slide {
  transform: scale(1);
  transition: transform 0.4s ease;
}

@media (max-width:1000px) {
  .staff_area {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 50px auto 60px;
  }

  .slider2 {
    width: 100%;
    max-width: 375px;
    /* 最大幅を375pxに */
    border-radius: 20px;
    margin: 0 auto;
    /* 中央寄せ */
    overflow: hidden;
    position: relative;
  }

  /* 各スライドの figure をブロック幅いっぱいにしてテキスト寄せ */
  .slider2 li figure {
    width: 100% !important;
    margin: 0 !important;
    text-align: center !important;
  }

  /* 画像はインラインブロックにして、余計な幅制限を解除 */
  .slider2 li figure img {
    display: inline-block !important;
    margin: 0 auto !important;
  }

  .staff_text {
    width: 90%;
    margin: auto;
  }
}

/*その他
---------------------------------------------------------------------------*/

.pc {
  display: none !important;
}

.sh {
  display: block;
}

@media screen and (min-width:1080px) {

  /*全体の設定

    /*その他
---------------------------------------------------------------------------*/
  .ws {
    width: 48%;
    display: inline;
  }

  .sh {
    display: none;
  }

  .d_menu {
    display: none;
  }

  .pc {
    display: flex !important;
    justify-content: center;
  }
}

.pc2 {
  display: none !important;
}

.sh2 {
  display: block;
}


@media screen and (min-width:1025px) {

  /*全体の設定
---------------------------------------------------------------------------*/
  .sh2 {
    display: none;
  }

  .pc2 {
    display: flex !important;

  }
}