@media screen and (min-width: 766px) {
  .pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .spNone {
    display: none !important;
  }
}
body.is-menu-open {
  overflow: hidden;
}
#openMenu {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 20px;
  flex: 1;
  z-index: 999;
  padding: 14px 0;
  background: #fff;
  font-size: 13px;
  width: 35.5%;
  margin: 0 auto;
  border: 2px solid #000;
  border-radius: 25px;
}
.menu-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 999;
  opacity: 0;
  transform: scale(0.98);
  transition:
    opacity .25s ease, transform .25s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}
.menu-overlay.is-open {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.menu-body {
  flex: 1;
  padding: 24px 20px 0;
  overflow-y: auto;
}
.menu-body.menu-search {
  display: flex;
  justify-content: center;
  flex-flow: column;
}
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 16px;
  /* border-bottom: 1px solid #1e2380; */
  border-bottom: 2px solid var(--brand-cyan);
}
.toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #9ec6df;
  background: #fff;
  font-size: 18px;
  line-height: 1;
}
.submenu {
  list-style: none;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0s ease;
}
.menu-item.is-open .submenu {
  max-height: 100%;
}
.menu-item.is-open .submenu li {
  padding: 0;
}
.menu-item.is-open .submenu li:last-child {
	border-bottom: none;
}
.submenu li a {
  display: block;
  padding: 10px 0 9px 20px;
  font-size: 16px;
  text-decoration: none;
  position: relative;
}
/* .submenu li a:before {
  content: "";
  background: url(../images/common/arrow-a-right.svg) no-repeat;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-size: contain;
} */

.submenu li a.submenu-row::before,
.submenu li a.submenu-row::after{
  content:"";
  position:absolute;
  right: 5px;
  top:50%;
  transform:translateY(-50%);
  width:15px;
  height:15px;
  pointer-events:none;
  background-size:contain !important;background-position:center !important;
  transition:opacity .2s ease;
}

.submenu li a.submenu-row::before{
  background:url(/assets/images/common/arrow-a-up.svg) no-repeat;
  opacity:1;
}
.submenu li a.submenu-row::after{
  background:url(/assets/images/common/arrow-a-down.svg) no-repeat;
  opacity:0;
}
.submenu li a.submenu-row.submenu-row--open::before{opacity:0;}
.submenu li a.submenu-row.submenu-row--open::after{opacity:1;}

.menu-item [disabled],
.submenu-item [disabled]{
  color: rgb(136 109 72 / 50%);
  cursor: default;
}
.menu-links {
  display: flex;
  justify-content: space-around;
  margin: 28px 0;
}
.menu-links a {
  text-decoration: none;
  display: flex;
  flex-flow: column;
  justify-content: center;
  box-shadow: 0px 5px 15px 0px rgba(185, 177, 177, 0.35);
  width: 32%;
  padding: 10px 0;
  border-radius: 15px;
}
.menu-links a img {
  width: 30%;
  margin: 0 auto 5px;
}
.menu-links a p {
  font-size: 12px;
  color: #007bbf;
  text-align: center;
  line-height: 1.1;
  margin-top: auto;
}
.menu-links a p span {
  font-size: 10px;
}
.sns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}
.sns span {
  width: 12%;
  border-radius: 15px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-footer {
  display: flex;
  background: #ccc;
  border-radius: 20px;
  width: 98%;
  margin: 0 auto;
  margin-bottom: 10px;
  padding: 10px 20px;
}
.menu-footer button,
.menu-footer a {
  padding: 5px 0;
  border: none;
  background: #fff;
  font-size: 13px;
  width: 28%;
}
.menu-footer button#closeMenu.close {
  border: none;
  background: #fff;
  background: #fff;
  font-size: 13px;
  margin: 0 auto;
  border: 2px solid #000;
  border-radius: 25px;
  width: 40%;
}
.menu-footer .icon {
  display: flex;
  justify-content: center;
  gap: 10px;
  border-radius: 0;
  height: 100%;
  line-height: 1.1;
}
.menu-footer .icon img {
  width: 20px;
}
.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
}
.menu-row:active {
  background: rgba(0, 0, 0, 0.04);
}
.sub-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .15s ease;
  padding-left: 15px;
}
#mobileMenu .menu-body .menu-list .menu-item .submenu-item{
	border-bottom: none;
}
.submenu-item.is-open .sub-submenu {
  max-height: 100%;
	border: none;
}
.submenu-item .sub-submenu li{
  border-bottom: 1px solid #d6e0ea;
}

a.submenu-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 12px 20px;
  font-size: 16px;
  cursor: pointer;
	border-bottom: 1px solid var(--brand-cyan);
}

.icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  /* border: 1px solid #000; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
/*検索画面用*/
.menu-body.is-hidden {
  display: none;
}
/* 検索画面用（最低限） */
.search-box {
  margin-top: 40px;
}
.search-box input {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid #000;
  border-radius: 10px;
}
.search-btn {
  display: block;
  width: 60%;
  margin: 20px auto 0;
  padding: 12px 0;
  border-radius: 999px;
  border: 2px solid #0090cc;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  letter-spacing: 5px;
}
.search-btn img {
  width: 20px;
  margin-left: 5px;
}
.search-keywords {
  margin-top: 15%;
  text-align: center;
}
.search-keywords .title {
  font-size: 16px;
  text-align: center;
  position: relative;
  display: inline-block;
  margin-bottom: 10%;
}
.search-keywords .title:before {
  content: "";
  background: url(../images/common/icon-faq.svg) no-repeat;
  width: 24px;
  background-size: contain;
  position: absolute;
  right: -35px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 25px;
}
.search-keywords ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 25px;
  list-style: none;
  padding: 0;
  text-align: left;
}
.search-keywords ul li {
  border-bottom: 1px solid #000;
  margin-bottom: 10px;
  font-size: 15px;
  padding: 0 0 10px 10px;
}


/*shortcut_nav*/
@media screen and (max-width: 767px) {
  .main-content.top_page .shortcut_nav{
    position: relative;
    padding: 25px 15px 25px 10%;
    
  }
  .shortcut_nav:before{
      content: "";
      background: rgba(136, 109, 72, 0.1);
      width: 95%;
      position: absolute;
      right: 0;
      top: 0;
      margin: auto;
      height: 100%;
      z-index: -2;
      border-radius: 60px 0 0 60px;
  }
    section.whatsnew dd{
      display: block;
    }
      section.whatsnew dd strong.acarrow{
      position: relative;
        width: 100%;
        display: inline-block;
    }
      section.whatsnew dd strong.acarrow:before{
      content: "";
        background: url("../images/common/arrow-a-right.svg")no-repeat;
        width: 15px;
        height: 15px;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
    }
	}

.main-content.cancer{
  .related-link__avatar{
    img{
      max-height: 100px;
    }
  }
}