@charset "UTF-8";
:root {
  --themeColor:#2A4F9A;
  --themeColor-lt:#fcf1ed;
  --pointColor:#ac8839;
  --linkColor:#4086DA;
  --bgColor:#f7f7f7;
  --fontColor: #222222;
  --w:1280px;
  --side: calc((100% - (var(--w))) / 2);
  --widthXL:1440px;
  --widthLG:1025px;
  --widthTab:768px;
  --font-go-base: "Noto Sans JP","Hiragino Kaku Gothic Pro" ,"游ゴシック体", "Yu Gothic Medium" , "Yu Gothic", Meiryo ,sans-serif;
  --font-mi-base: "Hiragino Mincho ProN", "Yu Mincho","YuMincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  --font-zenmaru: "Zen Maru Gothic","Noto Sans JP","Hiragino Kaku Gothic Pro" ,"游ゴシック体", "Yu Gothic Medium" , "Yu Gothic", Meiryo ,sans-serif;
}

html {
  color: #000;
  background: #FFF;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, select, main, address, span {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 140%;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
  box-sizing: border-box;
}

a, span, details, summary {
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

strong {
  font-style: normal;
}

ul li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: "";
}

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-bottom;
}

sub {
  vertical-align: text-top;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input, textarea, select {
  font-size: 100%;
}

legend {
  color: #000;
}

figure {
  margin: 0;
}

img {
  backface-visibility: hidden;
}

@media (min-width: 1025px) {
  html {
    font-size: clamp(3px, 0.78125vw, 10px);
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  html {
    font-size: clamp(3px, 0.9765625vw, 10px);
  }
}
@media (max-width: 767px) {
  html {
    font-size: clamp(3px, 2.6666666667vw, 11.34px);
  }
}

body {
  font-size: 1.6rem;
  color: var(--fontColor);
  font-family: var(--font-go-base);
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

@media (max-width: 767px) {
  .for-pc {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .for-sp {
    display: none !important;
  }
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: var(--fontColor);
  text-decoration: none;
  transition: all 0.3s;
}
a img {
  opacity: 1;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  a:hover img {
    opacity: 0.8;
  }
}
@media (max-width: 767px) {
  a:active img {
    opacity: 0.8;
  }
}

p {
  line-height: 190%;
}
p + p {
  margin-top: 0.75rem;
}
@media (min-width: 768px) {
  p a:hover {
    color: var(--linkColor);
  }
}
@media (max-width: 767px) {
  p a:active {
    color: var(--linkColor);
  }
}

ol {
  padding-left: 1.25rem;
}

ruby rt {
  font-size: 40%;
}

em {
  color: #e13838;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=password],
input[type=number],
input[type=date],
input[type=time],
textarea {
  appearance: none;
}

select {
  color: var(--fontColor);
}

.btn-round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 4rem;
  border-radius: 5rem;
  min-width: 30rem;
  max-width: 90%;
  height: 6rem;
  background: var(--themeColor);
  color: #fff;
  font-weight: bold;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .btn-round {
    min-width: 22rem;
    height: 4.5rem;
    font-size: 1.6rem;
  }
}
@media (hover: hover) {
  .btn-round:hover {
    opacity: 0.8;
  }
}
.btn-round::after {
  content: "";
  width: 2.3rem;
  height: 1.5rem;
  background: url(../img/common/icon-arrow.svg) center center/contain no-repeat;
}

.text-s {
  font-size: 85%;
}

.text-l {
  font-size: 120%;
}

.cl-red {
  color: #ff0000;
}

.list-normal > li {
  margin: 0 0 1rem;
  text-indent: -1.6rem;
  padding-left: 1.6rem;
}
.list-normal > li::before {
  content: "●";
  margin-right: 0.5rem;
  font-size: 1rem;
  font-family: sans-serif;
  color: var(--themeColor);
}

.list-number {
  padding: 0 0 0 2.5rem;
}
.list-number > li {
  list-style: decimal;
  margin: 0 0 1rem;
}

.list-numbold {
  counter-reset: li;
  list-style: none;
  padding-left: 2.5rem;
}
.list-numbold > li::before {
  margin: 0 0.5rem 0 -2rem;
  width: 2.5rem;
  content: counter(li) ". ";
  counter-increment: li;
  font-weight: bold;
}

.al-r {
  text-align: right;
}

.al-c {
  text-align: center;
}

.full {
  width: 100%;
}

.size-30 {
  width: 30%;
}
@media (max-width: 767px) {
  .size-30 {
    width: 70%;
  }
}

.size-60 {
  width: 60%;
}
@media (max-width: 767px) {
  .size-60 {
    width: 100%;
  }
}

.indent {
  width: 97%;
  margin: 0 0 0 auto;
}

.section-small {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.section-1 {
  margin-top: 3rem;
  margin-bottom: 4rem;
}
.section-1:first-child {
  margin-top: 0;
}

.section-2 {
  margin-top: 4rem;
  margin-bottom: 7rem;
}
.section-2:first-child {
  margin-top: 0;
}

.section-3 {
  margin-top: 4rem;
  margin-bottom: 10rem;
}
.section-3:first-child {
  margin-top: 0;
}

.section-center {
  max-width: var(--w);
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) and (max-width: 1439px) {
  .section-center {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .section-center-sp {
    width: 90% !important;
    margin-left: auto;
    margin-right: auto;
  }
}

.nowrap {
  white-space: nowrap;
}

.table-1 {
  border-collapse: collapse;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
}
.table-1 tr {
  border-bottom: 0.2rem dotted #ccc;
}
.table-1 th, .table-1 td {
  padding: 1.3rem;
}
@media (max-width: 767px) {
  .table-1 th, .table-1 td {
    font-size: 1.4rem;
  }
}
.table-1 th {
  background: #fcfbf5;
  color: var(--themeColor);
}
.table-1 a {
  color: var(--linkColor);
}
@media (max-width: 767px) {
  .table-1.is-sideTitle th {
    padding: 1rem 0;
  }
  .table-1.is-sideTitle td {
    padding: 2rem 0;
  }
}

@media (max-width: 767px) {
  .is-sideTitle tr {
    display: block;
  }
  .is-sideTitle th, .is-sideTitle td {
    display: block;
    width: 100%;
    padding: 0;
  }
  .is-sideTitle th {
    margin-bottom: 0.5rem;
    font-weight: bold;
  }
}

.wfix {
  table-layout: fixed;
}

@media (max-width: 767px) {
  .tableScrollWrap {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    margin-right: -5vw;
    padding-right: 5vw;
  }
}

.title-bold {
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  font-weight: bold;
}

.title-l {
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .title-l {
    margin-bottom: 2rem;
  }
}
.title-l-ja {
  display: block;
  margin-bottom: 1.2rem;
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--themeColor);
  letter-spacing: 1em;
  margin-left: 1em;
}
@media (max-width: 767px) {
  .title-l-ja {
    font-size: 2.4rem;
    letter-spacing: 0.8em;
    margin-left: 0.8em;
  }
}
.title-l-ja.is-no-tracking {
  letter-spacing: normal;
  margin-left: 0;
}
.title-l-en {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-weight: 500;
  color: var(--themeColor);
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .title-l-en {
    font-size: 1.4rem;
  }
}
.title-l-en::before, .title-l-en::after {
  content: "";
  display: inline-block;
  width: 10rem;
  height: 1px;
  background: var(--themeColor);
}
@media (max-width: 767px) {
  .title-l-en::before, .title-l-en::after {
    width: 5rem;
  }
}

#container {
  background: #E1F5FF;
}

main {
  position: relative;
  z-index: 1;
  padding-top: 12rem;
}
@media (max-width: 767px) {
  main {
    padding-top: 6rem;
  }
}

.contents {
  padding-bottom: 20rem;
}

.pageTitle {
  position: relative;
  margin-bottom: 9.3rem;
  width: 160rem;
  max-width: 95%;
  margin-inline: auto 0;
}
@media (max-width: 767px) {
  .pageTitle {
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100% - 2rem);
    width: calc(100% - 2rem);
    margin-bottom: 4rem;
  }
}
.pageTitle-bg {
  border-radius: 100rem 0 0 100rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .pageTitle-bg {
    border-radius: 150rem;
    height: 15rem;
    margin-top: 7.5rem;
  }
}
.pageTitle-text {
  position: absolute;
  bottom: -1px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 12rem;
  padding: 4rem 0 0 7rem;
  color: #2A4F9A;
  background: #E1F5FF;
  font-size: 4rem;
  font-family: var(--font-zenmaru);
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 1439px) {
  .pageTitle-text {
    font-size: 3rem;
    width: auto;
    height: 8rem;
    padding: 3rem 0 0 5rem;
  }
}
@media (max-width: 767px) {
  .pageTitle-text {
    top: -5.5rem;
    bottom: auto;
    left: 0;
    width: 100%;
    text-align: center;
    background: transparent;
    font-size: 2.7rem;
    padding: 0;
    height: auto;
  }
}
.pageTitle-text::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: calc(100% - 1px);
  bottom: -1px;
  width: 12rem;
  height: 100%;
  background: url(../img/common/bg-h1.svg) right top/auto 100% no-repeat;
}
@media (min-width: 768px) and (max-width: 1439px) {
  .pageTitle-text::after {
    width: 8rem;
  }
}
@media (max-width: 767px) {
  .pageTitle-text::after {
    display: none;
  }
}

.footer {
  position: relative;
  margin-top: -24rem;
  padding: 26rem 0 6rem;
  background: url(../img/common/bg-footer.svg) center top/100% 100% no-repeat;
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 768px) and (max-width: 1439px) {
  .footer {
    background-size: 150% 100%;
  }
}
@media (max-width: 767px) {
  .footer {
    margin-top: -6rem;
    padding-top: 10rem;
    background-image: url(../img/common/bg-footer-sp.svg);
  }
}
.footer-inner {
  pointer-events: all;
}

.footerInfo {
  color: #fff;
  text-align: center;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.footerInfo-logo {
  width: 40rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .footerInfo-logo {
    width: 24.2rem;
  }
}
.footerInfo-address {
  line-height: 2;
  text-align: right;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .footerInfo-address {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .footerInfo-address {
    font-size: 1.5rem;
    text-align: center;
  }
}
.footerInfo-address a {
  color: #fff;
}

.footerNavi {
  margin-bottom: 3.5rem;
}
@media (max-width: 767px) {
  .footerNavi {
    margin-bottom: 4rem;
  }
}
.footerNavi-ul {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .footerNavi-ul {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .footerNavi-ul-li {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
  }
}
.footerNavi-ul-li a {
  display: block;
  padding: 0.5rem 2rem;
  color: #fff;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .footerNavi-ul-li a {
    padding-inline: 1.2rem;
  }
}
@media (max-width: 767px) {
  .footerNavi-ul-li a {
    padding-block: 1rem;
  }
}
@media (hover: hover) {
  .footerNavi-ul-li a:hover {
    opacity: 0.6;
  }
}

.footerCopy {
  display: block;
  text-align: center;
  color: #fff;
}
@media (max-width: 767px) {
  .footerCopy {
    font-size: 1rem;
  }
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: #E1F5FF;
}
.header-inner {
  height: 12rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2.5rem;
  gap: 3%;
}
@media (min-width: 1025px) and (max-width: 1439px) {
  .header-inner {
    gap: 1%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .header-inner {
    height: 6rem;
  }
}
@media (max-width: 767px) {
  .header-inner {
    height: 6rem;
    padding: 1rem 1.5rem;
  }
}
@media (min-width: 1025px) and (max-width: 1439px) {
  .header-logo {
    max-width: 280px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .header-logo {
    width: 22vw;
  }
}
@media (max-width: 767px) {
  .header-logo {
    width: 21rem;
  }
}

@media (max-width: 1150px) {
  .gNavi {
    position: fixed;
    right: 0;
    left: 0;
    top: 5.9rem;
    width: 100%;
    height: 0;
    margin: 0;
    background: #E1F5FF;
    transform: translateY(0);
    z-index: 5;
    overflow-y: scroll;
    transition: linear 0.25s;
    opacity: 0;
  }
  .dwMenu-active .gNavi {
    transform: translateY(0);
    opacity: 1;
    height: calc(100vh - 5.9rem);
  }
}
.gNavi-ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  height: 8rem;
}
@media (max-width: 1150px) {
  .gNavi-ul {
    display: block;
    padding: 5rem 0 8rem;
  }
}
.gNavi-ul-li {
  font-weight: 500;
  font-size: 1.8rem;
}
@media (max-width: 1150px) {
  .gNavi-ul-li {
    color: var(--themeColor);
    padding-left: 5%;
    padding-right: 5%;
  }
  .gNavi-ul-li:first-child a {
    border-top: none;
  }
}
.gNavi-ul-li a {
  display: flex;
  padding: 1rem 1.8rem;
}
@media (max-width: 1150px) {
  .gNavi-ul-li a {
    color: var(--fontColor);
    padding: 1.5rem 0;
    border-top: 1px solid var(--themeColor);
    justify-content: space-between;
  }
}
@media (hover: hover) {
  .gNavi-ul-li a:hover {
    color: var(--linkColor);
  }
}
@media (max-width: 1150px) {
  .gNavi-ul-li a::after {
    content: "";
    display: inline-block;
    width: 27px;
    height: 15px;
    margin: 0.6rem 0 0 0;
    background: center center/contain no-repeat url("../img/common/icon-arrow-nav.svg");
  }
}
.gNavi-ul-li.is-current a {
  color: var(--linkColor);
}
.gNavi-ul-li.is-current a::before {
  background: var(--linkColor);
}

.filter {
  position: fixed;
  width: 100%;
  height: 120%;
  bottom: 0;
  left: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 4;
}
.dwMenu-active .filter {
  background: rgba(0, 0, 0, 0.193);
  pointer-events: auto;
}

.dwMenu {
  position: fixed;
  top: 0;
  right: 0;
  border: none;
  background: linear-gradient(90deg, #7CD9FC 0%, #3A7CD6 100%);
  cursor: pointer;
  display: flex;
  padding: 0;
  z-index: 5;
  border-radius: 0 0 0 1rem;
  display: none;
}
@media (max-width: 1150px) {
  .dwMenu {
    display: flex;
  }
}
.dwMenu-hamburger {
  width: 5.2rem;
  height: 5.2rem;
  cursor: pointer;
  transition: opacity 0.25s ease;
}
@media (min-width: 768px) {
  .dwMenu-hamburger:hover {
    opacity: 0.7;
  }
}
@media (max-width: 1150px) {
  .dwMenu-hamburger {
    width: 6rem;
    height: 6rem;
  }
  .dwMenu-hamburger:hover {
    opacity: 0.7;
  }
}
.dwMenu-hamburger span {
  position: absolute;
  left: 2rem;
  width: 2rem;
  height: 2px;
  background: #fff;
  border: none;
  transition: all 0.35s ease;
  border-radius: 0.3rem;
}
.dwMenu-hamburger .top {
  top: 2.1rem;
}
.dwMenu-active .dwMenu-hamburger .top {
  top: 1.5rem;
  transform: translateY(1.05rem) translateX(0) rotate(-28deg);
}
.dwMenu-hamburger .bottom {
  top: 2.8rem;
}
.dwMenu-active .dwMenu-hamburger .bottom {
  top: 3.6rem;
  transform: translateY(-1.05rem) translateX(0) rotate(28deg);
}
.dwMenu-menu {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}