* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  /* background: #f5f5f5; */
}
ul {
    list-style: none;
    padding-left: 0;
}
/* ● */
.dot-divider {
  text-align: center;
  margin: 40px 0 60px;
  /* color: #6fae45; */
  color: #b7c1b3;
  font-size: 14px;
  letter-spacing: 8px;
}

/* ヒーロー */
.hero {
  background-image: url('https://doctor-trust.co.jp/form/downloads/images/download_back.png');
  background-size: cover;
  /* background-position: center; */
  text-align: center;
  padding: 65px 20px 35px;
  height: 340px;
  margin-top: 100px;
}

.hero h1 {
  font-size: 2.3em;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.h2_s {
  padding: 0.25em 0.5em;/*上下 左右の余白*/
  color: #494949;/*文字色*/
  background: transparent;/*背景透明に*/
  border-left: solid 5px #237544;/*左線*/
      text-align: left;
    margin-bottom: 40px;
}

.hero p {
  font-size: 14px;
  color: #444;
}

/* フィルターバー */
.filter-bar {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1070px;
  margin: 24px auto 0;
}

#filter-btn {
  padding: 5px 16px;
  border-radius: 20px;
  border: 1px solid #4caf50;
  background: #fff;
  font-size: 13px;
  color: #333;
  cursor: pointer;
  transition: all 0.15s;
  font-family: 'Noto Sans JP', sans-serif;
    color: #4caf50;
}

#filter-btn.active {
  /* background: #4caf50;
  color: #fff;
  border-color: #4caf50;
  */
}

#filter-btn:hover {
  color: #fff;
}

#filter-btn:hover {
  /* background: #f0f0f0; */
  background: #4caf50;
  opacity: 0.8; 
}

#filter-btn#active:hover {
  background: #43a047;
}

/* メインコンテンツ */
.main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 16px 40px;
  margin-top: 60px;
}

/* 人気No.1カード */
.featured-card {
  background: #f0f0f0;
  /* border: 2px solid #4caf50; */
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
  margin: 25px auto 36px;
  width: 100%;
  max-width: 850px;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* No.1 */
/* .badge-popular {
      position: absolute;
    top: -62px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    width: 145px;
} */

.badge-popular {
      position: absolute;
    /* top: -62px;
    left: 20px; */
    display: flex;
    align-items: center;
    gap: 4px;
    width: 145px;
    z-index: 10;
    top: -10px;
}

.featured-img {
  width: 450px;
  flex-shrink: 0;
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
}

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

.featured-body {
  flex: 1;
  text-align: left;
}

.featured-body h2 {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.featured-check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #555;
  margin-bottom: 12px;
}

.featured-check::before {
  content: '✅';
  font-size: 13px;
}

.featured-desc {
  font-size: 12px;
  color: #666;
  background: #fff;
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.btn-dl {
  background: #4caf50;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s;
  font-family: 'Noto Sans JP', sans-serif;
}

.btn-dl:hover {
  background: #43a047;
}

.btn-dl::after {
  content: '▶';
  font-size: 11px;
}

/* セクションラベル */
.section-label {
  font-size: 1.5em;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  text-align: left;
  border-bottom: 1px solid #222;
  /* display: inline; */
}

/* カードグリッド */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 25px;
  margin-bottom: 32px;
  /* アニメーション */
      opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1020x) {
  .card-grid {
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .card-grid {
        grid-template-columns: auto;
  }
}

.fade {
  position: relative;
}

.dl-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.15s, border-color 0.15s;
  position: relative; /* あとで消す */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
}

.dl-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  /* border-color: #4caf50; */
  transform: translateY(-6px);
}

.dl-card-title {
  font-size: 1.5em;
  font-weight: 600;
}
.dl-card-text {
  font-size: 1em;
  padding-top: 5px;
}

/* .dl-card.selected {
  border: 2px solid #2196f3;
}
  selected
*/ 

/* .dl-card-anchor {
  position: absolute;
  top: 6px;
  left: 6px;
  background: #ff5722;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 700;
}
  アンカー 
          <div class="dl-card-anchor">アンカー</div>
  */

.dl-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  /* object-fit: cover; */  
  background: #f0f0f0;
  padding: 5px;
  object-fit: contain;
}
.TOP5_img {
padding: 0!important;
border-bottom: 0.5px solid #e0e0e0;
}
.dl-card-label {
  /* text-align: center; */
  font-size: 13px;
  color: #333;
  padding: 10px 8px;
  font-weight: 500;
  /* min-height: 90px; */
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* 縦中央 */
  align-items: center;  
}
.TOP5 {
  font-size: 17px;
  min-height: 55px!important;
}

/* まとめてダウンロードバー */
.bulk-dl-bar {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.bulk-dl-bar span {
  font-size: 15px;
  font-weight: 700;
  color: #222;
}

.btn-bulk {
  background: #fff;
  color: #222;
  border: 1.5px solid #bbb;
  border-radius: 6px;
  padding: 9px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s;
  font-family: 'Noto Sans JP', sans-serif;
}

.btn-bulk:hover {
  background: #f5f5f5;
}

.btn-bulk::after {
  content: '📄';
  font-size: 14px;
}

/* 資料の下のボタン */
.card_btn {
  /* display: inline-block;
  width: 250px;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #1B85FB;
  box-shadow: 0px 5px 0px #1567C3;
  transition: .3s;
  */
    display: inline-block;
  padding: 14px 28px;
  color: #fff;
  font-weight: bold;
  border-radius: 999px;
  text-decoration: none;
  margin-bottom: 30px;
  background: linear-gradient(
    135deg,
    #ffd194 0%,
    #ff9f1c 50%,
    #ff7a00 100%
  );/* グラデーションの設定*/
  transition: 0.3s;
  margin-bottom: 30px;
  margin-top: 20px;
}

.card_btn:hover {
  box-shadow: unset;
  transform: translateY(4px);
  opacity: 0.7;
}

/* お問合せ */
.download-contact {
  max-width: 1100px;
  margin: 80px auto 60px;
  /* padding: 0 20px; */
}

.download-contact__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 45px 55px;
  border: 1px solid #f28c28;
  border-radius: 16px;
  background: linear-gradient(135deg, #fffaf5 0%, #fff 55%, #fff3e8 100%);
}

.download-contact__image {
  flex: 0 0 250px;
  text-align: center;
}

.download-contact__image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.download-contact__text {
  flex: 1;
}

.download-contact__text h2 {
  margin: 0 0 18px;
  font-size: 26px;
  line-height: 1.6;
  color: #222;
  font-weight: 700;
}

.download-contact__text h2 span {
  color: #f47b00;
  font-size: 30px;
}

.download-contact__text p {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.9;
  color: #333;
}

.download-contact__btn {
  display: inline-block;
  margin-top: 24px;
  padding: 16px 48px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff9f2d 0%, #f36f00 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(243, 111, 0, 0.25);
}

.download-contact__btn:hover {
  opacity: 0.85;
}


/* 下部の問い合わせコンテンツ */
.other-docs {
  padding: 70px 20px;
  background: #fff;
}

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

.other-docs__heading {
  position: relative;
  text-align: center;
  margin-bottom: 50px;
}

.other-docs__heading::before,
.other-docs__heading::after {
  content: "";
  position: absolute;
  top: 15px;

  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #8bc34a;

  opacity: .6;
}

.other-docs__heading::before {
  left: 5%;

  box-shadow:
    8px 12px 0 #8bc34a,
    16px 24px 0 #8bc34a,
    24px 36px 0 #8bc34a,
    32px 48px 0 #8bc34a;
}

.other-docs__heading::after {
  right: 5%;

  box-shadow:
    -8px 12px 0 #8bc34a,
    -16px 24px 0 #8bc34a,
    -24px 36px 0 #8bc34a,
    -32px 48px 0 #8bc34a;
}

.other-docs__heading h2 {
  margin: 0 0 16px;
  color: #4d8f3a;
  font-size: 30px;
  line-height: 1.6;
  font-weight: 700;
}

.other-docs__heading p {
  margin: 0;
  color: #333;
  font-size: 16px;
  line-height: 2;
}

.other-docs__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 11px 0;
  color: #4d8f3a;
  font-size: 22px;
  font-weight: 700;
}

.other-docs__title::before,
.other-docs__title::after {
  content: "";
  width: 380px;
  height: 1px;
  background: #cfe5c2;
}

.other-docs__grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 32px; /* 上下の余白のみ指定 */
}

.other-docs__card {
  position: relative;
  padding: 28px 24px 28px;
  /* border: 1px solid #d9e4d3; */
  border-radius: 12px;
  background: #fff;
  /* box-shadow: 0 6px 18px rgba(77, 143, 58, 0.06); */

}

.other-docs__icon {
  /* width: 56px;
  height: 56px; */
  /* margin: 0 auto 16px; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #edf7e8; */
  border-radius: 50%;
  font-size: 28px;
}
.other-docs__icon.blue {
  background: #78bee6!important;
}
.other-docs__icon.orange {
    background: #f0c18f!important;  
}
.other-docs__icon.lavender {
    background: #ae91f7!important;
}

.flex_i {
  display: flex;
  align-items: center; /* 縦方向を中央揃え */
  gap: 8px;            /* アイコンと文字の間隔 */
}
.other-docs__card h3 {
  /* margin: 0 0 18px; */
  text-align: center;
  color: #4d8f3a;
  font-size: 20px;
  line-height: 1.5;
  /* padding-left: 10px; */
}

.other-docs__card ul {
  margin: 20px;
  padding: 0;
  list-style: none;
}

.other-docs__card ul:has(li:only-child) {
  grid-template-columns: 1fr;
}

.other-docs__card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: #333;
  font-size: 17px;
  line-height: 1.8;
  text-align: left;
}

.other-docs__card li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 6px;
  height: 6px;
  background: #7dbd4d;
  border-radius: 50%;
}
.other-docs__card.blue li::before {
  background: #78bee6!important;
}
.other-docs__card.orange li::before {
  background: #f0c18f!important;
}
.other-docs__card.lavender li::before {
  background: #ae91f7!important;
}

.other-docs__etc {
  position: absolute;
  right: 40px;
  bottom: 16px;
  margin: 0;
  color: #555;
  font-size: 13px;
}

.other-docs__tags {
  margin-top: 18px;
  padding: 24px 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, #edf7e8 0%, #fff 100%);
}

.other-docs__tags-title {
  margin-bottom: 14px;
  color: #4d8f3a;
  font-size: 20px;
  font-weight: 700;
}

.other-docs__tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.other-docs__tag-list span {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #d9e4d3;
  border-radius: 999px;
  background: #fff;
  color: #333;
  font-size: 13px;
  font-weight: 500;
}

.other-docs__tag-list span::before {
  content: "✓";
  margin-right: 6px;
  color: #6fae45;
  font-weight: 700;
}

.other-docs__tags p {
  margin: 14px 0 0;
  color: #555;
  font-size: 13px;
}

.other-docs__contact {
  margin-top: 22px;
  /* padding: 30px 40px; */
  padding: 10px 40px;
  border: 1px solid #8bc34a;
  border-radius: 14px;
  background: #f8fcf5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

/* 一旦残し
.other-docs__contact {
  margin-top: 22px;
  padding: 10px 40px;
  border: 1px solid #8bc34a;
  border-radius: 14px;
  background: #f8fcf5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
*/

.other-docs__contact h3 {
  margin: 0 0 8px;
  color: #4d8f3a;
  font-size: 26px;
}

.other-docs__contact p {
  margin: 0;
  color: #333;
  font-size: 15px;
  line-height: 1.8;
}

.other-docs__btn {
  flex: 0 0 auto;
  display: inline-block;
  padding: 18px 54px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb347 0%, #f47b00 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(244, 123, 0, 0.25);
  transition: 0.3s;
}

.other-docs__btn:hover {
    box-shadow: unset;
  transform: translateY(4px);
  opacity: 0.7;
}

/* トップボタン */
.no1_btn {
  width: 440px
}

/* エールちゃん */
.other-docs__contact-text {
  display: flex;
  align-items: center;
}
.other-docs__contact-text img {
      padding-right: 25px;
      width: 200px;
}

/* アニメーション */
.fade {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* アイコン */
.other-docs__icon img {
  width: 56px;  /* お好みのサイズに調整 */
  height: 56px;
  object-fit: contain;
}


@media screen and (max-width: 1024px) {
  .other-docs__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .other-docs__title::before,
  .other-docs__title::after {
    width: 380px;
  }
    .other-docs__contact {
    flex-direction: column;
    text-align: center;
    padding: 30px 22px;
  }

  .other-docs__contact h3 {
    font-size: 22px;
  }
  .other-docs__contact {
  gap: 30px;
}
  /* スラッシュドット */
  .other-docs__heading::before,
.other-docs__heading::after {
  display: none;
}
  
}

@media screen and (max-width: 900px) {
  .main {
    padding: 0;
    max-width: 100%;
    width: 100%;
  }
  .other-docs {
    padding: 50px 16px;
  }

  .other-docs__heading h2 {
    font-size: 23px;
    text-align: left;
  }

  .other-docs__heading p {
    font-size: 14px;
    text-align: left;
  }

  .other-docs__title {
    font-size: 18px;
    gap: 12px;
  }

  .other-docs__title::before,
  .other-docs__title::after {
    width: 225px;
    /* content: none; */
  }

  .other-docs__grid {
    grid-template-columns: 1fr;
  }

  .other-docs__card {
    padding: 26px 22px 42px;
  }


  .other-docs__btn {
    width: 100%;
    box-sizing: border-box;
    padding: 16px 20px;
    font-size: 16px;
    text-align: center;
  }
}


/* 768 */
@media screen and (max-width: 900px) {
  .download-contact {
    margin: 50px auto 40px;
  }

  .download-contact__inner {
    flex-direction: column;
    padding: 30px 24px;
    gap: 25px;
    text-align: center;
  }

  .download-contact__image {
    flex: none;
    width: 180px;
  }

  .download-contact__text h2 {
    font-size: 21px;
  }

  .download-contact__text h2 span {
    font-size: 24px;
  }

  .download-contact__text p {
    font-size: 14px;
  }

  .download-contact__btn {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 20px;
    font-size: 16px;
  }

.no1_btn {
  width: auto;
}
.other-docs__contact-text {
  display: block;
}
.other-docs__contact-text img {
  padding-right: 0;
}
.other-docs__card ul {
      width: 80%;
    margin: 0 auto;
}
.hero {
      margin-top: 79px;
}
}

/* トップ調整 */
.download-hero-copy {
  text-align: center;
}

.download-hero-copy h1 {
  margin: 0 0 30px;
  font-size: 3em;
  line-height: 1.4;
  color: #222;
  font-weight: 700;
}

.download-hero-free {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 14px;
}

.download-hero-free span {
  display: block;
  width: 90px;
  height: 2px;
  background: #237544;
}

.download-hero-free strong {
  color: #237544;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.download-hero-copy p {
  margin: 0;
  color: #333;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 500;
}

/* 問合せ */
/* グリッドを縦並びに */
.other-docs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

/* カード全体を横並び（左：アイコン+見出し、右：リスト） */
.other-docs__card {
  display: flex;
    align-items: center; 
  gap: 32px;
  padding: 10px 0;
  border-bottom: 1px dashed #ccc;
}

/* .other-docs__card:first-child {
  border-top: 1px dashed #ccc;
} */
 .other-docs__card:last-child {
  border-bottom: none;
 }

/* 左側：アイコン＋見出しエリア */
.other-docs__card .flex_i {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 120px;
  width: 120px;
}

.other-docs__card .other-docs__icon {
  font-size: 40px;
}

.other-docs__card h3 {
  margin: 0;
  font-size: 16px;
  text-align: center;
  line-height: 1.4;
  color: #333;
}

/* 右側：リスト */
/* .other-docs__card ul {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 4px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
} */

@media screen and (max-width: 900px) {
  .hero  {
    height: 250px;
  }
  .download-hero-copy h1 {
    font-size: 28px;
    margin-bottom: 14px;
  }

  .download-hero-free {
    gap: 14px;
  }

  .download-hero-free span {
    width: 56px;
  }

  .download-hero-free strong {
    font-size: 25px;
  }

  .download-hero-copy p {
    font-size: 14px;
  }
  /*no.1 */
  .badge-popular {
    width: 120px;
    top: 0px;
  }
}


/* 問合せ */
/* ============================================
   other-docs__grid レイアウト
   ============================================ */

/* グリッドを縦並びに */
.other-docs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

/* カード全体を横並び（左：アイコン+見出し、右：リスト） */
.other-docs__card {
  display: flex;
  gap: 32px;
  border-bottom: 1px dashed #ccc;
  min-height: 180px;
}


/* 左側：アイコン＋見出しエリア */
.other-docs__card .flex_i {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 120px;
  width: 210px;
}

.other-docs__card .other-docs__icon {
  font-size: 40px;
}

.other-docs__card h3 {
  margin: 0;
  font-size: 16px;
  text-align: center;
  line-height: 1.4;
}

/* 右側：リスト */
/* .other-docs__card ul {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
  */

.other-docs__card ul li {
  font-size: 17px;
  line-height: 1.6;
}

/* li::before カラー */
.other-docs__card li::before {
  background: #4caf7d;
}

.other-docs__card.blue li::before {
  background: #3a9bd5;
}

.other-docs__card.orange li::before {
  background: #e8903a;
}

.other-docs__card.lavender li::before {
  background: #9b7ecb;
}


/* ============================================
   タブレット（768px以下）
   ============================================ */
@media (max-width: 900px) {

  .other-docs__card {
    gap: 20px;
    padding: 24px 0;
  }

  /* 左側を少し狭く */
  .other-docs__card .flex_i {
    min-width: 90px;
    width: 90px;
  }

  .other-docs__card .other-docs__icon {
    font-size: 32px;
  }

  .other-docs__card h3 {
    font-size: 14px;
  }

  /* リストを1列に */
  .other-docs__card ul {
    grid-template-columns: 1fr;
  }
  .dl-card-label {
    min-height: auto;
  }

}


/* ============================================
   スマートフォン（480px以下）
   ============================================ */
@media (max-width: 480px) {

  /* カードを縦並びに切り替え */
  .other-docs__card {
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
  }

  /* 左側：横並びに（アイコン＋見出しを横一列） */
  .other-docs__card .flex_i {
    flex-direction: row;
    align-items: center;
    width: 100%;
    min-width: unset;
    gap: 10px;
  }

  .other-docs__card .other-docs__icon {
    font-size: 28px;
  }

  .other-docs__card h3 {
    font-size: 15px;
    text-align: left;
  }

  /* リストは1列のまま */
  .other-docs__card ul {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .other-docs__card ul li {
    font-size: 13px;
  }
  .other-docs__title {
  display: block;
  }

  .download-hero-free strong {
    font-size: 20px;
  }
  
}



/* レスポンシブ 改行　*/
@media screen and (max-width: 900px) {
.sp-display {
display: none;
}
}
@media screen and (min-width: 901px) {
.pc-display {
  display: none;
}
}