/* CSS Document */
html {
  width: 100%;
  margin: 0 auto;
  font-size: 72.5%;
  overflow-y: scroll;
}
body {
  color: #333333;
  margin: 0 auto;
  width: 100%;
  font-family: 'Noto Sans JP', 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
  background-color: rgba(255,255,255,0.90) ;
}

#contant {
	width: 80%;
	margin: 150px auto 100px;
}
@media(max-width:1000px){
	html {
	  font-size: 80.0%;
	}
	body{
		width: 100%;
	}
	#contant {
		margin-top: 100px;
		width: 95%;
	}
}
/*header*/
.inner {
    width: 80%;
    margin: 0 auto;
}
.inner:after {
    content: "";
    clear: both;
    display: block;
}

#top-head {
    top: -100px;
    position: absolute;
    width: 100%;
    margin: 100px auto 0;
    padding: 10px 0 0;
    line-height: 1;
    z-index: 999;
	background-color: rgba(208,252,225,0.93);
}
#top-head a,
#top-head {
    color: rgba(107,107,107,1.00);
    text-decoration: none;
	font-size: 1.5rem;
}
#top-head .inner {
    position: relative;
}
#top-head .logo {
    float: left;
	margin-left: 20px;
    font-size: 36px;
}
#global-nav ul {
    list-style: none;
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 14px;
}
#global-nav ul li {
    float: left;
}
#global-nav ul li a {
    padding: 0 30px;
}
 
/* Fixed */
#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    padding-top: 10px;
    height: 70px;
    background: #fff;
    background: rgba(255,255,255,0.88);
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
}
#top-head.fixed .logo {
    font-size: 24px;
    color: #333;
}
.logo{
	width: 60%;
}
.logo img{
	height: 100%;
	max-height: 70px;
	width: auto;
}
#top-head.fixed #global-nav ul li a {
    color: #333;
    padding: 0 20px;
}
.thispage{
	color: rgba(73,73,73,1.00);
	font-weight: bold;
}
.menu_font:hover{
	color: rgba(0,143,203,1.00);
	font-weight: bold;
}
 
/* Toggle Button */
#nav-toggle {
    display: none;
    position: absolute;
    right: 30px;
    top: 60px;
    width: 50px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #666;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 11px;
}
#nav-toggle span:nth-child(3) {
    top: 22px;
}

@media screen and (max-width: 1000px) {
	#contant {
		margin-top: 170px;
	}
    #top-head,
    .inner {
        width: 100%;
        padding: 0;
    }
    #top-head {
        top: 0;
        position: fixed;
        margin-top: 0;
    }
    /* Fixed reset */
    #top-head.fixed {
        padding-top: 0;
        background: transparent;
    }
    #mobile-head {
        background: #fff;
        width: 100%;
        height: 150px;
        z-index: 3	;
        position: relative;
    }
    #top-head .fixed .logo,
    #top-head .logo {
        position: absolute;
        left: 15%;
        top: 15px;
        color: #333;
        font-size: 26px;
    }
	.logo img{
		width: 100%;
		max-width: 500px;	
		height: auto;
		max-height: none;
	}
    #global-nav {
        position: absolute;
        /* 開いてないときは画面外に配置 */
        top: -460px;
        background: rgba(255,255,255,0.90);
        width: 100%;
        text-align: center;
        padding: 10px 0;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    }
	.menu_font{
		color: rgba(71,71,71,1.00);
	}
	.menu_font:hover{
		color: rgba(0,143,203,1.00);
		font-weight: bold;
	}
    #global-nav ul {
        list-style: none;
        position: static;
        right: 0;
        bottom: 0;
        font-size: 14px;
		padding: 0;
    }
    #global-nav ul li {
        float: none;
        position: static;
    }
	#global-nav ul li:hover{
		color: rgba(62,62,62,1.00);
		background-color: rgba(203,203,203,0.80);
		transition-duration: 0.3s;
	}
    #top-head #global-nav ul li a,
    #top-head.fixed #global-nav ul li a {
        width: 100%;
        display: block;
        color: #fff;
        padding: 18px 0;
    }
    #nav-toggle {
        display: block;
    }
    /* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }
    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #nav-toggle span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    /* #global-nav スライドアニメーション */
    .open #global-nav {
        /* #global-nav top + #mobile-head height */
        -moz-transform: translateY(590px);
        -webkit-transform: translateY(590px);
        transform: translateY(590px);
    }
}

/*content*/
.contents_area {
  width: auto;
  height: auto;
  display: block;
  position: relative;
}
.contents_title {
  width: auto;
  display: inline-block;
  position: relative;
  z-index: 2;
}
.contents_title h3 {
  font-size: 3.0rem;
  display: inline-block;
  position: relative;
  background: #dfefff;
  box-shadow: 0px 0px 0px 5px #dfefff;
  border: dashed 2px white;
  padding: 0.2em 0.5em;
  color: #454545;
  margin: 0;
}
.contents {
  width: 95%;
  height: auto;
  box-sizing: border-box;
  top: -50px;
  left: 30px;
  position: relative;
  border-radius: 5px;
  background-color: rgba(255,255,255,1.00);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .5);
  border-top: 45px solid rgba(255, 255, 255, 0.00);
  z-index: 1;
}
.contents p {
  box-sizing: border-box;
  font-size: 2.2rem;
  line-height: 3rem;
  margin: 20px 10px;
}
.crudedrug_tile {
  margin-top: 10px;
  width: 100%;
}
.contents_tile {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
@media(max-width:1000px){
	.contents_tile {
	  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	  gap: 20px;
	}
}
.tileimg {
  display: inline-block;
  position: relative;
  background-color: rgba(255, 255, 255, 1.00);
  border-radius: 15%;
}
.tileimg img {
  width: 100%;
  cursor: pointer;
  transition-duration: 0.3s;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .5);
  border-radius: 15%;
}
.tileimg p {
  background-color: hsla(0, 0%, 0%, 0.67);
  border-radius: 20px;
  color: hsla(0, 100%, 99%, 1.00);
  font-size: 1.8rem;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  left: 10px;
}
.tileimg:hover img {
  opacity: 0.6;
  transition-duration: 0.3s;
  border-radius: 15%;
}
.tileimg:hover p {
  background-color: hsla(0, 0%, 80%, 0.00);
  border-radius: 10%;
  color: hsla(0, 0%, 20%, 1.00);
  font-size: 1.8rem;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  left: 10px;
  transition-duration: 0.3s;
}
.syoyakuname {
  padding: 0.5em 1em;
  margin: 2em 0;
  color: #00363D;
  background: #FFFFFF; /*背景色*/
  border-top: solid 6px #1dc1d6;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32); /*影*/
  display: inline-block;
}
.syoyakuname h3 {
  font-size: 2.3rem;
  margin: 0;
  padding: 0;
}
.tab-wrap {
  background: White;
  box-shadow: 0 0 5px rgba(0, 0, 0, .1);
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  padding: 0 0 20px;
}
.tab-label {
  color: Gray;
  cursor: pointer;
  flex: 1;
  font-size: 2.0rem;
  font-weight: bold;
  order: -1;
  padding: 12px 24px;
  position: relative;
  text-align: center;
  transition: cubic-bezier(0.4, 0, 0.2, 1) .2s;
  user-select: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.color1 {
  background-color: hsla(359, 62%, 83%, 0.63);
}
.color2 {
  background-color: hsla(190, 61%, 83%, 0.63);
}
.color3 {
  background-color: hsla(125, 61%, 83%, 0.63);
}
.tab-label:hover {
  background: rgba(0, 191, 255, .1);
}
.tab-switch:checked + .tab-label {
  color: black;
}
.tab-label::after {
  background: DeepSkyBlue;
  bottom: 0;
  content: '';
  display: block;
  height: 3px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(100%);
  transition: cubic-bezier(0.4, 0, 0.2, 1) .2s 80ms;
  width: 100%;
  z-index: 1;
}
.tab-switch:checked ~ .tab-label::after {
  transform: translateX(-100%);
}
.tab-switch:checked + .tab-label::after {
  opacity: 1;
  transform: translateX(0);
}
.tab-content {
  height: 0;
  opacity: 0;
  padding: 0 20px;
  pointer-events: none;
  transform: translateX(-30%);
  transition: transform .3s 80ms, opacity .3s 80ms;
  width: 100%;
  display: inline-block;
}
.tab-switch:checked ~ .tab-content {
  transform: translateX(30%);
}
.tab-switch:checked + .tab-label + .tab-content {
  height: auto;
  opacity: 1;
  order: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.tab-wrap::after {
  content: '';
  height: 10px;
  order: -1;
  width: 100%;
}
.tab-switch {
  display: none;
}
.tab-content-img {
  width: 30%;
  float: left;
  text-align: center;
}
.tab-content-img img {
  width: 100%;
}
.tab-content-data {
  box-sizing:border-box; 
  width: 70%;
  float: left;
  padding: 0 30px; 
}
@media(max-width: 1000px){
	.tab-content-img {
	  width: 100%;
	  float: none;
	}
	.tab-content-img img {
	  width: 50%;
	}
	.tab-content-data {
	  width: 100%;
	  float: none;
	}
}
.tab-content-data p {
  font-size: 1.6rem;
}
.tab-content-data table {
  width: 100%;
  border-collapse: collapse;
}
.tab-content-data table thead td {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
}
.tab-content-data table tbody tr {
  border-bottom: 1px solid #6C6C6C;
}
.tab-content-data table tbody th {
  font-size: 1.8rem;
  font-weight: bold;
}
.tab-content-data table tbody td {
  font-size: 1.6rem;
}
.italic{
	font-style: italic;
}
.content-data {
    position: relative;
    margin-top: 2em;
	margin-bottom: 2em;
    padding: 0.5em 1em;
    border: solid 3px #95ccff;
    border-radius: 8px;
	vertical-align: middle;
}
.content-data .content-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    background: #FFF;
    color: #95ccff;
    font-weight: bold;
	font-size: 1.8rem;
}
.content-data p {
	font-size: 1.6rem;
    margin: 0; 
    padding: 0;
}
.content-data img {
	width: 60%;
    margin: 0 auto; 
    padding: 0;
}
.tab-content-tile1 {
	width: 100%;
	display: grid;
  	grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  	gap: 20px;
}
.contantbold {
	font-weight: bold;
	text-decoration-line: underline;
}

.tab-content-tile2 {
	width: 100%;
	display: grid;
  	grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  	gap: 20px;
}

.tab-content-more-img {
	width: 100%;
	display: grid;
  	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  	gap: 20px;
}

.tab-content-more-img img {
	width: 80%;
}
.content-text p {
	margin-top: 10px;
	margin-left: 20px;
}
.content-text img {
	margin-top: 20px;
	width: 60%;
}
.content-text table {
	width: 100%;
}
.content-text-header p{
	margin-top: 10px;
}

.centercell {
	text-align: center;
}
.contents_area_pctext {
	font-size: 1.4rem;
	text-align: center;
}
.contents_area_sptext {
	display: none;
}
@media(max-width:1000px){
	.contents_area_pctext {
		display: none;
		
	}
	.contents_area_sptext {
		display: block;
		font-size: 1.4rem;
		text-align: center;
	}
}
/*footer*/
#footer{
	height: auto;
	margin: 0 auto 50px;
}
#footer p{
	font-size: 1.4rem;
}
