@charset "UTF-8";
:root {
  background-color: var(--color-project-aqua);
  color: var(--color-black);
}

*:focus {
  outline: auto;
}

html {
  font-size: clamp(1rem, 0.766rem + 1vw, 1.125rem);
  font-weight: 500;
  height: 100%;
  line-break: strict;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, ul, dl {
  font-weight: normal;
  margin: 0;
  padding: 0;
}

ul, ol {
  padding: 0;
  margin: 0;
  list-style-type: none;
  overflow: hidden;
}

a {
  outline: 0;
  text-decoration: none;
}

p, dt, dd, li {
  line-height: 1.75;
  margin: 0;
  padding: 0;
}
p a, p span, dt a, dt span, dd a, dd span, li a, li span {
  color: inherit;
  font-size: inherit;
}

table {
  border-collapse: collapse;
  width: 100%;
}
table th, table td {
  padding: 0.5em 1em;
}
table th dt, table th dd, table th li, table th a, table th span, table td dt, table td dd, table td li, table td a, table td span {
  font-size: inherit;
}

figure {
  margin: 0;
}

.for-large {
  display: none;
}

.for-small {
  display: block;
}

.hover-fade {
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: var(--animate-duration);
  transition-duration: var(--animate-duration);
  -webkit-transition-timing-function: var(--animate-easing);
  transition-timing-function: var(--animate-easing);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.hover-fade:hover {
  opacity: var(--animate-opacity);
}

.hover-underline:hover {
  text-decoration: underline;
}

@font-face {
  font-family: "iconfonts";
  src: local("iconfonts"), url("../icon/iconfonts.eot");
  src: local("iconfonts"), url("../icon/iconfonts.eot") format("embedded-opentype");
  src: local("iconfonts"), url("../icon/iconfonts.woff2") format("woff2");
  src: local("iconfonts"), url("../icon/iconfonts.woff") format("woff");
  src: local("iconfonts"), url("../icon/iconfonts.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.img-fit {
  height: auto;
  width: 100%;
}

.ol-lower {
  list-style-type: lower-alpha;
  overflow: visible;
  padding-left: 2rem;
}
.ol-lower li:last-child {
  margin-bottom: 0;
}

.ol-number {
  list-style-type: decimal;
  overflow: visible;
  padding-left: 2rem;
}
.ol-number li:last-child {
  margin-bottom: 0;
}

.ol-upper {
  list-style-type: upper-alpha;
  overflow: visible;
  padding-left: 2rem;
}
.ol-upper li:last-child {
  margin-bottom: 0;
}

.table-background thead th {
  background-color: #eeeeee;
}
.table-background tbody tr:nth-child(even) {
  background-color: #eeeeee;
}

.table-border {
  border: 1px solid var(--color-border);
  border-bottom: none;
}
.table-border th, .table-border td {
  border-bottom: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}

.text-bold {
  font-weight: bold;
}

.text-center-for-large {
  text-align: left;
}

.text-center-for-small {
  text-align: center;
}

.text-center {
  text-align: center;
}
.text-center img {
  margin-left: auto;
  margin-right: auto;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  display: inline-block;
  white-space: nowrap;
}

.text-right-for-large {
  text-align: left;
}

.text-right-for-small {
  text-align: right;
}

.text-right {
  text-align: right;
}
.text-right img {
  margin-left: auto;
  margin-right: 0;
}

.ul-disc {
  overflow: hidden;
}
.ul-disc li {
  padding-left: 1em;
}
.ul-disc li:last-child {
  margin-bottom: 0;
}
.ul-disc li:before {
  content: "・";
  margin-left: -1rem;
  width: 1rem;
}

.ul-halfnote {
  overflow: hidden;
}
.ul-halfnote li {
  padding-left: 1em;
}
.ul-halfnote li:last-child {
  margin-bottom: 0;
}
.ul-halfnote li:before {
  content: "*";
  margin-left: -1rem;
  width: 1rem;
}

.ul-hyphen {
  overflow: hidden;
}
.ul-hyphen li {
  padding-left: 1em;
}
.ul-hyphen li:last-child {
  margin-bottom: 0;
}
.ul-hyphen li:before {
  content: "-";
  margin-left: -1rem;
  width: 1rem;
}

.ul-note {
  overflow: hidden;
}
.ul-note li {
  padding-left: 1em;
}
.ul-note li:last-child {
  margin-bottom: 0;
}
.ul-note li:before {
  content: "※";
  margin-left: -1rem;
  width: 1rem;
}

.layout-max {
  margin-right: 5.3vw;
  margin-left: 5.3vw;
  width: auto;
}

.layout-primary {
  margin-right: 5.3vw;
  margin-left: 5.3vw;
  width: auto;
}

.layout-secondary {
  margin-right: 5.3vw;
  margin-left: 5.3vw;
  width: auto;
}

.js-popin {
  -webkit-transition-property: opacity, -webkit-filter, -webkit-transform;
  transition-property: opacity, -webkit-filter, -webkit-transform;
  transition-property: opacity, filter, transform;
  transition-property: opacity, filter, transform, -webkit-filter, -webkit-transform;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.3, 1.275);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.3, 1.275);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 0;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.js-popin.-show {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.site-box-inner {
  margin: auto;
  padding: 3rem var(--margin-side-small);
}
.site-box-inner > .site-heading-simple {
  margin-bottom: 1.375rem;
}

.site-box-shape {
  background-color: var(--color-white);
  clip-path: polygon(0 24px, 32px 0, calc(100% - 24px) 0, 100% 32px, 100% calc(100% - 24px), calc(100% - 32px) 100%, 24px 100%, 0 calc(100% - 32px));
}

.site-button-text {
  -webkit-transition-property: background-size;
  transition-property: background-size;
  -webkit-transition-duration: 0.45s;
  transition-duration: 0.45s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 89, 175, 0)), color-stop(0%, rgb(0, 89, 175)));
  background: linear-gradient(rgba(0, 89, 175, 0) 0%, rgb(0, 89, 175) 0%);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  color: var(--color-project-link);
  text-decoration: none;
}
.site-button-text:hover {
  background-position: right bottom;
  background-size: 0 1px;
}

.site-heading-simple {
  color: var(--color-project-blue);
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  font-size: 1.4375rem;
  font-weight: 900;
  letter-spacing: 0.025em;
  line-height: 1.3;
}
.site-heading-simple.-center-all {
  text-align: center;
}
.site-heading-simple.-light {
  color: var(--color-white);
}

.site-text-standard {
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  line-height: 2.4;
}
.site-text-standard.-lead {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 2.6;
  text-align: center;
}
.site-text-standard.-center-all {
  text-align: center;
}

.site-walk {
  -webkit-animation: walkImage 1.6s infinite steps(4);
  animation: walkImage 1.6s infinite steps(4);
  background: url(../images/common/image_walk.png) 0 0 no-repeat;
  background-size: 400% 100%;
  -webkit-transition: none;
  transition: none;
  height: 11.375rem;
  width: 4.875rem;
}

@-webkit-keyframes walkImage {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 133.333%;
  }
}

@keyframes walkImage {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 133.333%;
  }
}
.site-block {
  margin: 7.5rem 0;
}
.site-block.-narrow {
  margin: 2.5rem 0;
}

.site-footer {
  background-color: var(--color-white);
  margin-top: 12.5rem;
  padding: 4.625rem 0 2.375rem;
  position: relative;
}
.site-footer > .site-walk {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -8.625rem);
  transform: translate(-50%, -8.625rem);
}
.site-footer > .layout-max {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  gap: 2.5rem;
}
.site-footer > .layout-max > .address {
  text-align: center;
}
.site-footer > .layout-max > .address > .logo {
  line-height: 0;
  margin-bottom: 1rem;
}
.site-footer > .layout-max > .address > .copyright {
  font-style: normal;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
}
.site-footer > .layout-max > .privacy {
  text-align: center;
}
.site-footer > .layout-max > .privacy > .item {
  -webkit-transition-property: background-size, color;
  transition-property: background-size, color;
  -webkit-transition-duration: 0.45s;
  transition-duration: 0.45s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 89, 175, 0)), color-stop(0%, rgb(0, 89, 175)));
  background: linear-gradient(rgba(0, 89, 175, 0) 0%, rgb(0, 89, 175) 0%);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 0 1px;
  display: inline-block;
  font-size: 0.7777777778rem;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.site-footer > .layout-max > .privacy > .item:hover {
  background-position: left bottom;
  background-size: 100% 1px;
  color: var(--color-project-link);
}
@media screen and (min-width: 768px) {
  html {
    font-size: clamp(1rem, 0.458rem + 0.667vw, 1.25rem);
  }
  .for-large {
    display: block;
  }
  .for-small {
    display: none;
  }
  .text-center-for-large {
    text-align: center;
  }
  .text-center-for-small {
    text-align: left;
  }
  .text-right-for-large {
    text-align: right;
  }
  .text-right-for-small {
    text-align: left;
  }
  .layout-max {
    max-width: calc(var(--content-max) + 8vw);
    margin-right: auto;
    margin-left: auto;
    padding-right: 4vw;
    padding-left: 4vw;
  }
  .layout-primary {
    margin-right: auto;
    margin-left: auto;
    max-width: calc(var(--content-primary) + 8vw);
    padding-right: 4vw;
    padding-left: 4vw;
  }
  .layout-secondary {
    margin-right: auto;
    margin-left: auto;
    max-width: calc(var(--content-secondary) + 8vw);
    padding-right: 4vw;
    padding-left: 4vw;
  }
  .site-box-inner {
    max-width: calc(52.4444444444rem + var(--margin-side) * 2);
    padding: 4.4444444444rem var(--margin-side);
  }
  .site-box-inner > .site-heading-simple {
    margin-bottom: 1.7222222222rem;
  }
  .site-box-shape {
    clip-path: polygon(0 32px, 40px 0, calc(100% - 32px) 0, 100% 40px, 100% calc(100% - 32px), calc(100% - 40px) 100%, 32px 100%, 0 calc(100% - 40px));
  }
  .site-heading-simple {
    font-size: 2.3888888889rem;
  }
  .site-heading-simple.-center {
    text-align: center;
  }
  .site-text-standard {
    font-size: 1rem;
  }
  .site-text-standard.-lead {
    font-size: 1.1666666667rem;
    text-align: left;
  }
  .site-text-standard.-center {
    text-align: center;
  }
  .site-walk {
    height: 14.5555555556rem;
    width: 6.2222222222rem;
  }
  .site-block {
    margin: 6.6666666667rem 0;
  }
  .site-block.-narrow {
    margin: 4.4444444444rem 0;
  }
  .site-footer {
    margin-top: 14.5555555556rem;
    padding: 2.2222222222rem 0 3.1111111111rem;
  }
  .site-footer > .site-walk {
    -webkit-transform: translate(-50%, -10.6666666667rem);
    transform: translate(-50%, -10.6666666667rem);
  }
  .site-footer > .layout-max {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2.2222222222rem;
  }
  .site-footer > .layout-max > .address {
    text-align: left;
  }
  .site-footer > .layout-max > .address > .logo {
    margin-bottom: 1.3333333333rem;
  }
  .site-footer > .layout-max > .privacy {
    text-align: right;
  }
}