*, :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%;
}

body {
  display: flex;
  width: 100%;
  padding: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-break: strict;
  word-break: break-word;
  overflow-wrap: break-word;
  color: #222;
}
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;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 1.5s;
  transition-timing-function: ease-out;
}
body.is-load .l-wrap {
  opacity: 1;
}
.l-wrap--pdt1 {
  padding-top: 9.375%;
}
@media screen and (max-width: 767.98px) {
  .l-wrap--pdt1 {
    padding-top: 84px;
    padding-top: min(84px, 22.4%);
  }
}
@media print, (min-width: 1280px) {
  .l-wrap--pdt1 {
    padding-top: 120px;
  }
}
/*
* layout/l-header.css
*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 100%;
  background: #fff;
}
.l-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  padding-bottom: 0.46875%;
  background: #222;
}
@media screen and (max-width: 767.98px) {
  .l-header::after {
    padding-bottom: min(0.1875rem, 0.8%);
    padding-bottom: clamp(0.09375rem, 1.3333333333%, 0.1875rem);
  }
}
@media print, (min-width: 1280px) {
  .l-header::after {
    padding-bottom: 0.375rem;
  }
}
.l-header__inner {
  position: relative;
  padding-bottom: 9.375%;
  container-type: inline-size;
}
@media screen and (max-width: 767.98px) {
  .l-header__inner {
    padding-bottom: 84px;
    padding-bottom: min(84px, 22.4%);
  }
}
@media print, (min-width: 1280px) {
  .l-header__inner {
    padding-bottom: 120px;
  }
}

.l-header__logo {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  margin: 0;
}
@media screen and (max-width: 767.98px) {
  .l-header__logo {
    width: 12.5333333333%;
    max-width: 2.9375rem;
  }
}
@media print, (min-width: 768px) {
  .l-header__logo {
    width: 5%;
    max-width: 4rem;
  }
}
.l-header__logo-link:any-link {
  transition: opacity 0.2s linear;
}
@media (any-hover: hover) {
  .l-header__logo-link:any-link:hover {
    opacity: 0.6;
  }
}
.l-header__logo-img {
  width: 100%;
  height: auto;
}

.l-header__hamburger {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 8.59375%;
  width: 2.8125%;
  height: 0;
  margin-top: 3.28125%;
  padding: 0 0 2.8125%;
  border: none;
  cursor: pointer;
  background: url("../img/common/btn_header_hamburger.svg?d=202608241311") no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 767.98px) {
  .l-header__hamburger {
    right: 0;
    width: 18.6666666667%;
    max-width: 70px;
    margin-top: 0;
    padding-bottom: min(84px, 22.4%);
    background-size: 42.8571428571%;
  }
}
@media print, (min-width: 1280px) {
  .l-header__hamburger {
    right: 110px;
    width: 36px;
    margin-top: 42px;
    padding-bottom: 36px;
  }
}
body.is-gnav-open .l-header__hamburger {
  visibility: hidden;
}
.l-header__hamburger {
  transition: opacity 0.2s linear;
}
@media (any-hover: hover) {
  .l-header__hamburger:hover {
    opacity: 0.6;
  }
}

.l-header__close {
  visibility: hidden;
  position: absolute;
  top: 0;
  right: 8.59375%;
  width: 2.8125%;
  height: 0;
  margin-top: 3.28125%;
  padding: 0 0 2.8125%;
  background: none;
  border: none;
  cursor: pointer;
  background: url("../img/common/btn_header_hamburger_close.svg?d=202608241311") no-repeat center;
  background-size: contain;
}
@media screen and (max-width: 767.98px) {
  .l-header__close {
    right: 0;
    width: 18.6666666667%;
    max-width: 70px;
    margin-top: 0;
    padding-bottom: min(84px, 22.4%);
    background-size: 42.8571428571%;
  }
}
@media print, (min-width: 1280px) {
  .l-header__close {
    right: 110px;
    width: 36px;
    margin-top: 42px;
    padding-bottom: 36px;
  }
}
.l-header__close {
  transition: opacity 0.2s linear;
}
@media (any-hover: hover) {
  .l-header__close:hover {
    opacity: 0.6;
  }
}
body.is-gnav-open .l-header__close {
  visibility: visible;
}

.l-header__spacer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.l-header__menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1;
  width: 100%;
  font-size: 4.5rem;
  font-size: clamp(2.25rem, 5.625cqi, 4.5rem);
  outline: none;
  pointer-events: none;
  background: #fff;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 767.98px) {
  .l-header__menu {
    font-size: 2.5rem;
    font-size: clamp(1.25rem, 10.6666666667cqi, 5rem);
    font-size: 2.5rem;
    font-size: clamp(1.25rem, 10.6666666667cqi, 2.5rem);
  }
}
body.is-gnav-open .l-header__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.l-header__menu-wrap {
  position: relative;
  width: 100%;
  height: calc(100vh - 120px);
  height: calc(100vh - min(120px, 9.375cqi));
  margin: 0 0 0 auto;
  overflow-y: auto;
}
@media screen and (max-width: 767.98px) {
  .l-header__menu-wrap {
    height: calc(100vh - 84px);
    height: calc(100vh - min(84px, 22.4cqi));
  }
}
@media print, (min-width: 1280px) {
  .l-header__menu-wrap {
    height: calc(100vh - 120px);
  }
}

@media screen and (max-width: 767.98px) {
  .l-header__menu-title {
    position: relative;
    width: 100%;
    height: 42px;
  }
}
@media print, (min-width: 768px) {
  .l-header__menu-title {
    display: none;
  }
}

.l-header__nav {
  position: relative;
  z-index: 1;
  display: block;
  width: 82.8125%;
  max-width: 1060px;
  margin-inline: auto;
  padding-bottom: 1.5277777778em;
}
@media screen and (max-width: 767.98px) {
  .l-header__nav {
    display: flex;
    flex-direction: column;
    width: 89.3333333333%;
    padding-bottom: 2.75em;
  }
}

.l-header__nav-list1 {
  display: flex;
  list-style: none;
  flex-direction: column;
  margin: 0 auto 0 0;
  padding: 0;
  font-weight: bold;
  line-height: 1.1538461538;
}
@media screen and (max-width: 767.98px) {
  .l-header__nav-list1 {
    margin: 0;
    gap: 0;
  }
}

.l-header__nav-list1-item {
  position: relative;
}

.l-header__nav-list1-link {
  position: relative;
  display: block;
  padding: 0.125em 0 0.375em;
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 767.98px) {
  .l-header__nav-list1-link {
    padding: 0.2em 0 0.425em;
  }
}
.l-header__nav-list1-link::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0833333333em;
  background: #222;
  pointer-events: none;
  transition-property: background;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
.l-header__nav-list1-link:any-link {
  transition: opacity 0.2s linear;
}
@media (any-hover: hover) {
  .l-header__nav-list1-link:any-link:hover {
    opacity: 0.6;
  }
}

.l-header__nav-list2 {
  margin-top: 9.1666666667em;
  font-size: 0.75rem;
  font-size: clamp(0.375rem, 0.9375cqi, 0.75rem);
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .l-header__nav-list2 {
    font-size: 0.75rem;
    font-size: clamp(0.375rem, 3.2cqi, 0.75rem);
  }
}

.l-header__nav-list2-title {
  margin: 0 0 0.8333333333em;
}
@media screen and (max-width: 767.98px) {
  .l-header__nav-list2-title {
    margin-bottom: 0.9166666667em;
  }
}

.l-header__nav-list2-list {
  display: flex;
  align-items: center;
  gap: 0 3em;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 767.98px) {
  .l-header__nav-list2-list {
    gap: 0 2.5em;
  }
}
.l-header__nav-list2-list__link {
  display: inline-block;
  position: relative;
  color: inherit;
  text-decoration: none;
}
.l-header__nav-list2-list__link-img {
  display: inline-block;
  vertical-align: bottom;
  width: auto;
  height: 1.8333333333em;
}
@media screen and (max-width: 767.98px) {
  .l-header__nav-list2-list__link-img {
    height: 2.1666666667em;
  }
}
.l-header__nav-list2-list__link:any-link {
  transition: opacity 0.2s linear;
}
@media (any-hover: hover) {
  .l-header__nav-list2-list__link:any-link:hover {
    opacity: 0.6;
  }
}

.l-header__nav-list3 {
  margin: 3.4166666667em 0 0;
  font-size: 0.75rem;
  font-size: clamp(0.375rem, 0.9375cqi, 0.75rem);
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .l-header__nav-list3 {
    margin-top: 2.8333333333em;
    font-size: 0.75rem;
    font-size: clamp(0.375rem, 3.2cqi, 0.75rem);
  }
}

.l-header__nav-list3-title {
  margin: 0 0 0.8333333333em;
}
@media screen and (max-width: 767.98px) {
  .l-header__nav-list3-title {
    margin-bottom: 0.1666666667em;
  }
}

.l-header__nav-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #fff;
  border-radius: 5em;
  background: #6455a0;
  box-shadow: inset 0 0 0 2px #6455a0;
  transition-property: background, color, opacity;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
@media screen and (max-width: 767.98px) {
  .l-header__nav-btn {
    font-size: 1.1111111111em;
    min-width: 10em;
    min-height: 2em;
    max-width: 90%;
    margin-top: 1.25em;
    padding: 0.4em 1em;
  }
}
@media print, (min-width: 768px) {
  .l-header__nav-btn {
    font-size: 1.125em;
    min-width: 7.7777777778em;
    height: 2.2222222222em;
    max-height: 100%;
    padding: 0.5em 1em;
  }
}
@media (any-hover: hover) {
  .l-header__nav-btn:hover {
    background: #fff;
    color: #6455a0;
  }
}

.l-header-loop {
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

/*
* layout/l-footer.css
*/
.l-footer {
  position: relative;
  background: #fff;
  border-top: 1px solid;
}
.l-footer__sizer {
  position: relative;
  width: 82.8125%;
  max-width: 1060px;
  margin: 0 auto;
  container-type: inline-size;
}
@media screen and (max-width: 767.98px) {
  .l-footer__sizer {
    width: 89.3333333333%;
  }
}
.l-footer__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  min-height: 14.1666666667em;
  margin-inline: auto;
  padding: 1.4166666667em 0 1.5em;
  font-size: 0.75rem;
}
@media screen and (max-width: 767.98px) {
  .l-footer__inner {
    display: block;
    min-height: 21.6666666667em;
    padding: 0.5833333333em 2em 3.3333333333em 0;
    font-size: 0.75rem;
    font-size: clamp(0.375rem, 3.5820895522cqi, 1.5rem);
  }
}

.l-footer-logo {
  flex: 1 0 auto;
  line-height: 1.5;
  padding-right: 2em;
}
@media screen and (max-width: 767.98px) {
  .l-footer-logo {
    padding-right: 0;
  }
}
.l-footer-logo__link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
.l-footer-logo__link:any-link {
  transition: opacity 0.2s linear;
}
@media (any-hover: hover) {
  .l-footer-logo__link:any-link:hover {
    opacity: 0.6;
  }
}
.l-footer-logo__img {
  width: 100%;
}

.l-footer-menus {
  display: flex;
  flex: 0 1 44.1666666667em;
  gap: 1em;
  padding-right: 2em;
}
@media screen and (max-width: 767.98px) {
  .l-footer-menus {
    display: block;
    margin-top: 4em;
    padding-right: 0;
  }
}

.l-footer-menu1 {
  flex: 0 0 16.0833333333em;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .l-footer-menu1 {
    flex: 1 1 auto;
  }
}

.l-footer-menu1-title {
  margin: 0 0 1em;
}
@media screen and (max-width: 767.98px) {
  .l-footer-menu1-title {
    margin-bottom: 0.9166666667em;
  }
}

.l-footer-menu1-list {
  display: flex;
  align-items: center;
  gap: 0 3em;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 767.98px) {
  .l-footer-menu1-list {
    gap: 0 2.5em;
  }
}
.l-footer-menu1-list__link {
  display: inline-block;
  position: relative;
  color: inherit;
  text-decoration: none;
}
.l-footer-menu1-list__link--icon::after {
  content: "";
  display: inline-block;
  vertical-align: bottom;
  width: 0.48em;
  height: 1.5em;
  margin-left: 0.56em;
  background: url("../img/arrow_right_2.svg?d=202608241311") no-repeat center;
  background-size: contain;
}
.l-footer-menu1-list__link-img {
  display: inline-block;
  vertical-align: bottom;
  width: auto;
  height: 1.8333333333em;
}
@media screen and (max-width: 767.98px) {
  .l-footer-menu1-list__link-img {
    height: 2.1666666667em;
  }
}
.l-footer-menu1-list__link:any-link {
  transition: opacity 0.2s linear;
}
@media (any-hover: hover) {
  .l-footer-menu1-list__link:any-link:hover {
    opacity: 0.6;
  }
}

.l-footer-menu2 {
  flex: 1 1 auto;
  margin: 0;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .l-footer-menu2 {
    margin-top: 2.8333333333em;
  }
}

.l-footer-menu2-title {
  margin: 0 0 1em;
}
@media screen and (max-width: 767.98px) {
  .l-footer-menu2-title {
    margin-bottom: 0.1666666667em;
  }
}

.l-footer-para1 {
  margin: 1.75em 0 0;
  padding: 0 1em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .l-footer-para1 {
    line-height: 1.65;
  }
}

.l-footer-copyright {
  margin: 1.8em auto 0;
  padding: 0 1em;
  line-height: 1.5;
  text-align: center;
}
.l-footer-pagetop {
  position: absolute;
  top: 0;
  right: -0.25em;
  margin-top: 1.5em;
  padding: 0;
  font-weight: 500;
  line-height: 1;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767.98px) {
  .l-footer-pagetop {
    margin-top: 0.9166666667em;
  }
}
.l-footer-pagetop__btn {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
.l-footer-pagetop__btn:any-link {
  transition: opacity 0.2s linear;
}
@media (any-hover: hover) {
  .l-footer-pagetop__btn:any-link:hover {
    opacity: 0.6;
  }
}

/*
* layout/l-main.css
*/
.l-main {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767.98px) {
  .l-main--mgt1 {
    margin-top: 62px;
  }
}
@media print, (min-width: 768px) {
  .l-main--mgt1 {
    margin-top: 100px;
  }
}
@media screen and (max-width: 767.98px) {
  .l-main--mgb1 {
    margin-bottom: 62px;
  }
}
@media print, (min-width: 768px) {
  .l-main--mgb1 {
    margin-bottom: 27.578125%;
  }
}
@media print, (min-width: 1280px) {
  .l-main--mgb1 {
    margin-bottom: 353px;
  }
}
@media screen and (max-width: 767.98px) {
  .l-main--pdt1 {
    padding-top: 62px;
  }
}
@media print, (min-width: 768px) {
  .l-main--pdt1 {
    padding-top: 6.25%;
  }
}
@media print, (min-width: 1280px) {
  .l-main--pdt1 {
    padding-top: 80px;
  }
}
.l-main--pdb1 {
  padding-bottom: 13.515625%;
}
@media screen and (max-width: 767.98px) {
  .l-main--pdb1 {
    padding-bottom: 46.4%;
  }
}
@media print, (min-width: 1280px) {
  .l-main--pdb1 {
    padding-bottom: 173px;
  }
}
.l-main--pdb2 {
  padding-bottom: 9.375%;
}
@media screen and (max-width: 767.98px) {
  .l-main--pdb2 {
    padding-bottom: 27.7333333333%;
  }
}
@media print, (min-width: 1280px) {
  .l-main--pdb2 {
    padding-bottom: 120px;
  }
}
.l-main--pdb3 {
  padding-bottom: 14.0625%;
}
@media screen and (max-width: 767.98px) {
  .l-main--pdb3 {
    padding-bottom: 43.4666666667%;
  }
}
@media print, (min-width: 1280px) {
  .l-main--pdb3 {
    padding-bottom: 180px;
  }
}

.c-img {
  display: block;
  max-width: 100%;
  height: auto;
}

.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-xxs {
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .c-maxim-xxs {
    max-width: 0px;
  }
}

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

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

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

.c-maxim-head {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-maxim-head {
    max-width: 768px;
  }
}

.c-maxim-m {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-maxim-m {
    max-width: 0px;
  }
}

.c-maxim-l {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-maxim-l {
    max-width: 0px;
  }
}

.c-maxim-lm {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-maxim-lm {
    max-width: 0px;
  }
}

.c-maxim-xl {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-maxim-xl {
    max-width: 0px;
  }
}

.c-maxim-xxl {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-maxim-xxl {
    max-width: 1060px;
  }
}

.c-maxim-dspc {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-maxim-dspc {
    max-width: 1280px;
  }
}

/*
 * object/component/_width.scss
 */
.c-width {
  width: 90%;
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .c-width {
    width: 90%;
  }
}

.c-width-mb {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-width-mb {
    width: 90%;
  }
}

.c-width-pc {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-width-pc {
    width: 90%;
  }
}

.c-width-xxs {
  margin-inline: auto;
}
.c-width-xs {
  margin-inline: auto;
}
.c-width-s {
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .c-width-s {
    width: 89.3333333333%;
  }
}

.c-width-head {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-width-head {
    width: 60%;
  }
}

.c-width-l {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-width-l {
    width: 0%;
  }
}

.c-width-lm {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-width-lm {
    width: 0%;
  }
}

.c-width-l {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-width-l {
    width: 0%;
  }
}

.c-width-xl {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-width-xl {
    width: 0%;
  }
}

.c-width-xxl {
  margin-inline: auto;
}
@media print, (min-width: 768px) {
  .c-width-xxl {
    width: 82.8125%;
  }
}

/*
 * object/component/_c-para.scss
 */
.c-para {
  margin: 0;
}

.c-para1 {
  margin: 2em 0 0;
  line-height: 2;
}
@media screen and (max-width: 767.98px) {
  .c-para1__space1-sp {
    letter-spacing: -0.0025em;
  }
}
@media print, (min-width: 768px) {
  .c-para1__item {
    display: block;
  }
}
.c-para1__item--3 {
  margin-top: 2em;
}
@media screen and (max-width: 767.98px) {
  .c-para1__item--3 {
    margin-top: 0;
  }
}

.c-para-note1 {
  margin: 1.3333333333em 0 0;
  font-size: 0.75rem;
  font-size: clamp(0.375rem, 1.1320754717cqi, 0.75rem);
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .c-para-note1 {
    margin-top: 0.6666666667em;
    font-size: 0.75rem;
    font-size: clamp(0.375rem, 3.2cqi, 1.5rem);
  }
}
.c-para-note1--color1 {
  color: #777;
}
.c-para-note1--mgt1 {
  margin-top: 0;
}
@media screen and (max-width: 767.98px) {
  .c-para-note1--mgt1 {
    margin-top: 2em;
  }
}

/*
 * object/component/_c-title.scss
 */
.c-title1 {
  margin: 1.5833333333em auto 0.8472222222em;
  font-size: 4.5rem;
  font-size: clamp(2.25rem, 6.7924528302cqi, 4.5rem);
  font-weight: bold;
  line-height: 1.5;
  border-top: 0.0833333333em solid;
}
@media screen and (max-width: 767.98px) {
  .c-title1 {
    width: 89.3333333333%;
    margin: 1.5em auto 0.75em;
    font-size: 2.5rem;
    font-size: clamp(1.25rem, 10.6666666667cqi, 5rem);
    border-width: 0.075em;
  }
}
.c-title1--mgt1 {
  margin-top: 2.4305555556em;
}
@media screen and (max-width: 767.98px) {
  .c-title1--mgt1 {
    margin-top: 2.575em;
  }
}
.c-title1__text {
  display: block;
  min-height: 1.6666666667em;
  padding: 0.0416666667em 0;
  border-bottom: 0.0833333333em solid;
}
@media screen and (max-width: 767.98px) {
  .c-title1__text {
    min-height: 1.775em;
    padding: 0;
    border-width: 0.075em;
  }
}

.c-title2 {
  margin: 0;
  font-size: 2rem;
  font-size: clamp(1rem, 3.0188679245cqi, 2rem);
  font-weight: bold;
  line-height: 2;
  border-top: 1px solid;
}
@media screen and (max-width: 767.98px) {
  .c-title2 {
    margin-bottom: 1.4em;
    margin-bottom: 1.55em;
    font-size: 1.25rem;
    font-size: clamp(0.625rem, 5.3333333333cqi, 2.5rem);
    line-height: 2;
  }
}
.c-title2__item {
  display: block;
  padding: 0.078125em 0;
  border-bottom: 1px solid;
}
@media screen and (max-width: 767.98px) {
  .c-title2__item {
    padding: 0;
  }
}
@media print, (min-width: 768px) {
  .c-title2__item-pc {
    display: block;
    padding: 0.078125em 0;
    border-bottom: 1px solid;
  }
}
@media screen and (max-width: 767.98px) {
  .c-title2__item-sp {
    display: block;
    padding: 0;
    border-bottom: 1px solid;
  }
}
@media screen and (max-width: 767.98px) {
  .c-title2__item-1, .c-title2__item-2 {
    display: inline;
    border: none;
  }
}

.c-title3 {
  margin: 4.85em 0 1.35em;
  font-size: 1.25rem;
  font-size: clamp(0.625rem, 1.8867924528cqi, 1.25rem);
  font-weight: bold;
  line-height: 2.94;
  border-top: 1px solid;
}
@media screen and (max-width: 767.98px) {
  .c-title3 {
    margin: 5.375em 0 1.875em;
    font-size: 1rem;
    font-size: clamp(0.5rem, 4.2666666667cqi, 2rem);
    line-height: 3.4125;
  }
}
.c-title3--mgt1 {
  margin-top: 8.4em;
}
@media screen and (max-width: 767.98px) {
  .c-title3--mgt1 {
    margin-top: 10.75em;
  }
}
.c-title3__item {
  display: block;
  border-bottom: 1px solid;
}
@media print, (min-width: 768px) {
  .c-title3__item-pc {
    display: block;
    border-bottom: 1px solid;
  }
}
@media screen and (max-width: 767.98px) {
  .c-title3__item-sp {
    display: block;
    border-bottom: 1px solid;
  }
}

.c-title-sub1 {
  margin: 4.85em 0 1.9em;
  font-size: 1.25rem;
  font-size: clamp(0.625rem, 1.8867924528cqi, 1.25rem);
  font-weight: bold;
  line-height: 2;
}
@media screen and (max-width: 767.98px) {
  .c-title-sub1 {
    margin: 5.375em 0 1.4375em;
    font-size: 1rem;
    font-size: clamp(0.5rem, 4.2666666667cqi, 2rem);
  }
}
.c-title-sub1--mgt1 {
  margin-top: 8.4em;
}
@media screen and (max-width: 767.98px) {
  .c-title-sub1--mgt1 {
    margin-top: 10.75em;
  }
}

/*
 * object/component/_c-link.scss
 */
.c-link1 {
  background: rgba(255, 255, 255, 0);
  border: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: inherit;
  color: inherit;
  text-decoration: none;
}
.c-link1--underline {
  text-decoration: underline;
}

.c-link1:any-link,
button.c-link1 {
  transition: opacity 0.2s linear;
}
@media (any-hover: hover) {
  .c-link1:any-link:hover,
  button.c-link1:hover {
    opacity: 0.6;
  }
}

.c-link2 {
  background: rgba(255, 255, 255, 0);
  border: none;
  padding: 0;
  appearance: none;
  color: #6455a0;
  text-decoration: underline;
}

/*
 * object/component/_c-button.scss
 */
.c-button {
  display: inline-block;
  background: rgba(255, 255, 255, 0);
  border: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 1;
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 2.3125em;
  padding: 0.5em 1.5em;
  font-size: 1rem;
  font-size: clamp(0.5rem, 1.5094339623cqi, 1rem);
  font-weight: normal;
  line-height: 1.25;
  color: #222;
  background: #fff;
  border-radius: 100vh;
  transition: 0.2s linear;
}
@media screen and (max-width: 767.98px) {
  .c-button {
    min-height: 2.3571428571em;
    padding: 0.55em 1.3428571429em;
    font-size: 0.875rem;
    font-size: clamp(0.4375rem, 4.1791044776cqi, 1.75rem);
  }
}
.c-button--bd1 {
  box-shadow: inset 0 0 0 0.0625em #222;
}
@media screen and (max-width: 767.98px) {
  .c-button--bd1 {
    box-shadow: inset 0 0 0 0.0714285714em #222;
  }
}
.c-button--color1 {
  color: #fff;
  background: #222;
  box-shadow: inset 0 0 0 0.0625em #222;
}
@media screen and (max-width: 767.98px) {
  .c-button--color1 {
    box-shadow: inset 0 0 0 0.0714285714em #222;
  }
}
.c-button--size1 {
  padding-inline: 2.5em;
}
@media screen and (max-width: 767.98px) {
  .c-button--size1 {
    padding-inline: 2.3571428571em;
  }
}
.c-button__arrow {
  display: inline-block;
  vertical-align: bottom;
  width: 0.875em;
  height: 1.25em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.c-button__arrow--right {
  margin-left: 0.375em;
  background: url("../img/common/icon_arrow_1_right.svg?d=202608241311") no-repeat center;
  background-size: contain;
}
.c-button__arrow--left {
  margin-right: 0.375em;
  background-image: url("../img/common/icon_arrow_1_left.svg?d=202608241311");
}
.c-button__arrow--right-white {
  margin-left: 0.375em;
  background: url("../img/common/icon_arrow_1_white_right.svg?d=202608241311") no-repeat center;
  background-size: contain;
}
.c-button__arrow--left-white {
  margin-right: 0.375em;
  background-image: url("../img/common/icon_arrow_1_white_left.svg?d=202608241311");
}

@media (any-hover: hover) {
  .c-button:any-link:hover, button.c-button:hover {
    color: #fff;
    background: #222;
  }
}

@media (any-hover: hover) {
  .c-button--color1:any-link:hover, button.c-button--color1:hover {
    color: #222;
    background: #fff;
  }
}

.c-buttons-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  margin: 5.6603773585% auto 0;
  padding: 0;
}
@media screen and (max-width: 767.98px) {
  .c-buttons-center {
    margin-top: 12.8%;
  }
}
.c-buttons-center__item {
  width: 100%;
  text-align: center;
}
.c-buttons-center__item + .c-buttons-center__item {
  margin-top: 3.90625%;
}
@media screen and (max-width: 767.98px) {
  .c-buttons-center__item + .c-buttons-center__item {
    margin-top: 13.3333333333%;
  }
}

.p-sec1 {
  position: relative;
}
.p-sec1__sizer {
  position: relative;
  container-type: inline-size;
}
.p-sec1__inner {
  position: relative;
}
.p-sec1-block1 {
  position: relative;
  display: flex;
  margin-top: 6.6037735849%;
}
@media screen and (max-width: 767.98px) {
  .p-sec1-block1 {
    display: block;
    margin-top: 15.2%;
  }
}
@media screen and (max-width: 767.98px) {
  .p-sec1-block1--mgt-sp1 {
    margin-top: 11.2%;
  }
}
.p-sec1-block1--reverse {
  flex-direction: row-reverse;
}
.p-sec1-block1--align-center {
  align-items: center;
}
.p-sec1-block1__item {
  position: relative;
  flex: 1 1 auto;
}
.p-sec1-block1__item--mgt1 {
  margin-top: 0.9433962264%;
}
@media screen and (max-width: 767.98px) {
  .p-sec1-block1__item--mgt1 {
    margin-top: 0;
  }
}
.p-sec1-block1__item--pdt2 {
  padding-top: 10.4716981132%;
}
@media screen and (max-width: 767.98px) {
  .p-sec1-block1__item--pdt2 {
    padding-top: 24.8%;
  }
}
.p-sec1-block1__item--pdr1 {
  padding-right: 4.7169811321%;
}
@media screen and (max-width: 767.98px) {
  .p-sec1-block1__item--pdr1 {
    padding-right: 0;
  }
}
.p-sec1-block1--half .p-sec1-block1__item {
  flex-basis: 50%;
}
.p-sec1-block1__item--size1 {
  flex: 0 0 35.0943396226%;
}
.p-sec1-block1__buttons1 {
  margin-top: 2rem;
  margin-top: clamp(1rem, 3.0188679245cqi, 2rem);
}
@media screen and (max-width: 767.98px) {
  .p-sec1-block1__buttons1 {
    margin-top: 2rem;
    margin-top: clamp(1rem, 9.552238806cqi, 4rem);
  }
}
@media screen and (max-width: 767.98px) {
  .p-sec1-block1__button1 {
    font-size: 0.875rem;
    font-size: clamp(0.4375rem, 3.7333333333cqi, 1.75rem);
  }
}

.p-sec1-desc1 {
  margin: 0;
  font-size: 1rem;
  font-size: clamp(0.5rem, 1.5094339623cqi, 1rem);
}
@media screen and (max-width: 767.98px) {
  .p-sec1-desc1 {
    font-size: 0.875rem;
    font-size: clamp(0.4375rem, 3.7333333333cqi, 1.75rem);
  }
}

.p-sec1-pic1 {
  margin: 7.4127906977% 0 6.6860465116%;
}
@media screen and (max-width: 767.98px) {
  .p-sec1-pic1 {
    margin: 9.552238806% 0 8.6567164179%;
  }
}
.p-sec1-pic1--mgt1 {
  margin-top: 24.4186046512%;
}
@media screen and (max-width: 767.98px) {
  .p-sec1-pic1--mgt1 {
    margin-top: 51.3432835821%;
  }
}
.p-sec1-pic1__img {
  display: block;
  max-width: 100%;
  height: auto;
}
.p-sec1-pic1__iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.p-sec1-define1 {
  margin: 0;
  padding: 1.25em 0 0.8125em;
  border-top: 1px solid;
  border-bottom: 1px solid;
  font-size: 1rem;
  font-size: clamp(0.5rem, 1.5094339623cqi, 1rem);
}
@media screen and (max-width: 767.98px) {
  .p-sec1-define1 {
    padding: 0.4285714286em 0 0.8571428571em;
    font-size: 0.875rem;
    font-size: clamp(0.4375rem, 3.7333333333cqi, 1.75rem);
  }
}
.p-sec1-define1--mgt1 {
  margin-top: 1.875em;
}
@media screen and (max-width: 767.98px) {
  .p-sec1-define1--mgt1 {
    margin-top: 2.3571428571em;
  }
}
.p-sec1-define1--mgb1 {
  margin-bottom: 10.5em;
}
@media screen and (max-width: 767.98px) {
  .p-sec1-define1--mgb1 {
    margin-bottom: 12.2857142857em;
  }
}
.p-sec1-define1-title {
  margin: 0 0 1.3333333333em;
  font-size: 1.5rem;
  font-size: clamp(0.75rem, 2.2641509434cqi, 1.5rem);
  font-weight: bold;
  line-height: 1.3333333333;
}
@media screen and (max-width: 767.98px) {
  .p-sec1-define1-title {
    margin-bottom: 1.4em;
    font-size: 1.25rem;
    font-size: clamp(0.625rem, 5.3333333333cqi, 2.5rem);
    line-height: 1.4;
  }
}
.p-sec1-define1-detail {
  margin: 0;
}

.p-sec1-define2 {
  margin: 0;
  font-size: 1rem;
  font-size: clamp(0.5rem, 1.5094339623cqi, 1rem);
  line-height: 2;
}
@media screen and (max-width: 767.98px) {
  .p-sec1-define2 {
    font-size: 0.875rem;
    font-size: clamp(0.4375rem, 3.7333333333cqi, 1.75rem);
  }
}
.p-sec1-define2__wrap {
  margin-top: 2em;
  overflow: hidden;
}
.p-sec1-define2-title {
  float: left;
  margin: 0 1em 0 0;
  font-weight: bold;
}
.p-sec1-define2-detail {
  margin: 0;
}
.p-sec1-define2-detail__para1 {
  margin: 0;
}

.p-sec1-meta1 {
  margin: 0;
  font-size: 0.75rem;
  font-size: clamp(0.375rem, 1.1320754717cqi, 0.75rem);
  font-weight: bold;
  line-height: 1.6666666667;
  border-bottom: 1px solid;
}
@media screen and (max-width: 767.98px) {
  .p-sec1-meta1 {
    font-size: 0.75rem;
    font-size: clamp(0.375rem, 3.2cqi, 1.5rem);
    line-height: 1.6666666667;
  }
}
.p-sec1-meta1--bdt-none {
  border-top: none;
}
.p-sec1-meta1__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 5.75em;
  padding: 0.078125em 0;
}
@media screen and (max-width: 767.98px) {
  .p-sec1-meta1__item {
    min-height: 3.25em;
    padding: 0;
  }
}

.p-sec1-meta2 {
  font-size: 1rem;
  font-size: clamp(0.5rem, 1.5094339623cqi, 1rem);
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .p-sec1-meta2 {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-size: clamp(0.375rem, 3.2cqi, 1.5rem);
    margin-bottom: 1.9166666667em;
  }
}
.p-sec1-meta2--mgt1 {
  margin-top: 0.3125em;
}
@media screen and (max-width: 767.98px) {
  .p-sec1-meta2--mgt1 {
    margin-top: 0;
  }
}

.p-sec1-meta2-title {
  margin: 0;
}
.p-sec1-meta2-time {
  display: block;
  margin: 1.125em 0 0;
}
@media screen and (max-width: 767.98px) {
  .p-sec1-meta2-time {
    margin: 0 0 0 1em;
  }
}

.p-sec1-meta3 {
  display: flex;
  align-items: center;
  gap: 2.375em;
  margin-top: 2.3125em;
  font-size: 1rem;
  font-size: clamp(0.5rem, 1.5094339623cqi, 1rem);
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .p-sec1-meta3 {
    margin-top: 2.3571428571em;
    font-size: 0.875rem;
    font-size: clamp(0.4375rem, 3.7333333333cqi, 0.875rem);
  }
}
@media screen and (max-width: 767.98px) {
  .p-sec1-meta3--mgt-sp1 {
    margin-top: 2.7857142857em;
  }
}

.p-sec1-meta3-title {
  margin: 0;
}
.p-sec1-meta3-list {
  display: flex;
  align-items: center;
  gap: 2.25em;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767.98px) {
  .p-sec1-meta3-list {
    gap: 2.1428571429em;
  }
}
.p-sec1-meta3-list__link {
  display: inline-block;
  position: relative;
  color: inherit;
  text-decoration: none;
}
.p-sec1-meta3-list__link-img {
  display: inline-block;
  vertical-align: bottom;
  width: auto;
  height: 1.375em;
}
@media screen and (max-width: 767.98px) {
  .p-sec1-meta3-list__link-img {
    height: 1.8571428571em;
  }
}
.p-sec1-meta3-list__link:any-link {
  transition: opacity 0.2s linear;
}
@media (any-hover: hover) {
  .p-sec1-meta3-list__link:any-link:hover {
    opacity: 0.6;
  }
}

/*
* object/project/p-listing.css
*/
.p-listing1 {
  position: relative;
}
.p-listing1__sizer {
  position: relative;
  container-type: inline-size;
  margin: 0 auto;
}
.p-listing1__inner {
  position: relative;
  margin-top: 16.0377358491%;
}
@media screen and (max-width: 767.98px) {
  .p-listing1__inner {
    margin-top: 51.3432835821%;
  }
}
.p-listing1-lists {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  font-size: 1rem;
  font-size: clamp(0.5rem, 1.5094339623cqi, 1rem);
}
@media screen and (max-width: 767.98px) {
  .p-listing1-lists {
    display: block;
    font-size: 0.875rem;
    font-size: clamp(0.4375rem, 4.1791044776cqi, 1.75rem);
  }
}

.p-listing1-card {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  container-type: inline-size;
  min-height: 15.25rem;
  min-height: clamp(7.625rem, 23.0188679245cqi, 15.25rem);
  border-top: 1px solid;
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 767.98px) {
  .p-listing1-card {
    flex-direction: column-reverse;
    justify-content: flex-end;
    min-height: 17.5rem;
    min-height: clamp(8.75rem, 83.5820895522cqi, 35rem);
    padding: 15.5223880597% 0;
  }
}
.p-listing1-card:any-link {
  transition: opacity 0.2s linear;
}
@media (any-hover: hover) {
  .p-listing1-card:any-link:hover {
    opacity: 0.6;
  }
}

.p-listing1-card-content {
  flex: 1 1 auto;
  padding: 3em 0;
}
@media screen and (max-width: 767.98px) {
  .p-listing1-card-content {
    padding: 0;
  }
}
.p-listing1-card-content__title {
  margin: 0 0 0.35em;
  font-size: 1.25em;
  font-weight: bold;
  line-height: 2;
}
@media screen and (max-width: 767.98px) {
  .p-listing1-card-content__title {
    margin-bottom: 0.0625em;
  }
}
.p-listing1-card-content__para1 {
  margin: 0;
  line-height: 2;
}
@media screen and (max-width: 767.98px) {
  .p-listing1-card-content__para1 {
    line-height: 2;
  }
}

.p-listing1-card-pic {
  position: relative;
  flex: 0 0 50%;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .p-listing1-card-pic {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 11.0625rem;
    min-height: clamp(5.53125rem, 52.8358208955cqi, 22.125rem);
    margin-top: -15.5223880597%;
    flex-basis: auto;
  }
}
.p-listing1-card-pic__img {
  height: auto;
  max-width: 68.679245283%;
}
@media screen and (max-width: 767.98px) {
  .p-listing1-card-pic__img {
    max-width: 75.223880597%;
    transform: translateY(3.550295858%);
  }
}

/*
* object/project/p-hero.css
*/
.p-hero1 {
  position: relative;
  color: #fff;
}
.p-hero1__sizer {
  position: relative;
  width: 100%;
  container-type: inline-size;
}
.p-hero1__inner {
  position: relative;
}
.p-hero1__img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.p-hero1__kv-img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/*
* page/pg-index.css
*/
.pg-index-hero {
  position: relative;
  color: #fff;
}
.pg-index-hero__sizer {
  position: relative;
  width: 100%;
  container-type: inline-size;
}
.pg-index-hero__inner {
  position: relative;
}
.pg-index-hero__kv-img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.pg-index-hero-swiper-slide {
  container-type: inline-size;
}
@media print, (min-width: 1280px) {
  .pg-index-hero-swiper-slide {
    width: 1280px;
  }
}
.pg-index-hero-swiper-slide__inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 100%;
  min-height: 720px;
  min-height: 56.25cqi;
  padding: 3.828125% 8.59375%;
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 767.98px) {
  .pg-index-hero-swiper-slide__inner {
    min-height: 470px;
    min-height: 125.3333333333cqi;
    padding: 10.6666666667% 5.3333333333%;
  }
}
.pg-index-hero-swiper-slide__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s linear;
}
@media (any-hover: hover) {
  .pg-index-hero-swiper-slide__inner:any-link:hover .pg-index-hero-swiper-slide__img {
    opacity: 0.6;
  }
}
.pg-index-hero-swiper-slide__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
@media (any-hover: hover) {
  .pg-index-hero-swiper-slide__link:hover {
    opacity: 1;
  }
}

.pg-index-hero .swiper-pagination {
  width: auto;
  right: 8.59375%;
  bottom: 1.25rem;
  font-size: 0.5rem;
  line-height: 1;
  text-align: right;
}
@media screen and (max-width: 767.98px) {
  .pg-index-hero .swiper-pagination {
    right: 5.3333333333%;
    font-size: max(0.375rem, 1.6cqi);
  }
}
@media print, (min-width: 1280px) {
  .pg-index-hero .swiper-pagination {
    right: calc(50% - 530px);
  }
}
.pg-index-hero .swiper-pagination-bullet {
  width: 1em;
  height: 1em;
  vertical-align: bottom;
  border-radius: 100vh;
  background: #fff;
  opacity: 1;
  transform-origin: left;
  transition: 0.3s ease;
}
@media (any-hover: hover) {
  .pg-index-hero .swiper-pagination-bullet:hover {
    opacity: 0.6;
  }
}
.pg-index-hero .pg-index-hero-swiper-pagination .swiper-pagination-bullet {
  margin: 0 0 0 1.5em;
}
@media screen and (max-width: 767.98px) {
  .pg-index-hero .pg-index-hero-swiper-pagination .swiper-pagination-bullet {
    margin-left: 2.3333333333em;
  }
}
.pg-index-hero .swiper-pagination-bullet-active {
  width: 3.5em;
  background: #fff;
  opacity: 1;
}
@media screen and (max-width: 767.98px) {
  .pg-index-hero .swiper-pagination-bullet-active {
    width: 4.6666666667em;
  }
}

.pg-index-hero__desc {
  flex: 1 1 auto;
}

.pg-index-hero__meta {
  margin: 0;
  font-size: 1rem;
  font-size: clamp(0.5rem, 1.25cqi, 1rem);
  font-weight: bold;
  line-height: 1.4285714286;
}
@media screen and (max-width: 767.98px) {
  .pg-index-hero__meta {
    font-size: 0.875rem;
    font-size: clamp(0.4375rem, 3.7333333333cqi, 1.75rem);
  }
}
.pg-index-hero__meta-time {
  margin-right: 1em;
}

.pg-index-hero__title {
  margin: 0.0833333333em 0 0;
  font-size: 1.5rem;
  font-size: clamp(0.75rem, 1.875cqi, 1.5rem);
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .pg-index-hero__title {
    margin-top: 0.5555555556em;
    font-size: 1.125rem;
    font-size: clamp(0.5625rem, 4.8cqi, 2.25rem);
    line-height: 1.5555555556;
  }
}

.pg-index-hero__quotes {
  margin: 0 0.25em;
}
.pg-index-hero__button {
  margin: 1.4150943396% 0 0 0.1886792453%;
  font-size: 1rem;
  font-size: clamp(0.5rem, 1.25cqi, 1rem);
}
@media screen and (max-width: 767.98px) {
  .pg-index-hero__button {
    margin: 5.3731343284% 0 0 0;
    font-size: 0.875rem;
    font-size: clamp(0.4375rem, 3.7333333333cqi, 1.75rem);
  }
}
@media (any-hover: hover) {
  .pg-index-hero-swiper-slide--hv-btn:hover .pg-index-hero__button {
    background: #222;
    color: #fff;
  }
}

.pg-index-outline {
  position: relative;
}
.pg-index-outline__sizer {
  position: relative;
  container-type: inline-size;
}
.pg-index-outline__inner {
  position: relative;
}
.pg-index-outline-pic1__img--1 {
  width: 100%;
}
.pg-index-outline-pic1__img--1 {
  margin: -0.7547169811% 0 0 -2.8301886792%;
}
@media screen and (max-width: 767.98px) {
  .pg-index-outline-pic1__img--1 {
    margin: -2.1333333333% auto 0;
  }
}

.pg-index-chairperson {
  position: relative;
}
.pg-index-chairperson__sizer {
  position: relative;
  container-type: inline-size;
}
.pg-index-chairperson__inner {
  position: relative;
}
.pg-index-chairperson-title1 {
  margin-top: 1.4583333333em;
}
@media screen and (max-width: 767.98px) {
  .pg-index-chairperson-title1 {
    margin-top: 3.275em;
  }
}

.pg-index-chairperson-block {
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767.98px) {
  .pg-index-chairperson-block {
    flex-direction: column-reverse;
  }
}
.pg-index-chairperson-block__item {
  padding-top: 7.641509434%;
}
@media screen and (max-width: 767.98px) {
  .pg-index-chairperson-block__item {
    padding-top: 4.2666666667%;
  }
}
.pg-index-chairperson-block__item--pdt2 {
  padding-top: 8.2075471698%;
}
@media screen and (max-width: 767.98px) {
  .pg-index-chairperson-block__item--pdt2 {
    padding-top: 4.2666666667%;
  }
}

@media screen and (max-width: 767.98px) {
  .pg-index-chairperson-pala1 {
    margin-top: 2.2142857143em;
  }
}

.pg-index-chairperson-person {
  padding: 4.7169811321% 5.8490566038% 0 0;
}
@media screen and (max-width: 767.98px) {
  .pg-index-chairperson-person {
    padding: 16% 0 0;
  }
}
.pg-index-chairperson-person--pdt1 {
  padding-top: 5.5660377358%;
}
@media screen and (max-width: 767.98px) {
  .pg-index-chairperson-person--pdt1 {
    padding-top: 13.6%;
  }
}

.pg-index-chairperson-person-pic {
  width: 43.8034188034%;
  margin-left: auto;
}
@media screen and (max-width: 767.98px) {
  .pg-index-chairperson-person-pic {
    width: 32%;
    margin: 0 auto;
  }
}

.pg-index-partner {
  position: relative;
}
.pg-index-partner__sizer {
  position: relative;
  container-type: inline-size;
}
.pg-index-partner__inner {
  position: relative;
}
.pg-index-partner-title1 {
  margin-top: 2.4027777778em;
}
@media screen and (max-width: 767.98px) {
  .pg-index-partner-title1 {
    margin-top: 4.325em;
  }
}

.pg-index-partner-kv1__img {
  width: 100%;
}

.pg-index-report {
  position: relative;
}
.pg-index-report__sizer {
  position: relative;
  container-type: inline-size;
}
.pg-index-report__inner {
  position: relative;
}
.pg-index-report-title1 {
  margin-top: 2.5em;
}
@media screen and (max-width: 767.98px) {
  .pg-index-report-title1 {
    margin: 4.5em auto 0.25em;
  }
}

.pg-index-report-list1 {
  display: flex;
  flex-wrap: wrap;
  row-gap: 6.25rem;
  row-gap: clamp(3.125rem, 9.4339622642cqi, 6.25rem);
  column-gap: 3.125rem;
  column-gap: clamp(1.5625rem, 4.7169811321cqi, 3.125rem);
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 767.98px) {
  .pg-index-report-list1 {
    display: block;
  }
}
.pg-index-report-list1__item {
  flex: 0 0 30.1886792453%;
}

.pg-index-report-card1 {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  container-type: inline-size;
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 767.98px) {
  .pg-index-report-card1 {
    padding: 5.9701492537% 0;
    border-bottom: 1px solid;
  }
}
@media screen and (max-width: 767.98px) {
  .pg-index-report-list1__item + .pg-index-report-card1 .pg-index-report-card1 {
    border-top: 1px solid;
  }
}
.pg-index-report-card1:any-link {
  transition: opacity 0.2s linear;
}
@media (any-hover: hover) {
  .pg-index-report-card1:any-link:hover {
    opacity: 0.6;
  }
}

.pg-index-report-card1-content {
  flex: 1 1 auto;
}
.pg-index-report-card1-content__meta {
  display: flex;
  justify-content: space-between;
  margin: 0.8333333333em 0 0 0;
  font-size: 0.75rem;
  font-size: clamp(0.375rem, 3.75cqi, 0.75rem);
  line-height: 1.4285714286;
}
@media screen and (max-width: 767.98px) {
  .pg-index-report-card1-content__meta {
    margin-top: 0.5833333333em;
    font-size: 0.75rem;
    font-size: clamp(0.375rem, 3.5820895522cqi, 1.5rem);
  }
}
.pg-index-report-card1-content__meta-time {
  margin-left: 1em;
}
.pg-index-report-card1-content__title {
  margin: 0.9166666667em 0 0;
  font-size: 1.5rem;
  font-size: clamp(0.75rem, 7.5cqi, 1.5rem);
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .pg-index-report-card1-content__title {
    margin-top: 1.25em;
    font-size: 1rem;
    font-size: clamp(0.5rem, 4.776119403cqi, 2rem);
    line-height: 1.75;
  }
}
.pg-index-report-card1-content__quotes {
  margin: 0 0.25em;
}
.pg-index-report-card1-content__para1 {
  margin-top: 0.875em;
}
@media screen and (max-width: 767.98px) {
  .pg-index-report-card1-content__para1 {
    margin: 0.3571428571em 0 -0.5714285714em;
    font-size: 0.875rem;
    font-size: clamp(0.4375rem, 4.1791044776cqi, 1.75rem);
    line-height: 2;
  }
}

.pg-index-report-card1-pic {
  position: relative;
  aspect-ratio: 320/183;
}
.pg-index-report-card1-pic__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pg-index-logo {
  position: relative;
}
.pg-index-logo__sizer {
  position: relative;
  container-type: inline-size;
}
.pg-index-logo__inner {
  position: relative;
}
.pg-index-logo-title1 {
  margin-top: 2.4027777778em;
}
@media screen and (max-width: 767.98px) {
  .pg-index-logo-title1 {
    margin-top: 4.325em;
  }
}

/*
* page/pg-report.css
*/
.pg-report01-article-logo {
  width: 35.1744186047%;
  margin: 7.7034883721% 0 7.1220930233%;
}
@media screen and (max-width: 767.98px) {
  .pg-report01-article-logo {
    width: 72.2388059701%;
    margin: 16.4179104478% auto 15.223880597%;
  }
}

.pg-report01-member__width {
  container-type: inline-size;
}

@media screen and (max-width: 767.98px) {
  .pg-report01-member-title1 {
    margin-bottom: 1.3em;
  }
}

.pg-report01-member-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18.2142857143em, 1fr));
  gap: 2.8571428571em 3.8em;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .pg-report01-member-list {
    font-size: min(0.875rem, 4.1791044776cqi);
    grid-template-columns: repeat(auto-fill, minmax(17.1428571429em, 1fr));
    gap: 1.4285714286em 2em;
  }
}

.pg-report01-member-card {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 1.4285714286em;
}

.pg-report01-member-card-content {
  flex: 1 1 auto;
  padding-top: 0.3571428571em;
}
@media screen and (max-width: 767.98px) {
  .pg-report01-member-card-content {
    padding-top: 0.2857142857em;
  }
}

.pg-report01-member-card-title1 {
  margin: 0 0 0.5714285714em;
  font-size: inherit;
  font-weight: 500;
}
.pg-report01-member-card-position {
  margin: 0;
  font-size: 0.8571428571em;
}
.pg-report01-member-card-pic1 {
  flex: 0 0 5.7142857143em;
}

.pg-report01-buttons {
  container-type: inline-size;
  margin-top: 11.320754717%;
}
@media screen and (max-width: 767.98px) {
  .pg-report01-buttons {
    margin-top: 31.0447761194%;
  }
}

/*
 * 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;
}

@media screen and (max-width: 767.98px) {
  .u-mgr-em1-sp {
    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-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-thin {
  font-weight: 100;
}

.u-weight-exlight {
  font-weight: 200;
}

.u-weight-light {
  font-weight: 300;
}

.u-weight-normal {
  font-weight: 400;
}

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

.u-weight-semibold {
  font-weight: 600;
}

.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-space {
  letter-spacing: 1em;
}

.u-space-tight {
  letter-spacing: -1em;
}

.u-space-half {
  letter-spacing: 0.5em;
}

.u-space-half-tight {
  letter-spacing: -0.5em;
}

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

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

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

@media print, (min-width: 375px) {
  .u-phrase-dssp-min {
    display: inline-block;
  }
}

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

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

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

.u-quotes {
  margin: 0 0.25em;
}
/*
 * object/utility/_u-hover.scss
 */
@media print, (min-width: 375px) {
  .u-max-iphone {
    display: none;
  }
}

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

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

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

@media print, (min-width: 375px) {
  .u-max-dssp {
    display: none;
  }
}

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

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

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

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

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

@media print, (min-width: 0px) {
  .u-max-l {
    display: none;
  }
}

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

@media print, (min-width: 0px) {
  .u-max-xl {
    display: none;
  }
}

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

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

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

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

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

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

.u-tab-block {
  display: none;
}
@media (min-width: 768px) and (max-width: -0.02px) {
  .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;
}

@media print, (min-width: 768px) {
  .u-display-ib-pc {
    display: inline-block;
  }
}

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

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

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

/*
 * object/utility/_u-clearfix.scss
 */
.u-clearfix::after {
  content: "";
  display: block;
  clear: both;
}/*# sourceMappingURL=style.css.map */