@charset "UTF-8";
/* ==============================================================
*  reset
* ============================================================ */
*,::before,::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:where(html) {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}
:where(a) {
  text-decoration: none;
}
:where(svg, video, canvas, audio, iframe, embed, object) {
	display: block;
}
:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
  vertical-align: bottom;
}
:where(svg) {
  fill: currentColor;
  stroke: none;
}
:where(ul, ol) {
  list-style: none;
}
:where(table) {
  border-collapse: collapse;
}
:where(hr) {
  block-size: 0;
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  overflow: visible;
}
:where(input) {
  border-radius: 0;
}
:where(input[type="text"], textarea) {
  padding: 0 2px;
}
:where(button, label, select, summary) {
  cursor: pointer;
}
:where(button, input, textarea, select) {
  border: 1px solid;
  font: inherit;
}
:where(button) {
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  appearance: none;
}
:where(textarea) {
  overflow: auto;
  resize: vertical;
  user-select: auto;
}
:where([disabled]) {
  cursor: default;
}
:where([hidden]) {
  display: none;
}

/* ==============================================================
*  base
* ============================================================ */
:root {
  --color-black: #1B1A1E;
  --color-white: #FFF;
  --txt-color-main: #222;
  --txt-color-sub: #FFF;
  --link-color-main: #DDBFF3;
  --link-color-sub: #541B86;
  --link-color-hover: #bb00bb;
  --header-height-pc: 110px;
  --header-height-sp: 105px;
  --font-family-serif: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

html {
  line-height: 1.5;
  box-sizing: border-box;
}

body {
  color: var(--txt-color-main);
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  font-kerning: normal;
}

@media screen and (max-width: 768px) {
  body {
    font-size: max(4.26vw,16px);
  }
}


/* ==============================================================
*  common
* ============================================================ */
/* ---------- header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: var(--header-height-pc);
  background-color: #FFF;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .05);
}
@media screen and (max-width: 1023px) {
  .header {
    height: var(--header-height-sp);
  }
}

.header::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  height: calc(100vh - var(--header-height-pc));
  background-color: rgba(0,0,0,.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s;
  content: "";
}
@media screen and (max-width: 1023px) {
  .header::after {
    display: none;
  }
}

.header.is-openPc::after {
  opacity: 1;
  visibility: visible;
}

.header-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-areas: "a b c";
  grid-template-columns: 282px 1fr 220px;
  width: 100%;
  height: 100%;
  padding-left: 55px;
}
@media screen and (max-width: 1400px) {
  .header-inner {
    grid-template-areas: "b c";
    grid-template-columns: 1fr min(17.57vw,220px);
    padding-left: max(2.16vw,17px);
  }
}
@media screen and (max-width: 1023px) {
  .header-inner {
    grid-template-columns: 1fr 65px;
  }
}
@media screen and (max-width: 1023px) {
  .header-inner {
    gap: 0 1px;
    grid-template-areas: "a c d";
    grid-template-columns: 1fr 65px 65px;
    padding-top: 40px;
    padding-left: 17px;
  }
}

.header-logo {
  grid-area: a;
  display: flex;
  align-items: center;
  padding: 17px 0;
  line-height: 1;
}
@media screen and (max-width: 1400px) {
  .header-logo {
    position: absolute;
    top: 24px;
    left: max(2.16vw,17px);
    padding: 0;
  }
}
@media screen and (max-width: 1023px) {
  .header-logo {
    position: static;
    width: 47.73vw;
  }
}

.header-nav {
  grid-area: b;
  margin-right: 20px;
}
@media screen and (max-width: 1023px) {
  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    translate: 100% 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: calc(100dvh - var(--header-height-sp));
    border-top: 1px solid #E1E1E1;
/*    background-color: #fff;*/
    background-color: rgba(0,0,0,.4);
    opacity: 0;
    overflow-y: auto;
    transition: translate .3s, opacity .3s;
  }
}

@media screen and (max-width: 1023px) {
  .is-openSp .header-nav {
    translate: 0 0;
    opacity: 1;
    margin: 0;
  }
}

@media screen and (max-width: 1023px) {
  .header-navInner {
    height: auto;
    padding-bottom: 70px;
    background-color: #FFF;
  }
}

/*@media screen and (max-width: 1023px) {
  .is-open .header-nav {
    opacity: 1;
    translate: 0 0;
  }
}*/

.siteNav {
  padding-top: 25px;
}
@media screen and (max-width: 1023px) {
  .siteNav {
    display: none;
    padding-top: 32px;
  }
}

@media screen and (max-width: 1023px) {
  .is-openSp .siteNav {
    display: block;
  }
}

.siteNav-list {
  display: flex;
  gap: 15px;
  justify-content: end;
}
@media screen and (max-width: 1023px) {
  .siteNav-list {
    display: block;
    padding: 0 20px;
    font-size: initial;
  }
}

@media screen and (max-width: 1023px) {
  .siteNav-item:first-child {
    display: none;
  }
}

.siteNav-link {
  position: relative;
  padding-left: 21px;
  color: #1E295E;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  text-decoration: underline;
}

.siteNav-link:hover {
  text-decoration: none;
}

.siteNav-link::before {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  display: block;
  width: 16px;
  height: auto;
  aspect-ratio: 1;
  background: url(/assets/img/icn_lang.svg) no-repeat center/cover;
  content: "";
}

.siteSearch {
  position: relative;
}

.siteSearch-search {
  padding: 7px 30px 6px 10px;
  border: 1px solid #D7D7D7;
  border-radius: 9999px;
  background-color: #E9E9E9;
  color: #717171;
  font-size: 13px;
  line-height: 1.2;
}
@media screen and (max-width: 1023px) {
  .siteSearch-search {
    width: 100%;
    padding: 10px 30px 10px 10px;
    border-radius: 4px;
    font-size: 15px;
  }
}

.siteSearch-btn {
  position: absolute;
  top: 50%;
  right: 12px;
  translate: 0 -50%;
  display: block;
  width: 18px;
  height: auto;
  aspect-ratio: 1;
  padding: 2px;
  border: none;
  background: transparent;
}
@media screen and (max-width: 1023px) {
  .siteSearch-btn {
    width: 30px;
    padding: 5px;
  }
}

.nav {
  margin-top: 14px;
}
@media screen and (max-width: 1023px) {
  .nav {
    display: none;
/*    padding-bottom: 70px;*/
  }
}

@media screen and (max-width: 1023px) {
  .is-openSp .nav {
    display: block;
  }
}

.nav-list {
  display: flex;
  gap: 24px;
  justify-content: end;
}
@media screen and (max-width: 1023px) {
  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
    font-size: initial;
  }
}

@media screen and (max-width: 1023px) {
  .nav-item {
    border-bottom: 1px solid #C5D9DD;
  }
}

.nav-link {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  transition: color .3s;
}
@media screen and (max-width: 1023px) {
  .nav-link {
    display: block;
    width: 100%;
    padding: 30px 0;
    font-size: 18px;
    text-align: left;
  }
}

.nav-link[aria-expanded="true"] {
  color: #3A93BA;
}

.nav-link span {
  position: relative;
  padding-right: 15px;
}
@media screen and (max-width: 1023px) {
  .nav-link span {
    display: inline-block;
    width: 100%;
    padding-right: 32px;
    color: #333;
  }
}

@media screen and (max-width: 1023px) {
  .nav-link span::before {
    position: absolute;
    top: 50%;
    right: 8px;
    translate: 0 -50%;
    width: 16px;
    height: 2px;
    background-color: #3A93BA;
    content: "";
  }
}

.nav-link span::after {
  position: absolute;
  top: 50%;
  right: 0;
  rotate: 45deg;
  translate: 0 -50%;
  width: 8px;
  height: auto;
  aspect-ratio: 1;
  border-right: 2px solid #222;
  border-bottom: 2px solid #222;
  content: "";
}
@media screen and (max-width: 1023px) {
  .nav-link span::after {
    right: 8px;
    rotate: 90deg;
    width: 16px;
    height: 2px;
    border: none;
    background-color: #3A93BA;
    transition: rotate .3s ease-out;
  }
}

@media screen and (max-width: 1023px) {
  .nav-link[aria-expanded="true"] span::after {
    rotate: 180deg;
  }
}

@media screen and (max-width: 1023px) {
  .nav-link[href] {
    position: relative;
    padding-right: 40px;
  }
}

@media screen and (max-width: 1023px) {
  .nav-link[href]::after {
    position: absolute;
    top: 50%;
    right: 13px;
    translate: 0 -50%;
    display: block;
    width: 16px;
    height: auto;
    aspect-ratio: 14/12;
    background: url(/assets/img/icn_arrow_right.svg) no-repeat center/cover;
    content: "";
  }
}

.megaMenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-top: 1px solid #C5D9DD;
  background-color: #FFF;
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, .05);
}
@media screen and (max-width: 1023px) {
  .megaMenu {
    position: static;
    box-shadow: none;
  }
}

.megaMenu[aria-hidden="true"] {
  display: none;
}

.megaMenu-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px 20px;
}
@media screen and (max-width: 1023px) {
  .megaMenu-inner {
    padding: 0;
  }
}

.megaMenu-header {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid #C5D9DD;
}
@media screen and (max-width: 1023px) {
  .megaMenu-header {
    display: none;
  }
}

.megamenu-ttl {
  color: #222;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33;
}

.megamenu-ttl:hover {
  text-decoration: underline;
}

.megamenu-ttl span {
  position: relative;
  padding-right: 28px;
}

.megamenu-ttl span::after {
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  display: block;
  width: 16px;
  height: auto;
  aspect-ratio: 16/14;
  background: url(/assets/img/icn_arrow_right.svg) no-repeat center/cover;
  content: "";
}

.megaMenu-body {
  display: grid;
  gap: 0 60px;
  grid-template-columns: 300px 1fr;
  margin-top: 30px;
}
@media screen and (max-width: 1400px) {
  .megaMenu-body {
    grid-template-columns: 220px 1fr;
    gap: 40px;
  }
}
@media screen and (max-width: 1023px) {
  .megaMenu-body {
    gap: 40px;
    grid-template-columns: 100%;
    margin-top: 0;
    padding: 18px 18px 0;
    background-color: #F3F3E4;
  }
}

.megaMenuCards-list {
  display: grid;
  grid-template-columns: 100%;
  gap: 15px;
}
@media screen and (max-width: 1023px) {
  .megaMenuCards-list {
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(244px,1fr));
    text-align: center;
  }
}

.megaMenuCard {
  display: block;
}
@media screen and (max-width: 1023px) {
  .megaMenuCard {
    display: inline-block;
  }
}

.megaMenuCard div {
  overflow: hidden;
}

.megaMenuCard img {
  transition: scale .3s ease-out;
}

.megaMenuCard:hover img {
  scale: 1.05;
}

.megaMenuCard p {
  position: relative;
  margin-top: 5px;
  padding-right: 28px;
  color: #222;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
}

.megaMenuCard:hover p {
  text-decoration: underline;
}

.megaMenuCard p::after {
  position: absolute;
  top: 50%;
  right: 8px;
  translate: 0 -50%;
  display: block;
  width: 10px;
  height: auto;
  aspect-ratio: 10/9;
  background: url(/assets/img/icn_arrow_right.svg) no-repeat center/cover;
  content: "";
}
@media screen and (max-width: 1023px) {
  .megaMenuCard p::after {
    width: 16px;
  }
}

.megaMenuNav {
  display: grid;
  gap: 30px 60px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1400px) {
  .megaMenuNav {
    gap: 0 4.28vw;
  }
}
@media screen and (max-width: 1023px) {
  .megaMenuNav {
    grid-template-columns: 100%;
    gap: 0;
  }
}

.megaMenuNav-link {
  position: relative;
  display: block;
  padding: 10px 35px 10px 0;
  border-bottom: 1px solid #C5D9DD;
  color: #222;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .megaMenuNav-link {
    padding: 17px 40px 17px 0;
    font-size: 15px;
  }
}

.megaMenuNav-link::after {
  position: absolute;
  top: 50%;
  right: 13px;
  translate: 0 -50%;
  display: block;
  width: 14px;
  height: auto;
  aspect-ratio: 14/12;
  background: url(/assets/img/icn_arrow_right.svg) no-repeat center/cover;
  transition: right .3s ease-out;
  content: "";
}
@media screen and (max-width: 1023px) {
  .megaMenuNav-link::after {
    right: 8px;
    width: 16px;
  }
}

.megaMenuNav-link:hover::after {
  right: 8px;
}

@media screen and (min-width: 769px) {
  html[lang="en"] ._first .megaMenuNav-link::after {
    top: calc(50% - 5px);
  }

  html[lang="en"] .megaMenuNav-link {
    height: 59px;
    display: flex;
    align-items: center;
  }
}

/*.megaMenuNav .megaMenuNav-item:first-child .megaMenuNav-link,*/
._first .megaMenuNav-link {
  padding-top: 0;
}
@media screen and (max-width: 1023px) {
/*  .megaMenuNav .megaMenuNav-item:first-child .megaMenuNav-link,*/
  ._first .megaMenuNav-link {
    padding-top: 20px;
  }
}

@media screen and (max-width: 1023px) {
  .megaMenuNav .megaMenuNav-list:first-child .megaMenuNav-item:first-child .megaMenuNav-link {
    border-top: 1px solid #C5D9DD;
  }
}

/*.megaMenuNav .megaMenuNav-item:first-child .megaMenuNav-link::after,*/
._first .megaMenuNav-link::after {
  top: calc(50% - 10px);
}
@media screen and (max-width: 1023px) {
/*  .megaMenuNav .megaMenuNav-item:first-child .megaMenuNav-link::after,*/
  ._first .megaMenuNav-link::after {
    top: 50%;
  }
}

.megaMenuCards .megaMenuNav-list {
  margin-top: 40px;
}

.megaMenuNav-btn {
  display: none;
}
@media screen and (max-width: 1023px) {
  .megaMenuNav-btn {
    display: block;
    width: 100%;
    padding: 15px 0;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
  }
  
  .megaMenuNav .megaMenuNav-list:last-child .megaMenuNav-link {
    border-bottom: none;
    color: #333;
  }

  .no-border-bottom.megaMenuNav-item:has(.megaMenuNav-btn[aria-expanded="true"]),
  .no-border-bottom .megaMenuNav-btn[aria-expanded="false"],
  .megaMenuNav .megaMenuNav-list .no-border-bottom {
    border-bottom: none;
  }

  html[lang="en"] .megaMenuNav .megaMenuNav-list:last-child .megaMenuNav-link {
    border-bottom: 1px solid #C5D9DD;
  }

  html[lang="en"] .megaMenuNav .megaMenuNav-list:last-child .megaMenuNav-item:last-child .megaMenuNav-link {
    border-bottom: none;
  }

  .megaMenuNav-btn[aria-expanded="false"] {
    border-bottom: 1px solid #C5D9DD;
  }
  .megaMenuNav-item:has(.megaMenuNav-btn[aria-expanded="true"]) {
    border-bottom: 1px solid #C5D9DD;
  }
  
  .megaMenuNav .megaMenuNav-list:last-child li:last-child .megaMenuNav-btn {
    border-bottom: none;
  }
}

@media screen and (max-width: 1023px) {
  .megaMenuNav-btn span {
    position: relative;
    display: inline-block;
    width: 100%;
    padding-right: 32px;
    color: #333;
  }
}

@media screen and (max-width: 1023px) {
  .megaMenuNav-btn span::before {
    position: absolute;
    top: 50%;
    right: 8px;
    translate: 0 -50%;
    width: 16px;
    height: 2px;
    background-color: #3A93BA;
    content: "";
  }
}

@media screen and (max-width: 1023px) {
  .megaMenuNav-btn span::after {
    position: absolute;
    top: 50%;
    right: 8px;
    rotate: 90deg;
    translate: 0 -50%;
    width: 16px;
    height: 2px;
    background-color: #3A93BA;
    transition: rotate .3s ease-out;
    content: "";
  }
}

@media screen and (max-width: 1023px) {
  .megaMenuNav-btn[aria-expanded="true"] span::after {
    rotate: 180deg;
  }
}

.megaMenuNavLower {
  margin-top: 10px;
}
@media screen and (max-width: 1023px) {
  .megaMenuNavLower {
    margin-top: 0;
    padding-bottom: 18px;
  }
}

@media screen and (max-width: 1023px) {
  .megaMenuNavLower[aria-hidden="true"] {
    display: none;
  }
}

.megaMenuNavLower-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (max-width: 1023px) {
  .megaMenuNavLower-list {
    margin-top: 20px;
  }
}

.megaMenuNavLower-item:first-child {
  display: none;
}
@media screen and (max-width: 1023px) {
  .megaMenuNavLower-item:first-child {
    display: inline-block;
  }
}

.megaMenuNavLower-link {
  position: relative;
  display: inline-block;
  padding-left: 23px;
  color: #222;
  font-size: 16px;
}

.megaMenuNavLower-link:hover {
  text-decoration: underline;
}

.megaMenuNavLower-link::before {
  position: absolute;
  top: 50%;
  left: 5px;
  translate: 0 -50%;
  display: block;
  width: 10px;
  height: auto;
  aspect-ratio: 10/9;
  background-color: #839BA0;
  mask: url(/assets/img/icn_arrow_right.svg) no-repeat center/cover;
  content: "";
}

.header-spBtn {
  display: none;
  grid-area: d;
  width: 65px;
  height: auto;
  aspect-ratio: 1;
  background-color: #1E295E;
}
@media screen and (max-width: 1023px) {
  .header-spBtn {
    display: flex;
  }
}

.spBtn {
  position: relative;
  width: 100%;
  height: 100%;
  border: none;
  background-color: transparent;
  font-size: initial;
  appearance: none;
}

.spBtn::before,
.spBtn::after {
  position: absolute;
  left: 50%;
  transform-origin: center;
  translate: -50% 0;
  transform-origin: left center;
  width: 32px;
  height: 1px;
  background-color: #FFF;
  border-radius: 1px;
  transition: rotate .2s, top .2s;
  content: "";
}

.spBtn::before {
  top: 21px;
}

.spBtn::after {
  top: 28px;
}

.spBtn span {
  translate: 0 8px;
  display: inline-block;
  margin-top: 5px;
  color: #FFF;
  font-family: 'Bellefair';
  font-size: 11px;
}

.is-openSp .spBtn::before {
  top: 17px;
  rotate: 26deg;
}

.is-openSp .spBtn::after {
  top: 31px;
  rotate: -26deg;
}

.header-store {
  grid-area: c;
}
@media screen and (max-width: 1023px) {
  .header-store {
    height: auto;
    aspect-ratio: 1;
  }
}

.storeLink {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #1E295E;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  transition: background .3s ease-out;
}
@media screen and (max-width: 1023px) {
  .storeLink {
    position: relative;
  }
}

@media screen and (min-width: 1024px) {
  .storeLink:hover {
    background-color: #3A93BA;
  }
}

@media screen and (max-width: 1023px) {
  .storeLink::after {
    position: absolute;
    inset: 0;
    width: 30px;
    height: auto;
    aspect-ratio: 30/32;
    margin: auto;
    background-color: #FFF;
    mask: url(/assets/img/icn_store.svg) no-repeat center/cover;
    content: "";
  }
}

.storeLink span {
  position: relative;
  padding-right: 25px;
}
@media screen and (max-width: 1023px) {
  .storeLink span {
    padding: 0;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
  }
}

.storeLink span::after {
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  display: block;
  width: 16px;
  height: auto;
  aspect-ratio: 1;
  background-color: #FFF;
  mask: url(/assets/img/icn_blank.svg) no-repeat center/cover;
  transition: background .3s ease-out;
  content: "";
}
@media screen and (max-width: 1023px) {
  .storeLink span::after {
    display: none;
  }
}

.siteNavSp {
  display: none;
}
@media screen and (max-width: 1023px) {
  .siteNavSp {
    display: block;
  }
}

@media screen and (max-width: 1023px) {
  .siteNavSp-item {
    margin-top: 27px;
    text-align: center;
  }
}

@media screen and (max-width: 1023px) {
  .siteNavSp-en {
    position: relative;
    padding-left: 25px;
    color: #1E295E;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    text-decoration: underline;
  }
}

@media screen and (max-width: 1023px) {
  .siteNavSp-en::before {
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    display: block;
    width: 18px;
    height: auto;
    aspect-ratio: 1;
    background: url(/assets/img/icn_lang.svg) no-repeat center/cover;
    content: "";
  }
}

@media screen and (max-width: 1023px) {
  .siteNavSp-contact {
    display: block;
    width: 300px;
    margin: 0 auto;
    padding: 15px 10px;
    border-radius: 9999px;
    background-color: #3A93BA;
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
  }
}

@media screen and (min-width: 1024px) {
  .hiddenPc-header {
    display: none !important;
  }
}

@media screen and (max-width: 1023px) {
  .hiddenSp-header {
    display: none !important;
  }
}

/* ---------- footer ---------- */
.footer {
  position: relative;
  background-color: #ccc;
}

.footer-top {
  margin-bottom: -20px;
  padding: 0 20px;
  background: url(/assets/img/img_footer_bg.jpg) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .footer-top {
    
  }
}

html[lang="en"] .footer-top {
  margin-bottom: -70px;
  background-position-y: 0;
}

.footer-bottom {
  padding: 240px 0 110px;
  background-color: #1E295E;
}
@media screen and (max-width: 768px) {
  .footer-bottom {
    padding: 29.33vw 0 10.66vw;
  }
}

.footer-inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .footer-inner {
    
  }
}

.footerContact {
  translate: 0 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 min(7.6vw,76px);
  max-width: 1000px;
  margin: 0 auto;
  padding: 55px 30px;
  background-color: #FFF;
}
@media screen and (max-width: 768px) {
  .footerContact {
    translate: 0 10.66vw;
    flex-direction: column;
    gap: 7.46vw 0;
    padding: 9.86vw 8vw 8.53vw;
  }
}

.footerContact-ttl {
  margin-left: -5%;
  color: #1E295E;
  font-family: 'Bellefair';
  font-size: min(7vw,70px);
  line-height: 1.14;
}
@media screen and (max-width: 768px) {
  .footerContact-ttl {
    font-size: 12.8vw;
  }
}

.footerContact-ttl:first-letter {
  color: #3A93BA;
}

.footerContact-list {
  display: flex;
  flex-direction: column;
  gap: 27px 0;
}
@media screen and (max-width: 768px) {
  .footerContact-list {
    gap: 3.2vw 0;
    width: 100%;
  }
}

.footerContact-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 293px;
  padding: 12px 36px;
  border: 1px solid #222;
  border-radius: 9999px;
  background-color: #FFF;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .footerContact-link {
    display: block;
    width: 100%;
    padding: 3.2vw 9.6vw;
    font-size: 4.26vw;
    text-align: center;
  }
}

.footerContact-link::after {
  position: absolute;
  top: 50%;
  right: 18px;
  translate: 0 -50%;
  display: block;
  width: 12px;
  height: auto;
  aspect-ratio: 12/11;
  background: #3A93BA;
  mask: url(/assets/img/icn_arrow_right.svg) no-repeat center/cover;
  transition: right .3s ease-out;
  content: "";
}
@media screen and (max-width: 768px) {
  .footerContact-link::after {
    right: 3.46vw;
    width: 3.2vw;
  }
}

.footerContact-link:hover::after {
  right: 13px;
}

.footerNav-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5,1fr);
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .footerNav-list {
    gap: 0;
    grid-template-columns: 100%;
  }
}

@media screen and (max-width: 768px) {
  .footerNav-list a::before {
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 0;
    height: 1px;
    background-color: #333;
    transition: all .3s;
    content: "";
  }
}

@media screen and (max-width: 768px) {
  .footerNav-list a:hover::before {
    width: 100%;
  }
}

.footerNav-list div + div {
  margin-top: 18px;
}
@media screen and (max-width: 768px) {
  .footerNav-list div + div {
    margin-top: 0;
  }
}

.footerNav-link {
  color: #FFF;
  font-size: min(1.95vw,16px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .footerNav-link {
    position: relative;
    display: block;
    padding: 3.73vw 5.86vw 3.73vw 0;
    border-bottom: 1px solid #92A1B2;
    font-size: 4.26vw;
  }
}

.footerNav-link:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .footerNav-link::after {
    position: absolute;
    top: 50%;
    right: 1.06vw;
    translate: 0 -50%;
    display: block;
    width: 3.46vw;
    height: auto;
    aspect-ratio: 13/10;
    background: #FFF;
    mask: url(/assets/img/icn_arrow_right.svg) no-repeat center/cover;
    content: "";
  }
}

.footerNavLower-list {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  margin-top: 13px;
}
@media screen and (max-width: 768px) {
  .footerNavLower-list {
    display: none;
  }
}

div + .footerNavLower-list {
  margin-top: 38px;
}
@media screen and (max-width: 768px) {
  div + .footerNavLower-list {
    display: flex;
    gap: 1.86vw 0;
    margin-top: 7.19vw;
  }
}

.footerNavLower-link {
  color: #92A1B2;
  font-size: min(1.56vw,14px);
  line-height: 1.28;
}
@media screen and (max-width: 768px) {
  .footerNavLower-link {
    font-size: 3.73vw;
  }
}

.footerNavLower-link:hover {
  text-decoration: underline;
}

.footerCopy {
  display: block;
  width: 100%;
  padding: 11px 0;
  background-color: #FFF;
  text-align: center;
}
.footerCopy small {
  color: #222;
}
@media screen and (max-width: 768px) {
  .footerCopy small {
    font-size: 3.2vw;
  }
}

#english-footer .footer-bottom {
  padding: 110px 0;
}


.pageTopWrap {
  position: fixed;
  right: max(calc(50% - 44vw), calc(50% - 600px));
  bottom: 100px;
  translate: 50% 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
@media screen and (max-width: 768px) {
  .pageTopWrap {
    right: 40px;
    bottom: 16px;
  }
}

.pageTopWrap.is-show {
  opacity: 1;
  visibility: visible;
}

/*.pageTopWrap.is-absolute {
  position: absolute;
  top: -110px;
  bottom: auto;
}
@media screen and (max-width: 768px) {
  .pageTopWrap.is-absolute {
    top: -16vw;
  }
}*/

.pageTop {
  position: relative;
  display: block;
  width: 50px;
  height: auto;
  aspect-ratio: 1;
  border: 1px solid #3A93BA;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  transition: background .3s;
}
@media screen and (max-width: 768px) {
  .pageTop {
    width: 50px;
  }
}

.pageTop:hover {
  background-color: #3A93BA;
}

.pageTop::after {
  position: absolute;
  top: calc(50% + 3px);
  left: 50%;
  transform: translate(-50%,-50%) rotate(-45deg);
  width: 13px;
  border-top: 3px solid #3A93BA;
  border-right: 3px solid #3A93BA;
  aspect-ratio: 1;
  transition: border .3s ease-out;
  content: "";
}
@media screen and (max-width: 768px) {
  .pageTop::after {
    width: 14px;
  }
}

.pageTop:hover::after {
  border-color: #FFF;
}


/* ---------- contents ---------- */
.container {
  padding-top: var(--header-height-pc);
}
@media screen and (max-width: 1023px) {
  .container {
    padding-top: var(--header-height-sp);
  }
}

.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0.6rem 20px;
}
@media screen and (max-width: 768px) {
  .breadcrumbs-list {
    width: 100%;
  }
}

.breadcrumbs-item {
  position: relative;
  font-size: 14px;
  color: #4F453E;
}

.breadcrumbs-item:not(:first-of-type) {
  padding-left: 2em;
}

.breadcrumbs-item:not(:first-of-type)::before {
  position: absolute;
  top: 50%;
  left: 0.8em;
  transform: translateY(-50%);
  display: block;
  content: ">";
}

.breadcrumbs-link {
  color: #4F453E;
  text-decoration: underline;
}

.section {
  overflow-x: hidden;
}

.section-inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .section-inner {
    padding: 0 5.33vw;
  }
}


/* ==============================================================
*  parts
* ============================================================ */
/* ---------- heading ---------- */
.pageHeadVisual {
  position: relative;
  height: 315px;
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .pageHeadVisual {
    height: 360px;
    margin-bottom: 14.39vw;
  }
}

.pageHeadVisual-ttl {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  
}

.pageHeadVisual-jp {
  color: #FFF;
  font-size: 40px;
  font-weight: 700;
  text-shadow: 0px 3px 3.7563px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .pageHeadVisual-jp {
    font-size: 8.53vw;
  }
}

.pageHeadVisual-en {
  color: #FFF;
  font-family: "Bellefair";
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .pageHeadVisual-en {
    font-size: 4.26vw;
  }
}

.pageHeadVisual-img {
  width: 100%;
  height: 100%;
}

.pageHeadVisual-img img {
  width: 100vw;
  height: 315px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .pageHeadVisual-img img {
    height: 360px;
  }
}

.pageHead {
  margin-bottom: 56px;
  padding: 38px 0;
  background: linear-gradient(90deg, #358CC3 0%, #7ABBF3 100%), linear-gradient(90deg, #3786BE 0%, #9BC8E9 100%);
}
@media screen and (max-width: 768px) {
  .pageHead {
    margin-bottom: 14.93vw;
    padding: 8.53vw 0;
  }
}

.pageHead-inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .pageHead-inner {
    padding: 0 5.33vw;
  }
}

.pageHead-ttl {
  color: #FFF;
  font-size: 32px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .pageHead-ttl {
    font-size: 6.93vw;
  }
}

.heading-h2 {
  position: relative;
  margin: 64px 0 48px;
  padding-bottom: 18px;
  border-bottom: 1px solid #A6BCC5;
  color: #041E34;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .heading-h2 {
    margin: 17.06vw 0 8.53vw;
    padding-bottom: 4.26vw;
    font-size: 6.4vw;
    line-height: 1.16;
  }
}

.heading-h2::before {
  position: absolute;
  bottom: -1px;
  left: 0;
  display: block; 
  width: 300px;
  height: 2px;
  background-color: #3A93BA;
  content: "";
}
@media screen and (max-width: 768px) {
  .heading-h2::before {
    width: 17.06vw;
  }
}

.heading-h2._center {
  text-align: center;
}

.heading-h2._center::before {
  left: 50%;
  translate: -50% 0;
}

.heading-h3 {
  margin: 64px 0 40px;
  padding-left: 20px;
  border-left: 4px solid #3A93BA;
  color: #031829;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .heading-h3 {
    margin: 17.06vw 0 8.53vw;
    padding-left: 5.33vw;
    border-left-width: 1.06vw;
    font-size: 5.33vw;
  }
}

.heading-h3._center {
  padding: 0;
  border: none;
  text-align: center;
}

.heading-h4 {
  position: relative;
  margin: 64px 0 8px;
  padding: 4px 0 4px 18px;
  color: #031829;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2; 
}
@media screen and (max-width: 768px) {
  .heading-h4 {
    margin: 4.26vw 0 0;
    padding: 2.66vw 0 2.66vw 4.8vw;
    font-size: 5.86vw;
  }
}

.heading-h4::before {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  display: block;
  width: 10px;
  height: auto;
  aspect-ratio: 1;
  background-color: #3A93BA;
  content: "";
}
@media screen and (max-width: 768px) {
  .heading-h4::before {
    width: 2.66vw;
  }
}

.heading-h4 + p {
  margin-top: 16px;
}

.heading-h5 {
  margin: 32px 0 8px;
  color: #3A93BA;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .heading-h5 {
    margin: 8.53vw 0 2.13vw;
    font-size: 4.8vw;
  }
}

/* ---------- text ---------- */
:where(.section) p {
/*  font-size: 16px;*/
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  :where(.section) p {
    line-height: 1.62;
  }
}

.notice {
  margin-top: 16px;
  padding-left: 22px;
  color: #626262;
  font-size: 14px;
  text-indent: -22px;
}
@media screen and (max-width: 768px) {
  .notice {
    margin-top: 4.26vw;
    padding-left: 5.86vw;
    font-size: 3.73vw;
  }
}

.notice::before {
  margin-right: 8px;
  content: "※";
}
@media screen and (max-width: 768px) {
  .notice::before {
    margin-right: 2.13vw;
  }
}

.notice + .notice {
  margin-top: 8px;
}

.emphasis-1 {
  color: #1E295E;
  font-family: "Noto Serif JP";
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .emphasis-1 {
    font-size: 6.4vw;
  }
}

.emphasis-2 {
  padding: 32px 0;
  color: #3A93BA;
  font-family: "Noto Serif JP";
  font-size: 32px;
  font-weight: 700;
  line-height: 1.18;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .emphasis-2 {
    font-size: 6.93vw;
    text-align: left;
  }
}

.emphasis-3 {
  color: #1E295E;
  font-family: "Noto Serif JP";
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .emphasis-3 {
    font-size: 4.26vw;
  }
}

/* ---------- list ---------- */
/*.discList {
  margin: 16px 0;
}*/

.discList > li {
  position: relative;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  
}

.discList > li::before {
  position: absolute;
  top: .78em;
  left: 0;
  translate: 0 -50%;
  display: block;
  width: 8px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #1E295E;
  content: "";
}
@media screen and (max-width: 768px) {
  .discList > li::before {
    width: 2.13vw;
  }
}

.discList > li:nth-child(n+2)  {
  margin-top: .5em;
}
@media screen and (max-width: 768px) {
  
}

.discList .discList > li,
.decList .discList > li {
  padding-left: .75em;
}
@media screen and (max-width: 768px) {
  
}

.discList .discList > li::before,
.decList .discList > li::before {
  position: absolute;
  top: .78em;
  left: 0;
  translate: 0 -50%;
  display: block;
  width: 4px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #1E295E;
  content: "";
}
@media screen and (max-width: 768px) {
  .discList .discList > li::before,
  .decList .discList > li::before {
    width: 1.06vw;
  }
}

.decList {
  counter-reset: number;
}

.decList > li {
  position: relative;
  padding-left: 1em;
}

.decList > li::before {
  position: absolute;
  top: .78em;
  left: 0;
  translate: 0 -50%;
  display: block;
  color: #222;
  counter-increment: number;
  content: counter(number)".";
}

.decList > li:nth-child(n+2) {
  margin-top: .5em;
}

.defList > div {
  display: flex;
  gap: 0 40px;
}
@media screen and (max-width: 768px) {
  .defList > div {
    gap: 0 10.66vw;
  }
}

.defList > div + div {
  margin-top: 1em;
}

.defList dt {
  width: 4em;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.defList dd {
  line-height: 1.68;
}

.checkList {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .checkList {
    gap: 8vw;
  }
}

.checkList label {
  display: flex;
  align-items: start;
  gap: 0 5px;
}
@media screen and (max-width: 768px) {
  .checkList label {
    gap: 0 1.33vw;
  }
}

.checkList input {
  position: relative;
  translate: 0 5px;
  flex-shrink: 0;
  width: 16px;
  height: auto;
  aspect-ratio: 1;
  border: 1px solid #D5D5D5;
  border-radius: 2px;
  background-color: #FFF;
  box-shadow: inset 0.2px 0.2px 2px rgba(0, 0, 0, 0.2);
  appearance: none;
}
@media screen and (max-width: 768px) {
  .checkList input {
    translate: 0 1.33vw;
    width: 4.26vw;
  }
}

.checkList input:checked {
  border-color: #3A93BA;
  background-color: #3A93BA;
  box-shadow: none;
}

.checkList input:checked::after {
  position: absolute;
  inset: 0;
  width: 8px;
  height: auto;
  aspect-ratio: 1;
  margin: auto;
  background: url(/assets/img/icn_checkbox.svg) no-repeat center/cover;
  content: "";
}
@media screen and (max-width: 768px) {
  .checkList input:checked::after {
    width: 2.13vw;
  }
}

.dataList {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .dataList {
    margin-top: 16vw;
  }
}

.dataList-list li {
  display: flex;
  gap: 0 10px;
  padding: 20px 0;
  border-top: 1px solid #CFCFCF;
}
@media screen and (max-width: 768px) {
  .dataList-list li {
    flex-direction: column;
    gap: 2.66vw 0;
    padding: 5.33vw 0;
  }
}

.dataList-list li:last-child {
  border-bottom: 1px solid #CFCFCF;
}

.dataList-list li p {
  padding: 1px 0;
  color: #979797;
  line-height: 1.5;
  white-space: nowrap;
}

/* ---------- link ---------- */
.pageNavWrap {
  max-width: 1360px;
  margin: 56px auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .pageNavWrap {
    margin: 14.93vw 0;
    padding: 0 5.33vw;
  }
}

.section .pageNavWrap {
  padding-right: 0;
  padding-left: 0;
}

.pageNav {
  padding: 33px 20px;
  background-color: #F3F3E4;
}
@media screen and (max-width: 768px) {
  .pageNav {
    margin: 14.93vw 0;
    padding: 6.4vw;
  }
}

.pageNav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .pageNav-list {
    gap: 5.33vw;
    justify-content: start;
  }
}

.pageNav-list a {
  position: relative;
  display: block;
  padding: 3px 35px 3px 0;
  color: #222;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .pageNav-list a {
    padding: .8vw 9.6vw .8vw 0;
    font-size: 4.26vw;
  }
}

.pageNav-list a::before {
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  width: 30px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #1E295E;
  content: "";
}
@media screen and (max-width: 768px) {
  .pageNav-list a::before {
    width: 7.46vw;
  }
}

.pageNav-list a::after {
  position: absolute;
  top: 50%;
  right: 15px;
  translate: 50% -50%;
  width: 10px;
  height: auto;
  aspect-ratio: 10/11;
  background-color: #FFF;
  mask: url(/assets/img/icn_arrow_bottom.svg) no-repeat center/cover;
  content: "";
}
@media screen and (max-width: 768px) {
  .pageNav-list a::after {
    right: 3.73vw;
    width: 2.66vw;
  }
}

.pageNav2-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .pageNav2-list {
    gap: 6.4vw 2.66vw;
  }
}

.pageNav2-list li {
  border-right: 1px solid #E1E1E1;
}

.pageNav2-list a {
  position: relative;
  display: inline-block;
  padding: 0 22px 0 33px;
  color: #222;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .pageNav2-list a {
    padding: 0 6.4vw 0 8.53vw;
    font-size: 4.26vw;
  }
}

.pageNav2-list a:hover {
  color: #3A93BA;
  text-decoration: underline;
}

.pageNav2-list a::before {
  position: absolute;
  top: 50%;
  left: 8px;
  translate: 0 -50%;
  display: block;
  width: 14px;
  height: auto;
  aspect-ratio: 14/15;
  background-color: #3A93BA;
  mask: url(/assets/img/icn_arrow_bottom.svg) no-repeat center/cover;
  content: "";
}
@media screen and (max-width: 768px) {
  .pageNav2-list a::before {
    right: 2.13vw;
    width: 3.73vw;
  }
}

.txtLink {
  color: #222;
  text-decoration: underline;
}

.txtLinkModal {
  position: relative;
  display: inline-block;
  padding-right: 32px;
  color: #222;
}
@media screen and (max-width: 768px) {
  .txtLinkModal {
    padding-right: 8.53vw;
  }
}

.txtLinkModal:hover {
  text-decoration: underline;
}

.txtLinkModal::after {
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  display: block;
  width: 24px;
  height: auto;
  aspect-ratio: 1;
  background: url(/assets/img/icn_expansion.svg) no-repeat center/cover;
  content: "";
}
@media screen and (max-width: 768px) {
  .txtLinkModal::after {
    width: 6.4vw;
  }
}

.txtLinkPdf {
  position: relative;
  display: inline-block;
  padding: 1px 0 1px 41px;
  color: #222;
}
@media screen and (max-width: 768px) {
  .txtLinkPdf {
    padding-left: 10.93vw;
  }
}

.txtLinkPdf:hover {
  text-decoration: underline;
}

.txtLinkPdf::after {
  position: absolute;
  top: 0;
  left: 6px;
  display: block;
  width: 23px;
  height: auto;
  aspect-ratio: 23/25;
  background: url(/assets/img/icn_pdf.svg) no-repeat center/cover;
  content: "";
}
@media screen and (max-width: 768px) {
  .txtLinkPdf::after {
    left: 1.6vw;
    width: 6.13vw;
  }
}

.txtLinkExcel {
  position: relative;
  display: inline-block;
  padding-left: 41px;
  color: #222;
}
@media screen and (max-width: 768px) {
  .txtLinkExcel {
    padding-left: 10.93vw;
  }
}

.txtLinkExcel:hover {
  text-decoration: underline;
}

.txtLinkExcel::after {
  position: absolute;
  top: 50%;
  left: 6px;
  translate: 0 -50%;
  display: block;
  width: 21px;
  height: auto;
  aspect-ratio: 27/31;
  background: url(/assets/img/icn_excel.png) no-repeat center/cover;
  content: "";
}
@media screen and (max-width: 768px) {
  .txtLinkExcel::after {
    left: 1.6vw;
    width: 6.13vw;
  }
}

.txtLinkBlank {
  position: relative;
  display: inline-block;
  padding-right: 32px;
  color: #222;
/*  line-height: 1.18;*/
}
@media screen and (max-width: 768px) {
  .txtLinkBlank {
    padding-right: 8.53vw;
  }
}

.txtLinkBlank:hover {
  text-decoration: underline;
}

.txtLinkBlank::after {
  position: absolute;
  top: 50%;
  right: 7px;
  translate: 0 -50%;
  display: block;
  width: 13px;
  height: auto;
  aspect-ratio: 1;
  background-color: #222;
  mask: url(/assets/img/icn_blank.svg) no-repeat center/cover;
  content: "";
}
@media screen and (max-width: 768px) {
  .txtLinkBlank::after {
    right: 1.86vw;
    width: 3.46vw;
  }
}

.txtLinkArrow {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 20px 30px 20px 0;
  border-bottom: 1px solid #E1E1E1;
  color: #222;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.33;
}
@media screen and (max-width: 768px) {
  .txtLinkArrow {
    padding: 5.33vw 8vw 5.33vw 0;
    font-size: 4vw;
  }
}

.txtLinkArrow::after {
  position: absolute;
  top: 50%;
  right: 11px;
  translate: 0 -50%;
  display: block;
  width: 12px;
  height: auto;
  aspect-ratio: 12/11;
  background: url(/assets/img/icn_arrow_right.svg) no-repeat center/cover;
  transition: right .3s ease-out;
  content: "";
}
@media screen and (max-width: 768px) {
  .txtLinkArrow::after {
    right: 2.93vw;
    width: 3.2vw;
  }
}

.txtLinkArrow:hover::after {
  right: 6px;
}

.col-6 .txtLinkArrow + .txtLinkArrow {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .col-6 .txtLinkArrow + .txtLinkArrow {
    margin-top: 5.33vw;
  }
}

.txtLinkArrow2 {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 36px 30px 36px 0;
  border-bottom: 1px solid #E1E1E1;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  .txtLinkArrow2 {
    padding: 8vw 9.6vw 8vw 0;
    font-size: 4.26vw;
  }
}

.txtLinkArrow2::after {
  position: absolute;
  top: 50%;
  right: 11px;
  translate: 0 -50%;
  display: block;
  width: 12px;
  height: auto;
  aspect-ratio: 12/11;
  background: url(/assets/img/icn_arrow_right.svg) no-repeat center/cover;
  transition: right .3s ease-out;
  content: "";
}
@media screen and (max-width: 768px) {
  .txtLinkArrow2::after {
    right: 2.93vw;
    width: 3.2vw;
  }
}

.txtLinkArrow2:hover::after {
  right: 6px;
}

.txtLinkArrow2 + .txtLinkArrow2 {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .txtLinkArrow2 + .txtLinkArrow2 {
    margin-top: 5.33vw;
  }
}

.txtLinkArrow3 {
  position: relative;
  display: inline-block;
  padding-right: 32px;
  color: #222;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .txtLinkArrow3 {
    padding-right: 8.53vw;
    font-size: 4.26vw;
  }
}

.txtLinkArrow3::after {
  position: absolute;
  top: 50%;
  right: 7px;
  rotate: 45deg;
  translate: 0 -50%;
  display: block;
  width: 8px;
  height: auto;
  aspect-ratio: 1;
  border-top: 2px solid #3A93BA;
  border-right: 2px solid #3A93BA;
  transition: right .3s ease-out;
  content: "";
}
@media screen and (max-width: 768px) {
  .txtLinkArrow3::after {
    right: 1.86vw;
    width: 2.13vw;
  }
}

.txtLinkArrow3:hover::after {
  right: 2px;
}

.heading-h2 a {
  position: relative;
  display: inline-block;
  padding-right: 48px;
  color: #222;
  transition: color .3s ease-out;
}
@media screen and (max-width: 768px) {
  .heading-h2 a {
    display: block;
    padding-right: 6.4vw;
  }
}

.heading-h2 a:hover {
  color: #3A93BA;
}

.heading-h2 a::after {
  position: absolute;
  top: 50%;
  right: 12px;
  translate: 0 -50%;
  display: block;
  width: 19px;
  height: auto;
  aspect-ratio: 12/11;
  background: url(/assets/img/icn_arrow_right.svg) no-repeat center/cover;
  transition: right .3s ease-out;
  content: "";
}
@media screen and (max-width: 768px) {
  .heading-h2 a::after {
    right: 1.6vw;
    width: 3.2vw;
  }
}

.heading-h2 a:hover::after {
  right: 7px;
}

.btnLink {
  position: relative;
  display: block;
  padding: 13px 40px;
  border-radius: 9999px;
  background-color: #3A93BA;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  transition: background .3s ease-out;
}
@media screen and (max-width: 768px) {
  .btnLink {
    display: block;
    width: 100%;
    padding: 3.2vw 9.6vw;
    font-size: 4.26vw;
    text-align: center;
  }
}

.btnLink::after {
  position: absolute;
  top: 50%;
  right: 16px;
  translate: 0 -50%;
  display: block;
  width: 12px;
  height: auto;
  aspect-ratio: 12/11;
  background-color: #FFF;
  mask: url(/assets/img/icn_arrow_right.svg) no-repeat center/cover;
  transition: right .3s ease-out;
  content: "";
}
@media screen and (max-width: 768px) {
  .btnLink::after {
    right: 3.46vw;
    width: 3.2vw;
  }
}

.btnLink:hover {
  background-color: #1E295E;
}

.btnLink:hover::after {
  right: 11px;
}

.btnLink:not([href*=".pdf"])[target="_blank"]::after {
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
  display: block;
  width: 13px;
  height: auto;
  aspect-ratio: 1;
  background: url(/assets/img/icn_blank.svg) no-repeat center/cover;
  mask: none;
  content: "";
}
@media screen and (max-width: 768px) {
  .btnLink:not([href*=".pdf"])[target="_blank"]::after {
    right: 5.33vw;
    width: 3.46vw;
  }
}

.btnLink:not([href*=".pdf"])[target="_blank"]:hover::after {
  right: 15px;
}

.btnLink[href*=".pdf"]::after {
  position: absolute;
  top: 50%;
  right: 19px;
  translate: 0 -50%;
  display: block;
  width: 15px;
  height: auto;
  aspect-ratio: 1;
  background: url(/assets/img/icn_pdf2.svg) no-repeat center/cover;
  mask: none;
  content: "";
}
@media screen and (max-width: 768px) {
  .btnLink[href*=".pdf"]::after {
    right: 3.73vw;
    width: 4vw;
  }
}

.btnLink[href*=".pdf"]:hover::after {
  right: 14px;
}

.btnLink._white {
  border: 1px solid #222;
  background-color: #FFF;
  color: #222;
}

.btnLink._white::after {
  background-color: #3A93BA;
}

.thumbLink {
  display: block;
  color: #222;
}

.thumbLink-img {
  border: 1px solid #DCDCDC;
  overflow: hidden;
}

.thumbLink-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: scale .3s ease-out;
}

.thumbLink:hover .thumbLink-img img {
  scale: 1.05;
}

.thumbLink-ttl {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  padding-right: 26px;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .thumbLink-ttl {
    margin-top: 2.66vw;
    padding-right: 6.93vw;
    font-size: 4.8vw;
  }
}

.thumbLink-ttl::after {
  position: absolute;
  top: 50%;
  right: 6px;
  translate: 0 -50%;
  display: block;
  width: 12px;
  height: auto;
  aspect-ratio: 12/11;
  background: url(/assets/img/icn_arrow_right.svg) no-repeat center/cover;
  transition: right .3s ease-out;
  content: "";
}
@media screen and (max-width: 768px) {
  .thumbLink-ttl::after {
    right: 1.6vw;
    width: 3.2vw;
  }
}

.thumbLink:hover .thumbLink-ttl::after {
  right: 1px;
}

.thumbLink-txt {
  margin-top: 6px;
}
@media screen and (max-width: 768px) {
  .thumbLink-txt {
    margin-top: 1.6vw;
  }
}

.thumbLink._16_9 .thumbLink-img img {
  aspect-ratio: 16/9;
}

.thumbLinkModal {
  display: block;
  color: #222;
  text-align: left;
}

.thumbLinkModal-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.thumbLinkModal-content {
  padding: 0 20px;
}

.thumbLinkModal-ttl {
  position: relative;
  display: inline-block;
  margin-top: 4px;
  padding-right: 32px;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .thumbLinkModal-ttl {
    margin-top: 1.06vw;
    padding-right: 8.53vw;
    font-size: 4.8vw;
  }
}

.thumbLinkModal-ttl::after {
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  display: block;
  width: 24px;
  height: auto;
  aspect-ratio: 1;
  background: url(/assets/img/icn_expansion.svg) no-repeat center/cover;
  content: "";
}
@media screen and (max-width: 768px) {
  .thumbLinkModal-ttl::after {
    width: 6.4vw;
  }
}

.thumbLinkModal:hover .thumbLinkModal-ttl {
  text-decoration: underline;
}

.thumbLinkModal-txt {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .thumbLinkModal-txt {
    margin-top: 2.66vw;
  }
}

body.is-fixed {
  position: fixed;
  overflow: hidden;
  width: 100%;
}

.modalWrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  border: none;
  background-color: rgba(0,0,0,.6);
}

.modal {
  position: absolute;
  inset: 0;
  width: 90%;
  height: 90%;
  margin: auto;
  border-radius: 6px;
  background-color: #FFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
}

.modal-inner {
  position: relative;
  height: 100%;
  padding: 56px 22px 56px 56px;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  .modal-inner {
    padding: 6.4vw 2.93vw 6.4vw 6.4vw;
  }
}

.modalCloseBtn {
  position: absolute;
  top: -26px;
  right: -26px;
  translate: 0;
  display: block;
  width: 40px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: url(/assets/img/icn_modal_close.svg) no-repeat center/cover;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  font-size: 1px;
  line-height: 1;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .modalCloseBtn {
    top: -5.33vw;
    right: -4vw;
    width: 10.66vw;
  }
}


/* ---------- table ---------- */
.border-none-right {
  border-right: none!important;
}

.border-none-left {
  border-left: none!important;
}

.tableWrap {
  overflow-x: auto;
}

.tableWrap table {
  width: 100%;
}

.table1 th,
.table1 td {
  padding: 24px 20px;
  border: 1px solid #D2D2D2;
  text-align: left;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .table1 th,
  .table1 td {
    padding: 4.26vw;
  }
}

.table1 tbody th {
  font-weight: 500;
  background-color: #EDF2F3;
}
@media screen and (max-width: 768px) {
  .table1 tbody th {
    font-size: 4vw;
  }
}

.table1 td {
  background-color: #FFF;
}
@media screen and (max-width: 768px) {
  .table1 td {
    
  }
}

.table2 {
  table-layout: fixed;
}

.table2 th,
.table2 td {
  padding: 24px 20px;
  border: 1px solid #D2D2D2;
}

.table2 thead th {
  background-color: #EDF2F3;
}

.table2 tbody th {
  background-color: #D8DFE1;
  text-align: left;
}

.table2 td {
  background-color: #FFF;
}

.tableWrap .table3 {
  width: auto;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .tableWrap .table3 {
    table-layout: fixed;
    width: 152vw;
  }
}

.table3 thead th:first-child,
.table3 tbody th {
  background-color: #D8DFE1;
}
@media screen and (max-width: 768px) {
  .table3 thead th:first-child,
  .table3 tbody th {
    width: 7%;
  }
}

.table3 thead th {
  padding: 10px 26px;
  background-color: #EDF2F3;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .table3 thead th {
    padding: 2.66vw 6.93vw;
    font-size: 3.73vw;
  }
}

.table3 th,
.table3 td {
  padding: 14px 6px;
  border: 1px solid #D2D2D2;
}
@media screen and (max-width: 768px) {
  .table3 th,
  .table3 td {
    padding: 3.73vw 1.6vw;
  }
}

.table3 th {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .table3 th {
    font-size: 3.73vw;
  }
}

.table3 td {
  padding: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .table3 td {
    padding: 2.66vw;
  }
}

.tableWrap .table4 {
  width: 1300px;
}
@media screen and (max-width: 768px) {
  .tableWrap .table4 {
    width: 227.99vw;
  }
}

.table4 th {
  background-color: #EDF2F3;
}

.table4 th,
.table4 td {
  padding-right: 24px;
  padding-left: 24px;
  border: 1px solid #D2D2D2;
}
@media screen and (max-width: 768px) {
  .table4 th,
  .table4 td {
    padding-right: 2.13vw;
    padding-left: 2.13vw;
    font-size: 3.73vw;
  }
}

.table4 th {
  padding-top: 25px;
  padding-bottom: 25px;
  white-space: nowrap;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .table4 th {
    width: 15.7%;
    padding-top: 4.26vw;
    padding-bottom: 4.26vw;
  }
}

.table4 td {
  width: calc((100% - 292px) / 6);
  text-align: center;
}
@media screen and (max-width: 768px) {
  
}

.table4 tr:first-child td {
  padding: 16px;
}
@media screen and (max-width: 768px) {
  .table4 tr:first-child td {
    padding: 2.13vw;
  }
}

.table4 [colspan] {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: #D8DFE1;
  color: #1E295E;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .table4 [colspan] {
    padding-top: 3.73vw;
    padding-bottom: 3.73vw;
    font-size: 3.73vw;
  }
}

@media screen and (max-width: 768px) {
  .tableWrap[data-js="scrollHint"] .table1,
  .tableWrap[data-js="scrollHint"] .table2 {
    table-layout: fixed;
    width: 266.66vw;
  }
}

@media screen and (max-width: 768px) {
  .tableWrap[data-js="scrollHint"] .table1 th {
    width: 13%;
  }
}

.biography {
  width: 100%;
}

.biography tbody th {
  width: 115px;
  padding: 8px 0;
  border: none;
  background-color: transparent;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.73;
  text-align: left;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .biography tbody th {
    width: 37%;
    font-size: 4vw;
  }
}

.biography tbody td {
  padding: 8px 5px;
  border: none;
  background-color: transparent;
  font-size: 16px;
  line-height: 1.65;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .biography tbody td {
    font-size: 4.26vw;
  }
}


/* ---------- accordion ---------- */
.accordion-head {
  position: relative;
  padding: 35px 50px 35px 0;
  border-bottom: 1px solid #1E295E;
  font-size: 22px;
  font-weight: 700;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .accordion-head {
    padding: 5.86vw 10.66vw 5.86vw 0;
    font-size: 4.8vw;
  }
}

.accordion-head::after {
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  display: block;
  width: 40px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #3A93BA;
  content: "";
}
@media screen and (max-width: 768px) {
  .accordion-head::after {
    width: 8.53vw;
  }
}

.accordion-head span {
  display: block;
}

.accordion-head span::before,
.accordion-head span::after {
  position: absolute;
  top: 50%;
  right: 13px;
  translate: 0 -50%;
  z-index: 1;
  display: block;
  width: 14px;
  height: auto;
  aspect-ratio: 14/2;
  border-radius: 2px;
  background-color: #FFF;
  transition: rotate .3s ease-out;
  content: "";
}
@media screen and (max-width: 768px) {
  .accordion-head span::before,
  .accordion-head span::after {
    right: 2.4vw;
    width: 3.73vw;
  }
}

.accordion-head span::after {
  rotate: 90deg;
}

[open] .accordion-head span::after {
  rotate: 180deg;
}

.accordion-body .table1 {
  width: 100%;
}

.accordion-body .table1 th {
  text-align: center;
}

/* ---------- local ---------- */
.localNavWrap {
  padding: 128px 56px;
}
@media screen and (max-width: 768px) {
  .localNavWrap {
    padding: 17.06vw 0;
  }
}

.localNav {
  max-width: 1320px;
  margin: 0 auto;
  padding: 43px 70px 78px;
  background-color: #F3F3E4;
}
@media screen and (max-width: 768px) {
  .localNav {
    padding: 8vw 5.33vw 0;
  }
}

.localNav-prev {
  display: block;
  padding-bottom: 16px;
  border-bottom: 1px solid #87A2AE;
}
@media screen and (max-width: 768px) {
  .localNav-prev {
    padding-bottom: 4.26vw;
  }
}

.localNav-prev a {
  position: relative;
  display: inline-block;
  padding-right: 37px;
  color: #222;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .localNav-prev a {
    padding-right: 9.86vw;
    font-size: 6.4vw;
  }
}

.localNav-prev a::after {
  position: absolute;
  top: 50%;
  right: 6px;
  translate: 0 -50%;
  display: block;
  width: 17px;
  height: auto;
  aspect-ratio: 12/11;
  background: url(/assets/img/icn_arrow_right.svg) no-repeat center/cover;
  transition: right .3s ease-out;
  content: "";
}
@media screen and (max-width: 768px) {
  .localNav-prev a::after {
    right: 1.6vw;
    width: 4.53vw;
  }
}

.localNav-prev a:hover::after {
  right: 1px;
}

.localNav .row {
  --gap-row: 0;
  margin-top: 8px;
}

.localNav .col-3 {
  min-width: 215px;
}
@media screen and (max-width: 768px) {
  .localNav .col-3 {
    min-width: auto;
  }
}

.localNav .txtLinkArrow {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .localNav .txtLinkArrow {
    font-size: 4.26vw;
  }
}

.localNav .txtLinkArrow.is-current {
  color: #3A93BA;
}

/* ---------- thumbCard ---------- */
.thumbCardList li:not(:last-child) {
  border-bottom: 1px solid #EAEAEA;
}

.thumbCard {
  display: grid;
  gap: 0 45px;
  grid-template-columns: 410px 1fr;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .thumbCard {
    gap: 5.33vw 0;
    grid-template-columns: 100%;
    padding: 10.66vw 0;
  }
}

.thumbCardList li:first-child .thumbCard {
  padding-top: 0;
}

.thumbCard-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.thumbCard .heading-h3 {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .thumbCard .heading-h3 {
    margin-bottom: 4.26vw;
  }
}

.txtBox {
  padding: 38px 24px;
  background-color: #F3F3E4;
}
@media screen and (max-width: 768px) {
  .txtBox {
    padding: 6.4vw;
  }
}

.bandCardList li + li {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .bandCardList li + li {
    margin-top: 6.4vw;
  }
}

.bandCard {
  padding: 40px;
  background-color: #F3F3E4;
}
@media screen and (max-width: 768px) {
  .bandCard {
    padding: 5.33vw;
  }
}

.bandCard p {
  margin-top: 8px;
}

/* ---------- layout ---------- */
.bgLayer {
  padding: 40px;
  background-color: #F3F3E4;
}
@media screen and (max-width: 768px) {
  .bgLayer {
    padding: min(5.33vw,20px);
  }
}

.bgLayer._fluid {
  width: 100vw;
  margin: 0 calc(50% - 50vw);;
  padding: 50px calc(50vw - 50%);
}
@media screen and (max-width: 768px) {
  .bgLayer._fluid {
    padding-top: 6.66vw;
    padding-bottom: 6.66vw;
  }
}

.emphasisBoxWrap {
  width: 100%;
}

.emphasisBox {
  width: 100%;
  margin: 0 auto;
  padding: 44px 20px 35px;
  background: linear-gradient(270deg, #E7E7CE 0.04%, #F4F4EB 41.24%, #FAFAF6 58.9%, #E7E7CE 98.46%);
}
@media screen and (max-width: 768px) {
  .emphasisBox {
    padding: 8vw 6.93vw 13.33vw;
  }
}

.emphasisBox._border {
  border: 15px solid #FFF;
  outline: 3px solid #BEBE99;
  outline-offset: -3px;
}
@media screen and (max-width: 768px) {
  .emphasisBox._border {
    border-width: 2.13vw;
    outline-width: .8vw;
    outline-offset: -.8vw;
  }
}

.emphasisBox-inner {
  max-width: 800px;
  margin: 0 auto;
}

.emphasisBoxWrap .emphasisBox-inner {
  max-width: 98%;
}

.emphasisBox-head {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 33px;
}
@media screen and (max-width: 768px) {
  .emphasisBox-head {
    margin-bottom: 6.93vw;
    padding-bottom: 6.4vw;
  }
}

.emphasisBox-head::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #3A93BA 50%, transparent 100%);
  content: "";
}
@media screen and (max-width: 768px) {
  .emphasisBox-head::after {
    height: .53vw;
  }
}

.emphasisBox-main {
  margin-top: 10px;
  color: #1E295E;
  font-family: "Noto Serif JP";
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .emphasisBox-main {
    margin-top: 1.33vw;
    font-size: 6.93vw;
  }
}

.emphasisBox-sub {
  color: #1E295E;
  font-family: "Noto Serif JP";
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .emphasisBox-sub {
    font-size: 4.26vw;
  }
}

.emphasisBox-body p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}
@media screen and (max-width: 768px) {
  .emphasisBox-body p {
    font-size: 4.26vw;
    font-weight: 400;
    line-height: 1.62;
  }
}

.emphasisBoxWrap .emphasisBox-body {
  padding: 0 15%;
}
@media screen and (max-width: 768px) {
  .emphasisBoxWrap .emphasisBox-body {
    padding: 0;
  }
}

.emphasisBox2 {
  padding: 24px 48px;
  background-color: #F4F4EA;
}
@media screen and (max-width: 768px) {
  .emphasisBox2 {
    padding: 5.86vw 6.66vw 12vw;
  }
}

.emphasisBox2-head {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .emphasisBox2-head {
    margin-bottom: 5.86vw;
    padding-bottom: 3.2vw;
  }
}

.emphasisBox2-head::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #3A93BA 50%, transparent 100%);
  content: "";
}
@media screen and (max-width: 768px) {
  .emphasisBox2-head::after {
    height: .53vw;
  }
}

.emphasisBox2-ttl {
  color: #1E295E;
  font-family: "Noto Serif JP";
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .emphasisBox2-ttl {
    font-size: 6.93vw;
  }
}


/* ---------- news ---------- */
.newsList-item {
  display: flex;
  align-items: start;
  gap: 0 20px;
  padding: 15px 7px 20px 0;
  border-top: 1px solid #CFCFCF;
}
@media screen and (max-width: 768px) {
  .newsList-item {
    flex-direction: column;
    padding: 5.33vw 0;
  }
}

.newsList-item:last-child {
  border-bottom: 1px solid #CFCFCF;
}

.news-data {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0 10px;
}
@media screen and (max-width: 768px) {
  .news-data {
    gap: 0 2.66vw;
  }
}

.news-data time {
  color: #979797;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .news-data time {
    font-size: 4vw;
  }
}

.news-data span {
  display: inline-block;
  min-width: 130px;
  padding: 2px 15px;
  background-color: #D8E9F0;
  color: #333;
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .news-data span {
    min-width: 34.66vw;
    padding: .53vw 4vw;
    font-size: 3.73vw;
  }
}

.news-link {
  position: relative;
  display: inline-block;
  margin-top: 3px;
  padding-right: 30px;
  color: #222;
  font-size: 15px;
  line-height: 1.46;
}
@media screen and (max-width: 768px) {
  .news-link {
    margin-top: 2.4vw;
    padding-right: 8vw;
    font-size: 4vw;
  }
}

.news-link:hover {
  text-decoration: underline;
}

.news-link::after {
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  display: block;
  width: 18px;
  height: auto;
  aspect-ratio: 1;
  background: url(/img/icn_pdf.svg) no-repeat center/cover;
  content: "";
}
@media screen and (max-width: 768px) {
  .news-link::after {
    width: 4.8vw;
  }
}

.newsBox-moreWrap {
  margin-top: 16px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .newsBox-moreWrap {
    margin-top: 4.26vw;
  }
}

.newsBox-more {
  position: relative;
  padding-right: 24px;
  color: #3E3E3E;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .newsBox-more {
    padding-right: 7.46vw;
    font-size: 4.26vw;
  }
}

.newsBox-more:hover {
  text-decoration: underline;
}

.newsBox-more::after {
  position: absolute;
  top: 50%;
  right: 4px;
  rotate: 45deg;
  translate: 0 -50%;
  display: block;
  width: 8px;
  height: auto;
  aspect-ratio: 1;
  border-top: 2px solid #3A93BA;
  border-right: 2px solid #3A93BA;
  content: "";
}
@media screen and (max-width: 768px) {
  .newsBox-more::after {
    right: 1.06vw;
    width: 2.13vw;
  }
}


/* ---------- select ---------- */
.selectBox {
  position: relative;
  display: inline-block;
}

.selectBox::after {
  position: absolute;
  top: calc(50% - 2px);
  right: 15px;
  rotate: 45deg;
  translate: 0 -50%;
  display: block;
  width: 10px;
  height: auto;
  aspect-ratio: 1;
  border-right: 2px solid #222;
  border-bottom: 2px solid #222;
  content: "";
}
@media screen and (max-width: 768px) {
  .selectBox::after {
    top: calc(50% - .53vw);
    right: 4vw;
    width: 2.66vw;
  }
}

.selectBox select {
  padding: 10px 40px 10px 10px;
  border: 1px solid #CCC;
  border-radius: 3px;
  color: #222;
  appearance: none;
}
@media screen and (max-width: 768px) {
  .selectBox select {
    padding: 2.66vw 10.66vw 2.66vw 2.66vw;
  }
}


/* ==============================================================
*  utility
* ============================================================ */
.visuallyHidden {
  position: absolute!important;
  width: 1px!important;
  height: 1px!important;
  margin: -1px!important;
  padding: 0!important;
  border: 0!important;
  clip: rect(0,0,0,0)!important;
  overflow: hidden!important;
  white-space: nowrap!important;
}

@media screen and (min-width: 769px) {
  .hiddenPc {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .hiddenSp {
    display: none !important;
  }
}

.fs-12 {
  font-size: 12px !important;
  line-height: 1.57 !important;
}
@media screen and (max-width: 768px) {
  .fs-12 {
    font-size: 3.2vw !important;
  }
}

.fs-13 {
  font-size: 13px !important;
  line-height: 1.57 !important;
}
@media screen and (max-width: 768px) {
  .fs-13 {
    font-size: 3.46vw !important;
  }
}

.fs-14 {
  font-size: 14px !important;
  line-height: 1.57 !important;
}
@media screen and (max-width: 768px) {
  .fs-14 {
    font-size: 3.73vw !important;
  }
}

.fs-15 {
  font-size: 15px !important;
  line-height: 1.57 !important;
}
@media screen and (max-width: 768px) {
  .fs-15 {
    font-size: 4vw !important;
  }
}

.fs-16 {
  font-size: 16px !important;
}
@media screen and (max-width: 768px) {
  .fs-16 {
    font-size: 4.26vw !important;
  }
}

.fs-18 {
  font-size: 18px !important;
}
@media screen and (max-width: 768px) {
  .fs-18 {
    font-size: 4.8vw !important;
  }
}

.fs-20 {
  font-size: 20px !important;
}
@media screen and (max-width: 768px) {
  .fs-20 {
    font-size: 5.33vw !important;
  }
}

.fs-22 {
  font-size: 22px !important;
}
@media screen and (max-width: 768px) {
  .fs-22 {
    font-size: 5.86vw !important;
  }
}

.fs-32 {
  font-size: 32px !important;
}
@media screen and (max-width: 768px) {
  .fs-32 {
    font-size: 8.53vw !important;
  }
}

.fw-medium { font-weight: 500 !important; }
.fw-bold { font-weight: 700 !important; }

.txt-center { text-align: center !important; }
.txt-right { text-align: right !important; }
.txt-left { text-align: left !important; }

.indent-1 { text-indent: 1em !important; }
.indent-2 { text-indent: 2em !important; }
.indent-3 { text-indent: 3em !important; }

@media screen and (max-width: 768px) {
  .txt-md-center { text-align: center !important; }
}

@media screen and (max-width: 768px) {
  .txt-md-right { text-align: right !important; }
}

@media screen and (max-width: 768px) {
  .txt-md-left { text-align: left !important; }
}

.txt-gray { color: #505050 !important; }

.row {
  --gap-col: 45px;
  --gap-row: 45px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-row) var(--gap-col);
}
@media screen and (max-width: 768px) {
  .row {
    --gap-col: max(2.66vw,10px);
    --gap-row: max(10.66vw,40px);
  }  
}

.row._card,
.row._graph {
  --gap-row: 110px;
}
@media screen and (max-width: 768px) {
  .row._card,
  .row._graph {
    --gap-row: 13.33vw;
  }
}

.row-wrap { flex-wrap: wrap; }

.justify-start { justify-content: start !important; }
.justify-end { justify-content: end !important; }
.justify-center { justify-content: center !important; }

.col-1 { width: calc((100% - 11*var(--gap-col)) / 12); }
.col-2 { width: calc(((100% - 11*var(--gap-col)) / 12) * 2 + var(--gap-col)); }
.col-3 { width: calc(((100% - 11*var(--gap-col)) / 12) * 3 + var(--gap-col) * 2); }
.col-4 { width: calc(((100% - 11*var(--gap-col)) / 12) * 4 + var(--gap-col) * 3); }
.col-5 { width: calc(((100% - 11*var(--gap-col)) / 12) * 5 + var(--gap-col) * 4); }
.col-6 { width: calc(((100% - 11*var(--gap-col)) / 12) * 6 + var(--gap-col) * 5); }
.col-7 { width: calc(((100% - 11*var(--gap-col)) / 12) * 7 + var(--gap-col) * 6); }
.col-8 { width: calc(((100% - 11*var(--gap-col)) / 12) * 8 + var(--gap-col) * 7); }
.col-9 { width: calc(((100% - 11*var(--gap-col)) / 12) * 9 + var(--gap-col) * 8); }
.col-10 { width: calc(((100% - 11*var(--gap-col)) / 12) * 10 + var(--gap-col) * 9); }
.col-11 { width: calc(((100% - 11*var(--gap-col)) / 12) * 11 + var(--gap-col) * 10); }
.col-12 { width: 100% }



@media screen and (max-width: 768px) {
  .col-md-1 { width: calc((100% - 11*var(--gap-col)) / 12); }
  .col-md-2 { width: calc(((100% - 11*var(--gap-col)) / 12) * 2 + var(--gap-col)); }
  .col-md-3 { width: calc(((100% - 11*var(--gap-col)) / 12) * 3 + var(--gap-col) * 2); }
  .col-md-4 { width: calc(((100% - 11*var(--gap-col)) / 12) * 4 + var(--gap-col) * 3); }
  .col-md-5 { width: calc(((100% - 11*var(--gap-col)) / 12) * 5 + var(--gap-col) * 4); }
  .col-md-6 { width: calc(((100% - 11*var(--gap-col)) / 12) * 6 + var(--gap-col) * 5); }
  .col-md-7 { width: calc(((100% - 11*var(--gap-col)) / 12) * 7 + var(--gap-col) * 6); }
  .col-md-8 { width: calc(((100% - 11*var(--gap-col)) / 12) * 8 + var(--gap-col) * 7); }
  .col-md-9 { width: calc(((100% - 11*var(--gap-col)) / 12) * 9 + var(--gap-col) * 8); }
  .col-md-10 { width: calc(((100% - 11*var(--gap-col)) / 12) * 10 + var(--gap-col) * 9); }
  .col-md-11 { width: calc(((100% - 11*var(--gap-col)) / 12) * 11 + var(--gap-col) * 10); }
  .col-md-12 { width: 100% }
}

.mt-0 { margin-top: 0 !important; }
.mt-10 { margin-top: 10px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-50 { margin-top: 50px !important; }
.mt-60 { margin-top: 60px !important; }
.mt-70 { margin-top: 70px !important; }
.mt-80 { margin-top: 80px !important; }
.mt-90 { margin-top: 90px !important; }
.mt-100 { margin-top: 100px !important; }
.mt-110 { margin-top: 110px !important; }
.mt-120 { margin-top: 120px !important; }
.mt-130 { margin-top: 130px !important; }
.mt-140 { margin-top: 140px !important; }
.mt-150 { margin-top: 150px !important; }
/*@media screen and (max-width: 768px) {
  .mt-md-0 { margin-top: 0 !important; }
  .mt-md-10 { margin-top: 10px !important; }
  .mt-md-20 { margin-top: 20px !important; }
  .mt-md-30 { margin-top: 30px !important; }
  .mt-md-40 { margin-top: 40px !important; }
  .mt-md-50 { margin-top: 50px !important; }
  .mt-md-60 { margin-top: 60px !important; }
  .mt-md-70 { margin-top: 70px !important; }
  .mt-md-80 { margin-top: 80px !important; }
  .mt-md-90 { margin-top: 90px !important; }
  .mt-md-100 { margin-top: 100px !important; }
}*/
@media screen and (max-width: 768px) {
  .mt-0 { margin-top: 0 !important; }
  .mt-10 { margin-top: 2.66vw !important; }
  .mt-20 { margin-top: 5.33vw !important; }
  .mt-30 { margin-top: 8vw !important; }
  .mt-40 { margin-top: 10.66vw !important; }
  .mt-50 { margin-top: 13.33vw !important; }
  .mt-60 { margin-top: 16vw !important; }
  .mt-70 { margin-top: 18.66vw !important; }
  .mt-80 { margin-top: 21.33vw !important; }
  .mt-90 { margin-top: 24vw !important; }
  .mt-100 { margin-top: 26.66vw !important; }
}

@media screen and (max-width: 768px) {
  .mt-md-0 { margin-top: 0 !important; }
  .mt-md-10 { margin-top: 2.66vw !important; }
  .mt-md-20 { margin-top: 5.33vw !important; }
  .mt-md-30 { margin-top: 8vw !important; }
  .mt-md-40 { margin-top: 10.66vw !important; }
  .mt-md-50 { margin-top: 13.33vw !important; }
  .mt-md-60 { margin-top: 16vw !important; }
  .mt-md-70 { margin-top: 18.66vw !important; }
  .mt-md-80 { margin-top: 21.33vw !important; }
  .mt-md-90 { margin-top: 24vw !important; }
  .mt-md-100 { margin-top: 26.66vw !important; }
}


.mb-0 { margin-bottom: 0 !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-50 { margin-bottom: 50px !important; }
.mb-60 { margin-bottom: 60px !important; }
.mb-70 { margin-bottom: 70px !important; }
.mb-80 { margin-bottom: 80px !important; }
.mb-90 { margin-bottom: 90px !important; }
.mb-100 { margin-bottom: 100px !important; }
.mb-110 { margin-bottom: 110px !important; }
.mb-120 { margin-bottom: 120px !important; }
.mb-130 { margin-bottom: 130px !important; }
.mb-140 { margin-bottom: 140px !important; }
.mb-150 { margin-bottom: 150px !important; }
/*@media screen and (max-width: 768px) {
  .mb-md-0 { margin-bottom: 0 !important; }
  .mb-md-10 { margin-bottom: 10px !important; }
  .mb-md-20 { margin-bottom: 20px !important; }
  .mb-md-30 { margin-bottom: 30px !important; }
  .mb-md-40 { margin-bottom: 40px !important; }
  .mb-md-50 { margin-bottom: 50px !important; }
  .mb-md-60 { margin-bottom: 60px !important; }
  .mb-md-70 { margin-bottom: 70px !important; }
  .mb-md-80 { margin-bottom: 80px !important; }
  .mb-md-90 { margin-bottom: 90px !important; }
  .mb-md-100 { margin-bottom: 100px !important; }
}*/
@media screen and (max-width: 768px) {
  .mb-0 { margin-bottom: 0 !important; }
  .mb-10 { margin-bottom: 2.66vw !important; }
  .mb-20 { margin-bottom: 5.33vw !important; }
  .mb-30 { margin-bottom: 8vw !important; }
  .mb-40 { margin-bottom: 10.66vw !important; }
  .mb-50 { margin-bottom: 13.33vw !important; }
  .mb-60 { margin-bottom: 16vw !important; }
  .mb-70 { margin-bottom: 18.66vw !important; }
  .mb-80 { margin-bottom: 21.33vw !important; }
  .mb-90 { margin-bottom: 24vw !important; }
  .mb-100 { margin-bottom: 26.66vw !important; }
}

@media screen and (max-width: 768px) {
  .mb-md-0 { margin-bottom: 0 !important; }
  .mb-md-10 { margin-bottom: 2.66vw !important; }
  .mb-md-20 { margin-bottom: 5.33vw !important; }
  .mb-md-30 { margin-bottom: 8vw !important; }
  .mb-md-40 { margin-bottom: 10.66vw !important; }
  .mb-md-50 { margin-bottom: 13.33vw !important; }
  .mb-md-60 { margin-bottom: 16vw !important; }
  .mb-md-70 { margin-bottom: 18.66vw !important; }
  .mb-md-80 { margin-bottom: 21.33vw !important; }
  .mb-md-90 { margin-bottom: 24vw !important; }
  .mb-md-100 { margin-bottom: 26.66vw !important; }
}

.mr-0 { margin-right: 0 !important; }
.mr-10 { margin-right: 10px !important; }
.mr-20 { margin-right: 20px !important; }
.mr-30 { margin-right: 30px !important; }
.mr-40 { margin-right: 40px !important; }
.mr-50 { margin-right: 50px !important; }
.mr-60 { margin-right: 60px !important; }
.mr-70 { margin-right: 70px !important; }
.mr-80 { margin-right: 80px !important; }
.mr-90 { margin-right: 90px !important; }
.mr-100 { margin-right: 100px !important; }
/*@media screen and (max-width: 768px) {
  .mr-md-0 { margin-right: 0 !important; }
  .mr-md-10 { margin-right: 10px !important; }
  .mr-md-20 { margin-right: 20px !important; }
  .mr-md-30 { margin-right: 30px !important; }
  .mr-md-40 { margin-right: 40px !important; }
  .mr-md-50 { margin-right: 50px !important; }
  .mr-md-60 { margin-right: 60px !important; }
  .mr-md-70 { margin-right: 70px !important; }
  .mr-md-80 { margin-right: 80px !important; }
  .mr-md-90 { margin-right: 90px !important; }
  .mr-md-100 { margin-right: 100px !important; }
}*/
@media screen and (max-width: 768px) {
  .mr-0 { margin-right: 0 !important; }
  .mr-10 { margin-right: 2.66vw !important; }
  .mr-20 { margin-right: 5.33vw !important; }
  .mr-30 { margin-right: 8vw !important; }
  .mr-40 { margin-right: 10.66vw !important; }
  .mr-50 { margin-right: 13.33vw !important; }
  .mr-60 { margin-right: 16vw !important; }
  .mr-70 { margin-right: 18.66vw !important; }
  .mr-80 { margin-right: 21.33vw !important; }
  .mr-90 { margin-right: 24vw !important; }
  .mr-100 { margin-right: 26.66vw !important; }
}

@media screen and (max-width: 768px) {
  .mr-md-0 { margin-right: 0 !important; }
  .mr-md-10 { margin-right: 2.66vw !important; }
  .mr-md-20 { margin-right: 5.33vw !important; }
  .mr-md-30 { margin-right: 8vw !important; }
  .mr-md-40 { margin-right: 10.66vw !important; }
  .mr-md-50 { margin-right: 13.33vw !important; }
  .mr-md-60 { margin-right: 16vw !important; }
  .mr-md-70 { margin-right: 18.66vw !important; }
  .mr-md-80 { margin-right: 21.33vw !important; }
  .mr-md-90 { margin-right: 24vw !important; }
  .mr-md-100 { margin-right: 26.66vw !important; }
}

.ml-0 { margin-left: 0 !important; }
.ml-10 { margin-left: 10px !important; }
.ml-20 { margin-left: 20px !important; }
.ml-30 { margin-left: 30px !important; }
.ml-40 { margin-left: 40px !important; }
.ml-50 { margin-left: 50px !important; }
.ml-60 { margin-left: 60px !important; }
.ml-70 { margin-left: 70px !important; }
.ml-80 { margin-left: 80px !important; }
.ml-90 { margin-left: 90px !important; }
.ml-100 { margin-left: 100px !important; }
/*@media screen and (max-width: 768px) {
  .ml-md-0 { margin-left: 0 !important; }
  .ml-md-10 { margin-left: 10px !important; }
  .ml-md-20 { margin-left: 20px !important; }
  .ml-md-30 { margin-left: 30px !important; }
  .ml-md-40 { margin-left: 40px !important; }
  .ml-md-50 { margin-left: 50px !important; }
  .ml-md-60 { margin-left: 60px !important; }
  .ml-md-70 { margin-left: 70px !important; }
  .ml-md-80 { margin-left: 80px !important; }
  .ml-md-90 { margin-left: 90px !important; }
  .ml-md-100 { margin-left: 100px !important; }
}*/
@media screen and (max-width: 768px) {
  .ml-0 { margin-left: 0 !important; }
  .ml-10 { margin-left: 2.66vw !important; }
  .ml-20 { margin-left: 5.33vw !important; }
  .ml-30 { margin-left: 8vw !important; }
  .ml-40 { margin-left: 10.66vw !important; }
  .ml-50 { margin-left: 13.33vw !important; }
  .ml-60 { margin-left: 16vw !important; }
  .ml-70 { margin-left: 18.66vw !important; }
  .ml-80 { margin-left: 21.33vw !important; }
  .ml-90 { margin-left: 24vw !important; }
  .ml-100 { margin-left: 26.66vw !important; }
}

@media screen and (max-width: 768px) {
  .ml-md-0 { margin-left: 0 !important; }
  .ml-md-10 { margin-left: 2.66vw !important; }
  .ml-md-20 { margin-left: 5.33vw !important; }
  .ml-md-30 { margin-left: 8vw !important; }
  .ml-md-40 { margin-left: 10.66vw !important; }
  .ml-md-50 { margin-left: 13.33vw !important; }
  .ml-md-60 { margin-left: 16vw !important; }
  .ml-md-70 { margin-left: 18.66vw !important; }
  .ml-md-80 { margin-left: 21.33vw !important; }
  .ml-md-90 { margin-left: 24vw !important; }
  .ml-md-100 { margin-left: 26.66vw !important; }
}

.pt-0 { padding-top: 0 !important; }
.pt-10 { padding-top: 10px !important; }
.pt-20 { padding-top: 20px !important; }
.pt-30 { padding-top: 30px !important; }
.pt-40 { padding-top: 40px !important; }
.pt-50 { padding-top: 50px !important; }
.pt-60 { padding-top: 60px !important; }
.pt-70 { padding-top: 70px !important; }
.pt-80 { padding-top: 80px !important; }
.pt-90 { padding-top: 90px !important; }
.pt-100 { padding-top: 100px !important; }
.pt-110 { padding-top: 110px !important; }
.pt-120 { padding-top: 120px !important; }
.pt-130 { padding-top: 130px !important; }
.pt-140 { padding-top: 140px !important; }
.pt-150 { padding-top: 150px !important; }
/*@media screen and (max-width: 768px) {
  .pt-md-0 { padding-top: 0 !important; }
  .pt-md-10 { padding-top: 10px !important; }
  .pt-md-20 { padding-top: 20px !important; }
  .pt-md-30 { padding-top: 30px !important; }
  .pt-md-40 { padding-top: 40px !important; }
  .pt-md-50 { padding-top: 50px !important; }
  .pt-md-60 { padding-top: 60px !important; }
  .pt-md-70 { padding-top: 70px !important; }
  .pt-md-80 { padding-top: 80px !important; }
  .pt-md-90 { padding-top: 90px !important; }
  .pt-md-100 { padding-top: 100px !important; }
}*/
@media screen and (max-width: 768px) {
  .pt-0 { padding-top: 0 !important; }
  .pt-10 { padding-top: 2.66vw !important; }
  .pt-20 { padding-top: 5.33vw !important; }
  .pt-30 { padding-top: 8vw !important; }
  .pt-40 { padding-top: 10.66vw !important; }
  .pt-50 { padding-top: 13.33vw !important; }
  .pt-60 { padding-top: 16vw !important; }
  .pt-70 { padding-top: 18.66vw !important; }
  .pt-80 { padding-top: 21.33vw !important; }
  .pt-90 { padding-top: 24vw !important; }
  .pt-100 { padding-top: 26.66vw !important; }
}

@media screen and (max-width: 768px) {
  .pt-md-0 { padding-top: 0 !important; }
  .pt-md-10 { padding-top: 2.66vw !important; }
  .pt-md-20 { padding-top: 5.33vw !important; }
  .pt-md-30 { padding-top: 8vw !important; }
  .pt-md-40 { padding-top: 10.66vw !important; }
  .pt-md-50 { padding-top: 13.33vw !important; }
  .pt-md-60 { padding-top: 16vw !important; }
  .pt-md-70 { padding-top: 18.66vw !important; }
  .pt-md-80 { padding-top: 21.33vw !important; }
  .pt-md-90 { padding-top: 24vw !important; }
  .pt-md-100 { padding-top: 26.66vw !important; }
}

.pb-0 { padding-bottom: 0 !important; }
.pb-10 { padding-bottom: 10px !important; }
.pb-20 { padding-bottom: 20px !important; }
.pb-30 { padding-bottom: 30px !important; }
.pb-40 { padding-bottom: 40px !important; }
.pb-50 { padding-bottom: 50px !important; }
.pb-60 { padding-bottom: 60px !important; }
.pb-70 { padding-bottom: 70px !important; }
.pb-80 { padding-bottom: 80px !important; }
.pb-90 { padding-bottom: 90px !important; }
.pb-100 { padding-bottom: 100px !important; }
.pb-110 { padding-bottom: 110px !important; }
.pb-120 { padding-bottom: 120px !important; }
.pb-130 { padding-bottom: 130px !important; }
.pb-140 { padding-bottom: 140px !important; }
.pb-150 { padding-bottom: 150px !important; }
/*@media screen and (max-width: 768px) {
  .pb-md-0 { padding-bottom: 0 !important; }
  .pb-md-10 { padding-bottom: 10px !important; }
  .pb-md-20 { padding-bottom: 20px !important; }
  .pb-md-30 { padding-bottom: 30px !important; }
  .pb-md-40 { padding-bottom: 40px !important; }
  .pb-md-50 { padding-bottom: 50px !important; }
  .pb-md-60 { padding-bottom: 60px !important; }
  .pb-md-70 { padding-bottom: 70px !important; }
  .pb-md-80 { padding-bottom: 80px !important; }
  .pb-md-90 { padding-bottom: 90px !important; }
  .pb-md-100 { padding-bottom: 100px !important; }
}*/
@media screen and (max-width: 768px) {
  .pb-0 { padding-bottom: 0 !important; }
  .pb-10 { padding-bottom: 2.66vw !important; }
  .pb-20 { padding-bottom: 5.33vw !important; }
  .pb-30 { padding-bottom: 8vw !important; }
  .pb-40 { padding-bottom: 10.66vw !important; }
  .pb-50 { padding-bottom: 13.33vw !important; }
  .pb-60 { padding-bottom: 16vw !important; }
  .pb-70 { padding-bottom: 18.66vw !important; }
  .pb-80 { padding-bottom: 21.33vw !important; }
  .pb-90 { padding-bottom: 24vw !important; }
  .pb-100 { padding-bottom: 26.66vw !important; }
}

@media screen and (max-width: 768px) {
  .pb-md-0 { padding-bottom: 0 !important; }
  .pb-md-10 { padding-bottom: 2.66vw !important; }
  .pb-md-20 { padding-bottom: 5.33vw !important; }
  .pb-md-30 { padding-bottom: 8vw !important; }
  .pb-md-40 { padding-bottom: 10.66vw !important; }
  .pb-md-50 { padding-bottom: 13.33vw !important; }
  .pb-md-60 { padding-bottom: 16vw !important; }
  .pb-md-70 { padding-bottom: 18.66vw !important; }
  .pb-md-80 { padding-bottom: 21.33vw !important; }
  .pb-md-90 { padding-bottom: 24vw !important; }
  .pb-md-100 { padding-bottom: 26.66vw !important; }
}

.pr-0 { padding-right: 0 !important; }
.pr-10 { padding-right: 10px !important; }
.pr-20 { padding-right: 20px !important; }
.pr-30 { padding-right: 30px !important; }
.pr-40 { padding-right: 40px !important; }
.pr-50 { padding-right: 50px !important; }
.pr-60 { padding-right: 60px !important; }
.pr-70 { padding-right: 70px !important; }
.pr-80 { padding-right: 80px !important; }
.pr-90 { padding-right: 90px !important; }
.pr-100 { padding-right: 100px !important; }
/*@media screen and (max-width: 768px) {
  .pr-md-0 { padding-right: 0 !important; }
  .pr-md-10 { padding-right: 10px !important; }
  .pr-md-20 { padding-right: 20px !important; }
  .pr-md-30 { padding-right: 30px !important; }
  .pr-md-40 { padding-right: 40px !important; }
  .pr-md-50 { padding-right: 50px !important; }
  .pr-md-60 { padding-right: 60px !important; }
  .pr-md-70 { padding-right: 70px !important; }
  .pr-md-80 { padding-right: 80px !important; }
  .pr-md-90 { padding-right: 90px !important; }
  .pr-md-100 { padding-right: 100px !important; }
}*/
@media screen and (max-width: 768px) {
  .pr-0 { padding-right: 0 !important; }
  .pr-10 { padding-right: 2.66vw !important; }
  .pr-20 { padding-right: 5.33vw !important; }
  .pr-30 { padding-right: 8vw !important; }
  .pr-40 { padding-right: 10.66vw !important; }
  .pr-50 { padding-right: 13.33vw !important; }
  .pr-60 { padding-right: 16vw !important; }
  .pr-70 { padding-right: 18.66vw !important; }
  .pr-80 { padding-right: 21.33vw !important; }
  .pr-90 { padding-right: 24vw !important; }
  .pr-100 { padding-right: 26.66vw !important; }
}

@media screen and (max-width: 768px) {
  .pr-md-0 { padding-right: 0 !important; }
  .pr-md-10 { padding-right: 2.66vw !important; }
  .pr-md-20 { padding-right: 5.33vw !important; }
  .pr-md-30 { padding-right: 8vw !important; }
  .pr-md-40 { padding-right: 10.66vw !important; }
  .pr-md-50 { padding-right: 13.33vw !important; }
  .pr-md-60 { padding-right: 16vw !important; }
  .pr-md-70 { padding-right: 18.66vw !important; }
  .pr-md-80 { padding-right: 21.33vw !important; }
  .pr-md-90 { padding-right: 24vw !important; }
  .pr-md-100 { padding-right: 26.66vw !important; }
}

.pl-0 { padding-left: 0 !important; }
.pl-10 { padding-left: 10px !important; }
.pl-20 { padding-left: 20px !important; }
.pl-30 { padding-left: 30px !important; }
.pl-40 { padding-left: 40px !important; }
.pl-50 { padding-left: 50px !important; }
.pl-60 { padding-left: 60px !important; }
.pl-70 { padding-left: 70px !important; }
.pl-80 { padding-left: 80px !important; }
.pl-90 { padding-left: 90px !important; }
.pl-100 { padding-left: 100px !important; }
/*@media screen and (max-width: 768px) {
  .pl-md-0 { padding-left: 0 !important; }
  .pl-md-10 { padding-left: 10px !important; }
  .pl-md-20 { padding-left: 20px !important; }
  .pl-md-30 { padding-left: 30px !important; }
  .pl-md-40 { padding-left: 40px !important; }
  .pl-md-50 { padding-left: 50px !important; }
  .pl-md-60 { padding-left: 60px !important; }
  .pl-md-70 { padding-left: 70px !important; }
  .pl-md-80 { padding-left: 80px !important; }
  .pl-md-90 { padding-left: 90px !important; }
  .pl-md-100 { padding-left: 100px !important; }
}*/
@media screen and (max-width: 768px) {
  .pl-0 { padding-left: 0 !important; }
  .pl-10 { padding-left: 2.66vw !important; }
  .pl-20 { padding-left: 5.33vw !important; }
  .pl-30 { padding-left: 8vw !important; }
  .pl-40 { padding-left: 10.66vw !important; }
  .pl-50 { padding-left: 13.33vw !important; }
  .pl-60 { padding-left: 16vw !important; }
  .pl-70 { padding-left: 18.66vw !important; }
  .pl-80 { padding-left: 21.33vw !important; }
  .pl-90 { padding-left: 24vw !important; }
  .pl-100 { padding-left: 26.66vw !important; }
}

@media screen and (max-width: 768px) {
  .pl-md-0 { padding-left: 0 !important; }
  .pl-md-10 { padding-left: 2.66vw !important; }
  .pl-md-20 { padding-left: 5.33vw !important; }
  .pl-md-30 { padding-left: 8vw !important; }
  .pl-md-40 { padding-left: 10.66vw !important; }
  .pl-md-50 { padding-left: 13.33vw !important; }
  .pl-md-60 { padding-left: 16vw !important; }
  .pl-md-70 { padding-left: 18.66vw !important; }
  .pl-md-80 { padding-left: 21.33vw !important; }
  .pl-md-90 { padding-left: 24vw !important; }
  .pl-md-100 { padding-left: 26.66vw !important; }
}