@charset "UTF-8";
.menu-common {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: 0;
  padding-left: 0;
  overflow: hidden;
  background: #fff;
  list-style: none;
}
.menu-common::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  border: 2px solid transparent;
  pointer-events: none;
}
.menu-common > li {
  width: 50%;
}
.menu-common .menu-link {
  display: block;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}
.menu-common .menu-link .menu-icon {
  display: inline-block;
  position: relative;
}
.menu-common .menu-link .menu-icon::before {
  content: "";
  position: absolute;
  background: no-repeat center center/100% auto;
}
.menu-common .menu-link .menu-icon.is-icon-primary::before {
  background-image: url("../img/common/links_icn_03.svg");
}
.menu-common .menu-link .menu-icon.is-icon-secondary::before {
  background-image: url("../img/common/links_icn_02.svg");
}
.menu-common .menu-link.is-active .menu-icon.is-icon-primary::before {
  background-image: url("../img/common/links_icn_01.svg");
}
.menu-common .menu-link.is-active .menu-icon.is-icon-secondary::before {
  background-image: url("../img/common/links_icn_04.svg");
}
.menu-common .menu-link.is-active.is-menu-primary {
  background: #d98d14;
}
.menu-common .menu-link.is-active.is-menu-secondary {
  background: #7cbe2f;
}
.menu-common.is-menu-primary .menu-link {
  color: #d98d14;
}
.menu-common.is-menu-primary .menu-link.is-active {
  background: #d98d14;
  color: #fff;
}
.menu-common.is-menu-primary::before {
  border-color: #e28d03;
}
.menu-common.is-menu-secondary .menu-link {
  color: #7cbe2f;
}
.menu-common.is-menu-secondary .menu-link.is-active {
  background: #7cbe2f;
  color: #fff;
}
.menu-common.is-menu-secondary::before {
  border-color: #7cbe2f;
}

@media print, (min-width: 768px) {
  .menu-common {
    border-radius: 30px;
  }
  .menu-common::before {
    border-radius: 30px;
  }
  .menu-common .menu-link {
    padding: 11px 20px 12px;
    border-radius: 30px;
    font-size: 0.24rem;
  }
  .menu-common .menu-link .menu-icon {
    padding-left: 26px;
  }
  .menu-common .menu-link .menu-icon::before {
    top: 7px;
    width: 24px;
    height: 24px;
  }
  .menu-common .menu-link .menu-icon.is-icon-primary::before {
    left: -3px;
  }
  .menu-common .menu-link .menu-icon.is-icon-secondary {
    padding-right: 8px;
  }
  .menu-common .menu-link .menu-icon.is-icon-secondary::before {
    left: -5px;
  }
  .menu-common + .name-common-category {
    margin-top: 80px;
  }
  .menu-common + .list-common {
    margin-top: 92px;
  }
}
@media only screen and (max-width: 767.98px) {
  .menu-common {
    border-radius: 0.3rem;
  }
  .menu-common::before {
    border-radius: 0.3rem;
  }
  .menu-common .menu-link {
    padding: 0.07rem 0.09rem 0.09rem 0.14rem;
    border-radius: 0.3rem;
    font-size: 0.18rem;
  }
  .menu-common .menu-link .menu-icon {
    padding-left: 0.19rem;
  }
  .menu-common .menu-link .menu-icon::before {
    width: 0.18rem;
    height: 0.18rem;
  }
  .menu-common .menu-link .menu-icon.is-icon-primary::before {
    top: 0.05rem;
    left: -0.04rem;
  }
  .menu-common .menu-link .menu-icon.is-icon-secondary {
    padding-right: 0.08rem;
    font-size: 0.17rem;
  }
  .menu-common .menu-link .menu-icon.is-icon-secondary::before {
    top: 0.04rem;
    left: -0.04rem;
  }
  .menu-common + .name-common-category {
    margin-top: 0.38rem;
  }
  .menu-common + .list-common {
    margin-top: 0.61rem;
  }
}
.category-block {
  position: relative;
  border: 1px solid #4a4a4a;
}
.category-block .category-title {
  position: absolute;
  right: 0;
  left: 0;
  color: #d98d14;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.category-block .category-title > span {
  display: inline-block;
  background: #fff;
  vertical-align: top;
}
.category-block .category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 0;
  padding-left: 0;
  font-weight: bold;
  line-height: 1.5;
  list-style: none;
}
.category-block .category-list a {
  display: block;
  position: relative;
  color: #4a4a4a;
  text-decoration: underline;
}
.category-block .category-list a::before {
  content: "";
  position: absolute;
  border-radius: 100%;
}

@media print, (min-width: 768px) {
  .category-block {
    max-width: 720px;
    margin: 69px auto 0;
    padding: 50px 40px 24px;
    border-radius: 6px;
  }
  .category-block .category-title {
    top: -16px;
    font-size: 0.21rem;
  }
  .category-block .category-title > span {
    padding: 0 30px;
  }
  .category-block .category-list {
    padding-right: 4px;
    font-size: 0.16rem;
  }
  .category-block .category-list > li {
    margin: 0 24px 24px;
  }
  .category-block .category-list a {
    padding-left: 25px;
    text-underline-offset: 2px;
  }
  .category-block .category-list a:hover {
    text-decoration: none;
  }
  .category-block .category-list a::before {
    top: 5px;
    left: 4px;
    width: 17px;
    height: 17px;
  }
}
@media only screen and (max-width: 767.98px) {
  .category-block {
    margin: 0.73rem auto 0;
    padding: 0.34rem 0.1rem 0.19rem;
    border-radius: 0.06rem;
  }
  .category-block .category-title {
    top: -0.14rem;
    font-size: 0.19rem;
  }
  .category-block .category-title > span {
    padding: 0 0.2rem;
  }
  .category-block .category-list {
    padding-right: 0.05rem;
    font-size: 0.15rem;
  }
  .category-block .category-list > li {
    margin: 0 0.1rem 0.14rem;
  }
  .category-block .category-list a {
    padding-left: 0.25rem;
    text-underline-offset: 0.02rem;
  }
  .category-block .category-list a::before {
    top: 0.05rem;
    left: 0.06rem;
    width: 0.14rem;
    height: 0.14rem;
  }
}
.post-content {
  font-size: 0.15rem;
  font-weight: 500;
  line-height: 1.7333333333;
  overflow-wrap: break-word;
}
.post-content p:last-child {
  margin-bottom: 0;
}
.post-content b,
.post-content strong {
  font-weight: bold;
}
.post-content i,
.post-content em {
  font-style: italic;
}
.post-content a {
  color: #1982D1;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.post-content a:hover {
  opacity: 0.7;
}
.post-content sup,
.post-content sub {
  position: relative;
  font-size: 0.6em;
}
.post-content sup {
  vertical-align: top;
}
.post-content sub {
  vertical-align: bottom;
}
.post-content figure,
.post-content picture,
.post-content img,
.post-content video,
.post-content iframe,
.post-content table {
  max-width: 100%;
  margin-bottom: 2em;
}
.post-content figure:last-child,
.post-content picture:last-child,
.post-content img:last-child,
.post-content video:last-child,
.post-content iframe:last-child,
.post-content table:last-child {
  margin-bottom: 0;
}
.post-content figure img,
.post-content figure video,
.post-content figure iframe,
.post-content figure table {
  margin-bottom: 0;
}
.post-content figcaption {
  margin: 0.5em 0;
  font-size: 0.8em;
}
.post-content figcaption:last-child {
  margin-bottom: 0;
}
.post-content blockquote {
  position: relative;
  margin-bottom: 2em;
  padding: 2em;
  background-color: #f8f8f8;
}
.post-content blockquote::before, .post-content blockquote::after {
  content: "“";
  position: absolute;
  font-size: 2em;
  line-height: 1.2;
}
.post-content blockquote::before {
  top: 0.3em;
  left: 0.3em;
}
.post-content blockquote::after {
  right: 0.3em;
  bottom: 0.3em;
  -webkit-transform: scale(-1, -1);
  -ms-transform: scale(-1, -1);
  transform: scale(-1, -1);
}
.post-content blockquote:last-child {
  margin-bottom: 0;
}
.post-content pre,
.post-content code {
  margin-bottom: 2em;
}
.post-content pre:last-child,
.post-content code:last-child {
  margin-bottom: 0;
}
.post-content ul {
  margin-bottom: 2em;
  padding-left: 2em;
  list-style: disc;
}
.post-content ul:last-child {
  margin-bottom: 0;
}
.post-content ol {
  margin-bottom: 2em;
  padding-left: 2em;
  list-style: decimal;
}
.post-content ol:last-child {
  margin-bottom: 0;
}
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  font-weight: bold;
}
.post-content h2 {
  margin-bottom: 1em;
}
.post-content h2:last-child {
  margin-bottom: 0;
}
.post-content h3 {
  margin-bottom: 0.4em;
  font-size: 1.6em;
}
.post-content h3:last-child {
  margin-bottom: 0;
}
.post-content h4 {
  margin-bottom: 0.4em;
  font-size: 1.4em;
}
.post-content h4:last-child {
  margin-bottom: 0;
}
.post-content h5 {
  margin-bottom: 0.3em;
  font-size: 1.2em;
}
.post-content h5:last-child {
  margin-bottom: 0;
}
.post-content h6 {
  margin-bottom: 0.3em;
  font-size: 1em;
}
.post-content h6:last-child {
  margin-bottom: 0;
}
.post-content .wp-block-table table {
  border-collapse: collapse;
  border: 1px solid #000;
}
.post-content .wp-block-table thead,
.post-content .wp-block-table tbody,
.post-content .wp-block-table tfoot {
  border: none;
}
.post-content .wp-block-table th,
.post-content .wp-block-table td {
  padding: 0.5em;
  border: 1px solid #000;
}
.post-content .wp-block-table th {
  background-color: #ccc;
  font-weight: bold;
}

@media print, (min-width: 768px) {
  .post-content h3 {
    font-size: 0.2rem;
  }
  .post-content h4 {
    font-size: 0.18rem;
  }
  .post-content h5 {
    font-size: 0.16rem;
  }
  .post-content p {
    margin-bottom: 26px;
  }
  .post-content img {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767.98px) {
  .post-content h2,
  .post-content h3,
  .post-content h4,
  .post-content h5 {
    margin-bottom: 0.8em;
    font-size: 0.16rem;
  }
  .post-content p {
    margin-bottom: 0.22rem;
  }
  .post-content img {
    margin-top: 0.02rem;
  }
}
.section-common-detail .sidebar-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0.17rem;
  padding: 0.08rem 0.17rem 0.07rem;
  background: #e28d03;
  color: #fff;
  font-weight: 700;
}
.section-common-detail .sidebar-title > span {
  opacity: 0;
  line-height: 1.2;
}
.wf-active .section-common-detail .sidebar-title > span {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 1;
}
.section-common-detail .sidebar-title .title-english {
  margin-right: 0.14rem;
  font-family: mr-eaves-xl-modern, sans-serif;
  font-size: 0.28rem;
}
.section-common-detail .sidebar-title .title-japanese {
  font-size: 0.14rem;
}
.section-common-detail .sidebar-row {
  margin-bottom: 0.5rem;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid #e5e5e5;
}
.section-common-detail .sidebar-row:last-child {
  margin-bottom: 0;
}
.section-common-detail .post-content {
  border-bottom: 1px solid #e5e5e5;
}

@media print, (min-width: 768px) {
  .section-common-detail {
    padding: 65px 0 101px;
  }
  .section-common-detail .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .section-common-detail .detail-column {
    width: 630px;
  }
  .section-common-detail .sidebar {
    width: 290px;
  }
  .section-common-detail .sidebar-title .title-japanese {
    position: relative;
  }
  .is-chromium .section-common-detail .sidebar-title .title-japanese, .is-chrome .section-common-detail .sidebar-title .title-japanese {
    top: -1px;
  }
  .is-mac.is-chrome .section-common-detail .sidebar-title .title-japanese {
    top: auto;
  }
  .section-common-detail .sidebar-row {
    margin-bottom: 59px;
    padding-bottom: 15px;
  }
  .section-common-detail .detail-image {
    height: 420px;
    margin-bottom: 15px;
  }
  .section-common-detail .post-content {
    padding-bottom: 77px;
  }
}
@media only screen and (max-width: 767.98px) {
  .section-common-detail {
    padding: 0.37rem 0 0.8rem;
  }
  .section-common-detail .sidebar {
    margin-top: 0.5rem;
  }
  .section-common-detail .sidebar-row {
    margin-bottom: 0.5rem;
    padding-bottom: 0.2rem;
  }
  .section-common-detail .detail-image {
    height: 2.26rem;
    margin-bottom: 0.24rem;
  }
  .section-common-detail .post-content {
    padding-bottom: 0.3rem;
  }
}
.list-latest-news {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.list-latest-news > li {
  margin-bottom: 0.12rem;
  padding-bottom: 0.08rem;
  border-bottom: 1px dashed #cbcbcb;
}
.list-latest-news > li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.list-latest-news .category-common {
  position: relative;
  z-index: 2;
  font-size: 0.12rem;
  line-height: 1;
}
.list-latest-news .news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #3b4043;
  text-decoration: none;
}
.list-latest-news .news-image {
  width: 1.16rem;
  height: 0.77rem;
}
.list-latest-news .news-category {
  margin-bottom: 0.04rem;
}
.list-latest-news .news-category .category-common {
  margin: 0 0.04rem 0.04rem 0;
}
.list-latest-news .news-title {
  margin: 0.05rem -0.05rem 0.06rem 0;
  overflow: hidden;
  font-size: 0.15rem;
  font-weight: bold;
  line-height: 1.4;
  text-decoration: underline;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.list-latest-news .news-time {
  font-family: mr-eaves-xl-modern, sans-serif;
  font-size: 0.15rem;
  font-weight: bold;
  line-height: 1.2;
}
.list-latest-news .news-link {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

@media print, (min-width: 768px) {
  .list-latest-news .news-content {
    width: 163px;
  }
}
@media only screen and (max-width: 767.98px) {
  .list-latest-news .news-image {
    margin-right: 0.14rem;
  }
  .list-latest-news .news-content {
    width: calc(100% - 1.3rem);
  }
}
.heading-common .heading-title {
  font-weight: 700;
  line-height: 1.4666666667;
}
.heading-common .heading-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 0;
}
.heading-common .heading-time {
  color: #626262;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}
.heading-common .heading-category {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-bottom: -0.04rem;
}
.heading-common .heading-category .category-common {
  margin: 0 0.04rem 0.04rem 0;
}
.heading-common .heading-event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.heading-common .event-tag,
.heading-common .event-period {
  margin-bottom: 0.1rem;
}
.heading-common .event-tag {
  display: inline-block;
  color: #fff;
  font-weight: 500;
  text-align: center;
}
.heading-common .event-period {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #c7c7c7;
  border-bottom: 1px solid #c7c7c7;
  color: #e58d02;
  font-weight: 700;
}
.heading-common .period-head {
  position: relative;
  line-height: 1.2;
}
.heading-common .period-head::before, .heading-common .period-head::after {
  content: "";
  position: absolute;
}
.heading-common .period-head::before {
  left: 0;
  background: url("../img/common/calendar_icn.svg") no-repeat center center/100% auto;
}
.heading-common .period-head::after {
  top: 0;
  right: 0;
  bottom: 0;
  border-left: 1px solid #9b9b9b;
}
.heading-common .period-time {
  font-family: mr-eaves-xl-modern, sans-serif;
  line-height: 1.2;
}

@media print, (min-width: 768px) {
  .heading-common {
    margin-bottom: 16px;
  }
  .heading-common .heading-title {
    margin-bottom: 11px;
    font-size: 0.3rem;
  }
  .heading-common .heading-time {
    margin-right: 15px;
    padding-top: 3px;
    font-size: 0.15rem;
  }
  .heading-common .heading-event {
    margin-bottom: 9px;
  }
  .heading-common .event-tag {
    min-width: 221px;
    margin: 0 27px 10px 0;
    padding: 4px 20px 6px;
    font-size: 0.17rem;
  }
  .heading-common .event-period {
    padding: 5px 13px 6px 4px;
  }
  .heading-common .period-head {
    margin-right: 10px;
    padding: 0 12px 0 32px;
    font-size: 0.18rem;
  }
  .is-mac .heading-common .period-head {
    padding-bottom: 1px;
  }
  .heading-common .period-head::before {
    top: -2px;
    width: 28px;
    height: 28px;
  }
  .heading-common .period-time {
    font-size: 0.22rem;
    position: relative;
    top: 1px;
  }
  .is-mac.is-safari .heading-common .period-time {
    top: auto;
  }
}
@media only screen and (max-width: 767.98px) {
  .heading-common {
    margin-bottom: 0.24rem;
    padding-bottom: 0.12rem;
    border-bottom: 1px solid #e5e5e5;
  }
  .heading-common .heading-title {
    margin-bottom: 0.05rem;
    font-size: 0.2rem;
  }
  .heading-common .heading-group {
    margin-bottom: 0;
  }
  .heading-common .heading-time {
    margin-right: 0.09rem;
    padding-top: 0.04rem;
    font-size: 0.13rem;
  }
  .heading-common .heading-event {
    margin-bottom: 0.03rem;
  }
  .heading-common .event-tag {
    min-width: 1.5rem;
    margin: 0 0.17rem 10px 0;
    padding: 0.04rem 0.15rem 0.05rem;
    font-size: 0.14rem;
  }
  .heading-common .event-period {
    padding: 0.05rem 0.13rem 0.06rem 0.09rem;
  }
  .heading-common .period-time {
    position: relative;
    padding-left: 0.3rem;
    font-size: 0.18rem;
  }
  .heading-common .period-time::before {
    content: "";
    position: absolute;
    top: -0.01rem;
    left: 0;
    width: 0.24rem;
    height: 0.24rem;
    background: url("../img/common/calendar_icn.svg") no-repeat center center/100% auto;
  }
}
.sidebar .category-list {
  margin-bottom: 0;
  font-weight: bold;
  line-height: 1.5;
  list-style: none;
}
.sidebar .category-list > li:last-child {
  margin-bottom: 0;
}
.sidebar .category-list a {
  display: inline-block;
  position: relative;
  color: #3b4043;
  text-decoration: underline;
}
.sidebar .category-list a::before {
  content: "";
  position: absolute;
  border-radius: 100%;
}

@media print, (min-width: 768px) {
  .sidebar .category-list {
    padding: 1px 0 6px 5px;
    font-size: 0.15rem;
  }
  .sidebar .category-list > li {
    margin-bottom: 16px;
  }
  .sidebar .category-list a {
    padding-left: 27px;
    text-underline-offset: 2px;
  }
  .sidebar .category-list a:hover {
    text-decoration: none;
  }
  .sidebar .category-list a::before {
    top: 4px;
    left: 5px;
    width: 15px;
    height: 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  .sidebar .category-list {
    padding-right: 0.05rem;
    padding-left: 0;
    font-size: 0.15rem;
  }
  .sidebar .category-list > li {
    margin-bottom: 0.1rem;
  }
  .sidebar .category-list a {
    padding-left: 0.25rem;
    text-underline-offset: 0.02rem;
  }
  .sidebar .category-list a::before {
    top: 0.05rem;
    left: 0.06rem;
    width: 0.14rem;
    height: 0.14rem;
  }
}
@media print, (min-width: 768px) {
  .section-info {
    padding: 85px 0 74px;
  }
  .section-info .list-common {
    padding-bottom: 3px;
  }
  .section-info .category-common {
    padding-right: 18px;
    padding-left: 18px;
  }
}
@media only screen and (max-width: 767.98px) {
  .section-info {
    padding: 0.4rem 0 0.66rem;
  }
  .section-info .list-common {
    padding-bottom: 0.03rem;
  }
  .section-info .pagination-common {
    margin-top: 0.56rem;
  }
}
@media print, (min-width: 768px) {
  .section-common-detail .post-content {
    padding-bottom: 52px;
  }
  .section-common-detail .heading-common .heading-time {
    margin-right: 13px;
  }
}
@media only screen and (max-width: 767.98px) {
  .section-common-detail {
    padding-top: 0.41rem;
    padding-bottom: 0.8rem;
  }
  .section-common-detail .heading-title {
    margin-right: -0.05rem;
  }
  .section-common-detail .post-content {
    padding-bottom: 0.25rem;
  }
}
/*# sourceMappingURL=info.css.map */