@charset "UTF-8";
/*各レイアウト内のパーツのスタイル
---------------------------------------------------------*/
/*テキスト強調*/
.ln_y{
    background: linear-gradient(transparent 50%, #f1efa2 50%);
}
.cl_gr{
color:#9DC23A;
}
.cl_rd{
color:#D70050;
}

/*背景強調*/
.clbg_rd{
  background: rgb(255, 244, 244);
}

/*ボタン小 緑*/
.btn,
a.btn,
button.btn {
font-weight: bold;
font-size: 1.4rem;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 1.5rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn-gr,
a.btn-gr {
  color: #fff;
  background-color: #00B7B7;
  font-size: 1.4rem;
}
.btn-gr:hover,
a.btn-gr:hover {
  color: #fff;
  background: #0fbebe;
}

/*ボタン大 黄緑*/
.btnBig,
a.btnBig,
button.btnBig {
font-weight: bold;
font-size: 1.5rem;
  line-height: 1.7;
  position: relative;
  display: inline-block;
  padding: 2rem 2.5rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: 0.5rem;
  min-width: 300px;
}

.btn-green,
a.btn-greens {
  color: #fff;
  background-color: #37d1d1;
}
.btn-green:hover,
a.btn-green:hover {
  color: #fff;
  background: #00B7B7;
}

/*リスト(強調)*/
ul.list01{
    list-style: none;
    font-weight: bold;
    padding:10px;
    margin: 0;
}

ul.list01 li:before {
content: '〇 ';
color: #5cc9c9;
}

/*リスト(通常)*/
ul.list02{
  list-style: none;
  padding:1rem;
  margin: 0;
}

ul.list02 li:before {
content: '● ';
font-size: .5em;
color: #5cc9c9;
vertical-align: middle;
padding-right: .3rem;
}

/*ボックス1(1カラム/強調強め)*/
.box01{
    padding:3rem 2.5rem 2rem;
    color: #DBD6C1;
    }
    .box01 p{
    font-size: 1.6rem;
    }
    .box01 h2{
    font-size:2rem;
    text-align: center;
    border: 0;
    padding:5px 10px 20px;
    margin-top: 0;
    background: none;
    }
    .box01 span{
        font-weight:bold;
        background: linear-gradient(transparent 50%, #f1efa2 50%);
    }
    

    @media screen and (max-width:768px) {
        .box01{
            padding:1.5rem;
            width:100%;
         }
        .box01 p{
            font-size: 1.5rem;
          }
        .box01 h2{
            font-size:1.6rem;
         }
    }

/*3カラム均等幅*/
.col3box {
  display: grid;
  grid-template-columns: repeat(1, 1fr 1fr 1fr);
  gap: 20px;
}

@media screen and (max-width:768px) {
  .col3box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.box-col {
  background: #fff;
  border-radius: 10px;
  padding: 5%;
}

/*2カラム両サイド空き*/
.col2box-1-2-2-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr 2fr 2fr 1fr);
  gap: 20px;
}

@media screen and (max-width:768px) {
  .col2box-1-2-2-1{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.box-col {
  background: #fff;
  border-radius: 10px;
  padding: 5%;
}


    

/*ボックス3(1カラム/強調軽め)*/
.box03{
    border:#F2F2F2 5px solid;
    background:#fff;
    padding:1%;
    margin: 1% 3%;
}

/*ボックス3(1カラム/強調軽め/padding0)*/
.box03-0{
  border:#F2F2F2 5px solid;
  background:#fff;
  padding:0;
  margin: 1% 3%;
}

/*ボックス4(1カラム/背景黄緑)*/
.box04{
    background:#f9fbf2;
    padding:3%;
    margin: 1% 3%;
}


/*テーブル1(項目なし、3カラム)*/
.table01 {
    border-collapse: collapse;
    width: 100%;
    max-width: 850px;
    text-align: center;
    font-size: 1.6rem;
  }
  .table01 tr {
    background-color: #F2F2F2;
  }
  .table01 tr:nth-child(odd) {
    background-color: #fff;
  }
  .table01 th, .table01 td {
    padding: 1em;
    border:#fff solid 1px;
  }
  .table01 tr:nth-child(odd) td {
    border:#F2F2F2  solid 1px;
  }
  .table01 th {
    font-weight: bold;
    text-align: center;
    width: calc(100% / 3);
    min-width: 4em;
  }

  @media screen and (max-width:768px) {
    .table01 {
        font-size: 1.4rem;
    }
}

/*テーブル2((項目あり、2カラム))*/
.table02 {
    border-collapse: collapse;
    max-width: 850px;
    font-size: 1.5rem;
    width: 90%;
    margin: 2% 5%;
  }
  .table02 tr {
    background-color: #FFF;
  }
  .table02 tr:nth-child(odd) {
    background-color: #F2F2F2;
  }
  .table02 th, .table02 td {
    padding: 1em;
  }

  .table02 th {
    font-weight: bold;
    text-align: center;
    width: calc(100% / 4);
    min-width: 4em;
    text-align: center;
  }

  .table02 ul{
  list-style: none;
  padding-left:0;
  font-size: 1.3rem;
  }

  .table02 li:first-child span {
    background-color:#D70050;
    border-radius: 3px;
    color: #fff;
    font-size: 1.1rem;
    line-height: 2;
    padding:0 5px;
}
@media screen and (max-width:768px) {
    .table02 {
    border:1px solid #DCDDDD;
    font-size: 1.4rem;
    margin: 0;
     width: 100%;
    }
}

/*Q&A用アコーディオン*/

.faq-area{
  border-top: 1px solid #E5E5E5 ;
  max-width: 850px;
  width: 90%;
    margin: 2% 5%;
}
@media screen and (max-width:768px) {
  .faq-area{
  margin:5% 0;
  width: 100%;
  }
  }

  .faq-box h3{
    position: relative;
    color: #333;
    text-shadow: 0 0 2px white;
  }

  .faq-box h3:before {
    content: "";
    position: absolute;
    background: #CCEDEC;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: 50%;
    /* border: dashed 1px white; */
    left: -15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -1;
  }

.faq-box h3::after{
border: 0;
}
.accordion {
    max-width: 850px;
    margin-bottom: 7px;
    border-bottom: #E5E5E5 solid 1px;
}
.accordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}
.accordion summary::-webkit-details-marker {
    display: none;
}
.accordion summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #D70050;
    border-right: 3px solid #D70050;
    content: '';
    transition: transform .3s;
}
.accordion[open] summary::after {
    transform: rotate(225deg);
}
.accordion p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 5em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}
.accordion[open] p {
    transform: none;
    opacity: 1;
}
.accordion p{
    text-indent: -3em;
}
.accordion summary span:before{
    content: "Q.";
    font-weight: bold;
    color:#D70050;
    padding:2px 8px;
    border-radius: 20px;
    margin: 0 10px 0 0;
}
.accordion p:before{
    content: "A.";
    font-weight: bold;
    color:#00B7B7;
    padding:2px 8px;
    border-radius: 20px;
    margin: 10px;
}

@media screen and (max-width:768px) {
    .accordion summary {
        padding: 1em;
    }
    .accordion p{
        padding: .3em 2em 1.5em 3.5em;
    }
}

/*下向き矢印(小)*/
.dli-chevron-down {
    display: inline-block;
    vertical-align: middle;
    color: #146434;
    line-height: 1;
    width: 0.5em;
    height: 0.5em;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-25%) rotate(135deg);
  }

  /*外部リンク用ボックス*/
  .linkBox01{
padding: 2%;
font-size:1.4rem;
background-color: #FAFAFA;
  }
  .linkBox01 a{
  padding-right: 18px;    /* 左側に余白を確保する。 */
  background: url("/common/images/icon_link.png") no-repeat right top;
  background-size: 1.4rem; 
}
@media screen and (max-width:768px) {
  .linkBox01 {
    padding: 5%;
  }
  }

/*下層ページ用h4*/
.lowerPage h4{
    position: relative;/*相対位置*/
    line-height: 1.4;/*行高*/
    display: inline-block;
    border-bottom: 1px solid #C4DC7B;
    padding-bottom:5px;
  }
  
.lowerPage h4:before{ 
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    display: inline-block;
    font-size: 1.5rem;
    color: #C4DC7B;
  }
.lowerPage h4:before {
    content:"■";
    padding-right: 0.5rem
  }

/*参考記事用h2*/
.l-reference h2{
    background: none;
    padding: 0;
    border: 0;
    padding-left: 2rem;
    border-left: 6px double #C4DC7B;
  
}

/*関連記事用h3*/
.l-relation h2{
  background: none;
  padding: 0;
  border: 0;
  padding-left: 2rem;
  border-left: 6px double #C4DC7B;
}

@media screen and (max-width: 768px) {
  .l-relation h2 {
      margin-left: 2%;
      width: 98%;
  }
}

.linkBox02{
  padding: 3%;
  background-color: #FAFAFA;
}
.linkBox02 div{
  background-color: #FFF;
  border:#e7e7e7 1px solid;
  padding: 0.5rem;
}

.l-relation h3{
  background: none;
  color: inherit;
  font-weight: normal;
  font-size: 1.5rem;
  margin-bottom: 0;
}
.l-relation h3:after{
  border: none;
}
.l-relation a{
  text-decoration: none;
}
.linkBox02{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}
.linkBox02 img{
width: 100%;
height: 130px;
object-fit: cover;
}
@media screen and (max-width:768px) {
  .linkBox02{
    grid-template-columns: repeat(2, 1fr);
  }
  .l-reference h2 {
    margin-left: 2%;
    width: 98%;
  }
}
.linkBox02 div a:hover{
  color:#448cc1;;
}
.linkBox02 div a:hover img{
opacity: 0.7;
}

/*アンカーリンク用ボタン*/
.linkBox03{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}
@media screen and (max-width:768px) {
  .linkBox03{
    grid-template-columns: repeat(2, 1fr);
    margin: 0 3%;
  }
}
.linkBox03 div {
  position: relative;
  text-align: center;
  border: 1px solid rgb(235, 235, 235);
  border-bottom: 4px solid #146434;
}

.linkBox03 a {
  text-decoration: none;
  display: block;
  padding: 2rem .5rem;
  color:#146434;
  background: rgb(255, 255, 255);
}
.linkBox03 a:hover {
  text-decoration: none;
  display: block;
  padding: 2rem .5rem;
  color:#448b60;
  background:#f2fdf6;
}

/*2カラム 幅1:2*/
.col2box-2-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr 2fr);
  gap: 20px;
}

@media screen and (max-width:768px) {
  .col2box-2-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

/*2カラム 幅2:1*/
.col2box-1-2 {
  display: grid;
  grid-template-columns: repeat(1, 2fr 1fr);
  gap: 20px;
}

@media screen and (max-width:768px) {
  .col2box-1-2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

/*2カラム 幅1:1*/
.col2box-1-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr 1fr);
  gap: 20px;
}

@media screen and (max-width:768px) {
  .col2box-1-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

/*2カラム 幅1:3*/
.col2box-1-3 {
  display: grid;
  grid-template-columns: repeat(1, 1fr 3fr);
  gap: 20px;
}

@media screen and (max-width:768px) {
  .col2box-1-3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

/*2カラム 幅3:1*/
.col2box-3-1 {
  display: grid;
  grid-template-columns: repeat(1, 3fr 1fr);
  gap: 20px;
}

@media screen and (max-width:768px) {
  .col2box-3-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

/*3カラム 幅1:1:1*/
.col3box-1-1-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr 1fr 1fr);
  gap: 20px;
}

@media screen and (max-width:768px) {
  .col3box-1-1-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

/*4カラム 均等*/
.col4box-1-1-1-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr 1fr 1fr 1fr);
  gap: 20px;
}

@media screen and (max-width:768px) {
  .col4box-1-1-1-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr 1fr);
    gap: 20px;
  }
}

/*目次*/
.indexBox {
  border: 1px solid #dfdfdf;
  padding: 2rem;
  margin-top: 2rem;
}
.indexBox h2 {
  background: none;
  border-bottom: 1px dashed #dfdfdf;
  margin-top: 0;
  padding: 0 0 1rem;
}
@media screen and (max-width: 768px) {
  .indexBox h2 {
      border-top: 0;
  }
  .indexBox {
  margin: 1rem;
  }
}

/*参照リンク*/
main ul.reff{
  list-style: none !important;
  padding-left: 2%;
  padding-right: 2%;
  font-size: 1.3rem;
}

main .reff li:first-child span {
  background-color: #D70050;
  border-radius: 3px;
  color: #fff;
  font-size: 1.1rem;
  line-height: 2;
  padding: 0 5px;
}

@media screen and (max-width: 768px) {
  main ul.reff{
    list-style: none !important;
    padding-left: 5%;
    padding-right: 5%;
    font-size: 1.3rem;
  }
}

/*医薬品一覧とボタン*/
.medArea{
  width: 90%;
  margin: 0 auto 3%;
  max-width: 890px;
}
.md-list{
display: flex;
width: 100%;
flex-wrap: wrap;
}
.md-list a{
  border: #DBDBDB solid 1px;
  border-radius: 15px;
  padding: 2%;
  font-weight: bold;
  font-size:1.7rem;
  text-align: center;
  flex: 1 1 100px;
  margin: 1%;
}
.md-list a:hover{
background-color: #f8ecec;
}
.md-list a img{
  width: 80%;
  margin: 0;
  max-width: 90px;
  mix-blend-mode: multiply; 
  width: 100%;
  height: 90px;
  object-fit: contain;
  margin-bottom: 1rem;
}
.arrow{
	position: relative;
	display: inline-block;
	padding: 0 16px 0 0;
	color: #000;
	vertical-align: middle;
	text-decoration: none;
	font-size: 1.6rem;
  line-height: 1.1;
  width: 100%;
}
.arrow::before,
.arrow::after{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.ar01::before{
	width: 12px;
	height: 12px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #D70050;
}
.ar01::after{
	right: 5px;
	width: 3px;
	height: 3px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/*リンクボタン右寄せ*/
.linkbtn-r{
text-align: right;
margin: 0;
}