/*
Theme Name: Ena Creative
Author: Ena
Description: 自作テーマです
Version: 1.0
*/

@font-face {
  font-family: 'HonokaShinMincho';
  src: url('fonts/Honoka_Shin_Mincho_L.woff2') format('woff2');
}

@font-face {
  font-family: 'ZenKakuGothicNew';
  src: url('fonts/ZenKakuGothicNew-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'ZenKakuGothicNew';
  src: url('fonts/ZenKakuGothicNew-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'ZenKakuGothicNew';
  src: url('fonts/ZenKakuGothicNew-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'ZenKakuGothicNew';
  src: url('fonts/ZenKakuGothicNew-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'ZenKakuGothicNew';
  src: url('fonts/ZenKakuGothicNew-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}


/* 共通パーツ */
body {
  font-size: clamp(14px, 1.5vw, 16px);
  font-family: 'ZenKakuGothicNew';
  font-weight: 400;
  color: #4B0408;
}

section {
  padding: 80px 0;
}

.content {
  width: 86%;
  margin: 0 auto;
}

h2 {
  font-family: "Aboreto", system-ui;
  font-weight: 500;
  font-size: clamp(36px, 4vw, 9999px);
  margin-bottom: 50px;
}

h3 {
  font-weight: 500;
  margin-bottom: 30px;
  font-size: 20px;
}

.ja-title {
  font-family: 'HonokaShinMincho';
  font-size: clamp(14px, 1vw, 9999px);
  display: inline-block;
  position: relative;
  padding: 0 20px;
  margin-top: 44px ;
  color: #4B0408;
}

.ja-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 7vw;
  height: .5px;
  background-color: #888;
  transform: translateY(-50%);
}

.ja-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: 7vw;
  height: .5px;
  background-color: #888;
  transform: translateY(-50%);
}

.more-button {
	display: block;
	text-align: right;
}

.button-content {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  font-weight: 500;
  color: #4B0408;
  border: 1px solid #4B0408;
  text-decoration: none;
  position: relative;
  background: transparent;
  transition: all 0.4s ease-in-out;
  background-clip: border-box;
}

.button-content .text,
.button-content .arrow::after {
  transition: all 0.4s ease-in-out;
}

/* グラデーション用マスク：文字＆枠線 */
.button-content:hover {
  background: linear-gradient(to right, #4B0408, #96383D, #4B0408);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-image: linear-gradient(to right, #4B0408, #96383D, #4B0408);
  border-image-slice: 1;
}

/* arrow部分：hover時もグラデに */
.button-content .arrow::after {
  content: "→";
  color: #4B0408;
  display: inline-block; /* ← transform が効くように */
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.button-content:hover .arrow::after {
  transform: translateX(3px) scale(1.2); /* ← スライド＋拡大 */
  background: linear-gradient(to right, #4B0408, #96383D, #4B0408);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.button-content .arrow {
  margin-left: 8px; /* ← お好みで調整。10px でもOK */
}

.section-explanation {
	margin-bottom: 20%;
}

/* ヘッダーエリア */
header {
  position: relative;
  padding: 20px 0;
  background-color: #4B0408; /* ベースの背景色だけ */
  z-index: 1;
}

/* 線1（#510B0F） */
header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 20%;
  width: 5%;
  height: 0;
  background-color: #510B0F;
  animation: slideDown 1s forwards;
  animation-delay: 0.2s;
  z-index: -1;
}

/* 線2（#430508） */
header::after {
  content: '';
  position: absolute;
  top: 0;
  right: 15%;
  width: 5%;
  height: 0;
  background-color: #430508;
  animation: slideDown 1s forwards;
  animation-delay: 0.2s;
  z-index: -1;
}

/* アニメーション定義 */
@keyframes slideDown {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

.language-flex {
  display: inline-flex;
  border: .5px solid #fff;
  padding: 10px 15px;
}

#lang_choice_1 {
  background-color: #4B0408;
  color: #fff;
  border: none;
}

.earth-icon {
  margin-right: 10px;
  width: 20px;
  height: 20px;
}

header .content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-logo {
  width: 15%;
  left: 0;
  display: inline-block;
  margin-right: auto;
}

.facebook {
  margin-right: 0 !important;
}

/* ハンバーガー */
.menu-trigger {
  position: relative;
  width: 30px;
  height: 42px;
  cursor: pointer;
  margin-left: 35px;
}

.menu-trigger span {
  display: block;
  position: absolute;
  width: 30px;
  border-bottom: solid 1px #fff;
  border-radius: 3px;
  transition: .35s ease-in-out;
}

.menu-trigger span:nth-child(1) {
  top: 6px;
}

.menu-trigger span:nth-child(2) {
  top: 18px;
}

.menu-trigger span:nth-child(3) {
  top: 30px;
}

.menu-trigger.active span:nth-child(1) {
  top: 18px;
  transform: rotate(-45deg);
  border-bottom: solid 1px #4B0408;
}

.menu-trigger.active span:nth-child(2),
.menu-trigger.active span:nth-child(3) {
  top: 18px;
  transform: rotate(45deg);
  border-bottom: solid 1px #4B0408;
}

.menu-trigger.active {
  z-index: 10000;
  position: fixed;
}

/* ==== ドロワーメニュー内リスト ==== */
.drawer-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40vw;
  background-color: #CFCFCF;
  color: #4B0408;
  padding: 70px 0;
  z-index: 9999;

  /* 初期状態で右にオフスクリーン */
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.drawer-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.inline-content {
  padding: 0 30px;
}

#drawerMenu img {
  width: 100%;
}

.drawerMenu-list,
.drawerMenu-list-sub {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-item a {
  display: block;
  padding: 14px 20px;
  color: #4B0408;
  text-decoration: none;
  border-bottom: 1px solid #e0e0e0;
}

.main-item a:hover {
  background-color: #fff;
  color: #4B0408;
}

.sub-title {
  position: relative;
  display: block;
  padding: 14px 20px;
}

.sub-item a {
  display: block;
  padding: 12px 30px;
  color: #4B0408;
  text-decoration: none;
  border-bottom: 1px dashed #ccc;
}

.sub-item a:hover {
  background-color: #eee;
}

.drawerMenu-list-sub li a {
  display: block;
  padding: 12px 20px;
  color: #666;
  text-decoration: none;
}

.drawerMenu-list-sub li a:hover {
  text-decoration: underline;
}

.sub-menu {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.7s ease, opacity 0.7s ease;
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.sub-menu.show {
  max-height: 500px;
  opacity: 1;
}

.toggle-btn {
  cursor: pointer;
  position: relative;
}

.toggle-btn::after {
  content: "＋";
  position: absolute;
  right: 20px;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.toggle-btn.open::after {
  content: "−";
}

#drawerMenu .sns-wrap {
  color: #4B0408;
  display: flex;
  margin: 30px 20px 0 20px;
}

.sns-img-wrap {
  display: flex;
}

.sns-wrap p {
  margin-right: 30px;
}

#drawerMenu .sns-img-wrap img {
  width: 30px;
  height: auto;
  margin-right: 20px;
}

/* キービジュアルエリア */
#key-visual {
  position: relative;
  color: #fff;
  width: 100%;
  background-color: #4B0408; /* ベースの背景色だけ残す */
  padding: 0;
  z-index: 0;
}

#key-visual::before,
#key-visual::after {
  z-index: -1;
}

/* 線1（#510B0F） */
#key-visual::before {
  content: '';
  position: absolute;
  top: 0;
  right: 20%;
  width: 5%;
  height: 0;
  background-color: #510B0F;
  animation: slideDown 1s forwards;
  animation-delay: 0.9s;
}

/* 線2（#430508） */
#key-visual::after {
  content: '';
  position: absolute;
  top: 0;
  right: 15%;
  width: 5%;
  height: 0;
  background-color: #430508;
  animation: slideDown 1s forwards;
  animation-delay: 0.9s;
}

/* アニメーション定義 */
@keyframes slideDown {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

#key-visual .content {
  display: flex;
}

.key-visual-left,
.key-visual-right {
  width: 50%;
}

.key-visual-right {
  padding-left: 50px;
}

.key-visual-left img{
  margin-left: -17%;
  max-width: none;
  width: 117%;
  margin-bottom: 80px;
}

.key-visual-img {
  position: relative;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 3s ease-out forwards;
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.caption {
  font-family: 'HonokaShinMincho';
  position: absolute;
  z-index: 100;
  bottom: 7%;
  left: -10%;
  font-size: clamp(14px, 1.5vw, 9999px);
}

.key-title {
  font-size: clamp(36px, 4vw, 9999px);
  font-family: 'HonokaShinMincho';
  margin-bottom: 15%;
  border-right: .5px solid #fff;
}

.key-title.en-title {
  font-family: "Aboreto", system-ui !important;
}

.key-visual-right {
  margin-top: 8%;
  padding-bottom: 10%;
}

.key-description {
  line-height: 250%;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

.fade-in.delay-1 {
  animation-delay: 0.3s;
}

.fade-in.delay-2 {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

 /* WORKSセクション */
#works {
  background-color: #CFCFCF;
}

.works-sp-title {
  display: none;
}

.sp-br {
  display: none;
}

.post-list {
  position: relative;
  margin-bottom: 40px;
}

.post-sizer {
  width: calc((100% - 100px) / 3);
}

.post-item {
  width: calc((100% - 10px) / 3);
  margin-bottom: 20px;
  float: left;
  box-sizing: border-box;
}

.post-item.custom-insert:hover  {
  opacity: 1;
}

.post-item.custom-insert {
  padding: 0;
}

.post-item.custom-insert h2 {
  line-height: 0px;
  background:
    linear-gradient(to right,
      #4B0408 0%,
      #4B0408 70%,
      #510B0F 70%,
      #510B0F 80%,
      #430508 80%,
      #430508 90%,
      #4B0408 90%,
      #4B0408 100%
    );
  color: #fff;
  text-align: center;
  padding: 60px 0 40px 0;
  margin-bottom: 0px;
}

.post-item.custom-insert.entitle h2{
  padding: 60px 0 60px 0;
}

.post-item.custom-insert .ja-title {
  color: #fff;
}

.post-thumbnail {
  position: relative;
  overflow: hidden;
}

.post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.post-meta {
  background-color: #fff;
  color: #4B0408;
  padding: 20px 10px;
}

.post-excerpt {
  font-size: 10px;
}

.post-title {
  margin-bottom: 10px;
}

.post-url {
  font-size: 10px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.post-url a{
  display: flex;
}

.post-url a img{
  width: 10px;
  height: 15px;
  margin-right: 10px;
}

.post-url a:hover{
  opacity: .7;
}

#works .button-content {
  padding: 12px 100px;
}

.works-sp-title h1 {
  font-family: "Aboreto", system-ui;
  font-weight: 400;
  font-size: clamp(36px, 4vw, 9999px);
  margin-bottom: 50px;
  background: linear-gradient(to right, #4B0408 0%, #96383D 72%, #4B0408 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.works-sp-title .ja-title {
  margin-left: 10%;
  bottom: 7px;
}

.works-sp-title-ja {
  display: none;
  text-align: center;
  margin-bottom: 40px;
}

/* サムネ全体を覆う黒フィルター */
.thumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* ← 黒フィルター（少し薄め） */
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* 中の … アイコン */
.thumb-overlay .more-icon {
  position: absolute;
  top: auto;        /* ← これ追加 */
  bottom: 10px;     /* ← 下に配置 */
  right: 12px;      /* ← 右端 */
  color: #fff;
  opacity: 0;
  transform: translateY(5px); /* ← 下からふわっと */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* hover時にフィルターとアイコンを同時に出す */
.post-thumbnail:hover .thumb-overlay {
  opacity: 1;
}

.post-thumbnail:hover .thumb-overlay .more-icon {
  opacity: 1;
  transform: translateY(0);
}


/* PROFIE セクション */

#profile h2 {
  background: linear-gradient(to right, #4B0408 0%, #96383D 72%, #4B0408 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

section#profile{
  padding-bottom: 0;
}

#profile .ja-title {
  margin-left: 10%;
  bottom: 7px;
}

.profile-flex-wrap {
  display: flex;
}

.profile-left {
  width: 50%;
}

.profile-right {
  width: 50%;
  padding-left: 50px;
}

.profile-btn-wrap {
  display: flex;
  gap: 20px; /* ボタン間の余白。お好みで調整 */
}

.profile-btn-wrap .more-button {
  flex: 1; /* 均等幅にする */
}

.profile-btn-wrap .button-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.profile {
  display: grid;
  grid-template-columns: 20% 1fr;
  row-gap: 10px;
  margin-bottom: 30px;
}

.profile dt {
  margin: 0;
}

.profile dd {
  margin: 0;
}

/* serviceセクション */

#service h2{
  background: linear-gradient(to right, #4B0408 0%, #96383D 72%, #4B0408 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

#service .ja-title{
  margin-left: 10%;
  bottom: 7px;
}

.service-btn-wrap {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.service-btn-wrap .more-button {
  flex: 1;
}

.service-btn-wrap .button-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.service-text-area {
  line-height: 50px;
  margin-bottom: 30px;
}

/* CONTACTセクション */
#contact {
  position: relative;
  color: #fff;
  width: 100%;
  background-color: #4B0408; /* ベースの背景色だけ残す */
  z-index: 0;
}

#contact::before,
#contact::after {
  z-index: -1;
  content: '';
  position: absolute;
  top: 0;
  height: 0;
}

#contact::before {
  right: 20%;
  width: 5%;
  background-color: #510B0F;
}

#contact::after {
  right: 15%;
  width: 5%;
  background-color: #430508;
}

/* is-visible クラスが付いた時だけアニメーション発動 */
#contact.is-visible::before {
  animation: slideDown 1s forwards;
  animation-delay: 0.9s;
}

#contact.is-visible::after {
  animation: slideDown 1s forwards;
  animation-delay: 0.9s;
}

@keyframes slideDown {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

#contact h2{
  color: #fff;
  text-align: center;
  line-height: 0;
}

#contact .ja-title {
  color: #fff;
  margin-bottom: 20px;
  margin-top: 60px;
}

.contact-flex-wrap {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.cotact-right,
.contact-left {
  width: 50%;
  flex-shrink: 0;
}

.contact-right form {
  width: 100%;
  height: auto;
}

.contact-left img {
  width: 90%;
  height: auto;
  margin-bottom: 50px;
}

.contact-right {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}

.contact-right .fluentform {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  padding: 0;
  margin: 0 auto;
}


.sns-wrap {
  color: #fff;
  display: flex;
}

.sns-img-wrap {
  display: flex;
}

.sns-wrap p {
  margin-right: 30px;
}

.sns-img-wrap img {
  width: 30px;
  margin-right: 20px;
  margin-bottom: 0;
}

.ff-default .ff-el-input--label label {
  color: #fff;
}

.ff-default .ff-el-form-control {
  border-radius: 0px !important;
  background-color: #D9D9D9;
}

.ff-default .ff_btn_style {
  border-radius: 0px !important;
  border: 1px solid #fff !important;
  padding: 8px 80px 8px 60px !important;
}

form.fluent_form_3 .ff-btn-submit:not(.ff_btn_no_style) {
  background-color: #4B0408 !important;
}

form.fluent_form_4 .ff-btn-submit:not(.ff_btn_no_style) {
  background-color: #4B0408 !important;
}

.fluentform .ff-text-left {
  text-align: center !important;
}

.ff-btn-submit {
  position: relative;
  padding-right: 2em; /* 右側にスペース */
}

.ff-btn-submit::after {
  content: "→";
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 500;
  color: white; /* 必要に応じて変更 */
}

.ff-btn-submit:hover::after {
  transform: translateY(-50%) translateX(4px);
  transition: transform 0.3s ease;
}

.fluentform .ff-el-group {
  margin-bottom: 30px !important;
}

.ff-default .ff-el-input--label label {
  font-weight: 500 !important;
}


/* footerエリア */

footer {
  background-color: #CFCFCF;
   padding: 80px 0;
}

.footer-logo {
  /* font-family: "Aboreto", system-ui;
  font-weight: 500;
  font-size: clamp(36px, 4vw, 9999px);
  margin-bottom: 50px;
  background: linear-gradient(to right, #4B0408 0%, #96383D 72%, #4B0408 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block; */
  width: 70%;
  margin-bottom: 50px;
}

.footer-flex-wrap {
  display: flex;
  font-size: 12px !important;
}

.footer-left {
  width: 40%;
}

.footer-right {
  width: 60%;
  display: flex;
}

.footer-list-left {
  width: 50%;
}

.footer-list-right {
  width: 50%;
}

footer .sns-wrap {
  color: #4B0408;
}

.footer-list-right li a {
  display: block;
  padding: 12px 20px;
  color: #666;
  text-decoration: none;
}

.footer-list-right li a:hover {
  text-decoration: underline;
}

/* experience section */

#experience h1 {
  font-family: "Aboreto", system-ui;
  font-weight: 500;
  font-size: clamp(36px, 4vw, 9999px);
  margin-bottom: 50px;
  background: linear-gradient(to right, #4B0408 0%, #96383D 72%, #4B0408 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

#experience .ja-title {
  margin-left: 10%;
  bottom: 7px;
}

#experience h2 {
  font-size: clamp(20px, 2vw, 36px);
  font-family: 'ZenKakuGothicNew';
  font-weight: 500;
  color: #4B0408;
}

.experience-flex-wrap {
  display: flex;
}

.experience-left {
  width: 50%;
}

.experience-right {
  width: 50%;
  padding-left: 50px;
}

.experience-btn-wrap {
  display: flex;
  gap: 20px; /* ボタン間の余白。お好みで調整 */
  margin-top: 30px;
}

.experience-btn-wrap .more-button {
  flex: 1; /* 均等幅にする */
}

.experience-btn-wrap .button-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.experience {
  display: grid;
  grid-template-columns: 20% 1fr;
  row-gap: 40px;
  position: relative;
  padding-left: 10px; /* 丸と棒のスペース */
}

/* ✅ 棒（一本だけ描いてアニメーション） */
.experience::before {
  content: "";
  position: absolute;
  top: 0.5em; /* 最初の丸に合わせて少し下げる */
  left: 13%;
  transform: translateX(150%); /* ちょうどdtの右側に来る */
  width: 2px;
  height: 0;
  background-color: #ccc;
  z-index: 0;
  animation: lineDrop 1s ease-out forwards;
}

/* ✅ 丸（位置はそのままでOK） */
.experience dt::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 60%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 50%;
  z-index: 2;
  opacity: 0;
  animation: dotFade 0.6s ease-out forwards;
  animation-delay: 1s;
}

/* ✅ アニメーション */
@keyframes lineDrop {
  to {
    height: 100%;
  }
}

@keyframes dotFade {
  to {
    opacity: 1;
  }
}

/* ✅ 構造調整 */
.experience dt {
  position: relative;
  font-weight: 500;
  margin-bottom: 0;
}

.experience dd {
  margin: 0;
  padding-bottom: 20px;
}

.sp-experience-btn-wrap {
  display: none;
}

/* skill set section */

#skill-set h1 {
  font-family: "Aboreto", system-ui;
  font-weight: 500;
  font-size: clamp(36px, 4vw, 9999px);
  margin-bottom: 50px;
  background: linear-gradient(to right, #4B0408 0%, #96383D 72%, #4B0408 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

#skill-set .ja-title {
  margin-left: 10%;
  bottom: 7px;
}

#skill-set h2 {
  font-size: clamp(20px, 2vw, 36px);
  font-family: 'ZenKakuGothicNew';
  font-weight: 500;
  color: #4B0408;
}

.skill-set-flex-wrap {
  display: flex;
}

.skill-set-left {
  width: 50%;
}

.skill-set-right {
  width: 50%;
  padding-left: 50px;
}

.skill-set-btn-wrap {
  display: flex;
  gap: 20px; /* ボタン間の余白。お好みで調整 */
  margin-top: 30px;
}

.skill-set-btn-wrap .more-button {
  flex: 1; /* 均等幅にする */
}

.skill-set-btn-wrap .button-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.skill-set dt {
  position: relative;
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  border-bottom: solid .5px #4B0408;
  margin-top: 30px;
}

.skill-set dt img {
  width: 20px;
  height: 20px;
  margin-right: 15px;
}

.skill-set dd {
  margin-left: 40px;
  padding-bottom: 10px;
}

.sp-skill-btn-wrap {
  display: none;
}

/* flow section */

#flow h1 {
  font-family: "Aboreto", system-ui;
  font-weight: 500;
  font-size: clamp(36px, 4vw, 9999px);
  margin-bottom: 50px;
  background: linear-gradient(to right, #4B0408 0%, #96383D 72%, #4B0408 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

#flow .ja-title {
  margin-left: 10%;
  bottom: 7px;
}

#flow h2 {
  font-size: clamp(20px, 2vw, 36px);
  font-family: 'ZenKakuGothicNew';
  font-weight: 500;
  color: #4B0408;
}

#flow .content {
  width: 70%;
}

.flow-list {
  margin: 70px 0 100px 0;
}

.flow-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.flow-text {
  flex: 1;
  min-width: 250px;
}

.flow-no {
  display: inline-block;
  color: #4B0408;
  margin-bottom: 10px;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 500;
}

.flow-list-title {
  font-size: clamp(20px, 1.5vw, 36px);
  margin-bottom: 15px;
  font-weight: 500;
}

.flow-description {
  line-height: 1.6;
  color:rgba(0, 0, 0, 0.9);
}

.flow-image {
  flex: 0 0 15%;
}

.flow-image img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* price section */
#price h1 {
  font-family: "Aboreto", system-ui;
  font-weight: 500;
  font-size: clamp(36px, 4vw, 9999px);
  margin-bottom: 50px;
  background: linear-gradient(to right, #4B0408 0%, #96383D 72%, #4B0408 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

#price .ja-title {
  margin-left: 10%;
  bottom: 7px;
}

#price h2 {
  font-size: clamp(20px, 2vw, 36px);
  font-family: 'ZenKakuGothicNew';
  font-weight: 500;
  color: #4B0408;
}

.price-note {
  margin-bottom: 20px;
  color: #555;
}

.price-table-wrap {
  overflow-x: auto;
  margin-bottom: 70px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.price-table th {
  background-color: #f5f5f5;
  color: #333;
  white-space: nowrap;
}

/* faq section */
#faq h1 {
  font-family: "Aboreto", system-ui;
  font-weight: 500;
  font-size: clamp(36px, 4vw, 9999px);
  margin-bottom: 50px;
  background: linear-gradient(to right, #4B0408 0%, #96383D 72%, #4B0408 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

#faq .ja-title {
  margin-left: 10%;
  bottom: 7px;
}

#faq h2 {
  font-size: clamp(20px, 2vw, 36px);
  font-family: 'ZenKakuGothicNew';
  font-weight: 500;
  color: #4B0408;
}

.faq-item {
  border-top: 1px solid #ccc;
}

.faq-question {
  width: 100%;
  padding: 15px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  color: inherit;
  text-decoration: none;
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #f9f9f9;
  padding: 0 15px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 15px;
}

.faq-list {
  margin-bottom: 70px;
}

/* プライバシーポリシー＆個人情報ページ共通CSS */
#privacy h1 {
  font-family: "Aboreto", system-ui;
  font-weight: 500;
  font-size: clamp(36px, 4vw, 9999px);
  margin-bottom: 50px;
  background: linear-gradient(to right, #4B0408 0%, #96383D 72%, #4B0408 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

#privacy .ja-title {
  margin-left: 10%;
  bottom: 7px;
}

#privacy h2 {
  font-size: clamp(14px, 1.5vw, 36px);
  font-family: 'ZenKakuGothicNew';
  font-weight: 500;
  color: #4B0408;
  margin-bottom: 5px;
  margin-top: 40px;
}

.copy-right {
  background-color: #4B0408;
  color: #fff;
  font-size: 12px;
  padding: 10px 0;
  text-align: center;
}
