@charset "UTF-8";
a {
  transition: 0.2s;
}

.breadcrumb_area {
  position: relative;
  z-index: 2;
}

.content {
  padding-top: 100px !important;
  background-color: #fff;
}
@media (max-width: 768px) {
  .content {
    padding-top: 50px !important;
  }
}

.site-header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.site-header__skip {
  position: absolute;
  left: -9999px;
}
.site-header__skip:focus {
  left: 16px;
  top: 8px;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 110;
}
@media (max-width: 768px) {
  .site-header__skip:focus {
    top: 60px;
  }
}
.site-header__logo {
  width: 180px;
}
.site-header__top {
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  height: 60px;
  overflow: hidden;
  transition: opacity 0.15s, -webkit-transform 0.15s;
  transition: transform 0.15s, opacity 0.15s;
  transition: transform 0.15s, opacity 0.15s, -webkit-transform 0.15s;
}
@media (max-width: 768px) {
  .site-header__top {
    padding: 8px 12px;
    max-width: 100%;
  }
}
.site-header__logo img {
  max-height: 40px;
}
@media (max-width: 768px) {
  .site-header__logo img {
    max-height: 32px;
  }
}
.site-header__utilities {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .site-header__utilities {
    display: none;
  }
}
.site-header__toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}
@media (max-width: 768px) {
  .site-header__toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 4px 6px;
  }
}
.site-header__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
  margin: 4px 0;
}
@media (max-width: 768px) {
  .site-header__toggle-bar {
    margin: 2px 0;
  }
}
.site-header__bottom {
  background-color: #284691;
  transition: margin-top 0.1s;
}
@media (max-width: 768px) {
  .site-header__bottom {
    display: none;
    position: fixed;
    inset: 56px 0 0 0;
    background: #fff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .site-header__bottom.is-open {
    display: block;
  }
}

.font-size-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
}
.font-size-switch button {
  border: 1px solid #ccc !important;
  background: #fff;
  padding: 2px 8px !important;
  cursor: pointer;
}

.utility-nav ul {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.utility-nav ul a {
  text-decoration: none;
  font-size: 14px;
}

.global-nav {
  margin: 0 auto;
  padding: 0 16px;
}
@media (max-width: 768px) {
  .global-nav {
    max-width: 100%;
    padding: 8px 0 24px;
  }
}
.global-nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .global-nav__list {
    flex-direction: column;
    gap: 0;
  }
}
.global-nav__item {
  line-height: 1;
}
@media (max-width: 768px) {
  .global-nav__item {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
}
.global-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 12px;
  text-decoration: none;
  color: #fff !important;
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .global-nav__link {
    width: 100%;
    justify-content: space-between;
    padding: 14px 16px;
    color: #284691 !important;
    font-size: 0.9375rem;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .global-nav__item.has-mega .global-nav__link::after {
    content: "+";
    font-size: 1.25rem;
    margin-left: auto;
  }
  .global-nav__item.has-mega .global-nav__link[aria-expanded=true]::after {
    content: "−";
  }
}

.mega-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100vw;
  background: #f7f7f7;
  border-top: 1px solid #e5e5e5;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
  transition: opacity 0.18s ease-out, visibility 0.18s ease-out, -webkit-transform 0.18s ease-out;
  transition: opacity 0.18s ease-out, transform 0.18s ease-out, visibility 0.18s ease-out;
  transition: opacity 0.18s ease-out, transform 0.18s ease-out, visibility 0.18s ease-out, -webkit-transform 0.18s ease-out;
  /* 通常 hover */
}
@media (hover: hover) and (pointer: fine) {
  .global-nav__item.has-mega:hover .mega-menu, .global-nav__item.has-mega.is-mega-active .mega-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .mega-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
            transform: none;
    border-top: none;
    display: none;
    transition: none;
  }
}
.mega-menu__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  padding: 20px 16px 40px;
}
@media (max-width: 768px) {
  .mega-menu__inner {
    padding: 10px 16px 14px;
  }
}
@media (min-width: 768px) {
  .mega-menu-top {
    margin: 10px 0 24px;
  }
  .mega-menu-top__list {
    display: flex;
    gap: 24px;
  }
  .mega-menu-top__list li {
    flex: 1 1 0;
  }
  .mega-menu-top__list a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 74px;
    border: 1px solid #284691;
    background-color: #fff;
    font-size: 1.125rem;
    color: #284691;
  }
  .mega-menu-top__list a::after {
    content: "→";
    padding-left: 5px;
  }
  .mega-menu-top__list a:hover {
    background-color: #284691;
    color: #fff;
  }
  .mega-menu-top__list a:hover::after {
    -webkit-transform: translateX(3px);
            transform: translateX(3px);
  }
  .mega-menu-top__list a.link-blue {
    background-color: #284691;
    color: #fff;
  }
  .mega-menu-top__list a.link-blue:hover {
    background-color: #fff;
    color: #284691;
  }
}
.mega-menu-body {
  display: flex;
  gap: 24px;
}
@media (max-width: 768px) {
  .mega-menu-body {
    flex-direction: column;
    gap: 12px;
  }
}
.mega-menu__col {
  min-width: 200px;
}
@media (min-width: 768px) {
  .mega-menu__col.col3 {
    flex: 3 1 0;
  }
  .mega-menu__col.col2 {
    flex: 2 1 0;
  }
  .mega-menu__col.col1 {
    flex: 1 1 0;
  }
}
@media (max-width: 768px) {
  .mega-menu__col {
    min-width: auto;
  }
}
.mega-menu__col > .mega-menu__title {
  font-weight: 700;
  font-size: 0.875rem;
  margin: 0 0 8px;
}
@media (max-width: 768px) {
  .mega-menu__col > .mega-menu__title {
    margin-bottom: 4px;
  }
}
.mega-menu__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .mega-menu__col ul li + li {
    margin-top: 2px;
  }
}
.mega-menu__col ul a {
  text-decoration: none;
  display: block;
}
@media (max-width: 768px) {
  .mega-menu__col ul a {
    padding: 4px 0;
  }
}
@media (min-width: 768px) {
  .mega-menu__col ul.mega-menu__button {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }
  .mega-menu__col ul.mega-menu__button a {
    display: flex;
    align-items: flex-end;
    aspect-ratio: 265/118;
    border: 1px solid #e5e5e5;
    background-color: #eee;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .mega-menu__col ul.mega-menu__button a:hover {
    opacity: 0.7;
  }
  .mega-menu__col ul.mega-menu__button li {
    width: calc((100% - 48px) / 3);
  }
  .mega-menu__col ul.mega-menu__list a {
    text-indent: -1em;
    padding-left: 1em;
  }
  .mega-menu__col ul.mega-menu__list a::before {
    content: ">";
    padding-right: 5px;
  }
  .mega-menu__col ul.mega-menu__list a::before:hover {
    text-decoration: underline;
  }
}

@media (hover: hover) and (pointer: fine) {
  .global-nav__item.has-mega.is-current.is-hover-locked .mega-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.site-header.is-scrolled .site-header__top {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.site-header.is-scrolled .site-header__bottom {
  margin-top: -60px;
  border-top: none;
}

.header-search {
  border-bottom: 1px solid #284691;
}

@media (min-width: 768px) {
  .button-title {
    display: block;
    width: 100%;
    padding: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    text-align: center;
  }
  .global-nav__item.--nav01 .mega-menu__search a,
  .global-nav__item.--nav01 .menu-product__list a,
  .global-nav__item.--nav01 .menu-product-category__list a,
  .global-nav__item.--nav01 .menu-product-news a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    background-color: #fff;
    min-height: 60px;
    line-height: 1.3;
  }
  .global-nav__item.--nav01 .mega-menu__search a:hover,
  .global-nav__item.--nav01 .menu-product__list a:hover,
  .global-nav__item.--nav01 .menu-product-category__list a:hover,
  .global-nav__item.--nav01 .menu-product-news a:hover {
    opacity: 0.7;
  }
  .global-nav__item.--nav01 .mega-menu__search {
    margin-bottom: 12px;
    background-color: #F2F6F8;
  }
  .global-nav__item.--nav01 .mega-menu__search--list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px;
  }
  .global-nav__item.--nav01 .mega-menu__search--list li {
    width: calc((100% - 48px) / 5);
  }
  .global-nav__item.--nav01 .mega-menu__search--list a {
    aspect-ratio: 1/1;
    font-size: 1.125rem;
  }
  .global-nav__item.--nav01 .mega-menu__search--input {
    padding: 0 12px 12px;
  }
  .global-nav__item.--nav01 .mega-menu__search--input .menu-form {
    display: flex;
    border: 1px solid #e5e5e5;
    border-radius: 999px;
    background-color: #fff;
    overflow: hidden;
  }
  .global-nav__item.--nav01 .mega-menu__search--input input {
    border: 0;
    padding: 0 10px;
    width: 80%;
    height: 36px;
  }
  .global-nav__item.--nav01 .mega-menu__search--input input:focus {
    outline: 0;
  }
  .global-nav__item.--nav01 .mega-menu__search--input button {
    margin-left: 0;
    border: 0;
    background-color: #f7f7f7;
    width: 20%;
    height: 36px;
  }
  .global-nav__item.--nav01 .menu-product__list,
  .global-nav__item.--nav01 .menu-product-category__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .global-nav__item.--nav01 .menu-product__list li,
  .global-nav__item.--nav01 .menu-product-category__list li {
    width: calc(50% - 6px);
  }
  .global-nav__item.--nav01 .menu-product__list {
    margin-bottom: 12px;
  }
  .global-nav__item.--nav01 .menu-product__list a {
    background-color: #284691;
    color: #fff;
  }
  .global-nav__item.--nav01 .mega-menu-top__list {
    flex-direction: column;
    gap: 12px;
  }
  .global-nav__item.--nav01 .mega-menu-top__list a {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .global-nav__item.--nav02 .list01 {
    background-image: url(../img/ir-link2__box02.jpg);
  }
  .global-nav__item.--nav02 .list02 {
    background-image: url(/assets/img/ir/ir_bg_company.jpg);
  }
  .global-nav__item.--nav02 .list03 {
    background-image: url(/assets/img/ir/ir_bg_finance.jpg);
  }
  .global-nav__item.--nav02 .list04 {
    background-image: url(/assets/img/ir/ir_bg_documents.jpg);
  }
  .global-nav__item.--nav02 .list05 {
    background-image: url(/assets/img/ir/ir_bg_stock.jpg);
  }
  .global-nav__item.--nav02 .list06 {
    background-image: url(../img/bg-investor.jpg);
  }
  .global-nav__item.--nav03 .mega-menu__title {
    margin-bottom: 12px;
    font-weight: 500;
  }
  .global-nav__item.--nav03 .mega-menu__list li + li {
    margin-top: 8px;
  }
  .global-nav__item.--nav03 .mega-menu__list a {
    font-size: 0.875rem;
    line-height: 1.4;
  }
  .global-nav__item.--nav03 .nav03-data__imgbutton a {
    display: flex;
    align-items: flex-end;
    aspect-ratio: 265/118;
    border: 1px solid #e5e5e5;
    background: url(/assets/img/sustainability/ph-materiality.jpg) center/cover no-repeat;
  }
  .global-nav__item.--nav03 .nav03-data__imgbutton a:hover {
    opacity: 0.7;
  }
  .global-nav__item.--nav03 .nav03-data__button {
    margin-top: 12px;
  }
  .global-nav__item.--nav03 .nav03-data__button a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    border: 1px solid #284691;
    border-radius: 999px;
    background-color: #fff;
  }
  .global-nav__item.--nav03 .nav03-data__button a:hover {
    opacity: 0.7;
  }
  .global-nav__item.--nav04 .mega-menu-body {
    margin-top: 10px;
  }
  .global-nav__item.--nav04 .nav4-button01 {
    background-image: url(/assets/img/rd/ph-policy.jpg);
  }
  .global-nav__item.--nav04 .nav4-button02 {
    background-image: url(/assets/img/rd/ph-structure.jpg);
  }
  .global-nav__item.--nav04 .nav4-button03 {
    background-image: url(/assets/img/rd/ph-clinical-development.jpg);
  }
  .global-nav__item.--nav04 .nav4-button04 {
    background-image: url(/assets/img/rd/ph-words.jpg);
  }
  .global-nav__item.--nav04 .nav4-button05 {
    background-image: url(/assets/img/rd/pn-partnering.jpg);
  }
  .global-nav__item.--nav04 .nav4-button06 {
    background-image: url(/assets/img/rd/ph-ethical-considerations.jpg);
  }
  .global-nav__item.--nav06 .link-img {
    background-image: url(/assets/img/corporate/ph_corporate_message.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .global-nav__item.--nav06 .nav6-button01 {
    background-image: url(/assets/img/corporate/ph-dna.jpg);
  }
  .global-nav__item.--nav06 .nav6-button02 {
    background-image: url(/assets/img/corporate/ph-history.jpg);
  }
  .global-nav__item.--nav06 .nav6-button03 {
    background-image: url(/assets/img/corporate/ph-history.jpg);
  }
  .global-nav__item.--nav06 .nav6-button04 {
    background-image: url(/assets/img/corporate/ph-dx.jpg);
  }
  .global-nav__item.--nav06 .mega-menu-top__list a + a {
    margin-top: 12px;
  }
  .global-nav__item.--nav06 .mega-menu-top__list .link-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-color: #e5e5e5;
    background-color: #eee;
  }
  .global-nav__item.--nav06 .mega-menu-top__list .link-img::after {
    content: none;
  }
  .global-nav__item.--nav06 .mega-menu-top__list .link-img:hover {
    opacity: 0.7;
    color: #284691;
  }
  .global-nav__item.--nav06 .mega-menu__button {
    display: flex;
    gap: 24px;
  }
  .global-nav__item.--nav06 .mega-menu__button li {
    flex: 1 1 0;
  }
  .global-nav__item.--nav06 .mega-menu__button li a {
    display: flex;
    align-items: flex-end;
    aspect-ratio: 265/118;
    border: 1px solid #e5e5e5;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .global-nav__item.--nav06 .mega-menu__button li a:hover {
    opacity: 0.7;
  }
  .global-nav__item.--nav06 .mega-menu__col {
    margin-top: 16px;
    width: 100%;
  }
  .global-nav__item.--nav06 .nav06-data__list {
    display: flex;
    gap: 16px;
  }
  .global-nav__item.--nav06 .nav06-data__list > li {
    padding: 15px;
    background-color: #F2F6F8;
  }
  .global-nav__item.--nav06 .nav06-data__list > li.col3 {
    flex: 3 1 0;
  }
  .global-nav__item.--nav06 .nav06-data__list > li.col1 {
    flex: 1 1 0;
  }
  .global-nav__item.--nav06 .nav06-data__list > li > a {
    display: inline-block;
    margin-bottom: 8px;
    font-weight: 500;
  }
  .global-nav__item.--nav06 .nav06-data__list .data-child {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
  .global-nav__item.--nav06 .nav06-data__list .data-child li {
    width: calc((100% - 32px) / 3);
  }
  .global-nav__item.--nav06 .nav06-data__list .data-child a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    border: 1px solid #284691;
    border-radius: 999px;
    background-color: #fff;
    font-size: 0.875rem;
  }
  .global-nav__item.--nav06 .nav06-data__list .data-child a:hover {
    opacity: 0.7;
  }
  .global-nav__item.--nav06 .nav06-data__list .data-child.data-vertical {
    flex: 1 0 0;
    flex-direction: column;
  }
  .global-nav__item.--nav06 .nav06-data__list .data-child.data-vertical li {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .pc-flex {
    display: flex;
    gap: 24px;
  }
  .pc-flex-item {
    flex: 1 1 0;
  }
}
.site-footer {
  position: relative;
  z-index: 10;
  background: #284691;
}
.site-footer a {
  color: #fff !important;
}
.site-footer__wrap {
  padding-top: 30px;
}
.site-footer__inner {
  width: min(1100px, 90%);
  margin: 0 auto;
}
.site-footer__row {
  display: flex;
}
.site-footer__col {
  width: 100%;
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.site-footer__links li {
  margin-bottom: 6px;
  list-style: none;
  text-align: center;
}
.site-footer__links li a {
  text-decoration: none;
}
.site-footer__links--primary {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 24px;
}
.site-footer__links--primary li {
  width: calc((100% - 60px) / 4);
}
@media (max-width: 767px) {
  .site-footer__links--primary {
    display: none;
  }
}
.site-footer__links--secondary {
  padding-top: 24px;
  border-top: 1px solid #fff;
}
@media (max-width: 767px) {
  .site-footer__links--secondary {
    padding-top: 0;
    border: 0;
  }
}
.site-footer__links--secondary a {
  font-size: 0.875rem;
}
.site-footer__sns {
  padding: 16px 0;
  text-align: center;
}
.site-footer__sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1;
}
.site-footer__sns a::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20id%3D%22_x32_%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%22512px%22%20height%3D%22512px%22%20viewBox%3D%220%200%20512%20512%22%20style%3D%22width%3A%20256px%3B%20height%3A%20256px%3B%20opacity%3A%201%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%234B4B4B%3B%7D%3C%2Fstyle%3E%3Cg%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M482.703%2C98.813C456.469%2C77.625%2C363.953%2C61%2C256%2C61S55.531%2C77.625%2C29.297%2C98.813C5.188%2C118.25%2C0%2C206.125%2C0%2C256%20s5.188%2C137.75%2C29.297%2C157.188C55.531%2C434.375%2C148.047%2C451%2C256%2C451s200.469-16.625%2C226.703-37.813%20C506.813%2C393.75%2C512%2C305.875%2C512%2C256S506.813%2C118.25%2C482.703%2C98.813z%20M332.813%2C258.406l-118.844%2C70.938%20c-0.875%2C0.5-1.938%2C0.531-2.813%2C0.031s-1.422-1.438-1.422-2.438V256v-70.938c0-1.016%2C0.547-1.938%2C1.422-2.438%20s1.938-0.469%2C2.813%2C0.031l118.844%2C70.938c0.844%2C0.5%2C1.359%2C1.406%2C1.359%2C2.406C334.172%2C256.969%2C333.656%2C257.906%2C332.813%2C258.406z%22%20style%3D%22fill%3A%20rgb(255%2C255%2C255)%3B%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") center center/contain no-repeat;
}
.site-footer__copywrap {
  border-top: 1px solid #fff;
  text-align: center;
  padding: 12px 0;
}
.site-footer__copy {
  font-size: 0.75rem;
  color: #fff;
}

.top-hero-area {
  margin: 0 auto !important;
  padding: 0 !important;
  max-width: 100% !important;
  aspect-ratio: auto !important;
  height: 580px;
  overflow: hidden;
  position: relative;
  z-index: 10;
  background-color: #fff;
}
.top-hero-area .slick-slider,
.top-hero-area .slick-track,
.top-hero-area .slick-list {
  height: 100%;
}
.top-hero-area a {
  display: block;
  position: relative;
  height: 100%;
}

.top-hero-text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.8);
}
.top-hero-text .inr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1240px !important;
  height: 100%;
}
.top-hero-text .inr > * {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.top-hero-text__left--catch {
  font-size: 1rem;
}
.top-hero-text__left--title {
  font-size: 1.5rem;
  font-weight: 500;
}
.top-hero-text__right--button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 40px;
  background-color: #fff;
  color: #284691 !important;
  border: 1px solid #284691;
  border-radius: 999px;
  font-size: 1rem;
  text-decoration: none;
}
.top-hero-text__right--button::after {
  content: "→";
  margin-left: 5px;
}

.bg-w {
  background-color: #fff;
  position: relative;
  z-index: 10;
}

.top-news {
  padding: 80px 0 160px;
}
.top-news .info_area .info_list {
  height: 270px;
}
.top-news .info_area .info_list dl {
  padding: 12px;
}
.top-news .info_area .info_list a {
  font-size: 1rem !important;
}
.top-news .inr {
  max-width: 1240px !important;
}
.top-news .top-tab {
  gap: 0;
}
.top-news .top-tab li {
  width: 33.3333333333%;
  border-radius: 0;
}
.top-news .top-tab li + li {
  border-left: 0 !important;
}
.top-news .info_readmore {
  margin-top: 10px;
}
.top-news .info_readmore a {
  font-size: 1rem !important;
}

.sec-vision {
  position: relative;
  padding: 160px 0 0;
}
.sec-vision .inr {
  max-width: 1240px;
}
.sec-vision .vision-inner {
  position: relative;
  z-index: 1;
  min-height: 350px;
}
.sec-vision .vision-inner::before {
  content: "";
  display: block;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../img/AdobeStock_498657379_Preview.jpg) center/cover no-repeat;
}
.sec-vision .vision-box {
  position: absolute;
  top: -80px;
  left: calc(50% - 550px);
  background-color: rgba(255, 255, 255, 0.65);
  box-shadow: -2px 0 16px 10px rgba(240, 240, 240, 0.9);
  width: 550px;
  height: 510px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.sec-vision .vision-box__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 360px;
  height: 60px;
  margin: 0 auto;
  background-color: #fff;
  color: #284691 !important;
  border: 1px solid #284691;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.375rem;
  text-decoration: none;
}
.sec-vision .vision-box__button:hover {
  background: #284691;
  color: #fff !important;
}
.sec-vision .vision-title {
  margin-top: 0;
  font-size: 2.875rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}
.sec-vision .vision-subtitle {
  margin: 30px 0 50px;
}
.sec-vision .vision-lead {
  font-size: 1.25rem;
  margin-bottom: 6px;
  display: block;
}
.sec-vision .vision-desc {
  font-size: 1.125rem;
  font-weight: 400;
}

.feature-inner {
  height: 600px;
  background-color: #F2F6F8;
}

.sec-feature {
  padding-top: 80px;
}
.sec-feature .feature-item {
  display: flex;
  align-items: center;
  height: 600px;
}
.sec-feature .feature-img {
  min-height: 480px;
  width: 840px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  box-shadow: -2px 0 10px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}
.sec-feature .feature-title {
  font-size: 1.75rem;
}
.sec-feature .feature-link {
  display: block;
  position: relative;
  z-index: 10;
  text-decoration: none;
  color: inherit;
}
.sec-feature .feature-text {
  width: 660px;
  background: #fff;
  padding: 50px;
  transition: 0.3s;
}
.sec-feature .line-group {
  margin: 25px 0;
}
.sec-feature .line-blue,
.sec-feature .line-blue-alt,
.sec-feature .line-green,
.sec-feature .line-green-alt {
  display: block;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  margin: 10px 0;
  width: 0;
}
.sec-feature .line-blue,
.sec-feature .line-blue-alt {
  border-bottom-color: #33a0df;
}
.sec-feature .line-green,
.sec-feature .line-green-alt {
  border-bottom-color: #22ac38;
}
.sec-feature .feature-text.is-show .line-blue-alt,
.sec-feature .feature-text.is-show .line-green-alt {
  width: 100%;
  -webkit-animation: nobasu 1s linear forwards;
          animation: nobasu 1s linear forwards;
}

/* 左画像・右テキスト（研究開発） */
#research .feature-item.is-leftimg .feature-img {
  order: 0;
  background-image: url(../img/AdobeStock_565867383_Preview.jpeg);
}
#research .feature-item.is-leftimg .feature-link {
  left: -140px;
}
#research .feature-item.is-leftimg .feature-text:hover {
  background: #f8fcff;
}

/* 右画像・左テキスト（サステナビリティ） */
#sustainability .feature-item.is-rightimg {
  justify-content: flex-end;
}
#sustainability .feature-item.is-rightimg .feature-img {
  order: 1;
  background-image: url(../img/bg-sustainability.jpg);
}
#sustainability .feature-item.is-rightimg .feature-link {
  left: 140px;
}
#sustainability .feature-item.is-rightimg .feature-text:hover {
  background: #f7fff3;
}

@-webkit-keyframes nobasu {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes nobasu {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.business-img {
  overflow: hidden;
  position: relative;
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.business-img img {
  transition: -webkit-transform 0.7s ease-out;
  transition: transform 0.7s ease-out;
  transition: transform 0.7s ease-out, -webkit-transform 0.7s ease-out;
}
.business-img:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (max-width: 1480px) {
  .business-img {
    height: 390px;
  }
}
.sec-business {
  padding: 60px 0 80px;
  background: #fff;
}
.sec-business .business-wrap {
  display: flex;
  justify-content: space-between;
}
.sec-business .business-block {
  width: 50%;
}
.sec-business .business-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  height: 56px;
  border-radius: 999px;
  border: 2px solid #fff;
  color: #fff !important;
  font-size: 1.5rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  transition: 0.3s;
  opacity: 0;
}
.sec-business .business-imglink {
  position: relative;
  display: block;
  text-decoration: none;
}
.sec-business .business-imglink:hover .business-hover {
  opacity: 1;
}
.sec-business .business-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-top: 40px;
}
.sec-business .business-btns {
  margin: 40px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.sec-business .business-btns.two-grid {
  width: 470px;
}

/* ボタン（IR・グループ事業のリンク）
   ------------------------------------------------------- */
a.btn-secondary {
  color: #000;
  font-size: 0.875rem;
  text-decoration: none;
}

.btn-secondary {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 220px;
  height: 40px;
  padding-right: 40px;
  border-bottom: 1px solid #809fb9;
  background: #fff;
  transition: 0.3s;
}

a.btn-secondary.btnLink::before, a.btn-secondary.btnLink::after {
  position: absolute;
  top: 23px;
  right: 20px;
  content: "";
  transition: 0.3s;
  -webkit-animation: 5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite alternate;
          animation: 5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite alternate;
}
a.btn-secondary.btnLink::before {
  width: 40px;
  height: 1px;
  background: #000;
}
a.btn-secondary.btnLink::after {
  top: 18px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 0 10px;
  border-color: transparent transparent transparent #000;
}
a.btn-secondary.btnLink:hover::before, a.btn-secondary.btnLink:hover::after {
  -webkit-animation-name: arrow;
          animation-name: arrow;
}

.secondary-keyvisual {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 320px;
  overflow: hidden;
}
.secondary-keyvisual .inr {
  display: flex;
  align-items: stretch;
  height: 100%;
}
.secondary-keyvisual__title {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  width: 36%;
  font-size: 2.25rem;
  font-weight: 400;
  color: #284691;
  text-align: center;
}
.page-sustainability .secondary-keyvisual {
  background-image: url(../img/bg-sustainability-top.jpg);
}
.page-corporate .secondary-keyvisual {
  background-image: url(../img/bg-corporate.jpg);
}
.page-rd .secondary-keyvisual {
  background-image: url(../img/bg-rd.jpg);
}
.page-fertility-treatment .secondary-keyvisual {
  background-image: url(/assets/img/fertility-treatment/bg-fertility-treatment.jpg);
}

.is-second .content_area .inr {
  width: 100%;
  max-width: 1082px;
  padding: 1.875rem 1.5625rem;
}
.is-second .content_area a {
  text-decoration: none !important;
}
@media (min-width: 768px) {
  .is-second .ir-category-block {
    gap: 36px !important;
    margin-top: 3.75rem !important;
  }
}
.is-second .ir-category-block p {
  margin: 16px 0 0 !important;
}

.is-lower .content_area .inr {
  width: 100%;
  max-width: 1082px;
  padding: 1.875rem 1.5625rem;
}
.is-lower .content_area h2.wp-block-heading {
  position: relative;
  color: #284691;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  margin-top: 3.75rem;
  margin-bottom: 0.9375rem;
  padding-bottom: 12px;
}
.is-lower .content_area h2.wp-block-heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #e5e5e5;
}
.is-lower .content_area h2.wp-block-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: #284691;
}
.is-lower .content_area h3.wp-block-heading {
  margin-top: 24px;
  color: #284691;
  font-size: 1.25rem;
  font-weight: 500;
}

.page-sibling-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-left: 1px solid #d3dce6;
  margin-bottom: 2rem;
}
.page-sibling-nav__list a {
  position: relative;
  display: block;
  padding: 0.85rem 1rem;
  color: #4b6591;
  text-decoration: none !important;
  border: none;
  border-right: 1px solid #d3dce6;
  background-color: #fff;
  letter-spacing: 0.03em;
  transition: 0.2s;
}
.page-sibling-nav__list a:hover {
  background-color: #f5f8fc;
}
.page-sibling-nav__list a:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #b7c7dd;
}
.page-sibling-nav__list li {
  flex: 1 1 33.333%;
  margin-bottom: 0 !important;
  border-bottom: 2px solid #d9e2ec;
}
.page-sibling-nav__list li:nth-child(n+4) {
  flex: 1 1 25%;
}
.page-sibling-nav__list li.is-current span, .page-sibling-nav__list li.is-current a {
  position: relative;
  display: block;
  padding: 0.85rem 1.8rem;
  height: 100%;
  color: #1A4C8A;
  font-weight: 700;
  background-color: #eef3fb;
  pointer-events: none;
}
.page-sibling-nav__list li.is-current span::after, .page-sibling-nav__list li.is-current a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #1A4C8A;
}
.page-sibling-nav__list.narrow li {
  flex: 1 1 20%;
}

.ir.top .ir-keyvisual {
  background-image: url(../img/bg-ir.jpg);
}
.ir.top .ir-keyvisual-investor {
  background: url(../img/bg-investor.jpg) center/cover no-repeat;
}
.ir.top .ir-keyvisual-investor__title {
  color: #284691;
}
.ir.top .ir-link2 {
  padding: 60px 25px 0 !important;
}
.ir.top .ir-link2 .ir-link2__box01 {
  background-image: url(../img/ir-link2__box01.jpg);
  overflow: hidden;
}
.ir.top .ir-link2 .ir-link2__box01 span {
  display: block;
  padding: 20px 30px;
}
.ir.top .ir-link2 .ir-link2__box01 span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50vw;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 25px rgba(102, 102, 102, 0.15);
  z-index: -1;
}
.ir.top .ir-link2 .ir-link2__box02 {
  background-image: url(../img/ir-link2__box02.jpg);
}
.ir.top .ir-link2 .ir-link2__box07 {
  background-image: url(../img/bg-sustainability.jpg);
}
.ir.top .ir-link2 .ir-link2__box06 {
  background-image: url(../img/bg-investor.jpg);
  background-position: right center;
}
.ir.top .ir-link2 .ir-link2__box08 {
  background-image: url(../img/bg-faq.jpg);
}
.ir.top .ir-link3__box {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.ir.top .ir-link3__box.box01 {
  background-image: url(../img/bg-data.jpg);
}
.ir.top .ir-link3__box.box02 {
  background-image: url(../img/bg-mail.jpg);
}
.ir.top .ir-link3__box.box03 {
  background-image: url(../img/bg-access.jpg);
}
.ir.top .ir-message-banner__title {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .ir.top .ir-message-banner__title {
    font-size: 1rem;
  }
}
.ir.top .ir-message-banner__subtitle {
  font-size: 1.125rem;
}
.ir.top .ir-link2__box .ttl2 a {
  font-size: 1.5rem;
  color: #333 !important;
}
.ir.top .ir-link2__box .ttl2 a:hover {
  text-decoration: none !important;
}
.ir.top .ir-keyvisual .inr {
  flex-direction: row;
  align-items: center;
  gap: 5%;
}
.ir.top .ir-keyvisual-inner__left {
  width: 50%;
}
.ir.top .ir-keyvisual-inner__right {
  width: 45%;
}
.ir.top #sw-stock-board[data-sw-temp-id=S-0009b-2] [data-sw-id-name=tradeDate] {
  display: block;
  text-align: right;
}
.ir.top .data-flex {
  display: flex;
  gap: 10px;
}
.ir.top .data-flex dl {
  flex: 1 1 0;
}
.ir.top .data-flex dl + dl {
  position: relative;
}
.ir.top .data-flex dl + dl::before {
  content: "";
  position: absolute;
  top: 0;
  left: -5px;
  width: 1px;
  height: 100%;
  background-color: #ccc;
}

[lang=ja] .ir .visual_area.ver {
  background: #F2F6F8;
}
[lang=ja] .ir .visual_area.ver .inr {
  height: 140px;
}
[lang=ja] .ir .visual_area.ver .inr br {
  display: none;
}
[lang=ja] .ir .visual_area.ver h1 {
  color: #284691;
  text-shadow: none;
}
[lang=ja] .ir .visual_area.ver h1 span.ttl_main {
  display: none;
}
[lang=ja] .ir .visual_area.ver h1 span.ttl_sub {
  margin: 0;
  font-size: 2.375rem;
  font-weight: 500;
}

.xj-list-label-kzmonthly {
  background: #003399 !important;
}

@media (max-width: 768px) {
  .ir-message-banner {
    margin: 40px 0;
    padding: 0 4%;
    height: 120px !important;
  }
  .ir-message-banner img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .ir-news-calendar {
    padding: 0 4% !important;
  }
  .ir-calendar-box {
    border-left: 0 !important;
  }
  .ir.top .ir-link2 {
    padding: 40px 4% 0 !important;
  }
  .ir-link2__box {
    padding: 2rem 0 0 !important;
    width: 100% !important;
    height: auto !important;
  }
  .ir-link2__box.ir-link2__box01 {
    padding: 0 !important;
    min-height: auto !important;
    height: auto !important;
  }
  .ir.top .ir-link2__box .ttl2 a {
    font-size: 1.2rem;
  }
  .ir-link2__box.full a {
    justify-content: center;
  }
}
.investor-top-box a {
  text-decoration: none !important;
}
.investor-top-box a:hover p {
  text-decoration: underline !important;
  text-underline-offset: 2px;
}
.investor-top-box__image {
  aspect-ratio: 240/200;
}
.investor-top-box__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.investor-bottom a {
  text-decoration: none !important;
}
.investor-bottom a:hover {
  text-decoration: underline !important;
  text-underline-offset: 2px;
}
.investor-bottom .ir-link2__text {
  margin-top: 0.75rem;
  text-align: left;
  color: #333;
}
.investor-bottom .ir-link2__box08 {
  background-image: url(../img/bg-faq.jpg);
}

.page-corporate.top {
  overflow-x: hidden;
}
.page-corporate.top img {
  transition: 0.3s;
}
.page-corporate.top a:hover img {
  opacity: 0.7;
}

.corporate-catch {
  display: flex;
  justify-content: center;
  margin: 60px 0 0;
  font-size: 18px;
}

.corporate-link-inner {
  display: flex;
  gap: 30px;
}
.corporate-link-item {
  flex: 1 1 calc(50% - 15px);
}
.corporate-link-item__title {
  margin-bottom: 30px;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  border-bottom: 2px solid #284691;
}
.corporate-link-item__title a {
  color: #333 !important;
}
.corporate-link-item__list {
  display: flex;
  flex-wrap: wrap;
}
.corporate-link-item__list li {
  width: 50%;
  margin-bottom: 5px;
}
.corporate-link-item__list a {
  display: flex;
  align-items: center;
}
.corporate-link-item__list a::before {
  content: "";
  width: 1rem;
  height: 1rem;
  margin-right: 6px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M12%200c-6.627%200-12%205.373-12%2012s5.373%2012%2012%2012%2012-5.373%2012-12-5.373-12-12-12zm-1.568%2018.005l-1.414-1.415%204.574-4.59-4.574-4.579%201.414-1.416%205.988%205.995-5.988%206.005z%22%20fill%3D%22%23284691%22%2F%3E%3C%2Fsvg%3E") left center/cover no-repeat;
}

.corporate-img-link {
  margin-top: 60px;
}
.corporate-img-link__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.corporate-img-link__item {
  width: calc(50% - 15px);
}
.corporate-img-link__item figure {
  margin-bottom: 5px;
}
.corporate-img-link__item figure img {
  aspect-ratio: 550/200;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.corporate-img-link__item h3 {
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.corporate-img-link__item h3::before {
  content: "";
  margin: 3px 5px 0 0;
  width: 6px;
  height: 6px;
  border-right: 2px solid #284691;
  border-bottom: 2px solid #284691;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.corporate-business {
  position: relative;
  margin-top: 60px;
  padding: 60px 0;
  background-color: #F2F6F8;
  z-index: 1;
}
.corporate-business::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  background-color: #F2F6F8;
  width: 100vw;
  height: 100%;
  z-index: -1;
}
.corporate-business__title {
  font-size: 1.5rem;
  text-align: center;
}
.corporate-business-inner {
  display: flex;
  gap: 56px;
}
.corporate-business-col {
  padding-top: 30px;
}
.corporate-business-col.col01 {
  flex: 2 1 0;
}
.corporate-business-col.col01 .corporate-business-col__list {
  flex-wrap: wrap;
}
.corporate-business-col.col01 .corporate-business-col__list li {
  width: calc(50% - 15px);
}
.corporate-business-col.col02 {
  flex: 0.955 1 0;
}
.corporate-business-col.col02 .corporate-business-col__list {
  flex-direction: column;
}
.corporate-business-col__title {
  margin-bottom: 30px;
  padding-bottom: 8px;
  border-bottom: 2px solid #284691;
  font-size: 1.25rem;
  text-align: center;
}
.corporate-business-col__list {
  display: flex;
  gap: 30px;
}
.corporate-business-col__list figure {
  margin-bottom: 5px;
}
.corporate-business-col__list figure img {
  aspect-ratio: 338/140;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.corporate-business-col__list h4 {
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.corporate-business-col__list h4::before {
  content: "";
  margin: 3px 5px 0 0;
  width: 6px;
  height: 6px;
  border-right: 2px solid #284691;
  border-bottom: 2px solid #284691;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.corporate-business-text__title {
  display: block;
  line-height: 1;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #eee;
}
.corporate-business-text__title:hover {
  opacity: 0.7;
}

.page-sustainability.top img {
  transition: 0.3s;
}
.page-sustainability.top a:hover img {
  opacity: 0.7;
}

.sustainability-img-link {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .sustainability-img-link {
    margin-top: 40px;
  }
}
.sustainability-img-link__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 768px) {
  .sustainability-img-link__inner {
    gap: 20px;
  }
}
.sustainability-img-link__item {
  width: calc((100% - 60px) / 3);
}
@media (max-width: 768px) {
  .sustainability-img-link__item {
    width: calc(50% - 10px);
  }
}
.sustainability-img-link__item figure {
  margin-bottom: 5px;
}
.sustainability-img-link__item figure img {
  aspect-ratio: 550/250;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sustainability-img-link__item h3 {
  font-size: 1rem;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .sustainability-img-link__item h3 {
    font-size: 0.75rem;
  }
}
.sustainability-img-link__item h3::before {
  content: "";
  margin: 3px 5px 0 0;
  width: 6px;
  height: 6px;
  border-right: 2px solid #284691;
  border-bottom: 2px solid #284691;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.sustainability-clean-list {
  margin-top: 60px;
  border-top: 1px solid rgba(40, 70, 145, 0.35);
}
.sustainability-clean-list dl {
  display: flex;
  padding: 12px;
  border-bottom: 1px solid rgba(40, 70, 145, 0.35);
  font-size: 1rem;
}
.sustainability-clean-list dt {
  flex: 1 0 0;
}
.sustainability-clean-list dd {
  flex: 4 1 0;
}

.page-rd.top .ir-link2 {
  padding: 60px 0 0;
}
.page-rd.top .ir-link2 .rd-link2__box.full {
  background-image: url(/assets/img/rd/ph-policy.jpg);
}
.page-rd.top .ir-link2 .rd-link2__box.rd-link2__box02 {
  background-image: url(/assets/img/rd/pn-partnering.jpg);
}
.page-rd.top .ir-link2 .rd-link2__box.rd-link2__box03 {
  background-image: url(/assets/img/rd/ph-ethical-considerations.jpg);
}
.page-rd.top .ir-link2 .rd-link2__box.rd-link2__box04 {
  background-image: url();
}
.page-rd.top .ir-link2 .rd-link2__box.rd-link2__box05 {
  background-image: url(/assets/img/rd/ph-words.jpg);
}
.page-rd.top .ir-link3 {
  padding: 0;
}
.page-rd.top .ir-link3__box.box01 {
  background-image: url(/assets/img/rd/ph-structure.jpg);
}
.page-rd.top .ir-link3__box.box02 {
  background-image: url(/assets/img/rd/ph-clinical-development.jpg);
}
.page-rd.top .ir-link3__box.box03 {
  background-image: url(/assets/img/rd/ph-words.jpg);
}
.page-rd.top .ir-link3__box.box03 a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.page-rd.top .ir-link3__box.box03 .ttl2 {
  font-size: 1.5rem;
}
.page-rd.top .ttl2 {
  text-align: center;
}
.page-rd.top .ttl2 a {
  font-size: 1.5rem;
  color: #333 !important;
}

.rd-link2__box {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: calc((100% - 24px) / 2);
  height: 380px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
.rd-link2__box--inner {
  padding: 20px 20px 0;
  width: 100%;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(0.25rem);
}
.rd-link2__box.full {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 120px;
}
.rd-link2__box.full a {
  font-size: 1.5rem;
  color: #333 !important;
  text-align: center;
}
.rd-link2__box.short {
  justify-content: center;
  height: 160px;
}
.rd-link2__box.short a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.rd-link2__box.short .ttl2 {
  height: 60px;
  font-size: 1.5rem;
  color: #333 !important;
}

.ir-category-filter__list {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  padding: 30px 50px;
  background-color: rgba(235, 244, 252, 0.45);
  flex-wrap: wrap;
}
.ir-category-filter a {
  text-decoration: none !important;
  display: inline-block;
  padding: 7px 15px 8px 15px;
  border: solid 1px rgba(108, 118, 138, 0.6);
  border-radius: 16px;
  background: #fff;
  color: #6c768a !important;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  line-height: 1;
}
.ir-category-filter a.is-active {
  color: #284691 !important;
  border-color: #284691;
}

.news-year-select {
  display: inline-block;
  position: relative;
  margin-bottom: 30px;
}
.news-year-select::after {
  content: "";
  position: absolute;
  top: 0.8em;
  right: 0.5em;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #6c768a;
  pointer-events: none;
}
.news-year-select select {
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  outline: none;
  background: transparent;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 2px 40px 0 8px;
  height: 30px;
  border: 1px solid #6c768a;
  color: #6c768a;
  border-radius: 4px;
  font-size: 14px;
  vertical-align: top;
}

.news-all .info-tabs-nav {
  margin-bottom: 30px;
}
.news-all .info-tabs-nav .top-tab {
  border-bottom: 1px solid #e5e5e5;
  gap: 0;
}
.news-all .info-tabs-nav .top-tab li {
  flex: 1 1 25%;
  border-radius: 0;
}

.page-fertility-treatment.top .header-ft {
  position: relative;
  top: -30px;
  margin: 0 auto;
  max-width: 800px;
}
.page-fertility-treatment.top .header-ft a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  border-radius: 10px;
  border: 2px solid #284691;
  background-color: #fff;
  font-size: 1.25rem;
  line-height: 1.3;
}
.page-fertility-treatment.top .header-ft a::after {
  content: "";
  width: 1rem;
  height: 1rem;
  margin-right: 6px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M12%200c-6.627%200-12%205.373-12%2012s5.373%2012%2012%2012%2012-5.373%2012-12-5.373-12-12-12zm-1.568%2018.005l-1.414-1.415%204.574-4.59-4.574-4.579%201.414-1.416%205.988%205.995-5.988%206.005z%22%20fill%3D%22%23284691%22%2F%3E%3C%2Fsvg%3E") left center/cover no-repeat;
  margin-left: 10px;
}
.page-fertility-treatment.top h2.wp-block-heading {
  padding: 50px 25px;
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
  color: #284691;
  text-align: center;
}
.page-fertility-treatment.top h2.wp-block-heading::after {
  content: "";
  display: block;
  margin: 1.25rem auto 0;
  width: 6.25rem;
  height: 0.125rem;
  background-color: rgba(40, 70, 145, 0.8);
}
.page-fertility-treatment .ft-title {
  padding: 50px 25px;
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
  color: #284691;
  text-align: center;
}
.page-fertility-treatment .ft-title::after {
  content: "";
  display: block;
  margin: 1.25rem auto 0;
  width: 6.25rem;
  height: 0.125rem;
  background-color: rgba(40, 70, 145, 0.8);
}
.page-fertility-treatment h3.wp-block-heading {
  font-size: 1.5rem;
}
.page-fertility-treatment .group-ft .wp-block-columns {
  align-items: center !important;
  margin-bottom: 60px;
  padding: 30px;
}
.page-fertility-treatment .group-ft .wp-block-columns:nth-child(2n+1) {
  margin-right: 50%;
}
.page-fertility-treatment .group-ft .wp-block-columns:nth-child(2n) {
  margin-left: 50%;
}