html {
  font-size: clamp(12px, 0.9375vw, 16px);
  color: #222;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background: #f1f4f6;
}

body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: linear-gradient(to bottom, #8AD6EE, #2D55BD)
}

a {
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

body {
  position: relative;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

main {
  overflow-x: hidden;
  position: relative;
  padding: 0;
}

.main-visual {
  width: 100%;
  height: auto;
  display: block;
  padding-top: 100px;
}

h2 {
  /* font-size: clamp(24px, 1.6667vw, 32px); */
  font-weight: 700;
  text-align: center;
  margin-bottom: 45px;
  font-size: 32px;
}

.banner {
  position: relative;
  z-index: 100;
  margin: -25px auto 0;
  width: fit-content;
  padding: 0 20px;
}

.p-top .slick-slider {
    max-width: 1920px;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
  h2 {
    margin-bottom: 0;
    font-size: 21px;
  }

  .banner {
    margin: -5px auto 0;
  }
  .p-top .slick-arrow {
    width: 25px;
  }
}

/* セミナー */
.p-top__seminar {
  padding: 95px 20px 60px;
  text-align: center;
  max-width: 1300px;
  margin: auto;
  position: relative;
}

.seminar-container {
  /* display: flex; */
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
}

.seminar-card {
  width: calc(100% / 4 - 15px);
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  margin: 10px;
}

.seminar-card img {
  width: 100%;
  display: block;
  height: auto;
  /* object-fit: cover;
  object-position: top; */
}

.seminar-info {
  padding: 10px;
}

.seminar-title {
  margin-bottom: 5px;
  font-weight: 700;
  text-align: left;
  font-size: 16px;
  line-height: 26px;
}

.seminar-date {
  font-size: 12px;
  color: #555;
  text-align: right;
  font-size: 16px;
}

.seminar-links {
  max-width: 600px;
  text-align: center;
  border: 1px solid #00bfa6;
  border-radius: 10px;
  display: block;
  margin: 45px auto 0;
}

.seminar-links a {
  text-decoration: none;
  padding: 25px;
  color: #007B83;
  display: block;
  position: relative;
  max-width: 600px;
  font-size: 16px;
}

.seminar-links a::after {
  content: '';
  background-image: url('../images/common/arrow-right.png');
  font-size: 12px;
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-size: 100%;
}

.more-links {
  position: relative;
  width: 600px;
  text-align: center;
  border: 1px solid #00bfa6;
  border-radius: 10px;
  display: block;
  margin: 45px auto 0;
}

.more-links a {
  text-decoration: none;
  padding: 25px;
  color: #007B83;
  display: inline-block;
}

.more-links::after {
  content: '➤';
  color: #00bcd4;
  position: absolute;
  top: 25px;
  bottom: 0;
  right: 40px;
}

@media screen and (max-width: 767px) {
  .p-top__seminar {
    padding: 60px 2%;
  }

  .seminar-container {
    justify-content: center;
    padding: 0;
  }

  .seminar-card {
    width: calc(100% / 2 - 10px);
  }

  .seminar-links,
  .more-links {
    width: 80%;
    border-radius: 5px;
  }

  .seminar-links a {
    padding: 10px 25px;
    font-size: 10px;
  }
}

/* 銘柄 */
.p-top__products {
  padding: 95px 50px 60px;
  text-align: right;
  max-width: 1300px;
  margin: auto;
  position: relative;
}

.cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.label {
  /* font-size: 0.9375vw; */
  font-weight: bold;
  margin-bottom: 60px;
  font-size: 18px;
}

.card {
  width: calc(100% / 4 - 30px);
  height: auto;
  padding: 35px 20px 75px;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
  text-decoration: none;
  color: #000;
}

.card:hover {
  transform: translateY(-5px);
}

.card.blue {
  background-color: #e9f4fc;
}

.card.beige {
  background-color: #fef0e6;
}

.card.gray {
  background-color: #f1f3f6;
}

.card.yellow {
  background-color: #fff9e5;
}

@media screen and (max-width: 767px) {
  .p-top__products {
    padding: 60px 20px;
  }

  .cards {
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    margin-bottom: 30px;
  }

  .card {
    width: calc(100% / 2 - 20px);
    padding: 20px;
  }

  .label {
    margin-bottom: 30px;
    font-size: 11px;
  }

  .icon {
    width: 50%;
    margin: 0 auto;
  }

  .beige .icon,
  .yellow .icon {
    width: 70%;
  }
}


/* 動画セクション */
.p-top__video {
  padding: 95px 0 60px;
  text-align: center;
  /* max-width: 1300px;
  margin: auto; */
  position: relative;
}

.subtitle {
  display: block;
  margin-bottom: -8px;
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: bold;
  font-size: 24px;
}

.video-carousel {
  margin: 40px auto;
}

.video-card {
  overflow: hidden;
  width: 340px !important;
  padding: 0 15px;
}

.video-card img {
  width: 100%;
  display: block;
}

.video-description {
  color: #666;
  padding: 10px 10px;
  text-align: left;
  font-size: 16px;
  line-height: 26px;
}

.video-more {
  max-width: 1240px;
  text-align: right;
  margin: 0 auto;
  padding: 0 20px;
}

.more-link {
  position: relative;
  display: inline-block;
  padding-right: 20px;
  font-size: 16px;
}

.more-link::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #00b2a9;
  position: absolute;
  top: 3px;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .p-top__video {}

  .video-card {
    width: 188px !important;
  }

}

/* 初めての方へ */
.p-top__about {
  padding: 95px 0 0;
  text-align: center;
  position: relative;
}

.p-top__about::after {
    content: "";
    display: block;
    width: 140%;
    height: 440px;
    border-radius: 50%;
    position: absolute;
    left: -20%;
    bottom: -100px;
    z-index: 1;
    background: #fffac2;
}

.lead {
  color: #555;
  font-size: clamp(16px, 1.25vw, 24px);
  margin: -20px 0 130px;
  font-size: 24px;
  line-height: 36px;
}

.yerrow-line {
  text-decoration-color: #fffac2;
  text-decoration-line: underline;
  text-decoration-thickness: 5px;
  text-underline-offset: -3px;
  text-decoration-skip-ink: none;
}

.users {
  display: flex;
  justify-content: center;
  gap: 0 40px;
  flex-wrap: wrap;
  background-color: #fffac2;
  /* border-bottom-left-radius: 100% 125px; */
  /* border-bottom-right-radius: 100% 125px; */
  /* margin-bottom: -80px; */
  z-index: 100;
  position: relative;
}

.user {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  /* top: -60px; */
  margin-top: -60px;
}

.speech-bubble {
  background: #fff;
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  font-size: clamp(16px, 1.25vw, 24px);
  color: #00a59c;
  position: relative;
  width: 28vw;
  max-width: 400px;
  font-size: 24px;
  line-height: 35px;
}

.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top: 20px solid #fff;
}

.user-content {
  display: flex;
}

.character {
  height: auto;
  margin: 30px auto 45px;
  max-width: 186px;
}

.circle-button {
  display: inline-block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #00bfa6;
  color: white;
  text-align: center;
  line-height: 1.4;
  padding-top: 65px;
  font-weight: bold;
  text-decoration: none;
  font-size: clamp(16px, 1.25vw, 24px);
  position: relative;
  margin: 0 auto;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  font-size: 24px;
}

.circle-button::after {
  content: '';
  background-image: url('../images/common/arrow-bottom.png');
  font-size: 12px;
  position: absolute;
  bottom: 15px;
  right: 0;
  left: 0;
  margin: auto;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-size: 100%;
}

@media screen and (min-width: 768px) {
  .user-content {
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .lead {
    margin: 10px 0 60px;
  }

  .users {
    gap: 25px;
  }

  .user {
    /* top: -35px; */
    width: calc(100% - 40px);
    margin-top: 0;
  }

  .speech-bubble {
    width: 200px;
    font-size: 16px;
    margin: 0 auto;
    padding: 19px 0;
    border-radius: 20px;
    line-height: 18px;
  }

  .speech-bubble::after {
    left: 50px;
  }

  .user-content {
    align-items: center;
    gap: 20px;
    justify-content: center;
    padding: 25px 0 0;
  }

  .user:not(:last-child) .user-content {
    padding-bottom: 25px;
  }

  .user-content.border {
    border-bottom: 1px solid #00b09b;
  }

  .character {
    max-width: 100px;
    margin: 0;
  }

  .circle-button {
    font-size: 14px;
    padding-top: 35px;
    max-width: 100px;
    height: 100px;
    line-height: 15px;
    margin: 0;
  }

  .circle-button::after {
    width: 10px;
    height: 10px;
    bottom: 8px;
  }
}

/* 選ばれる理由 */
.p-top__features {
  background-color: #009191;
  /* 背景 */
  padding: 160px 20px;
  color: #000;
  text-align: center;
}

.features-title .subtitle {
  color: #ffffff;
}

.features-title h2 {
  color: #ffffff;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px 20px 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  height: 220px;
  width: calc(100% / 2 - 15px);
}

.feature-card .text {
  text-align: left;
  width: 50%;
}

.feature-card h3 {
  /* font-size: clamp(16px, 1.25vw, 24px); */
  font-weight: bold;
  margin-bottom: 25px;
  /* line-height: 1.3; */
  font-size: 24px;
  line-height: 30px;
}

.feature-card p {
  color: #444;
  /* line-height: 1.6; */
  font-size: 16px;
  line-height: 26px;
}

.feature-card a {
  color: #009191;
  text-decoration: underline;
  font-weight: bold;
}

.feature-card .icon {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .p-top__features {
    padding: 120px 20px 70px;
  }

  .features-title {
    margin-bottom: 20px;
  }

  .features-grid {
    gap: 20px;
  }

  .feature-card {
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
    height: auto;
    padding: 20px 10px 20px;
    width: calc(100% / 2 - 10px);
  }

  .feature-card h3 {
    text-align: center;
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 15px;
  }

  .feature-card .text {
    width: 100%;
  }

  .feature-card .text p {
    height: 5em;
  }

  .feature-card .icon {
    width: 60%;
    text-align: center;
  }

  .feature-card .icon.w-40 {
    /* width: 40%; */
  }

}

/* マーケット情報 */
.p-top__market-info {
  padding: 95px 50px;
  text-align: center;
  max-width: 1300px;
  margin: auto;
  position: relative;
}

.market-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #009191;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.market-label {
  background-color: #009191;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  /* font-size: 0.9375vw; */
  /* line-height: 1.4; */
  font-size: 18px;
  line-height: 30px;
}

.market-content {
  display: flex;
  flex: 1;
  /* justify-content: space-around;
  align-items: center;
  padding: 20px; */
}

.market-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #009191;
  font-weight: bold;
  /* font-size: 0.9375vw; */
  width: 100%;
  justify-content: center;
  padding: 0 100px 0 20px;
  flex: 1;
}

.market-item .text {
  position: relative;
  font-size: 18px;
}

.market-item .text::after {
  content: '';
  background-image: url('../images/common/arrow-right.png');
  position: absolute;
  top: 50%;
  right: -70px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

/* .market-item img {
  width: 36px;
  height: auto;
} */

.divider {
  width: 1px;
  background-color: #009191;
  opacity: 0.3;
}

@media screen and (max-width: 767px) {
  .p-top__market-info {
    padding: 80px 20px;
  }

  .market-label {
    width: 100px;
    height: 100px;
    font-size: 11px;
    line-height: 20px;
  }

  .market-item {
    padding: 0 10px 0 10px;
    flex-direction: column;
    margin-left: -25px;
  }

  .market-item img {
    width: 25%;
  }

  .market-item .text::after {
    right: -30px;
  }
}

/* ニュース */
.p-top__news {
  padding: 90px 20px;
}

.tabs {
  max-width: 1100px;
  margin: 0 auto;
}

.tab-menu {
  display: flex;
  padding-left: 0;
  margin-bottom: 10px;
}

.tab-menu li {
  list-style: none;
  padding: 10px 20px;
  cursor: pointer;
  color: #dddddd;
  border-bottom: 3px solid #dddddd;
  transition: all 0.3s ease;
  width: 20%;
  text-align: center;
  font-size: 16px;
}

.tab-menu li.active {
  color: #009995;
  border-bottom: 3px solid #009995;
  font-weight: bold;
  position: relative;
}

.tab-menu li.active:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 3px 0px 3px;
  border-color: #009995 transparent transparent transparent;
  position: absolute;
  top: 112%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.news-item {
  display: flex;
  gap: 25px;
  padding: 10px 0;
  align-items: center;
}

.p-top__news .news-item[hidden] { 
  display: none !important;
}

.news-item .date {
  /* width: 100px; */
  color: #333333;
  font-size: 17px;
}

.news-item .tag {
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 13px;
  color: white;
  min-width: 90px;
  width: fit-content;
  height: 22px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tag.notice {
  background-color: #5f27cd;
}

.tag.campaign {
  background-color: #f368e0;
}

.tag.seminar {
  background-color: #2e86de;
}

.tag.youtube {
  background-color: #ff9f43;
}

.news-item a {
  text-decoration: underline;
  text-underline-offset: 5px;
  color: #009995;
  font-size: 17px;
}

.news-more {
  text-align: right;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .tab-menu li.active:before {
    top: 125%;
  }

  .tab-menu li {
    font-size: 2.7vw;
    padding: 5px 3px;
  }

  .news-item .date {
    color: #666;
    width: 15%;
    font-size: 11px;
  }

  .news-item .tag {
    font-size: 10px;
    width: 25%;
    max-width: 88px;
  }

  .news-item a {
    width: 52%;
    font-size: 11px;
  }
}

/* ステップ */
.p-top__steps {
  padding: 95px 0 60px;
  text-align: center;
  background-color: #f7f7f7;
}

.steps {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.step {
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  width: 280px;
  padding: 40px 20px 50px;
  position: relative;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.step-icon {}

.step-title {
  /* font-size: 0.9375vw; */
  width: -webkit-fill-available;
  font-weight: bold;
  margin-bottom: 25px;
  font-size: 18px;
}

.step-text {
  color: #333;
  margin-top: 40px;
  font-size: 16px;
}

.arrow {
  position: relative;
  display: inline-block;
}

.arrow::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 0 22px 40px;
  border-color: transparent transparent transparent #00b2a9;
  position: absolute;
  top: 0;
  left: -18px;
  bottom: 0;
  margin: auto;
  z-index: 1000;
}

/* PCレイアウト（そのまま横並び） */
@media screen and (min-width: 768px) {
  .step {
    flex-direction: row;
    align-items: flex-start;
  }

  .step-left {
    display: contents;
    /* 左側のまとまりをバラして横並び */
  }

  .step-title {
    order: 0;
  }

  .step-icon {
    order: 1;
  }

  .step-text {
    order: 2;
  }
}

/* SPレイアウト：タイトル+テキストを左、アイコンを右 */
@media screen and (max-width: 767px) {
  .step {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    padding: 20px 20px 30px;
  }

  .step-left {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .step-title {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .step-text {
    margin-top: 0;
    line-height: 17px;
    font-size: 12px;
  }

  .step-icon {
    margin-left: 1rem;
    flex-shrink: 0;
    width: 20%;
  }

  .arrow::after {
    left: -15px;
    border-width: 11px 0 11px 20px;
  }
}



@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }

  .arrow {
    transform: rotate(90deg);
  }
}

/* コンタクト */
.contact-section {
  background-color: #f7f7f7;
  text-align: center;
  font-family: sans-serif;
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 20px;
}

.contact-section h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.contact-section h2 span {
  display: block;
  margin-top: -8px;
}

.btn-web {
  font-size: clamp(16px, 1.25vw, 24px);
  display: inline-block;
  background-color: #f8577c;
  color: white;
  font-weight: bold;
  padding: 15px 20px;
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 20px;
  display: block;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.btn-web img {
  vertical-align: unset;
  margin-right: 8px;
}

.phone-support {
  font-size: clamp(16px, 1.25vw, 24px);
  background: #00b2a9;
  color: white;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.support-title {
  padding: 10px;
  font-weight: bold;
  background-color: #00b2a9;
}

.support-body {
  background: #fff;
  color: #00b2a9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 15px;
  line-height: 1.3;
}

.phone-number strong {
  font-size: 40px;
}

.phone-number small {
  font-size: 14px;
  color: #333;
  font-weight: bold;
}

.extra-links {
  margin-top: 20px;
  text-align: right;
}

.material-link {
  text-decoration: none;
  font-weight: bold;
  color: #333;
  font-size: 14px;
}

.sns-icons {
  display: flex;
  gap: 20px;
  margin-top: 50px;
  justify-content: center;
}

.sns {
  width: 40px;
  height: 40px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.sns.youtube {
  background-image: url('../images/top/youtube.png');
}

.sns.x {
  background-image: url('../images/top/twitter.jpg');
  background-color: black;
  border-radius: 8px;
}

@media screen and (max-width: 767px) {
  .phone-number img {
    width: 30px;
    height: 30px;
  }

  .phone-number strong {
    font-size: 30px;
  }

}



.p-top__seminar::after,
.p-top__products::after,
.p-top__video::after,
.p-top__market-info::after {
  background-color: #dddddd;
  content: "";
  display: block;
  width: calc(100% - 40px);
  max-width: 1300px;
  height: 1px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
}




.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  padding: 0;
}

.slick-prev {
  left: 10px;
}

.slick-next {
  right: 10px;
}

.seminar-container .slick-prev {
  /* display: none !important; */
  left: -15px;
}

.seminar-container .slick-next {
  right: -15px;
}

.slick-dots {
  display: flex !important;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.slick-dots li {
  margin: 0 10px;
}

.slick-dots li button {
  font-size: 0;
}

.slick-dots li button:before {
  content: "•";
  font-size: 45px;
  color: #fff;
  transition: 0.3s;
}

.seminar-container .slick-dots {
  bottom: -40px;
}

.video-carousel .slick-dots {
  bottom: -50px;
}

.seminar-container .slick-dots li button:before,
.video-carousel .slick-dots li button:before {
  color: #c1c1c1;
}

.slick-dots li.slick-active button:before {
  color: #0b9eb7;
}

@media screen and (max-width: 767px) {
  .slick-dots {
    bottom: -13px;
  }

  .slick-dots li button:before {
    font-size: 30px;
  }

  .video-carousel .slick-dots {
    bottom: -30px;
  }
}



.sp-only {
  display: none;
}

.pc-only {
  display: block;
}

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

  .pc-only {
    display: none;
  }
}







.slick-dots {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.slick-dots li {
  margin: 0 5px;
}





.p-policy {
  padding: 120px 20px 50px;
  max-width: 1420px;
  margin: 0 auto;
}

.p-policy h1 {
  font-size: 32px;
  font-weight: bold;
  color: #019e9a;
  text-align: center;
  margin-bottom: 70px;
}

.p-policy h2 {
  font-size: 24px;
  font-weight: bold;
  color: #019e9a;
  margin: 40px 0 20px;
  border-left: 3px solid #019e9a;
  padding: 10px 20px 10px 25px;
  text-align: left;
}

.p-policy h3 {
  font-size: 22px;
  color: #009995;
  margin: 30px 30px 15px;
}

.p-policy h4 {
  font-size: 18px;
  color: #009995;
  margin: 0 30px;
}

.p-policy p {
  font-size: 16px;
  margin-left: 30px;
}

.p-policy ul,.p-policy ol {
  margin: 30px 50px 25px 50px;
  font-size: 16px;
}
.p-policy .wp-block-heading + ul,
.p-policy .wp-block-heading + ol {
  margin-top: 0;
}

.p-policy ol li,
.p-policy ul li {
  /* padding-left: 1em; */
  /* text-indent: -1em; */
  margin-bottom: 1em;
}

.underline {
  text-decoration: underline;
  text-underline-offset: 10px;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.p-policy ol {
    list-style: decimal;
}

.p-policy ul {
    list-style: disc;
}

@media only screen and (max-width: 767px) {
  .p-policy h1 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .p-policy h2 {
    font-size: 22px;
    margin-top: 50px;
  }

  .p-policy h3 {
    font-size: 20px;
    margin: 50px 0 10px;
  }

  .p-policy h4 {
    font-size: 16px;
    margin: 0;
  }

  .p-policy p {
    font-size: 14px;
    margin: 0;
  }

  .p-policy ul,.p-policy ol {
    margin: 0 0px 20px 20px;
    font-size: 14px;
  }

  .mt-20 {
    margin-top: 20px !important;
  }
}



/* パンくずリスト */
.breadcrumb {
  padding: 20px 22px 60px;
  text-align: justify;
}

.breadcrumb .container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.breadcrumb .breadcrumb-list li::after {
  /* background: url(../images/common/ico_breadcrumb.svg) no-repeat; */
  content: '>';
  /* right: 10px; */
  /* position: absolute; */
  /* top: 7px; */
  /* height: 10px; */
  /* width: 10px; */
  margin: 0 1em;
}

.breadcrumb .breadcrumb-list li:last-child::after {
  /* background: none; */
  content: '';
}

.breadcrumb .breadcrumb-list li {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.08em;
  /* padding-right: 40px; */
  position: relative;
  vertical-align: top;
}

.breadcrumb .breadcrumb-list li:last-child {
  color: #009995;
}

@media only screen and (max-width: 767px) {
  .breadcrumb {
    padding: 6px 15px;
  }

  .breadcrumb .container {
    padding: 0;
  }

  .breadcrumb .breadcrumb-list li {
    /* padding-right: 30px; */
    font-size: 10px;
    letter-spacing: .08em;
    line-height: 20px;
  }
}


/* ページネーション */
.custom-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 70px 0 0;
  list-style: none;
}

.custom-pagination li {
  display: inline-block;
}

.custom-pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s ease;
}

.custom-pagination .page-numbers:hover:not(.current):not(.disabled) {
  background: #00c4b3;
  color: #fff;
  border-color: #00c4b3;
}

.custom-pagination .page-numbers.current {
  background: #00c4b3;
  color: #fff;
  border-color: #00c4b3;
}

.custom-pagination .page-numbers.disabled {
  opacity: 0.3;
  cursor: default;
}

.custom-pagination .page-numbers.first,
.custom-pagination .page-numbers.last,
.custom-pagination .page-numbers.prev,
.custom-pagination .page-numbers.next {
  font-size: 14px;
  color: #00c4b3;
}

.page-numbers.dots {
  color: #00c4b3;
  border: none;
}

@media screen and (max-width: 767px) {
  .custom-pagination {
    gap: 15px;
  }

  .custom-pagination .page-numbers {
    width: 25px;
    height: 25px;
  }
}

.l-main--page {
  padding-top: 107px;
}

.l-main--page small {
    font-size: 12px;
}

.l-section {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .l-section {
    margin-top: 50px;
  }
}

.l-container {
  max-width: 1350px;
  padding: 0 30px;
  margin: 0 auto 80px;
}

@media screen and (max-width: 767px) {
  .l-main--page {
    padding-top: 60px;
  }
}

.c-mv__picture {
  display: block;
  width: 100%;
}

.c-mv__img {
  width: 100%;
  object-fit: cover;
}

.c-page-secondary-ttl {
  margin-bottom: 50px;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(90deg, #009995 0%, #00c8c3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* サービスページ */
.p-services__block {
  margin: 0 auto 100px;
}

.p-services__content {
  display: flex;
  align-items: stretch;
  gap: 30px;
  background: #fff;
}

.p-services__image {
  flex: 1;
  line-height: 0;
}

.p-services__image img {
  width: 100%;
}

.p-services__text {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: min(50px, 3.125vw) 0 min(20px, 1.25vw);
}

.p-page-description p,
.p-services__text p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}

.p-services__btn {
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  margin-top: auto;
  padding: .8em 1em;
  border-radius: 8px;
  color: #fff;
  font-size: clamp(18px, 1.3vw, 22px);
  font-weight: 600;
  text-align: center;
  background: #ff9f43;
}

.p-services__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  opacity: 1;
}

/* CTAボタンセクション */
.p-services__cta {
  padding: 60px 0;
  text-align: center;
  background-color: #f7f7f7;
}

.p-services__cta-inner {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 650px;
  margin: 0 auto;
}


.p-services__cta-btn {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: .8em 1em;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  font-size: clamp(18px, 1.3vw, 22px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);

  &::before {
    display: block;
    width: 1em;
    height: 1em;
    background: center / contain no-repeat;
    content: '';
  }
}

.p-services__cta-btn--account {
  background-color: #ff4d79;

  &::before {
    background-image: url(../images/icon-open-account.svg);
  }
}

.p-services__cta-btn--materials {
  background-color: #009995;

  &::before {
    background-image: url(../images/icon-request-materials.svg);
  }
}

.p-services__cta-btn--details {
  background-color: #FF9E43;

  &::before {
    background-image: url(../images/icon-details.svg);
  }
}

.p-services__cta-btn--contact {
  background-color: #009995;

  &::before {
    background-image: url(../images/icon-contact.svg);
  }
}

.p-services__cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  opacity: 1;
}

/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
  .c-page-secondary-ttl {
    margin-bottom: 20px;
    font-size: 24px;
  }

  .p-services__block {
    margin-bottom: 60px;
  }

  .p-services__content {
    flex-direction: column;
    gap: 20px;
  }

  .p-services__text {
    padding-top: 0;
  }

  .p-services__cta {
    padding: 50px 20px;
  }
}

.c-common-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
}

.c-common-btns--3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px min(60px, 3.75vw);
  width: fit-content;
  margin-inline: auto;

}

.c-common-btns__btn--3col {
  padding: .8em 2em;
}

.c-common-btns__btn {
  transition: all 0.3s ease;
  display: block;
  flex: 1;
  padding: .8em 1em;
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  background-color: #009995;
}

.c-common-btns__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  opacity: .9;
}

.c-common-page-block {
  margin-bottom: 100px;
}

.p-services-cfd__description {
  margin-bottom: 40px;
}

.p-services-cfd__description p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.p-services-cfd__content {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 40px;
  margin-bottom: 30px;
}

.p-services-cfd__text {
  flex: 1;
}

.p-services-cfd__text p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.p-services-cfd__image {
  flex: 0 0 300px;
}

.p-services-cfd__image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.p-services-cfd__profit-example {
  margin-bottom: 50px;
}

.p-services-cfd__profit-example h3 {
  font-size: 20px;
  font-weight: 700;
  color: #009995;
  text-align: center;
  margin-bottom: 30px;
}

.p-services-cfd__profit-content {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
}

.p-services-cfd__profit-text {
  flex: 1;
  text-align: center;
}

.p-services-cfd__profit-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

.p-services-cfd__profit-calculation {
  font-size: 24px;
  font-weight: 700;
  color: #009995;
  margin: 20px 0;
}

.p-services-cfd__profit-label {
  font-size: 20px;
  font-weight: 700;
  color: #ff6b35;
  background: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  display: inline-block;
}

.p-services-cfd__profit-image {
  flex: 0 0 250px;
}

.p-services-cfd__profit-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.p-services-cfd__2way-price {
  margin-bottom: 50px;
}

.p-services-cfd__2way-price h3 {
  font-size: 20px;
  font-weight: 700;
  color: #009995;
  text-align: center;
  margin-bottom: 30px;
}

.p-services-cfd__2way-content {
  text-align: center;
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
}

.p-services-cfd__2way-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}

.p-services-cfd__price-display {
  margin-bottom: 20px;
}

.p-services-cfd__price-bid,
.p-services-cfd__price-ask {
  font-size: 32px;
  font-weight: 700;
  color: #009995;
  padding: 10px 20px;
  background: #fff;
  border-radius: 8px;
  margin: 0 10px;
}

.p-services-cfd__price-separator {
  font-size: 24px;
  font-weight: 700;
  color: #666;
  margin: 0 15px;
}

.p-services-cfd__price-labels {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.p-services-cfd__price-label-bid,
.p-services-cfd__price-label-ask {
  font-size: 14px;
  color: #666;
  background: #fff;
  padding: 8px 16px;
  border-radius: 20px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
  .c-common-btns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 60px;
    width: 100%;
  }

  .c-common-btns__btn {
    display: grid;
    place-items: center;
    font-size: 14px;
    line-height: 1.5;
  }

  .c-common-page-block {
    margin-bottom: 60px;
  }

  .p-services-cfd__content {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 50px;
  }

  .p-services-cfd__image {
    flex: none;
    width: 100%;
  }

  .p-services-cfd__profit-content {
    flex-direction: column;
    gap: 30px;
    padding: 20px;
  }

  .p-services-cfd__profit-image {
    flex: none;
    width: 100%;
    max-width: 200px;
  }

  .p-services-cfd__2way-content {
    padding: 20px;
  }

  .p-services-cfd__price-bid,
  .p-services-cfd__price-ask {
    font-size: 24px;
    padding: 8px 16px;
    margin: 0 5px;
  }

  .p-services-cfd__price-separator {
    font-size: 18px;
    margin: 0 10px;
  }

  .p-services-cfd__price-labels {
    flex-direction: column;
    gap: 15px;
  }
}

/* 証拠金・手数料についてセクション */

.c-page-tertiary-ttl {
  margin-bottom: 25px;
  padding: .2em 1em;
  border-left: 4px solid #009995;
  color: #009995;
  font-size: 24px;
  font-weight: 700;
  text-align: left;

  &:not(:first-child) {
    margin-top: 50px;
  }
}


.c-page-quaternary-title {
  display: block;
  margin-left: 25px;
  margin-bottom: 10px;
  color: #009995;
  font-size: 18px;

  &:not(:first-child) {
    margin-top: 30px;
  }
}

.c-page-common-text {
  margin-left: 25px;
  font-size: 16px;

  &:not(:last-child) {
    margin-bottom: 25px;
  }
}

.p-services-cfd__margin-fees-section:last-child {
  margin-bottom: 0;
}

.p-services-cfd__margin-fees-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.p-services-cfd__margin-fees-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}

.p-services-cfd__margin-fees-text:last-child {
  margin-bottom: 0;
}

.p-services-cfd__margin-fees-subsection {
  margin: 25px 0 20px 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid #009995;
}

.p-services-cfd__margin-fees-subtitle-small {
  font-size: 18px;
  font-weight: 600;
  color: #009995;
  margin-bottom: 15px;
}

.p-services-cfd__margin-fees-note {
  margin: 20px 0 0 20px;
  padding: 15px 20px;
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
}

.p-services-cfd__margin-fees-note-text {
  font-size: 15px;
  line-height: 1.7;
  color: #856404;
  margin: 0;
  font-weight: 500;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 10px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

.c-page-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  &:not(:first-child):not(.c-page-table--deposit) {
    margin-top: 30px;
  }
}

.c-page-table--deposit {
  max-width: 600px;
  margin-inline: auto;
  margin-top: 0;
}

.table caption.sub-title {
  background-color: #E5F5F4;
  color: #009995;
  font-size: 16px;
  font-weight: 700;
  padding: 1em;
  margin-bottom: 0;
}

.table thead th {
  background-color: #009995;
  color: #FFFFFF;
  text-align: center;
  padding: 1em;
  border: 1px solid #FFFFFF;
  border-bottom: 1px solid #009995;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 700;

  &:first-child {
    border-left: 1px solid #009995;
  }

  &:last-child {
    border-right: 1px solid #009995;
  }
}

.table thead th p {
  font-size: 16px;
  font-weight: 700;
}

.table tbody td {
  background-color: #FFFFFF;
  color: #333333;
  padding: 1em;
  border: 1px solid #009995;
  vertical-align: middle;
  text-align: center;
}

.table tbody th {
  background-color: #e5f4f4;
  color: #333333;
  padding: 1em;
  border: 1px solid #009995;
  vertical-align: middle;
  text-align: center;
}

.table tbody td p {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
}

.table tbody tr:hover {
  background-color: #F5F5F5;
}

.c-page-note {
  margin-top: 20px;
}

.tableWrap {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  gap: 30px;
}

.tableWrap__item {
  flex: 1;
}

/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
  .c-page-tertiary-ttl {
    font-size: clamp(18px, 3.75vw, 20px);
    line-height: 1.5;
  }

  .c-page-quaternary-title {
    &:not(:first-child) {
      margin-top: 50px;
    }

    margin-left: 0;
  }

  .c-page-common-text {
    margin-left: 0;

    &:not(:last-child) {
      margin-bottom: 20px;
    }
  }

  .tableWrap {
    flex-direction: column;
    gap: 0;
  }

  .table {
    font-size: 12px;
    width: fit-content;

    &:not(:first-child) {
      margin-top: 20px;
    }
  }

  .table caption.sub-title {
    font-size: 12px;
  }

  .table thead th,
  .table tbody td {
    white-space: nowrap;
    /* テキストの改行を防ぐ */
  }

  .table--time,
  .table--sp-fixed {
    width: 100%;

    thead th,
    tbody td {
      white-space: wrap;
    }
  }

  .table--time {

    thead th,
    tbody td {
      &:first-child {
        width: 30%;
      }
    }

  }

  .c-page-table-scroll-decoration {
    position: relative;
    overflow: visible;
    margin: 0 -30px 0 0;

    &::after {
      position: absolute;
      top: 0;
      right: -40px;
      width: 50px;
      height: 100%;
      pointer-events: none;
      background: linear-gradient(to left, #fff 20%, rgba(255, 255, 255, 0) 100%);
      content: '';
      z-index: 1;                /* 表に出す */
      transform: translateZ(0);  /* Safariでの合成ブレを抑制（任意） */
    }

    &::before {
      transition: all 0.3s ease;
      z-index: 99;
      position: absolute;
      top: 150px;
      left: calc(50% - 15vw);
      width: 30vw;
      height: 30vw;
      background: center / contain no-repeat url(../images/icon-scroll-hint.svg);
      content: '';
    }

    &.is-active {
      &::before {
        opacity: 0;
        visibility: hidden;
      }
    }

    &.animate-before::before {
      animation: slideRightLeft 1s ease-in-out 3;
    }

    .c-page-table {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      margin: 0 -20px 0 0;
      padding: 0 40px 0 0;
    }
  }

  .c-page-table {
    padding-right: 50px;       /* フェード幅と同じ値 */
    box-sizing: content-box;   /* 既存指定があれば合わせる */
  }

  /* テーブルは画面より広く */
  .table { width: auto; }
  .table.table--sp-fixed { min-width: 800px; } /* 列数に合わせて調整 */
  .table thead th, .table tbody td { white-space: nowrap; }

  .c-page-note {
    margin-top: 10px;
  }

}

@keyframes slideRightLeft {
  0% {
    transform: translateX(0);
  }

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

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

.c-page-common-emphasis {
  font-size: 20px;
  font-weight: 700;
  color: #009995;
  margin-bottom: 20px;
  margin-left: 25px;
}

@media screen and (max-width: 767px) {
  .c-page-common-emphasis {
    margin-left: 0;
  }
}

.c-page-common-emphasis:last-child {
  margin-bottom: 0;
}

hr {
  color: #ddd;
}

.u-mt-50 {
  margin-top: 50px;
}

.u-mb-50 {
  margin-bottom: 50px;
}

.u-mb-10 {
  margin-bottom: 10px;
}

.u-mb-20 {
  margin-bottom: 20px;
}

.u-tx-size-common {
  font-size: 16px;
}

.u-tx-center {
  text-align: center;
}

.u-fc-primary {
  color: #009995;
}



.c-smartcx-features {
  margin-left: 4em;
  font-size: 16px;
}

.c-smartcx-feature-title {
  margin-top: 20px;
  color: #009995;
  font-size: 16px;
  font-weight: bold;
  text-indent: -4em;
}

.c-smartcx-feature-title:first-child {
  margin-top: 0;
}

.c-smartcx-feature-text {
  margin-bottom: 10px;
  font-size: 16px;
}

.c-smartcx-img {
  display: block;
  margin-top: 20px;
  margin-inline: auto;
  width: min(100%, 600px);
  object-fit: contain;
}

/* 代表挨拶セクション */
.p-information__greeting {
  display: flex;
  align-items: center;
  gap: 20px;
}

.p-information__greeting-image {
  flex: 0 0 auto;
  width: 300px;
}

.p-information__greeting-image picture,
.p-information__greeting-image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-information__greeting-text {
  flex: 1;
}

.p-information__greeting-text .c-page-common-text {
  margin-bottom: 20px;
  line-height: 1.8;
}

.p-information__greeting-text .c-page-common-text:last-child {
  margin-bottom: 0;
}

/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
  .p-information__greeting {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }

  .p-information__greeting-image {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
  }

  .p-information__greeting-text {
    flex: none;
  }
}

/* オフィス一覧セクション */
.p-information__office-item {
  margin-bottom: 40px;
}

.p-information__office-item-ttl {
  background-color: #009995;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: .2em 2em;
  margin: 0 0 20px 0;
  border-radius: 0;
  width: 100%;
}

.p-information__office-item-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.p-information__office-item-table {
  flex: 1;
}

.p-information__office-item-map {
  flex: 1;
}


.p-information__office-item-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
  .p-information__office-item-content {
    flex-direction: column;
    gap: 20px;
  }

  .p-information__office-item-table,
  .p-information__office-item-map {
    flex: none;
    width: 100%;
  }


  .p-information__office-item-map iframe {
    height: 250px;
  }
}

/* お問い合わせ先セクション */
.c-cs-contact-info__container {
  width: min(500px, 100%);
  margin: 0 auto;
}

.c-cs-contact-info__item {
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.c-cs-contact-info__company {
  padding: 10px 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  background-color: #00bfa5;
}

.c-cs-contact-info__phone {
  padding: 10px 20px;
  text-align: center;
  color: #009995;
}

.c-cs-contact-info__phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  color: #00bfa6;
  text-decoration: none;
}

.c-cs-contact-info__phone-link::before {
  display: block;
  padding-right: 1.5em;
  width: 1em;
  height: 1em;
  background: url('../images/icon-contact-phone.svg') center / contain no-repeat;
  content: '';
}

.c-cs-contact-info__phone-link:hover {
  opacity: 0.7;
}

.c-cs-contact-info {
  background-color: #f7f7f7;
  padding: 60px 20px;
  margin-top: 60px;
}

.c-cs-contact-info__note {
  font-size: 12px;
  font-weight: 700;
  color: #333;
  text-align: center;
}

.c-cs-contact-info__container-website {
  margin: 0;
}

.c-cs-contact-info__container-website a {
  text-decoration: underline;
  font-size: 16px;
}

.c-cs-contact-info__container-website a:hover {
  opacity: 0.7;
}

.c-cs-contact-info__container-note {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
}

.c-cs-contact-info__container-note p {
  margin: 0;
  font-size: 14px;
  color: #856404;
  line-height: 1.6;
}

/* PCでは電話番号をクリック不可にする */
@media screen and (min-width: 768px) {
  .c-cs-contact-info__phone-link {
    pointer-events: none;
    cursor: default;
  }
}

/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
  .c-cs-contact-info__note {
    font-size: 12px;
  }
}

/* レッスンタブスタイル */
.c-lesson-tabs {
  margin-bottom: 60px;
}

.c-lesson-tab__input {
  display: none;
}

.c-lesson-tab__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px min(60px, 3.75vw);
  margin-bottom: 80px;
  width: fit-content;
  margin-inline: auto;
}

.c-lesson-tab__label {
  transition: all 0.3s ease;
  display: block;
  padding: .8em 2em;
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  background-color: #D0D0D0;
  cursor: pointer;
  line-height: 1.4;
}

.c-lesson-tab__label:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  opacity: .9;
}

.c-lesson-tab__content {
  display: none;
  margin-bottom: 100px;
}

/* 各タブが選択された時のラベルスタイル */
#tab-lesson-01:checked~.c-lesson-tab__nav label[for="tab-lesson-01"],
#tab-lesson-02:checked~.c-lesson-tab__nav label[for="tab-lesson-02"],
#tab-lesson-03:checked~.c-lesson-tab__nav label[for="tab-lesson-03"],
#tab-lesson-04:checked~.c-lesson-tab__nav label[for="tab-lesson-04"],
#tab-lesson-05:checked~.c-lesson-tab__nav label[for="tab-lesson-05"],
#tab-lesson-06:checked~.c-lesson-tab__nav label[for="tab-lesson-06"] {
  background-color: #009995;
  color: #fff;
  transform: translateY(-2px);
}

/* 各タブが選択された時のコンテンツ表示 */
#tab-lesson-01:checked~.c-lesson-tab__content#content-lesson-01,
#tab-lesson-02:checked~.c-lesson-tab__content#content-lesson-02,
#tab-lesson-03:checked~.c-lesson-tab__content#content-lesson-03,
#tab-lesson-04:checked~.c-lesson-tab__content#content-lesson-04,
#tab-lesson-05:checked~.c-lesson-tab__content#content-lesson-05,
#tab-lesson-06:checked~.c-lesson-tab__content#content-lesson-06 {
  display: block;
}

/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
  .c-lesson-tab__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
  }

  .c-lesson-tab__label {
    display: grid;
    place-items: center;
    font-size: 14px;
    line-height: 1.5;
    padding: .8em 1em;
  }

  .c-lesson-tab__content {
    margin-bottom: 60px;
  }
}

/* 用語集タブスタイル */
.p-glossary-tabs {
  margin-bottom: 60px;
}

.p-glossary-tab__input {
  display: none;
}

.p-glossary-tab__nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px min(70px, 7vw);
  margin-bottom: 100px;
  margin-inline: auto;
  width: 100%;
}

.p-glossary-tab__label {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5em 1.5em;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  background-color: #D0D0D0;
  cursor: pointer;
  line-height: 1.4;
  min-height: 60px;
  grid-column: span 1;
}

.p-glossary-tab__label span {
  display: inline-block;
}

.p-glossary-tab__label span::first-letter {
  font-size: 22px;
}


.p-glossary-tab__label:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}


/* 特定のタブが選択された時のラベルスタイル */
#tab-glossary-1:checked~.p-glossary-tab__nav label[for="tab-glossary-1"],
#tab-glossary-2:checked~.p-glossary-tab__nav label[for="tab-glossary-2"],
#tab-glossary-3:checked~.p-glossary-tab__nav label[for="tab-glossary-3"],
#tab-glossary-4:checked~.p-glossary-tab__nav label[for="tab-glossary-4"],
#tab-glossary-5:checked~.p-glossary-tab__nav label[for="tab-glossary-5"],
#tab-glossary-6:checked~.p-glossary-tab__nav label[for="tab-glossary-6"],
#tab-glossary-7:checked~.p-glossary-tab__nav label[for="tab-glossary-7"],
#tab-glossary-8:checked~.p-glossary-tab__nav label[for="tab-glossary-8"],
#tab-glossary-9:checked~.p-glossary-tab__nav label[for="tab-glossary-9"],
#tab-glossary-10:checked~.p-glossary-tab__nav label[for="tab-glossary-10"] {
  background-color: #009995;
  color: #fff;
  transform: translateY(-2px);
}

/* 特定のタブが選択された時のコンテンツ表示 */
#tab-glossary-1:checked~.p-glossary-tab__content#content-tab-glossary-1,
#tab-glossary-2:checked~.p-glossary-tab__content#content-tab-glossary-2,
#tab-glossary-3:checked~.p-glossary-tab__content#content-tab-glossary-3,
#tab-glossary-4:checked~.p-glossary-tab__content#content-tab-glossary-4,
#tab-glossary-5:checked~.p-glossary-tab__content#content-tab-glossary-5,
#tab-glossary-6:checked~.p-glossary-tab__content#content-tab-glossary-6,
#tab-glossary-7:checked~.p-glossary-tab__content#content-tab-glossary-7,
#tab-glossary-8:checked~.p-glossary-tab__content#content-tab-glossary-8,
#tab-glossary-9:checked~.p-glossary-tab__content#content-tab-glossary-9,
#tab-glossary-10:checked~.p-glossary-tab__content#content-tab-glossary-10 {
  display: block;
}

.p-glossary-tab__content {
  display: none;
  margin-bottom: 100px;
}

/* アンカーリンクナビゲーション */
.p-glossary-anchor-nav {
  overflow: hidden;
  display: flex;
  align-items: center;
  width: fit-content;
  border: 1px solid #009995;
  border-radius: 100vmax;
  margin: 0 auto 100px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.p-glossary-anchor-nav__current {
  background-color: #009995;
  color: #fff;
  border-radius: 50%;
  width: clamp(80px, 16vw, 100px);
  height: clamp(80px, 16vw, 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.p-glossary-anchor-nav__current-text {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
}

.p-glossary-anchor-nav__current-text::first-letter {
  font-size: clamp(28px, 6vw, 43px);
}


.p-glossary-anchor-nav__links {
  display: flex;
  flex-wrap: nowrap;
}

.p-glossary-anchor-nav__link {
  display: block;
  background-color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 40px;
  color: #009995;
  font-size: clamp(20px, 2.5vw, 25px);
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  padding: 0 min(6vw, 60px);

  &:not(:last-child) {
    border-right: 1px solid #009995;
  }
}

/* 用語セクション */
.p-glossary-section {
  margin-bottom: 40px;
}

.p-glossary-section__title {
  position: relative;
  font-size: clamp(20px, 2.5vw, 24px);
  margin-bottom: 30px;
  padding-left: 20px;
  border-left: 4px solid #009995;
  border-bottom: 1px solid #009995;
  font-weight: 700;
  text-align: left;
  color: #009995;
}

/* 用語グループ */
.p-glossary-term-group:not(:last-child) {
  margin-bottom: 100px;
}

.p-glossary-item {
  display: grid;
  font-size: 16px;
  grid-template-columns: clamp(7em, 25%, 12em) 1fr;
}

@media screen and (min-width: 768px) {
  .p-glossary-item {
    margin-left: 2em;
  }
}

.p-glossary-item__term {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 2em 0 2em 2em;
  color: #009995;
  border-bottom: 1px solid #009995;
}

.p-glossary-item__definition {
  /* display: flex; */
  align-items: center;
  padding: 2em 2em 2em clamp(20px, 5vw, 80px);
  color: #222;
  border-bottom: 1px solid #009995;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {
  .p-glossary-tab__nav {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .p-glossary-tab__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    margin-bottom: 60px;
  }

  .p-glossary-tab__label {
    font-size: 14px;
    padding: 1em;
  }

  .p-glossary-tab__content {
    margin-bottom: 60px;
  }

  .p-glossary-anchor-nav {
    width: 100%;
    margin-bottom: 60px
  }

  .p-glossary-anchor-nav__links {
    width: 100%;
  }

  .p-glossary-anchor-nav__link {
    padding: 0;
    width: 100%;
  }

  .p-glossary-term {
    font-size: 14px;
  }

  .p-glossary-term-group:not(:last-child) {
    margin-bottom: 60px;
  }

  .p-glossary-item__term {
    padding-left: 0;
  }

  .p-glossary-item__definition {
    padding-right: 0;
  }
}


.p-information__office-item-table {
  .p-information__table {
    tr {
      padding-left: 0;

      &:last-child {
        border-bottom: 0;
        padding-bottom: 0;
      }
    }
  }
}

.p-information__table {
  width: 90%;
  margin-inline: auto;
  font-size: 16px;

  tr {
    display: grid;
    align-items: center;
    grid-template-columns: 7em 1fr;
    padding: 1em 2em;
    border-bottom: 1px solid #009995;
    gap: 4em;
  }

  th {
    color: #009995;
    font-weight: 700;
    text-align: right;
  }
}

@media screen and (max-width: 767px) {
  .p-information__table {
    width: 100%;
    font-size: 14px;

    tr {
      gap: 2em;
      padding: 1em;
    }
  }
}

.p-documents__btn {
  display: grid;
  grid-template-columns: 3em 1fr 1.5em;
  align-items: center;
  justify-content: flex-start;
  gap: 1em;
  text-align: left;
  padding: 1.5em;

  &::before {
    display: block;
    width: 3em;
    height: 3em;
    background: center / contain no-repeat;
    content: '';
  }

  &::after {
    display: block;
    width: 1.5em;
    height: 1.5em;
    background: center / contain no-repeat url(../images/icon-documents-arrow.svg);
    content: '';
  }
}

@media screen and (max-width: 767px) {
  .p-documents__btns {
    grid-template-columns: 1fr;
  }
}

.p-documents__btn:nth-child(1)::before {
  background-image: url(../images/icon-material-01.svg);
}

.p-documents__btn:nth-child(2)::before {
  background-image: url(../images/icon-material-02.svg);
}

.p-documents__btn:nth-child(3)::before {
  background-image: url(../images/icon-material-03.svg);
}


/* フォームスタイル */
.c-form__container {
  margin: 0 auto;
  padding: 40px 20px;
  font-size: 14px;
}

.c-form__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
  box-sizing: border-box;
  gap: 15px 6em;
}

.c-form__item--center .c-form__label {
  margin-top: .5em;
}

@media screen and (min-width: 768px) {
  .c-form__item {
    padding-right: 20%;
    margin-left: 25px;
  }
}

.c-form__label {
  width: 20%;
  position: relative;
  font-weight: 700;
  color: #009995;
}

@media screen and (min-width: 768px) {
  .c-form__label {
    text-align: right;
  }
}

.c-form__required {
  display: inline-block;
  width: fit-content;
  margin-left: 5px;
  font-size: 12px;
  color: #fff;
  background-color: #ff4d79;
  padding: 2px 5px;
  border-radius: 5px;
}

@media screen and (min-width: 768px) {
  .c-form__required {
    position: absolute;
    top: 0.1em;
    right: -4em;
  }
}

.c-form__input-area {
  width: min(600px, 100%);
  flex-shrink: 0;
  display: flex;
}

@media screen and (max-width: 768px) {
  .c-form__input-area {
    width: 100%;
  }
}

.c-form__input,
.c-form__textarea {
  width: 100%;
  padding: .5em 1em;
  border: 2px solid #009995;
  color: #333;
  background-color: #fff;
  transition: border-color 0.3s ease;
}

.wpcf7-form-control-wrap:has(select) {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.wpcf7-form-control-wrap:has(select)::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 1.5em;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #009995;
  pointer-events: none;
  z-index: 2;
}

.c-form__select {
  width: 100%;
  padding: .5em calc(1em + 12px) .5em 1em;
  border: 2px solid #009995;
  color: #333;
  background-color: #fff;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
}

.c-form__select option:disabled,
.placeholder {
  color: #ccc;
}

.c-form__input:focus,
.c-form__select:focus,
.c-form__textarea:focus {
  outline: none;
  border-color: #2ed0ca;
}

.c-form__input:invalid {
  border-color: #e74c3c;
}

.c-form__required-text {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
}

/* ラジオボタン・チェックボックス共通スタイル */
.c-form__radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-form__checkbox,
.c-form__radio {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
}

.c-form__checkbox span.wpcf7-list-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #333;
  margin: 0;
  width: calc((100% - 24px) / 3);
}

.c-form__checkbox--full span.wpcf7-list-item {
  width: fit-content;
}

.c-form__radio span.wpcf7-list-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #333;
  margin: 0;
  width: 100%;
}

.c-form__radio-label,
.c-form__checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #333;
}

input[type="radio"],
input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  background-color: #ddd;
  margin-right: 10px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

input[type="radio"] {
  border-radius: 50%;
}


input[type="radio"]:checked,
input[type="checkbox"]:checked {
  border-color: #009995;
  background-color: #009995;
  box-shadow: inset 0 0 0 2px #fff;
}

.c-form__radio-text,
.c-form__checkbox-text {
  flex: 1;
}

/* 生年月日セレクトボックス */
.c-form__date-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.c-form__date-item {
  display: flex;
  align-items: center;
  gap: 10px;
  /* width: 100%; */
}

.c-form__date-label {
  color: #333;
  white-space: nowrap;
}

/* 生年月日date input */
.c-form__date-input {
  width: 100%;
  max-width: 200px;
  padding: .5em 1em;
  border: 2px solid #009995;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  transition: border-color 0.3s ease;
}

.c-form__date-input:focus {
  outline: none;
  border-color: #009995;
  box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
}

.c-form__date-input:hover {
  border-color: #999;
}

/* 住所入力 */
.c-form__address-group {
  display: flex;
  gap: 15px;
  flex-direction: column;
}

.c-form__address-item {
  display: block;
}

.c-form__address-label {
  color: #333;
  margin-bottom: 10px;
  display: none;
}

/* テキストエリア */
.c-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.c-form__agreement {
  width: fit-content;
  max-width: 900px;
  margin-inline: auto;

  .wpcf7-list-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
  }
}

/* placeholder color for all form inputs */
*::placeholder {
  color: #222;
  opacity: .3;
}

.c-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  width: 80%;
  max-width: 750px;
  margin-inline: auto;
  margin-top: 50px;
}

.c-form__submit-btn,
.c-form__previous-btn {
  margin-inline: auto;
  padding: 1em;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
}

.c-form__submit-btn {
  transition: all 0.3s ease;
  width: 100%;
  border: 1px solid #29c9b4;
  color: #006666;
  background-color: #fff;

  &:hover {
    background-color: #1b8e86;
    color: #fff;
  }
}

.wpcf7 .wpcf7-submit:disabled {
  background-color: #dddddd;
  border: 1px solid #dddddd;
  color: #222;
}

.c-form__previous-btn {
  width: 60%;
  border: 1px solid #c4c4c4;
}

.c-form__input-area .wpcf7-form-control-wrap[data-name="inquiry"] {
    width: 100%;
}

/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
  .c-form__item {
    flex-direction: column;
    margin-bottom: 25px;
  }

  .c-form__label {
    width: 100%;
    padding-right: 0;
  }

  .c-form__date-group {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .c-form__select {
    min-width: 70px;
  }

  .c-form__address-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .c-form__address-label {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5px;
  }

  .c-form__radio-group {
    gap: 10px;
  }
}

.wpcf7-not-valid-tip {
  margin-top: 5px;
}

/* 
.wpcf7-not-valid-tip::before {
  display: block;
  width: .8em;
  height: .8em;
  
  content: "";
} */
@media screen and (min-width: 768px) {
  .p-faq__btn {
    padding: .8em 4em;

  }
}

/* FAQ リストコンテナ */
.p-faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FAQ アイテム */
.p-faq__item {
  margin: 0;
  padding: 0;
}

/* Details要素 */
.p-faq__details {
  position: relative;
  overflow: hidden;
}

/* Summary要素（質問部分） */
.p-faq__summary {
  transition: background-color 0.3s ease;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  position: relative;
  width: 50%;
  padding: .5em 2em .5em 1.5em;
  border-radius: 10px;
  background-color: #009995;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
}

.p-faq__summary:hover {
  background-color: #006666;
}

.p-faq__summary:focus {
  background-color: #006666;
}

/* 開閉アイコン（+ / -） */
.p-faq__summary::after {
  transition: color 0.3s ease;
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  right: 2em;
  top: auto;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  padding-bottom: .15em;
  position: absolute;
  background-color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  color: #009995;
  z-index: 2;
}

.p-faq__summary:hover::after {
  color: #006666;
}

.p-faq__details[open] .p-faq__summary::after {
  content: "−";
}

/* 質問テキスト */
.p-faq__question {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: 100%;
  padding-right: 3rem;
  font-size: 18px;
}
.p-faq__question::before {
    display: inline-block;
    width: 2em;
    height: 3em;
    margin-right: .5em;
    background: center / contain no-repeat url(../images/icon-q.svg);
    content: '';
}

/* 回答コンテンツ */
.p-faq__content {
  margin-top: -2em;
  padding: 3.5em 2em 1.5em;
  border: 2px solid #009995;
  position: relative;
  font-size: 16px;
}

/* 回答テキスト */
.p-faq__answer {
  margin: 0;
  line-height: 1.7;
  color: #333333;
  font-size: 16px;
}

/* デフォルトのマーカーを非表示 */
.p-faq__summary::-webkit-details-marker {
  display: none;
}

.p-faq__summary::-moz-list-bullet {
  list-style-type: none;
}

/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
  .p-faq__summary {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .p-faq__content {
    margin-top: -1em;
    padding: 2em 1.5em 1em;
  }

  .p-faq__summary::after {
    right: 1rem;
    width: 20px;
    height: 20px;
    font-size: 14px;
  }

  .p-faq__question {
    padding-right: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .seminar-title {
      font-size: 10px;
      line-height: 17px;
  }

  .seminar-date {
      font-size: 10px;
  }

  .seminar-links a::after {
      width: 10px;
      height: 10px;
      right: 20px;
  }

  .more-link {
      font-size: 10px;
      padding-right: 15px;
  }

  .more-link::after {
      border-width: 3px 0 3px 4px;
  }

  .subtitle {
      font-size: 16px;
  }

  .video-description {
      font-size: 10px;
      line-height: 13px;
      padding: 10px 0 0;
  }

  .lead {
      font-size: 16px;
      line-height: 24px;
  }

  .user:first-child {
      margin-top: -30px;
  }

  .p-top__about::after {
      bottom: -70px;
  }

  .feature-card p {
      font-size: 10px;
      line-height: 15px;
  }

  .market-item .text {
      font-size: 11px;
      line-height: 15px;
  }
}

/* CFD */
.p-services-cfd .p-services__cta {
    padding: 80px 0;
}
.p-services-cfd .c-common-btns {
    margin-top: 60px;
}
.p-services-cfd .p-page-description p {
    font-size: 18px;
    line-height: 30px;
}
.p-services-cfd .c-common-btns__btn {
    font-size: 16px;
    padding: 9px 0;
}
.p-services-cfd .c-page-quaternary-title {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .p-services-cfd .p-services__cta {
      padding: 50px 4%;
  }
  .p-services-cfd .c-common-btns {
      margin-top: 50px;
  }
  .p-services-cfd .p-page-description p {
      font-size: 12px;
      line-height: 20px;
  }
  .p-services-cfd .l-container {
    padding: 0 4%;
  }
  .p-services-cfd .p-page-description .l-container {
    margin: 0 auto 50px;
  }
  .p-services-cfd .p-services__cta-btn {
    padding: 10px;
    font-size: 15px;
  }
  .p-services-cfd .c-common-btns__btn {
    font-size: 12px;
    padding: 8px;
    line-height: 15px;
  }
  .p-services-cfd .c-page-quaternary-title {
    font-size: 14px;
  }
  .p-services-cfd .c-page-common-text {
    font-size: 12px;
    line-height: 20px;
  }
}

/* スマートCX */
.c-common-btns__btn.c-common-btns__btn--3col {
    width: 300px;
}

@media screen and (max-width: 767px) {
  .c-common-btns__btn.c-common-btns__btn--3col {
      width: auto;
  }
}

/* 用語集 */
@media screen and (max-width: 767px) {
  .p-glossary-cont {
    margin-top: 50px;
  }
  .p-glossary.c-page-secondary-ttl {
    margin-bottom: 40px;
  }
}