/* ===========================
   Base
=========================== */
body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN","Noto Sans JP",sans-serif;
  color: #222;
  line-height: 1.8;
  background: #ffffff;
}
.container {
  max-width: 1100px;
  margin: auto;
  padding: 30px 20px;
}
img {
  max-width: 100%;
  height: auto;
}
/* ===========================
   Headings（SBC風）
=========================== */
h1 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;

}
h2 {
  font-size: 26px;
  font-weight: 700;
  margin:-30px 0 30px 0;
  padding-left: 16px;
  text-align: center;
}
h3 {
  font-size: 20px;
  margin-top: 30px;
  font-weight: 700;
}

/* ===========================
   Hero（FV）
=========================== */
.hero {
  background: linear-gradient(135deg,#eaf7ff,#ffffff);
  padding: 80px 20px;
}
.hero-inner {
  max-width: 1100px;
  margin: auto;
}
.hero p {
  font-size: 18px;
  color: #333;
}
.hero-flex {
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero-image img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
@media (max-width: 768px) {
  .hero-flex {
    flex-direction: column;
  }
}

/* ===========================
   Card UI（SBCの要）
=========================== */
.card {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  padding: 30px;
  margin-bottom: 30px;
}
.card.soft {
    position:relative;
  background-image:url(https://www.beautis.jp/sylfirm/images/bg_what.jpg); 
  height:100%;
  box-shadow: none;
}

/* ===========================
   Lists
=========================== */
.problem-list {
  padding-left: 0;
}
.problem-list li {
  list-style: none;
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}
.problem-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1e88c9;
  font-weight: bold;
}
.problem-flex {
  display: flex;
  gap: 30px;
  align-items: center;
}
.problem-flex img {
  max-width: 360px;
}
@media (max-width: 768px) {
  .problem-flex {
    flex-direction: column;
  }
}
/* ===========================
   Tables（SBC完全再現）
=========================== */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 30px 0;
  border-radius: 8px;
  overflow: hidden;
}
table th {
  background: #eaf7ff;
  font-weight: 700;
}
table th, table td {
  border: 1px solid #dcecf7;
  padding: 14px;
  text-align: center;
}

/* ===========================
   FAQ（アコーディオン）
=========================== */
.faq dt {
  background: #f4fbff;
  padding: 16px;
  cursor: pointer;
  font-weight: 700;
  border: 1px solid #d9eefb;
  margin-top: 10px;
}
.faq dd {
  padding: 16px;
  margin: 0;
  border: 1px solid #d9eefb;
  border-top: none;
  display: none;
}

/* ===========================
   CTA（SBC最重要）
=========================== */
.cta {
  background: linear-gradient(135deg,#eaf7ff,#ffffff);
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #d9eefb;
}
.cta h2 {
  border: none;
  padding: 0;
  margin-top: 0;
}
.cta a {
  display: inline-block;
  background: #ff6b00;
  color: #ffffff;
  padding: 18px 48px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(255,107,0,0.4);
  transition: all .3s;
}
.cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(255,107,0,0.5);
}

/* ===========================
   Footer
=========================== */
footer {
  background: #f7f7f7;
  padding: 30px;
  text-align: center;
  font-size: 14px;
  color: #666;
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 768px) {
  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  .container { padding: 40px 16px; }
}

.device-flex {
  display: flex;
  gap: 30px;
  align-items: center;
}
.device-flex img {
  width: 320px;
}
@media (max-width: 768px) {
  .device-flex {
    flex-direction: column;
  }
}
.mechanism img {
  display: block;
  width:90%;
  max-width:600px;
  margin: 10px auto;
}
.effect-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  text-align: center;
}
.effect-grid img {
  border-radius: 50%;
}
@media (max-width: 768px) {
  .effect-grid {
    grid-template-columns: repeat(2,1fr);
  }
}
.case {
  display: flex;
  gap: 20px;
}
.case img {
  width: 100%;
  border-radius: 8px;
}
/* ===========================
   FV（SBC完全再現）
=========================== */
.fv {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* 画像制御 */
.fv-image {
  width: 100%;
  height: auto;
  display: block;
}

/* PC：16:9 */
@media (min-width: 769px) {
  .fv {
    aspect-ratio: 16 / 9;
  }
  .fv-image {
    height: 100%;
    object-fit: cover;
  }
}

/* SP：9:16 */
@media (max-width: 768px) {
  .fv {
    aspect-ratio: 9 / 16;
  }
  .fv-image {
    height: 100%;
    object-fit: cover;
  }
}

/* ===========================
   テキストオーバーレイ
=========================== */
.fv-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
}

.fv-text {
  color: #fff;
  padding: 0 6%;
  max-width: 1100px;
}

.fv-text h1 {
  font-size: 48px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.fv-sub {
  font-size: 24px;
  font-weight: 600;
}

.fv-clinic {
  margin-top: 18px;
  font-size: 16px;
  opacity: 0.9;
}

/* ===========================
   SP最適化
=========================== */
@media (max-width: 768px) {
  .fv-overlay {
    align-items: flex-end;
  }
  .fv-text {
    padding-bottom: 25%;
  }
  .fv-text h1 {
    font-size: 32px;
  }
  .fv-sub {
    font-size: 18px;
  }
}
/* ===========================
   Campaign（FV直下）
=========================== */
.campaign {
  background: linear-gradient(90deg, #b39855 0%, #fff9e6 50%, #b39855 100%);;
}

.campaign-inner {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.campaign-label {
  display: inline-block;
  background: #fff;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1) inset;
  color: #ba9a2a;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.campaign-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0 auto;
  border: none;
  padding: 0;
}

.campaign-price {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.price-before {
  color: #343434;
  text-decoration: line-through;
  font-size: 22px;
}

.price-arrow {
  font-size: 26px;
}

.price-after {
  color: #e60012;
  font-size: 36px;
}

.price-tax {
  font-size: 14px;
  margin-left: 4px;
}

.campaign-note {
  font-size: 14px;
  color: #343434;
}
/* ===========================
   Responsive
=========================== */
.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .campaign-inner {
    padding: 10px 16px;
  }
  .campaign-title {
    font-size: 22px;
  }
  .campaign-price {
    font-size: 28px;
  }
  .price-after {
    font-size: 32px;
  }
  .sp-only {
    display: block;
  }
  .logosize{
  width:300px;
}
}
.logosize{
  max-width:500px;
}

/* ===========================
   Problem Section（SBC）
=========================== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 30px;
}

.problem-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  padding: 24px;
  text-align: center;
}

.problem-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 14px;
}

.problem-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 14px;
  color: #555;
}

/* SP */
@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .problem-card {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 16px;
  }
  .problem-card img {
    width: 80px;
    height: 80px;
    margin: 0;
  }
  .problem-card h3 {
  width:30%;
  margin:0 auto;
}
}
/* ===========================
   Header
=========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e6eef5;
}

.header-inner {
  max-width: 1100px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo a {
  font-size: 18px;
  font-weight: 700;
  color: #1e88c9;
  text-decoration: none;
}

.header-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.header-cta a {
  background: #ff6b00;
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

/* SP */
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
}
/* ===========================
   Header Base
=========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,1);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-transparent {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-inner {
  max-width: 1100px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ロゴ */
.header-logo a {
  font-size: 18px;
  font-weight: 700;
  color: #1e88c9;
  text-decoration: none;
}

/* PCナビ */
.header-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav a {
  font-size: 14px;
  text-decoration: none;
  color: #333;
}

/* PC CTA */
.header-cta {
  display: flex;
  gap: 10px;
}

.header-cta a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.cta-line { background: #06c755; }
.cta-tel  { background: #007bc7; }
.cta-form { background: #ff6b00; }

/* ===========================
   Hamburger（SP）
=========================== */
.hamburger {
  width: 26px;
  height: 20px;
  padding: 0;
  background: none;
  border: none;
  display: flex!important;
  flex-direction: column;
  justify-content: space-between; /* ← 縦に並べる核心 */
}

.hamburger span {
  display: block;
  width: 100%;          /* ← 横幅を揃える */
  height: 1.5px;        /* ← 線の太さ */
  background: #333;
  border-radius: 1px;
  position: relative;  /* ← absoluteを打ち消す */
}
/* SP メニュー */
.sp-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #eee;
}

.sp-menu ul {
  list-style: none;
  margin: 0;
  padding: 20px;
}

.sp-menu li {
  margin-bottom: 16px;
}

.sp-menu a {
  text-decoration: none;
  font-size: 16px;
  color: #333;
}

/* 表示制御 */
.pc-only { display: flex; }
.sp-only { display: none; }

@media (max-width: 768px) {
  .pc-only { display: none; }
  .sp-only { display: block; }
}
@media (min-width: 769px) {
  .hamburger { display: none!important; }
}
/* ===========================
   SP Floating CTA
=========================== */
.sp-floating-cta {
  display: none;
}

@media (max-width: 768px) {
  .sp-floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid; /* ← これ必須 */
    grid-template-columns: repeat(3, 1fr);
    z-index: 999;
  }

  .sp-floating-cta a {
    display: block;
    text-align: center;
    padding: 24px 6px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
  }

  .cta-line { background: linear-gradient(45deg, #38f716 15%, #0f8802 100%) }
  .cta-tel  { background: linear-gradient(45deg, #16b4f7 15%, #407cfe 100%) ; }
  .cta-form { background: linear-gradient(45deg, #f7a116 15%, #ff6f00 100%) ; }
}
/* ===========================
   SEO Section
=========================== */
.seo-section {
  max-width: 1100px;
  margin-top:80px;
  margin-bottom:0px;
  padding: 30px 20px;
  margin:0 auto;
}

.seo-section h2 {
  font-size: 24px;
  margin-bottom: 30px;
}

.seo-section h3 {
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.seo-section p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}
/* ===========================
   Price Section
=========================== */
.price-section {
  background: #f7fbff;
  margin:2rem 0px;
  padding: 1rem 20px;
  padding-bottom:3rem;
}

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

.price-table {
  max-width: 700px;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
}

.price-row.head {
  background: #eaf4fb;
  font-weight: 700;
}

.price-row.head2 {
  background: #194769;
  font-weight: 700;
}

.price-note {
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 13px;
  color: #666;
}
/* ===========================
   Header Logo Image
=========================== */
.header-logo img {
  width: auto;
  height: 32px;
  display: block;
}

/* SP */
@media (max-width: 768px) {
  .header-logo img {
    height: 28px;
  }
}
.case-card {
  max-width: 860px;
  margin: 0 auto;
  border: 5px solid transparent; /* 透明なボーダーを設定 */
  border-image: linear-gradient(to right, #FFC754, #B67715, #FFF89B, #B67715, #FFC754); /* グラデーションを画像として適用 */
  border-image-slice: 1; /* 画像全体をボーダーとして使用 */
  padding: 10px;
  padding: 20px;
}

.case-images {
  display: flex;
  gap: 16px;
}

.case-images figure {
  width: 50%;
  margin: 0;
}

.case-images img {
  width: 100%;
  border-radius: 6px;
}

.case-images figcaption {
  text-align: center;
  font-size: 13px;
  margin-top: 6px;
}

.case-info {
  margin-top: 16px;
  font-size: 14px;
}
.sbc-note {
  max-width: 860px;
  margin: 0 auto;
  background: #f9f9f9;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 20px;
  font-size: 14px;
}

.sbc-note ul {
  margin: 0;
  padding-left: 18px;
}
.sbc-mechanism {
  max-width: 860px;
  margin: 0 auto;
}

.sbc-mechanism .lead {
  font-size: 16px;
  margin-bottom: 28px;
}

.mechanism-block {
  position:relative;
  background: #ffffff;
  border: 3px solid #2b597e;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  margin-top: 40px;
}

.mechanism-block h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.pointno{
  position:absolute;
  width:60px;
  top:-10%;
  left:50%;
  transform: translate(-50%, -0%);
}
/* ===========================
   施術フロー（画像付き）
=========================== */
.sbc-flow-image {
  max-width: 960px;
  margin: 0 auto;
}

.flow-row {
  display: flex;
  align-items: center;
  gap: 32px;
  background: #fff;
  border: 1px solid #dee7ef;
  border-radius: 8px;
  padding: 28px;
  margin-bottom: 24px;
}

.flow-text {
  width: 55%;
}

.flow-text h3 {
  font-size: 18px;
  margin: 8px 0 6px;
}

.flow-text p {
  font-size: 15px;
}

.flow-step {
  display: inline-block;
  background: #007bc7;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.flow-image {
  width: 45%;
}

.flow-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
@media (max-width: 768px) {
.flow-row{
  flex-direction: column-reverse;
}
.flow-image{
  width:80%;
}
}
/* ===========================
   Clinic Info
=========================== */
.clinic-info {
  background: #f7fbff;
  padding: 20px 20px;
}

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

.clinic-info-inner {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.clinic-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align:left;
}

.clinic-address,
.clinic-tel {
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 8px;
  text-align:left;
}

.clinic-tel a {
  color: #007bc7;
  text-decoration: none;
  font-weight: 700;
}

/* Map */
.clinic-map iframe {
  border-radius: 12px;
}

/* SP */
@media (max-width: 768px) {
  .clinic-info-inner {
    grid-template-columns: 1fr;
  }

  .clinic-map iframe {
    height: 220px;
  }
}
.original-text-shadow {
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.629);
}
.midashi{font-family: 'Alegreya Sans SC', sans-serif;
text-align:center;
font-size:3rem;
font-weight:700;
color:#15356855;
margin-top:0 auto;}
.beforetext{
  font-weight:900;
  color:rgb(101, 16, 81);
}
.aftertext{
  font-weight:900;
  color:rgb(255, 81, 81);
}
@media (max-width: 768px) {
.hikaku th{
  font-size:0.8rem;
}
}
/* ★ここがポイント: 左から2列目だけを目立たせるスタイル */
/* thとtdの両方にnth-child(2)を適用する */
.hikaku th:nth-child(2),
.hikaku td:nth-child(2) {
  background-color: #ffebcd; /* 目立つ背景色 (例: 薄いオレンジ) */
  color: #d2691e;           /* 目立つ文字色 (例: 茶色系) */
  font-weight: bold;        /* 文字を太くする */
}
@media (max-width: 768px) {
.syldark{
  position:absolute;
  width:20%;
  right:10%;
  top:5%;
}
}
.syldark{
  position:absolute;
  width:100px;
  right:10%;
  top:5%;
}
@media (max-width: 768px) {
.syldark{
  width:90px;
  right:5%;
  top:-2%;
}
}

.handpiece1{
  position:absolute;
  width:200px;
  left:15%;
  top:-1%;
  transform: rotate(-2deg)
}
.handpiece2{
  position:absolute;
  width:200px;
  right:15%;
  top:4%;
  transform: rotate(4deg)
}
@media (max-width: 768px){
.handpiece1{
  width:160px;
  left:5%;
  top:-1%;
}
.handpiece2{
  width:140px;
  right:4%;
  top:1%;
}
}
.fade-in-element {
    opacity: 0;
    transform: translateY(30px); /* 下から30pxの位置 */
    transition: opacity 1s ease-out, transform 1s ease-out; /* 1秒かけて変化 */
}
.fade-in-element.is-visible {
    opacity: 1;
    transform: translateY(0); /* 元の位置に戻る */
}
.marginsize{
  margin-top:20px;
}
.ichishitei{
  max-width:800px;
  margin:auto;
}
/* ===========================
   background
=========================== */

.worry{
  position:relative;
  background-image:url(https://www.beautis.jp/sylfirm/images/worryback.jpg); 
  height:100%;
}
.effectbg{
  position:relative;
  background-image:url(https://www.beautis.jp/sylfirm/images/bg_effect.jpg); 
  height:100%;
}
.flowbg{
  position:relative;
  background-image:url(https://www.beautis.jp/sylfirm/images/bg_flow.jpg); 
  height:100%;
}
.aboutbg{
  position:relative;
  background-image:url(https://www.beautis.jp/sylfirm/images/bg_about.jpg); 
  height:100%;
}
.chigaibg{
  position:relative;
  background-color:#f7fcff; 
  height:100%;
}
.faqspan{
  position:relative;
  background-image:url(https://www.beautis.jp/sylfirm/images/faqsection.jpg); 
  height:100%;
}
/* =====================
c-form
========================*/

.c-form {
  background-color: #ffffff;
}

.c-form_pico {
  background-color: #736357;
  padding-bottom: 60px;
}

.form-inner {
  background-color: #fff;
  padding: 32px 16px 20px;
}

.form-inner_pico {
  padding: 32px 16px 20px;
}

.c-form_title {
  color: #da5b80;
  font-size: 32px;
}

@media (max-width: 576px) {
  .c-form_title {
    font-size: 6vw;
  }
}

.btn-submit {
  width: 85%;
  max-width: 500px;
  background: rgb(199, 69, 115);
  background: linear-gradient(90deg, rgba(199, 69, 115, 1) 0%, rgba(194, 128, 128, 1) 100%);
  color: #fff;
  font-weight: bold;
  padding: 14px;
  margin-bottom:30px;
}
/* セクション系 */
.c-section {
  margin-bottom: 120px;
}

@media (max-width: 768px) {
  .c-section {
    margin-bottom: 60px;
  }
}

@media (max-width: 576px) {
  .c-section {
    margin-bottom: 30px;
  }
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 768px) {
  label {
    font-size: 14px;
  }
}

.pico_label {
  color: #fff;
}
.form-group {
  margin-bottom: 1rem;
}

.form-header {
  margin-bottom: 3rem;
}

.form-footer {
  margin-top: 3rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 4px 0px!important;
  font-size: 1rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.5;
  background-color: #fff;
  border: none;
  border-bottom: 1px solid #ddd;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  border-color: #88c5e6;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(94, 176, 221, 0.25);
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #f5f5f5;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}

.form-control::placeholder {
  color: #ccc;
  opacity: 1;
}

.form-control.--small {
  max-width: 80px;
}

.form-control_pico {
  display: block;
  width: 100%;
  padding: 4px 8px;
  font-size: 1rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.5;
  border: none;
  border-bottom: 1px solid #ddd;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control_pico::-moz-placeholder {
  color: #808080;
  opacity: 1;
}

.form-control_pico::placeholder {
  color: #808080;
  opacity: 1;
}

textarea.form-control {
  height: auto;
  border: 1px solid #ddd;
}

.form-group_flex {
  display: flex;
  align-items: center;
  gap: 5px;
}

.custom-select {
  display: inline-block;
  width: 100%;
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: 8px 10px;
  border: 1px solid #ddd;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.custom-select:focus {
  border-color: #88c5e6;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(94, 176, 221, 0.25);
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 5px;
}

.badge-primary {
  color: #fff;
  background-color: #5eb0dd;
}

.badge-secondary {
  color: #fff;
  background-color: #262626;
}

.badge-danger {
  color: #fff;
  background-color: #e32929;
}

.badge-light {
  color: #fff;
  background-color: #cccccc;
}

.badge-green {
  color: #fff;
  background-color: #284E13;
}
/*h2内の小文字*/
.contents h2 span.hosoku {
	display: block;
	font-size: 0.7rem;		/*文字サイズを70%に*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
	padding-bottom: 0.5rem;	/*下の見出しとの間の余白。0.5文字分。*/
  margin-top:60px;
  margin-bottom:30px;
}
span.marker {
    background: linear-gradient(transparent 50%, #ffe600 50%);
}