@charset "UTF-8";
*, :after, :before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: 0;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[hidden], template {
  display: none;
}

/*
* foundation/base.css
*/
html {
  display: flex;
  width: 100%;
  font-size: 62.5%;
}

body {
  display: flex;
  width: 100%;
  padding: 0;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  line-break: strict;
  word-break: break-word;
  overflow-wrap: break-word;
  background-color: #fff;
  color: #1F3336;
}
body.is-gnav-open {
  overflow: hidden;
}

button,
select {
  cursor: pointer;
}
button[disabled],
select[disabled] {
  cursor: default;
}

em {
  font-style: normal;
}

/*
* layout/l-wrap.css
*/
.l-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}
.l-wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #EBEBEB calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #EBEBEB calc(100% - 1px));
  background-size: 36px 36px;
  background-repeat: repeat;
  background-position: top center;
}
@media screen and (max-width: 767.98px) {
  .l-wrap::before {
    background-size: 20px 20px;
  }
}

/*
* layout/l-header.css
*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 100%;
  line-height: 1.2857142857;
  background: #fff;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.047);
}
@media screen and (max-width: 767.98px) {
  .l-header {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) {
  .l-header {
    font-size: 1.4rem;
  }
}
.l-header__inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  width: calc(100% - 80px);
  height: 100px;
}
@media screen and (max-width: 767.98px) {
  .l-header__inner {
    justify-content: space-between;
    width: calc(100% - 40px);
    height: 48px;
  }
}

.l-header__logo {
  transition: opacity 0.3s linear;
}
@media (any-hover: hover) {
  .l-header__logo:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767.98px) {
  .l-header__logo {
    width: 28.5714285714%;
    max-width: 100px;
    margin-left: 6px;
  }
}
@media screen and (min-width: 768px) {
  .l-header__logo {
    max-width: 159px;
  }
}
.l-header__logo-img {
  width: 100%;
}

.l-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
  background: url("../img/common/btn_header_hamburger.svg?d=202505261000") no-repeat center;
  background-size: contain;
  transition: opacity 0.3s linear;
}
@media (any-hover: hover) {
  .l-header__hamburger:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767.98px) {
  .l-header__hamburger {
    display: flex;
  }
}
body.is-gnav-open .l-header__hamburger {
  background-image: url("../img/common/btn_header_hamburger_close.svg?d=202505261000");
}
.l-header__hamburger-txt {
  position: absolute;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  visibility: hidden;
}

.l-header__spacer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: #E2F3FD;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #EBEBEB calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #EBEBEB calc(100% - 1px));
  background-size: 36px 36px;
  background-repeat: repeat;
  background-position: top center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s linear;
}
@media screen and (max-width: 767.98px) {
  .l-header__spacer {
    background-size: 20px 20px;
  }
}
body.is-gnav-open .l-header__spacer {
  opacity: 1;
  visibility: visible;
}

.l-header__menu {
  top: 100px;
  height: calc(100% - 100px);
}
@media screen and (max-width: 767.98px) {
  .l-header__menu {
    position: fixed;
    left: 0;
    top: 48px;
    height: calc(100% - 48px);
    width: 100%;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    z-index: 100;
    outline: none;
    pointer-events: none;
  }
}
@media screen and (min-width: 768px) {
  .l-header__menu {
    position: static;
    display: flex;
    align-items: center;
    flex: 1;
    height: auto;
  }
}
@media screen and (max-width: 767.98px) {
  body.is-gnav-open .l-header__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media screen and (max-width: 767.98px) {
  .l-header__nav {
    display: block;
    width: calc(100% - 80px);
    margin-inline: auto;
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 768px) {
  .l-header__nav {
    margin-left: 50px;
    flex: 1 1 0%;
  }
}

.l-header__nav-list1 {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767.98px) {
  .l-header__nav-list1 {
    flex-direction: column;
    gap: 40px;
    width: 100%;
    padding-top: 52px;
  }
}
@media screen and (min-width: 768px) {
  .l-header__nav-list1 {
    gap: 32px;
  }
}

@media screen and (max-width: 767.98px) {
  .l-header__nav-list1-item {
    width: 100%;
  }
}

.l-header__nav-list1-link {
  font-weight: bold;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s linear;
}
@media screen and (max-width: 767.98px) {
  .l-header__nav-list1-link {
    display: inline-flex;
  }
}
@media (any-hover: hover) {
  .l-header__nav-list1-link:hover {
    opacity: 0.7;
  }
}
.l-header__nav-list1-link:focus, .l-header__nav-list1-link:focus-visible {
  outline: solid 3px;
}

.l-header-loop {
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .l-header-loop {
    display: none;
  }
}

/*
* layout/l-footer.css
*/
.l-footer {
  position: relative;
}

.l-footer-note {
  font-weight: 500;
  color: #656E6F;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 767.98px) {
  .l-footer-note {
    font-size: 1.2rem;
    padding: 1.25em 0;
  }
}
@media screen and (min-width: 768px) {
  .l-footer-note {
    padding: 1.8125em 0;
  }
}

.l-footer__info {
  background: #0AA145;
  width: 100%;
}

.l-footer__info-inner {
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .l-footer__info-inner {
    padding: 6.8rem 0 5.5rem;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__info-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    max-width: 700px;
    width: calc(100% - 80px);
    padding: 11.3rem 0 8.5rem;
  }
}

.l-footer__about {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 4.2rem 0;
  max-width: 44rem;
}
@media screen and (max-width: 559.98px) {
  .l-footer__about {
    max-width: 0px;
  }
}
@media screen and (max-width: 767.98px) {
  .l-footer__about {
    gap: 2.6rem 0;
    width: calc(100% - 40px);
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__about {
    max-width: none;
  }
}

.l-footer__about-title {
  display: block;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .l-footer__about-title {
    width: min(100%, 47.3rem);
    margin-left: 0.6rem;
  }
}
.l-footer__about-title-img {
  max-width: 100%;
}

.l-footer__about-desc {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5714285714em;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 767.98px) {
  .l-footer__about-desc {
    font-size: 1.4rem;
    line-height: 1.5714285714em;
    margin-top: 0.5714285714em;
  }
}

.l-footer__contact {
  flex: 0 0 32.7rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767.98px) {
  .l-footer__contact {
    width: calc(100% - 40px);
    margin: 3.1rem auto 0;
  }
}

.l-footer__btn-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  position: relative;
}

.l-footer__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1.05em;
  width: min(100%, 16.35em);
  min-height: 3.6em;
  border: none;
  border-radius: 0.75em;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  background: #004098;
  position: relative;
  color: #fff;
  transition-property: background, color;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
@media screen and (max-width: 767.98px) {
  .l-footer__btn {
    width: min(100%, 15.8333333333em);
    min-height: 3.7777777778em;
    font-size: 1.8rem;
    border-radius: 0.8333333333em;
  }
}
@media (any-hover: hover) {
  .l-footer__btn:hover {
    background: #fff;
    color: #000;
  }
}
.l-footer__btn:focus, .l-footer__btn:focus-visible {
  outline: #FAF15C solid 3px;
}
.l-footer__btn-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3em;
  margin-right: 0.6em;
}
.l-footer__btn-badge-img {
  max-width: 100%;
  pointer-events: none;
}

.l-footer__tel {
  position: relative;
  display: block;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .l-footer__tel {
    margin-top: 3.2rem;
    padding-top: 3.5rem;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__tel {
    margin-top: 2.5rem;
    padding-top: 2.8rem;
  }
}
@media screen and (min-width: 768.02px) {
  .l-footer__tel[href] {
    pointer-events: none;
  }
}
.l-footer__tel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
}
.l-footer__tel-img {
  max-width: 100%;
  margin-inline: auto;
  pointer-events: none;
}
@media screen and (max-width: 767.98px) {
  .l-footer__tel-img {
    max-width: 79.4285714286%;
  }
}

.l-footer-block {
  background: #E2F3FD;
}
@media screen and (max-width: 767.98px) {
  .l-footer-block {
    text-align: center;
  }
}
.l-footer-block__inner {
  display: flex;
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .l-footer-block__inner {
    flex-direction: column-reverse;
    gap: 47px 0;
    width: calc(100% - 40px);
    padding: 28px 0 23px;
  }
}
@media screen and (min-width: 768px) {
  .l-footer-block__inner {
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 0 30px;
    width: calc(100% - 80px);
    max-width: 700px;
    padding: 51px 0 53px;
  }
}

@media screen and (min-width: 768px) {
  .l-footer__brand {
    margin-top: 16px;
  }
}

.l-footer__logo {
  display: inline-block;
  transition: opacity 0.3s linear;
}
@media screen and (max-width: 767.98px) {
  .l-footer__logo {
    max-width: 184px;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__logo {
    width: 201px;
  }
}
@media (any-hover: hover) {
  .l-footer__logo:hover {
    opacity: 0.7;
  }
}

.l-footer__sns {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.l-footer__sns-link {
  display: block;
  transition: opacity 0.3s linear;
}
@media (any-hover: hover) {
  .l-footer__sns-link:hover {
    opacity: 0.7;
  }
}
.l-footer__sns-link--1 {
  width: 2rem;
}
.l-footer__sns-link--2 {
  width: 2.2rem;
}

.l-footer__nav {
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767.98px) {
  .l-footer__nav {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__nav {
    flex: 1 1 auto;
    font-size: 1.6rem;
  }
}

.l-footer__nav-list {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  font-weight: 500;
  list-style: none;
}
@media screen and (max-width: 767.98px) {
  .l-footer__nav-list {
    gap: 0.5em 0;
    letter-spacing: 0.0714285714em;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__nav-list {
    gap: 0.5em 1em;
    letter-spacing: 0.0625em;
  }
}

.l-footer__nav-list-group {
  display: flex;
}
@media screen and (min-width: 768px) {
  .l-footer__nav-list-group {
    flex-direction: column;
    gap: 3.6rem 0;
  }
}

.l-footer__nav-list-link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s linear;
}
@media (any-hover: hover) {
  .l-footer__nav-list-link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767.98px) {
  .l-footer__nav-list-link {
    font-weight: 500;
  }
}

.l-footer__copyright {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.4rem;
  font-weight: 900;
  text-align: center;
  color: #B3E3FF;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767.98px) {
  .l-footer__copyright {
    width: calc(100% - 40px);
    font-size: 1.3rem;
    line-height: 1.3846153846em;
    padding-top: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__copyright {
    width: calc(100% - 80px);
    padding-top: 2rem;
  }
}

/*
* layout/l-main.css
*/
.l-main {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100%;
  min-height: 430px;
  margin: 100px auto 0;
}
@media screen and (max-width: 767.98px) {
  .l-main {
    margin-top: 48px;
  }
}
@media screen and (min-width: 768px) {
  .l-main {
    min-height: 600px;
  }
}

/*
* layout/l-content.css
*/
.l-content {
  flex: 1 1 auto;
  position: relative;
  width: 100%;
}
.l-content--center {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .l-content--pdt1 {
    padding-top: 80px;
  }
}
@media screen and (max-width: 767.98px) {
  .l-content--bg {
    padding-top: 36px;
  }
}
@media screen and (min-width: 768px) {
  .l-content--bg {
    padding-top: 60px;
  }
}
.l-content--bg-prime1 {
  background-color: #00A0E9;
}
.l-content--bg-base1 {
  background-color: #E2F3FD;
}
.l-content--bg-base2 {
  background-color: #EBEBEB;
}
.l-content--bg-base3 {
  background-color: #B3E3FF;
}
.l-content--bg-base4 {
  background-color: 0;
}

.l-content-body {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  .l-content-body {
    min-height: 330px;
    padding: 58px 0 100px;
  }
}
@media screen and (min-width: 768px) {
  .l-content-body {
    min-height: 475px;
    padding: 94px 0 120px;
  }
}
.l-content--center .l-content-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 auto;
}
@media screen and (max-width: 767.98px) {
  .l-content--center .l-content-body {
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 768px) {
  .l-content--center .l-content-body {
    padding-bottom: 94px;
  }
}

.c-img {
  display: block;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767.98px) {
  .c-img {
    width: 100%;
  }
}

.c-fit {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  font-family: "object-fit: contain;";
  vertical-align: middle;
}

/*
 * object/component/_maxim.scss
 */
.c-maxim-xs {
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .c-maxim-xs {
    max-width: 310px;
  }
}

.c-maxim-s {
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .c-maxim-s {
    max-width: 350px;
  }
}

.c-maxim-dzsp {
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .c-maxim-dzsp {
    max-width: 390px;
  }
}

.c-maxim-l {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-maxim-l {
    max-width: 700px;
  }
}

.c-maxim-xl {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-maxim-xl {
    max-width: 1024px;
  }
}

.c-maxim-dzpc {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-maxim-dzpc {
    max-width: 1440px;
  }
}

/*
 * object/component/_width.scss
 */
.c-width {
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .c-width {
    width: calc(100% - 40px);
  }
}
@media screen and (min-width: 768px) {
  .c-width {
    width: calc(100% - 80px);
  }
}

.c-width-xxs {
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .c-width-xxs {
    width: calc(100% - 390px);
  }
}

.c-width-xs {
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .c-width-xs {
    width: calc(100% - 80px);
  }
}

.c-width-s {
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .c-width-s {
    width: calc(100% - 40px);
  }
}

.c-width-head {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-width-head {
    width: 53.3333333333%;
  }
}

.c-width-l {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-width-l {
    width: 48.6111111111%;
  }
}

.c-width-xl {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-width-xl {
    width: 71.1111111111%;
  }
}

.c-width-pc {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-width-pc {
    width: calc(100% - 80px);
  }
}

/*
 * object/component/_c-bg.scss
 */
.c-bg-white {
  background-color: #fff;
}
.c-bg-white-marker {
  background-color: rgba(255, 255, 255, 0.5);
}

.c-bg-black {
  background-color: #000;
}
.c-bg-black-marker {
  background-color: rgba(0, 0, 0, 0.5);
}

.c-bg-prime1 {
  background-color: #00A0E9;
}
.c-bg-prime1-marker {
  background-color: rgba(0, 160, 233, 0.5);
}

.c-bg-second1 {
  background-color: #004098;
}
.c-bg-second1-marker {
  background-color: rgba(0, 64, 152, 0.5);
}

.c-bg-point1 {
  background-color: #FF5181;
}
.c-bg-point1-marker {
  background-color: rgba(255, 81, 129, 0.5);
}

.c-bg-point2 {
  background-color: #FAF15C;
}
.c-bg-point2-marker {
  background-color: rgba(250, 241, 92, 0.5);
}

.c-bg-base1 {
  background-color: #E2F3FD;
}
.c-bg-base1-marker {
  background-color: rgba(226, 243, 253, 0.5);
}

.c-bg-base2 {
  background-color: #EBEBEB;
}
.c-bg-base2-marker {
  background-color: rgba(235, 235, 235, 0.5);
}

.c-bg-grid1 {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #00A0E9 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #00A0E9 calc(100% - 1px));
  background-size: 20px 20px;
  background-repeat: repeat;
  background-position: center center;
}

/*
 * object/component/_color.scss
 */
.c-color-white {
  color: #fff;
}

.c-color-black {
  color: #000;
}

.c-color-prime1 {
  color: #00A0E9;
}

.c-color-second1 {
  color: #004098;
}

.c-color-point1 {
  color: #FF5181;
}

.c-color-point2 {
  color: #FAF15C;
}

.c-color-base1 {
  color: #E2F3FD;
}

.c-color-base2 {
  color: #EBEBEB;
}

/*
 * object/component/_c-text.scss
 */
.c-text-reset {
  margin: 0;
}
.c-text-reset--mgt1 {
  margin-top: 1.5em;
}
@media screen and (max-width: 767.98px) {
  .c-text-reset--mgt1 {
    margin-top: 1.2857142857em;
  }
}
.c-text-reset--mgt2 {
  margin-top: 0.8571428571em;
}
@media screen and (max-width: 767.98px) {
  .c-text-reset--mgt2 {
    margin-top: 0.9230769231em;
  }
}

.c-text-sup1 {
  font-size: 0.5em;
  line-height: 0;
  height: 0;
  margin-bottom: 2em;
}

.c-text-sup2 {
  font-size: 0.5em;
  line-height: 0;
  height: 0;
  vertical-align: top;
}

.c-text-highlight {
  text-decoration: underline;
  text-underline-offset: -0.3em;
  text-decoration-thickness: 0.45em;
  text-decoration-skip-ink: none;
}
@media screen and (max-width: 767.98px) {
  .c-text-highlight {
    text-decoration-thickness: 0.4545454545em;
  }
}
@media screen and (min-width: 768px) {
  .c-text-highlight {
    text-decoration-thickness: 0.45em;
  }
}
.c-text-highlight--prime1 {
  text-decoration-color: #00a0e9;
}
.c-text-highlight--second1 {
  text-decoration-color: #004098;
}
.c-text-highlight--point1 {
  text-decoration-color: #ff5181;
}
.c-text-highlight--point2 {
  text-decoration-color: #faf15c;
}

.c-text-size {
  margin: 0;
  font-size: 1.6rem;
}
.c-text-size--line {
  line-height: 1.5;
}

.c-text-size1 {
  margin: 0;
  font-size: 1.8rem;
}
.c-text-size1--line {
  line-height: 1.4444444444;
}

.c-text-size2 {
  margin: 0;
  font-size: 1.4rem;
}
.c-text-size2--line {
  line-height: 1.2857142857;
}

.c-text-size3 {
  margin: 0;
  font-size: 1.3rem;
}
.c-text-size3--line {
  line-height: 1.3076923077;
}

.c-text-size4 {
  margin: 0;
  font-size: 1.2rem;
}
.c-text-size4--line {
  line-height: 1.3333333333;
}

.c-text1 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .c-text1 {
    font-size: 1.4rem;
    line-height: 1.2857142857;
  }
}
.c-text1 + .c-text1 {
  margin-top: 1.5em;
}
@media screen and (max-width: 767.98px) {
  .c-text1 + .c-text1 {
    margin-top: 1.2857142857em;
  }
}

.c-text2 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .c-text2 {
    font-size: 1.3rem;
    line-height: 1.3076923077;
  }
}
.c-text2 + .c-text2 {
  margin-top: 1.5em;
}
@media screen and (max-width: 767.98px) {
  .c-text2 + .c-text2 {
    margin-top: 1.3076923077em;
  }
}

.c-text-lead1 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4444444444;
}
@media screen and (max-width: 767.98px) {
  .c-text-lead1 {
    font-size: 1.4rem;
    line-height: 1.2857142857;
    margin-top: 1.5714285714em;
  }
}
@media screen and (min-width: 768px) {
  .c-text-lead1 {
    margin-top: 2em;
  }
}
.c-text-lead1 + .c-text-lead1 {
  margin-top: 1.4444444444em;
}
@media screen and (max-width: 767.98px) {
  .c-text-lead1 + .c-text-lead1 {
    margin-top: 1.2857142857em;
  }
}

.c-text-term1 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2857142857;
}
@media screen and (max-width: 767.98px) {
  .c-text-term1 {
    font-size: 1.3rem;
    line-height: 1.3076923077;
  }
}
.c-text-term1 + .c-text-term1 {
  margin-top: 1em;
}
@media screen and (max-width: 767.98px) {
  .c-text-term1 + .c-text-term1 {
    margin-top: 0.8571428571em;
  }
}

.c-text-time1 {
  display: inline-block;
  margin: 0;
  font-weight: bold;
  color: #B3E3FF;
}
@media screen and (max-width: 767.98px) {
  .c-text-time1 {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .c-text-time1 {
    font-size: 2rem;
    line-height: 1.6em;
  }
}

.c-text-design1 {
  margin: 0;
  font-weight: 500;
  color: #B3E3FF;
}
@media screen and (max-width: 767.98px) {
  .c-text-design1 {
    font-size: 1.3rem;
    line-height: 1.3076923077;
  }
}
@media screen and (min-width: 768px) {
  .c-text-design1 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767.98px) {
  .c-text-design1--small-sp {
    font-size: 1.4rem;
    line-height: 1.2857142857;
  }
}

/*
* object/component/c-button.css
*/
.c-button1 {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1.4444444444em;
  min-width: 18.6666666667em;
  min-height: 4.4444444444em;
  border: none;
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  background: #00A0E9;
  position: relative;
  color: #fff;
  transition-property: background, color;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
@media screen and (max-width: 767.98px) {
  .c-button1 {
    width: min(100%, 20.6666666667em);
    min-width: auto;
    min-height: 3.2em;
    padding: 0.8666666667em 1.3333333333em;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .c-button1 {
    letter-spacing: 0.0555555556em;
  }
}
.c-button1--color2 {
  background: #004098;
}
@media (any-hover: hover) {
  .c-button1:hover {
    background: #004098;
    color: #fff;
  }
}
.c-button1.is-disabled {
  background: #EBEBEB !important;
  color: #B3E3FF !important;
  box-shadow: none !important;
}
@media (any-hover: hover) {
  .c-button1--color2:hover {
    background: #00A0E9;
  }
}
@media (any-hover: hover) {
  .c-button1--hover-white:hover {
    background: #fff;
    color: #000;
  }
}
@media (any-hover: hover) {
  .c-button1--hover-black:hover {
    background: #000;
    color: #fff;
  }
}
.c-button1:focus, .c-button1:focus-visible {
  outline: #FAF15C solid 3px;
}

.c-button1-icon-right {
  position: relative;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4444444444em 1.2222222222em 1.4444444444em 2.2222222222em;
  min-width: 18.6666666667em;
  min-height: 4.4444444444em;
  border: none;
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  background: #00A0E9;
  position: relative;
  color: #fff;
  transition-property: background, color;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
@media screen and (max-width: 767.98px) {
  .c-button1-icon-right {
    width: min(100%, 20.6666666667em);
    min-width: auto;
    min-height: 3.2em;
    padding: 0.8666666667em 1.3333333333em;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .c-button1-icon-right {
    letter-spacing: 0.0555555556em;
  }
}
.c-button1-icon-right::after {
  content: "";
  flex: 0 0 auto;
  transform: rotate(90deg);
  margin-left: 0.4em;
  pointer-events: none;
}
@media screen and (max-width: 767.98px) {
  .c-button1-icon-right::after {
    width: 0.8666666667em;
    height: 0.8666666667em;
  }
}
@media screen and (min-width: 768px) {
  .c-button1-icon-right::after {
    width: 0.6666666667em;
    height: 0.6666666667em;
  }
}
.c-button1-icon-right--color2 {
  background: #004098;
}
.c-button1-icon-right--arrowright::after {
  background: url("../img/common/icon_arrow_1.png?d=202505261000") no-repeat center;
  background-size: contain;
}
@media (any-hover: hover) {
  .c-button1-icon-right:hover {
    background: #004098;
    color: #fff;
  }
}
@media (any-hover: hover) {
  .c-button1-icon-right:hover::after {
    color: inherit;
  }
}
@media (any-hover: hover) {
  .c-button1-icon-right--color2:hover {
    background: #00A0E9;
  }
}
@media (any-hover: hover) {
  .c-button1-icon-right--hover-white:hover {
    background: #fff;
    color: #000;
  }
}
@media (any-hover: hover) {
  .c-button1-icon-right--hover-white:hover::after {
    color: #00A0E9;
  }
}
@media (any-hover: hover) {
  .c-button1-icon-right--hover-black:hover {
    background: #000;
    color: #fff;
  }
}
.c-button1-icon-right:focus, .c-button1-icon-right:focus-visible {
  outline: #FAF15C solid 3px;
}

.c-button2 {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: min(100%, 21.875em);
  padding: 1.3125em;
  min-height: 5em;
  border: none;
  font-size: 3.2rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  background: #00A0E9;
  position: relative;
  color: #fff;
  transition-property: background, color;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
@media screen and (max-width: 767.98px) {
  .c-button2 {
    width: min(100%, 18.2352941176em);
    min-width: auto;
    min-height: 2.8235294118em;
    padding: 0.7647058824em 1.1764705882em;
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 768px) {
  .c-button2 {
    letter-spacing: 0.03125em;
  }
}
.c-button2--color2 {
  background: #004098;
}
@media (any-hover: hover) {
  .c-button2:hover {
    background: #004098;
    color: #fff;
  }
}
@media (any-hover: hover) {
  .c-button2--color2:hover {
    background: #00A0E9;
  }
}
@media (any-hover: hover) {
  .c-button2--hover-white:hover {
    background: #fff;
    color: #000;
  }
}
@media (any-hover: hover) {
  .c-button2--hover-black:hover {
    background: #000;
    color: #fff;
  }
}
.c-button2:focus, .c-button2:focus-visible {
  outline: #FAF15C solid 3px;
}
.c-button2__text-main {
  display: block;
}
.c-button2__text-sub {
  display: block;
  font-size: 0.5625em;
  font-weight: 500;
  letter-spacing: 0.0555555556em;
}

.c-button2-icon-right {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: min(100%, 21.875em);
  padding: 1.3125em 2.1875em;
  min-height: 5em;
  border: none;
  font-size: 3.2rem;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  background: #00A0E9;
  position: relative;
  color: #fff;
  transition-property: background, color;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
@media screen and (max-width: 767.98px) {
  .c-button2-icon-right {
    justify-content: space-between;
    width: min(100%, 18.2352941176em);
    min-width: auto;
    min-height: 2.8235294118em;
    padding: 0.7647058824em 1.1764705882em;
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 768px) {
  .c-button2-icon-right {
    text-align: center;
    letter-spacing: 0.03125em;
  }
}
.c-button2-icon-right::after {
  content: "";
  flex: 0 0 auto;
  pointer-events: none;
}
@media screen and (max-width: 767.98px) {
  .c-button2-icon-right::after {
    transform: rotate(90deg);
    width: 0.7647058824em;
    height: 0.7647058824em;
    margin-left: 0.4em;
  }
}
@media screen and (min-width: 768px) {
  .c-button2-icon-right::after {
    position: absolute;
    top: 50%;
    right: 6.8571428571%;
    transform: rotate(90deg) translate(-50%, -50%);
    width: 0.625em;
    height: 0.625em;
  }
}
.c-button2-icon-right--color2 {
  background: #004098;
}
.c-button2-icon-right--arrowright::after {
  background: url("../img/common/icon_arrow_1.png?d=202505261000") no-repeat center;
  background-size: contain;
}
@media (any-hover: hover) {
  .c-button2-icon-right:hover {
    background: #004098;
    color: #fff;
  }
}
@media (any-hover: hover) {
  .c-button2-icon-right:hover::after {
    color: inherit;
  }
}
@media (any-hover: hover) {
  .c-button2-icon-right--color2:hover {
    background: #00A0E9;
  }
}
@media (any-hover: hover) {
  .c-button2-icon-right--hover-white:hover {
    background: #fff;
    color: #000;
  }
}
@media (any-hover: hover) {
  .c-button2-icon-right--hover-white:hover::after {
    color: #00A0E9;
  }
}
@media (any-hover: hover) {
  .c-button2-icon-right--hover-black:hover {
    background: #000;
    color: #fff;
  }
}
.c-button2-icon-right:focus, .c-button2-icon-right:focus-visible {
  outline: #FAF15C solid 3px;
}
.c-button2-icon-right__text-main {
  display: block;
}
.c-button2-icon-right__text-sub {
  display: block;
  font-size: 0.5625em;
  font-weight: 500;
  letter-spacing: 0.0555555556em;
}

/*
 * object/component/_c-tag.scss
 */
.c-tag1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2em;
  border: none;
  border-radius: 1.25em;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0.2em 0.75em;
  color: #B3E3FF;
  background: #fff;
}
@media screen and (max-width: 767.98px) {
  .c-tag1 {
    min-height: 1.7142857143em;
    padding: 0.2857142857em 0.8571428571em;
    letter-spacing: 0.0714285714em;
  }
}
.c-tag1--color-second1 {
  color: #fff;
  background: #004098;
  box-shadow: none;
}
.c-tag1--color-base1 {
  color: #000;
  background: #E2F3FD;
  box-shadow: none;
}
.c-tag1--color-base2 {
  color: #000;
  background: #EBEBEB;
  box-shadow: none;
}
.c-tag1.is-active, .c-tag1--color-prime1 {
  color: #fff;
  background: #00A0E9;
  box-shadow: none;
}
.c-tag1[href] {
  transition: opacity 0.3s linear;
}
@media (any-hover: hover) {
  .c-tag1[href]:hover {
    opacity: 0.7;
  }
}

.c-tag1-small1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.8333333333em;
  border-radius: 0.3333333333em;
  padding: 0.25em 1.3333333333em;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #FF5181;
}
/*
 * object/component/_c-listing.scss
 */
.c-listing-reset {
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-listing-indent {
  margin: 0;
  padding: 0 0 0 1em;
  list-style: none;
  text-indent: -1em;
}

.c-listing1-mark {
  margin: 0;
  padding: 0 0 0 1em;
  list-style: none;
}
.c-listing1-mark__item {
  position: relative;
}
.c-listing1-mark__item::before {
  content: "・";
  position: absolute;
  right: 100%;
  top: 0;
}

.c-listing3-mark {
  margin: 0;
  padding-inline-start: 2.1428571429em;
  list-style: none;
}
@media screen and (max-width: 767.98px) {
  .c-listing3-mark {
    padding-inline-start: 1.5384615385em;
  }
}
.c-listing3-mark__item {
  position: relative;
}
.c-listing3-mark__item::before {
  content: "・";
  position: absolute;
  left: -1em;
  top: 0;
}

.c-listing3-num {
  margin: 0;
  padding-inline-start: 2.1428571429em;
}
@media screen and (max-width: 767.98px) {
  .c-listing3-num {
    padding-inline-start: 1.5384615385em;
  }
}

/*
 * object/component/_c-title.scss
 */
.c-title1 {
  margin: 0;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .c-title1 {
    font-size: 2.2rem;
    line-height: 1.3181818182;
  }
}
@media screen and (min-width: 768px) {
  .c-title1 {
    font-size: 4rem;
    line-height: 1.35;
    letter-spacing: 0.025em;
  }
}

.c-title2 {
  margin: 0;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .c-title2 {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .c-title2 {
    font-size: 4rem;
  }
}

.c-title-en1 {
  display: block;
  margin: 0 auto;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #00A0E9;
}
@media screen and (max-width: 767.98px) {
  .c-title-en1 {
    font-size: 1.6rem;
    margin-top: 0.75em;
  }
}
@media screen and (min-width: 768px) {
  .c-title-en1 {
    font-size: 2rem;
    margin-top: 1em;
  }
}

.c-title-sub1 {
  margin: 0;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .c-title-sub1 {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 1.85em;
  }
}
@media screen and (min-width: 768px) {
  .c-title-sub1 {
    font-size: 3.6rem;
    line-height: 1.3333333333;
    margin-bottom: 2.7777777778em;
  }
}
.c-title-sub1--left {
  text-align: left;
}

.c-title-sub2 {
  margin: 0;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .c-title-sub2 {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 2.1875em;
  }
}
@media screen and (min-width: 768px) {
  .c-title-sub2 {
    font-size: 2.4rem;
    line-height: 1.6666666667;
    margin-bottom: 1.6666666667em;
  }
}
.c-title-sub2--left {
  text-align: left;
}

.c-title-sub3 {
  margin: 0;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .c-title-sub3 {
    font-size: 1.6rem;
    margin-bottom: 1em;
  }
}
@media screen and (min-width: 768px) {
  .c-title-sub3 {
    font-size: 1.8rem;
    margin-bottom: 0.6666666667em;
  }
}
.c-title-sub3--left {
  text-align: left;
}

.c-title-label1 {
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .c-title-label1 {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 768px) {
  .c-title-label1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  .c-title-label1--mb1 {
    margin-bottom: 32px;
  }
}
.c-title-label1__text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  border: none;
  border-radius: 1.25em;
  font-weight: bold;
  text-align: center;
  background: #fff;
}
@media screen and (max-width: 767.98px) {
  .c-title-label1__text {
    width: 310px;
    min-height: 34px;
    padding: 0.2857142857em 0.8571428571em;
    letter-spacing: 0.0625em;
  }
}
@media screen and (min-width: 768px) {
  .c-title-label1__text {
    width: 320px;
    min-height: 44px;
    padding: 0.2em 0.75em;
    letter-spacing: 0.05em;
  }
}
.c-title-label1--full1 .c-title-label1__text {
  width: 100%;
}
.c-title-label1--color-prime1 {
  color: #00A0E9;
}
.c-title-label1--color-second1 {
  color: #004098;
}
.c-title-label1--bg-second1 {
  color: #fff;
}
.c-title-label1--bg-second1 .c-title-label1__text {
  background: #004098;
}
.c-title-label1--bg-base1 .c-title-label1__text {
  background: #E2F3FD;
}
.c-title-label1--bg-base2 .c-title-label1__text {
  background: #EBEBEB;
}
.c-title-label1--bg-prime1 {
  color: #fff;
}
.c-title-label1--bg-prime1 .c-title-label1__text {
  background: #00A0E9;
}

.c-title-head1 {
  position: relative;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .c-title-head1 {
    margin-block: 12px 60px;
  }
}
@media screen and (min-width: 768px) {
  .c-title-head1 {
    margin-bottom: 100px;
  }
}
.c-title-head1__sizer {
  position: relative;
  margin: 0 auto;
  box-shadow: inset 0 0 0 2px #00A0E9;
  background: #fff;
}
@media screen and (max-width: 767.98px) {
  .c-title-head1__sizer {
    padding: 31px 20px 24px;
  }
}
@media screen and (min-width: 768px) {
  .c-title-head1__sizer {
    padding: 56px 30px 36px;
  }
}
.c-title-head1__sizer::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 12px 12px 0px rgba(179, 227, 255, 0.8);
  pointer-events: none;
}
@media screen and (max-width: 767.98px) {
  .c-title-head1__sizer::before {
    box-shadow: 6px 6px 0px rgba(179, 227, 255, 0.8);
  }
}
.c-title-head1__title {
  margin: 0;
}
.c-title-head1__label {
  position: absolute;
  bottom: 100%;
  left: 0;
  transform: translateY(50%);
  width: 100%;
  margin: 0 auto;
  font-weight: 900;
}
@media screen and (max-width: 767.98px) {
  .c-title-head1__label {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767.98px) {
  .c-title-head1__label-text {
    width: auto;
    max-width: 310px;
    min-height: 24px;
    padding: 0 32px;
    letter-spacing: 0.0714285714em;
  }
}
@media screen and (min-width: 768px) {
  .c-title-head1__label-text {
    min-height: 40px;
  }
}
.c-title-head1__main {
  display: block;
  font-feature-settings: "palt";
}
.c-title-head1__text {
  margin: 0;
  font-weight: 500;
  color: #656E6F;
}
@media screen and (max-width: 767.98px) {
  .c-title-head1__text {
    margin-top: 17px;
    font-size: 1.3rem;
    line-height: 1.3076923077;
  }
}
@media screen and (min-width: 768px) {
  .c-title-head1__text {
    margin-top: 24px;
    font-size: 1.6rem;
    line-height: 1.75em;
  }
}

.c-title-head2 {
  position: relative;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .c-title-head2 {
    margin-bottom: 34px;
  }
}
@media screen and (min-width: 768px) {
  .c-title-head2 {
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 768px) {
  .c-title-head2--mb1 {
    margin-bottom: 74px;
  }
}
.c-title-head2__sizer {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  box-shadow: inset 0 0 0 2px #00A0E9;
  background: #fff;
}
@media screen and (max-width: 767.98px) {
  .c-title-head2__sizer {
    max-width: calc(100% - 80px);
    padding: 19px 20px 18px;
  }
}
@media screen and (min-width: 768px) {
  .c-title-head2__sizer {
    max-width: calc(100% - 80px);
    min-width: 480px;
    min-height: 110px;
    padding: 28px 40px;
  }
}
@media screen and (max-width: 767.98px) {
  .c-title-head2--size1-sp .c-title-head2__sizer {
    width: 310px;
    max-width: calc(100% - 40px);
    padding-inline: 8px;
  }
}
.c-title-head2__sizer::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 12px 12px 0px rgba(179, 227, 255, 0.8);
  pointer-events: none;
}
@media screen and (max-width: 767.98px) {
  .c-title-head2__sizer::before {
    box-shadow: 6px 6px 0px rgba(179, 227, 255, 0.8);
  }
}
.c-title-head2__sizer::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -29%);
  width: 51px;
  height: 35px;
  background: url("../img/common/icon_arrow_2_sp.png?d=202505261000") no-repeat center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .c-title-head2__sizer::after {
    transform: translate(-50%, -29%);
    width: 81px;
    height: 62px;
    background-image: url("../img/common/icon_arrow_2.png?d=202505261000");
  }
}
.c-title-head2__title {
  margin: 0;
}
.c-title-head2__label {
  position: absolute;
  bottom: 100%;
  left: 0;
  transform: translateY(50%);
  width: 100%;
  margin: 0;
  font-weight: 900;
}
@media screen and (max-width: 767.98px) {
  .c-title-head2__label {
    font-size: 1.4rem;
  }
}
.c-title-head2 .c-title-label1__text {
  width: auto;
}
@media screen and (max-width: 767.98px) {
  .c-title-head2 .c-title-label1__text {
    min-width: 80px;
    min-height: 1.7142857143em;
    padding: 0.0714285714em 1.5em;
    font-size: 1.4rem;
    letter-spacing: 0.1428571429em;
  }
}
@media screen and (min-width: 768px) {
  .c-title-head2 .c-title-label1__text {
    min-width: 200px;
    min-height: 2em;
  }
}
.c-title-head2__main {
  display: block;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767.98px) {
  .c-title-head2__main {
    letter-spacing: 0.0909090909em;
  }
}
@media screen and (min-width: 768px) {
  .c-title-head2__main {
    letter-spacing: 0.055em;
  }
}
@media screen and (max-width: 767.98px) {
  .c-title-head2__main--space0-sp {
    letter-spacing: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .c-title-head2__main--space1-sp {
    letter-spacing: 0.1818181818em;
  }
}
.c-title-head2__text {
  margin: 0;
  font-weight: 500;
  color: #656E6F;
}
@media screen and (max-width: 767.98px) {
  .c-title-head3 {
    margin-bottom: 3.6rem;
  }
}
@media screen and (min-width: 768px) {
  .c-title-head3 {
    margin-bottom: 6rem;
  }
}

/*
* object/component/c-frame.css
*/
.c-frame1 {
  position: relative;
  background: #fff;
  box-shadow: inset 0 0 0 2px #00A0E9;
}
.c-frame1__inner {
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .c-frame1__inner {
    padding: 36px 40px;
  }
}
@media screen and (min-width: 768px) {
  .c-frame1__inner {
    padding: 52px 70px;
  }
}
@media screen and (min-width: 768px) {
  .c-frame1__inner--pdt1 {
    padding-top: 104px;
  }
}

/*
 * object/component/_c-acd.scss
 */
.c-acd .c-acd-content {
  transition: 0.3s linear;
}

.c-acd:not(.is-active) .c-acd-content {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
}

.c-acd .c-acd-icon {
  cursor: pointer;
  position: relative;
}
.c-acd .c-acd-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: rotate(180deg) translateY(50%);
  pointer-events: none;
  background: url("../img/common/icon_arrow_1.png?d=202505261000") no-repeat center;
  background-size: contain;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}

.c-acd.is-active .c-acd-icon::before {
  transform: translateY(-50%);
}

@media screen and (max-width: 767.98px) {
  .c-acd-sp .c-acd-content {
    transition: 0.3s linear;
  }
}

@media screen and (max-width: 767.98px) {
  .c-acd-sp:not(.is-active) .c-acd-content {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
  }
}

@media screen and (max-width: 767.98px) {
  .c-acd-sp .c-acd-icon {
    cursor: pointer;
    position: relative;
  }
}
@media screen and (max-width: 767.98px) {
  .c-acd-sp .c-acd-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: rotate(180deg) translateY(50%);
    pointer-events: none;
    background: url("../img/common/icon_arrow_1.png?d=202505261000") no-repeat center;
    background-size: contain;
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: linear;
  }
}

@media screen and (max-width: 767.98px) {
  .c-acd-sp.is-active .c-acd-icon::before {
    transform: translateY(-50%);
  }
}

/*
* object/project/p-pagetop.css
*/
.p-pagetop {
  position: relative;
  text-align: center;
  background: #00A0E9;
}
@media screen and (max-width: 767.98px) {
  .p-pagetop {
    padding: 20px 0 14px;
  }
}
@media screen and (min-width: 768px) {
  .p-pagetop {
    padding: 20px 0 24px;
  }
}
.p-pagetop__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.3s linear;
}
@media screen and (max-width: 767.98px) {
  .p-pagetop__btn {
    padding-top: 1.2857142857em;
    letter-spacing: 0.0714285714em;
  }
}
@media screen and (min-width: 768px) {
  .p-pagetop__btn {
    padding-top: 1.7857142857em;
    letter-spacing: 0.2142857143em;
  }
}
@media (any-hover: hover) {
  .p-pagetop__btn:hover {
    opacity: 0.7;
  }
}
.p-pagetop__btn:focus, .p-pagetop__btn:focus-visible {
  outline: #FAF15C solid 3px;
}
.p-pagetop__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0.9285714286em;
  height: 1.1428571429em;
  background: url("../img/common/icon_arrow_1.png?d=202505261000") no-repeat top center;
  background-size: contain;
}

/*
* object/project/p-button.css
*/
.p-button-group1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 100px;
}
@media screen and (max-width: 767.98px) {
  .p-button-group1 {
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
  }
}
@media screen and (max-width: 767.98px) {
  .p-button-group1--gap1-sp {
    gap: 10px;
  }
}
@media screen and (max-width: 767.98px) {
  .p-button-group1--mg1-sp {
    margin-top: 43px;
  }
}
@media screen and (min-width: 768px) {
  .p-button-group1__item--large {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 1023.98px) {
  .p-button-group1__item--half {
    flex: 1 1 0%;
    min-width: auto;
  }
}

.p-button-group2 {
  margin: 8rem auto 6rem;
}
@media screen and (max-width: 767.98px) {
  .p-button-group2 {
    margin: 3.4rem auto 6rem;
  }
}
.p-button-group2--mg1 {
  margin-top: 0;
}
@media screen and (max-width: 767.98px) {
  .p-button-group2--mg1 {
    margin-bottom: 1.6rem;
  }
}

.p-button-group2-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-direction: row;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}
@media screen and (max-width: 559.98px) {
  .p-button-group2-list {
    flex-direction: column;
    gap: 0.8rem;
    align-items: stretch;
  }
}
@media screen and (max-width: 559.98px) {
  .p-button-group2-list--auto-sp {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: -0.02px) {
  .p-button-group2-list--half-tb {
    flex-wrap: wrap;
    gap: 0.8rem;
  }
}
@media screen and (min-width: 0px) {
  .p-button-group2-list--half-tb {
    gap: 1.3rem;
  }
}
@media screen and (max-width: -0.02px) {
  .p-button-group2-list__item {
    flex: 1 1 0%;
  }
}
@media screen and (max-width: 559.98px) {
  .p-button-group2-list--auto-sp .p-button-group2-list__item {
    flex: 1 1 auto;
  }
}
@media screen and (max-width: -0.02px) {
  .p-button-group2-list--half-tb .p-button-group2-list__item {
    flex: 0 0 calc((100% - 0.8rem) / 2);
  }
}
.p-button-group2-list__item .c-button {
  height: 100%;
}
@media screen and (max-width: -0.02px) {
  .p-button-group2-list__item .c-button {
    width: 100%;
    min-width: auto;
    max-width: 100%;
  }
}

.p-button-group3 {
  margin: 8rem auto 6rem;
}
@media screen and (max-width: 767.98px) {
  .p-button-group3 {
    margin: 3.4rem auto 6rem;
  }
}
.p-button-group3--mg1 {
  margin-top: 0;
}
@media screen and (max-width: 767.98px) {
  .p-button-group3--mg1 {
    margin-bottom: 1.6rem;
  }
}

.p-button-group3-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-direction: row;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}
@media screen and (max-width: 559.98px) {
  .p-button-group3-list {
    flex-direction: column;
    gap: 0.8rem 1.2rem;
    align-items: stretch;
  }
}
@media screen and (max-width: 559.98px) {
  .p-button-group3-list--auto-sp {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: -0.02px) {
  .p-button-group3-list__item {
    flex: 1 1 0%;
  }
}
@media screen and (max-width: 559.98px) {
  .p-button-group3-list--auto-sp .p-button-group3-list__item {
    flex: 1 1 auto;
  }
}
.p-button-group3-list__item .c-button {
  height: 100%;
}
@media screen and (max-width: -0.02px) {
  .p-button-group3-list__item .c-button {
    width: 100%;
    min-width: auto;
    max-width: 100%;
  }
}

.p-button-group-foot1 {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 6rem;
}
@media screen and (max-width: 767.98px) {
  .p-button-group-foot1 {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .p-button-group-foot1 {
    margin-top: 8rem;
    font-size: 1.6rem;
  }
}

.p-button-fixed1 {
  display: flex;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  transition-property: opacity, visibility;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
.p-button-fixed1.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.p-button-fixed1-group {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  .p-button-fixed1-group {
    gap: 1px;
    padding-top: 1px;
    background: #fff;
  }
}
@media screen and (max-width: 767.98px) {
  .p-button-fixed1__btn {
    min-width: auto;
    flex: 1 1 0%;
    border-radius: 0;
    font-size: 1.3rem;
    font-weight: 900;
  }
}
@media screen and (min-width: 768px) {
  .p-button-fixed1__btn {
    min-width: 16em;
  }
}

/*
* object/project/p-box.css
*/
.p-box1 {
  position: relative;
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .p-box1 {
    margin-block: 72px 60px;
  }
}
@media screen and (min-width: 768px) {
  .p-box1 {
    margin-block: 180px 160px;
  }
}
@media screen and (max-width: 767.98px) {
  .p-box1--bg1-sp {
    padding-block: 52px 40px;
  }
}
@media screen and (min-width: 768px) {
  .p-box1--bg1-sp {
    background-color: rgba(255, 255, 255, 0);
  }
}
.p-box1__inner {
  position: relative;
  z-index: 1;
  margin-inline: auto;
}

.p-box2 + .p-box2 {
  margin-top: 40px;
}
.p-box2-desc {
  font-weight: 500;
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .p-box2-desc {
    font-size: 1.3rem;
    line-height: 1.3076923077;
  }
}
@media screen and (min-width: 768px) {
  .p-box2-desc {
    line-height: 1.75;
  }
}
@media screen and (min-width: 768px) {
  .p-box2-desc--size2 {
    font-size: 1.4rem;
    line-height: 1.2857142857;
  }
}
@media screen and (min-width: 768px) {
  .p-box2-desc--width1 {
    max-width: 880px;
  }
}
@media screen and (min-width: 768px) {
  .p-box2-desc--center-pc {
    text-align: center;
  }
}
@media screen and (max-width: 767.98px) {
  .p-box2-desc--space-sp {
    letter-spacing: 0.0769230769em;
  }
}

/*
* object/project/p-hero.css
*/
.p-hero1 {
  position: relative;
}
.p-hero1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/common/bg_hero_1_sp.png?d=202505261000") no-repeat center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-hero1::before {
    background-image: url("../img/common/bg_hero_1.png?d=202505261000");
  }
}
.p-hero1__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .p-hero1__inner {
    justify-content: center;
    min-height: 137px;
  }
}
@media screen and (min-width: 768px) {
  .p-hero1__inner {
    min-height: 250px;
  }
}

.p-hero1-content {
  width: 100%;
}
.p-hero1-content-title {
  margin: 0;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767.98px) {
  .p-hero1-content-title {
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 768px) {
  .p-hero1-content-title {
    font-size: 4rem;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767.98px) {
  .p-hero1-content-title__large {
    font-size: 1.3333333333em;
    line-height: 1.4583333333;
  }
}
@media screen and (min-width: 768px) {
  .p-hero1-content-title__large {
    font-size: 1.2857142857em;
    line-height: inherit;
  }
}
@media screen and (max-width: 767.98px) {
  .p-hero1-content-title__large-sp {
    font-size: 1.3333333333em;
    line-height: 1.4583333333;
  }
}

.p-hero1-content-desc {
  margin: 0;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767.98px) {
  .p-hero1-content-desc {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .p-hero1-content-desc {
    font-size: 2.4rem;
  }
}

/*
* object/project/p-breadcrumb.css
*/
.p-breadcrumb {
  font-weight: bold;
}
@media screen and (max-width: 767.98px) {
  .p-breadcrumb {
    font-size: 1.3rem;
    line-height: 1.3076923077;
    letter-spacing: 0.0769230769em;
    padding-top: 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-breadcrumb {
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.0625em;
    padding-top: 31px;
  }
}

.p-breadcrumb-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
.p-breadcrumb-list__item {
  display: inline;
  position: relative;
}
.p-breadcrumb-list__item-link {
  display: inline;
  text-decoration: none;
  color: inherit;
}
.p-breadcrumb-list__item-link[href] {
  transition: opacity 0.3s linear;
}
@media (any-hover: hover) {
  .p-breadcrumb-list__item-link[href]:hover {
    opacity: 0.7;
  }
}
.p-breadcrumb-list__item[aria-current=page] .p-breadcrumb-list__item-link {
  font-weight: 500;
  color: #656E6F;
}
.p-breadcrumb-list__item-icon {
  display: inline-block;
  vertical-align: bottom;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .p-breadcrumb-list__item-icon {
    width: 1.5384615385em;
    height: 1.4615384615em;
    margin-right: 0.2307692308em;
  }
}
@media screen and (min-width: 768px) {
  .p-breadcrumb-list__item-icon {
    width: 1.75em;
    height: 1.375em;
  }
}
.p-breadcrumb-list__item-icon::before {
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  line-height: 0;
  content: "\e5e1";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  line-height: inherit;
}
@media screen and (max-width: 767.98px) {
  .p-breadcrumb-list__item-icon::before {
    font-size: 0.875em;
  }
}
@media screen and (min-width: 768px) {
  .p-breadcrumb-list__item-icon::before {
    bottom: 0.1666666667em;
    font-size: 0.75em;
  }
}

/*
* object/project/p-cta.css
*/
@media screen and (max-width: 767.98px) {
  .p-cta1 {
    margin-top: 80px;
  }
}
@media screen and (min-width: 768px) {
  .p-cta1 {
    margin-top: 160px;
  }
}

@media screen and (max-width: 767.98px) {
  .p-cta1-item + .p-cta1-item {
    margin-top: 36px;
  }
}
@media screen and (min-width: 768px) {
  .p-cta1-item + .p-cta1-item {
    margin-top: 40px;
  }
}

.p-cta1-logo {
  display: block;
  margin: 0 auto;
  transition: opacity 0.3s linear;
}
@media screen and (max-width: 767.98px) {
  .p-cta1-logo {
    width: 51.6129032258%;
  }
}
@media screen and (min-width: 768px) {
  .p-cta1-logo {
    width: 40%;
  }
}
@media (any-hover: hover) {
  .p-cta1-logo:hover {
    opacity: 0.7;
  }
}
.p-cta1-logo__img {
  width: 100%;
}

.p-cta1-banner {
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-cta1-banner::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 160, 233, 0.1);
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
@media (any-hover: hover) {
  .p-cta1-banner:hover::before {
    opacity: 1;
  }
}

/*
* page/pg-index.css
*/
@media screen and (min-width: 768px) {
  .pg-index .l-header {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .pg-index .l-main {
    margin-top: 0;
  }
}
.pg-index .l-main::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 0;
  background: url("../img/index/bg_index_triangle_1_sp.png?d=202505261000") no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 767.98px) {
  .pg-index .l-main::before {
    top: 0;
    margin-top: -4.358974359%;
    padding-bottom: 147.6923076923%;
  }
}
@media screen and (min-width: 768px) {
  .pg-index .l-main::before {
    top: 0;
    padding-bottom: 105.3472222222%;
    background-image: url("../img/index/bg_index_triangle_1.png?d=202505261000");
  }
}
@media screen and (max-width: 1023.98px) {
  .pg-index .l-content-body {
    padding-top: 40px;
  }
}

.pg-index-bg1 {
  position: relative;
}
@media screen and (min-width: 768px) {
  .pg-index-bg1::before {
    content: "";
    display: block;
    position: absolute;
    top: -577px;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 0;
    padding-bottom: 105.3472222222%;
    background: url("../img/index/bg_index_triangle_2.png?d=202505261000") no-repeat center;
    background-size: contain;
  }
}

.pg-index-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.pg-index-hero__inner {
  position: relative;
}
@media screen and (max-width: 1023.98px) {
  .pg-index-hero__inner {
    padding-top: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .pg-index-hero__inner {
    padding-top: 48px;
  }
}

.pg-index-hero-content {
  position: relative;
  z-index: 1;
}

.pg-index-hero-title1 {
  margin: 0 auto;
}
@media screen and (max-width: 1023.98px) {
  .pg-index-hero-title1 {
    width: min(73.3333333333%, 286px);
  }
}
@media screen and (min-width: 1024px) {
  .pg-index-hero-title1 {
    width: 320px;
    margin: 0 auto 0 164px;
  }
}

.pg-index-hero-bg-sp {
  content: "";
  display: block;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 390px;
  margin: 23px auto 0;
  padding-bottom: 220px;
}
@media screen and (max-width: 389.98px) {
  .pg-index-hero-bg-sp {
    margin-top: 5.8974358974%;
    padding-bottom: 56.4102564103%;
  }
}
@media screen and (min-width: 1024px) {
  .pg-index-hero-bg-sp {
    display: none;
  }
}
.pg-index-hero-bg-sp::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: 58.9743589744%;
  background: url("../img/index/img_index_hero_envelope.jpg?d=202505261000") no-repeat bottom center;
  background-size: contain;
}

.pg-index-hero-note1 {
  z-index: 1;
  margin-block: 0;
  font-weight: bold;
  text-align: right;
}
@media screen and (max-width: 1023.98px) {
  .pg-index-hero-note1 {
    position: relative;
    max-width: 350px;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 4px;
  }
}
@media screen and (min-width: 1024px) {
  .pg-index-hero-note1 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
.pg-index-hero-note1__text {
  display: inline-block;
  text-shadow: -1px -1px 0 #fff, 0 -1px 0 #fff, 1px -1px 0 #fff, -1px 0 0 #fff, 0 0 0 #fff, -1px 1px 0 #fff, 0 1px 0 #fff, 1px 1px 0 #fff;
}
.pg-index-hero-desc1 {
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 1023.98px) {
  .pg-index-hero-desc1 {
    max-width: 350px;
  }
}
@media screen and (min-width: 1024px) {
  .pg-index-hero-desc1 {
    margin-top: 25px;
  }
}
.pg-index-hero-desc1__bg {
  position: relative;
  margin: 0 auto;
  box-shadow: inset 0 0 0 2px #00A0E9;
  background: #fff;
}
@media screen and (max-width: 1023.98px) {
  .pg-index-hero-desc1__bg {
    padding: 17px 18px 15px;
  }
}
@media screen and (min-width: 1024px) {
  .pg-index-hero-desc1__bg {
    display: inline-block;
    padding: 14px 67px 18px 59px;
    margin-left: 40px;
  }
}
.pg-index-hero-desc1__bg::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: rgba(179, 227, 255, 0.8);
}
@media screen and (max-width: 1023.98px) {
  .pg-index-hero-desc1__bg::before {
    top: 6px;
    left: 6px;
  }
}
@media screen and (min-width: 1024px) {
  .pg-index-hero-desc1__bg::before {
    top: 12px;
    left: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .pg-index-hero-desc1-arrow {
    content: "";
    display: inline-block;
    position: absolute;
    left: 100%;
    top: 54px;
    transform: translate(-8%, 0);
    width: 51px;
    height: 62px;
    background: url("../img/common/icon_arrow_2_right.png?d=202505261000") no-repeat center;
    background-size: contain;
  }
}

.pg-index-hero-desc1__comment {
  margin: 0;
  font-weight: 500;
}
@media screen and (max-width: 1023.98px) {
  .pg-index-hero-desc1__comment {
    text-align: center;
  }
}
.pg-index-hero-desc1__comment-text {
  display: inline-block;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1023.98px) {
  .pg-index-hero-desc1__comment-text {
    font-size: 1.2rem;
    line-height: 1.3333333333;
    padding: 0 21px;
  }
}
@media screen and (min-width: 1024px) {
  .pg-index-hero-desc1__comment-text {
    font-size: 1.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.0333333333em;
    margin-left: 1.8em;
    padding-inline: 2em;
  }
}
.pg-index-hero-desc1__comment-text::before, .pg-index-hero-desc1__comment-text::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  background: url("../img/common/bg_comment_1.png?d=202505261000") no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 1023.98px) {
  .pg-index-hero-desc1__comment-text::before, .pg-index-hero-desc1__comment-text::after {
    width: 16px;
    height: 20px;
    background-image: url("../img/common/bg_comment_1_sp.png?d=202505261000");
  }
}
@media screen and (min-width: 1024px) {
  .pg-index-hero-desc1__comment-text::before, .pg-index-hero-desc1__comment-text::after {
    width: 22px;
    height: 29px;
  }
}
.pg-index-hero-desc1__comment-text::before {
  left: 0;
}
.pg-index-hero-desc1__comment-text::after {
  right: 0;
  transform: scaleX(-1);
}

.pg-index-hero-desc1__text {
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 1023.98px) {
  .pg-index-hero-desc1__text {
    width: min(92.6751592357%, 291px);
    margin: 7px auto 0;
  }
}
@media screen and (min-width: 1024px) {
  .pg-index-hero-desc1__text {
    width: 483px;
    margin-top: 12px;
  }
}
.pg-index-hero-desc1__text-img {
  width: 100%;
}

.pg-index-hero-desc2 {
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .pg-index-hero-desc2 {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 1024px) {
  .pg-index-hero-desc2__bg {
    margin-top: 15px;
    padding: 19px 0 18px;
    background: #00A0E9;
    text-shadow: -1px -1px 0 #00A0E9, 0 -1px 0 #00A0E9, 1px -1px 0 #00A0E9, -1px 0 0 #00A0E9, 0 0 0 #00A0E9, -1px 1px 0 #00A0E9, 0 1px 0 #00A0E9, 1px 1px 0 #00A0E9;
  }
}
.pg-index-hero-desc2__wrap {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .pg-index-hero-desc2__wrap {
    display: flex;
    max-width: 1024px;
    width: calc(100% - 80px);
  }
}
@media screen and (min-width: 1024px) {
  .pg-index-hero-desc2__wrap::before {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    width: 33.203125%;
    margin-bottom: 9.08203125%;
    padding-bottom: 45.80078125%;
    background: url("../img/index/img_index_hero_envelope.jpg?d=202505261000") no-repeat bottom center;
    background-size: contain;
  }
}
@media screen and (min-width: 1064px) {
  .pg-index-hero-desc2__wrap::before {
    right: 5.859375%;
  }
}
.pg-index-hero-desc2__head {
  position: relative;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 1023.98px) {
  .pg-index-hero-desc2__head {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 0.4166666667em;
    justify-content: center;
    margin: 0 auto;
    padding: 25px 20px 21px;
    text-align: center;
    font-size: 2.4rem;
    letter-spacing: -0.0208333333em;
    background: #00A0E9;
  }
}
@media screen and (min-width: 1024px) {
  .pg-index-hero-desc2__head {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 2rem;
    margin-right: 0.8em;
    padding-inline: 0.2em 0.9em;
  }
}
.pg-index-hero-desc2__head::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
}
@media screen and (max-width: 1023.98px) {
  .pg-index-hero-desc2__head::before {
    bottom: 0;
    width: 100%;
    height: calc(100% + 24px);
    background: #00A0E9;
  }
}
@media screen and (min-width: 1024px) {
  .pg-index-hero-desc2__head::before {
    top: 0;
    width: 1px;
    height: 100%;
    background: #fff;
  }
}
.pg-index-hero-desc2__head-text-sub {
  position: relative;
  font-weight: bold;
}
@media screen and (max-width: 1023.98px) {
  .pg-index-hero-desc2__head-text-sub {
    display: inline-block;
    margin-bottom: 0.0833333333em;
    font-size: 0.5416666667em;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 1024px) {
  .pg-index-hero-desc2__head-text-sub {
    display: block;
    margin-bottom: 0.5em;
    font-size: 0.8em;
  }
}
.pg-index-hero-desc2__head-text-main {
  position: relative;
}
@media screen and (max-width: 1023.98px) {
  .pg-index-hero-desc2__head-text-main {
    display: inline-block;
  }
}
@media screen and (min-width: 1024px) {
  .pg-index-hero-desc2__head-text-main {
    display: block;
    margin-top: 3px;
  }
}
.pg-index-hero-desc2__text {
  position: relative;
  margin: 0;
  font-weight: 500;
}
@media screen and (max-width: 389.98px) {
  .pg-index-hero-desc2__text {
    max-width: 310px;
  }
}
@media screen and (max-width: 1023.98px) {
  .pg-index-hero-desc2__text {
    width: calc(100% - 71px);
    margin: 12px auto 0;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.03em;
    text-shadow: -1px -1px 0 #fff, 0 -1px 0 #fff, 1px -1px 0 #fff, -1px 0 0 #fff, 0 0 0 #fff, -1px 1px 0 #fff, 0 1px 0 #fff, 1px 1px 0 #fff;
  }
}
@media screen and (min-width: 1024px) {
  .pg-index-hero-desc2__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 auto;
    font-size: 1.2rem;
    line-height: 1.4166666667;
    letter-spacing: -0.0416666667em;
    color: #fff;
  }
}

.pg-index-hero-desc2-note1 {
  position: relative;
  margin: 0 auto;
  font-weight: 500;
}
@media screen and (max-width: 389.98px) {
  .pg-index-hero-desc2-note1 {
    max-width: 310px;
  }
}
@media screen and (max-width: 1023.98px) {
  .pg-index-hero-desc2-note1 {
    width: calc(100% - 71px);
    margin: 0.8em auto 0;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: -0.03em;
    text-shadow: -1px -1px 0 #fff, 0 -1px 0 #fff, 1px -1px 0 #fff, -1px 0 0 #fff, 0 0 0 #fff, -1px 1px 0 #fff, 0 1px 0 #fff, 1px 1px 0 #fff;
  }
}
@media screen and (min-width: 1024px) {
  .pg-index-hero-desc2-note1 {
    max-width: 1024px;
    width: calc(100% - 80px);
    margin-top: 25px;
    font-size: 1.1rem;
    line-height: 1.5454545455;
    letter-spacing: -0.0454545455em;
  }
}
@media screen and (min-width: 1024px) {
  .pg-index-hero-desc2-note1__text {
    display: block;
    width: 609px;
    margin: 0 40px;
    padding-right: 45px;
    text-align: center;
  }
}

.c-banner1 {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1002;
}
@media screen and (max-width: 767.98px) {
  .c-banner1 {
    padding-bottom: 18px;
    background: #FF5181;
  }
}
@media screen and (min-width: 768px) {
  .c-banner1 {
    background: #FAF15C;
  }
}
.c-banner1__inner {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
}
.c-banner1__inner--test {
  color: inherit;
}
@media screen and (min-width: 768px) {
  .c-banner1__inner--test {
    pointer-events: none;
  }
}
.c-banner1__sizer {
  display: flex;
  align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 767.98px) {
  .c-banner1__sizer {
    flex-wrap: wrap;
    gap: 2px 16px;
    width: calc(100% - 40px);
    padding: 9px 0 8px;
  }
}
@media screen and (min-width: 768px) {
  .c-banner1__sizer {
    max-width: 1024px;
    width: calc(100% - 80px);
    padding: 13px 0;
  }
}
@media screen and (max-width: 767.98px) {
  .c-banner1__sizer::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    flex: 0 0 auto;
    pointer-events: none;
    transform: rotate(90deg) translate(-50%, -50%);
    width: 13px;
    height: 13px;
    background: url("../img/common/icon_arrow_1.png?d=202505261000") no-repeat center;
    background-size: contain;
  }
}
.c-banner1__title {
  position: relative;
  margin: 0;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 767.98px) {
  .c-banner1__title {
    order: 1;
    padding: 0.3846153846em 0.5384615385em 0.4615384615em;
    line-height: 1;
    background: #FAF15C;
  }
}
@media screen and (min-width: 768px) {
  .c-banner1__title {
    flex: 0 0 auto;
    margin-top: -0.125em;
    font-size: 2.4rem;
    line-height: 1.0416666667;
    letter-spacing: 0.0416666667em;
  }
}
.c-banner1__title::before {
  content: "";
  display: inline-block;
  vertical-align: bottom;
  pointer-events: none;
  background: url("../img/common/icon_error_1.png?d=202505261000") no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 767.98px) {
  .c-banner1__title::before {
    width: 1em;
    height: 1em;
    margin-right: 0.5384615385em;
  }
}
@media screen and (min-width: 768px) {
  .c-banner1__title::before {
    width: 1.0416666667em;
    height: 1.0416666667em;
    margin: 0 0.5833333333em -0.0416666667em 0;
  }
}
.c-banner1__note {
  margin: 0;
  font-weight: 500;
}
@media screen and (max-width: 767.98px) {
  .c-banner1__note {
    flex: 1 1 auto;
    order: 3;
    margin-top: 0.5em;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    color: #fff;
  }
}
@media screen and (min-width: 768px) {
  .c-banner1__note {
    font-size: 1.4rem;
    line-height: 1.2142857143;
    margin-right: auto;
    padding: 0 1.3571428571em;
  }
}
.c-banner1__button {
  margin: 0;
  border: none;
  font-size: 1.9rem;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  color: #fff;
  transition-property: background, color, opacity;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
@media screen and (max-width: 767.98px) {
  .c-banner1__button {
    order: 2;
    display: inline-block;
  }
}
@media screen and (min-width: 768px) {
  .c-banner1__button {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex: 0 1 auto;
    width: min(100%, 23.3333333333em);
    margin-left: auto;
    padding: 0.53125em 1.9444444444em;
    min-height: 3.4444444444em;
    font-size: 1.8rem;
    letter-spacing: 0.0555555556em;
    text-align: center;
    background: #FF5181;
  }
}
@media screen and (max-width: 767.98px) {
  .c-banner1__button--test {
    pointer-events: none;
  }
}
@media screen and (min-width: 768px) {
  .c-banner1__button--test {
    pointer-events: auto;
  }
}
@media screen and (max-width: 767.98px) {
  .c-banner1__button--test::after {
    content: none;
  }
}
@media screen and (min-width: 768px) {
  .c-banner1__button::before {
    content: "";
    flex: 0 0 auto;
    pointer-events: none;
    position: absolute;
    top: 50%;
    right: 1.4444444444em;
    transform: rotate(90deg) translate(-50%, -50%);
    width: 0.6666666667em;
    height: 0.7222222222em;
  }
}
@media screen and (min-width: 768px) {
  .c-banner1__button--arrowright::before {
    background: url("../img/common/icon_arrow_1.png?d=202505261000") no-repeat center;
    background-size: contain;
  }
}
@media screen and (min-width: 768px) {
  .c-banner1__button:hover {
    opacity: 0.7;
  }
}
.c-banner1__button:focus, .c-banner1__button:focus-visible {
  outline: #FAF15C solid 3px;
}
.c-banner1__button__text-main {
  display: block;
}
.c-banner1__button__text-sub {
  display: block;
  font-size: 0.5625em;
  font-weight: 500;
  letter-spacing: 0.0555555556em;
}

.pg-index-movie__inner {
  position: relative;
  padding-top: 56.640625%;
}
.pg-index-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pg-index-period {
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .pg-index-period {
    margin-top: 136px;
  }
}

.pg-index-period-head {
  z-index: 1;
}
@media screen and (max-width: 767.98px) {
  .pg-index-period-head {
    margin-bottom: -24px;
  }
}
@media screen and (min-width: 768px) {
  .pg-index-period-head {
    margin-bottom: -38px;
  }
}

@media screen and (min-width: 768px) {
  .pg-index-period .c-title-head2__sizer {
    min-width: auto;
    width: 460px;
  }
}
@media screen and (min-width: 768px) {
  .pg-index-period .c-title-head2__main {
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 767.98px) {
  .pg-index-period-frame {
    padding-block: 67px 35px;
  }
}
@media screen and (min-width: 768px) {
  .pg-index-period-frame {
    padding-block: 104px 60px;
  }
}
@media screen and (max-width: 767.98px) {
  .pg-index-period-frame__inner {
    padding: 0 20px;
  }
}
@media screen and (min-width: 768px) {
  .pg-index-period-frame__inner {
    padding: 0 70px;
  }
}

.pg-index-period-group1-desc {
  font-weight: 500;
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .pg-index-period-group1-desc {
    font-size: 1.3rem;
    line-height: 1.3076923077;
  }
}
@media screen and (min-width: 768px) {
  .pg-index-period-group1-desc {
    line-height: 1.75;
  }
}
@media screen and (min-width: 768px) {
  .pg-index-period-group1-desc--size2 {
    font-size: 1.4rem;
    line-height: 1.2857142857;
    padding: 0 16px;
  }
}
@media screen and (min-width: 768px) {
  .pg-index-period-group1-desc--width1 {
    max-width: 880px;
  }
}
@media screen and (min-width: 768px) {
  .pg-index-period-group1-desc--center-pc {
    text-align: center;
  }
}
@media screen and (max-width: 767.98px) {
  .pg-index-period-group1-desc--space-sp {
    letter-spacing: 0.0769230769em;
  }
}

.pg-index-period-group1-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767.98px) {
  .pg-index-period-group1-list {
    flex-direction: column;
    margin-top: 36px;
  }
}
@media screen and (min-width: 768px) {
  .pg-index-period-group1-list {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 95%;
    margin: 50px auto 0;
  }
}
.pg-index-period-group1-list__item {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .pg-index-period-group1-list__item {
    justify-content: flex-end;
    flex: 0 1 324px;
    padding: 0 10px;
  }
}
@media screen and (max-width: 767.98px) {
  .pg-index-period-group1-list__item + .pg-index-period-group1-list__item {
    margin-top: 79px;
  }
}
.pg-index-period-group1-list__item + .pg-index-period-group1-list__item::before {
  content: "";
  position: absolute;
  background: url("../img/common/icon_arrow_4.png?d=202505261000") no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 767.98px) {
  .pg-index-period-group1-list__item + .pg-index-period-group1-list__item::before {
    bottom: 100%;
    left: 50%;
    transform: rotate(90deg) translate(-77%, 68%);
    width: 35px;
    height: 25px;
  }
}
@media screen and (min-width: 768px) {
  .pg-index-period-group1-list__item + .pg-index-period-group1-list__item::before {
    right: 100%;
    top: 144px;
    transform: translate(30%, -50%);
    width: 35px;
    height: 25px;
  }
}
.pg-index-period-group1-list__title {
  margin: 0;
  font-weight: bold;
  color: #004098;
}
@media screen and (max-width: 767.98px) {
  .pg-index-period-group1-list__title {
    font-size: 1.8rem;
    line-height: 1.3333333333;
    letter-spacing: 0.0555555556em;
    padding: 11px 10px 0;
  }
}
@media screen and (min-width: 768px) {
  .pg-index-period-group1-list__title {
    margin-top: 20px;
    letter-spacing: 0.0625em;
  }
}
@media screen and (min-width: 768px) {
  .pg-index-period-group1-list__item--3 .pg-index-period-group1-list__title {
    margin-top: 0;
  }
}

.pg-index-period-group1-list__pic {
  width: 166px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .pg-index-period-group1-list__pic {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 288px;
  }
}
.pg-index-period-group1-list__item--2 .pg-index-period-group1-list__pic {
  width: 195px;
}
.pg-index-period-group1-list__item--3 .pg-index-period-group1-list__pic {
  width: 234px;
}
@media screen and (max-width: 767.98px) {
  .pg-index-survey {
    margin-top: 60px;
  }
}
@media screen and (min-width: 768px) {
  .pg-index-survey .c-title-head2__sizer {
    padding-block: 42px 36px;
  }
}
@media screen and (min-width: 768px) {
  .pg-index-survey .c-title-head2__main {
    letter-spacing: 0.075em;
  }
}

.pg-index-faq-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 767.98px) {
  .pg-index-faq-list {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767.98px) {
  .pg-index-faq-list__item + .pg-index-faq-list__item {
    margin-top: 12px;
  }
}
@media screen and (min-width: 768px) {
  .pg-index-faq-list__item + .pg-index-faq-list__item {
    margin-top: 32px;
  }
}
.pg-index-faq-list__item-content {
  background: #fff;
  box-shadow: inset 0 0 0 2px #00A0E9;
}
.pg-index-faq-list__item-title {
  display: flex;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  background: #00A0E9;
  transition-property: background;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}
@media screen and (max-width: 767.98px) {
  .pg-index-faq-list__item-title {
    padding: 16px 40px 16px 20px;
    font-size: 1.5rem;
    min-height: 72px;
  }
}
@media screen and (min-width: 768px) {
  .pg-index-faq-list__item-title {
    padding: 38px 70px 38px 48px;
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: 0.15em;
  }
}
.pg-index-faq-list__item-title::before {
  right: 40px;
  width: 20px;
  height: 17px;
}
@media screen and (max-width: 767.98px) {
  .pg-index-faq-list__item-title::before {
    right: 16px;
    width: 14px;
    height: 10px;
  }
}
@media (any-hover: hover) {
  .pg-index-faq-list__item-title:hover {
    background: #004098;
  }
}
.pg-index-faq-list__item-title-text {
  display: flex;
  align-items: center;
}
.pg-index-faq-list__item-title-num {
  display: flex;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
  padding-right: 0.2em;
}
@media screen and (max-width: 767.98px) {
  .pg-index-faq-list__item-title-num {
    flex-basis: 34px;
    font-size: 1.1333333333em;
    letter-spacing: 0.0588235294em;
    margin-right: 14px;
  }
}
@media screen and (min-width: 768px) {
  .pg-index-faq-list__item-title-num {
    flex-basis: 69px;
    margin-right: 40px;
  }
}
.pg-index-faq-list__item-title-num::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #fff;
}
.pg-index-faq-list__item-desc {
  margin: 0;
}
@media screen and (max-width: 767.98px) {
  .pg-index-faq-list__item-desc {
    font-size: 1.3rem;
    line-height: 1.3076923077;
    letter-spacing: 0.0769230769em;
  }
}
@media screen and (min-width: 768px) {
  .pg-index-faq-list__item-desc {
    letter-spacing: 0.0625em;
  }
}
.pg-index-faq-list__item-desc-text {
  margin: 0;
  font-weight: 500;
}
@media screen and (max-width: 767.98px) {
  .pg-index-faq-list__item-desc-text {
    padding: 18px 20px;
  }
}
@media screen and (min-width: 768px) {
  .pg-index-faq-list__item-desc-text {
    padding: 24px 48px;
  }
}

/*
* page/pg-sitemap.css
*/
.pg-sitemap-nav-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .pg-sitemap-nav-list {
    font-size: 1.8rem;
    letter-spacing: 0.0555555556em;
    gap: 2.0555555556em;
  }
}
@media screen and (min-width: 768px) {
  .pg-sitemap-nav-list {
    font-size: 2.8rem;
    line-height: 1.5;
    letter-spacing: 0.0714285714em;
    gap: 1.4285714286em;
  }
}
.pg-sitemap-nav-list__link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s linear;
}
@media (any-hover: hover) {
  .pg-sitemap-nav-list__link:hover {
    opacity: 0.7;
  }
}

/*
* page/pg-about.css
*/
.pg-about-list {
  display: flex;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767.98px) {
  .pg-about-list {
    flex-direction: column;
    gap: 46px;
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .pg-about-list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
    margin-top: 28px;
  }
}
@media screen and (max-width: 1200px) {
  .pg-about-list {
    max-width: 700px;
  }
}
.pg-about-list__item {
  position: relative;
  background: #E2F3FD;
}
@media screen and (max-width: 767.98px) {
  .pg-about-list__item {
    padding: 13px 12px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .pg-about-list__item {
    display: flex;
    min-height: 292px;
    padding: 16px 15px;
  }
}
.pg-about-list__item + .pg-about-list__item::before {
  content: "";
  position: absolute;
  background: url("../img/common/icon_arrow_3.png?d=202505261000") no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 767.98px) {
  .pg-about-list__item + .pg-about-list__item::before {
    bottom: 100%;
    left: 50%;
    transform: rotate(90deg) translate(-50%, 50%);
    width: 16px;
    height: 25px;
  }
}
@media screen and (min-width: 768px) {
  .pg-about-list__item + .pg-about-list__item::before {
    right: 100%;
    top: 50%;
    transform: translate(-9px, -50%);
    width: 14px;
    height: 21px;
  }
}

.pg-about-list__title {
  margin: 0;
  font-weight: bold;
  color: #004098;
  background: #fff;
  box-shadow: inset 0 0 0 2px #004098;
}
@media screen and (max-width: 767.98px) {
  .pg-about-list__title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 42px;
    padding: 10px;
    font-size: 1.6rem;
    letter-spacing: 0.0625em;
  }
}
@media screen and (min-width: 768px) {
  .pg-about-list__title {
    writing-mode: vertical-rl;
    font-size: 1.8rem;
    letter-spacing: 0.0555555556em;
    line-height: 2.4444444444;
  }
}
@media screen and (min-width: 768px) {
  .pg-about-list__item--2 .pg-about-list__title {
    letter-spacing: 0.1666666667em;
  }
}
@media screen and (max-width: 767.98px) {
  .pg-about-list__item--3 .pg-about-list__title {
    letter-spacing: 0.125em;
  }
}
@media screen and (min-width: 768px) {
  .pg-about-list__item--3 .pg-about-list__title {
    letter-spacing: 0.2777777778em;
  }
}
@media screen and (max-width: 767.98px) {
  .pg-about-list__item--4 .pg-about-list__title {
    letter-spacing: 1.25em;
    text-indent: 1.125em;
  }
}
@media screen and (min-width: 768px) {
  .pg-about-list__item--4 .pg-about-list__title {
    letter-spacing: 1.1111111111em;
    text-indent: 0.5555555556em;
  }
}

.pg-about-list__content {
  display: flex;
  margin: 0 auto;
}
@media screen and (max-width: 767.98px) {
  .pg-about-list__content {
    flex-direction: column-reverse;
    gap: 15px;
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .pg-about-list__content {
    flex-direction: column;
    justify-content: space-between;
    margin-left: 10px;
  }
}
@media screen and (min-width: 768px) {
  .pg-about-list__item--3 .pg-about-list__content {
    margin-left: 18px;
  }
}

.pg-about-list__desc {
  margin: 0;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.3571428571;
  letter-spacing: 0.0357142857em;
  color: #004098;
}
@media screen and (min-width: 768px) {
  .pg-about-list__desc {
    margin-top: 5px;
  }
}

.pg-about-list__pic {
  max-width: 100%;
  margin: 0 auto;
}
.pg-about-list__item--2 .pg-about-list__pic {
  width: 124px;
}
.pg-about-list__item--3 .pg-about-list__pic {
  width: 133px;
}
.pg-about-list__item--4 .pg-about-list__pic {
  width: 176px;
}

/*
 * object/utility/_u-mg.scss
 */
.u-mg-auto {
  margin: 0 auto;
}

.u-mgi-auto {
  margin-inline: auto;
}

.u-mg-none {
  margin: 0;
}

.u-mgt-none {
  margin-top: 0;
}

.u-mgb-none {
  margin-bottom: 0;
}

.u-mgl-none {
  margin-left: 0;
}

.u-mgr-none {
  margin-right: 0;
}

.u-mgt-em1 {
  margin-top: 1em;
}

.u-mgb-em1 {
  margin-bottom: 1em;
}

.u-mgl-em1 {
  margin-left: 1em;
}

.u-mgr-em1 {
  margin-right: 1em;
}

.u-mgl-em03 {
  margin-left: 0.3em;
}

/*
 * object/utility/_u-pd.scss
 */
.u-pd-none {
  padding: 0;
}

.u-pdt-none {
  padding-top: 0;
}

.u-pdb-none {
  padding-bottom: 0;
}

.u-pdl-none {
  padding-left: 0;
}

.u-pdr-none {
  padding-right: 0;
}

.u-pdt-none {
  padding-top: 0;
}

.u-pdt-em1 {
  padding-top: 1em;
}

.u-pdb-em1 {
  margin-bottom: 1em;
}

.u-pdl-em1 {
  padding-left: 1em;
}

.u-pdr-em1 {
  padding-right: 1em;
}

/*
 * object/utility/_u-typo.scss
 */
.u-weight-normal {
  font-weight: normal;
}

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

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

.u-weight-black {
  font-weight: 900;
}

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

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

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

.u-deco-under {
  text-decoration: underline;
}

@media screen and (max-width: 767.98px) {
  .u-phrase-sp {
    display: inline-block;
  }
}

@media screen and (max-width: 389.98px) {
  .u-phrase-dzsp {
    display: inline-block;
  }
}

@media screen and (min-width: 390px) {
  .u-phrase-dzsp-min {
    display: inline-block;
  }
}

@media screen and (min-width: 560px) and (max-width: 767.98px) {
  .u-phrase-tab-s {
    display: inline-block;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023.98px) {
  .u-phrase-tab {
    display: inline-block;
  }
}

@media screen and (min-width: 768px) {
  .u-phrase-pc {
    display: inline-block;
  }
}

/*
 * object/utility/_u-hover.scss
 */
@media screen and (min-width: 376px) {
  .u-max-iphone {
    display: none;
  }
}

@media screen and (max-width: 375.98px) {
  .u-min-iphone {
    display: none;
  }
}

@media screen and (min-width: 560px) {
  .u-max-sp {
    display: none;
  }
}

@media screen and (max-width: 559.98px) {
  .u-min-sp {
    display: none;
  }
}

@media screen and (min-width: 390px) {
  .u-max-dzsp {
    display: none;
  }
}

@media screen and (max-width: 389.98px) {
  .u-min-dzsp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .u-max-br {
    display: none;
  }
}

@media screen and (max-width: 767.98px) {
  .u-min-br {
    display: none;
  }
}

@media screen and (min-width: 0px) {
  .u-max-m {
    display: none;
  }
}

@media screen and (max-width: -0.02px) {
  .u-min-m {
    display: none;
  }
}

@media screen and (min-width: 700px) {
  .u-max-l {
    display: none;
  }
}

@media screen and (max-width: 699.98px) {
  .u-min-l {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .u-max-xl {
    display: none;
  }
}

@media screen and (max-width: 1023.98px) {
  .u-min-xl {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .u-max-head {
    display: none;
  }
}

@media screen and (max-width: 767.98px) {
  .u-min-head {
    display: none;
  }
}

@media screen and (min-width: 560px) and (max-width: 767.98px) {
  .u-tab-s-none {
    display: none;
  }
}

.u-tab-s-block {
  display: none;
}
@media screen and (min-width: 560px) and (max-width: 767.98px) {
  .u-tab-s-block {
    display: block;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023.98px) {
  .u-tab-none {
    display: none;
  }
}

.u-tab-block {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1023.98px) {
  .u-tab-block {
    display: block;
  }
}

.u-display-none {
  display: none;
}

.u-display-i {
  display: inline;
}

.u-display-b {
  display: block;
}

.u-display-ib {
  display: inline-block;
}

.u-display-flex {
  display: flex;
}

.u-display-if {
  display: inline-flex;
}/*# sourceMappingURL=style.css.map */