@charset "UTF-8";

/*********************************
preset variables
*********************************/
:root {
  /* color preset */
  --mainColor: #32999a;
  --mainDarkColor: #0F547D;
  --mainLightColor: ;
  --subColor: ;
  --subDarkColor: ;
  --subLightColor: ;
  --bgColor: #fff;
  --linkColor: #099CCF;
  /* width preset */
  --breakpoint: 700px;
  --gutter: 1.3rem;
  --gap: 3rem;
  --headerHeight: 110px;
  --contentWidth: 1200px;
}



/* OVERWRITE RADIX */
a {
  color: var(--linkColor);
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

p {
  text-align: unset;
}

/* OVERWRITE end */
/*************************************
* START header
*************************************/
header.centering {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  flex-grow: 1;
  height: var(--headerHeight);
  max-width: 475px;
}

header h1 a {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none !important;
  line-height: 1.2;
  height: var(--headerHeight);
}

header h1 .site-logo {
  display: block;
  width: 100%;
  max-width: 70px;
  margin: 0 1.5rem;
}

header h1 .site-logo::before {
  display: block;
  content: '';
  padding-top: 100%;
  height: 0;
  background: url(../content/files/logo0106.jpg) no-repeat center center;
  background-size: contain;
}

header h1 .text {
  display: grid;
}

header .site-guide {
  margin-right: 1rem;
  margin-left: auto;
}

header .site-guide .upper {
  display: flex;
  justify-content: space-between;
  margin-bottom: .5rem;
}

header .site-guide .upper .langs {
  display: flex;
}

header .site-guide .upper .langs a {
  margin: 0 1rem;
}

header .site-guide .upper .sns {
  display: flex;
}

header .site-guide .upper .sns a {
  display: block;
  width: 2rem;
  height: 2rem;
  padding: .2rem;
  border: 4px solid currentColor;
  border-radius: 50%;
  margin: 0 1rem;
  color: #777;
  text-align: center;
  line-height: 1;
}

header .site-guide .lower {
  display: flex;
  justify-content: space-between;
}

header .site-guide .lower a {
  margin: 0 1rem;
}

header .site-guide .lower a i {
  color: #777;
  font-size: 1.2rem;
}

a.newsletter-btn {
  display: block;
  width: 100px;
  height: 70px;
  background: url(../content/images/theme/newsletter_btn_pc.png) no-repeat center center;
}

header .site-guide a {
  color: #333;
}

/*************************************
* END header START #global-nav
*************************************/
#global-nav {
  background: #333;
}

#global-nav ul.centering {
  display: flex;
  justify-content: space-between;
}

#global-nav a {
  display: block;
  padding: 1.5rem 0;
  color: #fff;
}

/*************************************
* END nav START main
*************************************/
/* sub COMMONS */
main.sub article>div.centering section:first-child {
  margin-top: 0;
}

main.sub article>div.centering section:last-child {
  margin-bottom: 0;
}

.sub-pagetitle {
  position: relative;
  background: #32999a;
}

.sub-pagetitle::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  max-width: 400px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  background: url(../content/images/theme/sub_pagetitle.png) no-repeat right center;
  background-size: cover;
}

.sub-pagetitle::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  max-width: 400px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  background: linear-gradient(to left, rgba(50, 153, 154, .6), rgba(50, 153, 154, 1));
}

.sub-pagetitle h1 {
  position: relative;
  z-index: 3;
  padding: 3rem 1rem;
  margin-bottom: 0;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.4;
}

.breadcrumb {
  background: #eee;
  padding: .3rem 1rem;
}

.breadcrumb li {
  display: inline-block;
  line-height: 1.4;
}

.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin: 0 .5rem;
}

main h1 {
  font-size: 2.0rem;
  text-align: center;
  position: relative;
  margin: 1rem 0 2rem;
  letter-spacing: .3rem;
}

main h1::after {
  position: absolute;
  display: block;
  content: '';
  height: 1px;
  width: 100px;
  background: #777;
  bottom: 0;
  left: calc(50% - 50px);
}

main h2 {
  padding-bottom: .3rem;
  border-bottom: 2px solid var(--mainColor);
  font-size: 1.4rem;
  line-height: 1.4;
}

main h3 {
  padding: .5rem .8rem;
  background: #3E1586;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.4;
}

main h4 {
  color: var(--mainColor);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
}

main.sub {
  padding: 0 1rem;
}

main.sub>article {
  padding: 3rem 0;
}

main ul {
  padding-left: 1.5em;
  margin-bottom: var(--gutter);
  list-style-type: disc;
}

main ul.colored-list li:nth-child(2n),
main ol.colored-list li:nth-child(2n) {
  padding: .3rem .5rem .3rem 3rem;
  margin-left: -24px;
  background: #e6fcfc;
}

main ul.colored-list li:nth-child(2n+1),
main ol.colored-list li:nth-child(2n+1) {
  padding: .3rem .5rem .3rem 3rem;
  margin-left: -24px;
  background: #eee;
}

main ul.colored-list li {
  list-style-type: none;
  position: relative;
}

main ol {
  padding-left: 1.5em;
  margin-bottom: var(--gutter);
  list-style-type: decimal
}

main ol.bracket li {
  list-style-type: none;
  counter-increment: cnt;
  position: relative;
}

main ol.bracket li::before {
  content: "("counter(cnt) ")";
  text-align: right;
  position: absolute;
  left: 10px;
}

main dl {
  padding-left: 1.5em;
  margin-bottom: var(--gutter);
}

dl dd {
  margin-bottom: var(--gutter);
}

ul.children-list {
  list-style-type: none;
  padding-left: 0;
}

ul.children-list li {
  display: inline-block;
  margin: 0 .5rem .5rem;
}

ul.children-list li a {
  display: inline-block;
  padding: .5rem 1.5rem;
  border-radius: 2rem;
  background: #6d37bd;
  color: #fff;
  line-height: 1.4;
}

ul.nonestyle-li {
  list-style-type: none;
}

main table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
  margin-bottom: var(--gutter);
}

main .horizontal-scroller>table {
  width: unset;
}

main table th {
  padding: .3rem .5rem;
  background: #555;
  color: #fff;
  white-space: nowrap;
  vertical-align: middle;
}

main table td {
  padding: .3rem .5rem;
  vertical-align: middle;
}

main table tr:nth-child(2n) td {
  background: #e6fcfc;
}

main table tr:nth-child(2n+1) td {
  background: #eee;
}

main table tr:nth-child(n) td[rowspan] {
  background: #4d8283;
  color: #fff;
}

main table td[rowspan] a,
main table th a {
  color: #c9f1ff;
}

main table td.title {
  text-align: center;
}

main table td.img-cell {
  width: 200px;
  vertical-align: bottom;
}

main table td.img-cell img {
  margin: 0 auto;
}

td.valign-top {
  vertical-align: top;
}

.clearfix .float-left {
  float: left;
  margin: 0 1rem .5rem 0;
}

.clearfix .float-right {
  float: right;
  margin: 0 0 .5rem 1rem;
}

.img-flex {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.img-flex>img,
.img-flex>figure {
  margin: 0 .5rem 1rem;
  object-fit: contain;
}

.img-flex>figure figcaption {
  text-align: center;
}

.img-flex.gallery img{
  height: 170px;
  object-fit: contain;
}

.img-inline {
  display: inline-block;
  vertical-align: baseline;
}

figure {
  display: flex;
  flex-direction: column;
}

/* END sub COMMONS */
/* START bx-slider */
.slider-wrapper {
  max-width: 1400px;
}

.bx-wrapper .bx-pager {
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.bx-wrapper .bx-pager a.bx-pager-link {
  display: block;
  width: .7rem;
  height: .7rem;
  margin: 0 .5rem;
  background: #bbb;
  color: transparent;
  font: 0/0 a;
}

.bx-wrapper .bx-pager a.bx-pager-link.active {
  background: var(--mainColor);
}

/* END bx-slider */

/* START whats_new_wrapper */
.whats_new_wrapper {
  padding: 0 1rem 5rem;
}

.whats_new_wrapper .category {
  display: flex;
}

.whats_new_wrapper .category label {
  width: calc(100% / 5);
  position: relative;
  padding: 1.5rem .5rem;
  border: solid 1px #000;
  text-align: center;
  cursor: pointer;
}

.whats_new_wrapper .ctgr_en label {
  padding: .5rem;
}

.whats_new_wrapper .ctgr_en label:nth-child(1),
.whats_new_wrapper .ctgr_en label:nth-child(2),
.whats_new_wrapper .ctgr_en label:nth-child(3),
.whats_new_wrapper .ctgr_en label:nth-child(5) {
  padding: 1.5rem .5rem;
}

.whats_new_wrapper .category label input {
  display: none;
}

.whats_new_wrapper .category label span {
  position: relative;
  z-index: 3;
}

.whats_new_wrapper .category label.checked {
  background: #000;
}

.whats_new_wrapper #filter-target li {
  display: flex;
  padding: 2rem 0;
  border-bottom: solid 1px #ddd;
}

.whats_new_wrapper #filter-target li div:first-child {
  padding: 0 1rem;
  width: 30%;
}

.whats_new_wrapper #filter-target li div:first-child span.tag {
  display: inline-block;
  margin-left: 2rem;
  text-align: center;
  width: 150px;
  color: #fff;
}

.whats_new_wrapper #filter-target li.news span.tag {
  background: #340874;
}

.whats_new_wrapper #filter-target li.news span.tag::before {
  content: "ニュース";
}

.whats_new_wrapper .filter-target_to_en li.news span.tag::before {
  content: "News" !important;
}

.whats_new_wrapper #filter-target li.event span.tag {
  background: #f0b500;
}

.whats_new_wrapper #filter-target li.event span.tag::before {
  content: "イベント開催情報";
}

.whats_new_wrapper .filter-target_to_en li.event span.tag::before {
  content: "Event" !important;
}

.whats_new_wrapper #filter-target li.related_laboratories span.tag {
  background: #0768d6;
}

.whats_new_wrapper #filter-target li.related_laboratories span.tag::before {
  content: "関連研究所お知らせ";
}

.whats_new_wrapper .filter-target_to_en li.related_laboratories span.tag::before {
  content: "Notice" !important;
}

.whats_new_wrapper #filter-target li.public_recruitment span.tag {
  background: #32989a;
}

.whats_new_wrapper #filter-target li.public_recruitment span.tag::before {
  content: "公募情報";
}

.whats_new_wrapper .filter-target_to_en li.public_recruitment span.tag::before {
  content: "Public" !important;
}

.whats_new_wrapper #filter-target li div:nth-child(2) {
  width: 70%;
}

.whats_new_wrapper .to_more_button {
  display: block;
  border: solid 1px #000;
  width: 240px;
  height: 70px;
  margin: 0 auto;
  text-align: center;
  line-height: 70px;
  position: relative;
  color: #000;
}

.whats_new_wrapper .to_more_button::after {
  font-family: "Font Awesome 5 Free";
  content: '\f30b';
  font-weight: 900;
  position: absolute;
  top: 0;
  right: 1rem;
  font-size: 1.5em;
}

/*END whats_new_wrapper */
/* START fewdays */
article.fewdays {
  padding: 2rem 1rem 3rem;
  margin-bottom: 4rem;
  background: url(../content/images/theme/bg_1.png) repeat;
}

article.fewdays h1 {
  color: #fff;
}

article.fewdays h1::after {
  background: #ccc;
}

.fewdays-flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.fewdays-flex>a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 570px;
  margin: 0 .5rem 2rem;
  background: #eee;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.fewdays-flex>a img {
  width: 180px;
  height: 255px;
  object-fit: contain;
}

.fewdays-flex>a>div {
  position: relative;
  padding: .5rem 1rem 2rem;
}

.fewdays-flex>a div::after {
  font-family: "Font Awesome 5 Free";
  content: 'MORE \f30b';
  font-weight: 700;
  position: absolute;
  bottom: .5rem;
  right: 1rem;
  font-size: 1rem;
  border-bottom: 1px solid currentColor;
}

.fewdays-flex>a h6 {
  color: #777;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.fewdays-flex>a strong {
  display: block;
  margin-bottom: 1rem;
}

.fewdays-flex>a p {
  margin-top: 0;
  margin-bottom: 0;
}

/* END fewdays */
/* START newsletter */
.newsletter-item {
  display: flex;
  background: #eee;
  padding: 1rem;
  margin-bottom: var(--gutter);
}

.newsletter-item>img {
  width: 100%;
  max-width: 250px;
  margin-right: 1rem;
}

.newsletter-item span.title {
  font-size: 1.2rem;
  font-weight: 700;
}

.newsletter-item p {
  margin-bottom: 0;
  margin-top: 0;
}

@media only screen and (max-width:650px) {
  .newsletter-item {
    flex-direction: column;
  }

  .newsletter-item>img {
    align-self: center;
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .flexcontainer {
    display: column;
  }

  .cntbox {
    margin: 15px;
  }

}

@media only screen and (min-width:651px) {
  .flexcontainer {
    display: flex;
  }

  .cntbox {
    margin: 15px;
  }

}

/* END newsletter */

/* START information */
.email {
  display: inline;
  vertical-align: middle;
}

/* END information */

/* START publication */

.book-withinfo {
  display: flex;
  background-color: #f5f5f5;
  padding: 20px;
  margin: 1rem 0;
}

.book-withinfo *,
.book-withinfo-metadata * {
  margin: unset;
}

.book-withinfo img {
  width: 120px;
  margin-right: 20px;
  object-fit: contain;
}

.book-withinfo .title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #424242;
  border-bottom: 5px solid #84D6D7;
  margin-bottom: 10px;
}

.book-withinfo-metadata {
  padding: 20px;
  border: 3px solid #f5f5f5;
  margin: 1rem 0;
}

.book-withinfo-metadata .img-metadata {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 20px;
}

.book-withinfo-metadata .img-metadata img {
  width: 200px;
  margin-right: 20px;
  object-fit: contain;
  padding: 0 50px;
}

.book-withinfo-metadata .img-metadata table {
  border-collapse: collapse;
  width: 60%;
  min-width: unset;
}

.book-withinfo-metadata .img-metadata table th,
.book-withinfo-metadata .img-metadata table td {
  background-color: unset;
}

.book-withinfo-metadata .img-metadata table tr td:first-child {
  white-space: nowrap;
}

.book-withinfo-metadata .img-metadata table tr+tr th,
.book-withinfo-metadata .img-metadata table tr+tr td {
  border-top: 2px solid #eeeeee;
}

.img-foreign-top {
  float: right;
}

@media only screen and (max-width:650px) {
  .book-withinfo {
    flex-direction: column;
  }

  .book-withinfo img {
    width: unset;
    height: 160px;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width:1000px) {
  .book-withinfo-metadata .img-metadata {
    flex-direction: column;
  }

  .book-withinfo-metadata img {
    margin-right: unset;
  }

  .book-withinfo-metadata .img-metadata img {
    width: 100px;
    padding: 0;
    height: 160px;
    margin-bottom: 10px;
    margin: 0 auto;
  }

  .book-withinfo-metadata .img-metadata table {
    width: 100%;
  }
}

ol.ol-issue {
  list-style-type: none;
  counter-reset: issue;
}

ol.ol-issue>li {
  padding-left: 5em;
  position: relative;
  margin-bottom: 10px;
}

ol.ol-issue>li::before {
  counter-increment: issue;
  content: '第'counter(issue)'号';
  position: absolute;
  top: 0;
  left: 0;
}

ol.ol-issue.reversed>li::before {
  counter-increment: issue -1;
}

ol.ol-volume {
  list-style-type: none;
  counter-reset: volume;
}

ol.ol-volume.start23 {
  counter-reset: volume 22;
}

ol.ol-volume>li {
  padding-left: 5em;
  position: relative;
  margin-bottom: 10px;
}

ol.ol-volume>li::before {
  counter-increment: volume;
  content: 'Vol.'counter(volume);
  position: absolute;
  top: 0;
  left: 0;
}

img.pb_img {
  min-width: 100px;
}


/* END publication */


/* START publication02 */
.publication02_wrapper {
  display: flex;
}

.publication02_wrapper>img {
  width: 30%;
}

@media only screen and (max-width:1000px) {
  .publication02_wrapper {
    display: block;
  }

  .publication02_wrapper>img {
    width 100%;
    margin: 0 auto;
  }

}

/* END publication02 */

/* START banner */
.banners-wrapper {
  padding: 3rem 1rem 1rem;
  background: url(../content/images/theme/bg_2.png);
  margin-bottom: 4rem;
  background-size: cover;
}

.banner-flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.banner-flex>a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 270px;
  min-height: 115px;
  padding: 1rem 0 1.5rem;
  margin: 0 .5rem 2rem;
  background: #fff url(../content/images/theme/banner_icon.png) no-repeat right 5px bottom 5px;
  color: inherit;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  line-height: 1.4;
}

.banner-flex>a::before,
.banner-flex>a::after {
  content: "";
  display: block;
  flex-grow: 1;
}

.banner-flex .small {
  font-size: .8em;
}

.banner-en>a {
  min-height: 105px;
  padding: 0;
}

.banner-en .small {
  font-size: .7em;
}

/* END banner */
/* START ofice2 */
.ofice2>div {
  display: flex;
  align-items: baseline;
}

.ofice2>div p:first-child {
  width: 100px;
  margin-right: 10px;
  border-radius: 5px;
  background: #b9a988;
  color: #fff;
  text-align: center;
}

.ofice2>p {
  margin-left: 40px;
}


/* END ofice2 */
/*出版物紹介 START*/
.p_td01{
  width: 20%;
}
.p_td01 img{
  margin: 0 auto;
}
.p_td03:nth-child(1) {
  width: 20%;
}
@media only screen and (max-width:600px) {
.publication_content_introduction table tr{
  display: flex;
  flex-wrap: wrap;
}
.publication_content_introduction table tr td{
  width: 100%;
}
.p_td01{
  border-bottom: solid 3px #fff;
}
.p_td03:nth-child(1) {
  width: 100%;
}
}
/*出版物紹介ページ END */
/*************************************
* END main START footer
*************************************/
footer {
  padding: 2rem 1rem;
  background: #01133B url(../content/images/theme/footer_bg.png) no-repeat right bottom;
  background-size: auto 100%;
}

.foot-btns {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

.foot-btns li {
  border: 1px solid #eee;
  padding: 0.1rem 1.2rem;
}

.foot-btns li:not(:last-child) {
  margin-right: 10px;
}

.foot-btns li a {
  display: block;
  position: relative;
  padding: .5rem 2rem .5rem .5rem;
  color: #fff;
  font-size: .9rem;
}

.foot-btns li a::after {
  content: "\f30b";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  position: absolute;
  top: 50%;
  right: .5rem;
  transform: translateY(-50%);
}

.foot-btns li a.pagetop::after {
  content: "\f30c";
}

footer h1 {
  padding-top: 3rem;
  margin-bottom: 1.3rem;
}

footer h1 a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  text-decoration: none !important;
  line-height: 1.4;
}

footer h1 a .small {
  font-size: 1.2rem;
}

footer .site-info {
  color: #fff;
  margin-bottom: 1.3rem;
}

footer .sns {
  display: flex;
  margin-bottom: 2rem;
}

footer .sns a {
  display: block;
  width: 3rem;
  height: 3rem;
  padding: .4rem;
  border: 5px solid currentColor;
  border-radius: 50%;
  margin-right: 2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  text-align: center;
  line-height: 1;
}

footer .copyright {
  color: #999;
}

/*************************************
* END footer START only for sp
*************************************/
@media only screen and (max-width:1000px) {
  .sp-hide {
    visibility: hidden;
    opacity: 0
  }

  .sp-visible {
    visibility: visible;
    opacity: 1
  }

  .sp-none {
    display: none !important
  }

  .btn {
    display: block
  }

  :root {
    --headerHeight: 60px;
  }

  header.centering {
    flex-wrap: wrap;
  }

  header h1 {
    margin: .5rem var(--headerHeight) .5rem .5rem;
  }

  #toggle-nav {
    height: var(--headerHeight);
    width: var(--headerHeight);
    position: fixed;
    top: .5rem;
    right: 0;
    z-index: 9999;
    padding: .5rem;
    background: rgba(255, 255, 255, 0.8);
    font-size: .8rem;
    line-height: 1;
  }

  #nav-svg {
    position: relative;
    top: -.5rem;
  }

  #toggle-nav span {
    position: absolute;
    bottom: .4rem;
    left: 50%;
    transform: translateX(-50%);
  }

  header .sp-bar {
    display: flex;
    width: 100%;
    background: #333;
  }

  #lang-switch {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: .3rem 2rem .3rem .2rem;
    color: #fff;
    line-height: 1;
  }

  #lang-switch::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    max-height: 25px;
    background: url(../content/images/theme/lang_sp.png) no-repeat center center;
    background-size: contain;
  }

  #lang-switch::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    font-size: 1.5rem;
    position: absolute;
    top: 50%;
    right: .8rem;
    transform: translateY(-50%) rotateX(0);
    transition: .3s ease-in-out;
  }

  #lang-switch.opened::after {
    transform: translateY(-50%) rotateX(180deg);
  }

  header .sp-bar a {
    width: 100%;
    padding: .3rem .2rem;
    border-left: 1px solid #777;
    color: #fff;
    text-align: center;
    text-decoration: none;
    line-height: 1;
  }

  header .sp-bar a.contact,
  header .sp-bar a.newsletter-btn {
    display: flex;
    align-items: center;
    height: 3rem;
    background-image: none;
  }

  header .sp-bar a.contact::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    max-height: 20px;
    background: url(../content/images/theme/contact_sp.png) no-repeat center center;
    background-size: contain;
  }

  header .sp-bar a.newsletter-btn::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    max-height: 30px;
    background: url(../content/images/theme/newsletter_btn_sp.png) no-repeat center center;
    background-size: contain;
  }

  #global-nav {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    padding-top: calc(var(--headerHeight) + 1rem);
    background: rgba(255, 255, 255, 0.95);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
  }

  #global-nav.opened {
    opacity: 1;
    visibility: visible;
  }

  #global-nav ul.centering {
    flex-direction: column;
  }

  #global-nav a {
    padding: .5rem 1rem;
    color: #333;
    font-weight: 700;
    text-align: center;
  }

  .lang-list-sp {
    display: flex;
    flex-wrap: wrap;
    background: #555;
  }

  .lang-list-sp.opened a {
    padding: .3rem .5rem;
    line-height: 1.7;
  }

  .lang-list-sp a {
    width: 50%;
    padding: 0 .5rem;
    color: #fff;
    line-height: 0;
    transition: .3s;
    overflow: hidden;
  }

  .lang-list-sp a:nth-child(odd) {
    border-right: 1px solid #333;
  }

  .lang-list-sp.opened a:not(:last-child) {
    border-bottom: 1px solid #333;
  }

  .banner-flex>a {
    font-size: 1.5vw;
    width: calc(50% - 1rem);
    min-height: 0;
  }

  .foot-btns,
  .foot-btns li {
    display: flex;
    width: 100%;
    position: static;
  }

  .foot-btns li {
    padding: 0;
  }

  .foot-btns li:not(:last-child) {
    margin-right: 0;
    border-right: none;
  }

  .foot-btns li a {
    width: 100%;
  }

  .whats_new_wrapper .category {
    flex-direction: column;
    position: relative;
  }

  .whats_new_wrapper .category::before {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    font-size: 1.5rem;
    text-align: right;
    line-height: 1;
    display: block;
    width: 2.2rem;
    position: absolute;
    top: 1px;
    right: 0;
    z-index: 10;
    padding: .5rem;
    cursor: pointer;
    transform: rotateX(0);
    transition: .3s ease-in-out;
  }

  .whats_new_wrapper .category.opened::before {
    transform: rotateX(180deg);
  }

  .whats_new_wrapper .category label {
    width: 100%;
    padding: .5rem;
    margin-top: -1px;
    line-height: 1.5rem;
    overflow: hidden;
    transition: .3s ease-in-out;
  }

  .whats_new_wrapper .category:not(.opened) label:not(.active) {
    line-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-width: 0;
  }

  .whats_new_wrapper .category label span {
    line-height: inherit;
  }

  .whats_new_wrapper .category label.active {
    border-width: 2px;
  }

  .whats_new_wrapper #filter-target li {
    flex-direction: column;
  }

  .whats_new_wrapper #filter-target li div:first-child,
  .whats_new_wrapper #filter-target li div:nth-child(2) {
    width: 100%;
  }

  .fewdays-flex>a {
    flex-direction: column;
    padding-top: 1rem;
  }
}

/*************************************
* END only for sp START only for pc
*************************************/
@media print,
screen and (min-width:1000px) {
  .pc-hide {
    visibility: hidden;
    opacity: 0
  }

  .pc-visible {
    visibility: visible;
    opacity: 1
  }

  .pc-none {
    display: none !important
  }


  #global-nav li:not(:last-child) {
    margin-right: 1rem;
  }


  .whats_new_wrapper .category label::before {
    content: "";
    display: block;
    width: 100%;
    max-width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background: #d1d1d1;
    transition: .3s max-width ease-in-out;
  }

  .whats_new_wrapper .category label.active::before {
    max-width: 100%;
  }

  .whats_new_wrapper .category label::after {
    content: "";
    display: block;
    height: 100%;
    max-height: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    border-left: 1px solid #000;
    transition: .3s max-height ease-in-out;
  }

  .whats_new_wrapper .category label.active::after {
    content: "";
    display: block;
    height: 100%;
    max-height: 1rem;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-left: 1px solid #000;
  }

  .whats_new_wrapper .category label:not(:last-child) {
    border-right: none;
  }

  .guest_td {
    padding: 1rem .5rem;
    background-color: #fff !important;
  }

  .guest_img {
    width: 230px;
  }

  .guest_img img {
    margin: 0 auto;
  }

  .labotd01 {
    width: 2%;
  }

  .labotd02 {
    /* width: 45%; */
  }

  .labotd03 {
    width: 10%;
  }

  .labotd04 {
    width: 30%;
  }

  .list-size{
    width: 120px;
    text-align: center;
  }

  .img_border{
      height:  90%;
  }
}