@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Poppins:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@24,400,1,0&display=swap");
/*===================================================

// 北里大学医学部泌尿器科学教室
// 20241101
// style.css

===================================================*/
:root {
  --color-body: #2A2A2A;
  --color-gray1: #566a81;
  --color-gray2: #768EA8;
  --color-bg-gray1: #EEF2F3;
  --color-line1: #DDD;
  --color-line2: #CBCFD1;
  --color-black: #000;
  --color-blue1: #004EA2;
  --color-blue1-hover: #E9F5FE;
  --color-blue2: #06057B;
  --color-blue3: #A7DCF3;
  --color-bg-blue1: #E9F5FE;
  --color-bg-blue2: #EDF4FA;
  --color-yellow1: #FF0;
  --color-red1:#dc1e1e;
  --color-bg-red1:#feefef;
  --color-link: #004EA2;
  --font-primary: "Noto Sans JP", sans-serif;
  --font-mincho: "Noto Serif JP", serif;
  --font-en: "Poppins", sans-serif;
}

html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button {
  margin: 0;
  border: none;
  outline: none;
  padding: 0;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
  box-shadow: none;
}

button {
  cursor: pointer;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
video {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

header,
footer,
main {
  display: block;
}

html {
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  font-optical-sizing: auto;
  font-feature-settings: "palt";
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-body);
  font-family: var(--font-primary);
  word-break: break-word;
  overflow: hidden;
}
@media print, screen and (min-width: 769px) {
  body {
    font-size: 16px;
  }
}

a {
  color: var(--color-link);
  text-underline-offset: 3px;
}
@media screen and (max-width: 768px) {
  a[href*="tel:"] {
    text-decoration: none;
  }
}
@media print, screen and (min-width: 769px) {
  a:hover {
    text-decoration: none;
  }
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: inherit;
  }
}

em {
  font-style: normal;
}

sub {
  vertical-align: baseline;
  font-size: 0.75em;
}

sup {
  vertical-align: top;
  font-size: 0.75em;
}

/*===================================================

 common

===================================================*/
.l-wrapper::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  background: url(../img/top-main-bg.png) no-repeat 0 0;
  background-size: 42.5vw auto;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .l-wrapper::before {
    background-size: 90vw auto;
  }
}

.l-main {
  position: relative;
  font-feature-settings: normal;
}

body:not(.page-index) .l-main {
  background: rgba(255, 255, 255, 0.95);
}

/*===================================================

 animation

===================================================*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media print, screen and (min-width: 769px) {
  .anime-bottom {
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
  }
  .anime-bottom.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .anime-left {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50px);
    transition: opacity 1s ease, transform 1s ease;
  }
  .anime-left.visible {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
  }
  .anime--right {
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: opacity 1s ease, transform 1s ease;
  }
  .anime-right.visible {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
  }
  .anime-fadein {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
  }
  .anime-fadein.visible {
    opacity: 1;
    visibility: visible;
  }
}
@media print {
  .anime-bottom,
  .anime-top,
  .anime-right,
  .anime-left {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
  .anime-fadein {
    opacity: 1 !important;
    visibility: visible !important;
  }
}
/*===================================================

 accessibility

===================================================*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*===================================================

 icon

===================================================*/
.icon-info {
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.icon-info::before {
  content: "\e88e";
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.icon-tel {
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.icon-tel::before {
  content: "\e0b0";
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.icon-lock {
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.icon-lock::before {
  content: "\e897";
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

/*===================================================

 header

===================================================*/
.l-header {
  position: relative;
  z-index: 14;
}
.l-header__container {
  padding: 0 2.25vw;
  display: flex;
}
@media screen and (max-width: 768px) {
  .l-header__container {
    padding: 0;
    height: 64px;
  }
}
.l-header .header-logo {
  width: 25.83vw;
  max-width: 560px;
  min-width: 400px;
  position: absolute;
  top: 50%;
  left: 2.25vw;
  transform: translateY(-50%);
  z-index: 21;
}
@media screen and (max-width: 768px) {
  .l-header .header-logo {
    width: 253px;
    min-width: initial;
    left: 16px;
  }
}
.l-header .header-logo .scroll {
  display: none;
}
.l-header:has(.global-nav[aria-hidden=false]) .header-logo .default {
  display: none !important;
}
.l-header:has(.global-nav[aria-hidden=false]) .header-logo .scroll {
  display: block !important;
}
.l-header .header-menu-btn {
  background: transparent;
  position: absolute;
  top: 8px;
  right: 8px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 21;
}
@media print, screen and (min-width: 769px) {
  .l-header .header-menu-btn {
    display: none !important;
  }
}
.l-header .header-menu-btn__line {
  display: block;
  position: relative;
  width: 20px;
  height: 18px;
}
.l-header .header-menu-btn__line > span {
  display: block;
  background: var(--color-body);
  width: 20px;
  height: 2px;
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: all 0.4s;
}
.l-header .header-menu-btn__line > span:nth-child(1) {
  top: 0;
}
.l-header .header-menu-btn__line > span:nth-child(2) {
  top: 8px;
}
.l-header .header-menu-btn__line > span:nth-child(3) {
  top: 16px;
}
.l-header .header-menu-btn[aria-expanded=true] .header-menu-btn__line span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}
.l-header .header-menu-btn[aria-expanded=true] .header-menu-btn__line span:nth-child(2) {
  display: none;
}
.l-header .header-menu-btn[aria-expanded=true] .header-menu-btn__line span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}

@media print, screen and (min-width: 769px) {
  .page-index .l-header {
    transform: translateY(-100%);
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.83, 0, 0.17, 1), transform 1.5s cubic-bezier(0.83, 0, 0.17, 1);
    transition-delay: 1s;
  }
  .page-index .l-header.is-loaded {
    opacity: 1;
    transform: translateY(0);
  }
}

@media print, screen and (min-width: 769px) {
  .is-scroll .l-header {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
  }
  .is-scroll .l-header .header-logo .default {
    display: none;
  }
  .is-scroll .l-header .header-logo .scroll {
    display: block;
  }
  .is-scroll .l-header .global-nav__container {
    height: 80px;
    padding-top: 0;
  }
  .is-scroll .l-header .global-submenu {
    opacity: 0;
    visibility: hidden;
    height: 0;
  }
}
@media screen and (max-width: 768px) {
  .is-scroll .l-header {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
  }
  .is-scroll .l-header .header-logo .default {
    display: none;
  }
  .is-scroll .l-header .header-logo .scroll {
    display: block;
  }
}

/*-------------------------------------------------

 グローバルナビゲーション

-------------------------------------------------*/
@media print, screen and (min-width: 769px) {
  .global-nav {
    flex: 1;
  }
  .global-nav__container {
    padding-top: 20px;
    padding-left: 400px;
    height: 128px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: flex-end;
    transition: all 0.2s;
  }
  .global-nav__container a {
    text-decoration: none;
    color: var(--color-body);
  }
  .global-submenu__list {
    display: flex;
    gap: 8px;
  }
  .global-submenu__list > li a {
    display: block;
    background: var(--color-bg-gray1);
    border: 1px solid var(--color-line2);
    border-radius: 20px;
    font-size: 14px;
    line-height: 1;
    padding: 6px 16px;
  }
  .global-submenu__list > li a.menu-domonkai {
    background: var(--color-blue2);
    border-color: var(--color-blue2);
    color: #fff;
    display: flex;
    align-items: center;
  }
  .global-submenu__list > li a.menu-domonkai::before {
    content: "\e897";
    font-family: "Material Symbols Rounded";
    font-weight: normal;
    font-style: normal;
    font-size: 1em;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    margin-right: 4px;
  }
  .global-menu {
    margin-top: 16px;
  }
  .global-menu__list {
    display: flex;
    gap: 0 0.8vw;
  }
  .global-menu__list > li > .label {
    display: block;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    padding: 24px 10px;
    position: relative;
    white-space: nowrap;
  }
  .global-menu__list > li > .label::before {
    content: "";
    display: block;
    background: var(--color-blue1);
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.2s;
  }
  .global-menu__list > li:hover > .label {
    color: var(--color-blue1);
  }
  .global-menu__list > li:hover > .label::before {
    height: 3px;
  }
  .global-menu__list > li:hover .global-dropmenu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
    transition: transform 0.2s 0.25s, opacity 0.4s, visibility 0s 0.25s;
  }
  .global-menu__list > li.menu1 .global-dropmenu > ul, .global-menu__list > li.menu3 .global-dropmenu > ul, .global-menu__list > li.menu5 .global-dropmenu > ul {
    justify-content: flex-start;
  }
  .global-dropmenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-blue1);
    width: 100%;
    padding: 40px 4vw;
    transform: scaleY(0);
    opacity: 0;
    visibility: hidden;
    transform-origin: top;
    transition: all 0s 0.25s;
    z-index: 10;
  }
  .global-dropmenu > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .global-dropmenu > ul > li {
    min-width: 240px;
    width: calc((100% - 60px) / 4);
    line-height: 1.4;
  }
  .global-dropmenu > ul > li a {
    color: #fff;
  }
  .global-dropmenu > ul > li a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 768px) {
  .global-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fff;
    z-index: 20;
    padding-top: 64px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s;
  }
  .global-nav[aria-hidden=true] {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    left: 100vw;
    transition: all 0.2s;
  }
  .global-nav__container {
    height: 100%;
    overflow-y: auto;
    overscroll-behavior: contain;
    font-feature-settings: normal;
  }
  .global-nav .global-menu {
    background: #fff;
  }
  .global-nav .global-menu__list {
    border-top: 1px solid var(--color-line1);
  }
  .global-nav .global-menu__list > li {
    border-bottom: 1px solid var(--color-line1);
  }
  .global-nav .global-menu__list > li:has(.global-dropmenu[aria-hidden=false]) {
    background: var(--color-bg-blue1);
  }
  .global-nav .global-menu__list > li .trigger-btn {
    width: 100%;
    text-align: left;
    position: relative;
    color: inherit;
  }
  .global-nav .global-menu__list > li .trigger-btn .icon {
    background: transparent;
    display: flex;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: var(--color-blue1);
  }
  .global-nav .global-menu__list > li .trigger-btn .icon::before {
    content: "\e145";
    font-family: "Material Symbols Rounded";
    font-weight: normal;
    font-style: normal;
    font-size: 1em;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
  }
  .global-nav .global-menu__list > li .trigger-btn[aria-expanded=true] .icon::before {
    content: "\e15b";
  }
  .global-nav .global-menu__list > li .label {
    display: block;
    padding: 16px 40px 16px 20px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--color-body);
    text-decoration: none;
  }
  .global-nav .global-menu__list > li a.label {
    position: relative;
  }
  .global-nav .global-menu__list > li a.label::before {
    content: "\e5cc";
    font-family: "Material Symbols Rounded";
    font-weight: normal;
    font-style: normal;
    font-size: 1em;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--color-blue1);
  }
  .global-nav .global-dropmenu {
    padding-left: 36px;
  }
  .global-nav .global-dropmenu[aria-hidden=true] {
    display: none;
  }
  .global-nav .global-dropmenu ul > li:not(:last-child) {
    border-bottom: 1px dotted var(--color-line1);
  }
  .global-nav .global-dropmenu ul > li a {
    display: block;
    text-decoration: none;
    padding: 16px 40px 16px 0;
    font-size: 15px;
    line-height: 1.2;
    color: var(--color-body);
    position: relative;
  }
  .global-nav .global-dropmenu ul > li a::after {
    content: "\e5cc";
    font-family: "Material Symbols Rounded";
    font-weight: normal;
    font-style: normal;
    font-size: 1em;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--color-blue1);
  }
  .global-nav .global-dropmenu ul > li a.link-blank::after {
    content: "\e89e";
    font-size: 16px;
    right: 20px;
  }
  .global-nav .global-submenu {
    padding: 30px 20px;
  }
  .global-nav .global-submenu__list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
  .global-nav .global-submenu__list > li {
    width: calc((100% - 16px) / 2);
  }
  .global-nav .global-submenu__list > li:has(.menu-domonkai) {
    width: 100%;
    margin: 16px auto 0;
  }
  .global-nav .global-submenu__list > li > a {
    text-decoration: none;
    color: var(--color-body);
  }
  .global-nav .global-submenu__list > li > a.menu-domonkai {
    text-align: center;
    background: #fff;
    color: var(--color-blue1);
    border: 1px solid var(--color-blue1);
    border-radius: 4px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
  }
  .global-nav .global-submenu__list > li > a.menu-domonkai::before {
    content: "\e897";
    font-family: "Material Symbols Rounded";
    font-weight: normal;
    font-style: normal;
    font-size: 1em;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    margin-right: 4px;
  }
}
@media print, screen and (min-width: 769px) {
  .page-patient .global-menu__list > li.menu1 > .label::before,
  .page-medical .global-menu__list > li.menu2 > .label::before,
  .page-special .global-menu__list > li.menu3 > .label::before,
  .page-class .global-menu__list > li.menu4 > .label::before,
  .page-train .global-menu__list > li.menu5 > .label::before,
  .page-contact .global-menu__list > li.menu6 > .label::before {
    height: 3px;
  }
}
/*===================================================

 footer

===================================================*/
.l-footer {
  position: relative;
  overflow-x: hidden;
}
@media print, screen and (min-width: 769px) {
  .l-footer {
    background: url(../img/footer-bg.jpg) no-repeat center;
    background-size: cover;
  }
}
.l-footer.footer-simple .footer-menu-list {
  margin-top: 0;
}

.footer-contact {
  padding: 0 2.25vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer-contact {
    padding: 0;
    background: url(../img/footer-bg.jpg) no-repeat center;
    background-size: cover;
  }
}
.footer-contact::before {
  content: "";
  display: block;
  background: var(--color-bg-blue1);
  transform: skew(-30deg);
  width: 500px;
  height: 1000px;
  position: absolute;
  bottom: 0;
  right: -300px;
  opacity: 0.4;
}
@media screen and (max-width: 768px) {
  .footer-contact::before {
    width: 200px;
    height: 400px;
    right: -120px;
  }
}
.footer-contact__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer-contact__container {
    padding: 48px 32px 64px;
  }
}
.footer-contact__heading {
  display: flex;
  align-items: center;
  color: #fff;
  margin-bottom: 32px;
}
.footer-contact__heading .txt-en {
  font-size: 64px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .footer-contact__heading .txt-en {
    font-size: 32px;
  }
}
.footer-contact__heading .txt-ja {
  font-size: 16px;
  font-weight: 700;
  margin-left: 2em;
}
@media screen and (max-width: 768px) {
  .footer-contact__heading .txt-ja {
    font-size: 11px;
  }
}

.footer-contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.25vw;
}
@media screen and (max-width: 768px) {
  .footer-contact-list {
    flex-direction: column;
    gap: 16px 0;
  }
}

.footer-contact-item {
  width: calc((100% - 4.5vw) / 3);
  background: #fff;
  border-radius: 4px;
  text-align: center;
  padding: 24px;
  color: var(--color-blue2);
  font-size: 16px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .footer-contact-item {
    width: 100%;
    font-size: 14px;
    padding: 16px 24px 24px;
  }
}
.footer-contact-item .title {
  background: var(--color-blue2);
  color: #fff;
  font-weight: 700;
  line-height: 1;
  border-radius: 40px;
  padding: 8px 16px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .footer-contact-item .title {
    margin-bottom: 10px;
  }
}
.footer-contact-item .to {
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}
.footer-contact-item .tel {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .footer-contact-item .tel {
    font-size: 28px;
  }
  .footer-contact-item .tel a {
    text-decoration: none;
    color: inherit;
  }
}
.footer-contact-item .time {
  align-self: center;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .footer-contact-item .time {
    font-size: 12px;
    font-weight: 400;
  }
}

.footer-info {
  background: rgba(2, 39, 78, 0.8);
  padding: 0 2.25vw;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer-info {
    padding: 0;
    background: #02274e;
  }
}
.footer-info a {
  color: #fff;
  text-decoration: none;
}
@media print, screen and (min-width: 769px) {
  .footer-info a:hover {
    text-decoration: underline;
  }
}
@media print, screen and (min-width: 769px) {
  .footer-info__row {
    display: flex;
    max-width: 1280px;
    margin: 0 auto;
    padding: 50px 0;
  }
}
@media screen and (max-width: 768px) {
  .footer-info__row {
    padding: 40px 16px;
  }
}
.footer-info__col {
  flex: 1;
}
@media print, screen and (min-width: 769px) {
  .footer-info__col:nth-child(1) {
    padding-top: 30px;
  }
}
.footer-info__col:nth-child(2) {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer-info__col:nth-child(2) {
    margin-top: 40px;
  }
}
.footer-info__heading {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .footer-info__heading {
    margin-bottom: 24px;
  }
}
.footer-info__heading .txt-en {
  font-size: 32px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .footer-info__heading .txt-en {
    font-size: 24px;
  }
}
.footer-info__link-list {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .footer-info__link-list {
    margin-bottom: 32px;
  }
}
.footer-info__link-list > li {
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .footer-info__link-list > li {
    margin-bottom: 0.8em;
  }
}
.footer-info__bnr-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 10px;
}
@media screen and (max-width: 768px) {
  .footer-info__bnr-list {
    gap: 10px;
  }
  .footer-info__bnr-list > li.col1 {
    width: 100%;
  }
  .footer-info__bnr-list > li.col2 {
    width: calc((100% - 10px) / 2);
  }
}
.footer-info__container {
  border-top: 1px solid #fff;
  padding: 50px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer-info__container {
    padding: 40px 16px;
  }
}
.footer-info .footer-ad-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.footer-info .footer-ad-list > li {
  max-width: 240px;
}
@media screen and (max-width: 768px) {
  .footer-info .footer-ad-list > li {
    width: calc((100% - 10px) / 2);
  }
}
.footer-info .footer-menu-list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em 2.5em;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .footer-info .footer-menu-list {
    justify-content: flex-start;
    gap: 2em;
    font-size: 12px;
  }
}
.footer-info .copyright {
  margin-top: 40px;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .footer-info .copyright {
    font-size: 10px;
  }
}

.btn-pagetop {
  z-index: 13;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-blue1);
  border-radius: 4px;
  width: 64px;
  height: 64px;
  bottom: 40px;
  right: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .btn-pagetop {
    border-radius: 2px;
    width: 32px;
    height: 32px;
    bottom: 24px;
    right: 10px;
  }
}
.btn-pagetop::before {
  content: "\f1e0";
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .btn-pagetop::before {
    font-size: 14px;
  }
}

.is-scroll .btn-pagetop {
  opacity: 1;
  visibility: visible;
}

/*===================================================

 local

===================================================*/
.local-header,
.local-visual-header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.local-header__content,
.local-visual-header__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.local-header h1,
.local-visual-header h1 {
  background: #fff;
  font-size: 40px;
  color: var(--color-blue1);
  font-family: var(--font-mincho);
  line-height: 1;
  font-weight: 700;
  text-align: center;
  padding: 0.2em 0.4em;
}
@media screen and (max-width: 768px) {
  .local-header h1,
  .local-visual-header h1 {
    font-size: 24px;
  }
}
.local-header .txt-en,
.local-visual-header .txt-en {
  margin-top: 16px;
  color: var(--color-blue1);
  font-weight: 700;
  font-style: italic;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .local-header .txt-en,
  .local-visual-header .txt-en {
    margin-top: 8px;
    font-size: 12px;
  }
}
.local-header .category,
.local-visual-header .category {
  margin-top: 16px;
  color: var(--color-blue1);
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .local-header .category,
  .local-visual-header .category {
    margin-top: 8px;
    font-size: 12px;
  }
}
.local-header .line-01,
.local-visual-header .line-01 {
  bottom: -50px;
  left: 80%;
}
@media screen and (max-width: 768px) {
  .local-header .line-01,
  .local-visual-header .line-01 {
    bottom: -10px;
    left: auto;
    right: 40px;
  }
}
.local-header .line-02,
.local-visual-header .line-02 {
  top: -26px;
  left: 5%;
}
@media screen and (max-width: 768px) {
  .local-header .line-02,
  .local-visual-header .line-02 {
    top: -15px;
  }
}

.local-header {
  height: 200px;
  padding: 40px 4vw 24px;
}
@media screen and (max-width: 768px) {
  .local-header {
    height: auto;
  }
}

.local-visual-header {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 270px;
  padding: 40px 4vw;
}
@media screen and (max-width: 768px) {
  .local-visual-header {
    height: auto;
    aspect-ratio: 39/20;
  }
}

.breadcrumb {
  padding: 12px 16px;
}
@media print, screen and (min-width: 769px) {
  .breadcrumb {
    padding: 24px 4vw;
  }
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    white-space: nowrap;
    overflow-x: auto;
  }
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  color: var(--color-gray1);
}
@media print, screen and (min-width: 769px) {
  .breadcrumb ol {
    flex-wrap: wrap;
    max-width: 1280px;
    margin: 0 auto;
  }
}
.breadcrumb ol > li {
  font-size: 11px;
  line-height: 1;
  list-style: none;
  display: flex;
  align-items: center;
}
@media print, screen and (min-width: 769px) {
  .breadcrumb ol > li {
    font-size: 14px;
  }
}
.breadcrumb ol > li:not(:last-child):after {
  content: "\e5e1";
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  margin: 0 1em;
  color: #a2b3c5;
}
@media print, screen and (min-width: 769px) {
  .breadcrumb ol > li:not(:last-child):after {
    font-size: 14px;
  }
}
.breadcrumb ol > li a {
  color: var(--color-blue1);
  text-decoration: none;
}

.local-menu {
  background: var(--color-bg-blue1);
  position: relative;
}
.local-menu__container {
  padding: 80px 6.25vw;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .local-menu__container {
    padding: 32px 24px 40px;
  }
}
.local-menu__container::before {
  content: "";
  display: block;
  background: var(--color-bg-blue1);
  transform: skew(-30deg);
  width: 400px;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: -200px;
  mix-blend-mode: multiply;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .local-menu__container::before {
    width: 240px;
    height: 400px;
    left: -160px;
    bottom: auto;
    top: 0;
    opacity: 0.5;
  }
}
.local-menu__row {
  position: relative;
}
@media print, screen and (min-width: 769px) {
  .local-menu__row {
    display: flex;
    gap: 5.5vw;
  }
}
.local-menu__row .top-section-heading .txt-en {
  font-size: 56px;
}
@media screen and (max-width: 768px) {
  .local-menu__row .top-section-heading .txt-en {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .local-menu__head {
    margin-bottom: 16px;
  }
}
.local-menu__body {
  flex: 1;
}
.local-menu__parent > a {
  font-family: var(--font-mincho);
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  height: 80px;
}
@media screen and (max-width: 768px) {
  .local-menu__parent > a {
    font-size: 18px;
    height: 64px;
  }
}
.local-menu__parent > a::after {
  content: "\e5cc";
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 2px solid var(--color-blue1);
  border-radius: 50%;
  margin-left: 16px;
  padding-left: 2px;
}
@media screen and (max-width: 768px) {
  .local-menu__parent > a::after {
    font-size: 15px;
    border-width: 1px;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    padding-left: 1px;
  }
}
.local-menu__list {
  gap: 0 4vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.local-menu__list > li {
  width: 100%;
  position: relative;
}
.local-menu__list > li::before, .local-menu__list > li::after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  background: #BBD0E6;
}
.local-menu__list > li > a {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  min-height: 80px;
  position: relative;
  padding: 8px 24px;
}
@media screen and (max-width: 768px) {
  .local-menu__list > li > a {
    font-size: 15px;
    min-height: 56px;
    padding-left: 16px;
  }
}
.local-menu__list > li > a::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-blue3);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transition: background 0.3s;
}
.local-menu__list > li > a::after {
  content: "\e5cc";
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .local-menu__list > li > a::after {
    right: 0;
  }
}
.local-menu__list > li > a.link-blank::after {
  content: "\e89e";
}
@media print, screen and (min-width: 769px) {
  .local-menu__list > li > a:hover::before {
    background: var(--color-blue1);
  }
}
.local-menu .line-01 {
  top: -50px;
  left: 4%;
}
@media screen and (max-width: 768px) {
  .local-menu .line-01 {
    top: -50px;
    left: auto;
    right: 100px;
  }
}
.local-menu .line-02 {
  bottom: -50px;
  right: 10%;
}
@media screen and (max-width: 768px) {
  .local-menu .line-02 {
    bottom: -30px;
    right: 50px;
  }
}

/*===================================================

 section

===================================================*/
.section {
  line-height: 2;
  padding: 64px 4vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section {
    line-height: 1.8;
    padding: 40px 16px;
  }
}
.section__container {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}
.section__container--s {
  max-width: 960px;
}
.section__container--l {
  max-width: 1280px;
}
.section .line-01 {
  bottom: -100px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .section .line-01 {
    bottom: -50px;
    left: 20px;
  }
}
.section .line-02 {
  top: 0;
  right: -50px;
}
@media screen and (max-width: 768px) {
  .section .line-02 {
    top: -10px;
    right: -10px;
  }
}
.section .line-03 {
  bottom: -50px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .section .line-03 {
    bottom: -40px;
    right: 10px;
  }
}

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .section-heading {
    margin-bottom: 24px;
  }
}

/*===================================================

 heading

===================================================*/
.heading-line {
  display: block;
  margin: 0 auto 10px;
  width: 5px;
  height: 30px;
  border-radius: 3px;
  transform: rotate(30deg);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .heading-line {
    width: 4px;
    height: 24px;
  }
}
.heading-line.yellow {
  background: linear-gradient(0deg, #FFEE00, #E9FF4E);
}
.heading-line.blue {
  background: linear-gradient(0deg, #004EA2, #07B2F2);
}
.heading-line.l-blue {
  background: linear-gradient(0deg, #94D1FF, #07B2F2);
}
.heading-line.green {
  background: linear-gradient(0deg, #FFFF00, #17D7FF);
}
.heading-line.purple {
  background: linear-gradient(0deg, #07B2F2, #BB73D9);
}

.heading-line-anime {
  display: block;
  margin: 0 auto 10px;
  width: 1px;
  height: 60px;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .heading-line-anime {
    height: 40px;
  }
}
.heading-line-anime::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--color-body);
  transition: all 1s 0s cubic-bezier(0.83, 0, 0.17, 1);
}
.heading-line-anime.visible::before {
  height: 100%;
}

.heading-01 {
  font-family: var(--font-mincho);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-blue1);
  margin-bottom: 1.25em;
}
@media screen and (max-width: 768px) {
  .heading-01 {
    font-size: 24px;
  }
}
.heading-01 small {
  display: block;
  font-size: 18px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .heading-01 small {
    font-size: 12px;
  }
}

.heading-02 {
  font-family: var(--font-mincho);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--color-primary);
  margin-bottom: 1.25em;
}
@media screen and (max-width: 768px) {
  .heading-02 {
    font-size: 20px;
  }
}

.heading-03 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  padding-left: 30px;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .heading-03 {
    font-size: 18px;
    padding-left: 24px;
  }
}
.heading-03::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  border: 6px solid transparent;
  background: linear-gradient(180deg, #BB73D9, #07B2F2);
  background-origin: border-box;
  background-clip: border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  mask-composite: exclude;
}
@media screen and (max-width: 768px) {
  .heading-03::before {
    width: 16px;
    height: 16px;
    border-width: 5px;
  }
}

.heading-04 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  padding: 12px 0;
  margin-bottom: 1.25em;
  border-bottom: 2px solid var(--color-line2);
}
@media screen and (max-width: 768px) {
  .heading-04 {
    font-size: 20px;
    padding: 8px 0;
  }
}

.heading-05 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.5em;
  color: var(--color-primary);
}
@media screen and (max-width: 768px) {
  .heading-05 {
    font-size: 16px;
  }
}

/*===================================================

 button

===================================================*/
.btn-wrap {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
@media print, screen and (min-width: 769px) {
  .btn-wrap {
    gap: 24px;
  }
}

.btn--col1 {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .sp-btn--col1 {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .sp-btn--col2 {
    width: calc((100% - 16px) / 2);
  }
  .sp-btn--col3 {
    width: calc((100% - 32px) / 3);
  }
}
@media print, screen and (min-width: 769px) {
  .pc-btn--col1 {
    width: 100%;
  }
  .pc-btn--col2 {
    width: calc((100% - 24px) / 2);
  }
  .pc-btn--col3 {
    width: calc((100% - 48px) / 3);
  }
}
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 56px 8px 40px;
  text-decoration: none;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
  min-width: 240px;
  min-height: 64px;
  border-radius: 40px;
}
@media screen and (max-width: 768px) {
  .btn-primary,
  .btn-secondary {
    min-width: 120px;
    min-height: 48px;
  }
}
.btn-primary::after,
.btn-secondary::after {
  content: "\e5e1";
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.btn-primary.-blank::after,
.btn-secondary.-blank::after {
  content: "\e89e";
}
.btn-primary.-pdf::after,
.btn-secondary.-pdf::after {
  content: "";
  display: inline-block;
  background: url(../img/icon-pdf.svg) no-repeat center;
  background-size: contain;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  flex-shrink: 0;
}
.btn-primary.-back,
.btn-secondary.-back {
  padding: 8px 40px 8px 56px;
}
.btn-primary.-back::after,
.btn-secondary.-back::after {
  right: auto;
  left: 20px;
  transform: translateY(-50%) rotate(180deg);
}
.btn-primary small,
.btn-secondary small {
  font-size: 0.8em;
  font-weight: normal;
  margin: 0 0.5em;
}

.btn-primary {
  background: var(--color-blue1);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--color-blue1);
  border: 1px solid var(--color-blue1);
}

.btn-accordion-trigger {
  background: #fff;
  border-radius: 40px;
  padding: 8px 24px;
  border: 1px solid var(--color-line1);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .btn-accordion-trigger {
    padding: 6px 12px 6px 16px;
  }
}
@media print, screen and (min-width: 769px) {
  .btn-accordion-trigger {
    transition: background 0.3s;
  }
  .btn-accordion-trigger:hover {
    background: var(--color-bg-blue1);
  }
}
.btn-accordion-trigger .txt-open,
.btn-accordion-trigger .txt-close {
  display: flex;
  align-items: center;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .btn-accordion-trigger .txt-open,
  .btn-accordion-trigger .txt-close {
    font-size: 12px;
  }
}
.btn-accordion-trigger .txt-open::after,
.btn-accordion-trigger .txt-close::after {
  content: "\e145";
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  color: var(--color-blue1);
  margin-left: 0.2em;
}
@media screen and (max-width: 768px) {
  .btn-accordion-trigger .txt-open::after,
  .btn-accordion-trigger .txt-close::after {
    font-size: 18px;
  }
}
.btn-accordion-trigger .txt-close::after {
  content: "\e15b";
}
.btn-accordion-trigger[aria-expanded=true] .txt-open {
  display: none;
}
.btn-accordion-trigger[aria-expanded=false] .txt-close {
  display: none;
}

/*===================================================

 link

===================================================*/
.link-txt {
  display: inline-flex;
  align-items: center;
  padding-left: 1.5em;
  position: relative;
}
.link-txt::before {
  content: "\e5cc";
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-size: 1.2em;
  position: absolute;
  top: 50%;
  margin-top: -0.5em;
  left: 0;
}

.link-blank::after {
  content: "\e89e";
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
  margin-left: 0.3em;
}

.link-map {
  padding-left: 1.4em;
  position: relative;
}
.link-map::before {
  content: "\e0c8";
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -0.5em;
  font-size: 1.2em;
}

.link-pdf {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.link-pdf::before {
  content: "";
  display: inline-block;
  background: url(../img/icon-pdf.svg) no-repeat center;
  background-size: contain;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  margin-right: 0.3em;
  flex-shrink: 0;
}

.link-word {
  display: inline-block;
  position: relative;
}
.link-word::before {
  content: "";
  display: inline-block;
  background: url(../img/icon-word.svg) no-repeat center;
  background-size: contain;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  margin-right: 0.3em;
}

.link-excel {
  display: inline-block;
  position: relative;
}
.link-excel::before {
  content: "";
  display: inline-block;
  background: url(../img/icon-excel.svg) no-repeat center;
  background-size: contain;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  margin-right: 0.3em;
}

.link-tel {
  display: inline-flex;
  text-decoration: none;
}

.jump-link-wrap {
  padding: 40px 4vw;
}
@media screen and (max-width: 768px) {
  .jump-link-wrap {
    padding: 16px;
  }
}

.jump-link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em 2em;
}
@media screen and (max-width: 768px) {
  .jump-link-list {
    gap: 1em 2em;
    font-size: 13px;
  }
}
.jump-link-list > li > a {
  position: relative;
  padding-left: 1.5em;
  display: inline-block;
  text-decoration: none;
}
@media print, screen and (min-width: 769px) {
  .jump-link-list > li > a:hover {
    text-decoration: underline;
  }
}
.jump-link-list > li > a::before {
  content: "\e313";
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 50%;
  margin-top: -0.5em;
  font-size: 1.2em;
  left: 0;
  color: var(--color-blue1);
}

/*===================================================

 table

===================================================*/
@media screen and (max-width: 768px) {
  .sp-table-scroll {
    width: 100%;
    overflow-x: scroll;
  }
  .sp-table-scroll table {
    white-space: nowrap;
  }
}

.table-normal {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.table-normal caption {
  text-align: left;
  font-weight: 700;
  margin-bottom: 0.25em;
}
.table-normal th,
.table-normal td {
  border: 1px solid var(--color-line2);
  padding: 1em;
}
@media screen and (max-width: 768px) {
  .table-normal th,
  .table-normal td {
    font-size: 13px;
  }
}
.table-normal > thead th {
  background: var(--color-blue1);
  color: #fff;
  padding: 0.8em 1em;
  font-weight: 500;
}
.table-normal > tbody th {
  background: var(--color-bg-blue1);
  font-weight: 500;
}
.table-data {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.5;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .table-data {
    font-size: 12px;
  }
}
@media print, screen and (min-width: 769px) {
  .table-data {
    font-size: 14px;
  }
}
.table-data th,
.table-data td {
  border: 1px solid var(--color-line2);
  padding: 0.5em;
}
.table-data > thead th {
  background: var(--color-blue2);
  color: #fff;
  padding: 0.5em;
  font-weight: normal;
  font-size: 0.9em;
  line-height: 1.2;
}
.table-data > tbody th {
  background: var(--color-bg-blue1);
}
.table-data > tbody td {
  text-align: right;
}
.table-data.-stripe > tbody tr:nth-child(2n) {
  background: #f7f7f7;
}

/*===================================================

 modal

===================================================*/
body.is-fixed {
  overflow-y: scroll;
}

.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  display: none;
}
.modal.is-active {
  display: flex;
}
.modal.is-active .modal-overlay {
  animation: fadeIn 0.2s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
.modal.is-active .modal-content {
  animation: fadeIn 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0s 1 forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modal-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 101;
  opacity: 0;
}

.modal-content {
  position: relative;
  z-index: 102;
  background: #fff;
  border-radius: 4px;
  width: 90%;
  opacity: 0;
}
@media print, screen and (min-width: 769px) {
  .modal-content {
    width: 800px;
    max-width: 90vw;
  }
}

.modal-inner {
  max-height: 90svh;
  overflow-y: auto;
  padding: 36px 24px;
}
@media print, screen and (min-width: 769px) {
  .modal-inner {
    max-height: 80vh;
    padding: 64px;
  }
}

.modal-btn-close {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: var(--color-blue1);
  transition: background 0.2s;
}
@media print, screen and (min-width: 769px) {
  .modal-btn-close {
    width: 64px;
    height: 64px;
  }
  .modal-btn-close:hover {
    background: #FFD764;
  }
}
.modal-btn-close span:before {
  content: "×";
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  color: #000;
}
@media print, screen and (min-width: 769px) {
  .modal-btn-close span:before {
    font-size: 40px;
  }
}

.modal .area-ttl {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1em;
}
@media print, screen and (min-width: 769px) {
  .modal .area-ttl {
    font-size: 32px;
  }
}

/*===================================================

 accordion

===================================================*/
.accordion-wrap {
  border: 1px solid var(--color-line2);
  border-radius: 4px;
  transition: all 0.2s;
}
.accordion-wrap[open] {
  background: #fff;
}
.accordion-wrap[open] .accordion-heading:after {
  display: none;
}
.accordion-wrap[open] .accordion-body {
  padding-bottom: 20px;
  transition: padding 0.2s;
}
@media print, screen and (min-width: 769px) {
  .accordion-wrap[open] .accordion-body {
    padding-bottom: 30px;
  }
}

.accordion-heading {
  padding: 12px 36px 12px 16px;
  list-style: none;
  cursor: pointer;
  position: relative;
}
@media print, screen and (min-width: 769px) {
  .accordion-heading {
    padding: 24px 64px 24px 32px;
    transition: background 0.3s ease-out;
  }
  .accordion-heading:hover {
    background: #fff;
    border-radius: 4px;
  }
}
.accordion-heading::-webkit-details-marker {
  display: none;
}
.accordion-heading:before, .accordion-heading:after {
  content: "";
  display: block;
  background: var(--color-blue1);
  position: absolute;
}
.accordion-heading:before {
  width: 12px;
  height: 2px;
  right: 16px;
  top: 50%;
  margin-top: -1px;
}
@media print, screen and (min-width: 769px) {
  .accordion-heading:before {
    width: 20px;
    right: 21px;
  }
}
.accordion-heading:after {
  width: 2px;
  height: 12px;
  right: 21px;
  top: 50%;
  margin-top: -6px;
}
@media print, screen and (min-width: 769px) {
  .accordion-heading:after {
    height: 20px;
    right: 30px;
    margin-top: -10px;
  }
}

.accordion-body {
  padding: 0 16px;
  transition: padding 0.2s;
}
@media print, screen and (min-width: 769px) {
  .accordion-body {
    padding: 0 30px;
  }
}

.caution-accordion {
  border-color: var(--color-red1);
  background: var(--color-bg-red1);
}
.caution-accordion .accordion-heading::before, .caution-accordion .accordion-heading::after {
  background: var(--color-red1);
}
.caution-accordion .accordion-heading__ttl {
  color: var(--color-red1);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .caution-accordion .accordion-heading__ttl {
    font-size: 16px;
  }
}

.faq-accordion {
  background: #fff;
}
.faq-accordion .accordion-heading__ttl {
  font-weight: 700;
  line-height: 1.5;
}
@media print, screen and (min-width: 769px) {
  .faq-accordion .accordion-heading__ttl {
    font-size: 18px;
  }
}
.faq-accordion .txt-q {
  color: var(--color-blue1);
  font-family: var(--font-en);
  margin-right: 0.5em;
}

/*===================================================

 news

===================================================*/
.news-list__item {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-line1);
}
@media print, screen and (min-width: 769px) {
  .news-list__item {
    padding: 16px 0;
  }
}
.news-list__item:first-child {
  border-top: 1px solid var(--color-line1);
}
.news-list[aria-hidden=true] {
  max-height: 240px;
  overflow: hidden;
  position: relative;
}
.news-list[aria-hidden=true]::after {
  content: "";
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 80%);
  height: 100px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}

.news-link {
  display: flex;
  flex-wrap: wrap;
  text-decoration: none;
  align-items: center;
  line-height: 1.6;
}
@media print, screen and (min-width: 769px) {
  .news-link {
    align-items: flex-start;
  }
  .news-link:hover .news-txt {
    text-decoration: underline;
  }
}
.news-link.-pdf .news-txt::after {
  content: "";
  display: inline-block;
  background: url(../img/icon-pdf.svg) no-repeat center;
  background-size: contain;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  margin-left: 0.3em;
}
.news-link .news-date {
  font-size: 13px;
  line-height: 19px;
  color: var(--color-gray1);
  width: 6em;
}
@media print, screen and (min-width: 769px) {
  .news-link .news-date {
    font-size: 15px;
    line-height: 25px;
  }
}
.news-link .news-icon {
  display: flex;
}
@media print, screen and (min-width: 769px) {
  .news-link .news-icon {
    min-width: 108px;
  }
}
.news-link .news-icon > span {
  font-size: 11px;
  line-height: 1;
  text-align: center;
  color: #fff;
  padding: 3px 6px;
}
@media print, screen and (min-width: 769px) {
  .news-link .news-icon > span {
    font-size: 13px;
    padding: 6px 8px;
    min-width: 7em;
  }
}
.news-link .news-txt {
  width: 100%;
  margin-top: 6px;
}
@media print, screen and (min-width: 769px) {
  .news-link .news-txt {
    flex: 1;
    margin-top: 0;
  }
}
.news-link .news-icon-research {
  background: var(--color-blue1);
}
.news-link .news-icon-info {
  background: #566a81;
}

.news-accordion {
  background: #fff;
  padding: 40px 40px 24px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .news-accordion {
    padding: 12px 20px 20px;
  }
}
.news-accordion__btn {
  text-align: center;
}
.news-accordion .news-list[aria-hidden=false] + .news-accordion__btn {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .news-accordion .news-list[aria-hidden=false] + .news-accordion__btn {
    margin-top: 16px;
  }
}

.news-year-nav {
  margin-bottom: 24px;
}
.news-year-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.news-year-nav ul > li > a {
  display: block;
  line-height: 1;
  padding: 4px 10px;
  border-radius: 16px;
}
.news-year-nav ul > li > a.current {
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: var(--color-blue1);
}

.news-detail {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.news-detail__head {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-line1);
}
@media screen and (max-width: 768px) {
  .news-detail__head {
    padding-bottom: 16px;
  }
}
.news-detail__head .news-ttl {
  font-size: 32px;
  font-family: var(--font-mincho);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .news-detail__head .news-ttl {
    font-size: 24px;
  }
}
.news-detail__head .news-date {
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .news-detail__head .news-date {
    font-size: 14px;
  }
}
.news-detail__body {
  margin-top: 24px;
}
.news-detail__body h2,
.news-detail__body h3,
.news-detail__body h4,
.news-detail__body h5,
.news-detail__body h6 {
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1em;
}
.news-detail__body h2 {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .news-detail__body h2 {
    font-size: 24px;
  }
}
.news-detail__body h3 {
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .news-detail__body h3 {
    font-size: 20px;
  }
}
.news-detail__body h4 {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .news-detail__body h4 {
    font-size: 18px;
  }
}
.news-detail__body h5 {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .news-detail__body h5 {
    font-size: 16px;
  }
}
.news-detail__body h6 {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .news-detail__body h6 {
    font-size: 15px;
  }
}

.news-detail-bottom {
  margin-top: 80px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .news-detail-bottom {
    margin-top: 40px;
    margin-bottom: 0;
  }
}

/*===================================================

 line

===================================================*/
.line-anime {
  position: absolute;
  z-index: 9;
  display: inline-block;
  width: 3px;
  height: 300px;
  overflow: hidden;
  border-radius: 2px;
  transform: rotate(30deg);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .line-anime {
    width: 2px;
    height: 150px;
  }
}
.line-anime::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 2px;
  animation: line_animation 3s cubic-bezier(0.85, 0, 0.12, 1) infinite;
  transform: translateY(100%);
}
.line-anime.yellow::before {
  background: linear-gradient(0deg, #FFEE00, #E9FF4E);
}
.line-anime.blue::before {
  background: linear-gradient(0deg, #004EA2, #07B2F2);
}
.line-anime.l-blue::before {
  background: linear-gradient(0deg, #94D1FF, #07B2F2);
}
.line-anime.green::before {
  background: linear-gradient(0deg, #FFFF00, #17D7FF);
}
.line-anime.purple::before {
  background: linear-gradient(0deg, #BB73D9, #07B2F2);
}
.line-anime.size-50 {
  height: 50px;
}
@media screen and (max-width: 768px) {
  .line-anime.size-50 {
    height: 25px;
  }
}
.line-anime.size-100 {
  height: 100px;
}
@media screen and (max-width: 768px) {
  .line-anime.size-100 {
    height: 50px;
  }
}
.line-anime.size-200 {
  height: 200px;
}
@media screen and (max-width: 768px) {
  .line-anime.size-200 {
    height: 100px;
  }
}
.line-anime.size-300 {
  height: 300px;
}
@media screen and (max-width: 768px) {
  .line-anime.size-300 {
    height: 150px;
  }
}
.line-anime.delay-10::before {
  animation-delay: 1s;
}
.line-anime.delay-20::before {
  animation-delay: 2s;
}
.line-anime.delay-30::before {
  animation-delay: 3s;
}

@keyframes line_animation {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(0);
  }
  90% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(-100%);
  }
}
/*===================================================

 snippet

===================================================*/
/*===================================================

 snippet

===================================================*/
.is-hide {
  display: none !important;
}

/*
 PC/SP出し分け
---------------------------------------------------*/
@media screen and (max-width: 768px) {
  .sp-hide {
    display: none !important;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-hide {
    display: none !important;
  }
}
/*
 font
---------------------------------------------------*/
.txt-en {
  font-family: var(--font-en);
}

.txt-default {
  font-family: var(--font-primary);
}

.txt-mincho {
  font-family: var(--font-mincho);
}

/*
 hover透過
---------------------------------------------------*/
@media print, screen and (min-width: 769px) {
  .hover {
    transition: opacity 0.2s;
  }
  .hover:hover {
    opacity: 0.8;
  }
}

/*
 幅 width
---------------------------------------------------*/
.width--a {
  width: auto;
}

.width--40px {
  width: 40px !important;
}

.width--60px {
  width: 60px !important;
}

.width--80px {
  width: 100px !important;
}

.width--100px {
  width: 100px !important;
}

.width--120px {
  width: 120px !important;
}

.width--160px {
  width: 160px !important;
}

.width--180px {
  width: 180px !important;
}

.width--200px {
  width: 200px !important;
}

.width--240px {
  width: 240px !important;
}

.width--320px {
  width: 320px !important;
}

.width--400px {
  width: 400px !important;
}

.width--480px {
  width: 480px !important;
}

.width--560px {
  width: 560px !important;
}

.width--640px {
  width: 640px !important;
}

.width--720px {
  width: 720px !important;
}

.width--10p {
  width: 10% !important;
}

.width--20p {
  width: 20% !important;
}

.width--25p {
  width: 25% !important;
}

.width--33p {
  width: 33.3333% !important;
}

.width--30p {
  width: 30% !important;
}

.width--40p {
  width: 40% !important;
}

.width--50p {
  width: 50% !important;
}

.width--60p {
  width: 60% !important;
}

.width--70p {
  width: 70% !important;
}

.width--75p {
  width: 75% !important;
}

.width--80p {
  width: 80% !important;
}

.width--90p {
  width: 90% !important;
}

.width--100p {
  width: 100% !important;
}

.width--1em {
  width: 1em;
}

.width--2em {
  width: 2em;
}

.width--3em {
  width: 3em;
}

.width--4em {
  width: 4em;
}

.width--5em {
  width: 5em;
}

@media screen and (max-width: 768px) {
  .sp-width--a {
    width: auto;
  }
  .sp-width--40px {
    width: 40px !important;
  }
  .sp-width--60px {
    width: 60px !important;
  }
  .sp-width--80px {
    width: 80px !important;
  }
  .sp-width--100px {
    width: 100px !important;
  }
  .sp-width--120px {
    width: 120px !important;
  }
  .sp-width--160px {
    width: 160px !important;
  }
  .sp-width--180px {
    width: 180px !important;
  }
  .sp-width--200px {
    width: 200px !important;
  }
  .sp-width--240px {
    width: 240px !important;
  }
  .sp-width--320px {
    width: 320px !important;
  }
  .sp-width--10p {
    width: 10% !important;
  }
  .sp-width--20p {
    width: 20% !important;
  }
  .sp-width--25p {
    width: 25% !important;
  }
  .sp-width--30p {
    width: 30% !important;
  }
  .sp-width--33p {
    width: 33.3333% !important;
  }
  .sp-width--30p {
    width: 30% !important;
  }
  .sp-width--40p {
    width: 40% !important;
  }
  .sp-width--50p {
    width: 50% !important;
  }
  .sp-width--60p {
    width: 60% !important;
  }
  .sp-width--70p {
    width: 70% !important;
  }
  .sp-width--75p {
    width: 75% !important;
  }
  .sp-width--80p {
    width: 80% !important;
  }
  .sp-width--90p {
    width: 90% !important;
  }
  .sp-width--100p {
    width: 100% !important;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-width--a {
    width: auto;
  }
  .pc-width--40px {
    width: 40px !important;
  }
  .pc-width--60px {
    width: 60px !important;
  }
  .pc-width--80px {
    width: 80px !important;
  }
  .pc-width--100px {
    width: 100px !important;
  }
  .pc-width--120px {
    width: 120px !important;
  }
  .pc-width--160px {
    width: 160px !important;
  }
  .pc-width--180px {
    width: 180px !important;
  }
  .pc-width--200px {
    width: 200px !important;
  }
  .pc-width--240px {
    width: 240px !important;
  }
  .pc-width--320px {
    width: 320px !important;
  }
  .pc-width--400px {
    width: 400px !important;
  }
  .pc-width--480px {
    width: 480px !important;
  }
  .pc-width--560px {
    width: 560px !important;
  }
  .pc-width--640px {
    width: 640px !important;
  }
  .pc-width--720px {
    width: 720px !important;
  }
  .pc-width--800px {
    width: 800px !important;
  }
  .pc-width--10p {
    width: 10% !important;
  }
  .pc-width--20p {
    width: 20% !important;
  }
  .pc-width--25p {
    width: 25% !important;
  }
  .pc-width--30p {
    width: 30% !important;
  }
  .pc-width--33p {
    width: 33.3333% !important;
  }
  .pc-width--40p {
    width: 40% !important;
  }
  .pc-width--50p {
    width: 50% !important;
  }
  .pc-width--60p {
    width: 60% !important;
  }
  .pc-width--70p {
    width: 70% !important;
  }
  .pc-width--75p {
    width: 75% !important;
  }
  .pc-width--80p {
    width: 80% !important;
  }
  .pc-width--90p {
    width: 90% !important;
  }
  .pc-width--100p {
    width: 100% !important;
  }
}
/*
 寄せ aligh
---------------------------------------------------*/
.align--c {
  text-align: center !important;
}

@media print, screen and (min-width: 769px) {
  .pc-align--c {
    text-align: center !important;
  }
}
@media screen and (max-width: 768px) {
  .sp-align--c {
    text-align: center !important;
  }
}
.align--l {
  text-align: left !important;
}

@media print, screen and (min-width: 769px) {
  .pc-align--l {
    text-align: left !important;
  }
}
@media screen and (max-width: 768px) {
  .sp-align--l {
    text-align: left !important;
  }
}
.align--r {
  text-align: right !important;
}

@media print, screen and (min-width: 769px) {
  .pc-align--r {
    text-align: right !important;
  }
}
@media screen and (max-width: 768px) {
  .sp-align--r {
    text-align: right !important;
  }
}
/*
 余白
---------------------------------------------------*/
.m--a {
  margin: auto;
}

.mt--a {
  margin-top: auto;
}

.ml--a {
  margin-left: auto;
}

.mr--a {
  margin-right: auto;
}

.mb--a {
  margin-bottom: auto;
}

.mlr--a {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .sp-m--a {
    margin: auto;
  }
  .sp-mt--a {
    margin-top: auto;
  }
  .sp-ml--a {
    margin-left: auto;
  }
  .sp-mr--a {
    margin-right: auto;
  }
  .sp-mb--a {
    margin-bottom: auto;
  }
  .sp-mlr--a {
    margin-left: auto;
    margin-right: auto;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-m--a {
    margin: auto;
  }
  .pc-mt--a {
    margin-top: auto;
  }
  .pc-ml--a {
    margin-left: auto;
  }
  .pc-mr--a {
    margin-right: auto;
  }
  .pc-mb--a {
    margin-bottom: auto;
  }
  .pc-mlr--a {
    margin-left: auto;
    margin-right: auto;
  }
}
.mt--0px {
  margin-top: 0 !important;
}

.mt--4px {
  margin-top: 4px !important;
}

.mt--8px {
  margin-top: 8px !important;
}

.mt--10px {
  margin-top: 10px !important;
}

.mt--12px {
  margin-top: 12px !important;
}

.mt--16px {
  margin-top: 16px !important;
}

.mt--20px {
  margin-top: 20px !important;
}

.mt--24px {
  margin-top: 24px !important;
}

.mt--28px {
  margin-top: 28px !important;
}

.mt--32px {
  margin-top: 32px !important;
}

.mt--36px {
  margin-top: 36px !important;
}

.mt--40px {
  margin-top: 40px !important;
}

.mt--48px {
  margin-top: 48px !important;
}

.mt--56px {
  margin-top: 12px !important;
}

.mt--64px {
  margin-top: 64px !important;
}

.mt--72px {
  margin-top: 72px !important;
}

.mt--0-5em {
  margin-top: 0.5em !important;
}

.mt--1em {
  margin-top: 1em !important;
}

.mt--1-5em {
  margin-top: 1.5em !important;
}

.mt--2em {
  margin-top: 2em !important;
}

.mt--2-5em {
  margin-top: 2.5em !important;
}

.mt--3em {
  margin-top: 3em !important;
}

.mt--4em {
  margin-top: 4em !important;
}

@media screen and (max-width: 768px) {
  .sp-mt--0px {
    margin-top: 0 !important;
  }
  .sp-mt--4px {
    margin-top: 4px !important;
  }
  .sp-mt--8px {
    margin-top: 8px !important;
  }
  .sp-mt--10px {
    margin-top: 10px !important;
  }
  .sp-mt--12px {
    margin-top: 12px !important;
  }
  .sp-mt--16px {
    margin-top: 16px !important;
  }
  .sp-mt--20px {
    margin-top: 20px !important;
  }
  .sp-mt--24px {
    margin-top: 24px !important;
  }
  .sp-mt--28px {
    margin-top: 28px !important;
  }
  .sp-mt--32px {
    margin-top: 32px !important;
  }
  .sp-mt--36px {
    margin-top: 36px !important;
  }
  .sp-mt--40px {
    margin-top: 40px !important;
  }
  .sp-mt--48px {
    margin-top: 48px !important;
  }
  .sp-mt--56px {
    margin-top: 12px !important;
  }
  .sp-mt--64px {
    margin-top: 64px !important;
  }
  .sp-mt--72px {
    margin-top: 72px !important;
  }
  .sp-mt--0-5em {
    margin-top: 0.5em !important;
  }
  .sp-mt--1em {
    margin-top: 1em !important;
  }
  .sp-mt--1-5em {
    margin-top: 1.5em !important;
  }
  .sp-mt--2em {
    margin-top: 2em !important;
  }
  .sp-mt--2-5em {
    margin-top: 2.5em !important;
  }
  .sp-mt--3em {
    margin-top: 3em !important;
  }
  .sp-mt--4em {
    margin-top: 4em !important;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-mt--0px {
    margin-top: 0 !important;
  }
  .pc-mt--4px {
    margin-top: 4px !important;
  }
  .pc-mt--8px {
    margin-top: 8px !important;
  }
  .pc-mt--10px {
    margin-top: 10px !important;
  }
  .pc-mt--12px {
    margin-top: 12px !important;
  }
  .pc-mt--16px {
    margin-top: 16px !important;
  }
  .pc-mt--20px {
    margin-top: 20px !important;
  }
  .pc-mt--24px {
    margin-top: 24px !important;
  }
  .pc-mt--28px {
    margin-top: 28px !important;
  }
  .pc-mt--32px {
    margin-top: 32px !important;
  }
  .pc-mt--36px {
    margin-top: 36px !important;
  }
  .pc-mt--40px {
    margin-top: 40px !important;
  }
  .pc-mt--48px {
    margin-top: 48px !important;
  }
  .pc-mt--56px {
    margin-top: 56px !important;
  }
  .pc-mt--64px {
    margin-top: 64px !important;
  }
  .pc-mt--72px {
    margin-top: 72px !important;
  }
  .pc-mt--80px {
    margin-top: 80px !important;
  }
  .pc-mt--100px {
    margin-top: 100px !important;
  }
  .pc-mt--0-5em {
    margin-top: 0.5em !important;
  }
  .pc-mt--1em {
    margin-top: 1em !important;
  }
  .pc-mt--1-5em {
    margin-top: 1.5em !important;
  }
  .pc-mt--2em {
    margin-top: 2em !important;
  }
  .pc-mt--2-5em {
    margin-top: 2.5em !important;
  }
  .pc-mt--3em {
    margin-top: 3em !important;
  }
  .pc-mt--4em {
    margin-top: 4em !important;
  }
}
.ml--0px {
  margin-left: 0 !important;
}

.ml--4px {
  margin-left: 4px !important;
}

.ml--8px {
  margin-left: 8px !important;
}

.ml--12px {
  margin-left: 12px !important;
}

.ml--16px {
  margin-left: 16px !important;
}

.ml--20px {
  margin-left: 20px !important;
}

.ml--24px {
  margin-left: 24px !important;
}

.ml--28px {
  margin-left: 28px !important;
}

.ml--32px {
  margin-left: 32px !important;
}

.ml--36px {
  margin-left: 36px !important;
}

.ml--40px {
  margin-left: 40px !important;
}

.ml--48px {
  margin-left: 48px !important;
}

.ml--56px {
  margin-left: 56px !important;
}

.ml--64px {
  margin-left: 64px !important;
}

.ml--72px {
  margin-left: 72px !important;
}

.ml--0-5em {
  margin-left: 0.5em !important;
}

.ml--1em {
  margin-left: 1em !important;
}

.ml--1-5em {
  margin-left: 1.5em !important;
}

.ml--2em {
  margin-left: 2em !important;
}

.ml--2-5em {
  margin-left: 2.5em !important;
}

.ml--3em {
  margin-left: 3em !important;
}

@media screen and (max-width: 768px) {
  .sp-ml--0px {
    margin-left: 0 !important;
  }
  .sp-ml--4px {
    margin-left: 4px !important;
  }
  .sp-ml--8px {
    margin-left: 8px !important;
  }
  .sp-ml--12px {
    margin-left: 12px !important;
  }
  .sp-ml--16px {
    margin-left: 16px !important;
  }
  .sp-ml--20px {
    margin-left: 20px !important;
  }
  .sp-ml--24px {
    margin-left: 24px !important;
  }
  .sp-ml--28px {
    margin-left: 28px !important;
  }
  .sp-ml--32px {
    margin-left: 32px !important;
  }
  .sp-ml--36px {
    margin-left: 36px !important;
  }
  .sp-ml--40px {
    margin-left: 40px !important;
  }
  .sp-ml--48px {
    margin-left: 48px !important;
  }
  .sp-ml--56px {
    margin-left: 56px !important;
  }
  .sp-ml--64px {
    margin-left: 64px !important;
  }
  .sp-ml--72px {
    margin-left: 72px !important;
  }
  .sp-ml--0-5em {
    margin-left: 0.5em !important;
  }
  .sp-ml--1em {
    margin-left: 1em !important;
  }
  .sp-ml--1-5em {
    margin-left: 1.5em !important;
  }
  .sp-ml--2em {
    margin-left: 2em !important;
  }
  .sp-ml--2-5em {
    margin-left: 2.5em !important;
  }
  .sp-ml--3em {
    margin-left: 3em !important;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-ml--0px {
    margin-left: 0 !important;
  }
  .pc-ml--4px {
    margin-left: 4px !important;
  }
  .pc-ml--8px {
    margin-left: 8px !important;
  }
  .pc-ml--12px {
    margin-left: 12px !important;
  }
  .pc-ml--16px {
    margin-left: 16px !important;
  }
  .pc-ml--20px {
    margin-left: 20px !important;
  }
  .pc-ml--24px {
    margin-left: 24px !important;
  }
  .pc-ml--28px {
    margin-left: 28px !important;
  }
  .pc-ml--32px {
    margin-left: 32px !important;
  }
  .pc-ml--36px {
    margin-left: 36px !important;
  }
  .pc-ml--40px {
    margin-left: 40px !important;
  }
  .pc-ml--48px {
    margin-left: 48px !important;
  }
  .pc-ml--56px {
    margin-left: 56px !important;
  }
  .pc-ml--64px {
    margin-left: 64px !important;
  }
  .pc-ml--72px {
    margin-left: 72px !important;
  }
  .pc-ml--80px {
    margin-left: 80px !important;
  }
  .pc-ml--100px {
    margin-left: 100px !important;
  }
  .pc-ml--0-5em {
    margin-left: 0.5em !important;
  }
  .pc-ml--1em {
    margin-left: 1em !important;
  }
  .pc-ml--1-5em {
    margin-left: 1.5em !important;
  }
  .pc-ml--2em {
    margin-left: 2em !important;
  }
  .pc-ml--2-5em {
    margin-left: 2.5em !important;
  }
  .pc-ml--3em {
    margin-left: 3em !important;
  }
}
.mr--0px {
  margin-right: 0 !important;
}

.mr--4px {
  margin-right: 4px !important;
}

.mr--8px {
  margin-right: 8px !important;
}

.mr--12px {
  margin-right: 12px !important;
}

.mr--16px {
  margin-right: 16px !important;
}

.mr--20px {
  margin-right: 20px !important;
}

.mr--24px {
  margin-right: 24px !important;
}

.mr--28px {
  margin-right: 28px !important;
}

.mr--32px {
  margin-right: 32px !important;
}

.mr--36px {
  margin-right: 36px !important;
}

.mr--40px {
  margin-right: 40px !important;
}

.mr--48px {
  margin-right: 48px !important;
}

.mr--56px {
  margin-right: 56px !important;
}

.mr--64px {
  margin-right: 64px !important;
}

.mr--72px {
  margin-right: 72px !important;
}

.mr--0-5em {
  margin-right: 0.5em !important;
}

.mr--1em {
  margin-right: 1em !important;
}

.mr--1-5em {
  margin-right: 1.5em !important;
}

.mr--2em {
  margin-right: 2em !important;
}

.mr--2-5em {
  margin-right: 2.5em !important;
}

.mr--3em {
  margin-right: 3em !important;
}

@media screen and (max-width: 768px) {
  .sp-mr--0px {
    margin-right: 0 !important;
  }
  .sp-mr--4px {
    margin-right: 4px !important;
  }
  .sp-mr--8px {
    margin-right: 8px !important;
  }
  .sp-mr--12px {
    margin-right: 12px !important;
  }
  .sp-mr--16px {
    margin-right: 16px !important;
  }
  .sp-mr--20px {
    margin-right: 20px !important;
  }
  .sp-mr--24px {
    margin-right: 24px !important;
  }
  .sp-mr--28px {
    margin-right: 28px !important;
  }
  .sp-mr--32px {
    margin-right: 32px !important;
  }
  .sp-mr--36px {
    margin-right: 36px !important;
  }
  .sp-mr--40px {
    margin-right: 40px !important;
  }
  .sp-mr--48px {
    margin-right: 48px !important;
  }
  .sp-mr--56px {
    margin-right: 56px !important;
  }
  .sp-mr--64px {
    margin-right: 64px !important;
  }
  .sp-mr--72px {
    margin-right: 72px !important;
  }
  .sp-mr--0-5em {
    margin-right: 0.5em !important;
  }
  .sp-mr--1em {
    margin-right: 1em !important;
  }
  .sp-mr--1-5em {
    margin-right: 1.5em !important;
  }
  .sp-mr--2em {
    margin-right: 2em !important;
  }
  .sp-mr--2-5em {
    margin-right: 2.5em !important;
  }
  .sp-mr--3em {
    margin-right: 3em !important;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-mr--0px {
    margin-right: 0 !important;
  }
  .pc-mr--4px {
    margin-right: 4px !important;
  }
  .pc-mr--8px {
    margin-right: 8px !important;
  }
  .pc-mr--12px {
    margin-right: 12px !important;
  }
  .pc-mr--16px {
    margin-right: 16px !important;
  }
  .pc-mr--20px {
    margin-right: 20px !important;
  }
  .pc-mr--24px {
    margin-right: 24px !important;
  }
  .pc-mr--28px {
    margin-right: 28px !important;
  }
  .pc-mr--32px {
    margin-right: 32px !important;
  }
  .pc-mr--36px {
    margin-right: 36px !important;
  }
  .pc-mr--40px {
    margin-right: 40px !important;
  }
  .pc-mr--48px {
    margin-right: 48px !important;
  }
  .pc-mr--56px {
    margin-right: 56px !important;
  }
  .pc-mr--64px {
    margin-right: 64px !important;
  }
  .pc-mr--72px {
    margin-right: 72px !important;
  }
  .pc-mr--80px {
    margin-right: 80px !important;
  }
  .pc-mr--100px {
    margin-right: 100px !important;
  }
  .pc-mr--0-5em {
    margin-right: 0.5em !important;
  }
  .pc-mr--1em {
    margin-right: 1em !important;
  }
  .pc-mr--1-5em {
    margin-right: 1.5em !important;
  }
  .pc-mr--2em {
    margin-right: 2em !important;
  }
  .pc-mr--2-5em {
    margin-right: 2.5em !important;
  }
  .pc-mr--3em {
    margin-right: 3em !important;
  }
}
.mb--0px {
  margin-bottom: 0 !important;
}

.mb--4px {
  margin-bottom: 4px !important;
}

.mb--8px {
  margin-bottom: 8px !important;
}

.mb--12px {
  margin-bottom: 12px !important;
}

.mb--16px {
  margin-bottom: 16px !important;
}

.mb--20px {
  margin-bottom: 20px !important;
}

.mb--24px {
  margin-bottom: 24px !important;
}

.mb--28px {
  margin-bottom: 28px !important;
}

.mb--32px {
  margin-bottom: 32px !important;
}

.mb--36px {
  margin-bottom: 36px !important;
}

.mb--40px {
  margin-bottom: 40px !important;
}

.mb--48px {
  margin-bottom: 48px !important;
}

.mb--56px {
  margin-bottom: 56px !important;
}

.mb--64px {
  margin-bottom: 64px !important;
}

.mb--72px {
  margin-bottom: 72px !important;
}

.mb--0-5em {
  margin-bottom: 0.5em !important;
}

.mb--1em {
  margin-bottom: 1em !important;
}

.mb--1-5em {
  margin-bottom: 1.5em !important;
}

.mb--2em {
  margin-bottom: 2em !important;
}

.mb--2-5em {
  margin-bottom: 2.5em !important;
}

.mb--3em {
  margin-bottom: 3em !important;
}

.mb--4em {
  margin-bottom: 4em !important;
}

@media screen and (max-width: 768px) {
  .sp-mb--0px {
    margin-bottom: 0 !important;
  }
  .sp-mb--4px {
    margin-bottom: 4px !important;
  }
  .sp-mb--8px {
    margin-bottom: 8px !important;
  }
  .sp-mb--12px {
    margin-bottom: 12px !important;
  }
  .sp-mb--16px {
    margin-bottom: 16px !important;
  }
  .sp-mb--20px {
    margin-bottom: 20px !important;
  }
  .sp-mb--24px {
    margin-bottom: 24px !important;
  }
  .sp-mb--28px {
    margin-bottom: 28px !important;
  }
  .sp-mb--32px {
    margin-bottom: 32px !important;
  }
  .sp-mb--36px {
    margin-bottom: 36px !important;
  }
  .sp-mb--40px {
    margin-bottom: 40px !important;
  }
  .sp-mb--48px {
    margin-bottom: 48px !important;
  }
  .sp-mb--56px {
    margin-bottom: 56px !important;
  }
  .sp-mb--64px {
    margin-bottom: 64px !important;
  }
  .sp-mb--72px {
    margin-bottom: 72px !important;
  }
  .sp-mb--0-5em {
    margin-bottom: 0.5em !important;
  }
  .sp-mb--1em {
    margin-bottom: 1em !important;
  }
  .sp-mb--1-5em {
    margin-bottom: 1.5em !important;
  }
  .sp-mb--2em {
    margin-bottom: 2em !important;
  }
  .sp-mb--2-5em {
    margin-bottom: 2.5em !important;
  }
  .sp-mb--3em {
    margin-bottom: 3em !important;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-mb--0px {
    margin-bottom: 0 !important;
  }
  .pc-mb--4px {
    margin-bottom: 4px !important;
  }
  .pc-mb--8px {
    margin-bottom: 8px !important;
  }
  .pc-mb--12px {
    margin-bottom: 12px !important;
  }
  .pc-mb--16px {
    margin-bottom: 16px !important;
  }
  .pc-mb--20px {
    margin-bottom: 20px !important;
  }
  .pc-mb--24px {
    margin-bottom: 24px !important;
  }
  .pc-mb--28px {
    margin-bottom: 28px !important;
  }
  .pc-mb--32px {
    margin-bottom: 32px !important;
  }
  .pc-mb--36px {
    margin-bottom: 36px !important;
  }
  .pc-mb--40px {
    margin-bottom: 40px !important;
  }
  .pc-mb--48px {
    margin-bottom: 48px !important;
  }
  .pc-mb--56px {
    margin-bottom: 56px !important;
  }
  .pc-mb--64px {
    margin-bottom: 64px !important;
  }
  .pc-mb--72px {
    margin-bottom: 72px !important;
  }
  .pc-mb--80px {
    margin-bottom: 80px !important;
  }
  .pc-mb--100px {
    margin-bottom: 100px !important;
  }
  .pc-mb--0-5em {
    margin-bottom: 0.5em !important;
  }
  .pc-mb--1em {
    margin-bottom: 1em !important;
  }
  .pc-mb--1-5em {
    margin-bottom: 1.5em !important;
  }
  .pc-mb--2em {
    margin-bottom: 2em !important;
  }
  .pc-mb--2-5em {
    margin-bottom: 2.5em !important;
  }
  .pc-mb--3em {
    margin-bottom: 3em !important;
  }
  .pc-mb--4em {
    margin-bottom: 4em !important;
  }
}
.p--0px {
  padding: 0 !important;
}

.p--4px {
  padding: 4px !important;
}

.p--8px {
  padding: 8px !important;
}

.p--12px {
  padding: 12px !important;
}

.p--16px {
  padding: 16px !important;
}

.p--20px {
  padding: 20px !important;
}

.p--24px {
  padding: 24px !important;
}

.p--28px {
  padding: 28px !important;
}

.p--32px {
  padding: 32px !important;
}

.p--36px {
  padding: 36px !important;
}

.p--40px {
  padding: 40px !important;
}

.p--48px {
  padding: 48px !important;
}

.p--56px {
  padding: 56px !important;
}

.p--64px {
  padding: 64px !important;
}

.p--72px {
  padding: 72px !important;
}

.p--0-5em {
  padding: 0.5em !important;
}

.p--1em {
  padding: 1em !important;
}

.p--1-5em {
  padding: 1.5em !important;
}

.p--2em {
  padding: 2em !important;
}

.p--2-5em {
  padding: 2.5em !important;
}

.p--3em {
  padding: 3em !important;
}

@media screen and (max-width: 768px) {
  .sp-p--0px {
    padding: 0 !important;
  }
  .sp-p--4px {
    padding: 4px !important;
  }
  .sp-p--8px {
    padding: 8px !important;
  }
  .sp-p--12px {
    padding: 12px !important;
  }
  .sp-p--16px {
    padding: 16px !important;
  }
  .sp-p--20px {
    padding: 20px !important;
  }
  .sp-p--24px {
    padding: 24px !important;
  }
  .sp-p--28px {
    padding: 28px !important;
  }
  .sp-p--32px {
    padding: 32px !important;
  }
  .sp-p--36px {
    padding: 36px !important;
  }
  .sp-p--40px {
    padding: 40px !important;
  }
  .sp-p--48px {
    padding: 48px !important;
  }
  .sp-p--56px {
    padding: 56px !important;
  }
  .sp-p--64px {
    padding: 64px !important;
  }
  .sp-p--72px {
    padding: 72px !important;
  }
  .sp-p--0-5em {
    padding: 0.5em !important;
  }
  .sp-p--1em {
    padding: 1em !important;
  }
  .sp-p--1-5em {
    padding: 1.5em !important;
  }
  .sp-p--2em {
    padding: 2em !important;
  }
  .sp-p--2-5em {
    padding: 2.5em !important;
  }
  .sp-p--3em {
    padding: 3em !important;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-p--0px {
    padding: 0 !important;
  }
  .pc-p--4px {
    padding: 4px !important;
  }
  .pc-p--8px {
    padding: 8px !important;
  }
  .pc-p--12px {
    padding: 12px !important;
  }
  .pc-p--16px {
    padding: 16px !important;
  }
  .pc-p--20px {
    padding: 20px !important;
  }
  .pc-p--24px {
    padding: 24px !important;
  }
  .pc-p--28px {
    padding: 28px !important;
  }
  .pc-p--32px {
    padding: 32px !important;
  }
  .pc-p--36px {
    padding: 36px !important;
  }
  .pc-p--40px {
    padding: 40px !important;
  }
  .pc-p--48px {
    padding: 48px !important;
  }
  .pc-p--56px {
    padding: 56px !important;
  }
  .pc-p--64px {
    padding: 64px !important;
  }
  .pc-p--72px {
    padding: 72px !important;
  }
  .pc-p--80px {
    padding: 80px !important;
  }
  .pc-p--100px {
    padding: 100px !important;
  }
  .pc-p--0-5em {
    padding: 0.5em !important;
  }
  .pc-p--1em {
    padding: 1em !important;
  }
  .pc-p--1-5em {
    padding: 1.5em !important;
  }
  .pc-p--2em {
    padding: 2em !important;
  }
  .pc-p--2-5em {
    padding: 2.5em !important;
  }
  .pc-p--3em {
    padding: 3em !important;
  }
}
.pt--0px {
  padding-top: 0 !important;
}

.pt--4px {
  padding-top: 4px !important;
}

.pt--8px {
  padding-top: 8px !important;
}

.pt--12px {
  padding-top: 12px !important;
}

.pt--16px {
  padding-top: 16px !important;
}

.pt--20px {
  padding-top: 20px !important;
}

.pt--24px {
  padding-top: 24px !important;
}

.pt--28px {
  padding-top: 28px !important;
}

.pt--32px {
  padding-top: 32px !important;
}

.pt--36px {
  padding-top: 36px !important;
}

.pt--40px {
  padding-top: 40px !important;
}

.pt--48px {
  padding-top: 48px !important;
}

.pt--56px {
  padding-top: 56px !important;
}

.pt--64px {
  padding-top: 64px !important;
}

.pt--72px {
  padding-top: 72px !important;
}

.pt--0-5em {
  padding-top: 0.5em !important;
}

.pt--1em {
  padding-top: 1em !important;
}

.pt--1-5em {
  padding-top: 1.5em !important;
}

.pt--2em {
  padding-top: 2em !important;
}

.pt--2-5em {
  padding-top: 2.5em !important;
}

.pt--3em {
  padding-top: 3em !important;
}

@media screen and (max-width: 768px) {
  .sp-pt--0px {
    padding-top: 0 !important;
  }
  .sp-pt--4px {
    padding-top: 4px !important;
  }
  .sp-pt--8px {
    padding-top: 8px !important;
  }
  .sp-pt--12px {
    padding-top: 12px !important;
  }
  .sp-pt--16px {
    padding-top: 16px !important;
  }
  .sp-pt--20px {
    padding-top: 20px !important;
  }
  .sp-pt--24px {
    padding-top: 24px !important;
  }
  .sp-pt--28px {
    padding-top: 28px !important;
  }
  .sp-pt--32px {
    padding-top: 32px !important;
  }
  .sp-pt--36px {
    padding-top: 36px !important;
  }
  .sp-pt--40px {
    padding-top: 40px !important;
  }
  .sp-pt--48px {
    padding-top: 48px !important;
  }
  .sp-pt--56px {
    padding-top: 56px !important;
  }
  .sp-pt--64px {
    padding-top: 64px !important;
  }
  .sp-pt--72px {
    padding-top: 72px !important;
  }
  .sp-pt--0-5em {
    padding-top: 0.5em !important;
  }
  .sp-pt--1em {
    padding-top: 1em !important;
  }
  .sp-pt--1-5em {
    padding-top: 1.5em !important;
  }
  .sp-pt--2em {
    padding-top: 2em !important;
  }
  .sp-pt--2-5em {
    padding-top: 2.5em !important;
  }
  .sp-pt--3em {
    padding-top: 3em !important;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-pt--0px {
    padding-top: 0 !important;
  }
  .pc-pt--4px {
    padding-top: 4px !important;
  }
  .pc-pt--8px {
    padding-top: 8px !important;
  }
  .pc-pt--12px {
    padding-top: 12px !important;
  }
  .pc-pt--16px {
    padding-top: 16px !important;
  }
  .pc-pt--20px {
    padding-top: 20px !important;
  }
  .pc-pt--24px {
    padding-top: 24px !important;
  }
  .pc-pt--28px {
    padding-top: 28px !important;
  }
  .pc-pt--32px {
    padding-top: 32px !important;
  }
  .pc-pt--36px {
    padding-top: 36px !important;
  }
  .pc-pt--40px {
    padding-top: 40px !important;
  }
  .pc-pt--48px {
    padding-top: 48px !important;
  }
  .pc-pt--56px {
    padding-top: 56px !important;
  }
  .pc-pt--64px {
    padding-top: 64px !important;
  }
  .pc-pt--72px {
    padding-top: 72px !important;
  }
  .pc-pt--80px {
    padding-top: 80px !important;
  }
  .pc-pt--100px {
    padding-top: 100px !important;
  }
  .pc-pt--120px {
    padding-top: 120px !important;
  }
  .pc-pt--140px {
    padding-top: 140px !important;
  }
  .pc-pt--160px {
    padding-top: 160px !important;
  }
  .pc-pt--0-5em {
    padding-top: 0.5em !important;
  }
  .pc-pt--1em {
    padding-top: 1em !important;
  }
  .pc-pt--1-5em {
    padding-top: 1.5em !important;
  }
  .pc-pt--2em {
    padding-top: 2em !important;
  }
  .pc-pt--2-5em {
    padding-top: 2.5em !important;
  }
  .pc-pt--3em {
    padding-top: 3em !important;
  }
}
.pl--0px {
  padding-left: 0 !important;
}

.pl--4px {
  padding-left: 4px !important;
}

.pl--8px {
  padding-left: 8px !important;
}

.pl--12px {
  padding-left: 12px !important;
}

.pl--16px {
  padding-left: 16px !important;
}

.pl--20px {
  padding-left: 20px !important;
}

.pl--24px {
  padding-left: 24px !important;
}

.pl--28px {
  padding-left: 28px !important;
}

.pl--32px {
  padding-left: 32px !important;
}

.pl--36px {
  padding-left: 36px !important;
}

.pl--40px {
  padding-left: 40px !important;
}

.pl--48px {
  padding-left: 48px !important;
}

.pl--56px {
  padding-left: 56px !important;
}

.pl--64px {
  padding-left: 64px !important;
}

.pl--72px {
  padding-left: 72px !important;
}

.pl--0-5em {
  padding-left: 0.5em !important;
}

.pl--1em {
  padding-left: 1em !important;
}

.pl--1-5em {
  padding-left: 1.5em !important;
}

.pl--2em {
  padding-left: 2em !important;
}

.pl--2-5em {
  padding-left: 2.5em !important;
}

.pl--3em {
  padding-left: 3em !important;
}

@media screen and (max-width: 768px) {
  .sp-pl--0px {
    padding-left: 0 !important;
  }
  .sp-pl--4px {
    padding-left: 4px !important;
  }
  .sp-pl--8px {
    padding-left: 8px !important;
  }
  .sp-pl--12px {
    padding-left: 12px !important;
  }
  .sp-pl--16px {
    padding-left: 16px !important;
  }
  .sp-pl--20px {
    padding-left: 20px !important;
  }
  .sp-pl--24px {
    padding-left: 24px !important;
  }
  .sp-pl--28px {
    padding-left: 28px !important;
  }
  .sp-pl--32px {
    padding-left: 32px !important;
  }
  .sp-pl--36px {
    padding-left: 36px !important;
  }
  .sp-pl--40px {
    padding-left: 40px !important;
  }
  .sp-pl--48px {
    padding-left: 48px !important;
  }
  .sp-pl--56px {
    padding-left: 56px !important;
  }
  .sp-pl--64px {
    padding-left: 64px !important;
  }
  .sp-pl--72px {
    padding-left: 72px !important;
  }
  .sp-pl--0-5em {
    padding-left: 0.5em !important;
  }
  .sp-pl--1em {
    padding-left: 1em !important;
  }
  .sp-pl--1-5em {
    padding-left: 1.5em !important;
  }
  .sp-pl--2em {
    padding-left: 2em !important;
  }
  .sp-pl--2-5em {
    padding-left: 2.5em !important;
  }
  .sp-pl--3em {
    padding-left: 3em !important;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-pl--0px {
    padding-left: 0 !important;
  }
  .pc-pl--4px {
    padding-left: 4px !important;
  }
  .pc-pl--8px {
    padding-left: 8px !important;
  }
  .pc-pl--12px {
    padding-left: 12px !important;
  }
  .pc-pl--16px {
    padding-left: 16px !important;
  }
  .pc-pl--20px {
    padding-left: 20px !important;
  }
  .pc-pl--24px {
    padding-left: 24px !important;
  }
  .pc-pl--28px {
    padding-left: 28px !important;
  }
  .pc-pl--32px {
    padding-left: 32px !important;
  }
  .pc-pl--36px {
    padding-left: 36px !important;
  }
  .pc-pl--40px {
    padding-left: 40px !important;
  }
  .pc-pl--48px {
    padding-left: 48px !important;
  }
  .pc-pl--56px {
    padding-left: 56px !important;
  }
  .pc-pl--64px {
    padding-left: 64px !important;
  }
  .pc-pl--72px {
    padding-left: 72px !important;
  }
  .pc-pl--80px {
    padding-left: 80px !important;
  }
  .pc-pl--100px {
    padding-left: 100px !important;
  }
  .pc-pl--0-5em {
    padding-left: 0.5em !important;
  }
  .pc-pl--1em {
    padding-left: 1em !important;
  }
  .pc-pl--1-5em {
    padding-left: 1.5em !important;
  }
  .pc-pl--2em {
    padding-left: 2em !important;
  }
  .pc-pl--2-5em {
    padding-left: 2.5em !important;
  }
  .pc-pl--3em {
    padding-left: 3em !important;
  }
}
.pr--0px {
  padding-right: 0 !important;
}

.pr--4px {
  padding-right: 4px !important;
}

.pr--8px {
  padding-right: 8px !important;
}

.pr--12px {
  padding-right: 12px !important;
}

.pr--16px {
  padding-right: 16px !important;
}

.pr--20px {
  padding-right: 20px !important;
}

.pr--24px {
  padding-right: 24px !important;
}

.pr--28px {
  padding-right: 28px !important;
}

.pr--32px {
  padding-right: 32px !important;
}

.pr--36px {
  padding-right: 36px !important;
}

.pr--40px {
  padding-right: 40px !important;
}

.pr--48px {
  padding-right: 48px !important;
}

.pr--56px {
  padding-right: 56px !important;
}

.pr--64px {
  padding-right: 64px !important;
}

.pr--72px {
  padding-right: 72px !important;
}

.pr--0-5em {
  padding-right: 0.5em !important;
}

.pr--1em {
  padding-right: 1em !important;
}

.pr--1-5em {
  padding-right: 1.5em !important;
}

.pr--2em {
  padding-right: 2em !important;
}

.pr--2-5em {
  padding-right: 2.5em !important;
}

.pr--3em {
  padding-right: 3em !important;
}

@media screen and (max-width: 768px) {
  .sp-pr--0px {
    padding-right: 0 !important;
  }
  .sp-pr--4px {
    padding-right: 4px !important;
  }
  .sp-pr--8px {
    padding-right: 8px !important;
  }
  .sp-pr--12px {
    padding-right: 12px !important;
  }
  .sp-pr--16px {
    padding-right: 16px !important;
  }
  .sp-pr--20px {
    padding-right: 20px !important;
  }
  .sp-pr--24px {
    padding-right: 24px !important;
  }
  .sp-pr--28px {
    padding-right: 28px !important;
  }
  .sp-pr--32px {
    padding-right: 32px !important;
  }
  .sp-pr--36px {
    padding-right: 36px !important;
  }
  .sp-pr--40px {
    padding-right: 40px !important;
  }
  .sp-pr--48px {
    padding-right: 48px !important;
  }
  .sp-pr--56px {
    padding-right: 56px !important;
  }
  .sp-pr--64px {
    padding-right: 64px !important;
  }
  .sp-pr--72px {
    padding-right: 72px !important;
  }
  .sp-pr--0-5em {
    padding-right: 0.5em !important;
  }
  .sp-pr--1em {
    padding-right: 1em !important;
  }
  .sp-pr--1-5em {
    padding-right: 1.5em !important;
  }
  .sp-pr--2em {
    padding-right: 2em !important;
  }
  .sp-pr--2-5em {
    padding-right: 2.5em !important;
  }
  .sp-pr--3em {
    padding-right: 3em !important;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-pr--0px {
    padding-right: 0 !important;
  }
  .pc-pr--4px {
    padding-right: 4px !important;
  }
  .pc-pr--8px {
    padding-right: 8px !important;
  }
  .pc-pr--12px {
    padding-right: 12px !important;
  }
  .pc-pr--16px {
    padding-right: 16px !important;
  }
  .pc-pr--20px {
    padding-right: 20px !important;
  }
  .pc-pr--24px {
    padding-right: 24px !important;
  }
  .pc-pr--28px {
    padding-right: 28px !important;
  }
  .pc-pr--32px {
    padding-right: 32px !important;
  }
  .pc-pr--36px {
    padding-right: 36px !important;
  }
  .pc-pr--40px {
    padding-right: 40px !important;
  }
  .pc-pr--48px {
    padding-right: 48px !important;
  }
  .pc-pr--56px {
    padding-right: 56px !important;
  }
  .pc-pr--64px {
    padding-right: 64px !important;
  }
  .pc-pr--72px {
    padding-right: 72px !important;
  }
  .pc-pr--80px {
    padding-right: 80px !important;
  }
  .pc-pr--100px {
    padding-right: 100px !important;
  }
  .pc-pr--0-5em {
    padding-right: 0.5em !important;
  }
  .pc-pr--1em {
    padding-right: 1em !important;
  }
  .pc-pr--1-5em {
    padding-right: 1.5em !important;
  }
  .pc-pr--2em {
    padding-right: 2em !important;
  }
  .pc-pr--2-5em {
    padding-right: 2.5em !important;
  }
  .pc-pr--3em {
    padding-right: 3em !important;
  }
}
.pb--0px {
  padding-bottom: 0 !important;
}

.pb--4px {
  padding-bottom: 4px !important;
}

.pb--8px {
  padding-bottom: 8px !important;
}

.pb--12px {
  padding-bottom: 12px !important;
}

.pb--16px {
  padding-bottom: 16px !important;
}

.pb--20px {
  padding-bottom: 20px !important;
}

.pb--24px {
  padding-bottom: 24px !important;
}

.pb--28px {
  padding-bottom: 28px !important;
}

.pb--32px {
  padding-bottom: 32px !important;
}

.pb--36px {
  padding-bottom: 36px !important;
}

.pb--40px {
  padding-bottom: 40px !important;
}

.pb--48px {
  padding-bottom: 48px !important;
}

.pb--56px {
  padding-bottom: 56px !important;
}

.pb--64px {
  padding-bottom: 64px !important;
}

.pb--72px {
  padding-bottom: 72px !important;
}

.pb--0-5em {
  padding-bottom: 0.5em !important;
}

.pb--1em {
  padding-bottom: 1em !important;
}

.pb--1-5em {
  padding-bottom: 1.5em !important;
}

.pb--2em {
  padding-bottom: 2em !important;
}

.pb--2-5em {
  padding-bottom: 2.5em !important;
}

.pb--3em {
  padding-bottom: 3em !important;
}

@media screen and (max-width: 768px) {
  .sp-pb--0px {
    padding-bottom: 0 !important;
  }
  .sp-pb--4px {
    padding-bottom: 4px !important;
  }
  .sp-pb--8px {
    padding-bottom: 8px !important;
  }
  .sp-pb--12px {
    padding-bottom: 12px !important;
  }
  .sp-pb--16px {
    padding-bottom: 16px !important;
  }
  .sp-pb--20px {
    padding-bottom: 20px !important;
  }
  .sp-pb--24px {
    padding-bottom: 24px !important;
  }
  .sp-pb--28px {
    padding-bottom: 28px !important;
  }
  .sp-pb--32px {
    padding-bottom: 32px !important;
  }
  .sp-pb--36px {
    padding-bottom: 36px !important;
  }
  .sp-pb--40px {
    padding-bottom: 40px !important;
  }
  .sp-pb--48px {
    padding-bottom: 48px !important;
  }
  .sp-pb--56px {
    padding-bottom: 56px !important;
  }
  .sp-pb--64px {
    padding-bottom: 64px !important;
  }
  .sp-pb--72px {
    padding-bottom: 72px !important;
  }
  .sp-pb--0-5em {
    padding-bottom: 0.5em !important;
  }
  .sp-pb--1em {
    padding-bottom: 1em !important;
  }
  .sp-pb--1-5em {
    padding-bottom: 1.5em !important;
  }
  .sp-pb--2em {
    padding-bottom: 2em !important;
  }
  .sp-pb--2-5em {
    padding-bottom: 2.5em !important;
  }
  .sp-pb--3em {
    padding-bottom: 3em !important;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-pb--0px {
    padding-bottom: 0 !important;
  }
  .pc-pb--4px {
    padding-bottom: 4px !important;
  }
  .pc-pb--8px {
    padding-bottom: 8px !important;
  }
  .pc-pb--12px {
    padding-bottom: 12px !important;
  }
  .pc-pb--16px {
    padding-bottom: 16px !important;
  }
  .pc-pb--20px {
    padding-bottom: 20px !important;
  }
  .pc-pb--24px {
    padding-bottom: 24px !important;
  }
  .pc-pb--28px {
    padding-bottom: 28px !important;
  }
  .pc-pb--32px {
    padding-bottom: 32px !important;
  }
  .pc-pb--36px {
    padding-bottom: 36px !important;
  }
  .pc-pb--40px {
    padding-bottom: 40px !important;
  }
  .pc-pb--48px {
    padding-bottom: 48px !important;
  }
  .pc-pb--56px {
    padding-bottom: 56px !important;
  }
  .pc-pb--64px {
    padding-bottom: 64px !important;
  }
  .pc-pb--72px {
    padding-bottom: 72px !important;
  }
  .pc-pb--80px {
    padding-bottom: 80px !important;
  }
  .pc-pb--100px {
    padding-bottom: 100px !important;
  }
  .pc-pb--120px {
    padding-bottom: 120px !important;
  }
  .pc-pb--140px {
    padding-bottom: 140px !important;
  }
  .pc-pb--160px {
    padding-bottom: 160px !important;
  }
  .pc-pb--0-5em {
    padding-bottom: 0.5em !important;
  }
  .pc-pb--1em {
    padding-bottom: 1em !important;
  }
  .pc-pb--1-5em {
    padding-bottom: 1.5em !important;
  }
  .pc-pb--2em {
    padding-bottom: 2em !important;
  }
  .pc-pb--2-5em {
    padding-bottom: 2.5em !important;
  }
  .pc-pb--3em {
    padding-bottom: 3em !important;
  }
}
/*
 テキストウエイト
---------------------------------------------------*/
.fw--normal {
  font-weight: normal !important;
}

.fw--bold,
b {
  font-weight: bold !important;
}

@media print, screen and (min-width: 769px) {
  .pc-fw--bold {
    font-weight: bold !important;
  }
}
/*
 テキストサイズ
---------------------------------------------------*/
.fs--xs {
  font-size: 11px !important;
}
@media print, screen and (min-width: 769px) {
  .fs--xs {
    font-size: 12px !important;
  }
}

.fs--s {
  font-size: 12px !important;
}
@media print, screen and (min-width: 769px) {
  .fs--s {
    font-size: 14px !important;
  }
}

.fs--sm {
  font-size: 13px !important;
}
@media print, screen and (min-width: 769px) {
  .fs--sm {
    font-size: 15px !important;
  }
}

.fs--m {
  font-size: 14px !important;
}
@media print, screen and (min-width: 769px) {
  .fs--m {
    font-size: 16px !important;
  }
}

.fs--ml {
  font-size: 16px !important;
}
@media print, screen and (min-width: 769px) {
  .fs--ml {
    font-size: 18px !important;
  }
}

.fs--l {
  font-size: 18px !important;
}
@media print, screen and (min-width: 769px) {
  .fs--l {
    font-size: 20px !important;
  }
}

.fs--xl {
  font-size: 20px !important;
}
@media print, screen and (min-width: 769px) {
  .fs--xl {
    font-size: 26px !important;
  }
}

.fs--xxl {
  font-size: 24px !important;
}
@media print, screen and (min-width: 769px) {
  .fs--xxl {
    font-size: 36px !important;
  }
}

@media screen and (max-width: 768px) {
  .sp-fs--10 {
    font-size: 10px !important;
  }
  .sp-fs--11 {
    font-size: 11px !important;
  }
  .sp-fs--12 {
    font-size: 12px !important;
  }
  .sp-fs--13 {
    font-size: 13px !important;
  }
  .sp-fs--14 {
    font-size: 14px !important;
  }
  .sp-fs--15 {
    font-size: 15px !important;
  }
  .sp-fs--16 {
    font-size: 16px !important;
  }
  .sp-fs--17 {
    font-size: 17px !important;
  }
  .sp-fs--18 {
    font-size: 18px !important;
  }
  .sp-fs--19 {
    font-size: 19px !important;
  }
  .sp-fs--20 {
    font-size: 20px !important;
  }
  .sp-fs--21 {
    font-size: 21px !important;
  }
  .sp-fs--22 {
    font-size: 22px !important;
  }
  .sp-fs--23 {
    font-size: 23px !important;
  }
  .sp-fs--24 {
    font-size: 24px !important;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-fs--10 {
    font-size: 10px !important;
  }
  .pc-fs--11 {
    font-size: 11px !important;
  }
  .pc-fs--12 {
    font-size: 12px !important;
  }
  .pc-fs--13 {
    font-size: 13px !important;
  }
  .pc-fs--14 {
    font-size: 14px !important;
  }
  .pc-fs--15 {
    font-size: 15px !important;
  }
  .pc-fs--16 {
    font-size: 16px !important;
  }
  .pc-fs--17 {
    font-size: 17px !important;
  }
  .pc-fs--18 {
    font-size: 18px !important;
  }
  .pc-fs--19 {
    font-size: 19px !important;
  }
  .pc-fs--20 {
    font-size: 20px !important;
  }
  .pc-fs--21 {
    font-size: 21px !important;
  }
  .pc-fs--22 {
    font-size: 22px !important;
  }
  .pc-fs--23 {
    font-size: 23px !important;
  }
  .pc-fs--24 {
    font-size: 24px !important;
  }
  .pc-fs--26 {
    font-size: 26px !important;
  }
  .pc-fs--28 {
    font-size: 28px !important;
  }
  .pc-fs--30 {
    font-size: 30px !important;
  }
  .pc-fs--32 {
    font-size: 32px !important;
  }
  .pc-fs--36 {
    font-size: 36px !important;
  }
  .pc-fs--40 {
    font-size: 40px !important;
  }
}
/*
 テキストカラー
---------------------------------------------------*/
.fc--red {
  color: var(--color-red1) !important;
}

.fc--blue {
  color: var(--color-blue1) !important;
}

.fc--blue2 {
  color: var(--color-blue2) !important;
}

.fc--gray {
  color: var(--color-gray1) !important;
}

.fc--gray2 {
  color: var(--color-gray2) !important;
}

.fc--white {
  color: #fff !important;
}

/*
 背景
---------------------------------------------------*/
.bg--gray {
  background: var(--color-bg-gray1) !important;
}

.bg--white {
  background: #fff !important;
}

.bg--blue {
  background: var(--color-blue1) !important;
}

.bg--blue2 {
  background: var(--color-blue2) !important;
}

.bg--l-blue {
  background: var(--color-bg-blue1) !important;
}

.bg--l-red {
  background: var(--color-bg-red1) !important;
}

/*
 行間
---------------------------------------------------*/
.lh--2 {
  line-height: 2;
}

@media print, screen and (min-width: 769px) {
  .pc-lh--2 {
    line-height: 2;
  }
}
.lh--1 {
  line-height: 1;
}

@media print, screen and (min-width: 769px) {
  .pc-lh--1 {
    line-height: 1;
  }
}
.lh--default {
  line-height: 1.7;
}

/*
 flex
---------------------------------------------------*/
.row {
  display: flex;
}

@media screen and (max-width: 768px) {
  .sp-row {
    display: flex;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-row {
    display: flex;
  }
}
.row--dr-column {
  flex-direction: column;
}

.row--jc-start {
  justify-content: flex-start;
}

.row--jc-between {
  justify-content: space-between;
}

.row--jc-center {
  justify-content: center;
}

.row--wrap {
  flex-wrap: wrap;
}

.row--nowrap {
  flex-wrap: nowrap;
}

.row--al-center {
  align-items: center;
}

.row--al-end {
  align-items: flex-end;
}

.row--self-center {
  align-self: center;
}

.row--self-end {
  align-self: flex-end;
}

.flex1 {
  flex: 1;
}

@media screen and (max-width: 768px) {
  .sp-row--dr-column {
    display: flex;
    flex-direction: column;
  }
  .sp-row--dr-column-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .sp-row--jc-start {
    justify-content: flex-start;
  }
  .sp-row--jc-between {
    justify-content: space-between;
  }
  .sp-row--jc-center {
    justify-content: center;
  }
  .sp-row--wrap {
    flex-wrap: wrap;
  }
  .sp-row--nowrap {
    flex-wrap: nowrap;
  }
  .sp-row--al-center {
    align-items: center;
  }
  .sp-row--al-end {
    align-items: flex-end;
  }
  .sp-row--self-center {
    align-self: center;
  }
  .sp-row--self-end {
    align-self: flex-end;
  }
  .sp-flex1 {
    flex: 1;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-row--dr-column {
    flex-direction: column;
  }
  .pc-row--jc-start {
    justify-content: flex-start;
  }
  .pc-row--jc-between {
    justify-content: space-between;
  }
  .pc-row--jc-center {
    justify-content: center;
  }
  .pc-row--wrap {
    flex-wrap: wrap;
  }
  .pc-row--nowrap {
    flex-wrap: nowrap;
  }
  .pc-row--al-center {
    align-items: center;
  }
  .pc-row--al-end {
    align-items: flex-end;
  }
  .pc-row--self-center {
    align-self: center;
  }
  .pc-row--self-end {
    align-self: flex-end;
  }
  .pc-flex1 {
    flex: 1;
  }
}
/*
 改行させない
---------------------------------------------------*/
.nowrap {
  white-space: nowrap;
}

/*
 区切り
---------------------------------------------------*/
hr {
  height: 0;
  margin: 2em 0;
  padding: 0;
  border: none;
  border-top: 1px solid var(--color-line2);
}

/*
 ブロック
---------------------------------------------------*/
.block-list__item {
  padding: 24px 0;
  border-bottom: 1px solid var(--color-line2);
}
@media print, screen and (min-width: 769px) {
  .block-list__item {
    padding: 40px 0;
  }
}
.block-list__item:first-child {
  border-top: 1px solid var(--color-line2);
}
@media print, screen and (min-width: 769px) {
  .block-list__item {
    display: flex;
  }
}
@media print, screen and (min-width: 769px) {
  .block-list__item > dt {
    flex-shrink: 0;
  }
}
@media screen and (max-width: 768px) {
  .block-list__item > dd {
    padding-top: 16px;
  }
}

/*
 画像のアスペクト比
---------------------------------------------------*/
.aspect-1-1 {
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
}

.aspect-2-1 {
  aspect-ratio: 2/1;
  object-fit: cover;
  object-position: center;
}

.aspect-3-1 {
  aspect-ratio: 3/1;
  object-fit: cover;
  object-position: center;
}

.aspect-5-3 {
  aspect-ratio: 5/3;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 768px) {
  .sp-aspect-2-1 {
    aspect-ratio: 2/1;
    object-fit: cover;
    object-position: center;
  }
  .sp-aspect-3-1 {
    aspect-ratio: 3/1;
    object-fit: cover;
    object-position: center;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-aspect-2-1 {
    aspect-ratio: 2/1;
    object-fit: cover;
    object-position: center;
  }
  .pc-aspect-3-1 {
    aspect-ratio: 3/1;
    object-fit: cover;
    object-position: center;
  }
}
.aspect-pos-center {
  object-position: center;
}

.aspect-pos-top {
  object-position: top;
}

.aspect-pos-btm {
  object-position: bottom;
}

/*
 リスト
---------------------------------------------------*/
.list-dot > li {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.list-dot > li:before {
  content: "・";
  margin-right: 0.5em;
}
.list-dot > li * {
  text-indent: 0;
}

.list-dot--red > li,
.list-dot--blue > li {
  padding-left: 1.8em;
  position: relative;
}
.list-dot--red > li:not(:last-child),
.list-dot--blue > li:not(:last-child) {
  margin-bottom: 0.6em;
}
.list-dot--red > li:before,
.list-dot--blue > li:before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  top: 0.75em;
  left: 0.6em;
}

.list-dot--red > li:before {
  background: var(--color-red1);
}

.list-dot--blue > li:before {
  background: var(--color-blue3);
}

.list-dot--big-blue > li {
  padding-left: 1.5em;
  position: relative;
}
.list-dot--big-blue > li:before {
  content: "●";
  display: block;
  font-size: 1em;
  color: var(--color-blue3);
  transform: scale(0.5);
  position: absolute;
  left: 0;
  top: 0;
}

.list-number {
  margin-left: 1.5em;
}
.list-number > li {
  list-style-type: decimal;
  padding-left: 0.5em;
}

.list-image {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 8px;
}
@media print, screen and (min-width: 769px) {
  .list-image {
    gap: 40px 24px;
  }
}
.list-image > li {
  width: calc((100% - 8px) / 2);
}
@media print, screen and (min-width: 769px) {
  .list-image > li {
    width: calc((100% - 24px) / 2);
  }
}
.list-image .caption {
  font-size: 0.9em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .list-image.sp-col--1 > li {
    width: 100%;
  }
}
@media print, screen and (min-width: 769px) {
  .list-image.pc-col--3 > li {
    width: calc((100% - 48px) / 3);
  }
}
@media print, screen and (min-width: 769px) {
  .list-image.pc-col--auto > li {
    width: auto;
  }
}

.list-link > li:not(:last-child) {
  margin-bottom: 0.8em;
}
.list-link > li > a {
  position: relative;
  padding-left: 1.5em;
  display: inline-block;
}
.list-link > li > a::before {
  content: "\e5cc";
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 50%;
  margin-top: -0.5em;
  font-size: 1.2em;
  left: 0;
  color: var(--color-link);
}
@media screen and (max-width: 768px) {
  .list-link.sp-col--2 {
    display: flex;
    flex-wrap: wrap;
  }
  .list-link.sp-col--2 > li {
    width: 50%;
  }
}
@media print, screen and (min-width: 769px) {
  .list-link.pc-col--2 {
    display: flex;
    flex-wrap: wrap;
  }
  .list-link.pc-col--2 > li {
    width: 50%;
  }
}

.list-margin-0-5em > li {
  margin-bottom: 0.5em;
}

.list-margin-1em > li {
  margin-bottom: 1em;
}

.list-margin-1-5em > li {
  margin-bottom: 1.5em;
}

.list-margin-2em > li {
  margin-bottom: 2em;
}

/*
 装飾テキスト
---------------------------------------------------*/
.txt-dot {
  padding-left: 1em;
  position: relative;
}
.txt-dot:before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  top: 0.65em;
  left: 0.25em;
  background: var(--color-body);
}

.txt-indent {
  text-indent: -1em;
  padding-left: 1em;
}

.txt-caption {
  font-size: 12px;
  margin-top: 0.5em;
  text-align: center;
}
@media print, screen and (min-width: 769px) {
  .txt-caption {
    font-size: 14px;
  }
}

.txt-space--1 {
  letter-spacing: 0.1em;
}

@media print, screen and (min-width: 769px) {
  .pc-txt-space--1 {
    letter-spacing: 0.1em;
  }
}
.txt-hl {
  background: linear-gradient(transparent 60%, rgb(255, 232, 178) 60% 100%, transparent 100%);
}

/*
 ボーダー
---------------------------------------------------*/
.border--gray {
  border: 1px solid var(--color-line2);
}

@media screen and (max-width: 768px) {
  .sp-border--gray {
    border: 1px solid var(--color-line2);
  }
}
@media print, screen and (min-width: 769px) {
  .pc-border--gray {
    border: 1px solid var(--color-line2);
  }
}
.border--red {
  border: 1px solid var(--color-red1);
}

@media screen and (max-width: 768px) {
  .sp-border--red {
    border: 1px solid var(--color-red1);
  }
}
@media print, screen and (min-width: 769px) {
  .pc-border--red {
    border: 1px solid var(--color-red1);
  }
}
.border--blue {
  border: 1px solid var(--color-blue1);
}

@media screen and (max-width: 768px) {
  .sp-border--blue {
    border: 1px solid var(--color-blue1);
  }
}
@media print, screen and (min-width: 769px) {
  .pc-border--blue {
    border: 1px solid var(--color-blue1);
  }
}
/*
 角丸
---------------------------------------------------*/
.radius--4px {
  border-radius: 4px;
}

.radius--8px {
  border-radius: 8px;
}

@media print, screen and (min-width: 769px) {
  .pc-radius--4px {
    border-radius: 4px;
  }
  .pc-radius--8px {
    border-radius: 8px;
  }
}
@media screen and (max-width: 768px) {
  .sp-radius--4px {
    border-radius: 4px;
  }
  .sp-radius--8px {
    border-radius: 8px;
  }
}
/*
 コンテナ
---------------------------------------------------*/
.youtube-wrap {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .youtube-wrap iframe {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
  }
}

/*
 フロート
---------------------------------------------------*/
.img-float--r {
  float: right;
}

.img-float--l {
  float: left;
}

@media screen and (max-width: 768px) {
  .sp-img-float--r {
    float: right;
  }
  .sp-img-float--l {
    float: left;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-img-float--r {
    float: right;
  }
  .pc-img-float--l {
    float: left;
  }
}
.clearfix {
  clear: both;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/*
 テーブルレイアウト
---------------------------------------------------*/
.table-l-fixed {
  table-layout: fixed;
}

@media screen and (max-width: 768px) {
  .sp-table-l-fixed {
    table-layout: fixed;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-table-l-fixed {
    table-layout: fixed;
  }
}
/*
 overflow
---------------------------------------------------*/
.overflow--hidden {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .sp-overflow--hidden {
    overflow: hidden;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-overflow--hidden {
    overflow: hidden;
  }
}
/*===================================================

 下層ページ

===================================================*/
.cmn-recruit__container {
  position: relative;
}
@media print, screen and (min-width: 769px) {
  .cmn-recruit__container {
    padding: 120px 0;
    display: flex;
  }
}
.cmn-recruit__img {
  flex: 1;
  position: relative;
  z-index: 2;
}
@media print, screen and (min-width: 769px) {
  .cmn-recruit__img img {
    transform: scale(1.15);
    transform-origin: 0;
  }
}
@media screen and (max-width: 768px) {
  .cmn-recruit__img img {
    position: relative;
    top: 32px;
    right: 10%;
  }
}
@media print, screen and (min-width: 769px) {
  .cmn-recruit__desc {
    flex: 1;
    position: relative;
    padding-right: 2.25vw;
  }
}
@media screen and (max-width: 768px) {
  .cmn-recruit__desc {
    background: rgba(255, 255, 255, 0.95);
  }
}
.cmn-recruit__desc-bg {
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: -80px;
  left: -30%;
  width: 200%;
  height: calc(100% + 80px + 120px);
  transform: skew(-30deg);
}
@media screen and (max-width: 768px) {
  .cmn-recruit__desc-bg {
    top: 0;
    left: 20%;
    width: 150%;
    height: 100%;
  }
}
.cmn-recruit__desc-wrap {
  position: relative;
  max-width: 640px;
  padding-left: 4vw;
}
@media screen and (max-width: 768px) {
  .cmn-recruit__desc-wrap {
    padding: 0 32px 64px;
  }
}
.cmn-recruit__lead {
  margin-top: 40px;
  font-family: var(--font-mincho);
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .cmn-recruit__lead {
    margin-top: 24px;
    font-size: 20px;
  }
}
.cmn-recruit__txt {
  margin-top: 1.5em;
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .cmn-recruit__txt {
    font-size: 14px;
    line-height: 1.8;
  }
}
.cmn-recruit .top-section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .cmn-recruit .top-section-heading {
    position: relative;
    z-index: 10;
  }
}
.cmn-recruit .btn-wrap {
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .cmn-recruit .btn-wrap {
    margin-top: 24px;
    justify-content: center;
  }
}
.cmn-recruit .line-01 {
  bottom: 100px;
  right: 5%;
}
@media screen and (max-width: 768px) {
  .cmn-recruit .line-01 {
    bottom: 10px;
    right: 18px;
  }
}
.cmn-recruit .line-02 {
  bottom: -70px;
  right: 12%;
}
@media screen and (max-width: 768px) {
  .cmn-recruit .line-02 {
    bottom: -70px;
    right: 72px;
  }
}

.cmn-special {
  position: relative;
  overflow: hidden;
  padding: 100px 4vw 120px;
}
@media screen and (max-width: 768px) {
  .cmn-special {
    padding: 40px 16px 80px;
    background: #fff;
  }
}
.cmn-special::before {
  content: "";
  display: block;
  background: var(--color-bg-gray1);
  transform: skew(-30deg);
  width: 500px;
  height: 1000px;
  position: absolute;
  bottom: 0;
  right: -300px;
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .cmn-special::before {
    width: 200px;
    height: 400px;
    right: -120px;
  }
}
.cmn-special__particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cmn-special__container {
  position: relative;
  z-index: 2;
}
.cmn-special__typo {
  font-size: 120px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  color: #E1E1E1;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .cmn-special__typo {
    font-size: 60px;
  }
}
.cmn-special__slider-wrap {
  position: relative;
}
.cmn-special__list {
  display: flex;
}
@media print, screen and (min-width: 769px) {
  .cmn-special__card {
    width: 360px !important;
  }
}
@media screen and (max-width: 768px) {
  .cmn-special__card {
    width: 240px !important;
  }
}
.cmn-special__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--color-body);
  text-decoration: none;
  background: #fff;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.cmn-special__card-txt {
  padding: 20px 24px 24px;
}
@media screen and (max-width: 768px) {
  .cmn-special__card-txt {
    padding: 16px;
  }
}
.cmn-special__card-txt .ttl {
  color: var(--color-blue1);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .cmn-special__card-txt .ttl {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .cmn-special__card-txt .txt {
    font-size: 13px;
  }
}
.cmn-special .swiper-button-next,
.cmn-special .swiper-button-prev {
  width: 72px;
  height: 72px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.16);
  transform: translateY(-50%);
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .cmn-special .swiper-button-next,
  .cmn-special .swiper-button-prev {
    display: none !important;
  }
}
.cmn-special .swiper-button-next::after,
.cmn-special .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-blue1);
}
.cmn-special .swiper-button-next.swiper-button-disabled,
.cmn-special .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

.image-type-01 {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.image-type-01 .image-01 {
  grid-column: 1/3;
  grid-row: 1/3;
}
.image-type-01 .image-02 {
  grid-column: 3/4;
  grid-row: 1/2;
}
.image-type-01 .image-03 {
  grid-column: 3/4;
  grid-row: 2/3;
}
.image-type-01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.unit {
  display: flex;
  flex-wrap: wrap;
  gap: 2.25vw;
}
@media screen and (max-width: 768px) {
  .unit {
    flex-direction: column;
    gap: 16px 0;
  }
}
.unit__col {
  background: #fff;
  padding: 40px;
  border: 1px solid var(--color-line1);
}
@media screen and (max-width: 768px) {
  .unit__col {
    padding: 24px;
  }
}
@media print, screen and (min-width: 769px) {
  .unit > .col1 {
    width: 100%;
  }
}
@media print, screen and (min-width: 769px) {
  .unit > .col2 {
    width: calc((100% - 2.25vw) / 2);
  }
}

.index-btn-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .index-btn-list {
    gap: 8px;
  }
}
.index-btn-list > li {
  width: calc((100% - 48px) / 3);
}
@media screen and (max-width: 768px) {
  .index-btn-list > li {
    width: calc((100% - 8px) / 2);
  }
}
.index-btn-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  border: 1px solid var(--color-blue1);
  border-radius: 4px;
  padding: 8px 36px 8px 24px;
  position: relative;
  min-height: 72px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: background 0.3s;
}
@media screen and (max-width: 768px) {
  .index-btn-list > li > a {
    padding: 8px 24px 8px 16px;
    min-height: 48px;
    font-size: 14px;
  }
}
.index-btn-list > li > a::after {
  content: "\e5cc";
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .index-btn-list > li > a::after {
    right: 8px;
  }
}
@media print, screen and (min-width: 769px) {
  .index-btn-list > li > a:hover {
    background: var(--color-blue1);
    color: #fff;
  }
}
@media print, screen and (min-width: 769px) {
  .index-btn-list.local-page {
    gap: 16px;
  }
}
@media print, screen and (min-width: 769px) {
  .index-btn-list.local-page > li {
    width: calc((100% - 64px) / 4);
  }
  .index-btn-list.local-page > li > a {
    min-height: 64px;
  }
}

.table-bladder-cancer > thead th {
  padding: 0.5em;
  line-height: 1.4;
}
.table-bladder-cancer th,
.table-bladder-cancer td {
  text-align: center;
  padding: 0.8em;
  line-height: 1.4;
}

.table-score-calc {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.4;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .table-score-calc {
    width: 640px;
  }
}
.table-score-calc caption {
  text-align: left;
  font-weight: 700;
  margin-bottom: 0.25em;
}
.table-score-calc th,
.table-score-calc td {
  border: 1px solid var(--color-line2);
}
@media screen and (max-width: 768px) {
  .table-score-calc th,
  .table-score-calc td {
    font-size: 12px;
  }
}
.table-score-calc > thead th {
  background: var(--color-blue2);
  color: #fff;
  padding: 10px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .table-score-calc > thead th {
    padding: 10px 5px;
  }
}
.table-score-calc > tbody th {
  background: var(--color-bg-blue1);
  text-align: left;
  font-weight: 500;
  width: 40%;
  padding: 15px;
}
@media screen and (max-width: 768px) {
  .table-score-calc > tbody th {
    padding: 10px;
    white-space: normal;
    width: 120px;
  }
}
.table-score-calc > tbody td {
  width: 10%;
  padding: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .table-score-calc > tbody td {
    width: 70px;
  }
}
.table-score-calc .score-btn {
  display: block;
  border: 1px solid var(--color-line2);
  text-align: center;
  border-radius: 4px;
  padding: 8px 10px 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  box-shadow: 0 -2px 0 0 rgba(0, 0, 0, 0.1) inset;
  cursor: pointer;
}
.table-score-calc .score-btn input[type=radio] {
  position: absolute;
  height: 0;
  opacity: 0;
}
.table-score-calc .score-btn:has(input:checked) {
  background: #26b14e;
  border-color: #1f823b;
  color: #fff;
}

.score-calc-wrap .score-total-box {
  margin-top: 24px;
  display: flex;
  border: 3px solid var(--color-blue2);
  border-radius: 8px;
  background: #fff;
  max-width: 360px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .score-calc-wrap .score-total-box {
    max-width: 300px;
    border-width: 2px;
  }
}
.score-calc-wrap .score-total-box__head {
  background: var(--color-blue2);
  color: #fff;
  font-weight: 700;
  padding: 20px 2em;
}
@media screen and (max-width: 768px) {
  .score-calc-wrap .score-total-box__head {
    font-size: 14px;
    padding: 15px 1em;
  }
}
.score-calc-wrap .score-total-box__body {
  flex: 1;
  align-self: center;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
  padding: 10px 20px;
  font-size: 20px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .score-calc-wrap .score-total-box__body {
    font-size: 15px;
  }
}
.score-calc-wrap .score-total-box__body .score-total {
  font-size: 40px;
  font-weight: 700;
  margin-right: 4px;
}
@media screen and (max-width: 768px) {
  .score-calc-wrap .score-total-box__body .score-total {
    font-size: 30px;
  }
}
.score-calc-wrap .score-detail {
  margin-top: 16px;
  text-align: right;
  line-height: 1.4;
}
@media print, screen and (min-width: 769px) {
  .score-calc-wrap .score-detail {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0 2em;
  }
}

.history-wrap {
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .history-wrap {
    line-height: 1.5;
  }
}
.history-wrap dl {
  display: flex;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 768px) {
  .history-wrap dl {
    margin-bottom: 1em;
  }
}
.history-wrap dl > dt {
  width: 7em;
  font-weight: 700;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .history-table thead th {
    font-size: 12px;
    padding: 0.8em 0.5em;
    white-space: nowrap;
  }
}
@media screen and (max-width: 768px) {
  .history-table__col-name {
    width: 100px;
  }
}
@media screen and (max-width: 768px) {
  .history-table__col-year {
    width: 60px;
  }
}
.staff-list {
  display: flex;
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.staff-card {
  background: #fff;
  border: 1px solid var(--color-line1);
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .staff-card {
    padding: 16px;
  }
}
.staff-card__col-img {
  width: 120px;
}
@media screen and (max-width: 768px) {
  .staff-card__col-img {
    width: 100px;
  }
}
.staff-card__col-name {
  width: calc(100% - 120px);
  padding-left: 24px;
}
@media screen and (max-width: 768px) {
  .staff-card__col-name {
    width: calc(100% - 100px);
    padding-left: 16px;
  }
}
.staff-card__col-name .position {
  color: var(--color-blue1);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 4px;
}
.staff-card__col-name .name {
  font-size: 24px;
  font-family: var(--font-mincho);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .staff-card__col-name .name {
    font-size: 20px;
  }
}
.staff-card__col-detail {
  width: 100%;
  font-size: 14px;
  padding-top: 24px;
}
@media screen and (max-width: 768px) {
  .staff-card__col-detail {
    padding-top: 16px;
  }
}
.staff-card__col-detail dl {
  border-top: 1px solid var(--color-line1);
  padding: 16px 0;
}
@media screen and (max-width: 768px) {
  .staff-card__col-detail dl {
    padding: 12px 0;
  }
}
.staff-card__col-detail dl:last-child {
  padding-bottom: 0;
}
.staff-card__col-detail dl > dt {
  margin-bottom: 0.5em;
  color: var(--color-blue1);
}
.voice-box {
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--color-line1);
  padding: 40px;
  display: flex;
  gap: 0 40px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .voice-box {
    padding: 30px 20px 20px;
    flex-direction: column;
    gap: 16px 0;
  }
}
.voice-box__head {
  text-align: center;
  width: 160px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .voice-box__head {
    width: auto;
  }
}
.voice-box__head-ttl {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .voice-box__head-ttl {
    margin-top: 8px;
  }
}
.voice-box__head-ttl .year {
  display: block;
  color: var(--color-blue1);
}
.voice-box__head-ttl .name {
  font-weight: 700;
}
.voice-box__body {
  flex: 1;
}
.voice-box__img img {
  border-radius: 50%;
  object-fit: cover;
  width: 140px;
  height: 140px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .voice-box__img img {
    width: 100px;
    height: 100px;
  }
}

.relation-area {
  display: flex;
  border-bottom: 1px solid var(--color-line1);
  padding: 24px 0;
}
@media screen and (max-width: 768px) {
  .relation-area {
    padding: 16px 0;
  }
}
.relation-area:first-of-type {
  border-top: 1px solid var(--color-line1);
}
.relation-area > dt {
  width: 10em;
  padding-right: 1em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .relation-area > dt {
    width: 6em;
  }
}
.relation-area > dd {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .relation-area > dd ul > li {
    margin-bottom: 0.5em;
  }
}

.sitemap-list {
  line-height: 1.5;
}
.sitemap-list a {
  text-decoration: none;
}
@media print, screen and (min-width: 769px) {
  .sitemap-list a:hover {
    text-decoration: underline;
  }
}
.sitemap-list__item {
  border-bottom: 1px solid var(--color-line1);
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .sitemap-list__item {
    padding: 24px 0;
  }
}
.sitemap-list__parent {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .sitemap-list__parent {
    font-size: 18px;
  }
}
.sitemap-list__parent > a {
  display: inline-block;
  padding-right: 1.2em;
  position: relative;
}
.sitemap-list__parent > a::after {
  content: "\e5cc";
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -0.5em;
}
.sitemap-list__child {
  margin-top: 24px;
}
.sitemap-list__child ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px 40px;
}
@media screen and (max-width: 768px) {
  .sitemap-list__child ul {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 16px;
  }
}
@media screen and (max-width: 768px) {
  .sitemap-list__child ul > li {
    font-size: 14px;
    min-width: calc((100% - 16px) / 2);
  }
  .sitemap-list__child ul > li > a {
    display: inline-block;
    padding-left: 1em;
    position: relative;
  }
  .sitemap-list__child ul > li > a::before {
    content: "・";
    color: var(--color-blue3);
    position: absolute;
    top: 0;
    left: 0;
  }
}
.sitemap-list__parent-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px 40px;
}
@media screen and (max-width: 768px) {
  .sitemap-list__parent-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 16px;
  }
}
@media screen and (max-width: 768px) {
  .sitemap-list__parent-list > li {
    width: calc((100% - 16px) / 2);
  }
}
.sitemap-list__parent-list > li a {
  display: inline-block;
  padding-right: 1.2em;
  position: relative;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .sitemap-list__parent-list > li a {
    font-size: 16px;
  }
}
.sitemap-list__parent-list > li a::after {
  content: "\e5cc";
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -0.5em;
}

.special-top-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .special-top-card-list {
    gap: 16px;
  }
}
@media print, screen and (min-width: 769px) {
  .special-top-card-list .cmn-special__card {
    width: calc((100% - 48px) / 3) !important;
  }
}
@media screen and (max-width: 768px) {
  .special-top-card-list .cmn-special__card {
    width: 100% !important;
  }
}

.news-list--domonkai > li.news-list__item:first-child {
  border-top: none;
}

.login-form {
  background: #fff;
  border: 1px solid var(--color-line2);
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .login-form {
    padding: 20px;
  }
}
.login-form__ttl {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .login-form__ttl {
    font-size: 16px;
  }
}
.login-form__txt {
  margin-bottom: 16px;
}

.login-form-box {
  text-align: left;
  max-width: 400px;
  margin: 24px auto;
}
@media screen and (max-width: 768px) {
  .login-form-box {
    margin-bottom: 0;
  }
}
.login-form-box label {
  display: block;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .login-form-box label {
    font-size: 13px;
  }
}
.login-form-box input[type=text],
.login-form-box input[type=password] {
  width: 100%;
  display: block;
  border: 1px solid #999;
  border-radius: 0;
  padding: 0 8px;
  font-size: 16px;
  height: 48px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .login-form-box input[type=text],
  .login-form-box input[type=password] {
    height: 44px;
  }
}
.login-form-box button[type=submit] {
  width: 100%;
  display: block;
  border: none;
  border-radius: 4px;
  padding: 0 8px;
  font-size: 16px;
  background: var(--color-blue2);
  color: #fff;
  height: 48px;
}
@media screen and (max-width: 768px) {
  .login-form-box button[type=submit] {
    height: 44px;
  }
}

.achievements-accordion-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .achievements-accordion-list {
    flex-direction: column;
    gap: 10px 0;
  }
}
.achievements-accordion-list .achievements-accordion {
  width: calc((100% - 32px) / 3);
  background: #fff;
}
@media screen and (max-width: 768px) {
  .achievements-accordion-list .achievements-accordion {
    width: 100%;
  }
}
.achievements-accordion-list .achievements-accordion .accordion-heading__ttl {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .achievements-accordion-list .achievements-accordion .accordion-heading__ttl {
    font-size: 16px;
  }
}

.achievements-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1em;
}
.achievements-link-list > li {
  width: 100%;
}

.terms-content h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 1em;
  margin-top: 1em;
}
.terms-content h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 0.5em;
  margin-top: 2em;
}
.terms-content ol {
  margin-left: 1em;
}
.terms-content ol > li {
  list-style-type: decimal;
}

/*===================================================

 トップページ

===================================================*/
.top-section-heading .txt-ja {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-blue1);
  display: flex;
  align-items: center;
  gap: 0 8px;
}
@media screen and (max-width: 768px) {
  .top-section-heading .txt-ja {
    font-size: 11px;
  }
}
.top-section-heading .txt-ja::before {
  content: "";
  display: block;
  border-radius: 50%;
  width: 1em;
  height: 1em;
  background: var(--color-yellow1);
}
.top-section-heading .txt-en {
  margin-top: 8px;
  font-size: 64px;
  font-family: var(--font-en);
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  color: var(--color-blue1);
}
@media screen and (max-width: 768px) {
  .top-section-heading .txt-en {
    font-size: 32px;
  }
}

.top-mv {
  padding-left: 10vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-mv {
    margin-top: 16px;
    padding-left: 15vw;
  }
}
.top-mv__img {
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-mv__img {
    aspect-ratio: 67/80;
  }
}
@media print, screen and (min-width: 769px) {
  .top-mv__img {
    overflow: hidden;
    transform: translateX(50%);
    transition: all 1.5s cubic-bezier(0.83, 0, 0.17, 1);
  }
  .top-mv__img::before {
    content: "";
    background: #fff;
    width: 130%;
    height: 100%;
    position: absolute;
    right: -15%;
    top: 0;
    transform: skew(-30deg);
    transition: all 1.5s cubic-bezier(0.83, 0, 0.17, 1);
  }
}
.top-mv__img img {
  width: 100%;
  max-height: 46.2vw;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .top-mv__img img {
    max-height: initial;
    height: 100%;
  }
}
.top-mv__copy {
  position: absolute;
  bottom: 15%;
  left: 5.6vw;
}
.top-mv .copy1 {
  display: inline-block;
  position: relative;
}
@media print, screen and (min-width: 769px) {
  .top-mv .copy1 {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 2s cubic-bezier(0, 0, 0.09, 0.98);
  }
}
.top-mv .copy1::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-black);
  width: 100%;
  height: 100%;
  transform: skew(-30deg);
}
.top-mv .copy1-txt {
  display: block;
  padding: 10px 30px;
  font-size: 48px;
  font-family: var(--font-mincho);
  font-weight: 500;
  line-height: 1;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-mv .copy1-txt {
    font-size: 18px;
    padding: 6px 14px;
  }
}
.top-mv .copy2 {
  margin-top: 24px;
  font-size: 64px;
  font-family: var(--font-en);
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
  .top-mv .copy2 {
    margin-top: 8px;
    font-size: 24px;
  }
}
@media print, screen and (min-width: 769px) {
  .top-mv .copy2 {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 2s cubic-bezier(0, 0, 0.09, 0.98);
  }
}
@media print, screen and (min-width: 769px) {
  .top-mv.is-loaded .top-mv__img {
    transform: translateX(0);
    transition-delay: 0s;
  }
  .top-mv.is-loaded .top-mv__img::before {
    transform: skew(-30deg) translateX(100%);
    transition-delay: 0.5s;
  }
  .top-mv.is-loaded .top-mv__copy .copy1 {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1.8s;
  }
  .top-mv.is-loaded .top-mv__copy .copy2 {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 2.4s;
  }
}
.top-mv .line-01 {
  bottom: -50%;
  left: 40%;
}
@media screen and (max-width: 768px) {
  .top-mv .line-01 {
    bottom: -30px;
    left: 30%;
  }
}
.top-mv .line-02 {
  bottom: 90%;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .top-mv .line-02 {
    bottom: 90%;
    left: 60%;
  }
}
.top-mv .line-03 {
  top: 40%;
  left: 75px;
}
@media screen and (max-width: 768px) {
  .top-mv .line-03 {
    top: 20%;
    left: 30px;
  }
}
.top-mv .line-04 {
  bottom: -40px;
  left: 80%;
}
@media screen and (max-width: 768px) {
  .top-mv .line-04 {
    bottom: -25px;
  }
}

.top-about {
  padding: 64px 2.25vw 64px 20vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-about {
    margin-top: 40px;
    padding: 40px 32px;
    background: #fff;
  }
  .top-about::before {
    content: "";
    display: block;
    background: var(--color-bg-blue1);
    transform: skew(-30deg);
    width: 200px;
    height: 400px;
    position: absolute;
    top: -300px;
    right: -140px;
    mix-blend-mode: multiply;
    pointer-events: none;
  }
}
@media print, screen and (min-width: 769px) {
  .top-about__row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 40px;
  }
}
@media print, screen and (min-width: 769px) {
  .top-about__body {
    flex: 1;
    min-width: 280px;
  }
}
@media screen and (max-width: 768px) {
  .top-about__body {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.8;
  }
}
@media print, screen and (min-width: 769px) {
  .top-about__foot {
    position: relative;
    z-index: 1;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .top-about__foot {
    margin-top: 24px;
    text-align: center;
  }
  .top-about__foot .btn-secondary {
    width: 240px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media print, screen and (min-width: 769px) {
  .top-about .top-section-heading .txt-ja span,
  .top-about .top-section-heading .txt-en {
    mix-blend-mode: screen;
  }
}

.top-treatment {
  background: var(--color-bg-blue1);
  padding: 150px 2.25vw 100px 26.67vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-treatment {
    padding: 0;
  }
}
.top-treatment::before {
  content: "";
  display: block;
  background: var(--color-bg-blue1);
  transform: skew(-30deg);
  width: 68%;
  height: 250%;
  position: absolute;
  bottom: 0;
  right: -60%;
  mix-blend-mode: multiply;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .top-treatment::before {
    display: none;
  }
}
.top-treatment__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .top-treatment__container {
    padding-bottom: 80px;
  }
}
@media print, screen and (min-width: 769px) {
  .top-treatment__pic1 {
    position: absolute;
    top: 100px;
    left: 0;
  }
  .top-treatment__pic1 img {
    width: 22vw;
    aspect-ratio: 3/4;
    object-fit: cover;
  }
}
@media screen and (max-width: 768px) {
  .top-treatment__pic1 img {
    width: 100%;
    aspect-ratio: 5/3;
    object-fit: cover;
  }
}
@media print, screen and (min-width: 769px) {
  .top-treatment__pic2 {
    position: absolute;
    top: 300px;
    right: 0;
    width: 25.72vw;
  }
}
@media screen and (max-width: 768px) {
  .top-treatment__pic2 {
    position: relative;
  }
}
.top-treatment__pic2 .pic2-1 {
  width: 100%;
  aspect-ratio: 3/2;
}
@media screen and (max-width: 768px) {
  .top-treatment__pic2 .pic2-1 {
    width: 75%;
    margin-left: auto;
  }
}
.top-treatment__pic2 .pic2-2 {
  width: 13.33vw;
  aspect-ratio: 3/2;
  position: absolute;
  right: 80%;
  top: 80%;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .top-treatment__pic2 .pic2-2 {
    width: 30%;
    right: 60%;
    top: auto;
    bottom: -20%;
  }
}
.top-treatment__main {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top-treatment__main {
    background: var(--color-bg-blue1);
    padding: 24px;
    width: calc(100% - 32px);
    left: 16px;
    position: relative;
    top: -40px;
  }
}
@media print, screen and (min-width: 769px) {
  .top-treatment__main .btn-wrap {
    justify-content: flex-start;
  }
}
.top-treatment__ttl {
  font-family: var(--font-mincho);
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .top-treatment__ttl {
    font-size: 20px;
  }
}
.top-treatment__txt {
  margin-top: 1em;
  font-size: 18px;
  line-height: 1.9;
  max-width: 560px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .top-treatment__txt {
    font-size: 14px;
    line-height: 1.8;
  }
}
.top-treatment__list {
  max-width: 640px;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 1em 0;
}
@media screen and (max-width: 768px) {
  .top-treatment__list {
    margin-top: 24px;
  }
}
.top-treatment__list > li {
  width: 13em;
}
@media screen and (max-width: 768px) {
  .top-treatment__list > li {
    width: 50%;
  }
}
.top-treatment__list > li a {
  text-decoration: none;
}
.top-treatment__list > li a:hover {
  text-decoration: underline;
}
.top-treatment .line-01 {
  top: -50px;
  right: 10%;
}
@media screen and (max-width: 768px) {
  .top-treatment .line-01 {
    top: -20px;
    right: 85%;
  }
}
.top-treatment .line-02 {
  bottom: -110px;
  right: 32px;
}
@media screen and (max-width: 768px) {
  .top-treatment .line-02 {
    bottom: auto;
    right: auto;
    top: 30vw;
    left: 10%;
  }
}
.top-treatment .line-03 {
  top: -80px;
  left: 70%;
}
@media screen and (max-width: 768px) {
  .top-treatment .line-03 {
    top: auto;
    bottom: 50vw;
    left: 20%;
  }
}

.top-special {
  position: relative;
  padding: 260px 0 200px;
}
@media screen and (max-width: 768px) {
  .top-special {
    padding: 160px 0 100px;
  }
}
.top-special__particles {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
.top-special__heading {
  position: absolute;
  top: 160px;
  left: 10%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .top-special__heading {
    top: 100px;
    left: 16px;
  }
}
.top-special__heading-ttl {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .top-special__heading-ttl {
    gap: 5px;
  }
}
.top-special__heading-ttl span {
  background: var(--color-black);
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  padding: 12px 16px;
}
@media screen and (max-width: 768px) {
  .top-special__heading-ttl span {
    font-size: 18px;
    padding: 6px 8px;
  }
}
.top-special__typo {
  font-size: 120px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  color: #E1E1E1;
  white-space: nowrap;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 120px;
}
@media screen and (max-width: 768px) {
  .top-special__typo {
    font-size: 60px;
    top: 30px;
  }
}
.top-special__list {
  position: relative;
}
@media print, screen and (min-width: 769px) {
  .top-special__list {
    display: flex;
    margin: 0 -10vw;
  }
}
@media print, screen and (min-width: 769px) {
  .top-special__card {
    transform: skewX(-30deg);
    flex-shrink: 0;
    overflow: hidden;
    min-height: 400px;
  }
  .top-special__card:nth-child(1) {
    width: 35%;
    padding-left: 8.5%;
  }
  .top-special__card:nth-child(2) {
    width: 30%;
  }
  .top-special__card:nth-child(3) {
    width: 35%;
    padding-right: 8.5%;
  }
}
.top-special__card-link {
  display: block;
  width: 100%;
  height: 100%;
}
@media print, screen and (min-width: 769px) {
  .top-special__card-link {
    transform: skewX(30deg);
  }
  .top-special__card-link:hover img {
    opacity: 0.9;
  }
}
@media screen and (max-width: 768px) {
  .top-special__card-link {
    position: relative;
  }
}
@media print, screen and (min-width: 769px) {
  .top-special__card-img {
    transform: scale(1.65);
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .top-special__card-img {
    aspect-ratio: 3/2;
  }
}
.top-special__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s;
}
.top-special__card-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  color: #fff;
  text-align: center;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 768px) {
  .top-special__card-txt {
    width: 80%;
    padding-top: 16px;
  }
}
.top-special__card-txt .ttl {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .top-special__card-txt .ttl {
    font-size: 24px;
  }
}
.top-special__card-txt .txt {
  margin-top: 1em;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .top-special__card-txt .txt {
    font-size: 14px;
  }
}
.top-special__card-txt .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 20px auto 0;
}
@media screen and (max-width: 768px) {
  .top-special__card-txt .icon {
    margin-top: 0;
    transform: scale(0.7);
  }
}
.top-special__card-txt .icon::before {
  content: "\e5cc";
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-size: 24px;
}
.top-special .line-01 {
  top: -100px;
  left: -80px;
}
@media screen and (max-width: 768px) {
  .top-special .line-01 {
    top: -120px;
    left: 20px;
  }
}
.top-special .line-02 {
  top: -50px;
  right: -50px;
}
@media screen and (max-width: 768px) {
  .top-special .line-02 {
    top: 27px;
    right: 20px;
  }
}
.top-special .line-03 {
  bottom: -50px;
  right: 20%;
}
@media screen and (max-width: 768px) {
  .top-special .line-03 {
    bottom: -30px;
    right: 10%;
  }
}

.top-medical {
  background: #fff;
  position: relative;
}
.top-medical__container {
  position: relative;
}
@media print, screen and (min-width: 769px) {
  .top-medical__container {
    padding: 80px 0 120px 0;
    display: flex;
  }
}
.top-medical__img {
  flex: 1;
  position: relative;
  z-index: 2;
}
@media print, screen and (min-width: 769px) {
  .top-medical__img img {
    transform: scale(1.15);
    transform-origin: 0;
  }
}
@media screen and (max-width: 768px) {
  .top-medical__img img {
    position: relative;
    top: 32px;
    right: 10%;
  }
}
@media print, screen and (min-width: 769px) {
  .top-medical__desc {
    flex: 1;
    position: relative;
    padding-right: 2.25vw;
  }
}
.top-medical__desc-bg {
  width: 100%;
  height: 100%;
  background: var(--color-bg-blue1);
  position: absolute;
  top: -80px;
  left: -30%;
  width: 200%;
  height: calc(100% + 80px + 120px);
  transform: skew(-30deg);
}
@media screen and (max-width: 768px) {
  .top-medical__desc-bg {
    top: 0;
    left: 20%;
    width: 150%;
    height: 100%;
  }
}
.top-medical__desc-wrap {
  position: relative;
  max-width: 640px;
  padding-left: 4vw;
}
@media screen and (max-width: 768px) {
  .top-medical__desc-wrap {
    padding: 0 32px 64px;
  }
}
.top-medical__lead {
  margin-top: 56px;
  font-family: var(--font-mincho);
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .top-medical__lead {
    margin-top: 24px;
    font-size: 20px;
  }
}
.top-medical__txt {
  margin-top: 1.5em;
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .top-medical__txt {
    font-size: 14px;
    line-height: 1.8;
  }
}
.top-medical .top-section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .top-medical .top-section-heading {
    position: relative;
    z-index: 10;
  }
}
.top-medical .btn-wrap {
  margin-top: 40px;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .top-medical .btn-wrap {
    margin-top: 24px;
    justify-content: center;
  }
}
.top-medical .line-01 {
  top: -100px;
  left: 40%;
}
@media screen and (max-width: 768px) {
  .top-medical .line-01 {
    top: -40px;
    left: 30%;
  }
}
.top-medical .line-02 {
  top: -50px;
  left: 45%;
}
@media screen and (max-width: 768px) {
  .top-medical .line-02 {
    top: 0px;
    left: 36%;
  }
}
.top-medical .line-03 {
  bottom: -50px;
  right: 20%;
}
@media screen and (max-width: 768px) {
  .top-medical .line-03 {
    bottom: -60px;
    right: 15%;
  }
}

.top-news {
  background: #fff;
  padding: 120px 2.25vw 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-news {
    padding: 56px 24px;
  }
}
@media print, screen and (min-width: 769px) {
  .top-news__row {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
  }
}
@media print, screen and (min-width: 769px) {
  .top-news__head {
    width: 280px;
  }
}
@media screen and (max-width: 768px) {
  .top-news__head {
    margin-bottom: 24px;
  }
}
@media print, screen and (min-width: 769px) {
  .top-news__body {
    width: calc(100% - 280px);
  }
}
.top-news__foot {
  margin-top: 16px;
  width: 100%;
}
.top-news .line-01 {
  bottom: 100px;
  right: 10%;
}
@media screen and (max-width: 768px) {
  .top-news .line-01 {
    bottom: 0;
    right: 20%;
  }
}
.top-news .line-02 {
  bottom: 0;
  right: 5%;
}
@media screen and (max-width: 768px) {
  .top-news .line-02 {
    bottom: -50px;
    right: 20px;
  }
}

/*# sourceMappingURL=style.css.map */