/* =======================================
般-10 / 専-10-1 / 他-2
/general/glossary/
/expert/knowledge/
/common-faq/
■ glossary knowledge 共通パーツ タイトル部分
======================================= */

.underline-ttl{
  margin-top: 4rem;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.75;
  border-bottom: 1px solid #005FAF;
  padding-left: 22px;
  position: relative;
  margin-bottom: 1rem;
}

.underline-ttl::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 9px;
  height: 36px;
  background-color: #005FAF;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 991px) {
  .underline-ttl {
    font-size: 2.2rem;
    padding-left: 17px;
  }
  .underline-ttl::before {
    width: 6px;
    height: 30px;
  }
}

@media screen and (max-width: 767px) {
  .underline-ttl {
    font-size: 1.8rem;
    padding-left: 13px;
  }

  .underline-ttl::before {
    width: 4px;
    height: 22px;
  }
}

@media screen and (max-width: 767px) {
  .underline__list img {
    width: 80%;
  }
}

@media screen and (max-width: 500px) {
  .underline__list img {
    width: 100%;
  }
}

/* =======================================
般-10
/general/glossary/ のみ
■ glossary アンカーリンク
======================================= */

.glossary__anchor{
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  /* max-width: 560px; */
  gap: 12px;
}

.glossary__anchor__item a{
  background-color: #EAF5FF;
  height: 32px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.8rem;
}

.glossary__anchor__item a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 991px) {
.glossary__anchor {
    gap: 10px;
  }
}

@media screen and (max-width: 767px) {
.glossary__anchor__item a {
    height: 28px;
    width: 90px;
    font-size: 1.6rem;
  }
.glossary__anchor {
  gap: 8px;
  }
}

/* =======================================
般-10
/general/glossary/ のみ
■ glossary tocリンク(下部の目次）
======================================= */

.glossary__toc__link{
  position: fixed;
  display: inline-block;
  right: 10px;
  bottom: 90px;
  background-color: #005FAF;
  width: 100px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  line-height: 2;
  color: #fff;
}

.glossary__toc__link::after {
  position: relative;
  content: "";
  display: inline-block;
  width: 7px;
  height: 15px;
  clip-path: polygon(100% 44%, 0 0, 0 100%);
  background-color: #fff;
  top: 2.8px;
  right: -8px;
  border-radius: 5px;
}

.glossary__toc__list{
  position: fixed;
  right: 10px;
  bottom: 134px;
  width: 200px;
  height: auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.glossary__toc__list__item{
  width: 49%;
  position: relative;
  line-height: 2;
}

.glossary__toc__list__item a{
  display: inline-block;
  width: 100%;
  font-size: 1.6rem;
  font-weight: bold;
  padding-left: 8px;
  color: #005FAF;
}

.glossary__toc__list__item a:hover{
  opacity: 0.5;
}

.glossary__toc__list__item a::after {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url(../images/glossary/arrow_accordion_blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 7px;
  top: 50%;
  right: 0px;
  transform: translate(-50%, -50%) rotate(270deg);
}

/* 最初は非表示、クリックで表示の動き（目次） */

.glossary__toc__list {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.glossary__toc__list.is-active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

/* 最初は非表示、下に少しスクロールしたら表示（目次ボタン） */

.glossary__toc__link {
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}

.glossary__toc__link.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =======================================
般-10
/general/glossary/ のみ
■ glossary 下部ボタンの色変更
======================================= */

.glossary .single-series-btn-list{
  justify-content: center;
}

.glossary .single-series-btn-list .btn{
    background-color: #1794e3;;
}

/* =======================================
般-10 / 専-10-1
/general/glossary/ 
/expert/knowledge/
■ glossary knowledge 共通パーツ リスト部分
======================================= */

.underline__list__item {
  padding: 10px clamp(0.625rem, -0.011rem + 2.04vw, 1.25rem) 12px clamp(0.625rem, -0.011rem + 2.04vw, 1.25rem);
  /* border-bottom: 1px solid #D3D3D3; */
}

.underline__list__item__q__ttl {
  font-weight: bold;
  font-size: 1.8rem;
  position: relative;
  cursor: pointer;
  transition: all 0.5s ease;
  padding-right: 46px;
  background-color: #EAF5FF;;
  display: flex;
  align-items: center;
}

.underline__list__item__q__ttl:hover {
  opacity: 0.7;
}

.underline__list__item__q__ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  background-image: url(../images/glossary/arrow_accordion.svg);
  width: 16px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
}

.underline__list__item__q__ttl.close::after {
  transform: translateY(-50%) rotate(180deg);
}

.underline__list__item__q__ttl span{
  display: inline-block;
  background-color: #005FAF;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  line-height: 35px;
  text-align: center;
  margin-right: clamp(0.625rem, 0.238rem + 1.94vw, 1.438rem);
  /* vp 320~991 */
  /* 10~23 */
  color: #fff;
  flex-shrink: 0;
}

.underline__list__item__a{
  padding: 1.4rem 20px 0 20px;
}

.underline__list__item__flex-box{
  display: flex;
}

.underline__list__item__flex-box__img {
  text-align: center;
  padding-left: 2%;
}

.underline__list__item__flex-box__img p{
  font-weight: bold;
}

.underline__list__item__flex-box__photo4{
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .underline__list__item {
    padding: 6px clamp(0.625rem, -0.011rem + 2.04vw, 1.25rem) 8px clamp(0.625rem, -0.011rem + 2.04vw, 1.25rem);}
  .underline__list__item__q__ttl {
    font-size: 1.6rem;
    padding-right: 34px;
  }
  .underline__list__item__q__ttl span {
    width: 30px;
    height: 30px;
    line-height: 28px;
  }

  .underline__list__item__q__ttl::after {
    width: 12px;
    height: 7px;
  }

  .underline__list__item__a {
    padding: 1.4rem 12px 0 12px;
  }

  .underline__list__item__flex-box {
    flex-direction: column;
  }
  .underline__list__item__flex-box__img {
    margin-top: 1rem;
    padding-left: 0%;
}
}

/* =======================================
専-10-1
/expert/knowledge/
■ knowledge を緑色に変更
======================================= */
.special .underline-ttl {
    border-bottom: 1px solid #30A380;
}

.special .underline-ttl::before {
    background-color: #30A380;
}

.special .underline__list__item__q__ttl span {
  background-color: #30A380;
}

.special .underline__list__item__q__ttl {
  background-color: #EAFAF0;
}

/* =======================================
他-2
/common-faq/
■ common-faq を茶色に変更
======================================= */
.common-faq .underline-ttl {
    border-bottom: 1px solid #83741B;
}

.common-faq .underline-ttl::before {
    background-color: #83741B;
}

.common-faq .underline__list__item__q__ttl span {
  background-color: #83741B;
}

.common-faq .underline__list__item__q__ttl {
  background-color: #f5f4ec;
}

/* =======================================
他-2
/common-faq__list
■ アンカーリンクの調整
======================================= */
.common-faq__list{
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.common-faq__list__item a{
  display: inline-block;
  width: 220px;
  height: 50px;
  border: 3px solid #D5CC9A;
  font-size: 1.7rem;
  line-height: 46px;
  text-align: center;
  font-weight: bold;
  background-color: #FCFAED;
}

@media screen and (max-width: 767px) {
  .common-faq__list {
    margin-top: 16px;
    gap: 12px;
  }
  .common-faq__list__item a {
    width: 180px;
    height: 36px;
    line-height: 30px;
    font-size: 1.4rem;
  }
}

/* =======================================
他-2
/common-faq/
■ QAのAの大きさ調整
======================================= */
.common-faq .underline__list__item__a {
  padding: 1.4rem 44px 0 14px;
  display: flex;
}

.common-faq .underline__list__item__a .brown-big-txt{
  font-size: 1.8rem;
  font-weight: bold;
  color: #83741B;
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .common-faq .underline__list__item__a span {
    margin-right: clamp(0.625rem, 0.238rem + 1.94vw, 1.438rem) !important;
  }
  .common-faq .underline__list__item__a {
    padding: 1.4rem 32px 0 12px;
  }
}

/* =======================================
他-2
/common-faq/
■ ボタンの調整
======================================= */

.common-faq .single-series-btn-list {
  margin-top: 50px;
  flex-direction: column;
  align-items: center;
}

.common-faq .single-series-btn-list .btn{
  background-color: #83741B;
}

/* =======================================
般-10-1
/general/archive/
■ 一般の方へのアーカイブ
(general-list__inner__archive)
======================================= */

.general-list__inner__archive{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.general-list__inner__archive__item {
  width: 48%;
  margin-bottom: 30px;
}

.general-list__inner__archive__item__link{
  display: inline-block;
  background-color: #fff;
  padding: clamp(20px, 17.136px + 0.89vw, 26px) clamp(24px, 17.328px + 2.09vw, 38px) clamp(24px, 16.368px + 2.38vw, 40px) clamp(24px, 17.328px + 2.09vw, 38px);
  /* 上 20~26
  左右 24~38
  下 24~40
  vp 320~991 */
}

.general-list__inner__archive__item a:hover {
  opacity: 0.7;
}

.general-list__inner__archive__item__link__ttl{
  font-size: 2.8rem;
  font-weight: bold;
  color: #005FAF;
  line-height: 1.4;
  height: 90px;
  border-bottom: 1px solid #D3D3D3;
  margin-bottom: 2rem;
}

.general-list__inner__archive__item__link__flex{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
}

.general-list__inner__archive__item__link__flex__txt{
  margin-left: 8%;
}

.general-list__inner__archive__item:first-child .general-list__inner__archive__item__link__flex__txt{
  margin-left: 12%;
}

.general-list__inner__archive__item__sub-link{
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  background-color: #fff;
  padding: clamp(14px, 11.136px + 0.89vw, 20px) clamp(18px, 13.232px + 1.49vw, 28px);
  /* vp 320~991 */
  /* 上下14~20 */
  /* 左右 18~28 */
}

.general-list__inner__archive__item__sub-link__txt-box{
  margin-left: 6%;
}

.general-list__inner__archive__item__sub-link__txt-box__h3-ttl{
  font-size: 2rem;
  font-weight: bold;
  color: #005FAF;
  line-height: 1.4;
}

@media screen and (max-width: 991px) {
  .general-list__inner__archive__item__link__ttl {
    font-size: 2.4rem;
    height: 80px;
  }
}

@media screen and (max-width: 767px) {
  .general-list__inner__archive {
    flex-direction: column;
  }
  .general-list__inner__archive__item {
    width: 80%;
  }
  .general-list__inner__archive__item__link {
    width: 100%;
  }
  .general-list__inner__archive__item__link__ttl {
    height: unset;
    padding-bottom: 1rem;
  }
}

@media screen and (max-width: 500px) {
  .general-list__inner__archive__item {
    width: 100%;
  }
  .general-list__inner__archive__item .globe{
    width: 60px;
  }
  .general-list__inner__archive__item .graph {
    width: 70px;
  }
  .general-list__inner__archive__item .book {
    width: 40px;
  }
}

/* =======================================
般-10-1
/general/archive/
■ 一般の方へのアーカイブ 下部ボタンの色変更
(general-list__inner__archive)
======================================= */

.archive .single-series-btn-list {
  justify-content: center;
}

.archive .single-series-btn-list .btn {
  background-color: #1794e3;
  ;
}

/* =======================================
般-15
/general/archive/1/
■ 2000年時点の世界の放射能濃度 
(material-switch__list)
(general-content__inner__rad-conc)
======================================= */

.material-switch__list{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  /* max-width: 850px; */
  padding: 24px 0 30px 0;
}

.material-switch__list__item a{
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #8FBCE2;
  line-height: 1.6;
  height: 40px;
  width: 180px;
  font-weight: bold;
  font-size: 1.6rem;
}

.material-switch__list__item .current{
  border: 2px solid #3673a5;
  background-color: #3673a5;
  color: #fff;
}

.material-switch__list__item a:hover {
  opacity: 0.7;
}

.general-content__inner__rad-conc__sec img{
  margin-top: 1rem;
  width: 100%;
}

.general-content__inner__rad-conc__sec__img-1{
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 767px) {
  .material-switch__list__item a {
    width: 140px;
  }
}

/* =======================================
般-10-1
/general/archive_1/
■ 一般の方へのアーカイブ 下部ボタンの色変更
======================================= */

.archive-1 .single-series-btn-list {
  justify-content: center;
}

.archive-1 .single-series-btn-list .btn {
  background-color: #1794e3;
  ;
}

/* =======================================
般-16
/general/archive/1-1/
■ 2000年時点の世界の放射能濃度 調査結果の出典
(general-content__inner__source)
======================================= */

.general-content__inner__source__ttl-small{
  display: block;
  font-size: 2rem;
}

@media screen and (max-width: 991px) {
  .general-content__inner__source__ttl-small {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .general-content__inner__source__ttl-small {
    font-size: 1.2rem;
  }
}

.general-content__inner__source__sec__box{
  margin-left: 34px;
}

.general-content__inner__source__sec__box__sb-ttl{
  font-size: 2.2rem;
  font-weight: bold;
  color: #005FAF;
  line-height: 1.6;
  margin-top: 0.5rem;
}

@media screen and (max-width: 991px) {
  .general-content__inner__source__sec__box__sb-ttl {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .general-content__inner__source__sec__box__sb-ttl {
    font-size: 1.8rem;
  }
}
.general-content__inner__source__sec__box ol li{
margin-bottom: 1%;
}

.general-content__inner__source__sec__box ol li p{
  margin-left: 22px;
}

.general-content__inner__source__name{
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
  border: 1px solid #D3D3D3;
}

.general-content__inner__source__name dt{
  width: 150px;
  padding: 8px 16px;
  background-color: #EDF6FF;
  color: #005FAF;
  font-weight: bold;
  border-bottom: 1px solid #D3D3D3;
}

.general-content__inner__source__name dd {
  width: calc(100% - 150px);
  padding: 8px 16px;
  border-bottom: 1px solid #D3D3D3;
}

.general-content__inner__source__name dt:last-of-type,
.general-content__inner__source__name dd:last-of-type {
  border-bottom: none;
}

@media screen and (max-width: 767px) {
  .general-content__inner__source__name {
    flex-direction: column;
    width: 80%;
  }
  .general-content__inner__source__name dt {
    width: 100%;
    padding: 4px 8px;
  }
  .general-content__inner__source__name dd {
    width: 100%;
    padding: 4px 8px;
  }
}

@media screen and (max-width: 500px) {
  .general-content__inner__source__name {
    width: 100%;
  }
}

/* =======================================
般-10-1
/general/archive_1_1/
■ 一般の方へのアーカイブ 下部ボタンの色変更
======================================= */

.archive-1-1 .single-series-btn-list {
  justify-content: center;
}

.archive-1-1 .single-series-btn-list .btn {
  background-color: #1794e3;
  ;
}

/* =======================================
般-17
/general/archive/2/
■ ラドン濃度調査
(general-content__inner__radon)
======================================= */

.general-content__inner__radon__flex__img img{
  width: 100%;
}

.general-content__inner__radon__flex__img a:hover{
  opacity: 0.7;
}

.general-content__inner__radon__flex{
  display: flex;
  justify-content: space-between;
}

.general-content__inner__radon__flex__img{
  width: 48%;
}

.general-content__inner__radon__flex__txt{
  width: 48%;
}

.general-content__inner__radon__flex__txt__ttl{
  font-weight: bold;
  font-size: 2.1rem;
  color: #005FAF;
  line-height: 1.6;
}

.general-content__inner__radon__flex__txt ul li{
  text-indent: -1rem;
  padding-left: 1rem;
}

@media screen and (max-width: 991px) {
  .general-content__inner__radon__flex__txt__ttl {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .general-content__inner__radon__flex__txt__ttl {
      font-size: 1.6rem;
    }
  .general-content__inner__radon__flex {
    flex-direction: column;
  }
  .general-content__inner__radon__flex__img {
    width: 80%;
  }
  .general-content__inner__radon__flex__txt {
    width: 100%;
  }
}

/* style2のCSSをキャンセル */
@media screen and (max-width: 767px) {
  .general-content__inner__radon__flex .general-content__text li+li {
    margin-top: unset;
  }
}

@media screen and (max-width: 500px) {
  .general-content__inner__radon__flex__img {
      width: 100%;
    }
}

/* モーダル全体のスタイル */
.radon-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* モーダル表示時 */
.radon-modal-overlay:target {
  display: flex;
  overflow: hidden;
}

/* スクロール固定のためのbodyを模倣 */
html:has(.radon-modal-overlay:target) {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* モーダルのコンテンツ */
.radon-modal-content {
  position: relative;
  max-width: 75%;
  max-height: 90%;
  background: #fff;
  padding: 10px;
  overflow: hidden;
  text-align: center;
}

.radon-modal-content img {
  width: 94%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* 閉じるボタン */
.radon-modal-close {
  position: absolute;
  top: 5%;
  right: 3%;
  font-size: 24px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .radon-modal-content {
    max-width: 90%;
  }
  .radon-modal-close {
    font-size: 14px;
  }
}

/* モーダルの虫眼鏡 */

.general-content__inner__radon__flex__img{
  position: relative;
}

.general-content__inner__radon__flex__img__icon{
  position: absolute;
  width: 28px;
  height: 28px;
  background-color: #fff;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.general-content__inner__radon__flex__img__icon img{
  width: 21px;
  height: auto;
}

/* =======================================
般-10-1
/general/archive_2/
■ ラドン濃度調査 下部ボタンの色変更
(archive_2)
======================================= */

.archive_2 .single-series-btn-list {
  justify-content: center;
}

.archive_2 .single-series-btn-list .btn {
  background-color: #1794e3;
  ;
}

/* =======================================
専-2
/expert/graph/
■ グラフを作成
(general-list__inner__graph)
(graph-archive)
======================================= */

.graph-archive.general-list{
  background-color: #EAFAF0;
}

.general-list__inner__graph{
  display: flex;
  justify-content: space-between;
}

.general-list__inner__graph__item{
  width: 31%;
  background-color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 32px;
}

.general-list__inner__graph__item .general-content__text{
  text-align: left;
}

.general-list__inner__graph__item__link{
  display: inline-block;
  width: 100%;
  padding: 20px 32px 10px 32px;
}

.general-list__inner__graph__item__link__ttl{
  font-size: 2.2rem;
  font-weight: bold;
  color: #0A8657;
  line-height: 1.6;
}

.general-list__inner__graph__item__link__img{
  margin-bottom: 1rem;
}

.general-list__inner__graph__item__link__faq{
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 0.5px;
  color: #0A8657;
  font-size: 1.6rem;
  line-height: 1.8125;
}

.general-list__inner__graph__item__link__faq::before {
  position: relative;
  content: "";
  display: inline-block;
  background-image: url(../images/graph/green_question.svg);
  width: 16px;
  height: 16px;
  background-size: contain;
  left: -3px;
  top: 2.5px;
}

.general-list__inner__graph__item__link:hover{
  opacity: 0.7;
}

.general-list__inner__graph__item__link__faq:hover{
  opacity: 0.7;
}

/* ボタンの調整 */

.graph-archive .single-series-btn-list{
  margin-top: 50px;
  margin-bottom: 0px;
  justify-content: center;
}

.graph-archive .single-series-btn-list .btn-indent{
  display: inline-block;
}

@media screen and (max-width: 991px) {
  .general-list__inner__graph__item__link__ttl {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .general-list__inner__graph__item__link__ttl {
      font-size: 1.8rem;
    }
  .general-list__inner__graph {
      flex-direction: column;
    }
  .general-list__inner__graph__item {
      width: 80%;
      margin-inline: auto;
      margin-bottom: 2.5rem;
    }
}

@media screen and (max-width: 500px) {
  .general-list__inner__graph__item__link__img img {
      width: 80px;
    }
}

/* =======================================
専-4/専-6/専-8
/expert/dose-rate/faq/
/expert/secular-change/faq/
/expert/concentration-range/faq/
■ グラフの見方に関するFAQ
(graph__faq)
======================================= */

.graph__faq img{
  width: 100%;
}

.graph__faq__flex{
  display: flex;
  justify-content: space-between;
}

.graph__faq__flex__img img {
  border: 0.5px solid #d3d3d3;
}

.graph__faq__flex__txt{
  width: 46%;
}

.graph__faq__flex__txt__faq{
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.graph__faq__flex__txt__faq span{
  font-size: 2.8rem;
  line-height: 1;
}

.graph__faq__flex__txt__faq p {
  display: inline;
}

.graph__faq__flex__txt__faq dt{
  font-weight: bold;
  margin-bottom: 1.2rem;
}

.graph__faq__flex__txt__faq dt span{
  color: #2774D1;
}

.graph__faq__flex__txt__faq dd span {
  color: #DC3545;
  font-weight: bold;
}

.graph__faq__flex__txt__faq dt,
.graph__faq__flex__txt__faq dd {
  display: flex;
  align-items: flex-start;
}

.graph__faq__flex__txt__faq dt span,
.graph__faq__flex__txt__faq dd span {
  flex-shrink: 0;
  margin-right: 0.8rem;
}

.graph__faq__flex__txt__faq dt p,
.graph__faq__flex__txt__faq dd p {
  margin: 0;
}

.graph__faq__flex__txt__exp{
  background-color: #EAFAF0;
  padding: 16px 18px;
}

.graph__faq__flex__txt__exp__ttl{
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  padding-left: 28px;
  margin-bottom: 0.8rem;
}

.graph__faq__flex__txt__exp__ttl::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url(../images/graph/graph_icon_exp.svg);
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  bottom: 0;
  width: 22px;
  height: 18px;
}

.graph__faq__flex__txt__exp__dtl{
  /* font-size: 1.2rem;
  line-height: 1.8; */
}

.graph__faq__flex__img{
  width: 50%;
}

.graph__faq hr{
  color: #D3D3D3;
  margin: 40px 0;
}

@media screen and (max-width: 767px) {
  .graph__faq__flex{
    flex-direction: column;
  }
  .graph__faq__flex__txt {
    width: 100%;
    margin-bottom: 2rem;
  }
  .graph__faq__flex__img {
    width: 80%;
  }
  .graph__faq__flex__txt__faq {
      font-size: 1.6rem;
    }
  .graph__faq__flex__txt__faq span {
      font-size: 2.25rem;
    }
  .graph__faq__flex__txt__exp__ttl {
      font-size: 1.4rem;
      padding-left: 24px;
    }
  .graph__faq__flex__txt__exp__ttl::before {
      width: 20px;
      height: 16px;
    }
}

@media screen and (max-width: 500px) {
  .graph__faq__flex__img {
      width: 100%;
    }
}

/* 濃度範囲図のFAQでグラフがないコンテンツのみに効かせるCSS */

.graph__faq__flex.change-width100 {
  display: block;
}

.change-width100 .graph__faq__flex__txt{
    width: 100%;
}

/* ボタンの調整 */

.graph__faq .single-series-btn-list{
  margin-top: 50px;
  flex-direction: column;
  align-items: center;
}

/* ボタンの中のSVGの調整 */

.graph__faq .single-series-btn-list .btn{
  display: flex;
  align-items: center;
}

.graph__faq .single-series-btn-list .btn img{
  width: 16px;
  height: auto;
  margin-right: 6px;
}

/* =======================================
専-10
/expert/target-survey/
■ 対象調査詳細一覧
(target-survey)
======================================= */

.target-survey .red-color-txt{
  color: #DC3948;
}

/* style3のcssをキャンセル */
.target-survey .p-block__detailText span {
  vertical-align: initial;
  font-size: inherit;
  font-weight: unset;
}

.target-survey__table{
  /* margin-left: 22px; */
}

.target-survey__table__ttl{
  font-size: 2.0rem;
  font-weight: bold;
  line-height: 1.8;
}

.target-survey .p-block__detailText-wrapper small{
  margin-top: 0.8rem;
  display: block;
}

@media screen and (max-width: 768px) {
  .target-survey__table {
      /* margin-left: 8px; */
    }
  .target-survey__table__ttl {
      font-size: 1.6rem;
    }
}

/* テーブルのCSS */

.target-survey table{
  width: 100%;
  margin-top: 0.5rem;
  margin-bottom: 3rem;
}

.target-survey tbody{
  border-top: 1px solid #D3D3D3;
  border-right: 1px solid #D3D3D3;
  border-left: 1px solid #D3D3D3;
}

.target-survey td{
  padding: 12px 16px;
  border-bottom: 1px solid #D3D3D3;
}

.target-survey .target-survey__table__name{
  width: 90px;
  padding: 12px;
  background-color: #D6F7ED;
  white-space: nowrap;
  font-weight: bold;
}

.target-survey__table__half{
  width: 24%;
  border-right: 1px solid #d3d3d3;
}

@media screen and (max-width: 768px) {
  .target-survey tbody tr {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  
  .target-survey .target-survey__table__name {
    padding: 8px;
    flex: 1 1 100%;
    box-sizing: border-box;
  }

.target-survey__table__half {
  width: 30%;
  padding: 8px;
  box-sizing: border-box;
  flex: 0 0 35%;
  text-align: left;
}

.target-survey td:not(.target-survey__table__name, .target-survey__table__half) {
  padding: 8px;
  text-align: left;
  box-sizing: border-box;
}

/* 行全体をflexboxに */
.target-survey tbody tr {
  display: flex;
  align-items: stretch;
}

/* 各セルのスタイル */
.target-survey td {
  padding: 8px;
  text-align: left;
  box-sizing: border-box;
}

.target-survey td:not(.target-survey__table__name):not(.target-survey__table__half) {
  flex: 1;
  text-align: left;
}
}

.target-survey .single-series-btn-list {
  justify-content: center;
}

/* =======================================
他-5
link
■ 関連リンク集
(common-link)
======================================= */

/* アンカーリンク */

.common-link__list {
  margin-top: 24px;
  margin-bottom: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.common-link__list__item a {
  display: inline-block;
  width: 220px;
  height: 50px;
  border: 3px solid #D5CC9A;
  font-size: 1.7rem;
  line-height: 46px;
  text-align: center;
  font-weight: bold;
  background-color: #FCFAED;
}

@media screen and (max-width: 767px) {
  .common-link__list {
    margin-top: 16px;
    gap: 12px;
  }

  .common-link__list__item a {
    width: 180px;
    height: 36px;
    line-height: 30px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 500px) {
  .common-link__list__item a {
    width: 136px;
    font-size: 1.3rem;
  }
}

/* 通常外部リンク */

.common-link__out-link{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 24px 16px;
}

.common-link__out-link__item {
  width: 48%;
  padding: 0.5% 2% 0.5% 1em;
  text-indent: -1em;
}

.common-link__out-link__item:nth-of-type(odd) {
  border-right: 1px solid #CCCCCC;
}

.common-link__out-link__item a{
  line-height: 1.8;
  color: #1794E3;
  font-size: 1.6rem;
}

.common-link__out-link__item a::after{
  position: relative;
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  top: 1.5px;
  right: -8px;
  background-image: url(../images/open-external-link-icon_blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 767px) {
.common-link__out-link {
  padding: 12px 8px;
}
}

@media screen and (max-width: 500px) {
.common-link__out-link__item{
  width: 100%;
}
.common-link__out-link__item:nth-of-type(odd) {
  border-right: unset;
}
}

/* 丸付きタイトル箇所外部リンク */

.common-link__out-link-circle{
  display: flex;
  flex-wrap: wrap;
  gap: 24px 0px;
}

.common-link__out-link-circle__item{
  width: 33%;
}

.common-link__out-link-circle__item__list{
  margin-top: 0.6rem;
  padding-left: 12px;
}

.common-link__out-link-circle__item__list__item{
  text-indent: -1em;
  padding: 0 7% 0 1em;
}

.common-link__out-link-circle__item__list__item a{
  line-height: 1.8;
  color: #1794E3;
  font-size: 1.6rem;
}

.common-link__out-link-circle__item__list__item a::after {
  position: relative;
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  top: 1.5px;
  right: -8px;
  background-image: url(../images/open-external-link-icon_blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 767px) {
  .common-link__out-link-circle__item {
      width: 49%;
    }
  .common-link__out-link-circle__item__list {
    padding-left: 0px;
  }
  .common-link__out-link-circle {
      gap: 16px 0px;
  }
}

@media (max-width: 500px) {
  .common-link__out-link-circle__item {
      width: 100%;
    }
}

/* 余白感調整 */

.common-link .others-content__section:last-of-type{
  margin-bottom: 40px;
}

.common-link .others-content__section+.others-content__section {
  margin-top: 3.2rem;
}

.common-link .others-content__section:first-of-type{
  margin-top: 5em;
}

@media screen and (max-width: 767px) {
.common-link .others-content__section+.others-content__section {
    margin-top: 2rem;
  }
.common-link .others-content__section:first-of-type {
    margin-top: 3.2em;
  }
}

/* =======================================
他-1
user
■ 初めてご利用の方へ
(first-user)
======================================= */

/* 3つのできること */
.first-user__three-ability{
  display: flex;
  font-size: 1.6rem;
  gap: 30px;
  max-width: 900px;
  margin-inline: auto;
  margin-top: 3.6rem;
}

.first-user__three-ability__item{
  padding: 16px 34px 24px 34px;
  border: 3px solid #BABABA;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 280px;
  font-weight: bold;
}

.first-user__number{
  width: 33px;
  height: 33px;
  background-color: #88867E;
  color: #fff;
  text-align: center;
  line-height: 31px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 2.1rem;
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
.first-user__number {
  width: 30px;
  height: 30px;
  line-height: 28px;
  font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
.first-user__three-ability {
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.first-user__three-ability__item {
  padding: 14px 24px 18px 24px;
  }
.first-user__number {
  width: 26px;
  height: 26px;
  line-height: 24px;
  font-size: 1.8rem;
}
}

/* コンテンツ */

.first-user-sec:nth-of-type(n+2){
  margin-top: 6rem;
}

.first-user__ttl-box{
  margin-top: 2rem;
}

.first-user__ttl-box__ttl{
  display: flex;
  /* align-items: center; */
  font-size: 2.6rem;
  font-weight: bold;
}

.first-user__ttl-box__ttl .first-user__number{
  margin: 4px 12px 0 0;
  flex-shrink: 0;
}

.first-user__box-link{
  display: flex;
  justify-content: space-between;
  padding: 30px 40px 26px 40px;
  margin-top: 2rem;
  border-radius: 9px;
  line-height: 1.8;
  background-color: #fff;
}

.link-green{
  border: 3px solid #31A380;
}

.link-green:hover {
  background-color: #e2f3e0;
}

.link-blue {
  border: 3px solid #005FAF;
}

.link-blue:hover {
  background-color: #D7E9FC;
}

.link-pink {
  border: 3px solid #FA68C8;
}

.link-pink:hover {
  background-color: #FFF5FC;
}

.first-user__box-link:hover {
  opacity: 0.7;
}

.first-user .ttl-green{
  color: #31A380;
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
  font-weight: bold;
}

.first-user .ttl-blue {
  color: #005FAF;
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
  font-weight: bold;
}

.first-user .ttl-pink {
  color: #FA68C8;
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
  font-weight: bold;
}

.first-user__box-link__txt{
  width: calc(100% - 170px);
}

.first-user__box-link__img{
  text-align: center;
  width: 170px;
}

.first-user__box-link__img img{
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
.first-user__ttl-box__ttl .first-user__number {
  margin: 0px 12px 0 0;
}
.first-user__ttl-box__ttl {
  font-size: 2.2rem;
}
}

@media (max-width: 767px) {
.first-user__ttl-box__ttl .first-user__number {
  margin: 0px 6px 0 0;
}

.first-user__ttl-box__ttl {
  font-size: 1.8rem;
}

.first-user__box-link {
  flex-direction: column;
  width: 80%;
  margin-inline: auto;
}

.first-user__box-link__txt {
  margin-bottom: 2.5rem;
  width: 100%;
}

.first-user__box-link__img {
  width: 100%;
}
}

@media (max-width: 500px) {
.first-user__box-link {
  width: 100%;
}
.first-user__box-link {
  padding: 24px 32px 18px 32px;
}
}

/* こんなこともできます */

.first-user__other{
  margin-top: 3rem;
  padding: 4% 5% 5% 5%;
  background-color: #F4F4F4;
}

.first-user__other__ttl{
  font-size: 2.6rem;
  font-weight: bold;
}

.first-user__other .dtl{
  width: 86%;
}

.first-user__other .first-user__box-link__txt {
    width: calc(100% - 130px);
}

.first-user__other .first-user__box-link__img{
  width: 130px;
}

/* 最後2つのセクションだけpadding右が狭い */

.padding-narrow .first-user__box-link {
  padding: 30px 20px 26px 40px;
}

.padding-narrow .first-user__other .first-user__box-link__img {
  width: 170px;
}

@media (max-width: 991px) {
.first-user__other__ttl {
    font-size: 2.2rem;
  }
}

@media (max-width: 767px) {
.first-user__other__ttl {
  font-size: 1.8rem;
  }
.first-user__other .first-user__box-link__txt {
  width: 100%;
}
.first-user__other .first-user__box-link__img {
  width: 100%;
}
.padding-narrow .first-user__other .first-user__box-link__img {
  width: 100%;
}
}

/* 子どもサイト */
.link-pink .first-user__box-link__img{
  width: 220px !important;
}

.first-user__box-link.link-pink{
  align-items: center;
}

@media (max-width: 500px) {
.link-pink .first-user__box-link__img img{
    width: 180px ;
  }
}

/* =======================================
専-1-1
api
■ APIの提供について
(api-provide)
======================================= */

.api-provide .api-provide__img{
  margin-top: 2rem;
  padding: 4% 8%;
  background-color: #F4F4F4;
}

.api-provide .api-provide__img img{
  width: 100%;
}

.api-provide__item{
  margin-top: 3rem;
}

.api-provide__item__ttl{
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: bold;
}

.api-provide__item__txt a{
  color: #1794E3;
  margin-right: 6px;
}

.api-provide__item__txt a:hover {
  opacity: 0.7;
}


.api-provide__item__txt a img{
margin-left: 4px;
margin-bottom: 4px;
}

.api-provide__item__txt ul{
  margin-left: 2rem;
}

.api-provide__item__txt ul li br{
  display: none;
}

@media (max-width: 767px) {
  .api-provide__item__ttl {
      font-size: 1.6rem;
  }
  .api-provide__item__txt ul li br {
      display: block;
  }
.api-provide__item__txt ul {
  margin-left: 1.4rem;
}
}

/* ボタンの調整 */

.api-provide .single-series-btn-list{
justify-content: center;
}







/* btnのcss wpの方ですでに書き込み済み あとで削除する*/

.single-series-btn-list {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .single-series-btn-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.single-series-btn-list {
  margin-top: 30px;
  margin-bottom: 50px;
  display: flex;
  gap: 30px;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.single-series-btn-list .btn {
  margin-bottom: 10px;
}

.single-series-btn-list .btn {
  -webkit-transition: opacity 0.2s, background 0.2s;
  transition: opacity 0.2s, background 0.2s;
  cursor: pointer;
  position: relative;
  background: #30A380;
  color: #fff;
  padding: 15px 50px 15px 40px;
  font-size: 1.5rem;
  border-radius: 30px;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (max-width: 767px) {
  .single-series-btn-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}