@charset "UTF-8";
/* Scss Document */
/* color */
/* common */
h1, .h1 {
  font-size: 3.2rem;
  font-weight: bold;
}

h2, .h2 {
  font-size: 2.8rem;
  margin: 0 0 40px;
  padding: 0 0 10px;
  position: relative;
  border-bottom: solid 2px;
  border-image: linear-gradient(to right, #ffc30c 0%, #ffc30c 9.99%, #084a87 10%, #084a87 100%);
  border-left: 0;
  border-top: 0;
  border-right: 0;
  border-image-slice: 1;
}

h2.en {
  margin: 0;
  padding: 0;
  border: none;
}

h2.en:after {
  content: none;
}

h2 + .en {
  margin: 0 0 40px;
  color: #3589c3;
  font-weight: bold;
}

h3 {
  font-size: 2.2rem;
  padding-left: 10px;
  border-left: #084a87 solid 5px;
  margin: 0 0 20px;
}

h4 {
  font-size: 1.6rem;
  margin: 0 0 20px;
}

h5 {
  font-size: 1.4rem;
  margin: 0 0 20px;
}

.pc_only {
  display: inherit;
}

.sp_only {
  display: none;
}

.small_txt {
  font-size: 80%;
  display: block;
  line-height: 1.6;
  margin-top: 5px;
}

#main section {
  padding: 60px 0 0;
}
#main section > section {
  padding: 0 0 40px;
}
#main section > section:last-child {
  padding: 0;
}

#main section:last-child,
#main section.sec {
  padding: 60px 0;
}

#main section p {
  line-height: 1.8;
  margin: 0 0 1.4rem;
}
#main section p:last-child {
  margin-bottom: 0;
}

video {
  max-width: 100%;
}

/* ボタン */
.btn {
  background: #FFF;
  text-align: center;
  padding: 10px 20px;
  border: solid 1px #3589c3;
  border-radius: 30px;
  display: table;
  margin: 30px auto 0;
  position: relative;
  cursor: pointer;
}

.btn.blue {
  background: #3589c3;
  color: #FFF;
  padding: 10px 50px;
}

.btn.white {
  background: #fff;
  color: #000;
  border-color: #666;
  padding: 10px 50px;
}

.box_btn {
  border-radius: 0;
  display: block;
  position: relative;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  background: #3589c3;
  color: #FFF;
  max-width: 380px;
  margin: 20px auto 0;
}

.box_btn.pink {
  background: #f25c79;
}

.box_btn.navy {
  background: #084a87;
}

/* 矢印 */
.tri_b,
.tri_g,
.tri_w,
.btn.blue,
.btn.white {
  position: relative;
}

.box_btn:before,
.tri_b:before, .tri_g:before, .tri_w:before,
.btn.blue:before, .btn.white:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  z-index: 1;
}

.box_btn:before,
.tri_w:before,
.btn.blue:before {
  border-color: transparent transparent transparent #fff;
}

.tri_b:before {
  border-color: transparent transparent transparent #3589c3;
}

.tri_g:before,
.btn.white:before {
  border-color: transparent transparent transparent #666;
}

.arrow_b,
.arrow_g {
  position: relative;
}

.arrow_b:before,
.arrow_g:before {
  content: "";
  width: 8px;
  height: 8px;
  background: center / contain no-repeat;
  display: inline-block;
  position: relative;
  transform: rotate(45deg);
  border-right: solid 2px #666;
  border-bottom: solid 2px #666;
  transform: rotate(-45deg);
  margin-right: 10px;
  top: -2px;
}

.arrow_b:before {
  border-color: #084a87;
}

/* リスト */
.two_list li {
  float: left;
  width: calc(50% - 20px);
  margin-right: 40px;
}

.two_list li:nth-child(2) {
  margin-right: 0;
}

.three_list li {
  float: left;
  width: 31.48%;
  margin: 0 2.78% 20px 0;
}

.three_list li:nth-child(3n) {
  margin-right: 0;
}

.four_list li {
  float: left;
  width: calc(25% - 15px);
  margin: 0 20px 20px 0;
}

.four_list li:nth-child(4n) {
  margin-right: 0;
}

.five_list li {
  float: left;
  width: calc(20% - 12px);
  margin: 0 15px 20px 0;
}

.five_list li:nth-child(5n) {
  margin-right: 0;
}

.single li {
  margin-bottom: 0;
}

.list li {
  position: relative;
  margin-bottom: 1.4rem;
  padding-left: 2rem;
}
.list li:last-child {
  margin-bottom: 0;
}
.list li:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  left: 5px;
  top: 8px;
  background: #3589c3;
}

.num_list {
  counter-reset: number;
}
.num_list li {
  position: relative;
  margin-bottom: 1.4rem;
  padding-left: 3.4rem;
}
.num_list li:last-child {
  margin-bottom: 0;
}
.num_list li:before {
  counter-increment: number;
  content: " " counter(number) ".";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 4px;
  width: 2.4rem;
  text-align: right;
}

.pagelist li {
  width: calc(50% - 30px);
  float: left;
  margin: 0 60px 50px 0;
}
.pagelist li .name {
  margin: 15px 0;
  font-weight: bold;
  position: relative;
  font-size: 2rem;
}
.pagelist li:nth-child(even) {
  margin-right: 0;
}
.pagelist li:nth-last-child(-n+2) {
  margin-bottom: 0;
}

.breadcrumb {
  margin-top: 20px;
}
.breadcrumb a {
  color: #084a87;
}

.page-title {
  display: table;
  width: 100%;
  background: #e9f1f7;
  background-size: cover;
  background-position: center;
}
.page-title div {
  display: table-cell;
  vertical-align: middle;
  height: 200px;
  width: 100%;
  text-align: center;
}
.page-title div h1, .page-title div .h1 {
  color: #084a87;
  display: inline-block;
  background: rgba(255, 255, 255, 0.7);
  padding: 5px 10px;
}
.page-title div h1 span, .page-title div .h1 span {
  display: block;
  padding-bottom: 3px;
  font-size: 60%;
}

.box1 .left, .box2 .left {
  float: left;
}
.box1 .right, .box2 .right {
  float: right;
}

.box1 .left {
  width: 48.15%;
}
.box1 .right {
  width: 46.30%;
  text-align: right;
}

.box2 .left {
  width: 46.30%;
  text-align: left;
}
.box2 .right {
  width: 48.15%;
}

.box1:after, .box2:after {
  clear: both;
  content: "";
  display: block;
}

.table {
  margin: auto;
}
.table td, .table th {
  padding: 10px;
  border: solid 1px #ccc;
  vertical-align: middle;
}
.table thead {
  background: #084a87;
  color: #FFF;
}
.table thead th {
  text-align: center;
}
.table tbody th {
  text-align: left;
}

.toggle dt {
  cursor: pointer;
}
.toggle dd {
  display: none;
}

/* アイコン */
.pdf:after {
  content: "";
  display: inline-block;
  position: relative;
  margin-left: 3px;
  top: 1px;
  width: 20px;
  height: 16px;
  background: url("../img/icon/pdf.png") center/contain no-repeat;
}

.blank:after {
  content: "";
  display: inline-block;
  position: relative;
  margin-left: 3px;
  top: 1px;
  width: 16px;
  height: 13px;
  background: url("../img/icon/blank.png") center/contain no-repeat;
}

p.img img {
  margin: 0 20px;
}
p.img span {
  margin: 0 20px;
  text-align: center;
  display: inline-table;
  max-width: 325px;
}
p.img span img {
  margin: 0 0 10px;
}
p.img span a {
  word-break: break-all;
}

.select-wrap {
  position: relative;
}

.select-wrap:after {
  z-index: 1;
  position: absolute;
  right: 105px;
  content: "";
  width: 10px;
  height: 10px;
  background: center / contain no-repeat;
  display: inline-block;
  transform: rotate(45deg);
  border-right: solid 2px #3589c3;
  border-bottom: solid 2px #3589c3;
  transform: rotate(45deg);
  margin-right: 10px;
  top: 12px;
}

select {
  outline: none;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 40px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  color: #000;
  width: 100%;
  border-radius: 3px;
}

select option {
  background-color: #fff;
  color: #000;
}

select::-ms-expand {
  display: none;
}

select:-moz-focusring {
  color: transparent;
}

/* page */
#top #mainvisual {
  padding: 0;
}
#top #mainvisual li:nth-child(n+2) img {
  width: 100%;
  display: none;
}
#top #mainvisual li.slick-slide:nth-child(n+2) img {
  display: block;
}
#top #news .tabs {
  background-color: #fff;
  margin: 0 auto;
}
#top #news .tab_btn {
  border-left: solid 1px #ddd;
}
#top #news .tab_item {
  width: calc(100%/5);
  height: 50px;
  background-color: #fff;
  line-height: 50px;
  text-align: center;
  color: #666;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
  border: solid 1px #ddd;
  border-bottom: 3px solid #3589c3;
  cursor: pointer;
  border-left: 0;
}
#top #news .tab_item:hover {
  opacity: 0.75;
}
#top #news .tab_item:first-of-type {
  border-left: solid 1px #ddd;
}
#top #news input[name="tab_item"] {
  display: none;
}
#top #news .tab_content {
  display: none;
  clear: both;
}
#top #news #all:checked ~ #all_content,
#top #news #product:checked ~ #product_content,
#top #news #rd:checked ~ #rd_content,
#top #news #corporate:checked ~ #corporate_content,
#top #news #other:checked ~ #other_content {
  display: block;
}
#top #news .tabs input:checked + .tab_item {
  background-color: #3589c3;
  color: #fff;
  border-left: none;
  border-right: none;
}
#top #point ul li {
  float: left;
  width: 33.33%;
}
#top #point ul li img {
  width: 100%;
}
#top #point ul li h3 {
  text-align: center;
  border: none;
  margin: 0;
  padding: 20px 10px 0;
  font-size: 1.8rem;
}
#top #point ul li h3 span {
  display: inline-block;
  padding: 10px;
  margin: auto;
  width: 100%;
  max-width: 300px;
  border-top: solid 1px #3589c3;
  border-bottom: solid 1px #3589c3;
}
#top #point ul li h3 span span {
  width: auto;
  border: none;
  padding: 0;
  font-size: 70%;
  position: relative;
  top: -2px;
}
#top #contents li p {
  font-size: 1.4rem;
  margin-top: 10px;
}
#top #org ul {
  max-width: 840px;
  margin: 0 auto;
}
#top #org ul li {
  float: left;
  width: 31%;
}
#top #org ul li:nth-child(-n+3) {
  margin-bottom: 25px;
}
#top #org ul li:last-child {
  margin-right: 0;
}
#top #org ul li:nth-child(2) {
  margin: 0 3.5%;
}
#top #org ul li:nth-child(4) {
  margin: 0 3.5% 0 17.4%;
}

ul.newslist li {
  border-bottom: solid 1px #ddd;
  padding: 15px 0;
  display: block;
}
ul.newslist li .detail div, ul.newslist li .no_detail div {
  margin-top: 5px;
}
ul.newslist li .detail .date, ul.newslist li .no_detail .date {
  display: inline-block;
  margin-right: 20px;
  width: 7rem;
}
ul.newslist li .detail .tag, ul.newslist li .no_detail .tag {
  color: #FFF;
  display: none;
  padding: 1px 5px;
}
ul.newslist li .detail .rd, ul.newslist li .no_detail .rd {
  background-color: #339ea2;
}
ul.newslist li .detail .product, ul.newslist li .no_detail .product {
  background-color: #eb6282;
}
ul.newslist li .detail .corporate, ul.newslist li .no_detail .corporate {
  background-color: #0083ba;
}
ul.newslist li .detail .other, ul.newslist li .no_detail .other {
  background-color: #7B4C8C;
}
ul.newslist li .detail .title, ul.newslist li .no_detail .title {
  /* overflow: hidden; text-overflow: ellipsis;	white-space: nowrap; */
  margin-top: 10px;
}
ul.newslist li .detail .tri_b, ul.newslist li .no_detail .tri_b {
  padding-left: 1.6rem;
}
ul.newslist li .detail .tri_b:before, ul.newslist li .no_detail .tri_b:before {
  left: 0;
}

ul.newslist.all li .detail .tag, ul.newslist.all li .no_detail .tag {
  display: inline-block;
}

ul.newslist.corporate li .detail .corporate, ul.newslist.corporate li .no_detail .corporate {
  display: inline-block;
}

ul.newslist.rd li .detail .rd, ul.newslist.rd li .no_detail .rd {
  display: inline-block;
}

ul.newslist.product li .detail .product, ul.newslist.product li .no_detail .product {
  display: inline-block;
}

ul.newslist.other li .detail .other, ul.newslist.other li .no_detail .other {
  display: inline-block;
}

#parkinson table {
  font-size: 95%;
}
#parkinson table td {
  border: none;
  vertical-align: top;
}
#parkinson table td strong {
  display: block;
  margin-bottom: 10px;
}
#parkinson table td:first-child {
  width: 6.2rem;
  padding-right: 0;
}

#infant .table {
  max-width: 880px;
}
#infant .table td:nth-child(n+2) {
  width: 17%;
}
#infant .max {
  max-width: 880px;
}

#cirrhosis .box1 .left {
  width: 52%;
}
#cirrhosis .box1 .right {
  width: 44%;
}

#generic .generic_card {
  max-width: 700px;
  margin: 0 auto;
}
#generic .generic_card li:first-child {
  float: left;
}
#generic .generic_card li:last-child {
  float: right;
}
#generic .generic_card img {
  margin: 0 0 10px;
}

#root .agree .btn {
  display: inline-block;
  min-width: 200px;
  margin: 20px 20px 0;
}

#sitemap .left {
  width: calc(50% - 40px);
  float: left;
  margin-right: 80px;
}
#sitemap .right {
  width: calc(50% - 40px);
  float: left;
}
#sitemap ul > li {
  margin-bottom: 20px;
}
#sitemap ul > li > a {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 12px 0;
  border-bottom: solid 1px #3589c3;
}
#sitemap ul > li li {
  margin-bottom: 0;
  border-bottom: solid 1px #999;
}
#sitemap ul > li li > a {
  display: block;
  padding: 12px 15px;
  font-weight: normal;
  font-size: 1.4rem;
  border-bottom: none;
}
#sitemap ul > li a:before {
  content: "";
  width: 10px;
  height: 10px;
  background: center / contain no-repeat;
  display: inline-block;
  position: relative;
  transform: rotate(45deg);
  border-right: solid 2px #3589c3;
  border-bottom: solid 2px #3589c3;
  transform: rotate(-45deg);
  margin-right: 10px;
  top: -2px;
}
#sitemap ul > li li a:before {
  width: 8px;
  height: 8px;
  border-right: solid 2px #666;
  border-bottom: solid 2px #666;
}

#office .map {
  margin-top: 20px;
}
#office .train, #office .car {
  width: calc(50% - 20px);
  padding: 20px;
  border: solid 1px #ccc;
  float: left;
}
#office .train {
  margin-right: 40px;
}
#office ul {
  margin-top: 30px;
}
#office ul li p {
  text-align: center;
  margin-top: 10px;
}
#office .toggle {
  margin-bottom: 30px;
}
#office .toggle:last-child {
  margin-bottom: 0;
}
#office .toggle:first-child dd {
  display: block;
}
#office h3 {
  position: relative;
  background: #f3f3f3;
  padding: 6px 35px 6px 15px;
}
#office h3:after {
  content: "";
  width: 10px;
  height: 10px;
  background: center / contain no-repeat;
  display: inline-block;
  position: absolute;
  right: 15px;
  top: 0;
  margin: auto;
  bottom: 0;
  border-right: solid 2px #084a87;
  border-bottom: solid 2px #084a87;
  transform: rotate(45deg);
  transition: 0.2s ease;
}
#office .open h3:after {
  transform: rotate(-135deg);
}
#office .tokyo .flex_box {
  display: flex;
  justify-content: space-between;
}
#office .tokyo .flex_box .left {
  width: 52%;
}
#office .tokyo .flex_box .right {
  order: 2;
  width: 41%;
}
#office .tokyo .flex_box .train {
  width: 100%;
}

#code section a {
  display: block;
  padding: 30px;
  border: solid 1px #ccc;
  position: relative;
}
#code section a .update {
  position: absolute;
  right: 30px;
  top: 30px;
}
#code section a li {
  margin-top: 10px;
  margin-bottom: 0;
}
#code section a li:nth-child(-n+3) {
  margin-top: 0;
}

#materials ul {
  border-top: solid 1px #ccc;
}
#materials ul li {
  border-bottom: solid 1px #ccc;
  position: relative;
}
#materials ul li a {
  padding: 12px 0;
  display: inline-block;
}
#materials ul li .add {
  float: right;
  padding: 12px 0;
  display: inline-block;
}
#materials ul li:after {
  clear: both;
  content: "";
  display: block;
}

#approach .orangebook .left {
  width: 74%;
  margin-right: 0;
}
#approach .orangebook .right {
  width: 26%;
}
#approach .history li {
  background: #e9f1f7;
  padding: 20px;
}
#approach .history li h4 {
  text-align: center;
  border-bottom: solid 1px #3589c3;
  padding-bottom: 3px;
}
#approach .address {
  border: solid 1px #CCC;
  padding: 20px;
}
#approach .address h4 {
  border-bottom: solid 1px #ccc;
  padding-bottom: 3px;
}
#approach .address .tel {
  font-size: 3.4rem;
  font-weight: bold;
}
#approach .attention {
  font-size: 1.2rem;
}
#approach sub {
  bottom: 0;
  font-size: 0.75%;
}
#approach .red {
  color: #e50000;
}
#approach .blue {
  text-decoration: underline;
}

#contact .border, #recruit .border {
  border: solid 1px #CCC;
  padding: 20px;
}

#charter h3 {
  padding: 0;
  font-size: 3.4rem;
  border: none;
  font-family: serif;
}

#vision h2 {
  text-align: center;
  font-size: 3rem;
  color: #084a87;
  font-family: serif;
  border: none;
  font-weight: normal;
}
#vision h2:before {
  content: "";
  position: relative;
  border-top: solid 1px #084a87;
  border-left: solid 1px #084a87;
  top: -15px;
  width: 30px;
  height: 30px;
  display: inline-block;
}
#vision h2:after {
  content: "";
  position: relative;
  border-bottom: solid 1px #084a87;
  border-right: solid 1px #084a87;
  bottom: -17px;
  width: 30px;
  height: 30px;
  background: none;
  display: inline-block;
}

#outline .table,
#history .table {
  width: 100%;
}
#outline .table th, #outline .table td:first-child,
#history .table th,
#history .table td:first-child {
  width: 20rem;
}
#outline .table th, #outline .table td,
#history .table th,
#history .table td {
  border-right: none;
  border-left: none;
  padding: 25px 0;
  font-size: 1.6rem;
}

#outline .officer {
  line-height: 2;
}

#history .table th, #history .table td:first-child {
  width: 21rem;
}

#info .tabs {
  background-color: #fff;
  margin: 0 auto;
}
#info .tab_btn {
  border-left: solid 1px #ddd;
}
#info .tab_item {
  width: 20%;
  height: 50px;
  background-color: #fff;
  line-height: 50px;
  text-align: center;
  color: #666;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
  border-top: solid 1px #ddd;
  border-left: solid 1px #ddd;
  border-bottom: solid 3px #3589c3;
  margin-bottom: -1px;
  cursor: pointer;
}
#info .tab_item:hover {
  opacity: 0.75;
}
#info .tab_item:last-of-type {
  border-right: solid 1px #ddd;
}
#info input[name="tab_item"] {
  display: none;
}
#info .tab_content {
  display: none;
  clear: both;
}
#info #all:checked ~ #all_content,
#info #sales:checked ~ #sales_content,
#info #properuse:checked ~ #properuse_content,
#info #important:checked ~ #important_content,
#info #revision:checked ~ #revision_content,
#info #change:checked ~ #change_content,
#info #other:checked ~ #other_content {
  display: block;
}
#info #all_content li .detail .tag, #info #all_content li .no_detail .tag {
  display: inline-block;
}
#info #corporate_content li .detail .corporate, #info #corporate_content li .no_detail .corporate {
  display: inline-block;
}
#info #rd_content li .detail .rd, #info #rd_content li .no_detail .rd {
  display: inline-block;
}
#info #product_content li .detail .product, #info #product_content li .no_detail .product {
  display: inline-block;
}
#info #other_content li .detail .other, #info #other_content li .no_detail .other {
  display: inline-block;
}
#info .tabs input:checked + .tab_item {
  background-color: #3589c3;
  color: #fff;
  border-left: none;
  border-right: none;
}
#info .infolist {
  border-top: solid 1px #ccc;
}
#info .infolist li {
  padding: 15px 0;
  border-bottom: solid 1px #ccc;
}
#info .infolist li p.date {
  margin-bottom: 10px;
}
#info .infolist li div {
  margin-bottom: 3px;
}
#info .infolist li .tri_b {
  padding-left: 1.6rem;
}
#info .infolist li .tri_b:before {
  left: 0;
}
#info .infolist + .btn {
  padding: 10px 50px;
}

.pager {
  text-align: center;
  margin: auto;
}
.pager li {
  display: inline-block;
  margin: 0 5px;
}
.pager li a, .pager li span {
  height: 42px;
  padding: 8px 10px;
  min-width: 42px;
  font-size: 1.6rem;
  border: solid 1px #999;
  color: #999;
  text-align: center;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
}
.pager li a.dot {
  pointer-events: none;
  border: none;
  display: none;
  min-width: auto;
}
.pager li span.current {
  color: #FFF;
  background: #3589c3;
  border: solid 1px #3589c3;
}

.yearlist {
  background: #e9f1f7;
  padding: 30px 30px 10px;
}

#contact_form sup, #contact_form .red, #contact_form .error, #contact_form .mw_wp_form .error {
  color: #d12525;
  top: auto;
}
#contact_form span.error {
  margin-top: 15px;
}
#contact_form .list {
  margin-top: 60px;
}
#contact_form .table {
  width: 100%;
}
#contact_form .table td, #contact_form .table th {
  border-left: none;
  border-right: none;
  padding: 25px 0;
}
#contact_form .table td:nth-child(1) {
  width: 40%;
}
#contact_form .table td:nth-child(2) {
  width: 60%;
}
#contact_form .table input[type=text],
#contact_form .table input[type=email],
#contact_form .table textarea,
#contact_form .table select {
  border: solid 1px #CCC;
  border-radius: 0;
  height: 40px;
  padding: 5px;
}
#contact_form .table textarea {
  height: auto;
  width: 100%;
}
#contact_form .table .address {
  margin-top: 15px;
}
#contact_form .table .horizontal-item {
  width: 130px;
  margin-left: 0;
  display: inline-block;
}
#contact_form .table .horizontal-item:nth-of-type(-n+3) {
  margin-bottom: 15px;
}
#contact_form .select.mw_wp_form_error .error {
  display: none;
}
#contact_form .select.mw_wp_form_error:after {
  display: block;
  content: "未選択の項目があります。";
  color: #d12525;
  margin-top: 5px;
}
#contact_form .text .step1,
#contact_form .text .step2,
#contact_form .back {
  display: none;
}
#contact_form .btn {
  width: 200px;
  display: inline-block;
  cursor: pointer;
}
#contact_form .mw_wp_form_input .text .step1 {
  display: block;
}
#contact_form .mw_wp_form_input .back {
  display: none;
}
#contact_form .mw_wp_form_error .text p.error {
  display: block;
}
#contact_form .mw_wp_form_error input[type=text],
#contact_form .mw_wp_form_error input[type=email],
#contact_form .mw_wp_form_error textarea,
#contact_form .mw_wp_form_error select {
  background: rgba(255, 0, 4, 0.1);
}
#contact_form .mw_wp_form_confirm .text .step2 {
  display: block;
}
#contact_form .mw_wp_form_confirm .btn {
  display: inline-block;
  margin: 30px 10px 0;
}
#contact_form .mw_wp_form_confirm .select-wrap:after {
  content: none;
}
#contact_form .select-wrap select {
  width: auto;
  padding-right: 40px;
}
#contact_form .select-wrap:after {
  right: 25px;
  position: relative;
  top: 0;
}

#orangebook .box1 .left {
  width: 74%;
  margin-right: 0;
}
#orangebook .box1 .right {
  width: 26%;
}
#orangebook .address {
  border: solid 1px #CCC;
  padding: 20px;
}
#orangebook .address h4 {
  border-bottom: solid 1px #ccc;
  padding-bottom: 3px;
}
#orangebook .address .tel {
  font-size: 3.4rem;
  font-weight: bold;
}

#transparency table td:first-child {
  width: 24rem;
  position: relative;
  padding-left: 2rem;
}
#transparency table td:first-child:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  left: 5px;
  top: 8px;
  background: #3589c3;
}
#transparency table td:first-child:after {
  content: "";
  display: table;
  height: 1px;
  width: calc(100% - 2rem);
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  position: absolute;
  z-index: 0;
  border-top: dotted 1px #666;
}
#transparency table td span {
  background: #fff;
  position: relative;
  display: inline-block;
  padding-right: 1rem;
  z-index: 1;
}
#transparency table td:last-child {
  padding-left: 1rem;
}
#transparency ol.attention {
  counter-reset: item;
  margin-top: 20px;
}
#transparency ol.attention li {
  position: relative;
  padding-left: 50px;
  color: #666;
}
#transparency ol.attention li:not(:last-child) {
  margin-bottom: 3px;
}
#transparency ol.attention li:before {
  counter-increment: item;
  content: "（注" counter(item) "）";
  position: absolute;
  left: 0;
}

#main section .search_product {
  padding: 40px 0;
  background: #f3f3f3;
  margin-bottom: 40px;
}
#main section .search_product h2 {
  border-bottom: solid 1px #ddd;
  border-image: none;
  font-size: 2.2rem;
}
#main section .search_product .search_box .left {
  width: 480px;
  float: left;
}
#main section .search_product .search_box .left .tac {
  width: 360px;
}
#main section .search_product .search_box .right {
  width: calc(100% - 480px);
  float: left;
}
#main section .search_product .words_list {
  background: #FFF;
  padding: 20px;
  width: 360px;
}
#main section .search_product .words_list li {
  float: left;
  margin-right: 10px;
}
#main section .search_product .words_list li a {
  display: inline-block;
  width: 56px;
  height: 56px;
  color: #FFF;
  background: #3589c3;
  padding: 10px;
  font-size: 2.4rem;
  text-align: center;
}
#main section .search_product .words_list li.count0 a {
  background: #666;
  pointer-events: none;
}
#main section .search_product .words_list li:nth-child(-n+5) {
  margin-bottom: 10px;
}
#main section .search_product .words_list li:nth-child(5n) {
  margin-right: 0;
}
#main section .search_product .input {
  position: relative;
}
#main section .search_product .input input[type=text] {
  border: solid 1px #CCC;
  border-radius: 0;
  background: #FFF;
  height: 40px;
  padding: 5px;
  width: calc(100% - 100px);
}
#main section .search_product .input select {
  border: solid 1px #CCC;
  border-radius: 0;
  background: #FFF;
  height: 40px;
  padding: 5px;
  width: calc(100% - 100px);
}
#main section .search_product .input input[type="submit"] {
  background-color: #3589c3;
  background-size: auto 24px;
  width: 80px;
  height: 40px;
  padding: 2px 5px;
  position: absolute;
  right: 0;
  color: #FFF;
  cursor: pointer;
}
#main section .search_product .input input[type="submit"]:hover {
  opacity: 0.8;
  transition: 0.2s ease;
}
#main section .search_product .text {
  margin-bottom: 30px;
}
#main section .search_product .select {
  position: relative;
}
#main section .search_product .select:after {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  position: relative;
  transform: rotate(45deg);
  border-right: solid 2px #666;
  border-bottom: solid 2px #666;
  transform: rotate(-45deg);
  top: -2px;
  right: 30px;
  transform: rotate(45deg);
}

#product.archive .page-title {
  background-image: url("../img/staff/product_ttl.jpg");
}
#product.archive .table {
  width: 100%;
}
#product.archive .table th, #product.archive .table td {
  word-break: break-all;
}
#product.archive .table td:nth-child(-n + 2),
#product.archive .table th:nth-child(-n + 2) {
  width: 340.5px;
}
#product.archive .table td:nth-child(n + 3),
#product.archive .table th:nth-child(n + 3) {
  width: 63px;
  text-align: center;
}
#product.archive .table th:nth-child(3),
#product.archive .table th:nth-child(9),
#product.archive .table td:nth-child(3),
#product.archive .table td:nth-child(9) {
  width: 42px;
}
#product.archive .table th .tate {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  height: 16.5rem;
  margin: auto;
  text-align: left;
  padding-top: 1rem;
}
#product.archive .table thead.fixed {
  position: fixed;
  top: 0;
  width: calc(100% - 30px);
  max-width: 1080px;
  margin: 0 auto;
  z-index: 1;
}
#product.archive .table tbody .progress {
  color: #d12525;
  margin-bottom: 0;
}
#product.archive .table tbody .not_drugprice span {
  display: inline-block;
  border: solid 1px #d12525;
  padding: 1px 5px;
  margin-bottom: 5px;
}
#product.archive .table .dummy_cell {
  display: none;
}
#product.archive .table .dummy_cell th {
  padding-top: 0;
  padding-bottom: 0;
}
#product.archive .table .dummy_cell th .min {
  height: 1px;
  overflow: hidden;
}
#product.archive .table .dummy_cell.fixed {
  display: table-row;
}

#product.single {
  /*
  .about .toggle dd {
  	display: block;
  }
  h3 { 
  	position: relative;
  	background: $lgray;
  	padding: 6px 35px 6px 15px;
  	span {
  		font-size: 1.4rem;
  		font-weight: normal;
  	}
  }
  h3:after { 
  	content: "";
  	width: 10px;
  	height: 10px;
  	display: inline-block;
  	position: absolute;
  	right: 15px;
  	top: 0;
  	margin: auto;
  	bottom: 0;
  	border-right: solid 2px $navy;
  	border-bottom: solid 2px $navy;
  	transform: rotate(45deg);
  	transition: 0.2s ease;
  }
  .open h3:after { 
  	transform: rotate(-135deg);
  }
  */
}
#product.single .progress {
  color: #d12525;
}
#product.single .not_drugprice span {
  display: inline-block;
  border: solid 1px #d12525;
  padding: 1px 5px;
}
#product.single h1 {
  border-bottom: solid 1px #ddd;
  font-size: 2.2rem;
  margin-bottom: 40px;
}
#product.single h1 span {
  font-size: 1.4rem;
  font-weight: normal;
  margin-left: 10px;
}
#product.single .table {
  width: 100%;
}
#product.single .table tbody th {
  font-size: 1.4rem;
  background: #f3f3f3;
  width: 300px;
}
#product.single .table tbody td {
  width: calc(100% - 300px);
}
#product.single .table tbody td .advice {
  display: block;
  font-size: 90%;
  line-height: 1.4;
}
#product.single .box .left {
  width: calc(50% - 40px);
  float: left;
}
#product.single .box .right {
  width: calc(50% - 40px);
  float: right;
}
#product.single .box .table tbody th {
  width: 220px;
}
#product.single .box .table tbody td {
  width: calc(100% - 220px);
}
#product.single .box section {
  padding: 0;
}
#product.single .photo img {
  height: 100px;
  margin: 5px;
}
#product.single .photo .gallery {
  cursor: pointer;
}
#product.single .photo .gallery:hover {
  opacity: 0.7;
}
#product.single h3 span {
  font-weight: normal;
  font-size: 1.4rem;
}

.box_list li {
  width: calc(33.3% - 20px);
  float: left;
  margin: 0 30px 30px 0;
}
.box_list li a.box_btn {
  font-weight: normal;
  margin: 0;
  background: none;
  color: #000;
  border: solid 2px #3589c3;
}
.box_list li a.box_btn h3 {
  border-left: none;
  font-size: 1.8rem;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.box_list li a.box_btn .tri_b:before {
  left: 0;
}
.box_list li a.box_btn:before {
  content: none;
}
.box_list li:nth-child(3n) {
  margin-right: 0;
}

.banner_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.banner_list li {
  width: calc(50% - 15px);
}
.banner_list li:nth-child(odd) {
  margin-right: 30px;
}
.banner_list li:nth-child(n+3) {
  margin-top: 20px;
}

#corporate li {
  float: left;
  text-align: left;
  width: 32%;
  margin-bottom: 2%;
  margin-right: 2%;
  background: right center / contain no-repeat;
}
#corporate li a {
  border: 1px solid #ccc;
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 25px 20px 25px;
}
#corporate li a span {
  display: inline-block;
  padding-left: 15px;
  position: relative;
  z-index: 2;
}
#corporate li a span:after {
  content: "";
  display: inline-block;
  background: rgba(255, 255, 255, 0.5);
  filter: blur(3px);
  position: absolute;
  left: 20px;
  top: 0;
  margin: auto;
  bottom: 0;
  z-index: 0;
  width: calc(100% - 20px);
  height: 22px;
  z-index: -1;
}
#corporate li a .tri_b:before {
  left: 0;
}
#corporate #contact_form li {
  float: none;
  width: 100%;
  margin: 5px 0;
  background: none;
}
#corporate li:nth-child(3n) {
  margin-right: 0;
}
#corporate li:nth-child(1) {
  background-image: url("../img/corporate/list01.jpg");
}
#corporate li:nth-child(2) {
  background-image: url("../img/corporate/list02.jpg");
}
#corporate li:nth-child(3) {
  background-image: url("../img/corporate/list03.jpg");
}
#corporate li:nth-child(4) {
  background-image: url("../img/corporate/list04.jpg");
}
#corporate li:nth-child(5) {
  background-image: url("../img/corporate/list05.jpg");
}
#corporate li:nth-child(6) {
  background-image: url("../img/corporate/list06.jpg");
}
#corporate li:nth-child(7) {
  background-image: url("../img/corporate/list07.jpg");
}
#corporate li:nth-child(8) {
  background-image: url("../img/corporate/list08.jpg");
}
#corporate li:nth-child(9) {
  background-image: url("../img/corporate/list09.jpg");
  text-shadow: 0 0 3px #fff;
}
#corporate li:nth-child(10) {
  background-image: url("../img/corporate/list10.jpg");
}
#corporate li:nth-child(11) {
  background-image: url("../img/corporate/list11.jpg");
}

#careers .table td, #careers .table th {
  padding: 15px 0;
  border-left: none;
  border-right: none;
}
#careers .table th {
  background: none;
  width: 22rem;
}
#careers .table td .btn {
  display: inline-block;
  width: 140px;
  margin: 10px 0 0;
}
#careers ul {
  display: flex;
  flex-wrap: wrap;
}
#careers ul li {
  width: calc(50% - 15px);
}
#careers ul li:nth-child(n+3) {
  margin-top: 30px;
}
#careers ul li:nth-child(odd) {
  margin-right: 30px;
}
#careers ul li a {
  display: block;
  border: solid 2px #084a87;
  padding: 20px 10px;
  position: relative;
  font-size: 2.1rem;
  text-align: center;
  color: #084a87;
  font-weight: bold;
}
#careers ul li a:hover {
  opacity: 1;
  transition-duration: 0.2s;
  background: #084a87;
  color: #FFF;
}
#careers ul li a:hover dt {
  border-bottom: dotted 3px #fff;
  color: #fff;
}
#careers ul li a:after {
  content: "";
  transform: rotate(45deg);
  width: 0;
  height: 0;
  position: absolute;
  right: -2px;
  bottom: -7px;
  margin: auto;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  z-index: 1;
  display: inline-block;
  color: transparent;
  border-color: transparent transparent transparent #084a87;
  transform: rotate(45deg);
}
#careers ul li a .more {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}

#philosophy video {
  cursor: pointer;
  transition: 0.2s ease;
}
#philosophy video:hover {
  opacity: 0.8;
}
#philosophy h4 {
  font-size: 2.4rem;
  letter-spacing: 1px;
  margin-top: 20px;
}
#philosophy .think {
  /*
  background:  url("../img/corporate/map_bg.png") center / contain no-repeat;
  padding: 40px 0;
  table {
  	margin: auto;
  	th , td { 
  		padding: 15px 30px;
  		font-family: serif;
  	}
  	th { 
  		text-align: left;
  		font-size: 1.8rem;
  	}
  	td { 
  		font-size: 3rem;
  		letter-spacing: 1px;
  		color: $navy;
  	}
  }
  */
}
#philosophy h5 {
  text-align: center;
}
#philosophy section p span {
  word-break: keep-all;
  display: inline-block;
}
#philosophy .tar {
  font-family: "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif";
  font-size: 110%;
}
#philosophy .tar span strong {
  position: relative;
  top: -4px;
  display: inline-block;
  margin-top: 5px;
}
#philosophy .vision .box1 .left {
  width: 74%;
  margin-right: 0;
}
#philosophy .vision .box1 .right {
  width: 26%;
  text-align: center;
}
#philosophy .vision .box2 .right {
  width: 74%;
  margin-right: 0;
}
#philosophy .vision .box2 .left {
  width: 26%;
  text-align: center;
}

#staff .staff_top {
  display: flex;
  justify-content: space-between;
}
#staff .staff_top > div:nth-child(1) {
  width: 40%;
}
#staff .staff_top > div:nth-child(2) {
  width: 60%;
  max-width: 602px;
}
#staff .staff_top .thumbnail {
  margin-top: 30px;
  padding: 0 30px;
}
#staff .staff_top .thumbnail .slick-slide {
  margin: 0 10px;
  filter: brightness(0.7);
  transition: 0.2s ease;
  cursor: pointer;
}
#staff .staff_top .thumbnail .slick-slide.slick-current {
  filter: brightness(1);
}
#staff .staff_top .thumbnail .slick-next {
  right: 0;
}
#staff .staff_top .thumbnail .slick-prev {
  left: 0;
}
#staff .box_list {
  display: flex;
  justify-content: space-between;
}
#staff .box_list:after {
  content: none;
}
#staff .box_list li {
  float: none;
  margin: 0;
}
#staff .box_list li a.box_btn {
  color: #fff;
  border: none;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  margin: auto;
  max-width: 300px;
  position: relative;
}
#staff .box_list li a.box_btn h4 {
  margin-bottom: 0;
  padding: 0;
  font-size: 1.4rem;
}
#staff .box_list.top {
  flex-wrap: wrap;
}
#staff .box_list.top li {
  margin-top: 10px;
  width: calc(50% - 6px);
  background-repeat: no-repeat;
  background-position: right -13px bottom -13px;
  background-size: 80px 80px;
}
#staff .box_list.top li a.box_btn {
  height: 70px;
  padding: 5px;
}
#staff .box_list.top li.seizai {
  background-color: #f1a52d;
  background-image: url("../img/staff/seizai.svg");
}
#staff .box_list.top li.genyaku {
  background-color: #cb9495;
  background-image: url("../img/staff/genyaku.svg");
}
#staff .box_list.top li.supply {
  background-color: #54964c;
  background-image: url("../img/staff/supply.svg");
  background-position: right -10px bottom -15px;
}
#staff .box_list.top li.generic {
  background-color: #5781ba;
  background-image: url("../img/staff/generic.svg");
  background-position: right -10px bottom -10px;
}
#staff .box_list.top li.supply-info {
  background-color: #486a9d;
}
#staff .box_list.top li.gxp {
  background-color: #9C88B6;
  background-image: url("../img/staff/gxp.svg");
  background-position: right -10px bottom -20px;
}
#staff .box_list.bottom li {
  margin: 0 20px;
}
#staff .box_list.bottom li a.box_btn {
  background: no-repeat right bottom/80px;
}
#staff .box_list.bottom li:nth-child(1) a {
  background-color: #487d9d;
  background-image: url("../img/staff/bottom1.png");
  background-position: right bottom;
}
#staff .box_list.bottom li:nth-child(2) a {
  background-color: #486a9d;
  background-image: url("../img/staff/bottom2.png");
  background-position: right bottom;
}
#staff .box_list.bottom li:nth-child(3) a {
  background-color: #8a7aa5;
  background-image: url("../img/staff/bottom3.png");
  background-position: right bottom;
}
#staff .box_list.bottom li:nth-child(4) a {
  background-color: #6d819f;
  background-image: url("../img/staff/bottom4.png");
  background-position: right bottom -10px;
}
#staff .slick-slide {
  border: solid 1px #ccc;
}
#staff .slick-slide img {
  width: 100%;
}
#staff .three_list.links li a.tri_b {
  border-bottom: dotted 1px #ddd;
  display: block;
  padding: 5px 0 5px 20px;
}
#staff .three_list.links li a.tri_b:before {
  left: 0;
}
@media screen and (min-width: 768px) {
  #staff .tel {
    display: flex;
    justify-content: space-between;
  }
  #staff .tel > div {
    width: calc(50% - 30px);
  }
}
#staff .tel h4 {
  font-size: 2.1rem;
  margin-bottom: 10px;
  margin-top: 30px;
}
#staff .tel h5 {
  font-size: 1.6rem;
  margin-bottom: 0;
}
#staff .tel hr {
  border: none;
  border-bottom: solid 1px #ccc;
  margin: 20px 0;
}
#staff .tel p {
  margin-bottom: 0;
  line-height: 2;
}
#staff .tel .number {
  font-size: 3.4rem;
  font-weight: bold;
  margin: 2px 0 5px;
}
#staff .tel .number:before {
  content: "";
  display: inline-block;
  background: url("../img/icon/tel.png") center/contain no-repeat;
  width: 36px;
  height: 24px;
  position: relative;
  margin-right: 10px;
}
#staff .tel .btn.mail {
  width: 300px;
  height: 60px;
  padding: 20px 20px 20px 50px;
  border-radius: 8px;
  font-size: 1.6rem;
  background: #3589c3;
  color: #fff;
  margin-top: 30px;
}
#staff .tel .btn.mail:before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  left: 45px;
  border: none;
  background: url("../img/staff/mail.svg") no-repeat center/contain;
  top: 0;
  bottom: 0;
  margin: auto;
}
#staff .tel .toggle {
  margin-top: 30px;
}
#staff .tel .toggle dt h5 {
  display: inline-block;
  position: relative;
  padding-right: 30px;
}
#staff .tel .toggle dt h5:after {
  content: "";
  width: 10px;
  height: 10px;
  background: center / contain no-repeat;
  display: inline-block;
  position: absolute;
  right: 7px;
  left: auto;
  top: 5px;
  border-right: solid 2px #fff;
  border-bottom: solid 2px #fff;
  transform: rotate(45deg);
  transition: 0.2s ease;
  z-index: 2;
}
#staff .tel .toggle dt h5:before {
  content: "";
  width: 24px;
  height: 24px;
  background: #3589c3;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  right: 0;
  z-index: 1;
}
#staff .tel .toggle dd .number:before {
  background: none;
}
#staff .tel .toggle.open dt h5:after {
  transform: rotate(-135deg);
  top: 8px;
}

@media screen and (min-width: 768px) {
  #staff .tel {
    min-width: 700px;
    padding-top: 20px;
  }
}
.english h2, .english .h2 {
  color: #3589c3;
}
.english #top #mainvisual {
  font-family: "Hiragino Mincho Pro", "serif";
  color: #084a87;
  background: url("../img/top/english_mv.jpg") center/cover no-repeat;
  padding: 100px 0;
  height: 540px;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.7);
}
.english #top #mainvisual h2 {
  border: none;
  padding-bottom: 0;
  color: #084a87;
}
.english #top #mainvisual h3 {
  border-left: none;
  padding-left: 0;
}
.english #top #point ul:nth-child(2) {
  margin-top: 50px;
}
.english .breadcrumb .home {
  display: none;
}
.english .breadcrumb .home + .arrow {
  display: none;
}
.english .breadcrumb .inner span:nth-child(3) a:before {
  content: "TOP";
}
.english .breadcrumb .inner span:nth-child(3) a span {
  display: none;
}
.english #parkinson .profile .left {
  float: left;
  width: 130px;
}
.english #parkinson .profile .right {
  float: right;
  width: calc(100% - 160px);
}
.english #business .network {
  margin: 0 auto 20px;
  width: 614px;
  height: 370px;
  background: url("../img/english/business/network/network.jpg") no-repeat left top;
  position: relative;
}
.english #business .network ul {
  position: relative;
  left: 0;
  top: 0;
}
.english #business .network ul li {
  position: absolute;
  left: 0;
  top: 0;
}
.english #business .network ul li ul li {
  top: 8px;
}
.english #business .network ul li#cbc {
  left: 32px;
  top: 164px;
}
.english #business .network ul li#cbc a {
  margin-left: 11px;
}
.english #business .network ul li#cbc ul li a {
  margin-left: 0;
}
.english #business .network ul li#inabata {
  left: 402px;
  top: 164px;
}
.english #business .network ul li#inabata a {
  margin-left: 11px;
}
.english #business .network ul li#inabata ul li a {
  margin-left: 0;
}
.english #business .network ul li#itcchem {
  left: 160px;
  top: 297px;
}
.english #message video {
  cursor: pointer;
  transition: 0.2s ease;
}
.english #message video:hover {
  opacity: 0.8;
}
.english #message .box2 .left {
  width: 75%;
}
.english #message .box2 .right {
  width: 25%;
  text-align: right;
}
.english #message .tar {
  font-family: "Century", "serif";
  font-size: 110%;
}
.english #message .tar strong {
  font-size: 160%;
}
.english #governance .table, .english #operation .table {
  width: 100%;
}
.english #governance .table th, .english #governance .table td, .english #operation .table th, .english #operation .table td {
  border-right: none;
  border-left: none;
  padding: 25px 0;
  font-size: 1.6rem;
}
.english #governance .table th p, .english #operation .table th p {
  font-size: 1.4rem;
  font-weight: normal;
  padding: 5px 0 0;
}
.english #governance .table img, .english #operation .table img {
  float: right;
  width: 120px;
}
.english #corporate .table {
  width: 100%;
}
.english #corporate .table th, .english #corporate .table td {
  border-right: none;
  border-left: none;
  padding: 25px 0;
  font-size: 1.6rem;
}
.english #office dt {
  cursor: default;
  pointer-events: none;
}
.english #office dt h3:after {
  content: none;
}
.english #office dd {
  display: block !important;
}
.english #office dd .left {
  width: 58%;
}
.english #office dd .left .train {
  float: none;
  margin: 0 0 20px;
  width: 100%;
}
.english #office dd .left .car {
  float: none;
  width: 100%;
}
.english #office dd .left h5 {
  margin: 0 0 10px;
}
.english #office dd .right {
  width: 38%;
}
.english #office dd .right .three_list {
  margin-top: 0;
}
.english #office dd .right .three_list li {
  float: none;
  width: 100%;
  margin: 0 0 15px;
}
.english #sitemap .left {
  width: calc(50% - 20px);
  margin-right: 40px;
}
.english #sitemap .right {
  width: calc(50% - 20px);
  float: left;
}

#old_content .page-title {
  display: none;
}
#old_content #main iflame {
  border: none !important;
  margin: auto;
}

#schedule .table1 {
  width: 100%;
}
#schedule .table1 td {
  border: solid 1px #ccc;
  padding: 10px;
}
#schedule .table1 tr:nth-child(1) td {
  text-align: center;
  font-weight: bold;
  background: #efefef;
}
#schedule .table1 tr:nth-child(1) td:nth-child(n+3) {
  width: 8%;
}
#schedule .table1 .yellow .fill {
  background: #efff00;
}
#schedule .table1 .green .fill {
  background: #45bd49;
}
#schedule ol li:nth-child(n+2) {
  margin-top: 50px;
}
#schedule .table2 {
  width: 100%;
}
#schedule .table2 tr:nth-child(1) td {
  text-align: center;
  font-weight: bold;
  background: #efefef;
}
#schedule .table2 tr:nth-child(n+2) td:nth-child(n+2) {
  text-align: right;
}
#schedule .table2 td {
  border: solid 1px #ccc;
  width: 25%;
  padding: 10px;
}

@media print {
  #staff .box_list li {
    min-height: 122px;
  }
}
.ohr-imatinib-wrap {
  padding-top: 60px;
}
.ohr-imatinib-wrap .ohr-imatinib-ttl {
  margin-bottom: 24px;
  padding-bottom: 11px;
}
.ohr-imatinib-wrap .ohr-imatinib-simulate {
  padding: 26px 0 36px;
  border: 1px solid #d7d7d7;
}
.ohr-imatinib-wrap .ohr-imatinib-simulate .ohr-imatinib-simulate-inner {
  width: 648px;
  margin: 0 auto;
}
.ohr-imatinib-wrap .ohr-imatinib-simulate .ohr-imatinib-simulate-inner .ohr-imatinib-select-box {
  position: relative;
}
.ohr-imatinib-wrap .ohr-imatinib-simulate .ohr-imatinib-simulate-inner .ohr-imatinib-select-box:not(:first-child) {
  margin-top: 76px;
}
.ohr-imatinib-wrap .ohr-imatinib-simulate .ohr-imatinib-simulate-inner .ohr-imatinib-select-box:not(:first-child):before {
  position: absolute;
  top: -46px;
  left: 50%;
  content: "";
  display: block;
  width: 6px;
  height: 40px;
  background: #000000;
}
.ohr-imatinib-wrap .ohr-imatinib-simulate .ohr-imatinib-simulate-inner .ohr-imatinib-select-box:not(:first-child):after {
  position: absolute;
  top: -46px;
  left: 50%;
  content: "";
  display: block;
  width: 6px;
  height: 40px;
  background: #000000;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.ohr-imatinib-wrap .ohr-imatinib-simulate .ohr-imatinib-simulate-inner .ohr-imatinib-select-box .ohr-imatinib-select-ttl {
  position: relative;
  font-size: 18px;
  margin-bottom: 14px;
  padding: 4px 0 0 12px;
}
.ohr-imatinib-wrap .ohr-imatinib-simulate .ohr-imatinib-simulate-inner .ohr-imatinib-select-box .ohr-imatinib-select-ttl:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #f2b410;
}
.ohr-imatinib-wrap .ohr-imatinib-simulate .ohr-imatinib-simulate-inner .ohr-imatinib-select-box .ohr-imatinib-select {
  position: relative;
  background: #f6f6f6;
}
.ohr-imatinib-wrap .ohr-imatinib-simulate .ohr-imatinib-simulate-inner .ohr-imatinib-select-box .ohr-imatinib-select:after {
  position: absolute;
  top: 50%;
  right: 10px;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid black;
  z-index: 10;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.ohr-imatinib-wrap .ohr-imatinib-simulate .ohr-imatinib-simulate-inner .ohr-imatinib-select-box .income02, .ohr-imatinib-wrap .ohr-imatinib-simulate .ohr-imatinib-simulate-inner .ohr-imatinib-select-box .income03 {
  display: none;
}
.ohr-imatinib-wrap .radio-box {
  display: flex;
}
.ohr-imatinib-wrap .radio-box label {
  display: flex;
  align-items: center;
  margin-right: 16px;
}
.ohr-imatinib-wrap .radio-box label [type="radio"] {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #fff;
}
.ohr-imatinib-wrap .radio-box label [type="radio"] + span {
  margin-left: 5px;
  font-size: 18px;
}
.ohr-imatinib-wrap .ohr-imatinib-prescription {
  display: none;
  margin-top: 10px;
}
.ohr-imatinib-wrap .ohr-imatinib-action-box {
  margin-top: 29px;
}
.ohr-imatinib-wrap .ohr-imatinib-action-box .ohr-imatinib-action-inner {
  width: 434px;
  margin: 0 auto;
}
.ohr-imatinib-wrap .ohr-imatinib-action-box .ohr-imatinib-action-inner button {
  color: #ffffff;
  width: 200px;
  font-size: 20px;
  padding: 8px 0;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.ohr-imatinib-wrap .ohr-imatinib-action-box .ohr-imatinib-action-inner button:first-child {
  margin-right: 28px;
}
.ohr-imatinib-wrap .ohr-imatinib-action-box .ohr-imatinib-action-inner button:hover {
  opacity: 1;
}
.ohr-imatinib-wrap .ohr-imatinib-action-box .ohr-imatinib-action-inner button.disabled {
  background: #808080;
  background: -moz-linear-gradient(top, #808080 51%, #777777 51%);
  background: -webkit-linear-gradient(top, #808080 51%, #777777 51%);
  background: linear-gradient(to bottom, #808080 51%, #777777 51%);
}
.ohr-imatinib-wrap .ohr-imatinib-action-box .ohr-imatinib-action-inner button.active {
  background: #21bba2;
  background: -moz-linear-gradient(top, #21bba2 51%, #20a892 51%);
  background: -webkit-linear-gradient(top, #21bba2 51%, #20a892 51%);
  background: linear-gradient(to bottom, #21bba2 51%, #20a892 51%);
  cursor: pointer;
}
.ohr-imatinib-wrap .ohr-imatinib-result {
  position: relative;
  margin: 60px 0 18px;
  background: #f2f8ff;
}
.ohr-imatinib-wrap .ohr-imatinib-result:before {
  position: absolute;
  top: -42px;
  left: 50%;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 30px solid #a6a6a6;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.ohr-imatinib-wrap .ohr-imatinib-result div {
  padding: 0px 24px;
  padding-bottom: 21px;
}
.ohr-imatinib-wrap .ohr-imatinib-result div:last-child {
  background: #fffdeb;
}
.ohr-imatinib-wrap .ohr-imatinib-result div h4 {
  position: relative;
  padding: 21px 0 0 36px;
}
.ohr-imatinib-wrap .ohr-imatinib-result div h4:before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 3px solid #519cdf;
  transform: translateY(calc(-50% + 10.5px));
  -webkit-transform: translateY(calc(-50% + 10.5px));
  -moz-transform: translateY(calc(-50% + 10.5px));
  -ms-transform: translateY(calc(-50% + 10.5px));
  -o-transform: translateY(calc(-50% + 10.5px));
}
.ohr-imatinib-wrap .ohr-imatinib-result div h4 span {
  font-size: 32px;
  margin-right: 10px;
}
.ohr-imatinib-wrap .ohr-imatinib-result div table {
  border: 1px solid #ddd;
  width: 100%;
}
.ohr-imatinib-wrap .ohr-imatinib-result div table tr {
  border: 1px solid #ddd;
}
.ohr-imatinib-wrap .ohr-imatinib-result div table tr:first-child {
  background: #fff;
}
.ohr-imatinib-wrap .ohr-imatinib-result div table tr td {
  font-size: 18px;
  border: 1px solid #ddd;
  width: 50%;
  padding: 17px 14px;
}
.ohr-imatinib-wrap .ohr-imatinib-result div table tr td:nth-child(2) {
  text-align: center;
}
.ohr-imatinib-wrap .ohr-imatinib-result div table tr td .self_pay, .ohr-imatinib-wrap .ohr-imatinib-result div table tr td .difference {
  font-size: 24px;
  font-weight: bold;
  margin-right: 6px;
}
.ohr-imatinib-wrap .ohr-imatinib-result div table tr td p {
  position: relative;
  font-size: 13px;
  text-align: left;
  padding-left: 14px;
  margin: 0;
}
.ohr-imatinib-wrap .ohr-imatinib-result div table tr td p:before {
  position: absolute;
  content: "※";
  top: 0;
  left: 0;
}
.ohr-imatinib-wrap .ohr-imatinib-result div table .diff_row {
  background: #f6f6f6;
}
.ohr-imatinib-wrap .ohr-imatinib-remarks {
  margin-bottom: 76px;
}
.ohr-imatinib-wrap .ohr-imatinib-remarks h4 {
  margin-bottom: 0;
}
.ohr-imatinib-wrap .ohr-imatinib-remarks .remarks_box {
  display: none;
}
.ohr-imatinib-wrap .ohr-imatinib-remarks .remarks04 span {
  padding-left: 14px;
}

.payselect {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  flex-wrap: wrap;
}
.payselect > button {
  display: flex;
  padding: 10px;
  align-items: center;
  justify-content: center;
  font-size: 80%;
  border: solid 1px #dcdcdc;
  margin: 0;
  background: #fff;
  min-height: 80px;
  position: relative;
}
.payselect > button:focus:after, .payselect > button:hover:after {
  position: absolute;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  top: -3px;
  left: -3px;
  content: "";
  display: block;
  border: 3px solid #ed7836;
  border-radius: 0.25rem;
}
.payselect > button span {
  font-size: 70%;
  transform: scale(0.8);
  margin: 0 -20px -5px;
  line-height: 0.9;
}
.payselect > button img {
  width: 100%;
  max-width: 200px;
}
.payselect > button:nth-child(1) {
  width: 100%;
}
.payselect > button:nth-child(1) img {
  max-width: calc(100% - 18rem);
  margin-right: 5px;
  min-width: 160px;
}
.payselect > button:nth-child(n+2) {
  flex-wrap: wrap;
  margin-top: 10px;
  width: calc(33.33% - 8px);
}

.info_search {
  margin-bottom: 20px;
  background: #e9f1f7;
  padding: 20px;
}
.info_search .input {
  position: relative;
}
.info_search .input input[type=text] {
  border: solid 1px #ccc;
  border-radius: 0;
  background: #FFF;
  height: 40px;
  padding: 5px;
  width: calc(100% - 100px);
}
.info_search .input select {
  border: solid 1px #CCC;
  border-radius: 0;
  background: #FFF;
  height: 40px;
  padding: 5px;
  width: calc(100% - 100px);
}
.info_search .input input[type="submit"] {
  background-color: #3589c3;
  background-size: auto 24px;
  width: 80px;
  height: 40px;
  padding: 2px 5px;
  position: absolute;
  right: 0;
  color: #FFF;
  cursor: pointer;
}
.info_search .input input[type="submit"]:hover {
  opacity: 0.8;
  transition: 0.2s ease;
}
.info_search dl {
  display: flex;
  margin-top: 15px;
}
.info_search dl dt {
  font-weight: bold;
  padding-right: 5px;
}
.info_search dl dd label {
  display: inline-block;
  margin-left: 10px;
}
.info_search dl dd label input[type='checkbox'] {
  position: relative;
  margin-right: 3px;
  top: 1px;
}

#supply-info .link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
#supply-info .link-list li {
  width: calc(50% - 20px);
}
#supply-info .link-list li a:not(.blue) {
  background: #3589c3;
  color: #fff;
  display: flex;
  justify-content: center;
  min-height: 74px;
  text-align: center;
  padding: 10px;
  font-size: 1.8rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #supply-info .link-list li {
    width: 100%;
  }
  #supply-info .link-list li a:not(.blue) {
    font-size: 1.6rem;
  }
  #supply-info .link-list li a br {
    display: none;
  }
}

.gridimg {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-left: auto;
  margin-right: auto;
}
.gridimg_s {
  grid-template-columns: repeat(4, 1fr);
}
.gridimg.seminar {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .gridimg {
    grid-template-columns: 100%;
    max-width: calc(100% - 40px);
  }
  .gridimg_s {
    grid-template-columns: 100%;
    gap: 0;
  }
}
.gridimg > div {
  position: relative;
}
.gridimg h4 {
  text-align: center;
  margin-bottom: 10px;
  color: #fff;
  padding: 10px;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
  background: rgba(22, 43, 95, 0.85);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .gridimg.seminar {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
  }
  .gridimg.seminar h4 {
    padding: 3px;
    font-size: 1.4rem;
    width: 200%;
    z-index: 2;
  }
  .gridimg.seminar > div {
    order: 1;
  }
  .gridimg.seminar > div:nth-child(2) {
    order: 3;
  }
  .gridimg.seminar > div:nth-child(3) {
    order: 5;
  }
  .gridimg.seminar > div:nth-child(4) {
    order: 2;
  }
  .gridimg.seminar > div:nth-child(5) {
    order: 4;
  }
  .gridimg.seminar > div:nth-child(6) {
    order: 6;
  }
}

.accordion_dl {
  border-radius: 10px;
  overflow: hidden;
  border: solid 1px #c3c3c3;
}
.accordion_dl dt {
  font-weight: bold;
  padding: 10px 20px;
  font-size: 1.8rem;
  cursor: pointer;
  position: relative;
  /*
  &:last-of-type {
    border-bottom: none;
  }
  */
}
.accordion_dl dt:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  transition: 0.2s ease;
  transform: rotate(90deg);
}
.accordion_dl.open dt:after {
  transform: rotate(270deg);
}
.accordion_dl dd {
  display: none;
  padding: 20px;
  font-size: 1.3rem;
  border-top: solid 1px #c3c3c3;
  background: #F0F0F0;
  /*
  &:last-of-type {
    border-bottom: none;
    border-top: solid 1px #c3c3c3;
  }
  */
}
.accordion_dl dd a {
  display: block;
  text-align: right;
  margin-top: 15px;
  font-size: 1.2rem;
  color: #666;
}
.accordion_dl dd a:before {
  content: "詳細はこちら";
}
.accordion_dl dd a:after {
  content: ">";
  margin-left: 10px;
  transform: rotate(90deg) scale(1, 1.5) translate(1px, 0px);
  display: inline-block;
}
.accordion_dt-1 {
  /* GLP */
  color: #BF1264;
}
.accordion_dt-1:after {
  border-color: transparent transparent transparent #BF1264;
}
.accordion_dt-2 {
  /* GCP */
  color: #AE229D;
}
.accordion_dt-2:after {
  border-color: transparent transparent transparent #AE229D;
}
.accordion_dt-3 {
  /* 治験薬GMP・GMP */
  color: #7030A0;
}
.accordion_dt-3:after {
  border-color: transparent transparent transparent #7030A0;
}
.accordion_dt-4 {
  /* GDP・GQP */
  color: #5D2CA4;
}
.accordion_dt-4:after {
  border-color: transparent transparent transparent #5D2CA4;
}
.accordion_dt-5 {
  /* GVP */
  color: #3C3A9D;
}
.accordion_dt-5:after {
  border-color: transparent transparent transparent #3C3A9D;
}
.accordion_dt-6 {
  /* GPSP */
  color: #4D1A52;
}
.accordion_dt-6:after {
  border-color: transparent transparent transparent #4D1A52;
}
@media screen and (max-width: 767px) {
  .accordion_dl {
    border-radius: 0;
    border-bottom: none;
  }
  .accordion_dl dt {
    padding: 10px 20px;
    font-size: 1.6rem;
    border-bottom: none;
  }
  .accordion_dl dd a {
    margin-top: 10px;
  }
}

.linkgrid {
  position: relative;
  display: inline-block;
}
.linkgrid > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0px;
  position: absolute;
  aspect-ratio: 1 / 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  height: calc(100% - 2%);
  overflow: hidden;
}
.linkgrid > div a {
  display: block;
  cursor: pointer;
  transition: 0.2s ease;
}
.linkgrid > div a:hover {
  background: rgba(255, 255, 255, 0.5);
}

.linkcircle a {
  position: absolute;
  display: inline-block;
  aspect-ratio: 1;
  width: 14%;
  border-radius: 50%;
  transition: 0.2s ease;
}
.linkcircle a:hover {
  background: rgba(255, 255, 255, 0.5);
}
.linkcircle a.management {
  left: 0.5%;
  top: 40%;
}
.linkcircle a.roundtable {
  right: 10%;
  top: 0.7%;
}
.linkcircle a.seminar {
  right: 2.7%;
  top: 26.7%;
}
.linkcircle a.newsletter {
  right: 2.3%;
  top: 53.7%;
}

@media screen and (max-width: 767px) {
  .gridimg_s div:first-child .accordion_dl {
    border-radius: 10px 10px 0 0;
  }
  .gridimg_s div:last-child .accordion_dl {
    border-radius: 0 0 10px 10px;
    border-bottom: solid 1px #c3c3c3;
  }
  .gridimg_s div:last-child .accordion_dl dt {
    border-bottom: solid 1px #c3c3c3;
  }
  .gridimg_s div:last-child .accordion_dl dd {
    border-top: none;
  }
}
