@charset "UTF-8";

body {
  line-height: calc(26 / 16);
}

.hide-pc {
  display: none;
}
@media screen and (max-width: 767px) {
  .hide-pc {
    display: initial;
  }
}

.l-wrap {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
}

.l-wrap * {
  box-sizing: border-box;
}

/* 改行規則 */
.l-wrap h1,
.l-wrap h2,
.l-wrap h3,
.l-wrap h4,
.l-wrap p,
.l-wrap a,
.l-wrap th,
.l-wrap td,
.l-wrap dt,
.l-wrap dd,
.l-wrap li {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  line-break: strict;
}

.l-wrap img {
  max-width: 100%;
}

/* chrome */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  .l-wrap img {
    image-rendering: -webkit-optimize-contrast;
  }
}

.l-wrap {
  padding: 155px 0 0;
}
@media screen and (max-width: 767px) {
  .l-wrap {
    padding-top: 70px;
    padding-bottom: 40px;
  }
}

.-uniqeLayer.l-wrap {
  padding-top: 90px;
}
@media screen and (max-width: 767px) {
  .-uniqeLayer.l-wrap {
    padding-top: 70px;
    padding-bottom: 0;
  }
}

.l-header {
  width: 100%;
  min-width: 960px;
  border-bottom: 1px solid #e1e0de;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .l-header {
    min-width: auto;
    position: fixed;
  }
}

.l-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  height: 90px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .l-header-inner {
    max-width: none;
    height: 70px;
    background: #fff;
    padding: 0 calc((30 / 750) * 100%);
    position: relative;
    z-index: 4;
  }
}

.l-main {
  padding: 45px 0 80px;
}

@media screen and (max-width: 767px) {
  .l-main {
    padding: 15px calc((30 / 750) * 100%) 0;
  }
}

.l-main-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .l-main-inner {
    max-width: none;
    padding: 0;
  }
}

.l-under2column {
  display: flex;
  justify-content: space-between;
}

.l-under2column-item:nth-of-type(1) {
  flex-shrink: 0;
  width: 25%;
}
@media screen and (max-width: 767px) {
  .l-under2column-item:nth-of-type(1) {
    display: none;
  }
}

.l-under2column-item:nth-of-type(2) {
  width: 70.8%;
}
@media screen and (max-width: 767px) {
  .l-under2column-item:nth-of-type(2) {
    width: 100%;
  }
}

.m-site-logo {
  display: flex;
  align-items: flex-end;
  font-size: 2rem;
  font-weight: bold;
  color: #004851;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .m-site-logo {
    flex-direction: column;
    align-items: flex-start;
    font-size: 1rem;
  }
}
.m-site-logo a {
  display: inline-block;
  margin: 0 5px 0 0;
}
@media screen and (max-width: 767px) {
  .m-site-logo a {
    display: block;
    margin: 0 0 5px;
  }
}
.m-site-logo img {
  width: 233px;
}
@media screen and (max-width: 767px) {
  .m-site-logo img {
    width: 157px;
  }
}
.m-site-logo-text {
  transform: translateY(-6px);
}
@media screen and (max-width: 767px) {
  .m-site-logo-text {
    transform: translateY(0);
  }
}

.m-official-logo {
  width: 165px;
  margin: 0 0 0 20px;
}
@media screen and (max-width: 767px) {
  .m-official-logo {
    width: 82px;
    margin: 0 10px 0 auto;
  }
}
.m-official-logo a {
  display: block;
}

.m-nav {
  border-top: 1px solid #e1e0de;
}
.-top .m-nav {
  display: none;
}
@media screen and (max-width: 767px) {
  .m-nav {
    display: none;
  }
}

.m-nav.is_fixed {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  border-bottom: 1px solid #e1e0de;
  z-index: 1;
}

.m-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  height: 64px;
  margin: 0 auto;
  padding: 0 40px;
}

.m-nav-item {
  display: flex;
  width: calc((100 / 6) * 1%);
  height: 100%;
  position: relative;
  z-index: 1;
}
.m-nav-item + .m-nav-item {
  border-left: 1px solid #e1e0de;
}

.m-nav-title {
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  font-weight: bold;
  color: #004851;
  text-align: center;
  border: none;
  background: #fff;
  transition: 0.25s;
  cursor: default;
}
.m-nav-title:hover {
  color: #fff;
  background: #141b4d;
}

.m-nav-title.is_open,
.m-nav-title.is_current {
  color: #004851;
  background: #b9dcd2;
}

.m-nav-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-weight: bold;
  color: #141b4d;
  padding: 10px;
  transition: 0.25s;
}
.m-nav-link:link,
.m-nav-link:visited {
  color: #004851;
}
.m-nav-link:hover,
.m-nav-link.is_current {
  color: #004851;
  text-decoration: none;
  background: #b9dcd2;
}

.m-nav-category {
  display: none;
  width: calc(100% + 1px);
  border: 1px solid #dddcda;
  background: #fff;
  position: absolute;
  top: 64px;
  left: 0;
}

.m-nav-category .m-nav-link {
  justify-content: flex-start;
  padding: 15px 20px;
}
.m-nav-category .m-nav-link:link,
.m-nav-category .m-nav-link:visited {
  color: #333;
}
.m-nav-category .m-nav-link:hover {
  background-color: #eaf4f1;
}

.m-nav-category .is_current.m-nav-link:link,
.m-nav-category .is_current.m-nav-link:visited {
  background-color: #eaf4f1;
}

.m-nav-category .m-nav-link.-disable {
  color: #ccc;
  pointer-events: none;
}
.m-nav-category .m-nav-link.-disable:link,
.m-nav-category .m-nav-link.-disable:visited {
  color: #ccc;
}

.m-nav-category .m-nav-link + .m-nav-link {
  border-top: 1px solid #dddcda;
}

#m-navToggle {
  display: none;
  width: 45px;
  height: 45px;
  font-size: 9px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: #004851;
  border-radius: 3px;
  background-color: #b9dcd2;
  padding-top: 26px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #m-navToggle {
    display: block;
  }
}
#m-navToggle:before,
#m-navToggle:after {
  display: block;
  content: "";
  width: 29px;
  height: 2px;
  border-radius: 3px;
  background: #004851;
  margin: auto;
  position: absolute;
  top: 15px;
  right: 0;
  left: 0;
  transition: all 0.4s ease;
}
#m-navToggle:before {
  box-shadow: 0 -8px 0 #004851;
}
#m-navToggle:after {
  box-shadow: 0 8px 0 #004851;
}
#m-navToggle.close:before {
  transform: rotate(45deg);
  box-shadow: none;
}
#m-navToggle.close:after {
  transform: rotate(-45deg);
  box-shadow: none;
}

#m-navMenu {
  display: none;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 3;
  overflow: auto;
}
@media screen and (min-width: 768px) {
  #m-navMenu {
    display: none !important;
  }
}

#m-navMenu::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.m-navMenu-link {
  display: block;
  font-size: 1.8rem;
  color: #004851;
  background: #fff;
  padding: 15px 20px;
  position: relative;
  overflow: hidden;
}
.m-navMenu-link.is_current {
  background: #b9dcd2;
}

.m-navMenu-link:link,
.m-navMenu-link:visited {
  color: #004851;
}

.m-navMenu-link:hover {
  text-decoration: none;
}
.m-navMenu-link::before {
  content: "";
  border-top: solid 2px #004851;
  border-right: solid 2px #004851;
  width: 10px;
  height: 10px;
  transform: rotate(45deg) translateY(-50%);
  transform-origin: top;
  position: absolute;
  top: 50%;
  right: 22px;
}

.m-navMenu-link + .m-navMenu-link {
  border-top: 1px solid #ccc;
}

.m-navMenu-title {
  width: 100%;
  font-size: 1.8rem;
  color: #004851;
  text-align: left;
  border: none;
  background: #fff;
  padding: 15px 20px;
  position: relative;
}
.is_current.m-navMenu-title {
  color: #004851;
  background: #b9dcd2;
}

.m-navMenu-title::before {
  content: "";
  width: 20px;
  height: 2px;
  background: #004851;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 15px;
}

.m-navMenu-title::after {
  content: "";
  width: 2px;
  height: 20px;
  background: #004851;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 24px;
}

.m-navMenu-category.is_open .m-navMenu-title::after {
  display: none;
}

.m-navMenu-category {
  border-top: 1px solid #ccc;
}

.m-navMenu-category + .m-navMenu-link {
  border-top: 1px solid #ccc;
}

.m-navMenu-category .m-navMenu-links {
  display: none;
}

.m-navMenu-category .m-navMenu-links .m-navMenu-link.is_current {
  color: #004851;
  background: #eaf4f1;
}

.m-navMenu-category .m-navMenu-link {
  border-top: 1px solid #ccc;
  background: #fff;
  padding-left: 34px;
}
.m-navMenu-category .m-navMenu-link.-disable::before {
  border-color: #ccc;
}

.m-navMenu-category .m-navMenu-link.-disable {
  color: #ccc;
  pointer-events: none;
}

.m-navMenu-category .m-navMenu-link + .m-navMenu-link {
  border-top: 1px solid #ccc;
}

.m-sideNav {
  border: 1px solid #dddcda;
}

.m-sideNav-item + .m-sideNav-item .m-sideNav-title {
  border-top: 1px solid #dddcda;
}

.m-sideNav-title {
  background: #eaf4f1;
  padding: 16px;
}
.is_current.m-sideNav-title {
  background: #b9dcd2;
}

.m-sideNav-title.-fwb {
  font-weight: bold;
}

.m-sideNav-link {
  display: block;
  border-top: 1px solid #dddcda;
  padding: 16px;
  position: relative;
}
.m-sideNav-title.m-sideNav-link {
  font-weight: bold;
  border-top: none;
}
.m-sideNav-link:hover {
  text-decoration: none;
  background: #eaf4f1;
}

.m-sideNav-link::before {
  content: "";
  border-top: solid 2px #121c4e;
  border-right: solid 2px #121c4e;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  transform: rotate(45deg);
  transform-origin: unset;
  position: absolute;
  top: 50%;
  right: 19px;
}
.is_current.m-sideNav-link::before {
  display: none;
}

.m-sideNav-link.-disable {
  color: #ccc;
  background: #f9f9f9;
  pointer-events: none;
}
.m-sideNav-link.-disable::before {
  border-color: #ccc;
}

.m-sideNav-category {
  display: none;
}
.is_current + .m-sideNav-category {
  display: block;
}

.m-sideNav-category .m-sideNav-link {
  display: block;
  font-size: 1.4rem;
  border-top: 1px solid #dddcda;
  padding: 12px 28px;
}
.m-sideNav-category .m-sideNav-link::before {
  content: "";
  border-top: solid 2px #121c4e;
  border-right: solid 2px #121c4e;
  width: 6px;
  height: 6px;
  margin-top: -6px;
  transform: rotate(135deg);
  transform-origin: unset;
  position: absolute;
  top: 50%;
  right: 18px;
}

.m-sideNav-category .m-sideNav-link.m-sideNav-3rd {
  padding-right: 46px;
}

.m-sideNav-category .m-sideNav-3rd::before {
  display: block;
  margin-top: -3px;
  transform: rotate(45deg);
  right: 19px;
}

.m-sideNav-category .m-sideNav-3rd.is_current {
  font-weight: bold;
  color: #004851;
}

.m-under-title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #004851;
  line-height: 1.5;
  background: linear-gradient(
    115deg,
    #f1f8f6 0%,
    #f1f8f6 77%,
    #eaeef5 77%,
    #eaeef5 100%
  );
  margin: 0 0 50px;
  padding: 20px 300px 18px 47px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .m-under-title {
    display: flex;
    align-items: center;
    min-height: 95px;
    font-size: 2rem;
    background: linear-gradient(
      115deg,
      #f1f8f6 0%,
      #f1f8f6 66%,
      #eaeef5 66%,
      #eaeef5 100%
    );
    margin-bottom: 30px;
    padding: 10px 110px 10px 34px;
    position: relative;
  }
}

.m-under-title::before {
  content: "";
  width: 8px;
  height: calc(100% - 28px);
  background: #758cc0;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .m-under-title::before {
    height: calc(100% - 24px);
    left: 15px;
  }
}

.m-under-title-label {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
}

.m-under-title .m-under-title-img img {
  position: absolute;
  bottom: 0;
  right: 20px;
}
.m-under-title .m-under-title-img img[src*="biliary_tract"] {
  right: 47px;
}
@media screen and (max-width: 767px) {
  .m-under-title .m-under-title-img img[src*="biliary_tract"] {
    width: 100px;
    right: 10px;
  }
}
.m-under-title .m-under-title-img img[src*="product"] {
  right: 58px;
}
@media screen and (max-width: 767px) {
  .m-under-title .m-under-title-img img[src*="product"] {
    width: 80px;
    right: 15px;
  }
}
.m-under-title .m-under-title-img img[src*="gene_test"] {
  right: 34px;
}
@media screen and (max-width: 767px) {
  .m-under-title .m-under-title-img img[src*="gene_test"] {
    width: 100px;
    right: 6px;
  }
}
.m-under-title .m-under-title-img img[src*="side_effect"] {
  right: 50px;
}
@media screen and (max-width: 767px) {
  .m-under-title .m-under-title-img img[src*="side_effect"] {
    width: 90px;
    right: 10px;
  }
}
.m-under-title .m-under-title-img img[src*="support"] {
  right: 50px;
}
@media screen and (max-width: 767px) {
  .m-under-title .m-under-title-img img[src*="support"] {
    width: 90px;
    right: 10px;
  }
}

.m-under-title .m-under-title-img img[src*="prevention"] {
  right: 40px;
}
@media screen and (max-width: 767px) {
  .m-under-title .m-under-title-img img[src*="prevention"] {
    width: 75px;
    right: 0;
    bottom: 5px;
  }
}

.m-under-title + .m-under-title-note {
  margin-top: -35px;
}
@media screen and (max-width: 767px) {
  .m-under-title + .m-under-title-note {
    margin-top: -20px;
  }
}

.m-under-title-note {
  display: flex;
  justify-content: flex-end;
  padding: 0 0 0 40px;
}

@media screen and (max-width: 767px) {
  .m-under-title-note.--header {
    display: block;
    text-align: right;
    padding: 0;
  }
}

.m-under-title-note + .l-under2column {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .m-under-title-note + .l-under2column {
    margin-top: 20px;
  }
}

.m-under-title-note-label {
  flex-shrink: 0;
}

.m-under-contents-section + .m-under-contents-section {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .m-under-contents-section + .m-under-contents-section {
    margin-top: 35px;
  }
}

.m-under-contents-section-v2 {
  margin-top: 40px;
}

.m-under-contents-inner {
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .m-under-contents-inner {
    padding: 0;
  }
}

.m-under-contents-inner + .m-under-contents-inner {
  margin-top: 30px;
}

.m-under-contents-title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #004851;
  line-height: 1.5;
  margin: 0 0 20px;
  padding: 0 0 0 38px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .m-under-contents-title {
    font-size: 1.8rem;
    margin: 0 0 20px;
    padding-left: 28px;
  }
}

.m-under-contents-title::before {
  content: "";
  width: 24px;
  height: 24px;
  background: #758cc0;
  position: absolute;
  top: 7px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .m-under-contents-title::before {
    width: 20px;
    height: 20px;
    top: 4px;
  }
}

.m-under-contents-title.--flex {
  display: flex;
  align-items: center;
  gap: 0 20px;
}
@media screen and (max-width: 767px) {
  .m-under-contents-title.--flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}

.m-under-contents-title-note {
  font-size: 1.2rem;
  font-weight: normal;
  color: #333;
}

.m-under-contents-title-v2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0 15px;
}
@media screen and (max-width: 767px) {
  .m-under-contents-title-v2 {
    font-size: 1.5rem;
  }
}

.m-under-contents-title-v3 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #221815;
  margin: 0 0 20px;
  /* padding: 0 0 10px; */
  position: relative;
}
@media screen and (max-width: 767px) {
  .m-under-contents-title-v3 {
    font-size: 1.4rem;
  }
}
/* .m-under-contents-title-v3::before {
  content: "";
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    #758cc0 0%,
    #758cc0 calc((120 / 810) * 100%),
    #d6def1 calc((120 / 810) * 100%),
    #d6def1 100%
  );
  position: absolute;
  inset: auto 0 0 0;
} */

.m-under-contents-title-v3::before {
  display: inline-block;
  content: "";
  width: 12px;
  height: 12px;
  background: url(/patients/lytgobi/assets/images/prevention/icon_title.png)
    center no-repeat;
  background-size: contain;
  translate: 0 -0.1lh;
}

.m-under-contents-title-aux {
  font-size: 1.8rem;
  font-weight: bold;
  color: #758cc0;
  margin: 0 0 10px;
}
@media screen and (max-width: 767px) {
  .m-under-contents-title-aux {
    font-size: 1.5rem;
  }
}

.m-under-contents-text {
  line-height: 1.75;
}
.m-under-contents-text.-size_L {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .m-under-contents-text.-size_L {
    font-size: 1.5rem;
  }
}

.m-under-contents-text + .m-list {
  margin-top: 15px;
}

.m-under-contents-text + .m-under-contents-title-aux {
  margin-top: 15px;
}

.m-under-contents-text + .m-under-contents-text-aux {
  margin-top: 5px;
}

.m-under-contents-text-aux {
  font-size: 1.2rem;
}
.m-under-contents-text-aux a {
  color: #00a3e1;
}

.m-under-contents-text-aux.-size_M {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .m-under-contents-text-aux.-size_M {
    font-size: 1.2rem;
  }
}
.m-under-contents-text-aux + .m-under-contents-text-aux {
  margin-top: 10px;
}
.m-under-contents-text-aux + .m-under-contents-text {
  margin-top: 10px;
}
.m-under-contents-text-aux.-ta-right {
  text-align: right;
}
.m-under-contents-text-aux.-ta-center {
  text-align: center;
}

.m-under-contents-text-aux .indent {
  display: grid;
  grid-template-columns: 1em 1fr;
}

@media screen and (max-width: 767px) {
  .m-under-contents-table-wrap {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .m-under-contents-table-wrap::-webkit-scrollbar {
    height: 12px; /* スクロールバーの高さ */
  }

  .m-under-contents-table-wrap::-webkit-scrollbar-thumb {
    border: 2px solid transparent;
    border-radius: 6px;
    background: #aaa; /* ツマミの色 */
    background-color: #aaa;
    background-clip: content-box;
  }

  .m-under-contents-table-wrap::-webkit-scrollbar-track {
    border-radius: 6px;
    background: #ddd; /* トラックの色 */
  }
}

.m-under-contents-table {
  width: 100%;
  border-top: 1px solid #5d6593;
  border-left: 1px solid #5d6593;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .m-under-contents-table {
    width: 770px;
  }
}
.m-under-contents-table a {
  color: #48a6d5;
  text-decoration: underline;
}
.m-under-contents-table a:hover {
  text-decoration: none;
}

.m-under-contents-table thead th {
  color: #fff;
  white-space: nowrap;
  border-right: 1px solid #fff;
  background: #41457d;
  padding: 5px;
}
.m-under-contents-table thead th:last-child {
  border-right: 1px solid #5d6593;
}

.m-under-contents-table tbody {
  font-size: 1.4rem;
  font-weight: bold;
}

.m-under-contents-table tbody td {
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #5d6593;
  border-bottom: 1px solid #5d6593;
  background: #e1e1ec;
  padding: 5px 10px;
}
.m-under-contents-table tbody td:nth-of-type(1),
.m-under-contents-table tbody td:nth-of-type(2) {
  white-space: nowrap;
}
.m-under-contents-table tbody tr:nth-child(even) td {
  background: #f1f1f6;
}
.m-under-contents-table tbody td.-ta_left {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-under-contents-img-wrap {
    margin-top: 20px;
  }
}

.m-under-contents-img-wrap + .m-under-column-title {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .m-under-contents-img-wrap + .m-under-column-title {
    margin-top: 30px;
  }
}

.m-under-contents-img-wrap .m-under-contents-img {
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 35px 60px 40px;
}
@media screen and (max-width: 767px) {
  .m-under-contents-img-wrap .m-under-contents-img {
    padding: 20px 15px;
  }
}

.m-under-contents-img-wrap figcaption + .m-under-contents-img-item {
  margin-top: 20px;
}

.m-under-contents-img {
  margin: 40px 0 0;
}
@media screen and (max-width: 767px) {
  .m-under-contents-img {
    margin: 15px 0 0;
  }
}

.m-under-contents-img img {
  display: block;
  margin: 0 auto;
}

.m-under-contents-img.-center {
  text-align: center;
}

.m-under-contents-img + .m-list {
  margin-top: 50px;
}

.m-under-contents-img + .m-under-contents-text-aux {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .m-under-contents-img + .m-under-contents-text-aux {
    margin-top: 15px;
  }
}

.m-comment-wrap .m-under-contents-img + .m-under-contents-text-aux {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .m-under-contents-img + .m-under-contents-text-aux {
    margin-top: 15px;
  }
}

.m-under-contents-img figcaption {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  color: #004851;
  margin: 0 0 25px;
}
@media screen and (max-width: 767px) {
  .m-under-contents-img figcaption {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 10px;
  }
}

.m-under-contents-img figcaption + .m-under-contents-img-text {
  margin-top: -15px;
}
@media screen and (max-width: 767px) {
  .m-under-contents-img figcaption + .m-under-contents-img-text {
    margin-top: 0;
  }
}

.m-under-contents-img figcaption.-ta-left {
  text-align: left;
}

.m-under-contents-img .m-under-contents-img-caption {
  display: inline-block;
  font-size: 1.8rem;
  border: 1px solid #8087aa;
  border-radius: 20px;
  background: #fefcd0;
  margin: 10px 0 0;
  padding: 5px 20px;
}
@media screen and (max-width: 767px) {
  .m-under-contents-img .m-under-contents-img-caption {
    font-size: 1.5rem;
    line-height: 1.7;
    border-radius: 30px;
  }
}

@media screen and (max-width: 767px) {
  .m-under-contents-img img[src*="support"] {
    width: 54%;
  }
}

.m-under-contents-img .m-under-contents-text-aux {
  margin-top: 15px;
}
.m-under-contents-img .m-under-contents-text-aux.-unique {
  margin-top: -20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .m-under-contents-img .m-under-contents-text-aux.-unique {
    margin-top: -10px;
    margin-bottom: 5px;
  }
}

.m-under-contents-text-indent {
  display: grid;
  grid-template-columns: auto 1fr;
}

.m-under-contents-img-body.-w482 {
  width: 482px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .m-under-contents-img-body.-w482 {
    width: auto;
  }
}

.m-under-contents-img-text {
  font-size: 1.4rem;
  text-align: center;
  margin: 0 0 15px;
}

.m-under-contents-img-item {
  margin-top: 40px;
}

.m-under-contents-img-item-text {
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .m-under-contents-img-item-text {
    font-size: 1.3rem;
  }
}

.m-under-contents-img-attention {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .m-under-contents-img-attention {
    font-size: 1.5rem;
    margin-top: 20px;
  }
}

.m-related {
  border-radius: 10px;
  margin: 30px 0 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .m-related {
    margin-top: 20px;
  }
}

.m-related + .m-related {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .m-related + .m-related {
    margin-top: 15px;
  }
}

.m-related-body {
  background: #f1f8f6;
  padding: 20px 30px 30px;
}
@media screen and (max-width: 767px) {
  .m-related-body {
    padding: 10px 15px;
  }
}

.m-related-title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  line-height: 1.5;
  border-bottom: 1px solid #e4e4e6;
  background: #004851;
  padding: 10px 28px;
}
@media screen and (max-width: 767px) {
  .m-related-title {
    font-size: 1.5rem;
    padding: 7px 15px;
  }
}

.m-related-text {
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .m-related-text {
    line-height: 1.7;
  }
}

.m-related-text + .m-related-text-aux {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .m-related-text + .m-related-text-aux {
    margin-top: 5px;
  }
}

.m-related-text-aux {
  font-size: 1.2rem;
  text-align: right;
}

.m-related-item + .m-related-item {
  border-top: 1px solid #e4e4e6;
  margin-top: 15px;
  padding-top: 20px;
}

.m-related-item-title {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .m-related-item-title {
    font-size: 1.4rem;
  }
}

.m-related-item-link {
  display: flex;
  align-items: center;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .m-related-item-link {
    align-items: flex-start;
  }
}

.m-related-item-link:link,
.m-related-item-link:visited {
  font-size: 1.6rem;
  color: #00a3e1;
}
@media screen and (max-width: 767px) {
  .m-related-item-link:link,
  .m-related-item-link:visited {
    font-size: 1.4rem;
  }
}

.m-related-item-link-icon {
  flex-shrink: 0;
  width: 22px;
  margin: 0 8px 0 0;
}

.m-related-item-text {
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .m-related-item-text {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-top: 10px;
  }
}

.m-related-item-text + .m-related-item-text {
  margin-top: 3px;
}
@media screen and (max-width: 767px) {
  .m-related-item-text + .m-related-item-text {
    margin-top: 10px;
  }
}

.m-related-column {
  display: grid;
  grid-template-columns: 1fr calc((200 / 750) * 100%);
}
@media screen and (max-width: 767px) {
  .m-related-column {
    gap: 0 15px;
  }
}

.m-related-column-item.-img img {
  display: block;
  margin: 0 auto;
}

.m-text_scroll {
  display: none;
}
@media screen and (max-width: 767px) {
  .m-text_scroll {
    display: block;
    margin-bottom: 15px;
  }
}
.m-text_scroll img {
  width: 233px;
}

.m-list + .m-under-note {
  margin-top: 30px;
}

.m-list + .m-under-contents-text {
  margin-top: 25px;
}

.m-list + .m-under-contents-title-aux {
  margin-top: 15px;
}

.m-list-item {
  padding: 0 0 0 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .m-list-item {
    padding-left: 15px;
  }
}
.m-list-item::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #758cc0;
  position: absolute;
  top: 9px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .m-list-item::before {
    top: 6px;
  }
}

.m-list.-dotS .m-list-item {
  padding-left: 12px;
}
.m-list.-dotS .m-list-item::before {
  width: 6px;
  height: 6px;
  top: 11px;
}
@media screen and (max-width: 767px) {
  .m-list.-dotS .m-list-item::before {
    top: 8px;
  }
}

.m-list.-check .m-list-item {
  padding-left: 24px;
}
.m-list.-check .m-list-item + .m-list-item {
  margin-top: 10px;
}
.m-list.-check .m-list-item::before {
  width: 18px;
  height: 18px;
  border-radius: 0;
  background: url(/patients/lytgobi/assets/images/icon_check.png) 0 0 no-repeat;
  background-size: contain;
  top: 6px;
}

.m-list-item .m-under-contents-text-aux {
  margin-top: 10px;
}

.m-under-note {
  border-radius: 6px;
  background: #f1f8f6;
  padding: 20px 24px;
}
.m-under-note .m-list {
  font-size: 1.2rem;
  margin-top: 10px;
}
.m-under-note .m-list-item {
  padding-left: 10px;
}
.m-under-note .m-list-item::before {
  width: 6px;
  height: 6px;
  top: 7px;
}

.m-faq {
  border-top: 1px solid #e1e0de;
  margin-top: 30px;
}
.m-faq.-unique {
  border: none;
  margin-top: 0;
}

.m-faq-item {
  padding-top: 30px;
}
.m-faq-item + .m-faq-item {
  border-top: 1px solid #e1e0de;
  margin-top: 30px;
}

.m-faq-title {
  font-weight: bold;
  color: #004851;
  margin: 0 0 25px;
  padding: 0 0 0 40px;
  position: relative;
}
.m-faq-title::before {
  content: "Q";
  width: 30px;
  height: 30px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  line-height: 25px;
  text-align: center;
  border-radius: 50%;
  background: #004851;
  position: absolute;
  top: 0;
  left: 0;
}

.m-faq-title-aux {
  font-weight: normal;
}

.m-faq-body {
  padding: 0 0 0 40px;
  position: relative;
}
.m-faq-body::before {
  content: "A";
  width: 30px;
  height: 30px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  line-height: 27px;
  text-align: center;
  border-radius: 50%;
  background: #e0004d;
  position: absolute;
  top: 0;
  left: 0;
}

.m-emphasis {
  font-weight: normal;
  color: #004851;
  border-bottom: 1px solid #004851;
}

.nav_breadcrumb {
  padding-top: 16px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .nav_breadcrumb {
    font-size: 1.2rem;
  }
}
.nav_breadcrumb .inner {
  position: relative;
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
.nav_breadcrumb ul {
  display: flex;
  list-style-type: none;
}
@media screen and (max-width: 767px) {
  .nav_breadcrumb ul {
    display: block;
    font-size: 0;
  }
}
@media screen and (max-width: 767px) {
  .nav_breadcrumb ul li {
    display: inline;
    font-size: 1.2rem;
  }
}
.nav_breadcrumb ul li + li::before {
  margin: 0 1rem;
  content: "＞";
}

.nav_breadcrumb ul li a:link,
.nav_breadcrumb ul li a:visited {
  color: #00a3e1;
}

.m-tab {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 5px;
  margin: 0 0 55px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .m-tab {
    gap: 0 3px;
    margin-bottom: 35px;
  }
}
.m-tab::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #d0d7e8;
  position: absolute;
  inset: auto 0 0 0;
}

.m-tab-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 1;
  font-weight: bold;
  line-height: calc(24 / 16);
  border-radius: 6px 6px 0 0;
  border: 1px solid #d0d7e8;
}
.m-tab-item.is-current {
  background: #c8d1e9;
}

.m-tab-link {
  display: grid;
  align-items: center;
  min-height: 74px;
  padding: 10px 20px;
}
@media screen and (max-width: 767px) {
  .m-tab-link {
    min-height: 76px;
    padding: 5px;
  }
}
.m-tab-link:hover {
  text-decoration: none;
  background: #c8d1e9;
}

.m-comment-wrap {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .m-comment-wrap {
    margin-top: 30px;
  }
}

.m-comment-wrap + .m-comment-wrap {
  border-top: 1px dashed #999;
  margin-top: 50px;
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .m-comment-wrap + .m-comment-wrap {
    margin-top: 30px;
    padding-top: 30px;
  }
}

.m-comment-item {
  display: grid;
  grid-template-columns: 90px auto;
  gap: 0 19px;
}
@media screen and (max-width: 767px) {
  .m-comment-item {
    grid-template-columns: 75px auto;
    gap: 0 13px;
  }
}

.m-comment-item + .m-comment-item {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .m-comment-item + .m-comment-item {
    margin-top: 25px;
  }
}

.m-comment-body {
  align-self: center;
  border-radius: 6px;
  border: 1px solid;
  padding: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .m-comment-body {
    padding: 15px 10px;
  }
}

.m-comment-item.--q .m-comment-body {
  font-weight: bold;
  border-color: #cee0db;
  background-color: #f1f8f6;
}
.m-comment-item.--q .m-comment-body strong {
  color: #004851;
}
.m-comment-item.--a .m-comment-body {
  border-color: #d0d7e8;
  background-color: #f0f3fb;
}

.m-comment-body::before,
.m-comment-body::after {
  content: "";
  width: 0;
  height: 0;
  border: solid transparent;
  margin-top: -7px;
  position: absolute;
  top: 32px;
}
@media screen and (max-width: 767px) {
  .m-comment-body::before,
  .m-comment-body::after {
    margin-top: -7px;
    top: 35px;
  }
}

.m-comment-body::before {
  border-right-color: #f1f8f6;
  border-width: 7px 17px 7px 0;
  left: -14px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .m-comment-body::before {
    left: -10px;
  }
}

.m-comment-body::after {
  border-right-color: #cee0db;
  border-width: 7px 17px 7px 0;
  left: -17px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .m-comment-body::after {
    left: -13px;
  }
}

.m-comment-item.--a .m-comment-body::before {
  border-right-color: #f0f3fb;
}
.m-comment-item.--a .m-comment-body::after {
  border-right-color: #d0d7e8;
}

.m-comment-text {
  line-height: calc(28 / 16);
}

.m-comment-text a {
  color: #00a3e1;
}

.m-point {
  border-radius: 10px;
  margin: 40px 0 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .m-point {
    margin-top: 30px;
  }
}

.m-point .m-list-item + .m-list-item {
  margin-top: 5px;
}

.m-point-title {
  display: grid;
  place-items: center;
  min-height: 48px;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  background: #758cc0;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .m-point-title {
    min-height: 38px;
    font-size: 1.6rem;
    padding: 5px;
  }
}

.m-point-body {
  background: #f5f6fa;
  padding: 20px;
}

.m-point-text + .m-list {
  margin-top: 10px;
}

.m-under-section {
  margin-top: 40px;
}

.m-under-section + .m-under-section {
  margin-top: 40px;
}

.m-under-column {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 0 100px;
}
@media screen and (max-width: 767px) {
  .m-under-column {
    grid-template-columns: 1fr;
    gap: 20px 0;
  }

  .m-under-column img {
    display: block;
    margin: 0 auto;
  }
}

.m-under-column.--img2column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 0;
  margin: 30px 0 0;
}
@media screen and (max-width: 767px) {
  .m-under-column.--img2column {
    grid-template-columns: 1fr;
    gap: 30px 0;
  }
}

.m-under-column.--img2column .m-under-column-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}
@media screen and (max-width: 767px) {
  .m-under-column.--img2column .m-under-column-item {
    display: revert;
  }
}

.m-under-column + .m-under-column {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .m-under-column + .m-under-column {
    margin-top: 30px;
  }
}

.m-under-column-title {
  font-weight: bold;
  color: #758cc0;
  margin: 0 0 5px;
}

.m-under-column-text {
  line-height: calc(30 / 16);
}

.m-under-column-text a {
  color: #00a3e1;
}

.m-under-column-caption {
  font-size: 1.4rem;
  text-align: center;
  margin-top: 15px;
}
