@charset "UTF-8";
/***
    The new CSS reset - version 1.7.2 (last updated 23.6.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* .l-header */
.l-header {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 65px;
  background-color: #fff;
}

.l-header__logo {
  width: 160px;
  padding-left: 12px;
  transform: translateY(2px);
}

.l-header-cv {
  width: 97px;
  height: 30px;
  margin-right: 66px;
  background: url(../img/common/btn_header01_sp.png) no-repeat center/100%;
}

.l-header-cv__link {
  display: block;
  line-height: 30px;
  color: rgb(145, 229, 92);
  transition: all 0.3s ease-in;
  font-size: 1.2rem;
  text-align: center;
}

@media not all and (pointer: coarse) {
  .l-header-cv__link:hover {
    color: #fff;
  }
}
@media (max-width: 374.98px) {
  .l-header__logo {
    width: 130px;
    transform: none;
  }
}
@media (min-width: 768px) {
  .l-header {
    height: 90px;
  }
  .l-header__logo {
    width: 280px;
    padding-left: 48px;
    transform: translateY(4px);
  }
  .l-header-cv {
    width: 180px;
    height: 56px;
    margin-right: 130px;
    background-image: url(../img/common/btn_header01_pc.png);
  }
  .l-header-cv__link {
    line-height: 56px;
    font-size: 1.7rem;
  }
}
.l-header-menu {
  position: absolute;
  z-index: 9999;
  top: 0;
  right: 0;
  width: 65px;
  height: 65px;
  background-color: #fff;
  cursor: pointer;
}

.l-header-menu__line {
  display: block;
  position: absolute;
  top: 30px;
  right: 15px;
  width: 36px;
  height: 3px;
  content: "";
  background: rgb(0, 0, 0);
  transition: background 0.3s 0.3s;
  transition-delay: 0.4s, 0s;
}

.l-header-menu__line::before, .l-header-menu__line::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: rgb(0, 0, 0);
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.4s, 0s;
}

.l-header-menu__line::before {
  top: -8px;
  transition-property: top, transform;
}

.l-header-menu__line::after {
  bottom: -8px;
  transition-property: bottom, transform;
}

.l-header-menu.is-open .l-header-menu__line {
  background: 0 0 transparent;
  transform: rotate(90deg);
  transition: all 0.3s ease-in;
}

.l-header-menu.is-open .l-header-menu__line::before, .l-header-menu.is-open .l-header-menu__line::after {
  transition-delay: 0s, 0.4s;
}

.l-header-menu.is-open .l-header-menu__line::before {
  top: 0;
  transform: rotate(45deg);
}

.l-header-menu.is-open .l-header-menu__line::after {
  bottom: 0;
  transform: rotate(-45deg);
}

@media (min-width: 768px) {
  .l-header-menu {
    width: 90px;
    height: 90px;
  }
  .l-header-menu__line {
    top: 44px;
    right: 44px;
    width: 50px;
  }
  .l-header-menu__line::before {
    top: -14px;
  }
  .l-header-menu__line::after {
    bottom: -14px;
  }
}
.l-header-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: absolute;
  z-index: 9000;
  top: 65px;
  right: 0;
  width: 100%;
  height: calc(100lvh - 65px);
  height: calc(100vh - 65px);
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  background: url(../img/common/bg_menu01_sp.png) no-repeat 100% 100%/cover;
  transform: translateX(120%);
  transition: all 0.3s ease-in;
  color: rgb(145, 229, 92);
}

.l-header-nav.is-open {
  transform: translateX(0);
}

.l-header-nav__inner {
  width: 100%;
}

@media (min-width: 768px) {
  .l-header-nav {
    top: 90px;
    width: 50%;
    height: calc(100lvh - 90px);
    height: calc(100vh - 90px);
    background-image: url(../img/common/bg_menu01_pc.png);
  }
  .l-header-nav__inner {
    width: 100%;
    padding-left: 8% !important;
    padding-right: 8% !important;
  }
}
@media (min-width: 768px) and (max-height: 650px) {
  .l-header-nav {
    width: 100%;
  }
  .l-header-nav__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .l-header-nav__inner .l-header-nav-list {
    width: 50%;
  }
  .l-header-nav__inner .l-header-nav-sub {
    width: 45%;
    align-self: flex-end;
  }
}
.l-header-nav-list__item-link {
  position: relative;
  display: block;
  padding: 16px 10px;
  border-bottom: 1px solid rgb(145, 229, 92);
  font-size: 1.6rem;
  transition: all 0.3s ease-in;
}

.l-header-nav-list__item-link::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 10px;
  height: 20px;
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2221px%22%20height%3D%2240px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22%2391e55c%22%20d%3D%22M1.265%2C39.998%20C0.951%2C39.998%200.637%2C39.878%200.398%2C39.637%20C0.84%2C39.152%200.88%2C38.362%200.390%2C37.874%20L17.854%2C20.56%20L0.390%2C2.239%20C0.88%2C1.750%200.84%2C0.961%200.398%2C0.476%20C0.879%2C0.7%201.658%2C0.5%202.139%2C0.483%20L20.464%2C19.178%20C20.940%2C19.664%2020.940%2C20.448%2020.464%2C20.934%20L2.139%2C39.629%20C1.899%2C39.875%201.581%2C39.998%201.265%2C39.998%20Z%22%2F%3E%3C%2Fsvg%3E");
  transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

@media not all and (pointer: coarse) {
  .l-header-nav-list__item-link:hover {
    color: #fff;
  }
  .l-header-nav-list__item-link:hover::before {
    width: 10px;
    height: 20px;
    content: "";
    display: inline-block;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2221px%22%20height%3D%2240px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M1.265%2C39.998%20C0.951%2C39.998%200.637%2C39.878%200.398%2C39.637%20C0.84%2C39.152%200.88%2C38.362%200.390%2C37.874%20L17.854%2C20.56%20L0.390%2C2.239%20C0.88%2C1.750%200.84%2C0.961%200.398%2C0.476%20C0.879%2C0.7%201.658%2C0.5%202.139%2C0.483%20L20.464%2C19.178%20C20.940%2C19.664%2020.940%2C20.448%2020.464%2C20.934%20L2.139%2C39.629%20C1.899%2C39.875%201.581%2C39.998%201.265%2C39.998%20Z%22%2F%3E%3C%2Fsvg%3E");
    transition: all 0.3s ease-in;
  }
}
.l-header-nav-list__item-link.is-external::before {
  width: 14px;
  height: 14px;
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2252px%22%20height%3D%2252px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22%2391e55c%22%20d%3D%22M50.175%2C20.70%20C49.167%2C20.70%2048.350%2C19.254%2048.350%2C18.245%20L48.350%2C6.229%20L29.570%2C25.9%20C29.214%2C25.365%2028.747%2C25.544%2028.280%2C25.544%20C27.813%2C25.544%2027.346%2C25.365%2026.990%2C25.9%20C26.277%2C24.296%2026.277%2C23.141%2026.990%2C22.429%20L45.770%2C3.649%20L33.754%2C3.649%20C32.746%2C3.649%2031.929%2C2.833%2031.929%2C1.824%20C31.929%2C0.816%2032.746%2C0.0%2033.754%2C0.0%20L50.175%2C0.0%20C51.182%2C0.0%2052.0%2C0.816%2052.0%2C1.824%20L52.0%2C18.245%20C52.0%2C19.254%2051.182%2C20.70%2050.175%2C20.70%20ZM24.631%2C10.947%20L11.859%2C10.947%20L11.859%2C40.140%20L41.52%2C40.140%20L41.52%2C27.368%20C41.52%2C26.360%2041.869%2C25.544%2042.877%2C25.544%20C43.884%2C25.544%2044.701%2C26.360%2044.701%2C27.368%20L44.701%2C41.965%20C44.701%2C42.973%2043.884%2C43.789%2042.877%2C43.789%20L10.35%2C43.789%20C9.27%2C43.789%208.210%2C42.973%208.210%2C41.965%20L8.210%2C9.122%20C8.210%2C8.114%209.27%2C7.298%2010.35%2C7.298%20L24.631%2C7.298%20C25.639%2C7.298%2026.456%2C8.114%2026.456%2C9.122%20C26.456%2C10.131%2025.639%2C10.947%2024.631%2C10.947%20ZM3.649%2C48.351%20L32.842%2C48.351%20L32.842%2C45.614%20L36.491%2C45.614%20L36.491%2C50.175%20C36.491%2C51.184%2035.674%2C52.0%2034.666%2C52.0%20L1.824%2C52.0%20C0.817%2C52.0%200.0%2C51.184%200.0%2C50.175%20L0.0%2C17.333%20C0.0%2C16.324%200.817%2C15.508%201.824%2C15.508%20L6.385%2C15.508%20L6.385%2C19.157%20L3.649%2C19.157%20L3.649%2C48.351%20Z%22%2F%3E%3C%2Fsvg%3E");
  transition: all 0.3s ease-in;
}

.l-header-nav-list__item:first-of-type .l-header-nav-list__item-link {
  border-top: 1px solid rgb(145, 229, 92);
}

@media (max-width: 767.98px) {
  .l-header-nav-list {
    padding: 25px;
  }
}
@media (max-width: 359.98px) {
  .l-header-nav-list__item-link {
    padding: 5px 10px;
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  .l-header-nav-list__item {
    max-width: 515px;
  }
  .l-header-nav-list__item-link {
    padding: 22px 10px;
    font-size: 2rem;
  }
  .l-header-nav-list__item-link.is-external::before {
    width: 17px;
    height: 17px;
    content: "";
    display: inline-block;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2252px%22%20height%3D%2252px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22%2391e55c%22%20d%3D%22M50.175%2C20.70%20C49.167%2C20.70%2048.350%2C19.254%2048.350%2C18.245%20L48.350%2C6.229%20L29.570%2C25.9%20C29.214%2C25.365%2028.747%2C25.544%2028.280%2C25.544%20C27.813%2C25.544%2027.346%2C25.365%2026.990%2C25.9%20C26.277%2C24.296%2026.277%2C23.141%2026.990%2C22.429%20L45.770%2C3.649%20L33.754%2C3.649%20C32.746%2C3.649%2031.929%2C2.833%2031.929%2C1.824%20C31.929%2C0.816%2032.746%2C0.0%2033.754%2C0.0%20L50.175%2C0.0%20C51.182%2C0.0%2052.0%2C0.816%2052.0%2C1.824%20L52.0%2C18.245%20C52.0%2C19.254%2051.182%2C20.70%2050.175%2C20.70%20ZM24.631%2C10.947%20L11.859%2C10.947%20L11.859%2C40.140%20L41.52%2C40.140%20L41.52%2C27.368%20C41.52%2C26.360%2041.869%2C25.544%2042.877%2C25.544%20C43.884%2C25.544%2044.701%2C26.360%2044.701%2C27.368%20L44.701%2C41.965%20C44.701%2C42.973%2043.884%2C43.789%2042.877%2C43.789%20L10.35%2C43.789%20C9.27%2C43.789%208.210%2C42.973%208.210%2C41.965%20L8.210%2C9.122%20C8.210%2C8.114%209.27%2C7.298%2010.35%2C7.298%20L24.631%2C7.298%20C25.639%2C7.298%2026.456%2C8.114%2026.456%2C9.122%20C26.456%2C10.131%2025.639%2C10.947%2024.631%2C10.947%20ZM3.649%2C48.351%20L32.842%2C48.351%20L32.842%2C45.614%20L36.491%2C45.614%20L36.491%2C50.175%20C36.491%2C51.184%2035.674%2C52.0%2034.666%2C52.0%20L1.824%2C52.0%20C0.817%2C52.0%200.0%2C51.184%200.0%2C50.175%20L0.0%2C17.333%20C0.0%2C16.324%200.817%2C15.508%201.824%2C15.508%20L6.385%2C15.508%20L6.385%2C19.157%20L3.649%2C19.157%20L3.649%2C48.351%20Z%22%2F%3E%3C%2Fsvg%3E");
    transition: all 0.3s ease-in;
  }
}
@media (min-width: 768px) and (max-height: 800px) {
  .l-header-nav-list__item-link {
    padding: 15px 10px;
    font-size: 1.6rem;
  }
}
.l-header-nav-sub {
  display: grid;
  grid-template-columns: 1fr 60px;
  margin-top: 5px;
}

.l-header-nav-sub__item:first-of-type {
  grid-column: 1;
  grid-row: 1;
}

.l-header-nav-sub__item:nth-of-type(2) {
  grid-column: 1;
  grid-row: 2;
  margin-top: 6px;
}

.l-header-nav-sub__item.is-fb {
  grid-column: 2;
  grid-row: 1/3;
  margin-top: 6px;
}

.l-header-nav-sub__item.is-fb .l-header-nav-sub__item-link {
  display: block;
  width: 44px;
  padding-left: 0;
  transition: all 0.3s ease-in;
}

.l-header-nav-sub__item.is-fb .l-header-nav-sub__item-link::after {
  display: none;
}

@media not all and (pointer: coarse) {
  .l-header-nav-sub__item.is-fb .l-header-nav-sub__item-link:hover {
    opacity: 0.8;
  }
}
.l-header-nav-sub__item-link {
  position: relative;
  padding-left: 5px;
  font-size: 1.1rem;
  transition: all 0.3s ease-in;
}

.l-header-nav-sub__item-link::after {
  width: 12px;
  height: 12px;
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2252px%22%20height%3D%2252px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22%2391e55c%22%20d%3D%22M50.175%2C20.70%20C49.167%2C20.70%2048.350%2C19.254%2048.350%2C18.245%20L48.350%2C6.229%20L29.570%2C25.9%20C29.214%2C25.365%2028.747%2C25.544%2028.280%2C25.544%20C27.813%2C25.544%2027.346%2C25.365%2026.990%2C25.9%20C26.277%2C24.296%2026.277%2C23.141%2026.990%2C22.429%20L45.770%2C3.649%20L33.754%2C3.649%20C32.746%2C3.649%2031.929%2C2.833%2031.929%2C1.824%20C31.929%2C0.816%2032.746%2C0.0%2033.754%2C0.0%20L50.175%2C0.0%20C51.182%2C0.0%2052.0%2C0.816%2052.0%2C1.824%20L52.0%2C18.245%20C52.0%2C19.254%2051.182%2C20.70%2050.175%2C20.70%20ZM24.631%2C10.947%20L11.859%2C10.947%20L11.859%2C40.140%20L41.52%2C40.140%20L41.52%2C27.368%20C41.52%2C26.360%2041.869%2C25.544%2042.877%2C25.544%20C43.884%2C25.544%2044.701%2C26.360%2044.701%2C27.368%20L44.701%2C41.965%20C44.701%2C42.973%2043.884%2C43.789%2042.877%2C43.789%20L10.35%2C43.789%20C9.27%2C43.789%208.210%2C42.973%208.210%2C41.965%20L8.210%2C9.122%20C8.210%2C8.114%209.27%2C7.298%2010.35%2C7.298%20L24.631%2C7.298%20C25.639%2C7.298%2026.456%2C8.114%2026.456%2C9.122%20C26.456%2C10.131%2025.639%2C10.947%2024.631%2C10.947%20ZM3.649%2C48.351%20L32.842%2C48.351%20L32.842%2C45.614%20L36.491%2C45.614%20L36.491%2C50.175%20C36.491%2C51.184%2035.674%2C52.0%2034.666%2C52.0%20L1.824%2C52.0%20C0.817%2C52.0%200.0%2C51.184%200.0%2C50.175%20L0.0%2C17.333%20C0.0%2C16.324%200.817%2C15.508%201.824%2C15.508%20L6.385%2C15.508%20L6.385%2C19.157%20L3.649%2C19.157%20L3.649%2C48.351%20Z%22%2F%3E%3C%2Fsvg%3E");
  transition: all 0.3s ease-in;
  margin-left: 8px;
  transition: all 0.3s ease-in;
}

@media not all and (pointer: coarse) {
  .l-header-nav-sub__item-link:hover {
    color: #fff;
  }
  .l-header-nav-sub__item-link:hover::after {
    width: 12px;
    height: 12px;
    content: "";
    display: inline-block;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2252px%22%20height%3D%2252px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M50.175%2C20.70%20C49.167%2C20.70%2048.350%2C19.254%2048.350%2C18.245%20L48.350%2C6.229%20L29.570%2C25.9%20C29.214%2C25.365%2028.747%2C25.544%2028.280%2C25.544%20C27.813%2C25.544%2027.346%2C25.365%2026.990%2C25.9%20C26.277%2C24.296%2026.277%2C23.141%2026.990%2C22.429%20L45.770%2C3.649%20L33.754%2C3.649%20C32.746%2C3.649%2031.929%2C2.833%2031.929%2C1.824%20C31.929%2C0.816%2032.746%2C0.0%2033.754%2C0.0%20L50.175%2C0.0%20C51.182%2C0.0%2052.0%2C0.816%2052.0%2C1.824%20L52.0%2C18.245%20C52.0%2C19.254%2051.182%2C20.70%2050.175%2C20.70%20ZM24.631%2C10.947%20L11.859%2C10.947%20L11.859%2C40.140%20L41.52%2C40.140%20L41.52%2C27.368%20C41.52%2C26.360%2041.869%2C25.544%2042.877%2C25.544%20C43.884%2C25.544%2044.701%2C26.360%2044.701%2C27.368%20L44.701%2C41.965%20C44.701%2C42.973%2043.884%2C43.789%2042.877%2C43.789%20L10.35%2C43.789%20C9.27%2C43.789%208.210%2C42.973%208.210%2C41.965%20L8.210%2C9.122%20C8.210%2C8.114%209.27%2C7.298%2010.35%2C7.298%20L24.631%2C7.298%20C25.639%2C7.298%2026.456%2C8.114%2026.456%2C9.122%20C26.456%2C10.131%2025.639%2C10.947%2024.631%2C10.947%20ZM3.649%2C48.351%20L32.842%2C48.351%20L32.842%2C45.614%20L36.491%2C45.614%20L36.491%2C50.175%20C36.491%2C51.184%2035.674%2C52.0%2034.666%2C52.0%20L1.824%2C52.0%20C0.817%2C52.0%200.0%2C51.184%200.0%2C50.175%20L0.0%2C17.333%20C0.0%2C16.324%200.817%2C15.508%201.824%2C15.508%20L6.385%2C15.508%20L6.385%2C19.157%20L3.649%2C19.157%20L3.649%2C48.351%20Z%22%2F%3E%3C%2Fsvg%3E");
    transition: all 0.3s ease-in;
  }
}
@media (max-width: 767.98px) {
  .l-header-nav-sub {
    padding: 0 25px;
  }
}
@media (min-width: 768px) {
  .l-header-nav-sub {
    max-width: 515px;
    grid-template-columns: 1fr 75px;
    margin-top: 45px;
  }
  .l-header-nav-sub__item {
    line-height: 1.5;
  }
  .l-header-nav-sub__item:nth-of-type(2) {
    margin-top: 0;
  }
  .l-header-nav-sub__item.is-fb {
    transform: translateY(-10px);
  }
  .l-header-nav-sub__item.is-fb .l-header-nav-sub__item-link {
    width: 75px;
    margin-top: 0;
  }
  .l-header-nav-sub__item-link {
    font-size: 1.6rem;
  }
  .l-header-nav-sub__item-link::after {
    width: 17px;
    height: 17px;
    content: "";
    display: inline-block;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2252px%22%20height%3D%2252px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22%2391e55c%22%20d%3D%22M50.175%2C20.70%20C49.167%2C20.70%2048.350%2C19.254%2048.350%2C18.245%20L48.350%2C6.229%20L29.570%2C25.9%20C29.214%2C25.365%2028.747%2C25.544%2028.280%2C25.544%20C27.813%2C25.544%2027.346%2C25.365%2026.990%2C25.9%20C26.277%2C24.296%2026.277%2C23.141%2026.990%2C22.429%20L45.770%2C3.649%20L33.754%2C3.649%20C32.746%2C3.649%2031.929%2C2.833%2031.929%2C1.824%20C31.929%2C0.816%2032.746%2C0.0%2033.754%2C0.0%20L50.175%2C0.0%20C51.182%2C0.0%2052.0%2C0.816%2052.0%2C1.824%20L52.0%2C18.245%20C52.0%2C19.254%2051.182%2C20.70%2050.175%2C20.70%20ZM24.631%2C10.947%20L11.859%2C10.947%20L11.859%2C40.140%20L41.52%2C40.140%20L41.52%2C27.368%20C41.52%2C26.360%2041.869%2C25.544%2042.877%2C25.544%20C43.884%2C25.544%2044.701%2C26.360%2044.701%2C27.368%20L44.701%2C41.965%20C44.701%2C42.973%2043.884%2C43.789%2042.877%2C43.789%20L10.35%2C43.789%20C9.27%2C43.789%208.210%2C42.973%208.210%2C41.965%20L8.210%2C9.122%20C8.210%2C8.114%209.27%2C7.298%2010.35%2C7.298%20L24.631%2C7.298%20C25.639%2C7.298%2026.456%2C8.114%2026.456%2C9.122%20C26.456%2C10.131%2025.639%2C10.947%2024.631%2C10.947%20ZM3.649%2C48.351%20L32.842%2C48.351%20L32.842%2C45.614%20L36.491%2C45.614%20L36.491%2C50.175%20C36.491%2C51.184%2035.674%2C52.0%2034.666%2C52.0%20L1.824%2C52.0%20C0.817%2C52.0%200.0%2C51.184%200.0%2C50.175%20L0.0%2C17.333%20C0.0%2C16.324%200.817%2C15.508%201.824%2C15.508%20L6.385%2C15.508%20L6.385%2C19.157%20L3.649%2C19.157%20L3.649%2C48.351%20Z%22%2F%3E%3C%2Fsvg%3E");
    transition: all 0.3s ease-in;
  }
  @media not all and (pointer: coarse) {
    .l-header-nav-sub__item-link:hover::after {
      width: 17px;
      height: 17px;
      content: "";
      display: inline-block;
      vertical-align: middle;
      background: no-repeat center/contain;
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2252px%22%20height%3D%2252px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M50.175%2C20.70%20C49.167%2C20.70%2048.350%2C19.254%2048.350%2C18.245%20L48.350%2C6.229%20L29.570%2C25.9%20C29.214%2C25.365%2028.747%2C25.544%2028.280%2C25.544%20C27.813%2C25.544%2027.346%2C25.365%2026.990%2C25.9%20C26.277%2C24.296%2026.277%2C23.141%2026.990%2C22.429%20L45.770%2C3.649%20L33.754%2C3.649%20C32.746%2C3.649%2031.929%2C2.833%2031.929%2C1.824%20C31.929%2C0.816%2032.746%2C0.0%2033.754%2C0.0%20L50.175%2C0.0%20C51.182%2C0.0%2052.0%2C0.816%2052.0%2C1.824%20L52.0%2C18.245%20C52.0%2C19.254%2051.182%2C20.70%2050.175%2C20.70%20ZM24.631%2C10.947%20L11.859%2C10.947%20L11.859%2C40.140%20L41.52%2C40.140%20L41.52%2C27.368%20C41.52%2C26.360%2041.869%2C25.544%2042.877%2C25.544%20C43.884%2C25.544%2044.701%2C26.360%2044.701%2C27.368%20L44.701%2C41.965%20C44.701%2C42.973%2043.884%2C43.789%2042.877%2C43.789%20L10.35%2C43.789%20C9.27%2C43.789%208.210%2C42.973%208.210%2C41.965%20L8.210%2C9.122%20C8.210%2C8.114%209.27%2C7.298%2010.35%2C7.298%20L24.631%2C7.298%20C25.639%2C7.298%2026.456%2C8.114%2026.456%2C9.122%20C26.456%2C10.131%2025.639%2C10.947%2024.631%2C10.947%20ZM3.649%2C48.351%20L32.842%2C48.351%20L32.842%2C45.614%20L36.491%2C45.614%20L36.491%2C50.175%20C36.491%2C51.184%2035.674%2C52.0%2034.666%2C52.0%20L1.824%2C52.0%20C0.817%2C52.0%200.0%2C51.184%200.0%2C50.175%20L0.0%2C17.333%20C0.0%2C16.324%200.817%2C15.508%201.824%2C15.508%20L6.385%2C15.508%20L6.385%2C19.157%20L3.649%2C19.157%20L3.649%2C48.351%20Z%22%2F%3E%3C%2Fsvg%3E");
      transition: all 0.3s ease-in;
    }
  }
}
@media (min-width: 768px) and (max-height: 800px) {
  .l-header-nav-sub {
    margin-top: 30px;
  }
  .l-header-nav-sub__item-link {
    font-size: 1.4rem;
  }
}
/* overlay */
.l-overlay {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgb(145, 229, 92);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in;
}

.l-overlay.is-open {
  display: block;
  opacity: 0.8;
  visibility: visible;
}

* {
  margin: 0;
  padding: 0;
}

html {
  overflow: auto;
  font-size: 62.5%;
}

body {
  position: relative;
  overflow: hidden;
  min-width: 320px;
  color: rgb(0, 0, 0);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.2rem, 1.25vw + 1rem, 1.7rem);
  line-height: 2;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.05em;
  padding-top: 65px;
}

@media (min-width: 768px) {
  body {
    padding-top: 90px;
    font-size: 1.7rem;
    line-height: 1.7;
  }
}
.l-wrapper {
  background-color: rgb(145, 229, 92);
}

main {
  position: relative;
  z-index: 2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease-in;
}

@media (min-width: 768px) {
  @media not all and (pointer: coarse) {
    a:not([class]):hover {
      text-decoration: underline;
    }
  }
}
span {
  font-weight: inherit;
  letter-spacing: inherit;
}

strong {
  font-weight: 700;
}

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

input, textarea, button {
  border: none;
  appearance: none;
  caret-color: rgb(145, 229, 92);
}

input:focus-visible, textarea:focus-visible, button:focus-visible {
  outline-color: rgb(145, 229, 92);
}

@media (max-width: 767.98px) {
  input, textarea, button {
    font-size: 1.6rem;
  }
}
/* SP/PC only*/
@media (max-width: 767.98px) {
  .u-sp {
    display: block;
  }
}
@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  .u-pc {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .u-pc {
    display: block;
  }
}
/* link */
.u-link {
  display: block;
  transition: all 0.3s ease-in;
}

@media not all and (pointer: coarse) {
  .u-link:hover {
    opacity: 0.8;
  }
}
/* layout */
.u-inner {
  box-sizing: border-box;
  width: 100%;
  padding-left: min(8%, 30px);
  padding-right: min(8%, 30px);
}

@media (max-width: 374.98px) {
  .u-inner {
    padding-left: min(5%, 20px);
    padding-right: min(5%, 20px);
  }
}
@media (min-width: 500px) and (max-width: 767.98px) {
  .u-inner {
    max-width: 500px;
    margin: auto;
  }
}
@media (min-width: 768px) {
  .u-inner {
    max-width: 1080px;
    margin: auto;
  }
}
@media (min-width: 1080px) {
  .u-inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.u-center {
  --margin-y: auto;
  --margin-x: auto;
  margin: var(--margin-y) var(--margin-x);
}

img.u-center {
  display: block;
}

/* font */
.u-uppercase {
  text-transform: uppercase;
}

.u-capitalize {
  text-transform: capitalize;
}

.u-en {
  font-weight: 400;
  font-family: "Permanent Marker", cursive;
}

.js-switch-content {
  display: none;
}

.js-switch-content.is-active {
  display: block;
}

.js-text {
  position: relative;
  display: inline-block;
}

.js-text::before, .js-text::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
}

@keyframes bounce {
  0% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(0deg) scale(0.95);
  }
  100% {
    transform: rotate(3deg);
  }
}
@keyframes bounce-reversed {
  0% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(0deg) scale(0.95);
  }
  100% {
    transform: rotate(-3deg);
  }
}
@keyframes scaling {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1) rotate(3deg);
  }
  100% {
    transform: scale(0.9);
  }
}
@keyframes scaling-reflect {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1) rotate(-4deg);
  }
  100% {
    transform: scale(0.9);
  }
}
.l-footer__credit {
  width: 100%;
  height: 34px;
  line-height: 34px;
  border-top: 1px solid #fff;
  font-size: 1rem;
  color: #fff;
  text-align: center;
}

@media (min-width: 768px) {
  .l-footer__credit {
    line-height: 68px;
    height: 68px;
    font-size: 1.4rem;
  }
}
.l-footer.has-entry {
  position: relative;
  z-index: 1;
  margin-top: -14%;
  color: #fff;
  text-align: center;
}

.l-footer.has-entry .l-footer__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 114%;
  background: url(../img/common/bg_footer01_sm.png) no-repeat top center/cover;
}

.l-footer.has-entry .l-footer__inner {
  padding-top: 143px;
  padding-bottom: 50px;
}

@media (min-width: 500px) and (max-width: 767.98px) {
  .l-footer.has-entry .l-footer__inner {
    padding-top: 250px;
  }
}
@media (min-width: 768px) {
  .l-footer.has-entry {
    margin-top: -10%;
  }
  .l-footer.has-entry .l-footer__bg {
    width: 1366px;
    background-image: url(../img/common/bg_footer01_md.png);
    background-size: 1366px;
  }
  .l-footer.has-entry .l-footer__inner {
    padding-top: 560px;
    padding-bottom: 85px;
  }
}
@media (min-width: 1366px) {
  .l-footer.has-entry .l-footer__bg {
    width: 1920px;
    background-image: url(../img/common/bg_footer01_lg.png);
    background-size: 1920px;
  }
}
@media (min-width: 1921px) {
  .l-footer.has-entry .l-footer__bg {
    width: 100%;
    background-size: cover;
  }
}
.l-footer.is-culture {
  background-color: rgb(0, 0, 0);
}

.l-footer.is-culture .l-footer__inner {
  padding-top: 78px;
}

@media (min-width: 768px) {
  .l-footer.is-culture .l-footer__inner {
    padding-top: 325px;
  }
}
.l-footer:not(.has-entry) {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  height: 110px;
  background: url(../img/common/bg_footer02_sp.png) no-repeat center top/cover;
}

@media (min-width: 768px) {
  .l-footer:not(.has-entry) {
    height: 250px;
    background-image: url(../img/common/bg_footer02_pc.png);
  }
}
.l-pagetop {
  position: absolute;
  z-index: 1000;
  bottom: 15px;
  right: 10px;
}

.l-pagetop__link {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  transition: all 0.3s ease-in;
  color: rgba(255, 255, 255, 0);
  text-indent: -2000px;
  overflow: hidden;
}

.l-pagetop__link::before {
  position: absolute;
  top: 10px;
  left: 15px;
  width: 8px;
  height: 18px;
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2221px%22%20height%3D%2240px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22%23000%22%20d%3D%22M1.265%2C39.998%20C0.951%2C39.998%200.637%2C39.878%200.398%2C39.637%20C0.84%2C39.152%200.88%2C38.362%200.390%2C37.874%20L17.854%2C20.56%20L0.390%2C2.239%20C0.88%2C1.750%200.84%2C0.961%200.398%2C0.476%20C0.879%2C0.7%201.658%2C0.5%202.139%2C0.483%20L20.464%2C19.178%20C20.940%2C19.664%2020.940%2C20.448%2020.464%2C20.934%20L2.139%2C39.629%20C1.899%2C39.875%201.581%2C39.998%201.265%2C39.998%20Z%22%2F%3E%3C%2Fsvg%3E");
  transition: all 0.3s ease-in;
  transform: rotate(-90deg);
  pointer-events: none;
  transition: all 0.3s ease-in;
}

@media not all and (pointer: coarse) {
  .l-pagetop__link:hover {
    background-color: rgb(145, 229, 92);
  }
}
@media (min-width: 768px) {
  .l-pagetop {
    bottom: 40px;
  }
  .l-pagetop__link {
    width: 64px;
    height: 64px;
  }
  .l-pagetop__link::before {
    width: 10px;
    height: 20px;
    top: 20px;
    left: 27px;
  }
}
.l-cursor {
  position: fixed;
  z-index: 9990;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 3px solid #fff;
  background-color: rgb(145, 229, 92);
  border-radius: 50%;
  pointer-events: none;
}

.l-cursor.has-link {
  width: 10px;
  height: 10px;
  mix-blend-mode: screen;
}

.l-cursor.is-hover {
  width: 40px;
  height: 40px;
  mix-blend-mode: screen;
}

.l-cursor.is-form {
  width: 0;
  height: 0;
  border: 0;
}

@media (hover: none) and (pointer: coarse) {
  .l-cursor {
    background-color: transparent;
    border: none;
  }
}
/* .l-breadcrumb
================================================ */
.l-breadcrumb-list {
  display: flex;
  white-space: nowrap;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
  padding: 8px 15px;
}

.l-breadcrumb-list::-webkit-scrollbar {
  display: none;
}

.l-breadcrumb-list__item {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
}

.l-breadcrumb-list__item + .l-breadcrumb-list__item {
  margin-left: 3px;
}

.l-breadcrumb-list__item + .l-breadcrumb-list__item:before {
  content: "＞";
  margin-right: 3px;
}

.l-breadcrumb-list__item-link {
  transition: all 0.3s ease-in;
}

@media not all and (pointer: coarse) {
  .l-breadcrumb-list__item-link:hover {
    text-decoration: underline;
  }
}
@media (min-width: 768px) {
  .l-breadcrumb-list {
    padding: 15px 50px;
  }
  .l-breadcrumb-list__item {
    font-size: 1.2rem;
  }
}
/* .l-loading */
.l-loading {
  overflow: hidden;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100lvh;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: rgb(0, 0, 0);
  backdrop-filter: blur(10px);
}

.l-loading__copy {
  width: min(50%, 191px);
}

.l-loading .mv-text {
  opacity: 0;
}

.l-loading__inner {
  width: 100%;
  text-align: center;
}

.l-loading__logo, .l-loading__name {
  opacity: 0;
}

.l-loading__logo svg {
  width: min(26%, 240px);
}

.l-loading__name {
  margin-top: 15px;
}

.l-loading__name svg {
  width: min(45%, 560px);
}

@media (min-width: 768px) {
  .l-loading__logo svg {
    width: min(20%, 240px);
  }
  .l-loading__name {
    margin-top: 30px;
  }
  .l-loading__name svg {
    width: min(35%, 560px);
  }
}
/* HOME */
.l-main-img__bg {
  display: none;
}

.l-main-img__upper {
  margin-top: -65px;
  padding-top: 220%;
  background: url(../img/home/img_mv01_sm.png) no-repeat center bottom/cover;
}

.l-main-img__copy {
  position: absolute;
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.l-main-img__copy-img {
  display: block;
  width: max(50%, 180px);
  margin: auto;
}

.l-main-img__lead {
  padding: 50px min(7.46%, 28px) 64px;
  line-height: 2;
  font-size: 1.7rem;
}

@media (max-width: 374.98px) {
  .l-main-img__copy {
    top: 3.5%;
  }
  .l-main-img__copy-img {
    width: max(50%, 150px);
  }
  .l-main-img__lead {
    font-size: 1.6rem;
  }
}
@media (min-width: 500px) {
  .l-main-img {
    display: grid;
  }
  .l-main-img__upper {
    grid-row: 1;
    padding-top: 0;
    height: 960px;
    background: url(../img/home/img_mv01_md.png) no-repeat center bottom/1220px;
  }
  .l-main-img__copy {
    top: 3%;
  }
  .l-main-img__copy-img {
    width: min(40%, 250px);
  }
  .l-main-img__lead {
    position: relative;
    z-index: 2;
    grid-row: 2;
    justify-self: end;
    margin-top: -200px;
    padding: 0 0.5em 100px 0;
    font-size: clamp(1.7rem, 1.4rem + 0.7vw, 2.1rem);
  }
}
@media (min-width: 768px) {
  .l-main-img__upper {
    margin-top: -90px;
  }
  .l-main-img__copy {
    top: 5%;
  }
  .l-main-img__copy-img {
    width: clamp(680px, 72%, 1000px);
  }
  .l-main-img__lead {
    box-sizing: border-box;
    margin-top: -250px;
    padding-bottom: 100px;
    font-size: clamp(1.7rem, 2vw, 2.2rem);
  }
}
@media (min-width: 1280px) {
  .l-main-img {
    grid-template-columns: 50% 50%;
  }
  .l-main-img__bg {
    display: block;
    position: absolute;
    z-index: -1;
    top: 10%;
    right: 3%;
    width: 138px;
    height: 163px;
    background: url(../img/home/bg_mv01.png) no-repeat 0 0/cover;
    animation: 4s linear infinite alternate scaling;
  }
  .l-main-img__upper {
    height: 1080px;
    grid-column: 1/3;
    background-image: url(../img/home/img_mv01_lg.png);
    background-size: contain;
  }
  .l-main-img__lead {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    justify-self: auto;
    padding-bottom: 200px;
  }
}
@media (min-width: 1366px) {
  .l-main-img {
    grid-template-columns: 40% 60%;
  }
  .l-main-img__bg {
    top: 10%;
    width: 172px;
    height: 204px;
  }
  .l-main-img__upper {
    height: auto;
    max-height: 1318px;
    background-position: 0 0;
    padding-top: 77%;
  }
  .l-main-img__lead {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    justify-self: auto;
    margin-top: 0;
    padding: 65% 0 0;
  }
}
/*  .l-sub-img
================================================ */
.l-sub-img {
  height: 196px;
  background: url(../img/common/bg_header01_sp.png) no-repeat bottom center/758px;
  color: #fff;
  text-align: center;
}

.l-sub-img__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  padding-top: 30px;
}

.l-sub-img__ja {
  line-height: 1.5;
  font-size: 1.5rem;
}

.l-sub-img__en {
  margin-top: 7px;
  line-height: 1.1;
  font-size: 5rem;
  letter-spacing: 0;
  color: rgb(145, 229, 92);
}

.l-sub-img__en span {
  display: inline-block;
  margin: 0 0.02em;
  will-change: transform;
}

.l-sub-img__en.is-rule {
  font-size: 2.7rem;
}

@media (min-width: 375px) {
  .l-sub-img__en.is-rule {
    font-size: 3rem;
  }
}
@media (min-width: 500px) and (max-width: 767.98px) {
  .l-sub-img {
    height: 250px;
    background-size: cover;
  }
  .l-sub-img__en {
    font-size: clamp(5rem, 3.75rem + 6.25vw, 6rem);
  }
  .l-sub-img__en.is-rule {
    font-size: 4rem;
  }
}
@media (min-width: 768px) {
  .l-sub-img {
    height: 400px;
    background-image: url(../img/common/bg_header01_pc.png);
    background-size: cover;
  }
  .l-sub-img__inner {
    padding-top: 60px;
  }
  .l-sub-img__ja {
    font-size: 2.4rem;
  }
  .l-sub-img__en {
    margin-top: 20px;
    font-size: clamp(7.5rem, 6.1rem + 2.92vw, 9.6rem);
  }
  .l-sub-img__en.is-rule {
    font-size: clamp(5.5rem, 5.167rem + 0.69vw, 6rem);
  }
}
@media (min-width: 1081px) {
  .l-sub-img {
    height: 460px;
    background-size: 2520px;
  }
}
.c-archive01__item {
  line-height: 1.5;
}

.c-archive01__item:not(:last-of-type) {
  margin-bottom: 20px;
}

.c-archive01__item-link {
  box-sizing: border-box;
  position: relative;
  display: grid;
  grid-template-columns: 40% 60%;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  padding: 15px 18px 60px;
  background-color: #fff;
  border-radius: 14px;
}

.c-archive01__item-link::before {
  content: "";
  display: inline-block;
  position: absolute;
  right: 21px;
  bottom: 14px;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%220%200%2040%2040%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_112%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20112%22%20transform%3D%22translate(-716.408%20-4185.234)%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_113%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20113%22%20transform%3D%22translate(716.408%204185.234)%22%3E%20%3Cellipse%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_13%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%2013%22%20cx%3D%2220%22%20cy%3D%2220%22%20rx%3D%2220%22%20ry%3D%2220%22%20fill%3D%22%2391e55c%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_83%22%20data-name%3D%22%E3%83%91%E3%82%B9%2083%22%20d%3D%22M733.851%2C4211.834l7.135-7.193-7.135-7.194%22%20transform%3D%22translate(-715.545%20-4184.641)%22%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
}

.c-archive01__item-img {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
}

.c-archive01__item-img img {
  display: block;
}

.c-archive01__item-head {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}

.c-archive01__item-lead {
  grid-column: 1/3;
  grid-row: 2;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .c-archive01__item:not(:last-of-type) {
    margin-bottom: 40px;
  }
  .c-archive01__item-link {
    grid-template-columns: 210px 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 22px;
    padding: 22px 118px 0 30px;
  }
  .c-archive01__item-link::before {
    width: 52px;
    height: 52px;
    right: 30px;
    bottom: 22px;
  }
  .c-archive01__item-img {
    grid-column: 1;
    grid-row: 1/3;
  }
  .c-archive01__item-img img {
    width: 210px;
    margin-bottom: 0;
  }
  .c-archive01__item-head {
    grid-column: 2;
    grid-row: 1;
    transform: translateY(10px);
  }
  .c-archive01__item-lead {
    grid-column: 2;
    grid-row: 2;
    padding-bottom: 22px;
  }
}
.c-archive02__wrapper {
  position: relative;
  max-width: 100%;
  padding-bottom: 375px;
}

.c-archive02__wrapper::before, .c-archive02__wrapper::after {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s ease-in;
  transition-duration: 0.5s;
}

.c-archive02__wrapper::before {
  right: -30px;
  transform: scale(0.8);
  background-position: top right;
  background-image: url(../img/interview/bg_interview01.png);
}

.c-archive02__wrapper::after {
  left: -30px;
  transform: scale(0.8);
  transition-delay: 0.4s;
  background-position: top left;
  background-image: url(../img/interview/bg_interview02.png);
}

.c-archive02__wrapper:last-of-type {
  padding-bottom: 275px;
}

.c-archive02__wrapper:last-of-type::before {
  bottom: 55px;
}

.c-archive02__wrapper:last-of-type::after {
  display: none;
}

.c-archive02__wrapper.is-scrolled::before {
  right: 0;
  transform: scale(1);
}

.c-archive02__wrapper.is-scrolled::after {
  left: 0;
  transform: scale(1);
}

@media (max-width: 767.98px) {
  .c-archive02__wrapper::before {
    bottom: 155px;
    width: 191px;
    height: 180px;
  }
  .c-archive02__wrapper::after {
    bottom: 85px;
    width: 138px;
    height: 130px;
  }
}
@media (min-width: 768px) {
  .c-archive02__wrapper {
    padding-bottom: 130px;
  }
  .c-archive02__wrapper::after {
    display: none;
  }
  .c-archive02__wrapper::before {
    top: 122px;
    width: 244px;
    height: 230px;
  }
  .c-archive02__wrapper:nth-of-type(even)::before {
    width: 180px;
    height: 170px;
  }
  .c-archive02__wrapper:nth-of-type(even)::after {
    width: 144px;
    height: 230px;
  }
  .c-archive02__wrapper:last-of-type {
    padding-bottom: 0;
  }
  .c-archive02__wrapper:last-of-type .c-archive02__wrapper-sub {
    display: none;
  }
  .c-archive02__wrapper-sub {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 300px;
  }
  .c-archive02__wrapper-sub::after {
    content: "";
    display: inline-block;
    position: absolute;
    z-index: -1;
    bottom: 172px;
    left: -30px;
    width: 180px;
    height: 170px;
    transform: scale(0.8);
    background: url(../img/interview/bg_interview02.png) no-repeat 0 0/contain;
    transition: all 0.3s ease-in;
    transition-duration: 0.5s;
  }
  .c-archive02__wrapper-sub:nth-of-type(even)::after {
    width: 144px;
    height: 230px;
  }
  .c-archive02__wrapper-sub.is-scrolled::after {
    left: 0;
    transform: scale(1);
  }
}
@media (min-width: 768px) and (max-width: 1439px) {
  .c-archive02__wrapper::before {
    display: none;
  }
  .c-archive02__wrapper-sub::after {
    display: none;
  }
}
.c-archive02__cat {
  margin-bottom: 43px;
  text-align: center;
}

.c-archive02__cat span {
  display: inline-block;
  padding: 9px 32px;
  line-height: 1.2;
  border-radius: 14px;
  background-color: #fff;
  font-weight: 700;
  font-size: 2.2rem;
}

@media (min-width: 768px) {
  .c-archive02__cat {
    margin-bottom: 30px;
  }
  .c-archive02__cat span {
    padding: 10px 38px;
    font-size: 2.8rem;
  }
}
.c-archive02__item {
  line-height: 1.5;
}

.c-archive02__item-img {
  width: 82.66%;
  margin: 0 auto 24px;
}

.c-archive02__item-name {
  margin-top: 16px;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .c-archive02__item:not(:last-of-type) {
    margin-bottom: 50px;
  }
}
@media (min-width: 768px) {
  .c-archive02 {
    max-width: 1080px;
    margin: auto;
    display: grid;
    align-items: center;
  }
  .c-archive02__item {
    width: min(90%, 478px);
  }
  .c-archive02__item:nth-of-type(odd) {
    grid-column: 1;
    padding-bottom: 137px;
  }
  .c-archive02__item:nth-of-type(even) {
    grid-column: 2;
    justify-self: end;
    padding-top: 137px;
  }
  .c-archive02__item-img {
    width: 100%;
  }
  .c-archive02__item-txt {
    width: min(90%, 408px);
    margin: auto;
  }
  .c-archive02__item-name {
    width: min(90%, 408px);
    margin: 10px auto 0;
  }
}
.c-btn01 {
  overflow: hidden;
  margin: 23px auto 0;
  text-align: center;
}

.c-btn01__link {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 142px;
  height: 32px;
  margin-inline: auto;
  line-height: 1.5;
  border-radius: 10px;
  background-image: linear-gradient(to right, #fff 50%, rgb(0, 0, 0) 50%);
  background-position: 0 0;
  background-size: 202% auto;
  font-weight: 700;
  font-size: 1.3rem;
  color: rgb(0, 0, 0);
  letter-spacing: 0.15em;
  transition: all 0.3s ease-in;
}

@media not all and (pointer: coarse) {
  .c-btn01__link:hover {
    background-position: -98.5% 0;
    color: rgb(145, 229, 92);
  }
}
.c-btn01.is-left .c-btn01__link {
  margin-inline: unset;
}

.c-btn01.is-hover-green .c-btn01__link {
  background-image: linear-gradient(to right, #fff 50%, rgb(145, 229, 92) 50%);
}

@media not all and (pointer: coarse) {
  .c-btn01.is-hover-green .c-btn01__link:hover {
    color: rgb(0, 0, 0);
  }
}
.c-btn01.is-green .c-btn01__link {
  background-image: linear-gradient(to right, rgb(145, 229, 92) 50%, rgb(0, 0, 0) 50%);
}

@media not all and (pointer: coarse) {
  .c-btn01.is-green .c-btn01__link:hover {
    color: #fff;
  }
}
.c-btn01.is-entry .c-btn01__link {
  height: 45px;
  background-image: linear-gradient(to right, #fff 50%, rgb(145, 229, 92) 50%);
}

@media not all and (pointer: coarse) {
  .c-btn01.is-entry .c-btn01__link:hover {
    color: rgb(0, 0, 0);
  }
}
@media (min-width: 768px) {
  .c-btn01 {
    margin-top: 50px;
  }
  .c-btn01__link {
    width: 180px;
    height: 40px;
    border-radius: 14px;
    font-size: 1.7rem;
  }
  .c-btn01.is-entry {
    width: 200px;
  }
}
.c-color-main {
  color: rgb(145, 229, 92);
}

.c-entry01:last-of-type .c-entry01__inner {
  padding-bottom: 0;
}

.c-entry01__inner {
  padding-top: 33px;
  padding-bottom: 44px;
}

.c-entry01__lead {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .c-entry01__inner {
    padding-top: 66px;
    padding-bottom: 100px;
  }
  .c-entry01__lead {
    margin-bottom: 50px;
    text-align: center;
  }
}
.c-entry01-heading__head {
  margin-bottom: 13px;
  line-height: 1.5;
  font-weight: 700;
  font-size: 3.2rem;
  letter-spacing: 0.05em;
}

.c-entry01-heading__lead {
  margin-bottom: 10px;
}

.c-entry01-heading__img {
  width: min(60%, 203px);
  margin: auto;
}

.c-entry01-heading__img img {
  display: block;
}

@media (min-width: 768px) {
  .c-entry01-heading {
    display: grid;
    grid-template-columns: 32% 68%;
  }
  .c-entry01-heading__head {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin-bottom: 20px;
    font-size: 4rem;
  }
  .c-entry01-heading__lead {
    grid-column: 2;
    grid-row: 2;
    margin-bottom: 30px;
  }
  .c-entry01-heading__img {
    grid-column: 1;
    grid-row: 1/3;
    width: min(100%, 280px);
    margin-bottom: 0;
  }
}
.c-entry01-detail {
  margin-bottom: 26px;
  padding: 40px 18px;
  border-radius: 14px;
  background-color: #fff;
}

.c-entry01-detail__txt {
  margin-bottom: 37px;
}

.c-entry01-detail-flow {
  margin-bottom: 80px;
  counter-reset: num;
}

.c-entry01-detail-flow__item:not(:last-of-type) {
  margin-bottom: 24px;
}

.c-entry01-detail-flow__item:last-of-type .c-entry01-detail-flow__item-num {
  background-color: rgb(0, 0, 0);
}

.c-entry01-detail-flow__item:last-of-type .c-entry01-detail-flow__item-num::before {
  color: rgb(145, 229, 92);
}

.c-entry01-detail-flow__item-num {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 33px;
  height: 33px;
  margin-right: 10px;
  border-radius: 50%;
  background-color: rgb(145, 229, 92);
}

.c-entry01-detail-flow__item-num::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: -2px;
  content: counter(num);
  counter-increment: num;
  font-size: 2rem;
}

.c-entry01-detail-flow__item-head {
  margin-bottom: 10px;
  padding-bottom: 10px;
  line-height: 1.5;
  border-bottom: 1px solid rgb(145, 229, 92);
  font-weight: 700;
  font-size: 1.8rem;
}

@media (min-width: 768px) {
  .c-entry01-detail {
    margin-bottom: 40px;
    padding: 80px;
  }
  .c-entry01-detail__txt {
    margin-bottom: 70px;
  }
  .c-entry01-detail-flow__item:not(:last-of-type) {
    margin-bottom: 40px;
  }
  .c-entry01-detail-flow__item-num {
    width: 40px;
    height: 40px;
    margin-right: 18px;
  }
  .c-entry01-detail-flow__item-num::before {
    font-size: 2.4rem;
  }
  .c-entry01-detail-flow__item-head {
    font-size: 2.2rem;
  }
}
.c-entry01-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
}

.c-entry01-tags__item-link {
  overflow: hidden;
  box-sizing: border-box;
  display: inline-block;
  padding: 10px 18px;
  line-height: 1.1;
  border: 1px solid #fff;
  background-image: linear-gradient(to right, #fff 50%, rgb(145, 229, 92) 50%);
  background-position: 0 0;
  background-size: 202% auto;
  border-radius: 14px;
  transition: all 0.3s ease-in;
}

@media not all and (pointer: coarse) {
  .c-entry01-tags__item-link:hover {
    background-position: -98.5% 0;
  }
}
@media (max-width: 767.98px) {
  .c-entry01-tags__item:not(:last-of-type) {
    margin-bottom: 14px;
  }
}
@media (min-width: 768px) {
  .c-entry01-tags {
    flex-direction: row;
    width: min(100%, 600px);
    margin: auto;
  }
  .c-entry01-tags__item {
    margin: 0 10px 20px;
  }
}
.c-form01 {
  /* 必須・任意 */
  /* 注意書き */
  /* チェックボックス */
  /* ラジオボタン */
  /* 同意 */
  /* プライバシーポリシー */
  /* 送信ボタン */
}

.c-form01-table {
  table-layout: fixed;
  width: 100%;
}

.c-form01-table th, .c-form01-table td {
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 9px 16px;
  border: 1px solid rgb(145, 229, 92);
  text-align: left;
}

.c-form01-table th {
  position: relative;
  font-weight: 700;
}

.c-form01-table tr:not(:last-of-type) th, .c-form01-table tr:not(:last-of-type) td {
  border-bottom: 0;
}

.c-form01 input, .c-form01 button, .c-form01 textarea, .c-form01 select {
  appearance: none;
  border: 0;
  border-radius: 0;
  font-family: inherit;
}

.c-form01 input[type=text],
.c-form01 input[type=tel],
.c-form01 input[type=email],
.c-form01 input[type=number],
.c-form01 input[type=date],
.c-form01 input[type=url],
.c-form01 textarea,
.c-form01 select {
  position: relative;
  box-sizing: border-box;
  background-color: #efefef;
  width: 100%;
  height: 40px;
  padding: 0 20px;
  font-size: 1.6rem;
}

.c-form01 input[type=text]:has(+ span.error),
.c-form01 input[type=tel]:has(+ span.error),
.c-form01 input[type=email]:has(+ span.error),
.c-form01 input[type=number]:has(+ span.error),
.c-form01 input[type=date]:has(+ span.error),
.c-form01 input[type=url]:has(+ span.error),
.c-form01 textarea:has(+ span.error),
.c-form01 select:has(+ span.error) {
  border: 1px solid #b70000;
}

.c-form01 input[type=text].is-tel {
  width: 28%;
}

.c-form01 textarea {
  width: 100%;
  height: 100px;
  padding: 8px 20px;
}

.c-form01 input[type=checkbox] {
  width: 15px;
  height: 15px;
  border: 1px solid rgb(0, 0, 0);
}

.c-form01 ::placeholder {
  line-height: 2;
  font-size: 1.4rem;
  color: #999;
}

.c-form01__ico {
  display: inline-block;
  margin-left: 20px;
  padding: 4px;
  line-height: 1.1;
  background: rgb(145, 229, 92);
  font-size: 1.2rem;
  text-align: center;
}

.c-form01__note {
  margin-top: 5px;
  line-height: 1.5;
  font-size: 1.2rem;
}

.c-form01 .mwform-checkbox-field {
  display: block;
}

.c-form01 .mwform-checkbox-field label {
  position: relative;
}

.c-form01 .mwform-checkbox-field label input[type=checkbox] {
  display: none;
}

.c-form01 .mwform-checkbox-field label input[type=checkbox] + span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 40px;
}

.c-form01 .mwform-checkbox-field label input[type=checkbox] + span::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 22px;
  height: 22px;
  border: 1px solid rgb(0, 0, 0);
  transition: all 0.3s ease-in;
}

.c-form01 .mwform-checkbox-field label input[type=checkbox] + span + input {
  display: block;
  margin-top: 10px;
}

.c-form01 .mwform-checkbox-field label input[type=checkbox]:checked + span::after {
  position: absolute;
  top: 11px;
  left: 5px;
  width: 14px;
  height: 10px;
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214.186%22%20height%3D%2210.923%22%20viewBox%3D%220%200%2014.186%2010.923%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_90%22%20data-name%3D%22%E3%83%91%E3%82%B9%2090%22%20d%3D%22M790.579%2C5876.646a1.5%2C1.5%2C0%2C0%2C1-1.06-.439l-3.861-3.86a1.5%2C1.5%2C0%2C0%2C1%2C2.121-2.121l2.757%2C2.756%2C6.267-6.779a1.5%2C1.5%2C0%2C1%2C1%2C2.2%2C2.037l-7.325%2C7.925a1.5%2C1.5%2C0%2C0%2C1-1.073.481Z%22%20transform%3D%22translate(-785.219%20-5865.723)%22%20fill%3D%22%2391E55C%22%2F%3E%3C%2Fsvg%3E");
  transition: all 0.3s ease-in;
}

.c-form01 .mwform-radio-field {
  display: inline-block;
}

.c-form01 .mwform-radio-field:not(:last-of-type) {
  margin-right: 1em;
}

.c-form01 .mwform-radio-field input[type=radio] {
  display: none;
}

.c-form01 .mwform-radio-field input[type=radio] + span {
  cursor: pointer;
  position: relative;
  display: inline-block;
  padding-left: 30px;
}

.c-form01 .mwform-radio-field input[type=radio] + span::before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid rgb(0, 0, 0);
  background: radial-gradient(circle, rgb(145, 229, 92) 0px, #fff 0px);
  transition: all 0.3s ease-in;
}

.c-form01 .mwform-radio-field input[type=radio]:checked + span::before {
  background: radial-gradient(circle, rgb(145, 229, 92) 5px, #fff 6px);
}

.c-form01-concent {
  box-sizing: border-box;
}

.c-form01-concent__txt-area {
  box-sizing: border-box;
  height: 200px;
  overflow-y: scroll;
  margin-bottom: 1em;
  padding: 1em 0;
  border: 1px solid rgb(0, 0, 0);
  scrollbar-color: rgb(145, 229, 92) #efefef;
}

.c-form01-concent__txt-area::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

.c-form01-concent__txt-area::-webkit-scrollbar-track {
  background: #efefef;
}

.c-form01-concent__txt-area::-webkit-scrollbar-thumb {
  background: rgb(145, 229, 92);
}

.c-form01-concent__check .mwform-checkbox-field label input[type=checkbox] + span:before {
  top: 4px;
  transform: none;
}

.c-form01-privacy {
  padding: 0 1em;
}

.c-form01-privacy:not(:last-of-type) {
  margin-bottom: 1em;
}

.c-form01-privacy__head {
  margin-bottom: 0.5em;
  font-weight: 700;
}

.c-form01-privacy__txt + .c-form01-privacy__txt {
  margin-top: 1em;
}

.c-form01-privacy__list {
  margin-top: 1em;
}

.c-form01-btn {
  margin-top: 30px;
}

.c-form01-btn button {
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 180px;
  height: 52px;
  margin: auto;
  line-height: 1.25;
  border-radius: 30px;
  background-image: linear-gradient(to right, rgb(145, 229, 92) 50%, rgb(0, 0, 0) 50%);
  background-position: 0 0;
  background-size: 202% auto;
  font-weight: 700;
  font-size: 2.2rem;
  transition: all 0.3s ease-in;
}

.c-form01-btn button::before {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 10px;
  height: 20px;
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2221px%22%20height%3D%2240px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22%23000%22%20d%3D%22M1.265%2C39.998%20C0.951%2C39.998%200.637%2C39.878%200.398%2C39.637%20C0.84%2C39.152%200.88%2C38.362%200.390%2C37.874%20L17.854%2C20.56%20L0.390%2C2.239%20C0.88%2C1.750%200.84%2C0.961%200.398%2C0.476%20C0.879%2C0.7%201.658%2C0.5%202.139%2C0.483%20L20.464%2C19.178%20C20.940%2C19.664%2020.940%2C20.448%2020.464%2C20.934%20L2.139%2C39.629%20C1.899%2C39.875%201.581%2C39.998%201.265%2C39.998%20Z%22%2F%3E%3C%2Fsvg%3E");
  transition: all 0.3s ease-in;
}

@media not all and (pointer: coarse) {
  .c-form01-btn button:hover {
    background-position: -98.5% 0;
    color: rgb(145, 229, 92);
  }
  .c-form01-btn button:hover::before {
    width: 10px;
    height: 20px;
    content: "";
    display: inline-block;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2221px%22%20height%3D%2240px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22%2391e55c%22%20d%3D%22M1.265%2C39.998%20C0.951%2C39.998%200.637%2C39.878%200.398%2C39.637%20C0.84%2C39.152%200.88%2C38.362%200.390%2C37.874%20L17.854%2C20.56%20L0.390%2C2.239%20C0.88%2C1.750%200.84%2C0.961%200.398%2C0.476%20C0.879%2C0.7%201.658%2C0.5%202.139%2C0.483%20L20.464%2C19.178%20C20.940%2C19.664%2020.940%2C20.448%2020.464%2C20.934%20L2.139%2C39.629%20C1.899%2C39.875%201.581%2C39.998%201.265%2C39.998%20Z%22%2F%3E%3C%2Fsvg%3E");
    transition: all 0.3s ease-in;
  }
}
.c-form01-btn button.is-back::before {
  right: inherit;
  left: 24px;
  transform: translateY(-50%) scale(-1, 1);
}

.c-form01-btn button + button {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .c-form01 {
    /* 必須・任意 */
    /* 注意書き */
    /* チェックボックス */
    /* ラジオボタン */
    /* 同意 */
    /* 送信ボタン */
  }
  .c-form01-table th, .c-form01-table td {
    display: table-cell;
    padding: 20px 28px;
  }
  .c-form01-table th {
    width: 28%;
  }
  .c-form01-table th.is-top {
    vertical-align: top;
  }
  .c-form01-table td {
    width: 72%;
  }
  .c-form01 input[type=text],
.c-form01 input[type=tel],
.c-form01 input[type=email],
.c-form01 input[type=number],
.c-form01 input[type=date] {
    width: 100%;
    max-width: 430px;
    height: 40px;
    padding: 10px 20px;
  }
  .c-form01 textarea {
    box-sizing: border-box;
    width: 100%;
    max-width: 610px;
    height: 132px;
    padding: 13px 18px;
  }
  .c-form01 ::placeholder {
    font-size: 1.5rem;
  }
  .c-form01__ico {
    position: absolute;
    top: 28px;
    right: 25px;
    padding: 4px 9px;
    font-size: 1.4rem;
  }
  .c-form01__note {
    margin-top: 10px;
    font-size: 1.4rem;
  }
  .c-form01 .mwform-checkbox-field {
    display: block;
    margin-bottom: 20px;
  }
  .c-form01 .mwform-radio-field input[type=radio] + span {
    padding-left: 35px;
  }
  .c-form01 .mwform-radio-field input[type=radio] + span::before {
    top: 4px;
    width: 23px;
    height: 23px;
  }
  .c-form01-concent__check {
    width: 100%;
  }
  .c-form01-concent__check .mwform-checkbox-field label input[type=checkbox] + span:before {
    margin-top: 0;
  }
  .c-form01-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
  }
  .c-form01-btn button + button {
    margin-top: 0;
  }
}
/* 確認画面 */
.mw_wp_form_confirm .c-form01__note, .mw_wp_form_confirm .c-form01-concent__txt-area {
  display: none;
}

/* .mw_wp_form */
.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}

.mw_wp_form .error {
  width: 100%;
}

.c-head01__sub {
  line-height: 1.5;
  font-size: 1.5rem;
}

.c-head01__main {
  margin-bottom: 12px;
  line-height: 1.1;
  font-size: 5.4rem;
  letter-spacing: 0;
}

.c-head01__main.is-large {
  font-size: 7.8rem;
}

.c-head01__main.is-small {
  font-size: 3.5rem;
}

.c-head01__main span {
  display: inline-block;
}

.c-head01__lead {
  font-size: 1.4rem;
}

.c-head01__lead span {
  display: inline-block;
}

@media (max-width: 374.98px) {
  .c-head01__lead {
    font-size: 1.3rem;
  }
}
@media (max-width: 359.98px) {
  .c-head01__main.is-large {
    font-size: 6.5rem;
  }
}
@media (min-width: 768px) {
  .c-head01__sub {
    font-size: 2.2rem;
  }
  .c-head01__main {
    font-size: 7.2rem;
  }
  .c-head01__main.is-large {
    font-size: 8rem;
  }
  .c-head01__main.is-small {
    font-size: 5rem;
  }
  .c-head01__lead {
    font-size: 1.7rem;
  }
}
@media (min-width: 1081px) {
  .c-head01__main {
    font-size: 8.8rem;
  }
  .c-head01__main.is-large {
    font-size: 10rem;
  }
  .c-head01__main.is-small {
    font-size: 5.6rem;
  }
}
@media (min-width: 768px) {
  .c-head01.is-paralled {
    display: grid;
    text-align: left;
  }
  .c-head01.is-paralled .c-head01__sub {
    grid-column: 1;
    grid-row: 1;
  }
  .c-head01.is-paralled .c-head01__main {
    grid-column: 1;
    grid-row: 2;
  }
  .c-head01.is-paralled .c-head01__lead {
    grid-column: 2;
    grid-row: 1/3;
    align-self: end;
    padding-bottom: 1.5em;
    font-size: 1.6rem;
  }
}
@media (min-width: 1081px) {
  .c-head01.is-paralled__lead {
    font-size: 1.7rem;
  }
}
.c-head02 {
  width: fit-content;
  margin-inline: auto;
  margin: 0 auto 32px;
  padding-bottom: 6px;
  line-height: 1.5;
  font-weight: 700;
  font-size: 2.6rem;
  text-align: center;
}

.c-head02 span {
  position: relative;
}

.c-head02 span::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  width: 101%;
  height: 4px;
  background-color: rgb(0, 0, 0);
}

.c-head02.is-small {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.c-head02 em {
  font-size: 2.2rem;
}

@media (min-width: 768px) {
  .c-head02 {
    margin-bottom: 66px;
    padding-bottom: 8px;
    font-size: 3.2rem;
  }
  .c-head02.is-small {
    margin-bottom: 30px;
    font-size: 2.2rem;
  }
  .c-head02 em {
    font-size: 2.8rem;
  }
}
.c-head02.is-white {
  color: #fff;
}

.c-head02.is-white span::before {
  background-color: #fff;
}

.c-head03 {
  font-weight: 700;
  font-size: 2.2rem;
}

.c-head03 span {
  background: linear-gradient(transparent 70%, rgb(145, 229, 92) 0%);
}

@media (min-width: 768px) {
  .c-head03 {
    font-size: 2.8rem;
  }
}
.c-head03.is-center {
  text-align: center;
}

.c-head04 {
  position: relative;
  margin-bottom: 20px;
  padding-left: 21px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 2.2rem;
}

.c-head04::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 9px;
  height: 100%;
  background-color: rgb(145, 229, 92);
}

.c-head04.is-small {
  font-size: 1.8rem;
}

.c-head04.has-sub {
  line-height: 1.4;
}

.c-head04.has-sub::before {
  height: 85%;
}

.c-head04.has-sub small {
  font-size: 1.2rem;
}

@media (max-width: 767.98px) {
  .c-head04.is-sp-small {
    font-size: 1.8rem;
  }
}
@media (max-width: 359.98px) {
  .c-head04 {
    font-size: 2rem;
  }
  .c-head04.is-small {
    font-size: 1.7rem;
  }
  .c-head04.has-sub small {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .c-head04 {
    margin-bottom: 27px;
    padding-left: 32px;
    font-size: 2.8rem;
  }
  .c-head04::before {
    width: 10px;
  }
  .c-head04.is-small {
    font-size: 2.2rem;
  }
  .c-head04.has-sub small {
    font-size: 1.7rem;
  }
}
.c-list01__item {
  list-style: disc inside;
  padding-left: 1.5em;
  text-indent: -1.4em;
}

.c-list01__item::marker {
  font-size: inherit;
  color: rgb(145, 229, 92);
}

.c-privacy01__inner {
  padding-top: 40px;
  padding-bottom: 40px;
}

.c-privacy01__head {
  margin-bottom: 1em;
  font-weight: 700;
  font-size: 2.4rem;
}

.c-privacy01__head-small {
  margin-top: 2em;
  margin-bottom: 1em;
  font-weight: 700;
  font-size: 2rem;
}

.c-privacy01__head-smaller {
  margin-top: 2em;
  margin-bottom: 1em;
  font-weight: 700;
  font-size: 1.6rem;
}

.c-privacy01__txt {
  margin-bottom: 1.5em;
}

.c-privacy01__list {
  margin-bottom: 1.5em;
}

.c-privacy01__date {
  text-align: right;
}

.c-privacy01__wysiwyg {
  margin-bottom: 1.5em;
}

.c-privacy01__wysiwyg a {
  transition: all 0.3s ease-in;
  text-decoration: underline;
}

@media not all and (pointer: coarse) {
  .c-privacy01__wysiwyg a:hover {
    text-decoration: none;
  }
}
.c-privacy01__table {
  margin-bottom: 1.5em;
}

.c-privacy01__table table th {
  font-weight: 400;
  text-align: left;
}

.c-privacy01__table table th, .c-privacy01__table table td {
  padding: 5px 1em;
}

.c-privacy01__table-note {
  margin-top: 0.5em;
  margin-bottom: 1.5em;
  font-size: 1.2rem;
}

.c-privacy01__note {
  position: relative;
  margin-top: -1em;
  padding-left: 1em;
  font-size: 1.2rem;
}

.c-privacy01__note::before {
  content: "※";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
}

.c-privacy01__pmark {
  display: grid;
  grid-template-columns: min(20%, 97px) 1fr;
  grid-column-gap: 1.5em;
  box-sizing: border-box;
  border: 1px solid rgb(0, 0, 0);
  margin-bottom: 1.5em;
  padding: 1.5em 1em 0;
}

.c-privacy01__pmark-img {
  grid-column: 1;
}

@media (min-width: 768px) {
  .c-privacy01__inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .c-privacy01__head {
    font-size: 3.6rem;
  }
  .c-privacy01__head-small {
    font-size: 2.4rem;
  }
  .c-privacy01__head-smaller {
    font-size: 1.8rem;
  }
  .c-privacy01__note {
    font-size: 1.4rem;
  }
}
.c-slider01 {
  position: relative;
  display: grid;
}

.c-slider01__slide {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  grid-template-columns: 40% 60%;
  color: #fff;
  opacity: 0;
}

.c-slider01__slide-img {
  grid-column: 1;
  grid-row: 1;
}

.c-slider01__slide-graph {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
}

.c-slider01__slide-txts {
  grid-column: 1/3;
  grid-row: 2;
}

.c-slider01__slide-head {
  margin: 16px 0 14px;
  line-height: 1.5;
  font-weight: 700;
  font-size: 2.2rem;
  text-align: center;
}

.c-slider01__slide-txt {
  padding-bottom: 30px;
  font-size: 1.2rem;
}

@media (max-width: 767.98px) {
  .c-slider01__slide-txt {
    max-width: 75%;
    margin: auto;
  }
}
@media (min-width: 768px) {
  .c-slider01 {
    width: min(100%, 860px);
    margin: auto;
  }
  .c-slider01__slide {
    grid-template-columns: 43% 57%;
  }
  .c-slider01__slide-img {
    grid-column: 1;
    grid-row: 1/3;
    align-self: center;
  }
  .c-slider01__slide-img img {
    display: block;
    max-width: 286px;
    margin-left: auto;
  }
  .c-slider01__slide-graph {
    grid-column: 2;
    grid-row: 1;
    text-align: center;
  }
  .c-slider01__slide-graph img {
    display: block;
    max-width: 354px;
    margin: 0 auto 10px 23px;
  }
  .c-slider01__slide-txts {
    grid-column: 2;
    grid-row: 2;
    max-width: 410px;
  }
  .c-slider01__slide-head {
    margin-bottom: 10px;
    font-size: 2.8rem;
    text-align: left;
  }
  .c-slider01__slide-txt {
    font-size: 1.7rem;
  }
}
.c-slider01__wrapper {
  position: relative;
}

.c-slider01__wrapper::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 60%;
  background-color: rgb(0, 0, 0);
}

@media (max-width: 359.98px) {
  .c-slider01__wrapper::before {
    height: 65%;
  }
}
@media (min-width: 768px) {
  .c-slider01__wrapper::before {
    height: 52%;
  }
}
/* arrow & dots */
.c-slider01__arrow {
  position: absolute;
  z-index: 2;
  top: 60%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgb(145, 229, 92);
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}

.c-slider01__arrow::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 20px;
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: no-repeat center/contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2221px%22%20height%3D%2240px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22%23000%22%20d%3D%22M1.265%2C39.998%20C0.951%2C39.998%200.637%2C39.878%200.398%2C39.637%20C0.84%2C39.152%200.88%2C38.362%200.390%2C37.874%20L17.854%2C20.56%20L0.390%2C2.239%20C0.88%2C1.750%200.84%2C0.961%200.398%2C0.476%20C0.879%2C0.7%201.658%2C0.5%202.139%2C0.483%20L20.464%2C19.178%20C20.940%2C19.664%2020.940%2C20.448%2020.464%2C20.934%20L2.139%2C39.629%20C1.899%2C39.875%201.581%2C39.998%201.265%2C39.998%20Z%22%2F%3E%3C%2Fsvg%3E");
  transition: all 0.3s ease-in;
  pointer-events: none;
}

.c-slider01__arrow.is-prev {
  left: 10px;
}

.c-slider01__arrow.is-prev::before {
  transform: translate(-50%, -50%) scale(-1, 1);
}

.c-slider01__arrow.is-next {
  right: 10px;
}

.c-slider01__dots {
  display: flex;
  justify-content: center;
  margin: 20px 0 0;
  padding: 0;
}

.c-slider01__dots li {
  box-sizing: border-box;
  overflow: hidden;
  width: 12px;
  height: 12px;
  margin: 0 3px;
  border-radius: 50%;
  border: 2px solid rgb(0, 0, 0);
  background-color: rgb(145, 229, 92);
}

@media (max-width: 359.98px) {
  .c-slider01__arrow {
    width: 30px;
    height: 30px;
  }
  .c-slider01__arrow::before {
    width: 6px;
    height: 14px;
    content: "";
    display: inline-block;
    vertical-align: middle;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2221px%22%20height%3D%2240px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22%23000%22%20d%3D%22M1.265%2C39.998%20C0.951%2C39.998%200.637%2C39.878%200.398%2C39.637%20C0.84%2C39.152%200.88%2C38.362%200.390%2C37.874%20L17.854%2C20.56%20L0.390%2C2.239%20C0.88%2C1.750%200.84%2C0.961%200.398%2C0.476%20C0.879%2C0.7%201.658%2C0.5%202.139%2C0.483%20L20.464%2C19.178%20C20.940%2C19.664%2020.940%2C20.448%2020.464%2C20.934%20L2.139%2C39.629%20C1.899%2C39.875%201.581%2C39.998%201.265%2C39.998%20Z%22%2F%3E%3C%2Fsvg%3E");
    transition: all 0.3s ease-in;
  }
  .c-slider01__arrow.is-prev {
    left: 5px;
  }
  .c-slider01__arrow.is-next {
    right: 5px;
  }
}
@media (min-width: 768px) {
  .c-slider01__arrow {
    top: 53%;
    width: 52px;
    height: 52px;
  }
  .c-slider01__arrow.is-prev {
    left: 0;
  }
  .c-slider01__arrow.is-next {
    right: 0;
  }
  .c-slider01__dots li {
    width: 14px;
    height: 14px;
    margin: 0 4px;
  }
}
/* slick */
.slick-list {
  overflow: visible;
}

.slick-slide {
  opacity: 0;
}

.slick-active {
  opacity: 1;
}

.slick-track::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 60%;
  background-color: rgb(0, 0, 0);
}

@media (max-width: 359.98px) {
  .slick-track::before {
    height: 65%;
  }
}
.c-table01 table {
  width: 100%;
}

.c-table01 tr:last-child td {
  border-bottom: 1px solid rgb(145, 229, 92);
}

.c-table01 th {
  padding: 15px 0 0;
  border-top: 1px solid rgb(145, 229, 92);
  font-weight: 700;
  text-align: left;
}

.c-table01 td {
  padding: 0 0 15px;
}

@media (max-width: 767.98px) {
  .c-table01 table, .c-table01 thead, .c-table01 tbody, .c-table01 tr, .c-table01 th, .c-table01 td {
    display: block;
  }
}
@media (min-width: 768px) {
  .c-table01 {
    table-layout: fixed;
  }
  .c-table01 tr:last-child th {
    border-bottom: 1px solid rgb(145, 229, 92);
  }
  .c-table01 th, .c-table01 td {
    padding: 20px;
    vertical-align: top;
  }
  .c-table01 th {
    width: 20%;
  }
  .c-table01 td {
    width: 80%;
    border-top: 1px solid rgb(145, 229, 92);
  }
}
/* #intro */
.culture-intro__inner {
  overflow: hidden;
  margin-bottom: 80px;
  padding-top: 42px;
}

.culture-intro__lead {
  margin-bottom: 60px;
  text-align: center;
}

@media (min-width: 768px) {
  .culture-intro__inner {
    margin-bottom: 90px;
    padding-top: 22px;
  }
  .culture-intro__lead {
    margin-bottom: 102px;
  }
}
/* #ranking */
.culture-ranking {
  padding-bottom: 50px;
}

.culture-ranking__inner {
  padding: 20px 17px 14px;
  border-radius: 14px;
  background-color: #fff;
}

.culture-ranking__head {
  position: relative;
  line-height: 2;
}

.culture-ranking__head::before, .culture-ranking__head::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 16px;
  width: 18px;
  height: 36px;
  background: url(../img/culture/bg_ranking01.png) no-repeat 0 0/cover;
}

.culture-ranking__head::before {
  left: -36px;
}

.culture-ranking__head::after {
  right: -36px;
  transform: scale(-1, 1);
}

.culture-ranking-sub {
  position: relative;
  margin-bottom: 13px;
  text-align: center;
}

.culture-ranking-sub::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(90deg, rgb(0, 0, 0), rgb(0, 0, 0) 2px, transparent 2px, transparent 6px);
}

.culture-ranking-sub span {
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  z-index: 2;
  width: 88px;
  height: 25px;
  line-height: 1.2;
  border: 2px solid rgb(0, 0, 0);
  border-radius: 20px;
  background-color: #fff;
}

.culture-ranking-other__head {
  margin-bottom: 8px;
  line-height: 1.5;
  font-weight: 700;
  font-size: 1.8rem;
}

.culture-ranking-other__txt {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.culture-ranking-other__img {
  max-width: 90%;
  margin: auto;
}

@media (max-width: 499.8px) {
  .culture-ranking__inner {
    width: auto;
    margin-left: min(4%, 30px);
    margin-right: min(4%, 30px);
  }
}
@media (min-width: 500px) and (max-width: 767.98px) {
  .culture-ranking__inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 768px) {
  .culture-ranking {
    padding-bottom: 100px;
  }
  .culture-ranking__inner {
    padding: 22px 80px;
  }
  .culture-ranking-sub {
    margin-bottom: 10px;
  }
  .culture-ranking-sub span {
    width: 127px;
    height: 36px;
    line-height: 1.8;
  }
  .culture-ranking-other {
    display: grid;
    grid-column-gap: 25px;
    grid-template-columns: 288px 1fr;
  }
  .culture-ranking-other__img {
    grid-column: 1;
    grid-row: 1;
    max-width: 100%;
  }
  .culture-ranking-other__txt-area {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }
  .culture-ranking-other__head {
    font-size: 2.2rem;
  }
  .culture-ranking-other__txt {
    font-size: 1.7rem;
  }
  .culture-ranking-other.has-no-image {
    margin-top: 20px;
  }
  .culture-ranking-other.has-no-image .culture-ranking-other__txt-area {
    grid-column: 1/3;
  }
}
.culture-ranking-list {
  margin-top: 30px;
  margin-bottom: 43px;
}

.culture-ranking-list__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 44px;
  line-height: 1.5909090909;
  font-size: 2.2rem;
}

.culture-ranking-list__item:not(:first-of-type) .culture-ranking-list__item-head span {
  display: inline-block;
}

.culture-ranking-list__item:not(:first-of-type) .culture-ranking-list__item-num::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.culture-ranking-list__item:first-of-type {
  align-items: flex-end;
  margin-bottom: 23px;
}

.culture-ranking-list__item:first-of-type .culture-ranking-list__item-head {
  font-weight: 700;
}

.culture-ranking-list__item:first-of-type .culture-ranking-list__item-head span {
  position: relative;
  display: inline-block;
}

.culture-ranking-list__item:first-of-type .culture-ranking-list__item-head span::before {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: -1;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 9px;
  background-color: rgb(145, 229, 92);
  transition: width 0.2s ease-in;
  transition-delay: 1.4s;
}

.culture-ranking-list__item:first-of-type .culture-ranking-list__item-head span:nth-of-type(2)::before {
  transition-delay: 1.6s;
}

.culture-ranking-list__item:first-of-type .culture-ranking-list__item-num {
  transform: translateY(-5px);
  font-size: 2.2rem;
}

.culture-ranking-list__item:first-of-type .culture-ranking-list__item-num::before {
  bottom: 0;
  left: 0;
  width: 70px;
  height: 56px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_74%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2074%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2269.518%22%20height%3D%2256.682%22%20viewBox%3D%220%200%2069.518%2056.682%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_78%22%20data-name%3D%22%E3%83%91%E3%82%B9%2078%22%20d%3D%22M181.2%2C175.816a3.7%2C3.7%2C0%2C0%2C0-3.724%2C3.671%2C3.618%2C3.618%2C0%2C0%2C0%2C.789%2C2.254l-13.871%2C9.167-12.7-15.94a3.725%2C3.725%2C0%2C1%2C0-3.058%2C0l-12.7%2C15.94-13.871-9.167a3.617%2C3.617%2C0%2C0%2C0%2C.789-2.254%2C3.725%2C3.725%2C0%2C1%2C0-3.724%2C3.671%2C3.756%2C3.756%2C0%2C0%2C0%2C1.253-.218l12.879%2C32.251h33.8l12.879-32.251a3.757%2C3.757%2C0%2C0%2C0%2C1.254.218%2C3.671%2C3.671%2C0%2C1%2C0%2C0-7.342Z%22%20transform%3D%22translate(-115.406%20-167.952)%22%20fill%3D%22%23ffe200%22%2F%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_29%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2029%22%20width%3D%2236.663%22%20height%3D%225.649%22%20transform%3D%22translate(16.427%2051.033)%22%20fill%3D%22%23ffe200%22%2F%3E%3C%2Fsvg%3E");
}

.culture-ranking-list__item:nth-of-type(2) {
  margin-bottom: 13px;
  font-size: 1.8rem;
}

.culture-ranking-list__item:nth-of-type(2) .culture-ranking-list__item-num::before {
  background-color: #B4BEBC;
}

.culture-ranking-list__item:nth-of-type(3) {
  font-size: 1.2rem;
}

.culture-ranking-list__item:nth-of-type(3) .culture-ranking-list__item-num::before {
  background-color: #C19254;
}

.culture-ranking-list__item-num {
  display: inline-block;
  position: relative;
  z-index: 2;
  width: 70px;
  height: 44px;
  line-height: 44px;
  margin-right: 15px;
  font-weight: 700;
  font-size: 2.2rem;
  text-align: center;
}

.culture-ranking-list__item-num::before {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: -1;
}

.culture-ranking-list__item-head {
  width: calc(100% - 85px);
}

@media (min-width: 414px) {
  .culture-ranking-list {
    max-inline-size: max-content;
    margin-inline: auto;
  }
  .culture-ranking-list__item:first-of-type .culture-ranking-list__item-head {
    font-size: clamp(2.2rem, 1.732rem + 1.81vw, 2.6rem);
  }
}
@media (min-width: 768px) {
  .culture-ranking-list {
    margin-bottom: 28px;
  }
  .culture-ranking-list__item:first-of-type {
    margin-bottom: 14px;
    font-size: 2.8rem;
  }
  .culture-ranking-list__item:first-of-type .culture-ranking-list__item-head {
    margin-bottom: 5px;
  }
  .culture-ranking-list__item:first-of-type .culture-ranking-list__item-head span::before {
    bottom: 0;
    height: 12px;
  }
  .culture-ranking-list__item:first-of-type .culture-ranking-list__item-num::before {
    width: 78px;
    height: 64px;
  }
  .culture-ranking-list__item:nth-of-type(2) {
    margin-bottom: 0;
    font-size: 2.2rem;
  }
  .culture-ranking-list__item:nth-of-type(3) {
    font-size: 1.7rem;
  }
  .culture-ranking-list__item-num {
    width: 78px;
    height: 64px;
    line-height: 64px;
    margin-right: 12px;
  }
  .culture-ranking-list__item-head {
    width: calc(100% - 90px);
  }
}
.culture-ranking-list__item.is-scrolled .culture-ranking-list__item-head span::before {
  width: 100%;
}

/* #data */
.culture-data {
  background-color: rgb(0, 0, 0);
}

.culture-data__inner {
  padding-top: 30px;
}

.culture-data__head {
  position: relative;
  line-height: 2;
}

.culture-data__head::before, .culture-data__head::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 18px;
  height: 36px;
  background: url(../img/culture/bg_ranking02.png) no-repeat 0 0/cover;
}

.culture-data__head::before {
  left: -36px;
  transform: translateY(-50%);
}

.culture-data__head::after {
  right: -36px;
  transform: translateY(-50%) scale(-1, 1);
}

@media (max-width: 767.98px) {
  .culture-data__inner {
    padding-left: min(4%, 30px);
    padding-right: min(4%, 30px);
  }
}
@media (min-width: 768px) {
  .culture-data__inner {
    padding-top: 53px;
  }
  .culture-data__head {
    font-size: 2.2rem;
  }
}
.culture-data-list__item {
  padding: 15px 18px;
  border-radius: 14px;
  background-color: #fff;
}

.culture-data-list__item:first-of-type .culture-data-list__item-head:first-of-type {
  margin-bottom: 0;
}

.culture-data-list__item:nth-of-type(8) {
  position: relative;
  background-color: rgba(255, 255, 255, 0);
  aspect-ratio: 300/148;
}

.culture-data-list__item:nth-of-type(8)::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 86.95%;
  height: 100%;
  background: url(../img/culture/bg_data01.png) no-repeat center top/contain;
}

.culture-data-list__item-head {
  margin-bottom: 10px;
}

.culture-data-list__item-img:not(:only-of-type) {
  margin-bottom: 30px;
}

.culture-data-list__item-img.is-commute {
  position: relative;
}

.culture-data-list__item-img.is-commute::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -30px;
  right: -8px;
  width: 134px;
  height: 19px;
  background: url(../img/culture/ico_data05.png) no-repeat 0 0/contain;
}

.culture-data-list__item-map {
  position: relative;
  aspect-ratio: 310/232;
}

.culture-data-list__item-map iframe {
  width: 100%;
  height: 100%;
}

.culture-data-list__item-map::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -203px;
  right: -8px;
  width: 81px;
  height: 143px;
  background: url(../img/culture/ico_data01.png) no-repeat 0 0/contain;
}

@media (max-width: 767.98px) {
  .culture-data-list__item:not(:nth-last-of-type(-n+2)) {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .culture-data-list {
    display: grid;
    grid-template-columns: calc(50% - 10px);
    grid-gap: 20px;
  }
  .culture-data-list__item {
    padding: 24px 27px;
  }
  .culture-data-list__item:first-of-type {
    grid-column: 1;
    grid-row: 1/3;
  }
  .culture-data-list__item:nth-of-type(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .culture-data-list__item:nth-of-type(3) {
    grid-column: 2;
    grid-row: 2;
  }
  .culture-data-list__item:nth-of-type(4) {
    grid-column: 1/3;
    grid-row: 3;
  }
  .culture-data-list__item:nth-of-type(5) {
    grid-column: 1;
    grid-row: 4/6;
  }
  .culture-data-list__item:nth-of-type(6) {
    grid-column: 1;
    grid-row: 6/8;
  }
  .culture-data-list__item:nth-of-type(7) {
    grid-column: 2;
    grid-row: 4/7;
  }
  .culture-data-list__item:nth-of-type(8)::after {
    bottom: 20px;
  }
  .culture-data-list__item-head {
    margin-bottom: 16px;
  }
  .culture-data-list__item-img:not(:only-of-type) {
    margin-bottom: 22px;
  }
  .culture-data-list__item-img.is-commute::before {
    top: -56px;
    width: 205px;
    height: 28px;
  }
  .culture-data-list__item-map {
    max-width: 410px;
    margin: auto;
  }
  .culture-data-list__item-map::before {
    width: 125px;
    height: 220px;
    top: -225px;
    right: -43px;
  }
}
.culture-data-list__item {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease-in;
  transition-timing-function: cubic-bezier(0.7, -0.55, 0.26, 1.5);
}

.culture-data-list__item.is-animated {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .culture-data-list__item.is-delayed {
    transition-delay: 0.15s;
  }
}
.entry-archive__inner {
  padding-top: 28px;
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  .entry-archive__inner {
    padding-top: 56px;
    padding-bottom: 0;
  }
}
.entry-suspended__img {
  margin-top: 25px;
}

.entry-suspended__btn {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .entry-suspended__img {
    margin-top: 45px;
  }
  .entry-suspended__img img {
    display: block;
    width: min(100%, 692px);
    margin: auto;
  }
}
.entry-suspended:not(.is-home) {
  padding: 40px 18px;
  border-radius: 14px;
  background-color: #fff;
}

@media (min-width: 768px) {
  .entry-suspended:not(.is-home) {
    padding: 60px;
  }
}
.entry-suspended.is-home .entry-suspended__img {
  margin-top: 0;
}

.entry-suspended.is-home .entry-suspended__img img {
  width: min(75%, 600px);
}

.entry-links {
  background: url(../img/entry/bg_links01_sp.png) no-repeat top center/cover;
  color: #fff;
  text-align: center;
}

.entry-links__inner {
  padding-top: 33px;
  padding-bottom: 23px;
}

.entry-links-list {
  margin-top: 30px;
}

@media (max-width: 767.98px) {
  .entry-links-list__item {
    margin-left: min(-4%, 15px);
    margin-right: min(-4%, 15px);
  }
  .entry-links-list__item:not(:last-of-type) {
    margin-bottom: 12px;
  }
}
@media (min-width: 768px) {
  .entry-links {
    background-image: url(../img/entry/bg_links01_pc.png);
  }
  .entry-links__inner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .entry-links-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 50px -9px 0;
  }
  .entry-links-list__item {
    box-sizing: border-box;
    width: min(33%, 348px);
    margin: 0 9px;
  }
}
.entry-thanks__inner {
  padding-top: 33px;
  padding-bottom: 44px;
}

.entry-thanks__wrapper {
  padding: 40px 18px;
  border-radius: 14px;
  background-color: #fff;
}

.entry-thanks__txt {
  margin-top: 15px;
  text-align: center;
}

.entry-thanks__img {
  margin-top: 25px;
}

.entry-thanks__btn {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .entry-thanks__inner {
    padding-top: 66px;
    padding-bottom: 100px;
  }
  .entry-thanks__wrapper {
    padding: 60px;
  }
  .entry-thanks__txt {
    margin-top: 25px;
  }
  .entry-thanks__img {
    margin-top: 45px;
  }
  .entry-thanks__img img {
    display: block;
    width: min(100%, 692px);
    margin: auto;
  }
}
.error-texts__inner {
  padding-top: 50px;
}

.error-texts__txt-area {
  padding: 40px 18px;
  border-radius: 14px;
  background-color: #fff;
}

.error-texts__txt {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .error-texts__inner {
    padding-top: 80px;
  }
  .error-texts__img img {
    display: block;
    width: min(100%, 692px);
    margin: auto;
  }
  .error-texts__txt {
    margin-top: 30px;
    text-align: center;
  }
}
/* #rule */
.home-rule {
  position: relative;
  color: #fff;
}

.home-rule__bg {
  position: absolute;
  z-index: -1;
}

.home-rule__bg.is-top {
  width: 750px;
  height: 708px;
  top: 0;
  right: 0;
  background: url(../img/home/bg_rule01_sp.png) no-repeat right top/600px;
}

.home-rule__bg.is-bottom {
  display: none;
}

.home-rule__inner {
  margin-left: auto;
  margin-right: 0;
  padding-top: 135px;
  padding-bottom: 200px;
}

.home-rule-header__main {
  margin-bottom: 27px;
  padding-top: 27px;
  font-size: 4rem;
  letter-spacing: 0.1em;
}

@media (max-width: 374.98px) {
  .home-rule__inner {
    padding-top: 120px;
    padding-right: 4%;
  }
}
@media (max-width: 359.98px) {
  .home-rule-header__main {
    font-size: 3.5rem;
  }
}
@media (min-width: 500px) and (max-width: 767.98px) {
  .home-rule__bg.is-top {
    background-size: 640px;
  }
  .home-rule__inner {
    padding-left: 10%;
  }
}
@media (max-width: 767px) and (max-height: 414px) and (orientation: landscape) {
  .home-rule__bg.is-top {
    height: 600px;
    background-size: contain;
  }
}
@media (min-width: 768px) {
  .home-rule__bg.is-top {
    width: min(115%, 1476px);
    height: 110%;
    background-image: url(../img/home/bg_rule01_pc.png);
    background-size: contain;
  }
  .home-rule__inner {
    padding: 28% 0 200px 30%;
  }
  .home-rule-header__main {
    margin-bottom: 60px;
    font-size: 5.4rem;
  }
}
@media (min-width: 900px) {
  .home-rule__inner {
    padding-left: min(27%, 350px);
  }
}
@media (min-width: 1600px) {
  .home-rule__bg.is-top {
    top: -10%;
    height: min(115%, 1364px);
  }
  .home-rule__bg.is-bottom {
    display: block;
    left: 0;
    bottom: 0;
    width: min(25%, 324px);
    height: 358px;
    background: url(../img/home/bg_rule02_pc.png) no-repeat 0 0/contain;
  }
  .home-rule__inner {
    padding-top: 22%;
  }
  .home-rule-header, .home-rule__btn {
    transform: translateY(-50px);
  }
}
@media (min-width: 1921px) {
  .home-rule__bg.is-top {
    right: 0;
    left: inherit;
    width: 1445px;
    height: 1365px;
    background-size: 1445px;
  }
  .home-rule__inner {
    margin-right: 10vw;
  }
}
/* #entry */
.home-entry {
  padding-top: 100px;
  padding-bottom: 65px;
  text-align: center;
}

.home-entry__inner {
  background-color: #fff;
}

.home-entry__head {
  overflow: hidden;
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.02em;
}

.home-entry__head-line {
  position: absolute;
  z-index: -1;
  bottom: 5px;
  left: 0;
  width: calc(100% - 0.5em);
  height: 7px;
  background-color: rgb(145, 229, 92);
}

.home-entry-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.home-entry-list__item {
  width: 50%;
  margin-bottom: 10px;
}

.home-entry-list__item img {
  display: block;
  max-width: 84%;
  margin: auto;
}

@media (max-width: 767.98px) {
  .home-entry__inner {
    position: relative;
    max-width: inherit;
  }
  .home-entry__inner::before, .home-entry__inner::after {
    content: "";
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 65px;
  }
  .home-entry__inner::before {
    top: -65px;
    background: url(../img/home/bg_entry01_sp.png) no-repeat top center/cover;
  }
  .home-entry__inner::after {
    bottom: -65px;
    background: url(../img/home/bg_entry02_sp.png) no-repeat bottom center/cover;
  }
}
@media (max-width: 359.98px) {
  .home-entry__head {
    font-size: 1.7rem;
  }
}
@media (min-width: 500px) and (max-width: 767.98px) {
  .home-entry__head {
    font-size: 2.2rem;
  }
}
@media (min-width: 600px) {
  .home-entry-list__item {
    width: 30%;
  }
  .home-entry-list__item img {
    max-width: 216px;
  }
}
@media (min-width: 768px) {
  .home-entry__inner {
    min-height: 572px;
    padding-top: 70px;
    background: rgba(255, 255, 255, 0) url(../img/home/bg_entry01_pc.png) no-repeat center/972px;
  }
  .home-entry__head {
    margin-bottom: 35px;
    font-size: 3rem;
  }
  .home-entry__head-line {
    height: 10px;
  }
  .home-entry-list {
    max-width: 768px;
    margin: auto;
  }
}
/* #person */
.home-person {
  text-align: center;
}

.home-person__inner {
  padding-top: 75px;
  padding-bottom: 78px;
}

.home-person-list {
  margin-top: 46px;
}

.home-person-list__item {
  display: grid;
}

.home-person-list__item-heading {
  text-align: left;
}

.home-person-list__item-head {
  margin-bottom: 8px;
}

.home-person-list__item-lead {
  line-height: 1.75;
}

.home-person-list__item-img {
  position: relative;
  z-index: -1;
  animation: 5s ease-in-out infinite alternate bounce;
}

.home-person-list__item-btn {
  align-self: end;
}

.home-person-list__item.is-interview .home-person-list__item-heading {
  grid-column: 1;
  grid-row: 1;
}

.home-person-list__item.is-interview .home-person-list__item-head {
  width: 111px;
}

.home-person-list__item.is-interview .home-person-list__item-img {
  grid-column: 1/3;
  grid-row: 1/3;
  transform-origin: center bottom;
}

.home-person-list__item.is-interview .home-person-list__item-img img {
  display: block;
  width: 90%;
  transform: translate(20px, 8px);
}

.home-person-list__item.is-interview .home-person-list__item-btn {
  grid-column: 2;
  grid-row: 2;
  padding: 0 45px 10px 0;
  transform: translateX(-35px);
}

.home-person-list__item.is-culture {
  margin-bottom: 50px;
}

.home-person-list__item.is-culture .home-person-list__item-heading {
  grid-column: 1;
  grid-row: 1/3;
  align-self: end;
  padding: 0 0 30px 15px;
}

@media (max-width: 359.98px) {
  .home-person-list__item.is-culture .home-person-list__item-heading {
    padding-left: 0;
  }
}
.home-person-list__item.is-culture .home-person-list__item-head {
  width: 90px;
}

.home-person-list__item.is-culture .home-person-list__item-img {
  grid-column: 1/3;
  grid-row: 1/3;
  padding: 7% 0 0 30%;
  animation-name: bounce-reversed;
  transform-origin: right bottom;
}

.home-person-list__item.is-culture .home-person-list__item-btn {
  grid-column: 2;
  grid-row: 2;
  transform: translate(-35px, -5px);
}

.home-person-list__item.is-crosstalk .home-person-list__item-heading {
  grid-column: 1;
  grid-row: 1;
  padding-left: 12px;
}

@media (max-width: 374.98px) {
  .home-person-list__item.is-crosstalk .home-person-list__item-heading {
    padding-left: 0;
  }
}
.home-person-list__item.is-crosstalk .home-person-list__item-head {
  width: 115px;
}

.home-person-list__item.is-crosstalk .home-person-list__item-img {
  grid-column: 1/3;
  grid-row: 1/3;
  animation-duration: 5.5s;
  transform-origin: left center;
}

.home-person-list__item.is-crosstalk .home-person-list__item-img img {
  display: block;
  width: 90%;
  transform: translate(30px, 25px);
}

.home-person-list__item.is-crosstalk .home-person-list__item-btn {
  grid-column: 1/3;
  grid-row: 4;
  transform: translate(38px, -20px);
}

.home-person-list__item.is-comming {
  margin-bottom: 50px;
}

.home-person-list__item.is-comming .home-person-list__item-img img {
  width: 92%;
  padding-top: 30px;
  transform: translate(20px, 25px);
}

.home-person-fb__link {
  position: relative;
  display: block;
  width: 64px;
  margin: auto;
  transform: translateX(-15px);
}

.home-person-fb__link-bubble {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  width: 127px;
  height: 78px;
  margin: 20px 0 0 70px;
  padding: 20px 0 0 33px;
  line-height: 1.5;
  background: url(../img/home/img_bubble01.png) no-repeat 0 0/contain;
  font-size: 1.1rem;
  color: #fff;
  text-align: left;
}

.home-person-fb__link .uuid-62f113ee-b2ff-4830-92f9-039726e010f3 {
  fill: #fff;
}

.home-person-fb__link .uuid-5e9fda17-b7a7-4a4f-8da2-04643f79e432 {
  fill: #000;
}

@media (min-width: 768px) {
  .home-person.has-no-entry .home-person__inner {
    padding-top: 150px;
  }
  .home-person__inner {
    padding-bottom: 130px;
  }
  .home-person-head {
    grid-template-columns: minmax(auto, 410px) 1fr;
  }
  .home-person-list {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 130px auto auto 60px auto;
  }
  .home-person-list__item-head {
    margin-bottom: 15px;
  }
  .home-person-list__item.is-interview {
    grid-column: 1;
    grid-row: 1/3;
    padding-left: 14%;
  }
  .home-person-list__item.is-interview .home-person-list__item-img img {
    width: min(100%, 408px);
  }
  .home-person-list__item.is-interview .home-person-list__item-head {
    width: 124px;
  }
  .home-person-list__item.is-interview .home-person-list__item-btn {
    padding: 0px 70px 18px 0;
  }
  .home-person-list__item.is-culture {
    grid-column: 2;
    grid-row: 2/5;
  }
  .home-person-list__item.is-culture .home-person-list__item-img {
    padding: 0 65px 0 0;
  }
  .home-person-list__item.is-culture .home-person-list__item-img img {
    width: min(100%, 326px);
  }
  .home-person-list__item.is-culture .home-person-list__item-heading {
    padding: 0 0 48px 0;
  }
  .home-person-list__item.is-culture .home-person-list__item-head {
    width: 104px;
  }
  .home-person-list__item.is-culture .home-person-list__item-btn {
    transform: none;
    padding: 0 155px 15px 0;
  }
  .home-person-list__item.is-crosstalk {
    grid-column: 1;
    grid-row: 4/6;
  }
  .home-person-list__item.is-crosstalk .home-person-list__item-img {
    justify-self: end;
  }
  .home-person-list__item.is-crosstalk .home-person-list__item-img img {
    width: min(100%, 408px);
    margin-left: auto;
    transform: translate(100px, 32px);
  }
  .home-person-list__item.is-crosstalk .home-person-list__item-heading {
    grid-column: 1/3;
    padding-left: 0;
    transform: translate(13px, 13px);
    text-align: center;
  }
  .home-person-list__item.is-crosstalk .home-person-list__item-head {
    width: 138px;
    margin: 0 auto 15px;
  }
  .home-person-list__item.is-crosstalk .home-person-list__item-lead {
    display: inline-block;
    transform: translateX(-10px);
    text-align: left;
  }
  .home-person-list__item.is-crosstalk .home-person-list__item-btn {
    grid-column: 2;
    transform: translate(0px, -43px);
  }
  .home-person-list__item.is-fb {
    grid-column: 2;
    grid-row: 5;
    align-self: center;
  }
  .home-person-fb__link {
    width: 93px;
    margin-left: 0;
    padding: 30px 0 0 25%;
    transform: none;
  }
  .home-person-fb__link-bubble {
    width: 192px;
    height: 118px;
    margin: 23px 0 0 100px;
    padding: 33px 0 0 50px;
    font-size: 1.6rem;
  }
  .home-person-fb__link svg {
    width: 93px;
  }
}
@media (min-width: 768px) and (max-width: 1080px) {
  .home-person__inner {
    width: min(100%, 840px);
  }
  .home-person-head {
    grid-template-columns: minmax(auto, 330px) 1fr;
  }
  .home-person-list__item {
    grid-template-columns: minmax(140px, 1fr) 1fr;
  }
  .home-person-list__item.is-interview {
    padding-left: 20px;
  }
  .home-person-list__item.is-interview .home-person-list__item-img img {
    max-width: 360px;
  }
  .home-person-list__item.is-culture {
    margin-top: 50px;
    margin-bottom: 25px;
  }
  .home-person-list__item.is-culture .home-person-list__item-img img {
    max-width: 280px;
  }
  .home-person-list__item.is-crosstalk .home-person-list__item-img img {
    max-width: 340px;
    transform: translate(100px, 70px);
  }
  .home-person-list__item.is-fb {
    grid-row: 6;
    margin-top: -150px;
  }
}
@media (min-width: 1081px) {
  .home-person-head {
    transform: translateX(12%);
  }
}
/* #support */
.home-support {
  position: relative;
  z-index: 2;
  text-align: center;
}

.home-support__inner {
  padding-bottom: 30px;
}

.home-support__img-area {
  position: relative;
  margin: 30px -6% 0;
}

.home-support__img-area img {
  animation: 5s ease-in-out infinite alternate bounce;
}

.home-support-btn {
  position: absolute;
  right: 32px;
  bottom: 0;
}

@media (min-width: 768px) {
  .home-support-head {
    grid-template-columns: minmax(44%, 630px) 56%;
  }
  .home-support__img-area {
    max-width: 736px;
    margin: 30px auto 0;
  }
  .home-support-btn {
    right: 60px;
    bottom: 14px;
  }
}
@media (min-width: 768px) and (max-width: 1080px) {
  .home-support__inner {
    width: min(100%, 840px);
  }
  .home-support-head {
    grid-template-columns: minmax(auto, 360px) 1fr;
  }
}
@media (min-width: 1081px) {
  .home-support-head {
    transform: translateX(12%);
  }
}
.interview-archive__inner {
  padding-top: 35px;
}

.interview-archive__lead {
  margin: 0 0 50px;
  text-align: center;
}

@media (min-width: 768px) {
  .interview-archive__inner {
    padding-top: 25px;
  }
  .interview-archive__lead {
    margin: 0 0 105px;
  }
}
.rule-articles__inner {
  padding-top: 34px;
}

.rule-articles__head {
  margin: 0 -0.5em 15px;
  line-height: 1.5;
  font-weight: 700;
  font-size: 3rem;
  text-align: center;
}

.rule-articles__lead {
  margin: 0 -1.5em 50px;
  text-align: center;
}

.rule-articles-list__item:not(:last-of-type) {
  margin-bottom: 170px;
}

.rule-articles-list__item:first-of-type this-num svg {
  width: 34px;
}

.rule-articles-list__item:nth-of-type(2) {
  position: relative;
}

.rule-articles-list__item:nth-of-type(2)::before {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: -1;
  top: -30%;
  right: -10%;
  width: 138px;
  height: 130px;
  background: url(../img/rule/bg_rule01.png) no-repeat 0 0/cover;
}

.rule-articles-list__item:nth-of-type(2) this-num svg {
  width: 75px;
}

.rule-articles-list__item:nth-of-type(3) {
  position: relative;
}

.rule-articles-list__item:nth-of-type(3)::before {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: -1;
  top: -20%;
  left: -10%;
  width: 138px;
  height: 130px;
  background: url(../img/rule/bg_rule02.png) no-repeat 0 0/cover;
}

.rule-articles-list__item:nth-of-type(3) this-num svg {
  width: 61px;
}

.rule-articles-list__item-num {
  text-align: center;
}

.rule-articles-list__item-num svg {
  height: 152px;
}

.rule-articles-list__item-head {
  overflow: hidden;
  margin: -10px auto 15px;
  line-height: 1.5;
  font-weight: 700;
  font-size: 3.2rem;
  text-align: center;
}

.rule-articles-list__item-head span {
  position: relative;
}

.rule-articles-list__item-line {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 70%, #fff 0%);
}

@media (max-width: 374.98px) {
  .rule-articles__head {
    font-size: 2.8rem;
  }
  .rule-articles-list__item-head {
    margin-left: -0.5em;
    margin-right: -0.5em;
    font-size: 3rem;
  }
}
@media (min-width: 500px) and (max-width: 767.98px) {
  .rule-articles__inner {
    max-width: 100% !important;
  }
  .rule-articles-list__item-txt {
    max-width: 500px;
    margin: auto;
  }
}
@media (min-width: 768px) {
  .rule-articles {
    position: relative;
  }
  .rule-articles::before {
    content: "";
    display: inline-block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: max(100%, 1280px);
    height: 100%;
    background: url(../img/rule/bg_rule01_pc.png) no-repeat top 60% center/100%;
  }
  .rule-articles__inner {
    padding-top: 50px;
  }
  .rule-articles__head {
    margin-bottom: 40px;
    font-size: 4rem;
  }
  .rule-articles__lead {
    margin: 0 0 105px;
  }
  .rule-articles-list__item {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 20% calc(80% - 60px);
    grid-column-gap: 60px;
  }
  .rule-articles-list__item:not(:last-of-type) {
    margin: -50px auto 0;
  }
  .rule-articles-list__item:first-of-type this-num svg {
    width: 78px;
  }
  .rule-articles-list__item:nth-of-type(2) {
    position: relative;
  }
  .rule-articles-list__item:nth-of-type(2)::before {
    display: none;
  }
  .rule-articles-list__item:nth-of-type(2) this-num svg {
    width: 173px;
  }
  .rule-articles-list__item:nth-of-type(3) {
    position: relative;
  }
  .rule-articles-list__item:nth-of-type(3)::before {
    display: none;
  }
  .rule-articles-list__item:nth-of-type(3) this-num svg {
    width: 140px;
  }
  .rule-articles-list__item-num {
    grid-column: 1;
    grid-row: 1/3;
  }
  .rule-articles-list__item-num svg {
    height: 348px;
  }
  .rule-articles-list__item-head {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin: 0 0 40px;
    font-size: 4rem;
    text-align: left;
  }
  .rule-articles-list__item-txt {
    grid-column: 2;
    grid-row: 2;
    max-width: 800px;
  }
}
.rule-bg {
  position: relative;
  max-width: 500px;
  margin: auto;
  transform: translateY(20%);
}

.rule-bg::before, .rule-bg::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
}

.rule-bg::before {
  top: 5%;
  right: 0;
  width: 74px;
  height: 80px;
  background-image: url(../img/rule/img_girl02.png);
  animation: 3s linear infinite alternate scaling;
}

.rule-bg::after {
  top: 38%;
  left: 0;
  width: 51px;
  height: 50px;
  background-image: url(../img/rule/img_girl03.png);
  animation: 3s linear infinite alternate scaling-reflect;
}

.rule-bg img {
  display: block;
  width: 84%;
  margin: auto;
}

@media (min-width: 768px) {
  .rule-bg {
    max-width: 780px;
    margin-top: -100px;
    transform: translateY(25%);
  }
  .rule-bg::before {
    width: 148px;
    height: 160px;
  }
  .rule-bg::after {
    width: 102px;
    height: 100px;
  }
}
.support-articles__inner {
  padding-top: 34px;
  padding-bottom: 35px;
}

.support-articles__lead {
  margin-bottom: 80px;
  text-align: center;
}

.support-articles__img {
  margin-top: -50px;
  margin-bottom: 50px;
  text-align: center;
}

.support-articles__img img {
  max-width: 500px;
}

.support-articles-list__item:not(:last-of-type) {
  margin-bottom: 72px;
}

.support-articles-list__item:nth-of-type(odd) .support-articles-list__item-img {
  transform: rotate(-3deg);
}

.support-articles-list__item:nth-of-type(odd).is-scrolled .support-articles-list__item-img {
  animation: 5s ease-in-out 1.2s infinite alternate bounce;
}

.support-articles-list__item:nth-of-type(even) .support-articles-list__item-img {
  transform: rotate(3deg);
}

.support-articles-list__item:nth-of-type(even).is-scrolled .support-articles-list__item-img {
  animation: 5s ease-in-out 1.2s infinite alternate bounce-reversed;
}

.support-articles-list__item-img {
  display: block;
}

.support-articles-list__item-bubble {
  display: block;
  width: 75%;
  margin: 0 auto -10px;
}

.support-articles-list__item-head {
  width: fit-content;
  margin: 0 auto 5px;
  background: linear-gradient(transparent 70%, #fff 0%);
  font-weight: 700;
  font-size: 2.2rem;
}

@media (max-width: 767.98px) {
  .support-articles-list__item-img {
    margin: 0 auto 21px;
  }
}
@media (min-width: 768px) {
  .support-articles__inner {
    padding-top: 25px;
    padding-bottom: 60px;
  }
  .support-articles__lead {
    margin-bottom: 111px;
  }
  .support-articles__img {
    margin-bottom: 100px;
  }
  .support-articles-list__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .support-articles-list__item:not(:last-of-type) {
    margin-bottom: 120px;
  }
  .support-articles-list__item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .support-articles-list__item-img {
    width: min(43.5%, 470px);
  }
  .support-articles-list__item-txts {
    width: 51.85%;
  }
  .support-articles-list__item-bubble {
    width: 360px;
    margin: 0 0 0 -3px;
  }
  .support-articles-list__item-head {
    margin-bottom: 12px;
    margin-left: 0;
    font-size: 2.8rem;
  }
  .support-articles-list.has-txt-only {
    max-width: 900px;
    margin: auto;
  }
  .support-articles-list.has-txt-only .support-articles-list__item-txts {
    width: 100%;
  }
}