/* ====================================================
layout
==================================================== */
/* -----------------------------------------------
header
----------------------------------------------- */
.l-header {
  width: 100%;
  position: relative;
  top: 0;
  z-index: 9999;
  background-color: #fff;
  height: 8rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
@media print, screen and (max-width: 900px) {
  .l-header {
    height: 11rem;
  }
}
@media print, screen and (max-width: 768px) {
  .l-header {
    height: 6rem;
  }
}
.l-header.js-min_header {
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.06);
  position: fixed;
}
.l-header__logo {
  width: 10rem;
  display: block;
  background-size: cover;
}
.l-header__logo > img {
  vertical-align: baseline;
}
@media print, screen and (max-width: 768px) {
  .l-header__logo {
    width: 7rem;
  }
}
.l-header__inner {
  padding: 0 2.2rem;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
}
.l-header__nav {
  margin-left: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
}
@media print, screen and (max-width: 768px) {
  .l-header__nav {
    margin-left: 0;
    width: 100%;
    padding: 5rem 2rem 0;
    position: absolute;
    left: 0;
    top: 6rem;
    background-color: #f7f7f5;
    height: calc(100vh - 6rem);
    display: none;
  }
  .l-header__nav.is_open {
    display: block;
  }
}
.l-header__links {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  font-size: 20px;
  height: 100%;
}
@media print, screen and (min-width: 768px) and (max-width: 1200px) {
  .l-header__links {
    font-size: 16px;
  }
}
@media print, screen and (max-width: 768px) {
  .l-header__links {
    display: block;
    width: 100%;
    height: auto;
    font-size: 1.8rem;
  }
}
.l-header__links > li {
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .l-header__links > li {
    width: 100%;
    border-bottom: 1px solid #c3c3c0;
  }
}
@media print, screen and (min-width: 768px) {
  .l-header__links > li:hover .subnav, .l-header__links > li:focus-within .subnav {
    visibility: visible;
    opacity: 1;
    translate: 0 2rem;
  }
  .l-header__links > li:hover .parentnav::before {
    transform: translate(-50%, 40%) rotate(-45deg);
  }
}
.l-header__links > li > a,
.l-header__links > li > .parentnav {
  display: block;
  position: relative;
  cursor: pointer;
  height: 100%;
  padding: 0 2rem;
  opacity: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
@media print, screen and (max-width: 768px) {
  .l-header__links > li > a,
  .l-header__links > li > .parentnav {
    padding: 1.8rem 0;
    height: auto;
  }
}
.l-header__links > li > a:hover,
.l-header__links > li > .parentnav:hover {
  background-color: #f7f7f5;
}
.l-header__links > li > a:hover > span::after,
.l-header__links > li > .parentnav:hover > span::after {
  transform-origin: left top;
  transform: scale(1, 1);
  transition: transform 0.4s;
}
@media print, screen and (max-width: 768px) {
  .l-header__links > li > a:hover > span::after,
  .l-header__links > li > .parentnav:hover > span::after {
    transform: scale(0);
  }
}
.l-header__links > li > a > span,
.l-header__links > li > .parentnav > span {
  display: block;
  position: relative;
}
.l-header__links > li > a > span::after,
.l-header__links > li > .parentnav > span::after {
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
  background-color: #b6012f;
  transform: scale(0, 1);
  transform-origin: right top;
}
.l-header__links > li > .parentnav {
  padding-right: calc(6px + 3rem);
}
@media print, screen and (min-width: 768px) {
  .l-header__links > li > .parentnav:before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    margin: auto;
    right: 1.3rem;
    width: 6px;
    height: 6px;
    transform: translate(-50%, -10%) rotate(135deg);
    border-top: 2px solid #3c3c3c;
    border-right: 2px solid #3c3c3c;
    transition: 0.3s ease;
  }
}
@media print, screen and (max-width: 768px) {
  .l-header__links > li > .parentnav:before {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    width: 2rem;
    height: 2px;
    background-color: #3c3c3c;
    transform: rotate(90deg);
    transition: all 0.3s ease-in-out;
  }
  .l-header__links > li > .parentnav::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    width: 2rem;
    height: 2px;
    background-color: #3c3c3c;
    transition: all 0.3s ease-in-out;
  }
  .l-header__links > li > .parentnav.is_open::before {
    transform: rotate(180deg);
  }
  .l-header__links > li > .parentnav.is_open::after {
    opacity: 0;
  }
}
.l-header__links > li .subnav {
  position: absolute;
  left: 0;
  top: 5.9rem;
  width: max-content;
  padding: 0.4rem 2rem;
  visibility: hidden;
  opacity: 0;
  background: #fff;
  translate: 0 0;
  z-index: 2;
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.08);
  font-size: 18px;
}
@media print, screen and (min-width: 768px) {
  .l-header__links > li .subnav {
    transition: all 0.3s ease-out;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1200px) {
  .l-header__links > li .subnav {
    font-size: 15px;
    top: 8.9rem;
  }
}
@media print, screen and (max-width: 768px) {
  .l-header__links > li .subnav {
    opacity: 1;
    visibility: initial;
    display: none;
    position: static;
    width: 100%;
    background: transparent;
    box-shadow: none;
    padding: 0 0 2rem;
    font-size: 1.6rem;
  }
}
.l-header__links > li .subnav > li {
  border-bottom: 1px solid #e6e6e6;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .l-header__links > li .subnav > li {
    border: none;
    padding-left: 2rem;
  }
  .l-header__links > li .subnav > li::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-color: #c3c3c0;
    width: 1rem;
    height: 1px;
  }
}
.l-header__links > li .subnav > li:last-child {
  border: none;
}
.l-header__links > li .subnav > li > a {
  display: block;
  padding: 1.5rem calc(14px + 2rem) 1.5rem 0;
  opacity: 1;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .l-header__links > li .subnav > li > a {
    padding: 0.5rem calc(14px + 2rem) 0.5rem 0;
  }
}
.l-header__links > li .subnav > li > a::before {
  bottom: 0;
  top: 0;
  margin: auto;
  content: "";
  position: absolute;
  background-image: url(../img/common/icon-arrow.svg);
  width: 14px;
  height: 9px;
  background-size: cover;
  transition: right 0.3s;
  right: 8px;
}
@media print, screen and (max-width: 768px) {
  .l-header__links > li .subnav > li > a::before {
    display: none;
  }
}
.l-header__links > li .subnav > li > a:hover::before {
  right: 0;
}
.l-header__la {
  margin-left: 2rem;
}
@media print, screen and (max-width: 1200px) {
  .l-header__la {
    margin-left: auto;
  }
}
.l-header__la .bogo-language-switcher {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  font-size: 18px;
}
@media print, screen and (min-width: 768px) and (max-width: 1200px) {
  .l-header__la .bogo-language-switcher {
    font-size: 2.2rem;
  }
}
@media print, screen and (max-width: 768px) {
  .l-header__la .bogo-language-switcher {
    font-size: 1.5rem;
  }
}
.l-header__la .bogo-language-switcher > li {
  text-align: center;
}
.l-header__la .bogo-language-switcher > li.en {
  width: 64px;
}
@media print, screen and (max-width: 768px) {
  .l-header__la .bogo-language-switcher > li.en {
    width: 5rem;
  }
}
.l-header__la .bogo-language-switcher > li.id {
  width: 200px;
}
@media print, screen and (max-width: 768px) {
  .l-header__la .bogo-language-switcher > li.id {
    width: 16rem;
  }
}
.l-header__la .bogo-language-switcher > li.ja {
  display: none;
}
.l-header__la .bogo-language-switcher > li > span {
  display: block;
}
.l-header__la .bogo-language-switcher > li > span > a {
  padding: 0.5rem;
  transition: all 0.3s ease;
  display: block;
  background-color: #f3f3f0;
}
@media print, screen and (max-width: 768px) {
  .l-header__la .bogo-language-switcher > li > span > a {
    padding: 0.3rem;
  }
}
.l-header__la .bogo-language-switcher > li > span > a.current {
  background-color: #3c3c3c;
  color: #fff;
}
.l-header__la .bogo-language-switcher > li > span > a:hover {
  opacity: 1;
  background-color: #3c3c3c;
  color: #fff;
}
.l-header__btn {
  margin-left: 2rem;
  line-height: 1;
  padding: 1.5rem 2.6rem 1.5rem calc(2.5rem + 20px);
  font-size: 20px;
  color: #fff;
  display: block;
  background-color: #b6012f;
  background-image: url(../img/common/icon-mail-w.svg);
  background-repeat: no-repeat;
  background-position: center left 1.9rem;
  background-size: 20px;
}
@media print, screen and (min-width: 768px) and (max-width: 1200px) {
  .l-header__btn {
    font-size: 16px;
  }
}
@media print, screen and (max-width: 900px) {
  .l-header__btn {
    margin-right: 1rem;
  }
}
@media print, screen and (max-width: 768px) {
  .l-header__btn {
    margin-top: 5rem;
    margin-right: 0;
    width: 100%;
    text-align: center;
    margin-left: 0;
    background-size: 2.8rem;
    font-size: 2rem;
    padding: 2rem 2rem 2rem 3rem;
  }
}

/* -----------------------------------------------
hamburger
----------------------------------------------- */
.l-hamburger {
  display: none;
  cursor: pointer;
  margin-left: 1.6rem;
  z-index: 99999;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .l-hamburger {
    display: block;
    width: 2.5rem;
    height: 2rem;
  }
}
.l-hamburger span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  right: 0%;
  margin: auto;
  height: 2px;
  border-radius: 2rem;
  width: 100%;
  background: #3c3c3c;
}
.js-min_header .l-hamburger span {
  background: #3c3c3c;
}
.l-hamburger span:nth-of-type(1) {
  top: 0;
}
.l-hamburger span:nth-of-type(2) {
  top: calc(50% - 0.1rem);
}
.l-hamburger span:nth-of-type(3) {
  bottom: 0;
}
.l-hamburger.is_open {
  height: 2.5rem;
}
.l-hamburger.is_open span:nth-of-type(1) {
  top: 1.3rem;
  transform: translateY(0) rotate(-223deg);
}
.l-hamburger.is_open span:nth-of-type(2) {
  opacity: 0;
}
.l-hamburger.is_open span:nth-of-type(3) {
  bottom: 1rem;
  transform: translateY(0) rotate(223deg);
}

/* ====================================================
footer
==================================================== */
.l-footer {
  background: #f7f7f5;
  padding: 8rem 0;
  font-size: 18px;
}
@media print, screen and (max-width: 768px) {
  .l-footer {
    padding: 6rem 0;
    font-size: 1.8rem;
  }
}
.l-footer__inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.l-footer__logo {
  display: inline-block;
  line-height: 1;
  background-color: #fff;
  padding: 2.7rem 4rem;
  margin-bottom: 3rem;
  margin-left: 2rem;
}
@media print, screen and (max-width: 768px) {
  .l-footer__logo {
    padding: 2rem 3rem;
    margin-bottom: 4rem;
    margin-left: 0;
  }
}
.l-footer__logo > img {
  width: 11.8rem;
  vertical-align: middle;
}
@media print, screen and (max-width: 768px) {
  .l-footer__logo > img {
    width: 9rem;
  }
}
.l-footer__nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 4.6rem;
  margin-left: auto;
}
@media print, screen and (min-width: 768px) and (max-width: 1200px) {
  .l-footer__nav {
    width: 100%;
    margin-top: 3rem;
  }
}
@media print, screen and (max-width: 768px) {
  .l-footer__nav {
    gap: 0;
  }
}
@media print, screen and (max-width: 768px) {
  .l-footer__nav > ul {
    width: 48%;
  }
}
.l-footer__nav > ul > li {
  margin-bottom: 3.4rem;
}
@media print, screen and (max-width: 768px) {
  .l-footer__nav > ul > li {
    margin-bottom: 3rem;
  }
}
.l-footer__nav > ul > li > a {
  display: block;
}
.l-footer__nav > ul > li > ul {
  font-size: 16px;
  padding-left: 0.9rem;
}
@media print, screen and (max-width: 768px) {
  .l-footer__nav > ul > li > ul {
    font-size: 1.5rem;
    padding-left: 0.5rem;
  }
}
.l-footer__nav > ul > li > ul > li {
  padding-left: 1.8rem;
  margin-top: 1.5rem;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .l-footer__nav > ul > li > ul > li {
    margin-top: 1.2rem;
  }
}
.l-footer__nav > ul > li > ul > li::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: #c3c3c0;
  width: 1rem;
  height: 1px;
}
@media print, screen and (max-width: 768px) {
  .l-footer__nav > ul > li > ul > li::after {
    bottom: auto;
    top: 0.8em;
  }
}
.l-footer__nav > ul > li > ul > li > a {
  color: #5c5c5c;
}
@media print, screen and (max-width: 768px) {
  .l-footer__nav > .cta {
    width: 100%;
    text-align: center;
  }
}
.l-footer__btn {
  cursor: pointer;
  width: 220px;
  text-align: center;
  line-height: 1;
  padding: 1.8rem 0 2rem 30px;
  font-size: 20px;
  color: #fff;
  display: inline-block;
  background-color: #b6012f;
  background-image: url(../img/common/icon-mail-w.svg);
  background-repeat: no-repeat;
  background-position: center left 37px;
  background-size: 24px;
  margin-bottom: 1.5rem;
}
@media print, screen and (max-width: 768px) {
  .l-footer__btn {
    width: 85%;
    background-size: 2.8rem;
    font-size: 2rem;
    padding: 2rem 2.6rem 2rem 4rem;
  }
}
.l-footer .copy {
  text-align: center;
  font-size: 14px;
  margin-top: 7rem;
}
@media print, screen and (max-width: 768px) {
  .l-footer .copy {
    font-size: 1.4rem;
    margin-top: 5rem;
  }
}

/* ------------------------------------------------------------------------
    bread
------------------------------------------------------------------------ */
.l-breadList {
  line-height: 1.4;
  display: flex;
  font-size: 16px;
  justify-content: flex-start;
  margin-top: 4rem;
}

@media print, screen and (max-width: 768px) {
  .l-breadList {
    font-size: 1.3rem;
    margin-top: 3rem;
  }
}
.l-breadList__item:nth-child(n + 2) {
  padding-left: 3.5rem;
  position: relative;
}

.l-breadList__item:nth-child(n + 2)::before {
  content: "/";
  color: #b7b7b7;
  left: 1.6rem;
  background-size: cover;
  position: absolute;
  top: 0;
  transform: rotate(30deg);
  bottom: 0;
  margin: auto;
}

.l-breadList__item a:hover {
  text-decoration: underline;
}

/* -----------------------------------------------
home
----------------------------------------------- */
.home-mv {
  margin: 0 auto;
  color: #fff;
  position: relative;
  overflow: hidden;
  height: 54.5rem;
  background-image: url(../img/home/mv_bg.jpg);
  background-size: cover;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 8rem;
}
@media print, screen and (max-width: 768px) {
  .home-mv {
    height: 65rem;
    background-image: url(../img/home/mv_bg-sp.jpg);
    padding: 5rem 4rem 0;
    align-items: flex-start;
  }
}
.home-mv__title {
  font-size: 4rem;
  text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.42);
}
@media print, screen and (max-width: 768px) {
  .home-mv__title {
    font-size: 2.6rem;
    letter-spacing: 0;
  }
}
.home-about .p-sec {
  padding-bottom: 0;
}
.home-services__item {
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media print, screen and (max-width: 768px) {
  .home-services__item {
    margin-top: 6rem;
  }
  .home-services__item:first-child {
    margin-top: 4rem;
  }
}
.home-services__item > figure {
  width: 48rem;
}
@media print, screen and (max-width: 768px) {
  .home-services__item > figure {
    width: 100%;
  }
}
.home-services__item > figcaption {
  width: 66rem;
}
@media print, screen and (max-width: 768px) {
  .home-services__item > figcaption {
    width: 100%;
  }
}
.home-services__item > figcaption > .text {
  margin-top: 2rem;
}
@media print, screen and (max-width: 768px) {
  .home-services__item > figcaption > .text {
    margin-top: 1rem;
  }
}
@media print, screen and (max-width: 768px) {
  .home-services__item > figcaption > figure {
    margin-top: 3rem;
  }
}
.home-services__item .p-linebtn {
  margin-top: 3rem;
}
@media print, screen and (max-width: 768px) {
  .home-services__item .p-linebtn {
    margin: 2rem auto 0;
  }
}
.home-services__item:last-child {
  margin-top: 6rem;
  align-items: flex-start;
}
.home-services__item:last-child .c-title--h4 {
  width: 39rem;
}
.home-services__item:last-child > .wrap {
  width: 80rem;
}
.home-partnerships {
  position: relative;
  padding-bottom: 9rem;
  margin-bottom: 12rem;
}
@media print, screen and (max-width: 768px) {
  .home-partnerships {
    padding-bottom: 16.8rem;
    margin-bottom: 9rem;
  }
}
.home-partnerships > figure {
  width: 118rem;
}
@media print, screen and (max-width: 768px) {
  .home-partnerships > figure {
    width: 100%;
  }
}
.home-partnerships > figcaption {
  padding: 4rem 5rem;
  position: absolute;
  right: 20px;
  bottom: 0;
  width: fit-content;
  background: transparent;
  background: #fff;
  box-shadow: 13px 13px 30px rgba(0, 0, 0, 0.15);
}
@media print, screen and (max-width: 768px) {
  .home-partnerships > figcaption {
    padding: 2.5rem 3rem;
    right: 0;
    left: 0;
    margin: auto;
    width: calc(100% - 4rem);
  }
}
.home-partnerships > figcaption > .title {
  font-size: 36px;
  line-height: 1.4;
  font-family: "Tenor Sans", sans-serif;
}
@media print, screen and (max-width: 900px) {
  .home-partnerships > figcaption > .title {
    font-size: 30px;
  }
}
@media print, screen and (max-width: 768px) {
  .home-partnerships > figcaption > .title {
    font-size: 3rem;
  }
}
.home-partnerships > figcaption > .p-linebtn {
  margin: 1rem 0 0 auto;
}
@media print, screen and (max-width: 768px) {
  .home-partnerships > figcaption > .p-linebtn {
    margin: 1rem auto 0 auto;
  }
}
.home-ourpartners {
  background-color: #f7f7f5;
}
.home-ourpartners__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 5rem;
}
.home-ourpartners__list > li {
  width: 27rem;
}
@media print, screen and (max-width: 768px) {
  .home-ourpartners__list > li {
    width: 18.5rem;
    margin-bottom: 1.8rem;
  }
  .home-ourpartners__list > li:nth-last-child(1), .home-ourpartners__list > li:nth-last-child(2) {
    margin-bottom: 0;
  }
}
.home-news {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.home-news__head {
  width: calc(100% - 90rem);
}
@media print, screen and (max-width: 900px) {
  .home-news__head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
  }
}
.home-news__head .c-title--h3 {
  text-align: left;
}
.home-news__head .c-title--h3::after {
  right: auto;
}
.home-news__head .p-linebtn {
  margin-top: 5rem;
  max-width: fit-content;
  padding-right: calc(12px + 4rem);
}
@media print, screen and (max-width: 900px) {
  .home-news__head .p-linebtn {
    margin-top: 0;
  }
}
.home-news__body {
  width: 90rem;
}
@media print, screen and (max-width: 900px) {
  .home-news__body {
    width: 100%;
    margin-top: 2rem;
  }
}

/* -----------------------------------------------
page
----------------------------------------------- */
.page-mv {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  height: 30rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 8rem;
  border-bottom: 1px solid #b7b7b7;
}
@media print, screen and (max-width: 768px) {
  .page-mv {
    padding: 4rem 2rem 5rem;
    height: auto;
  }
}
.page-mv__title {
  font-size: 57px;
  line-height: 1.5;
}
@media print, screen and (max-width: 1200px) {
  .page-mv__title {
    font-size: 40px;
  }
}
@media print, screen and (max-width: 768px) {
  .page-mv__title {
    font-size: 3.8rem;
    letter-spacing: 0;
  }
}

/* -----------------------------------------------
about
----------------------------------------------- */
.about-message .p-sec__body p:first-child {
  width: 63rem;
  margin: auto;
  font-size: 3rem;
  margin-bottom: 7rem;
}
@media print, screen and (max-width: 768px) {
  .about-message .p-sec__body p:first-child {
    font-size: 2rem;
    margin-bottom: 3rem;
    width: 100%;
  }
}
.about-message .p-sec__body figure {
  margin-top: 6rem;
}
@media print, screen and (max-width: 768px) {
  .about-message .p-sec__body figure {
    margin-top: 4rem;
  }
}
@media print, screen and (max-width: 768px) {
  .about-info.p-sec {
    padding-bottom: 0;
  }
}
.about-info__map iframe {
  margin-top: 9rem;
  width: 100%;
  height: 60rem;
  box-shadow: 13px 13px 30px rgba(0, 0, 0, 0.15);
}
@media print, screen and (max-width: 768px) {
  .about-info__map iframe {
    height: 40rem;
    margin-top: 6rem;
  }
}
.about-group__title {
  width: 41rem;
}
@media print, screen and (max-width: 768px) {
  .about-group__title {
    width: 55%;
  }
}
.about-group__list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  font-size: 18px;
}
@media print, screen and (max-width: 768px) {
  .about-group__list {
    font-size: 1.6rem;
  }
}
.about-group__list > dt {
  width: 30%;
}
@media print, screen and (max-width: 768px) {
  .about-group__list > dt {
    width: 100%;
    font-size: 1.8rem;
  }
}
.about-group__list > dd {
  width: 70%;
}
@media print, screen and (max-width: 768px) {
  .about-group__list > dd {
    width: 100%;
    padding-left: 2rem;
    margin-top: 2rem;
  }
}
.about-group__list > dd > ul > li {
  margin-bottom: 1rem;
}

/* -----------------------------------------------
dialysis
----------------------------------------------- */
.dialysis-services figure {
  margin-bottom: 3rem;
}
@media print, screen and (max-width: 768px) {
  .dialysis-services figure {
    margin-bottom: 2rem;
  }
}
.dialysis-services .p-service__cta {
  margin-top: 6rem;
}

/* -----------------------------------------------
ophthalmology
----------------------------------------------- */
.ophthalmology-services figure {
  margin-bottom: 3rem;
}
@media print, screen and (max-width: 768px) {
  .ophthalmology-services figure {
    margin-bottom: 2rem;
  }
}
.ophthalmology-services .p-service__cta {
  margin-top: 6rem;
}

/* -----------------------------------------------
other
----------------------------------------------- */
.other__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.other__item > figure {
  width: 48rem;
}
@media print, screen and (max-width: 768px) {
  .other__item > figure {
    width: 100%;
  }
}
.other__item > figcaption {
  width: 66rem;
}
@media print, screen and (max-width: 768px) {
  .other__item > figcaption {
    width: 100%;
  }
}

/* -----------------------------------------------
partnership
----------------------------------------------- */
.partnership-services__item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6%;
}
.partnership-services__item > * {
  width: 47%;
  margin-bottom: 6%;
}
@media print, screen and (max-width: 768px) {
  .partnership-services__item > * {
    margin-bottom: 2rem;
    width: 100%;
  }
}
@media print, screen and (max-width: 768px) {
  .partnership-services__item > figure {
    margin-bottom: 6rem;
  }
}
.partnership-services__item > figcaption > .c-title--h4 {
  margin-bottom: 2.4rem;
}
@media print, screen and (max-width: 768px) {
  .partnership-services__item > figcaption > .c-title--h4 {
    margin-bottom: 2rem;
  }
}
@media print, screen and (max-width: 768px) {
  .partnership-services__item:last-child > figure {
    margin-bottom: 0;
  }
}
.partnership-supported .p-sec {
  padding-bottom: 0;
}
.partnership-supported__item {
  margin-bottom: 10rem;
}
@media print, screen and (max-width: 768px) {
  .partnership-supported__item {
    margin-bottom: 6rem;
  }
}
.partnership-supported__item > .c-title--h4 {
  margin-bottom: 2.4rem;
}
@media print, screen and (max-width: 768px) {
  .partnership-supported__item > .c-title--h4 {
    margin-bottom: 2rem;
  }
}
.partnership-supported__item > .cover {
  margin-top: 3rem;
  padding: 1em 1em;
  border: 4px solid #f0f0ea;
}
@media print, screen and (max-width: 768px) {
  .partnership-supported__item > .cover {
    font-size: 1.4rem;
  }
}
.partnership-supported__item:last-child {
  margin-bottom: 0;
}
.partnership-cta {
  text-align: center;
}
.partnership-cta__title {
  font-size: 30px;
  line-height: 1.5;
}
@media print, screen and (max-width: 768px) {
  .partnership-cta__title {
    font-size: 2.4rem;
  }
}
.partnership-cta__btn {
  background-color: #fff;
  border: 2px solid #3c3c3c;
  font-size: 36px;
  width: 82rem;
  padding: 4rem 2rem;
  display: block;
  margin: auto;
  position: relative;
  box-shadow: 13px 13px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
@media print, screen and (max-width: 1200px) {
  .partnership-cta__btn {
    width: 90rem;
  }
}
@media print, screen and (max-width: 900px) {
  .partnership-cta__btn {
    font-size: 28px;
    width: 80%;
  }
}
@media print, screen and (max-width: 768px) {
  .partnership-cta__btn {
    font-size: 1.8rem;
    width: 100%;
    padding: 2rem 1rem;
  }
}
.partnership-cta__btn:hover {
  box-shadow: none;
  opacity: 1;
  border-color: #b6012f;
}
.partnership-cta__btn > span {
  display: inline-block;
  position: relative;
  padding-left: calc(40px + 2rem);
  padding-right: calc(40px + 2rem);
}
.partnership-cta__btn > span::after {
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  background-image: url(../img/common/icon-mail.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 40px;
  height: 31px;
}
@media print, screen and (max-width: 768px) {
  .partnership-cta__btn > span::after {
    width: 30px;
    height: 24px;
  }
}
.partnership-cta__btn__arrow {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

/* -----------------------------------------------
privacy
----------------------------------------------- */
.privacy-content .privacy-sec {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
@media print, screen and (max-width: 768px) {
  .privacy-content .privacy-sec {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.privacy-content .privacy-sec__body {
  margin-top: 3rem;
}
@media print, screen and (max-width: 768px) {
  .privacy-content .privacy-sec__body {
    margin-top: 2rem;
  }
}
.privacy-content .privacy-sec__body ul {
  padding-left: 2rem;
  list-style-type: disc;
}
.privacy-content .privacy-sec__body ul li {
  margin-top: 3rem;
}
@media print, screen and (max-width: 768px) {
  .privacy-content .privacy-sec__body ul li {
    margin-top: 1rem;
  }
}
.privacy-content .privacy-sec__body ul li::marker {
  color: #b6012f;
}
.privacy-content .privacy-sec__body ul + p:not([class^="u-mt"]) {
  margin-top: 2rem;
}
.privacy-sec .p-inner--pcs > .title {
  text-align: center;
  font-size: 3.4rem;
  font-family: "Tenor Sans", sans-serif;
}
@media print, screen and (max-width: 768px) {
  .privacy-sec .p-inner--pcs > .title {
    font-size: 3rem;
  }
}
.privacy-sec__body {
  margin-top: 3rem;
}
.privacy-sec__body > .title {
  margin-bottom: 1.5rem;
  margin-top: 6rem;
  font-size: 3rem;
  text-align: left;
  font-family: "Tenor Sans", sans-serif;
}

/* -----------------------------------------------
inquiry
----------------------------------------------- */
.inquiry .asterisk {
  color: #b6012f;
  font-size: 0.7em;
}
.inquiry .asterisk sup {
  font-size: 1.4em;
}
.inquiry-form {
  margin-top: 8rem;
}
@media print, screen and (max-width: 768px) {
  .inquiry-form {
    margin-top: 4rem;
  }
}
.inquiry-table {
  font-family: "Tenor Sans", sans-serif;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 3.7rem;
}
@media print, screen and (max-width: 768px) {
  .inquiry-table {
    margin-top: 1.5rem;
  }
}
.inquiry-table__item {
  width: 30%;
}
@media print, screen and (max-width: 768px) {
  .inquiry-table__item {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.inquiry-table__field {
  width: 65%;
}
@media print, screen and (max-width: 768px) {
  .inquiry-table__field {
    width: 100%;
  }
}
.inquiry-table__privacy {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .inquiry-table__privacy {
    margin-top: 2rem;
    font-size: 1.5rem;
  }
}
.inquiry-table__privacy > p {
  display: flex;
  justify-content: center;
}
.inquiry-table__privacy .wpcf7-list-item-label {
  padding-left: 12px;
}
@media print, screen and (max-width: 768px) {
  .inquiry-table__privacy .wpcf7-list-item-label {
    padding-left: 2rem;
  }
}

/* -----------------------------------------------
news
----------------------------------------------- */
.news-block__title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 4rem;
  margin-top: 0.5rem;
}
@media print, screen and (max-width: 768px) {
  .news-block__title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }
}
.news-block__content {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 6rem;
  margin-bottom: 6rem;
}
@media print, screen and (max-width: 768px) {
  .news-block__content {
    padding-bottom: 3rem;
    margin-bottom: 3rem;
  }
}
.news-block__content figure {
  margin-top: 2rem;
}
.news-block__content p {
  margin-top: 2rem;
}
.news-block__content a {
  font-weight: 600;
  color: #b6012f;
  text-decoration: underline;
}
.news-block__content strong {
  font-weight: 600;
}
.news-block__content ul {
  padding-left: 2rem;
  list-style-type: disc;
  margin-top: 2rem;
}
.news-block__content ul li::marker {
  color: #b6012f;
  font-size: 0.7em;
}
.news-block__content ol {
  padding-left: 2rem;
  list-style: auto;
  text-indent: 0;
  margin-top: 2rem;
}
.news-block__content ol li::marker {
  color: #b6012f;
}
.news-block__posts {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.news-block__posts a {
  color: #b6012f;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .news-block__posts a {
    font-size: 1.3rem;
  }
}
.news-block__posts a.list {
  margin: auto;
}
.news-block__posts a img {
  width: 1.4rem;
  vertical-align: baseline;
}
@media print, screen and (max-width: 768px) {
  .news-block__posts a img {
    width: 1rem;
  }
}
.news-block__posts a img.prev {
  margin-right: 1rem;
  transform: rotate(180deg);
}
.news-block__posts a img.next {
  margin-left: 1rem;
}

.news-article__item > a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding: 3.5rem calc(40px + 1rem) 3.5rem 0;
}
@media print, screen and (max-width: 768px) {
  .news-article__item > a {
    padding: 3rem calc(30px + 1rem) 3rem 0;
  }
}
.news-article__item > a > .date {
  font-size: 0.9em;
  width: 20%;
}
@media print, screen and (max-width: 768px) {
  .news-article__item > a > .date {
    width: 100%;
  }
}
.news-article__item > a > .date + p {
  width: 80%;
}
@media print, screen and (max-width: 768px) {
  .news-article__item > a > .date + p {
    width: 100%;
  }
}
.news-article__item > a::after, .news-article__item > a::before {
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}
.news-article__item > a::before {
  background-color: #e6e6e6;
}
.news-article__item > a::after {
  background-color: #575757;
  transform: scale(0, 1);
  transform-origin: right top;
}
.news-article__item > a:hover {
  opacity: 1;
  background-position: center right;
}
.news-article__item > a:hover::before {
  transform: scale(0, 1);
  transition: transform 0s;
}
.news-article__item > a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
  transition: transform 0.4s;
}
.news-article__arrow {
  position: absolute;
  right: 0;
}

/* ====================================================
component
==================================================== */
.c-title--h3 {
  text-align: center;
  font-size: 40px;
  font-family: "Tenor Sans", sans-serif;
  letter-spacing: 0.08em;
  padding-bottom: 1.5rem;
  position: relative;
  line-height: 1.5;
}
@media print, screen and (max-width: 900px) {
  .c-title--h3 {
    font-size: 30px;
  }
}
@media print, screen and (max-width: 768px) {
  .c-title--h3 {
    font-size: 3rem;
    line-height: 1.3;
  }
}
.c-title--h3::after {
  content: "";
  position: absolute;
  background-color: #b6012f;
  width: 8.3rem;
  height: 2px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.c-title--h4 {
  font-size: 30px;
  font-family: "Tenor Sans", sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
@media print, screen and (max-width: 900px) {
  .c-title--h4 {
    font-size: 24px;
  }
}
@media print, screen and (max-width: 768px) {
  .c-title--h4 {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

.c-btn-circle {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
@media print, screen and (min-width: 768px) {
  .c-btn-circle--hover:hover .c-btn-circle::before {
    width: 40px;
    height: 40px;
    background-color: #b6012f;
  }
  .c-btn-circle--hover:hover .c-btn-circle::after {
    opacity: 1;
    transform: scale(1.4);
  }
}
.c-btn-circle::before, .c-btn-circle::after {
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  transition: all 0.3s;
}
.c-btn-circle::before {
  width: 12px;
  height: 12px;
  background-color: #adadad;
  border-radius: 50%;
}
@media print, screen and (max-width: 768px) {
  .c-btn-circle::before {
    width: 33px;
    height: 33px;
    background-color: #b6012f;
  }
}
.c-btn-circle::after {
  background-image: url(../img/common/icon-arrow-w.svg);
  width: 14px;
  height: 9px;
  background-size: cover;
  opacity: 0;
  transform: scale(0.2);
}
@media print, screen and (max-width: 768px) {
  .c-btn-circle::after {
    opacity: 1;
    transform: scale(1);
  }
}

.c-line--b {
  border-bottom: 1px solid #e6e6e6;
}

/* ====================================================
project
==================================================== */
/* -----------------------------------------------
inner
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .p-inner--pcl {
    width: calc(100vw - (4.6rem * 2));
    margin-left: auto;
    margin-right: auto;
  }

  .p-inner--pcm {
    width: 120rem;
    margin-left: auto;
    margin-right: auto;
  }

  .p-inner--pcs {
    width: 90rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media print, screen and (max-width: 1200px) {
  .p-inner--pcl {
    width: 100%;
  }

  .p-inner--pcm {
    width: 90%;
  }

  .p-inner--pcs {
    width: 90%;
  }
}
@media print, screen and (max-width: 768px) {
  .p-inner--sp {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .p-inner--pcm {
    width: 100%;
  }

  .p-inner--pcs {
    width: 100%;
  }
}
/* -----------------------------------------------
p-sec
----------------------------------------------- */
.p-sec {
  padding-top: 12rem;
  padding-bottom: 12rem;
}
@media print, screen and (max-width: 768px) {
  .p-sec {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
.p-sec__body {
  margin-top: 5rem;
}
@media print, screen and (max-width: 768px) {
  .p-sec__body {
    margin-top: 4rem;
  }
}

.p-linebtn {
  font-size: 18px;
  padding: 1.5rem 0;
  position: relative;
  display: block;
  width: 180px;
  line-height: 1.2;
}
@media print, screen and (max-width: 768px) {
  .p-linebtn {
    font-size: 1.8rem;
    width: 18rem;
  }
}
.p-linebtn::after, .p-linebtn::before {
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}
.p-linebtn::before {
  background-color: #707070;
}
.p-linebtn::after {
  background-color: #b6012f;
  transform: scale(0, 1);
  transform-origin: right top;
}
.p-linebtn > .arrow {
  display: block;
}
.p-linebtn > .arrow::before {
  bottom: 0;
  top: 0;
  margin: auto;
  content: "";
  position: absolute;
  background-image: url(../img/common/icon-arrow.svg);
  width: 14px;
  height: 9px;
  background-size: cover;
  transition: right 0.3s;
  right: 12px;
}
.p-linebtn:hover {
  opacity: 1;
  background-position: center right;
}
.p-linebtn:hover::before {
  transform: scale(0, 1);
  transition: transform 0s;
}
.p-linebtn:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
  transition: transform 0.4s;
}
.p-linebtn:hover > .arrow::before {
  right: 0;
}

.p-dltable {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}
.p-dltable > dt {
  padding: 2.5rem 0;
  border-bottom: #b6012f 1px solid;
  width: 30%;
}
.p-dltable > dd {
  padding: 2.5rem 0 2.5rem 4rem;
  border-bottom: #e6e6e6 1px solid;
  width: 70%;
}

.p-headding.p-sec {
  padding-bottom: 0;
}

.p-service__item__title {
  font-size: 28px;
  letter-spacing: 0;
  margin-bottom: 2.2rem;
  line-height: 1.4;
  font-family: "Tenor Sans", sans-serif;
}
@media print, screen and (max-width: 768px) {
  .p-service__item__title {
    font-size: 2.4rem;
    margin-bottom: 1.8rem;
  }
}
.p-service__cta {
  display: block;
  padding: 6rem 10rem;
  background-color: #fff;
  background-image: url(../img/common/partners_link_img.jpg);
  background-size: auto 100%;
  background-position: left center;
  background-repeat: no-repeat;
  box-shadow: 13px 13px 30px rgba(0, 0, 0, 0.15);
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .p-service__cta {
    background-image: url(../img/common/partners_link_img-sp.jpg);
    background-size: 100% auto;
    background-position: top center;
    padding: 22rem 2rem 4rem;
  }
}
.p-service__cta > .text {
  margin-left: auto;
  font-size: 3.6rem;
  width: 51%;
}
@media print, screen and (max-width: 768px) {
  .p-service__cta > .text {
    width: 100%;
    font-size: 2.4rem;
  }
}
.p-service__cta__arrow {
  position: absolute;
  right: 3rem;
  bottom: 3rem;
}
.p-service__pleace {
  background-color: #f7f7f5;
}
.p-service__pleace .p-sec__head {
  text-align: left;
}
.p-service__pleace .p-sec__head p:first-child {
  font-size: 26px;
  margin-bottom: 1rem;
  line-height: 1.4;
}
@media print, screen and (max-width: 768px) {
  .p-service__pleace .p-sec__head p:first-child {
    font-size: 2.2rem;
  }
}
.p-service__pleace .p-sec__head .c-title--h3 {
  text-align: left;
}
.p-service__pleace .p-sec__head .c-title--h3::after {
  right: auto;
}
.p-service__pleace .p-sec__body > .map {
  margin-right: calc(50% - 40vw);
  margin-left: calc(50% - 40vw);
  width: 80vw;
}
@media print, screen and (max-width: 768px) {
  .p-service__pleace .p-sec__body > .map {
    width: 100%;
    margin: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }
  .p-service__pleace .p-sec__body > .map img {
    width: 1400px;
    max-width: none;
  }
}
.p-service__pleace .p-sec__body > .sidecard {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  background: #fff;
  padding: 4rem;
  margin-top: 7rem;
  font-size: 28px;
}
@media print, screen and (max-width: 768px) {
  .p-service__pleace .p-sec__body > .sidecard {
    padding: 2rem;
    margin-top: 4rem;
    font-size: 2rem;
  }
}
.p-service__pleace .p-sec__body > .sidecard > figure {
  width: 48rem;
}
@media print, screen and (max-width: 768px) {
  .p-service__pleace .p-sec__body > .sidecard > figure {
    width: 100%;
  }
}
.p-service__pleace .p-sec__body > .sidecard > figcaption {
  width: 58rem;
  margin-left: auto;
}
@media print, screen and (max-width: 768px) {
  .p-service__pleace .p-sec__body > .sidecard > figcaption {
    margin-top: 2rem;
    width: 100%;
  }
}

/* -----------------------------------------------
p-peger
----------------------------------------------- */
.p-peger {
  margin-top: 8rem;
}
.p-peger .page-numbers {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.p-peger .page-numbers {
  color: #bdbdbd;
  font-size: 1.6rem;
  padding: 0 2rem;
  align-items: center;
}
@media print, screen and (max-width: 768px) {
  .p-peger .page-numbers {
    font-size: 1.4rem;
    padding: 0 0.8rem;
  }
}
.p-peger .current {
  color: #b6012f;
}
.p-peger .next img,
.p-peger .prev img {
  width: 1.5rem;
}
@media print, screen and (max-width: 768px) {
  .p-peger .next img,
  .p-peger .prev img {
    width: 1rem;
  }
}
.p-peger .prev {
  transform: rotate(180deg);
}

/* ====================================================
flex
==================================================== */
.u-fl {
  display: flex;
  flex-wrap: wrap;
}
.u-fl .od2 {
  order: 2;
}
@media print, screen and (max-width: 768px) {
  .u-fl .od0-sp {
    order: 0;
  }
  .u-fl .od2-sp {
    order: 2;
  }
}

.u-fl__col2,
.u-fl__col3,
.u-fl__col4,
.u-fl__col5 {
  flex-wrap: wrap;
}

.u-fl__col1 > * {
  width: 100%;
}

.u-fl__col2 > * {
  width: 50%;
}

.u-fl__col3 > * {
  width: calc(100% / 3);
}

.u-fl__col4 > * {
  width: 25%;
}

.u-fl__col5 > * {
  width: 20%;
}

.u-fl__col2.gap {
  gap: 6%;
}

.u-fl__col3.gap {
  gap: 5%;
}

.u-fl__col4.gap {
  gap: 3%;
}

.u-fl__col5.gap {
  gap: 3%;
}

.u-fl__col2.gap > * {
  width: 47%;
  margin-bottom: 6%;
}

.u-fl__col3.gap > * {
  width: 30%;
  margin-bottom: 5%;
}

.u-fl__col4.gap > * {
  width: 22.7%;
  margin-bottom: 4%;
}

.u-fl__col5.gap > * {
  width: 17.6%;
  margin-bottom: 3%;
}

@media print, screen and (max-width: 768px) {
  .u-fl__col2.u-fl__sp-block > *,
  .u-fl__col3.u-fl__sp-block > *,
  .u-fl__col4.u-fl__sp-block > *,
  .u-fl__col5.u-fl__sp-block > * {
    width: 100%;
  }

  .u-fl__col2.gap.u-fl__sp-block > *,
  .u-fl__col3.gap.u-fl__sp-block > *,
  .u-fl__col4.gap.u-fl__sp-block > *,
  .u-fl__col5.gap.u-fl__sp-block > * {
    margin-bottom: 15%;
  }

  .u-fl__col2.gap.u-fl__sp-block > *:last-child,
  .u-fl__col3.gap.u-fl__sp-block > *:last-child,
  .u-fl__col4.gap.u-fl__sp-block > *:last-child,
  .u-fl__col5.gap.u-fl__sp-block > *:last-child {
    margin-bottom: 0;
  }

  .u-fl__sp-col3 > * {
    width: calc(100% / 3);
  }

  .u-fl__sp-col2 > * {
    width: 50%;
  }

  .u-fl__sp-col2.gap {
    gap: 8%;
  }

  .u-fl__sp-col3.gap {
    gap: 3%;
  }

  .u-fl__sp-col2.gap > * {
    width: 46%;
    margin-bottom: 4%;
  }

  .u-fl__sp-col3.gap > * {
    width: 31.33%;
    margin-bottom: 3%;
  }
}
.u-inlineblock {
  display: inline-block;
}

/* ====================================================
font
==================================================== */
.u-ft-tenir {
  font-family: "Tenor Sans", sans-serif;
}

/* ====================================================
text
==================================================== */
.u-right {
  text-align: right;
}

.u-left {
  text-align: left;
}

.u-center {
  text-align: center;
}

.u-lighter {
  font-weight: 400;
}

.u-middle {
  font-weight: 500;
}

.u-bold {
  font-weight: 600;
}

@media print, screen and (max-width: 768px) {
  .u-left-sp {
    text-align: left;
  }
}
/* ====================================================
padding
==================================================== */
@media print, screen and (max-width: 768px) {
  .u-pb0-sp {
    padding-bottom: 0;
  }
}
/* ====================================================
margin
==================================================== */
.u-mt10 {
  margin-top: 1rem;
}

.u-mt20 {
  margin-top: 2rem;
}

.u-mt30 {
  margin-top: 3rem;
}

.u-mt40 {
  margin-top: 4rem;
}

.u-mt50 {
  margin-top: 5rem;
}

.u-mt60 {
  margin-top: 6rem;
}

.u-mt80 {
  margin-top: 8rem;
}

.u-mt90 {
  margin-top: 9rem;
}

.u-mt100 {
  margin-top: 10rem;
}

.u-mt110 {
  margin-top: 11rem;
}

.u-mrlauto {
  margin-left: auto;
  margin-right: auto;
}

@media print, screen and (max-width: 768px) {
  .u-mt0-sp {
    margin-top: 0rem;
  }

  .u-mt10-sp {
    margin-top: 1rem;
  }

  .u-mt20-sp {
    margin-top: 2rem;
  }

  .u-mt30-sp {
    margin-top: 3rem;
  }

  .u-mt40-sp {
    margin-top: 4rem;
  }

  .u-mt50-sp {
    margin-top: 5rem;
  }

  .u-mt60-sp {
    margin-top: 6rem;
  }
}
/* ====================================================
width
==================================================== */
@media print, screen and (max-width: 768px) {
  .u-full-sp {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    width: 100vw;
  }
}
/* ====================================================
color
==================================================== */
.u-txtc-red {
  color: #b6012f;
}

/* ====================================================
link
==================================================== */
.u-outlink {
  color: #b6012f;
  display: inline-block;
  position: relative;
  padding-right: 24px;
  transition: border 0.3s ease;
  border-bottom: 1px solid #fff;
}
.u-outlink:hover {
  border-bottom: 1px solid #b6012f;
}
.u-outlink::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../img/common/icon-out.svg);
  background-size: cover;
  width: 14px;
  height: 14px;
}

a.u-linelink {
  text-decoration: underline;
}

/* ====================================================
list
==================================================== */
ul.u-list--dots {
  list-style-type: disc;
}
ul.u-list--dots li::marker {
  color: #b6012f;
}
