@charset "UTF-8";
body {
  line-height: 1.5;
  font-size: 100%;
}

/* ==================================
  .inner
 ==================================*/
.inner {
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
}

/* ==================================
   ヘッダー
 ==================================*/
#header {
  height: 54px;
  background: #faf9f9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  -webkit-box-shadow: 0 4px 8px -3px rgba(17, 17, 17, 0.06);
  box-shadow: 0 4px 8px -3px rgba(17, 17, 17, 0.06);
  position: fixed;
  top: 0;
  -webkit-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  z-index: 1;
}

#header .logo {
  width: 147px;
  margin-left: 10px;
  margin-top: -5px;
}

#header .logo img {
  width: 100%;
}

.head-animation {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

/* ==================================
   #グローバルナビ
 ==================================*/
#gloval-nav {
  background: #a03551;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 24px;
  opacity: 0;
  /* transition: opacity .6s ease, visibility .6s ease; */
}

.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}

#nav-toggle {
  position: fixed;
  top: 0;
  right: 0;
  height: 54px;
  width: 54px;
  cursor: pointer;
}

#nav-toggle div {
  position: relative;
  width: 24px;
}

#nav-toggle span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #333;
  position: absolute;
  /* transition: transform .6s ease-in-out, top .5s ease; */
  border-radius: 5px;
}

#nav-toggle span:nth-child(1) {
  top: 12px;
  left: 14px;
}

#nav-toggle span:nth-child(2) {
  top: 20px;
  left: 14px;
}

#nav-toggle span:nth-child(3) {
  top: 28px;
  left: 14px;
}

#nav-toggle span:nth-child(4) {
  width: 4em;
  height: auto;
  display: inline-block;
  top: 33px;
  left: 7px;
  font-size: 10px;
  background: transparent;
}

#nav-toggle span:hover span:nth-child(1) {
  top: 4px;
}

#nav-toggle span:hover span:nth-child(3) {
  top: 23px;
}

.open #nav-toggle span {
  background: #fff;
}

.open #nav-toggle span:nth-child(1) {
  top: 26px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.open #nav-toggle span:nth-child(2) {
  top: 26px;
  width: 0;
  left: 50%;
}

.open #nav-toggle span:nth-child(3) {
  top: 26px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.open #nav-toggle span:nth-child(4) {
  display: none;
}

.close #gloval-nav {
  display: none;
  visibility: hidden;
}

/* z-index */
#nav-toggle {
  z-index: 10000;
}

#container {
  z-index: 900;
}

#gloval-nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 10% 0;
  -webkit-transition: color .6s ease;
  transition: color .6s ease;
  font-size: 24px;
}

#gloval-nav a:hover {
  color: #fff;
}

#gloval-nav ul {
  list-style: none;
}

#gloval-nav li {
  opacity: 0;
}

/* open */
.open {
  overflow: hidden;
}

.open #gloval-nav li {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  /* transition: transform 1s ease, opacity .9s ease; */
}

/* ==================================
   キービジュアル
 ==================================*/
#Keyvisual h1 {
  width: 100%;
  height: 82px;
}

#Keyvisual h1 img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

/* ==================================
   #container
 ==================================*/
#container {
  padding-top: 54px;
}

#container .inner section {
  margin: 24px 0 48px;
}

#container .inner section > h2 {
  display: table;
  margin: 0 auto 32px;
  font-size: 150%;
  position: relative;
}

#container .inner section > h2::after {
  content: "";
  width: 60px;
  height: 5px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-radius: 5px;
  background: #C43958;
}

#container .inner h2 {
  text-align: center;
  margin: 32px 0 8px;
  font-size: 125%;
  line-height: 1.5;
}

#container .inner p {
  margin-bottom: 1em;
  overflow: hidden;
}

#container .inner p::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.5) * 0.4em);
}

#container .inner p::after {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
}

#container .inner .lead {
  margin: 24px 0 24px;
}

#container .inner .first_sentence {
  margin-bottom: 1em;
  font-weight: 600;
}

#container .inner .first_letter {
  font-weight: 600;
}

/* ==================================
　本日のデータ   
==================================*/
#today_data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#today_data a {
  position: relative;
  width: calc(50% - 3px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-height: 260px;
}

#today_data a::before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  content: "\f00e";
  font-weight: 900;
  font-size: 18px;
  padding: 6px 8px 18px;
  line-height: 1;
  position: absolute;
  top: 0;
  right: 0;
  color: #FFF;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

#today_data a::after {
  display: inline-block;
  content: "拡大";
  position: absolute;
  top: 25px;
  right: 6px;
  font-size: 10px;
  color: #fff;
  z-index: 0;
}

#today_data a:nth-child(2n+1) {
  margin-right: 3px;
}

#today_data a:nth-child(n+3) {
  margin-top: 3px;
}

#today_data a figure {
  background: #f0eded;
  height: 100%;
}

#today_data a figure img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center center;
  object-position: center center;
  width: 100%;
}

#today_data a figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  font-size: 90%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 8px;
}

/* ==================================
   トップページ　ニュース・コロナ連載　
 ==================================*/
.section_inner ul li a {
  color: #333;
  font-weight: 600;
}

.section_inner ul li a .date {
  display: block;
  font-size: 0.9rem;
  color: #999;
}

.new li {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  border-top: 1px #dcdcdc solid;
}

.new li figure {
  width: 60px;
  float: left;
  position: relative;
}

.new li figure:before {
  content: "";
  padding-top: 100%;
  display: block;
}

.new li figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.new h3 {
  padding-left: 10px;
  width: calc( 100% - (60px + 10px));
  overflow: hidden;
}

.new .date {
  padding: 3px 0 0 70px;
}

.normal {
  margin-bottom: 20px;
}

.normal li {
  position: relative;
  padding: 13px 0px 13px 16px;
  border-top: 1px #dcdcdc solid;
}

.normal li h3 {
  overflow: hidden;
}

.normal li h3::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.5) * 0.4em);
}

.normal li h3::after {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
}

.normal li .newsChk {
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 0;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 1px !important;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.normal li .newsChk img {
  vertical-align: baseline;
}

.normal li a:nth-child(2) {
  overflow: hidden;
}

.normal li a:nth-child(2)::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.5) * 0.4em);
}

.normal li a:nth-child(2)::after {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
}

.normal li:last-child {
  border-bottom: 1px #dcdcdc solid;
}

/* もっと見るボタン　*/
.more {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: right;
  margin: 0 auto;
  width: 80%;
  position: relative;
}

.more a {
  border: #B0AEAE solid 2px;
  border-radius: 42px;
  padding: 14px 0;
  display: block;
  color: #333;
  overflow: hidden;
  text-align: center;
  padding-left: 8px;
  overflow: hidden;
}

.more a::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.5) * 0.4em);
}

.more a::after {
  content: '';
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
}

.more a i {
  padding-left: 8px;
  color: #706F6F;
  font-size: 12px;
}

/*　ワクチンニュース　*/
#container #vaccine h2 {
  margin: 0px auto 24px;
}

#container #vaccine .category_column {
  margin-bottom: 14px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#container #vaccine .category_column > a {
  font-size: 15px;
  color: #333;
  border: 2px solid #B0AEAE;
  border-radius: 3px;
  padding: 12px 20px 12px 10px;
  width: calc(50% - 20px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
  line-height: 1;
  position: relative;
  text-align: center;
}

#container #vaccine .category_column > a:first-of-type {
  margin-right: 20px;
}

#container #vaccine .category_column > a::after {
  font-family: 'Font Awesome 5 Free';
  content: "\f054";
  display: inline-block;
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  position: absolute;
  top: 14px;
  right: 10px;
}

/* コロナ連載　*/
#container #serial > h2 {
  margin-bottom: 22px;
}

#container #serial ul li:first-child {
  border-top: none;
}

#container #serial ul li:last-child {
  border-bottom: none;
}

#container #serial ul li a {
  font-size: 120%;
}

/* ==================================
　Q&A　画像  
==================================*/
#qanda_img {
  margin: 24px 0 36px !important;
}

#qanda_img .setumeizu {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#qanda_img .setumeizu figure {
  width: 100%;
  height: 250px;
  /* padding: 10px; */
  border-right: 1px #FFF solid;
  background: #f0eded;
  position: relative;
}

#qanda_img .setumeizu figure a img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  width: 100%;
}

#qanda_img .setumeizu figure a::before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  content: "\f00e";
  font-weight: 900;
  font-size: 18px;
  padding: 6px 8px 18px;
  line-height: 1;
  position: absolute;
  top: 0;
  right: 0;
  color: #FFF;
  background: rgba(0, 0, 0, 0.5);
}

#qanda_img .setumeizu figure a::after {
  display: inline-block;
  content: "拡大";
  position: absolute;
  top: 25px;
  right: 6px;
  font-size: 10px;
  color: #fff;
}

#qanda_img .setumeizu figure:nth-of-type(2n) {
  margin-right: 0;
}

/* ==================================
  Ｑ＆Ａページ　質問
 ==================================*/
#qanda_list {
  border-top: 2px #959595 solid;
  border-bottom: 2px #959595 solid;
}

#qanda_list .list_item a {
  color: #333;
  position: relative;
}

#qanda_list .list_item a:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 5px;
  bottom: 0;
  margin: auto;
  width: 12px;
  height: 2px;
  background-color: #333;
  -webkit-transition: .2s;
  transition: .2s;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

#qanda_list .list_item a:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 5px;
  bottom: 0;
  margin: auto;
  width: 12px;
  height: 2px;
  background-color: #333;
  -webkit-transition: .3s;
  transition: .3s;
}

#qanda_list .list_item a.on:before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

#qanda_list .list_item a.on:after {
  background-color: transparent;
}

#qanda_list .list_item .list_item_link {
  display: block;
  line-height: 1;
  padding: 1em 0;
}

#qanda_list .list_item .sublist {
  display: none;
}

#qanda_list .list_item .sublist .sublist_item {
  padding-bottom: 1em;
}

#qanda_list .list_item .sublist .sublist_item h3 {
  padding-bottom: 1em;
}

#qanda_list .list_item .sublist .sublist_item figure {
  width: 108px;
  float: right;
  padding: 5px;
}

#qanda_list .list_item .sublist .sublist_item figure img {
  width: 100%;
}

#qanda_list > .list_item {
  border-bottom: 1px #dcdcdc solid;
}

#qanda_list > .list_item:last-of-type {
  border-bottom: none;
}

/* ==================================
   フッター
 ==================================*/
footer {
  width: 100%;
  background-color: #a03551;
  padding: 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

footer p {
  color: #FFF;
  margin: 0 auto;
  text-align: center;
}

/* ==================================
   PC/SP切替
 ==================================*/
.UA {
  width: 40%;
  margin: 10% auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.UA_PC, .UA_SP {
  width: 50%;
  text-align: center;
  padding: 3%;
}

.Current {
  background-color: #a03551;
  color: #fff;
}

.NotCurrent {
  color: #a03551;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #e0dede;
}
/*# sourceMappingURL=style_sp.css.map */