@charset "UTF-8";
/***************************

foundation/base.scss

***************************/
@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

html {
  /*overflow:auto;*/
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  font-size: 16px;
  color: #111111;
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "小塚ゴシック", "Noto Sans Japanese", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 2.25;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 0.3s;
}

a:hover {
  text-decoration: none;
  opacity: 0.75;
}

a:active,
a:hover {
  outline-width: 0;
}

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

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-align: left;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main {
  display: block;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

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

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

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

textarea {
  overflow: auto;
}

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

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

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

main {
  max-width: 1920px;
  margin: 0 auto;
}

@media screen and (min-width: 451px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/***************************

layout/_header.scss

***************************/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: 0.3s;
  color: #fff;
  padding: 20px 0 15px;
}

header [class^=container] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  max-width: 100%;
}
@media screen and (max-width: 1555px) {
  header [class^=container] {
    gap: 40px;
  }
}

.header__logo a {
  position: relative;
  display: block;
  font-size: 0;
  z-index: 7;
}

.header__logo__white {
  transition: 0.3s;
}

.header__logo__black {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: 0.3s;
  opacity: 0;
}

header.is-show {
  background: #fff;
  color: #111111;
}
header.is-show .header__logo__white {
  opacity: 0;
}
header.is-show .header__logo__black {
  opacity: 1;
}
header.is-show .header__nav__item {
  font-weight: 600;
}
header.is-show .header__nav__item:has(.header__subNav) a:after {
  background: #111;
}

.header__nav__item {
  font-weight: 600;
}
.header__nav__item:has(.header__subNav) {
  position: relative;
}
.header__nav__item:has(.header__subNav) > a {
  position: relative;
  padding-right: 18px;
  display: block;
}
.header__nav__item:has(.header__subNav) > a:after {
  content: "";
  mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="10" height="6.667" viewBox="0 0 10 6.667">  <path id="down" d="M12.757,16.01l-5-5L9.424,9.344l3.333,3.333,3.333-3.333,1.667,1.667Z" transform="translate(-7.757 -9.344)"/></svg>') center no-repeat;
  background: #fff;
  position: absolute;
  right: 0;
  top: calc(50% - 4px);
  width: 10px;
  height: 7px;
  transition: 0.3s;
}

.header__subNav {
  padding: 0 20px;
  color: #111111;
  transition: 0.3s;
}

.header__subNav__item {
  font-size: 1.6rem;
  font-weight: 600;
}
.header__subNav__item a {
  padding: 12px 10px 12px 0;
  display: block;
  position: relative;
}
.header__subNav__item a:after {
  content: "";
  mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="7" height="8" viewBox="0 0 9 10"><path id="arrowRight" data-name="arrowRight" d="M0,0V2.515L4.471,5,0,7.484V10L9,5Z"/></svg>') center no-repeat;
  background: #111;
  position: absolute;
  right: 8px;
  top: calc(50% - 4px);
  width: 7px;
  height: 8px;
}

@media screen and (min-width: 1511px) {
  .header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin-right: auto;
  }
  .header__nav__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    padding: 20px 0;
  }
  .header__nav__item a {
    transition: auto;
  }
}
.header__nav__entry {
  max-width: 180px;
  width: 100%;
  min-height: 50px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 900;
  background: #FF1B01;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #FF1B01;
  border-radius: 999px;
}
.header__nav__entry:hover {
  background: #fff;
  color: #FF1B01;
}

.header__nav__contact {
  max-width: 180px;
  width: 100%;
  min-height: 50px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 900;
  background: #fff;
  color: #00B34F;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #00B34F;
  border-radius: 999px;
}
.header__nav__contact:hover {
  background: #00B34F;
  color: #fff;
}
.header__nav__contact:hover:before {
  background: #fff;
}
.header__nav__contact:before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background: #00B34F;
  transition: 0.3s;
  margin-right: 8px;
  mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 19.047"><defs><style>.cls-1 { fill: %23fff; stroke-width: 0px; }</style></defs><path id="ico_line" data-name="ico_line" d="M18.663,10.84a.526.526,0,0,1-.525.525H16.676V12.3h1.462a.525.525,0,1,1,0,1.049H16.15a.526.526,0,0,1-.523-.524V8.852a.527.527,0,0,1,.525-.525h1.988a.525.525,0,0,1,0,1.05H16.676v.937h1.462A.526.526,0,0,1,18.663,10.84Zm-4.1,2.484a.539.539,0,0,1-.166.026.515.515,0,0,1-.425-.208l-2.036-2.764v2.45a.524.524,0,1,1-1.047,0V8.852a.522.522,0,0,1,.358-.5.485.485,0,0,1,.162-.028.539.539,0,0,1,.412.212l2.052,2.775V8.852a.525.525,0,0,1,1.05,0v3.976A.524.524,0,0,1,14.566,13.324Zm-4.95.028a.526.526,0,0,1-.522-.524V8.852a.524.524,0,1,1,1.048,0v3.976A.527.527,0,0,1,9.616,13.352Zm-1.529,0H6.1a.528.528,0,0,1-.525-.524V8.852a.525.525,0,0,1,1.05,0V12.3H8.087a.525.525,0,0,1,0,1.049ZM12,2.572c-5.513,0-10,3.642-10,8.118C2,14.7,5.559,18.059,10.363,18.7c.326.068.769.215.882.492a2.035,2.035,0,0,1,.032.9l-.137.85c-.037.251-.2.988.874.537a32.237,32.237,0,0,0,7.863-5.812A7.186,7.186,0,0,0,22,10.69C22,6.215,17.513,2.572,12,2.572Z" transform="translate(-2.001 -2.572)"/></svg>') center/contain no-repeat;
}

/* Hamburger menu */
.gnav {
  line-height: 1.6;
  margin: 0;
}

/* toggle button */
.header__toggleBtn {
  cursor: pointer;
  display: inline-block;
  background: none;
  border: none;
  outline: none;
  position: relative;
  padding: 13px 0;
  text-align: center;
  z-index: 9999;
}

.header__toggleBtn__bar {
  position: relative;
  z-index: 9999;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: auto;
  margin-right: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: block;
  width: 32px;
  height: 2px;
  background-color: #222;
  outline: 1px solid transparent;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.header__toggleBtn__bar:before, .header__toggleBtn__bar:after {
  position: absolute;
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background-color: #222;
  outline: 1px solid transparent;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.header__toggleBtn__bar:before {
  top: -10px;
}
.header__toggleBtn__bar:after {
  top: 10px;
}
input[name=toggle]:checked + .header__toggleBtn__bar {
  background-color: transparent;
}
input[name=toggle]:checked + .header__toggleBtn__bar:before {
  transform: translateY(10px) rotate(45deg);
}
input[name=toggle]:checked + .header__toggleBtn__bar:after {
  transform: translateY(-10px) rotate(-45deg);
}
header:not(.is-show):has(input[name=toggle]:not(:checked)) .header__toggleBtn__bar {
  background-color: #fff;
}
header:not(.is-show):has(input[name=toggle]:not(:checked)) .header__toggleBtn__bar:before, header:not(.is-show):has(input[name=toggle]:not(:checked)) .header__toggleBtn__bar:after {
  background-color: #fff;
}

input[name=toggle] {
  display: none;
}

@media screen and (min-width: 1511px) {
  .gnav {
    display: flex !important;
    justify-content: flex-end;
    gap: 10px;
    height: inherit !important;
    flex: 1 1 auto;
  }
  .header__toggleBtn {
    display: none;
  }
  .header__subNav {
    width: 230px;
    padding: 0 20px;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 5px;
    box-shadow: 2px 1px 12px 0px rgba(0, 0, 0, 0.1);
  }
  .header__nav__item:not(:hover) .header__subNav {
    opacity: 0;
    z-index: -1;
    pointer-events: none;
  }
  .header__subNav__item:nth-of-type(n+2) {
    border-top: 1px solid #707070;
  }
}
@media screen and (max-width: 1510px) {
  header {
    color: #111;
    text-shadow: 0px 0px 10px rgb(255, 255, 255);
  }
  .gnav {
    position: absolute;
    left: 0;
    top: 101px;
    height: calc(100vh - 101px);
    width: 100%;
    padding: 20px;
    background: white;
    border-bottom: 1px solid #E8E8E8;
    z-index: 6;
    transition: 0.5s;
    overflow-y: scroll;
  }
  .header:has(input[name=toggle]:not(:checked)) .gnav {
    opacity: 0;
    z-index: -1;
    pointer-events: none;
  }
  header:has(input[name=toggle]:checked) {
    background: #fff;
    color: #111111;
  }
  header:has(input[name=toggle]:checked) .header__logo__white {
    opacity: 0;
  }
  header:has(input[name=toggle]:checked) .header__logo__black {
    opacity: 1;
  }
  .header__nav {
    width: 100%;
    max-width: max-content;
    margin: 0 auto;
  }
  .header__nav__item {
    margin-bottom: 15px;
  }
  .header__nav__entry {
    margin: 20px auto 0;
  }
  .header__nav__contact {
    margin: 20px auto 0;
  }
  .header__nav__item:has(.header__subNav) > a:after {
    background: #111;
  }
  .header__subNav__item a {
    padding: 10px 12px 0 0;
  }
}
@media screen and (max-width: 450px) {
  .header {
    padding: 15px 0 10px;
    height: 75px;
  }
  .header__logo a {
    width: 180px;
  }
  .gnav {
    top: 75px;
    height: calc(100vh - 75px);
  }
}
/***************************

layout/_footer.scss

***************************/
footer {
  padding: 120px 0 75px;
  background: #F4F6F9;
}
main:has(.subpage-title) + footer {
  margin-top: 250px;
}
@media screen and (max-width: 450px) {
  footer {
    padding-top: 100px;
  }
  main:has(.subpage-title) + footer {
    margin-top: 100px;
  }
}

.footer__logo {
  margin-bottom: 50px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.footer__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #00B34F;
  background: #fff;
  width: 100%;
  max-width: 264px;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 5px;
  min-height: 64px;
}
.footer__contact:hover {
  background: #00B34F;
  color: #fff;
}
.footer__contact:hover:before {
  background: #fff;
}
.footer__contact:before {
  content: "";
  width: 24px;
  height: 23px;
  display: inline-block;
  background: #00B34F;
  transition: 0.3s;
  mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 19.047"><defs><style>.cls-1 { fill: %23fff; stroke-width: 0px; }</style></defs><path id="ico_line" data-name="ico_line" d="M18.663,10.84a.526.526,0,0,1-.525.525H16.676V12.3h1.462a.525.525,0,1,1,0,1.049H16.15a.526.526,0,0,1-.523-.524V8.852a.527.527,0,0,1,.525-.525h1.988a.525.525,0,0,1,0,1.05H16.676v.937h1.462A.526.526,0,0,1,18.663,10.84Zm-4.1,2.484a.539.539,0,0,1-.166.026.515.515,0,0,1-.425-.208l-2.036-2.764v2.45a.524.524,0,1,1-1.047,0V8.852a.522.522,0,0,1,.358-.5.485.485,0,0,1,.162-.028.539.539,0,0,1,.412.212l2.052,2.775V8.852a.525.525,0,0,1,1.05,0v3.976A.524.524,0,0,1,14.566,13.324Zm-4.95.028a.526.526,0,0,1-.522-.524V8.852a.524.524,0,1,1,1.048,0v3.976A.527.527,0,0,1,9.616,13.352Zm-1.529,0H6.1a.528.528,0,0,1-.525-.524V8.852a.525.525,0,0,1,1.05,0V12.3H8.087a.525.525,0,0,1,0,1.049ZM12,2.572c-5.513,0-10,3.642-10,8.118C2,14.7,5.559,18.059,10.363,18.7c.326.068.769.215.882.492a2.035,2.035,0,0,1,.032.9l-.137.85c-.037.251-.2.988.874.537a32.237,32.237,0,0,0,7.863-5.812A7.186,7.186,0,0,0,22,10.69C22,6.215,17.513,2.572,12,2.572Z" transform="translate(-2.001 -2.572)"/></svg>') center/contain no-repeat;
}

.footer__bottom {
  margin-top: 120px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 15px;
}

.footer__small {
  font-size: 1.2rem;
  font-family: "Archivo", sans-serif;
  color: #C1C6CE;
  font-weight: 900;
}

/***************************

layout/_lity.scss

***************************/
/*! Lity - v2.3.1 - 2018-04-20
* http://sorgalla.com/lity/
* Copyright (c) 2015-2018 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease, -o-transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

/***************************

layout/_pager.scss

***************************/
.wp-pagenavi {
  margin: 80px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  padding: 0 85px;
  position: relative;
}
@media screen and (max-width: 450px) {
  .wp-pagenavi {
    padding: 0 45px;
  }
}

.wp-pagenavi a, .wp-pagenavi span {
  font-family: "Archivo", sans-serif;
  color: #1f1f1f;
  font-size: 2rem;
  font-weight: 900;
  margin: 5px;
  width: 2em;
  height: 3.5em;
  line-height: 3.5;
  display: block;
  text-decoration: none;
  padding: 0;
  opacity: 1;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  width: 80px;
  height: 40px;
  display: block;
  border-radius: 5px;
  background: #111;
  color: transparent;
  position: absolute;
  top: calc(50% - 20px);
  margin: 0;
}
.wp-pagenavi .previouspostslink:before,
.wp-pagenavi .nextpostslink:before {
  content: "";
  mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="9" height="10" viewBox="0 0 9 10"><path id="arrowRight" data-name="arrowRight" d="M0,0V2.515L4.471,5,0,7.484V10L9,5Z"/></svg>') center no-repeat;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 450px) {
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    width: 40px;
  }
}

.wp-pagenavi .previouspostslink {
  left: 0;
}
.wp-pagenavi .previouspostslink::before {
  transform: rotate(180deg);
}

.wp-pagenavi .nextpostslink {
  right: 0;
}

.wp-pagenavi span.current {
  color: #9FA2A8;
  cursor: default;
}

.wp-pagenavi a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .wp-pagenavi .extend {
    display: none;
  }
  .wp-pagenavi .extend + .larger {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  .wp-pagenavi a, .wp-pagenavi span {
    width: 2.5em;
  }
}
.pager {
  margin: 20px 0 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: center;
}

.pager a {
  color: #1f1f1f;
  font-size: 14px;
  margin: 5px;
  width: 3.5em;
  height: 3.5em;
  line-height: 3.5;
  display: block;
  text-decoration: none;
  padding: 0;
  background: #f4f4f4;
  opacity: 1;
}

.pager .back a {
  width: 200px;
  padding: 0 20px;
  font-weight: bold;
  color: #FFF;
}

@media screen and (max-width: 450px) {
  .pager .back a {
    width: auto;
  }
}
/***************************

layout/_subpage.scss

***************************/
.subpage-title {
  position: relative;
  background: linear-gradient(135deg, #ed374d 25%, #0f3bb6 75%);
  padding-bottom: 70px;
  margin-bottom: 30px;
}
.subpage-title .container {
  height: 740px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.subpage-title:before {
  content: "";
  mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1920" height="518.134" viewBox="0 0 1920 518.134"><path id="white" data-name="white" d="M1920,0,0,458.133v60H1920Z"/></svg>') left 0 bottom 0 no-repeat;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.subpage-title:after {
  content: "";
  width: 100%;
  height: 100%;
  mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 986.873 970"><path id="main_f" d="M417.4,216.888H986.873V0H342.424C188.409,0,0,145.888,0,370.933V970H247.146V698.889H986.873V476.335H247.146v-83.1c0-125.679,56.77-176.345,170.252-176.345"/></svg>') left/contain no-repeat;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
}
.subpage-title > * {
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .subpage-title .container {
    height: 500px;
  }
}
@media screen and (max-width: 450px) {
  .subpage-title {
    padding-top: 150px;
  }
  .subpage-title .container {
    height: auto;
  }
  .subpage-title:has(.subpage-title__intro):before {
    mask: none;
    background: linear-gradient(170deg, transparent 55%, #fff 55.2%);
  }
  .subpage-title:before {
    mask: none;
    background: linear-gradient(170deg, transparent 75%, #fff 75.2%);
  }
  .subpage-title:after {
    mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 986.873 970"><path id="main_f" d="M417.4,216.888H986.873V0H342.424C188.409,0,0,145.888,0,370.933V970H247.146V698.889H986.873V476.335H247.146v-83.1c0-125.679,56.77-176.345,170.252-176.345"/></svg>') left top/100% auto no-repeat;
  }
}

.subpage-title__hdg {
  margin: auto 0;
}
@media screen and (max-width: 768px) {
  .subpage-title__hdg {
    margin: 0 0 50px;
  }
}
@media screen and (max-width: 450px) {
  .subpage-title__hdg:has(+ .subpage-title__intro) {
    margin: 0 0 150px;
  }
}

.subpage-title__hdg__jp {
  font-size: min(9vw, 7.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.subpage-title__hdg__en {
  background: #000;
  font-family: "Archivo", sans-serif;
  color: #fff;
  display: inline-block;
  font-size: min(4vw, 3.2rem);
  font-weight: 900;
  line-height: 0.9;
  padding: 3px 3px 0;
  margin-top: 20px;
}

.subpage-title__intro {
  text-align: right;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (max-width: 450px) {
  .subpage-title__intro {
    font-size: 1.8rem;
    text-align: left;
  }
  .subpage-title__intro br {
    display: none;
  }
}

.subpage-contents {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 769px) {
  .subpage-contents {
    display: flex;
    justify-content: center;
    gap: 80px;
  }
  .subpage-contents:not(:has(.subpage-contents__hdg)):before {
    display: block;
    content: "　";
    color: transparent;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    writing-mode: vertical-rl;
  }
}
section.subpage-contents + .subpage-contents {
  margin-top: 130px;
}

.subpage-contents__hdg {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  .subpage-contents__hdg {
    writing-mode: vertical-rl;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 450px) {
  .subpage-contents__hdg {
    font-size: 3.6rem;
  }
}

.subpage-contents__inner {
  width: 100%;
  max-width: 1410px;
}

.top-entry.is-subpage .top-entry__box {
  aspect-ratio: auto;
  background-position: top 20% left 50%;
  margin-top: 190px;
}
@media screen and (max-width: 450px) {
  .top-entry.is-subpage .top-entry__box {
    margin-top: 100px;
  }
}

/***************************

object/component/_heading.scss

***************************/
@media screen and (min-width: 1024px) {
  .hdg-type01Wrap {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 76px);
  }
  .hdg-type01Wrap.is-right {
    flex-direction: row-reverse;
  }
  .hdg-type01Wrap.is-right .hdg-type01Tytle {
    align-items: flex-end;
  }
  .hdg-type01Wrap.is-right .hdg-type01Contents {
    padding-left: 76px;
  }
  .hdg-type01Wrap:not(.is-right) {
    margin-left: auto;
  }
  .hdg-type01Wrap:not(.is-right) .hdg-type01Tytle {
    align-items: flex-start;
  }
  .hdg-type01Wrap:not(.is-right) .hdg-type01Contents {
    padding-right: 76px;
  }
}

@media screen and (min-width: 1024px) {
  .hdg-type01Tytle {
    width: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1100px) {
  .hdg-type01Tytle {
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .hdg-type01Contents {
    width: calc(100% - 200px);
  }
}

@media screen and (min-width: 1024px) {
  .hdg-type01 {
    writing-mode: vertical-rl;
  }
}

.hdg-type01__jp {
  font-size: 5.6rem;
  font-weight: 900;
  line-height: 1;
}
@media screen and (max-width: 450px) {
  .hdg-type01__jp {
    font-size: 4rem;
  }
}

.hdg-type01__en {
  background: #000;
  font-family: "Archivo", sans-serif;
  color: #fff;
  display: inline-block;
  font-size: min(4.3vw, 3.2rem);
  font-weight: 900;
  line-height: 0.9;
  padding: 5px 3px 5px 0;
  margin-top: 10px;
}
@media screen and (min-width: 1024px) {
  .hdg-type01__en {
    margin-right: 10px;
    margin-top: 0;
  }
}
@media screen and (max-width: 450px) {
  .hdg-type01__en {
    padding: 3px 3px 0;
  }
}

.hdg-type01Btn {
  writing-mode: vertical-rl;
  font-size: 2.2rem;
  font-weight: bold;
}
@media screen and (max-width: 1100px) {
  .hdg-type01Btn {
    display: none;
  }
}

.hdg-type01Btn__arrow {
  width: 80px;
  height: 40px;
  display: inline-block;
  border-radius: 5px;
  background: #111;
  position: relative;
  margin-top: 30px;
}
.hdg-type01Btn__arrow:before {
  content: "";
  mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="9" height="10" viewBox="0 0 9 10"><path id="arrowRight" data-name="arrowRight" d="M0,0V2.515L4.471,5,0,7.484V10L9,5Z"/></svg>') center no-repeat;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.hdg-type02 {
  margin-bottom: 40px;
}

.hdg-type02__jp {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.4;
}

.hdg-type02__en {
  background: #000;
  font-family: "Archivo", sans-serif;
  color: #fff;
  display: inline-block;
  font-size: min(4.3vw, 3.2rem);
  font-weight: 900;
  line-height: 0.9;
  padding: 3px 3px 0;
  margin-top: 5px;
}

/***************************

object/component/_box.scss

***************************/
.container {
  max-width: 1410px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container.is-rightOpen {
  width: 100%;
  margin-right: 0;
  max-width: none;
  padding-right: 0;
}

.container.is-leftOpen {
  width: 100%;
  margin-left: 0;
  max-width: none;
  padding-left: 0;
}

@media screen and (min-width: 1451px) {
  .container.is-rightOpen,
  .container.is-leftOpen {
    width: calc(100% - (100% - 1410px) / 2);
  }
}
.container_s {
  max-width: 1210px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container_l {
  max-width: 1760px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container_l.is-rightOpen {
  width: 100%;
  margin-right: 0;
  max-width: none;
  padding-right: 0;
}

.container_l.is-leftOpen {
  width: 100%;
  margin-left: 0;
  max-width: none;
  padding-left: 0;
}

@media screen and (min-width: 1801px) {
  .container_l.is-rightOpen,
  .container_l.is-leftOpen {
    width: calc(100% - (100% - 1760px) / 2);
  }
}
.gray-box {
  background: #F4F6F9;
  border-radius: 5px;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .gray-box {
    padding: 40px 0;
  }
}

/***************************

object/component/_button.scss

***************************/
.btn-type01 {
  border-bottom: 1px solid #111;
  display: block;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.4;
  padding: 20px 100px 20px 0;
  position: relative;
}
@media screen and (max-width: 450px) {
  .btn-type01 {
    padding-right: 60px;
    font-size: 2.4rem;
  }
}

.btn-type01__arrow {
  width: 80px;
  height: 40px;
  display: block;
  border-radius: 5px;
  background: #111;
  position: absolute;
  right: 0;
  top: calc(50% - 20px);
}
.btn-type01__arrow:before {
  content: "";
  mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="9" height="10" viewBox="0 0 9 10"><path id="arrowRight" data-name="arrowRight" d="M0,0V2.515L4.471,5,0,7.484V10L9,5Z"/></svg>') center no-repeat;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 450px) {
  .btn-type01__arrow {
    width: 40px;
  }
}

.btn-type02 {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.4;
  padding: 20px 100px 20px 0;
  position: relative;
}
.btn-type02.is-rev {
  padding: 20px 0 20px 100px;
}
.btn-type02.is-rev .btn-type02__arrow {
  right: auto;
  left: 0;
}
.btn-type02.is-rev .btn-type02__arrow:before {
  transform: rotate(180deg);
}
@media screen and (max-width: 450px) {
  .btn-type02 {
    padding-right: 60px;
  }
  .btn-type02.is-rev {
    padding-left: 60px;
  }
}

.btn-type02__arrow {
  width: 80px;
  height: 40px;
  display: block;
  border-radius: 5px;
  background: #111;
  position: absolute;
  right: 0;
  top: calc(50% - 20px);
}
.btn-type02__arrow:before {
  content: "";
  mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="9" height="10" viewBox="0 0 9 10"><path id="arrowRight" data-name="arrowRight" d="M0,0V2.515L4.471,5,0,7.484V10L9,5Z"/></svg>') center no-repeat;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 450px) {
  .btn-type02__arrow {
    width: 40px;
  }
}

.btn-type03 {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.4;
  padding: 20px 100px 20px 0;
  position: relative;
}

.btn-type03__arrow {
  width: 80px;
  height: 40px;
  display: block;
  border-radius: 5px;
  background: #111;
  position: absolute;
  right: 0;
  top: calc(50% - 20px);
}
.btn-type03__arrow:before {
  content: "";
  mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="9" height="9" viewBox="0 0 9 9"><path id="arrowExternal" d="M0,0V1.913H5.734L0,7.647,1.353,9,7.087,3.266V9H9V0Z"/></svg>') center no-repeat;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.btn-type04 {
  flex: 1 1 auto;
  min-height: 113px;
  background: #111111;
  color: #fff;
  font-size: 2.6rem;
  font-weight: bold;
  padding: 10px 130px 10px 40px;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .btn-type04 {
    min-height: 85px;
    padding-left: 25px;
    font-size: 2rem;
  }
}

.btn-type04__arrow {
  width: 80px;
  height: 40px;
  display: block;
  border-radius: 5px;
  background: #fff;
  position: absolute;
  right: 35px;
  top: calc(50% - 20px);
}
.btn-type04__arrow:before {
  content: "";
  mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="9" height="10" viewBox="0 0 9 10"><path id="arrowRight" data-name="arrowRight" d="M0,0V2.515L4.471,5,0,7.484V10L9,5Z"/></svg>') center no-repeat;
  background: #111;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.btn-line-friend {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #00B34F;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  border: 1px solid #00B34F;
  border-radius: 5px;
  min-height: 62px;
  padding: 0 20px;
}
.btn-line-friend:hover {
  color: #00B34F;
  background: #fff;
}
.btn-line-friend:hover:before {
  background: #00B34F;
}
.btn-line-friend:before {
  content: "";
  width: 24px;
  height: 23px;
  display: inline-block;
  background: #fff;
  transition: 0.3s;
  mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 19.047"><defs><style>.cls-1 { fill: %23fff; stroke-width: 0px; }</style></defs><path id="ico_line" data-name="ico_line" d="M18.663,10.84a.526.526,0,0,1-.525.525H16.676V12.3h1.462a.525.525,0,1,1,0,1.049H16.15a.526.526,0,0,1-.523-.524V8.852a.527.527,0,0,1,.525-.525h1.988a.525.525,0,0,1,0,1.05H16.676v.937h1.462A.526.526,0,0,1,18.663,10.84Zm-4.1,2.484a.539.539,0,0,1-.166.026.515.515,0,0,1-.425-.208l-2.036-2.764v2.45a.524.524,0,1,1-1.047,0V8.852a.522.522,0,0,1,.358-.5.485.485,0,0,1,.162-.028.539.539,0,0,1,.412.212l2.052,2.775V8.852a.525.525,0,0,1,1.05,0v3.976A.524.524,0,0,1,14.566,13.324Zm-4.95.028a.526.526,0,0,1-.522-.524V8.852a.524.524,0,1,1,1.048,0v3.976A.527.527,0,0,1,9.616,13.352Zm-1.529,0H6.1a.528.528,0,0,1-.525-.524V8.852a.525.525,0,0,1,1.05,0V12.3H8.087a.525.525,0,0,1,0,1.049ZM12,2.572c-5.513,0-10,3.642-10,8.118C2,14.7,5.559,18.059,10.363,18.7c.326.068.769.215.882.492a2.035,2.035,0,0,1,.032.9l-.137.85c-.037.251-.2.988.874.537a32.237,32.237,0,0,0,7.863-5.812A7.186,7.186,0,0,0,22,10.69C22,6.215,17.513,2.572,12,2.572Z" transform="translate(-2.001 -2.572)"/></svg>') center/contain no-repeat;
}

/***************************

object/component/_form.scss

***************************/
/***************************

object/object/project/_home.scss

***************************/
.top-mv {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
}
.top-mv__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top-mv__image:before {
  content: "";
  width: 100%;
  height: 100%;
  mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 986.873 970"><path id="main_f" d="M417.4,216.888H986.873V0H342.424C188.409,0,0,145.888,0,370.933V970H247.146V698.889H986.873V476.335H247.146v-83.1c0-125.679,56.77-176.345,170.252-176.345"/></svg>') left/contain no-repeat;
  background: rgba(255, 255, 255, 0.11);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  backdrop-filter: blur(14px) brightness(90%);
}
@media screen and (max-width: 768px) {
  .top-mv__image {
    background: url(../img/top/main_image_sp.jpg) no-repeat right/cover;
  }
  .top-mv__image:before {
    background: url(../img/top/main_f_sp.svg) no-repeat bottom/contain;
    mask: none;
    backdrop-filter: none;
  }
}

.top-mv__image__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: 0.8s;
}
.top-mv__image__item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.top-mv__image__item.is-active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .top-mv__image__item img {
    object-position: top 50% right 44%;
  }
  .top-mv__image__item:nth-of-type(2) img, .top-mv__image__item:nth-of-type(3) img {
    object-position: top 50% right 35%;
  }
}

.top-mv__hdg {
  display: grid;
  grid-template-areas: "item1 item2" "item3 item3";
  justify-content: start;
  align-items: end;
  grid-template-columns: max-content 1fr;
  gap: 10px;
  color: #fff;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .top-mv__hdg {
    overflow: hidden;
  }
}

.top-mv__hdg__text01 {
  grid-area: item1;
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  line-height: 0.9;
  font-size: min(5.3333333333vw, 6.4rem);
}
@media screen and (max-width: 768px) {
  .top-mv__hdg__text01 {
    font-size: 7vw;
  }
}

.top-mv__hdg__text01__inner {
  background: #000;
  display: block;
  width: max-content;
  max-width: 100%;
  padding: 0 5px;
}
.top-mv__hdg__text01__inner:nth-of-type(n+2) {
  margin-top: 2px;
}

.top-mv__hdg__text02 {
  grid-area: item2;
  font-size: min(3.6666666667vw, 4.4rem);
  line-height: 1.3;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .top-mv__hdg__text02 {
    font-size: 5.8vw;
  }
}

.top-mv__hdg__text03 {
  grid-area: item3;
  font-size: min(13vw, 18.6rem);
  font-weight: 900;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .top-mv__hdg__text03 {
    font-size: min(29vw, 37.2rem);
    width: 150%;
  }
}

.top-bg-type01 {
  position: relative;
}
.top-bg-type01:after {
  content: "";
  mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1844" height="846" viewBox="0 0 1844 846"><path id="codioful-formerly-gradienta-MJxvJlQqldM-unsplash_2" d="M0,0,1844,440V846H0Z"/></svg>') right 76px bottom 0 no-repeat;
  background: linear-gradient(to right, #ed374d 25%, #0f3bb6 75%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .top-bg-type01:after {
    mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1844" height="846" viewBox="0 0 1844 846"><path id="codioful-formerly-gradienta-MJxvJlQqldM-unsplash_2" d="M0,0,1844,440V846H0Z"/></svg>') right 0 bottom 0 no-repeat;
  }
}

.top-bg-type02 {
  position: relative;
}
.top-bg-type02:after {
  content: "";
  mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1650" height="818.713" viewBox="0 0 1650 818.713"><path id="codioful-formerly-gradienta-MJxvJlQqldM-unsplash_2" d="M0,0,1650,393.709v425H0Z" transform="translate(1650 818.713) rotate(180)"/></svg>') left 143px bottom 0 no-repeat;
  background: linear-gradient(to left, #ed374d 25%, #0f3bb6 75%);
  position: absolute;
  left: 0;
  bottom: -65px;
  z-index: -1;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .top-bg-type02:after {
    mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="1650" height="818.713" viewBox="0 0 1650 818.713"><path id="codioful-formerly-gradienta-MJxvJlQqldM-unsplash_2" d="M0,0,1650,393.709v425H0Z" transform="translate(1650 818.713) rotate(180)"/></svg>') left 0 bottom 0 no-repeat;
  }
}

.top-intoro {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 140px 90px 0 0;
}
@media screen and (max-width: 768px) {
  .top-intoro {
    padding: 140px 15px 0;
    justify-content: center;
  }
}

.top-intoro__image {
  padding-top: 220px;
}
@media screen and (max-width: 768px) {
  .top-intoro__image {
    padding-top: 70px;
  }
}

.top-intoro__text {
  font-size: 3.2rem;
  font-size: min(5.8vw, 3.2rem);
  font-weight: 600;
  line-height: 1.5;
  max-width: 650px;
}

.top-intoro__amaze {
  font-family: "Archivo", sans-serif;
  font-weight: 4rem;
  font-weight: 900;
  margin: 40px 0 65px;
}

.top-intoro__circleWrap {
  display: flex;
  width: calc(100% + 30px);
  position: relative;
  left: -15px;
}

.top-intoro__circle {
  width: 50%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  box-shadow: inset 0px 0px 27px 5px rgba(193, 198, 206, 0.6);
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.top-intoro__circle:nth-of-type(1) {
  transform: translateX(15px);
}
.top-intoro__circle:nth-of-type(2) {
  transform: translateX(-15px);
}

.top-intoro__circle__text {
  font-size: min(3.2vw, 1.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 15px;
}

.top-intoro__circle__num {
  font-size: min(21.8vw, 12rem);
  display: inline-flex;
  align-items: flex-end;
  font-family: "Outfit", sans-serif;
  font-weight: 200;
  line-height: 0.75;
  color: #FF1B01;
}

.top-intoro__circle__per {
  font-size: min(10.9vw, 6rem);
  font-weight: 400;
}

.top-intoro__circle__country {
  font-size: min(4.7vw, 2.6rem);
  font-weight: 600;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
}

.top-intoro__copy {
  width: 100%;
  margin-top: 130px;
  font-size: min(6.6vw, 9.6rem);
  font-weight: 900;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top-intoro__copy {
    font-size: min(12.6vw, 9.6rem);
    margin-top: min(16vw, 130px);
  }
}

.top-about {
  padding: 250px 0 0;
}
@media screen and (max-width: 1023px) {
  .top-about {
    padding: 200px 15px 0;
  }
}
@media screen and (max-width: 450px) {
  .top-about {
    padding: 140px 15px 0;
  }
}

.top-about__box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  align-items: flex-end;
  justify-content: space-between;
}

.top-about__box__image {
  width: 39%;
}
@media screen and (max-width: 768px) {
  .top-about__box__image {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .top-about__box__image img {
    max-width: 300px;
  }
}

.top-about__box__text {
  width: 54.5%;
  font-size: 2.2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .top-about__box__text {
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .top-about__box__text br {
    display: none;
  }
}

.top-interview {
  padding: 250px 0 375px;
}
.top-interview .hdg-type01Contents {
  overflow-x: hidden;
}
@media screen and (max-width: 1023px) {
  .top-interview {
    padding: 200px 0px 300px 15px;
  }
}
@media screen and (max-width: 450px) {
  .top-interview {
    padding: 140px 0 110px 15px;
  }
}

.top-interview__swiper {
  position: relative;
  padding-bottom: 112px;
}

.top-interview__swiper-slide a {
  display: block;
  position: relative;
}
.top-interview__swiper-slide a:hover {
  opacity: 1;
}

.top-interview__swiper-slide__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top-interview__swiper-slide__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.top-interview__swiper-slide__text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 40px 40px 0;
  z-index: 2;
  min-height: 560px;
}
@media screen and (max-width: 450px) {
  .top-interview__swiper-slide__text {
    padding: 20px 20px 20px 0;
  }
}

.top-interview__swiper-slide__text__department {
  width: 123px;
  aspect-ratio: 1/1;
  background: #111;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  padding: 10px 15px;
  margin-left: 40px;
}
@media screen and (max-width: 450px) {
  .top-interview__swiper-slide__text__department {
    margin-left: 20px;
  }
}

.top-interview__swiper-slide__text__box {
  border-left: 4px solid #fff;
  padding-left: 36px;
}

.top-interview__swiper-slide__text__copy {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 768px) {
  .top-interview__swiper-slide__text__copy {
    font-size: 3rem;
  }
}
@media screen and (max-width: 450px) {
  .top-interview__swiper-slide__text__copy {
    font-size: 2.4rem;
  }
  .top-interview__swiper-slide__text__copy br {
    display: none;
  }
}

.top-interview__swiper-slide__text__name {
  font-family: "Archivo", sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
  margin-top: 20px;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.4);
}

.top-interview__swiper-slide__text__date {
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.4;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.4);
}

.top-interview__swiper__btnWrap {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 50px;
}
.top-interview__swiper__btnWrap .swiper-button-prev,
.top-interview__swiper__btnWrap .swiper-button-next {
  position: static;
  width: 20px;
  height: 40px;
  background: #fff;
  margin: 0;
}
.top-interview__swiper__btnWrap .swiper-button-prev:after,
.top-interview__swiper__btnWrap .swiper-button-next:after {
  display: none;
}
.top-interview__swiper__btnWrap .swiper-button-prev {
  order: 1;
  mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="14.4" height="16" viewBox="0 0 14.4 16"><path id="arrowPrev" data-name="arrowPrev" d="M14.4,0V4.024L7.246,8,14.4,11.975V16L0,8Z"/></svg>') left 0px bottom 50% no-repeat;
}
.top-interview__swiper__btnWrap .swiper-button-next {
  order: 3;
  mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="14.4" height="16" viewBox="0 0 14.4 16"><path id="arrowNext" data-name="arrowNext" d="M0,0V4.024L7.154,8,0,11.975V16L14.4,8Z"/></svg>') right 0px bottom 50% no-repeat;
}
.top-interview__swiper__btnWrap:after {
  content: "";
  border-left: 2px dotted #fff;
  order: 2;
}

.top-interview__swiper__pagerWrap {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
  width: 224px;
  aspect-ratio: 1/1;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 450px) {
  .top-interview__swiper__pagerWrap {
    width: 150px;
  }
}

.top-interview__swiper-pagination {
  position: static;
}

.swiper-pagination-current {
  font-size: 4rem;
}

@media screen and (min-width: 1101px) {
  .top-interview__btnWrap {
    display: none;
  }
}

.top-news {
  padding-bottom: 250px;
}
@media screen and (max-width: 450px) {
  .top-news {
    padding-bottom: 140px;
  }
}

.top-news__list__item a {
  display: flex;
  align-items: center;
  gap: 5px 60px;
  min-height: 93px;
  border-radius: 5px;
  background: #F4F6F9;
  padding: 10px 65px 10px 50px;
  position: relative;
}
.top-news__list__item a:before {
  content: "";
  mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="9" height="10" viewBox="0 0 9 10"><path id="arrowRight" data-name="arrowRight" d="M0,0V2.515L4.471,5,0,7.484V10L9,5Z"/></svg>') center no-repeat;
  background: #111;
  position: absolute;
  right: 45px;
  top: calc(50% - 5px);
  width: 9px;
  height: 10px;
}
.top-news__list__item:nth-of-type(n+2) {
  margin-top: 5px;
}

.top-news__list__date {
  font-size: 2rem;
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  color: #9FA2A8;
  flex: 0 0 auto;
}

.top-news__list__ttl {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .top-news__list__item a {
    padding: 10px 45px 10px 20px;
    gap: 5px 25px;
  }
  .top-news__list__item a:before {
    right: 20px;
  }
}
@media screen and (max-width: 450px) {
  .top-news__list__item a {
    flex-wrap: wrap;
  }
  .top-news__list__date,
  .top-news__list__ttl {
    width: 100%;
    line-height: 1.2;
  }
}
.top-welfare {
  padding-bottom: 160px;
}
@media screen and (max-width: 450px) {
  .top-welfare {
    padding-bottom: 80px;
  }
}

.top-welfare__swiper {
  overflow-x: hidden;
}

.top-welfare__swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.top-welfare__swiper-slide {
  width: max-content;
}
@media screen and (max-width: 768px) {
  .top-welfare__swiper-slide {
    width: 80%;
  }
}

.top-welfare__box {
  width: 100%;
  max-width: 1000px;
  background: #fff;
  margin-left: auto;
  padding: 70px 76px 100px 100px;
  font-size: 2.2rem;
  line-height: 1.9;
  position: relative;
  z-index: 2;
  margin-top: -140px;
  display: flex;
  flex-direction: row-reverse;
  gap: 30px 130px;
}
@media screen and (max-width: 1023px) {
  .top-welfare__box {
    flex-wrap: wrap;
    flex-direction: row;
    width: calc(100% - 30px);
    margin-right: auto;
  }
}
@media screen and (max-width: 450px) {
  .top-welfare__box {
    padding: 50px 40px 30px;
  }
}

.top-welfare__box__btnWrap {
  margin-top: 60px;
}
@media screen and (max-width: 450px) {
  .top-welfare__box__btnWrap {
    margin-top: 30px;
  }
}

.top-requirements {
  padding: 200px 0 190px;
}
@media screen and (max-width: 450px) {
  .top-requirements {
    padding: 100px 0;
  }
}

.top-requirements__hdg__en {
  background: #000;
  font-family: "Archivo", sans-serif;
  color: #fff;
  display: inline-block;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 0.9;
  padding: 3px 3px 0;
}

.top-requirements__hdg__jp {
  font-size: min(5.6vw, 9.6rem);
  font-weight: 900;
  line-height: 1.3;
}

.top-requirements__hdg__jp__color01 {
  background: linear-gradient(120deg, #240dc3, #4e70d0);
}

.top-requirements__hdg__jp__color02 {
  background: linear-gradient(120deg, #8a5ab1, #eb61a4 30%, #fd9c7d);
}

.top-requirements__hdg__jp__color01,
.top-requirements__hdg__jp__color02 {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.top-requirements__box__hdgWrap {
  font-size: 3.2rem;
  line-height: 1.4;
}

@media screen and (min-width: 1024px) {
  .top-requirements__box {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .top-requirements__box__hdgWrap {
    width: 41%;
  }
  .top-requirements__box__contents {
    width: 48.6%;
  }
}
@media screen and (max-width: 1023px) {
  .top-requirements__box__contents {
    margin-top: 30px;
  }
  .top-requirements__hdg__jp {
    font-size: min(12.5vw, 9.6rem);
  }
  .top-requirements__hdg__en {
    font-size: min(4.3vw, 3.2rem);
  }
}
@media screen and (max-width: 450px) {
  .top-requirements__box__hdgWrap {
    font-size: 2.4rem;
  }
}
.top-entry {
  background: linear-gradient(to bottom, transparent 140px, #F4F6F9 140px);
}

.top-entry__box {
  background: url(../img/top/entry_bg.jpg) no-repeat top center/cover;
  border-radius: 5px 0 0 5px;
  aspect-ratio: 1820/900;
  min-height: 480px;
  max-width: 100%;
  padding: 35px 80px 50px 25px;
}
@media screen and (min-width: 769px) {
  .top-entry__box {
    display: flex;
    align-items: flex-end;
    gap: 25px;
  }
}
@media screen and (max-width: 768px) {
  .top-entry__box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.top-entry__box__hdg {
  align-self: flex-start;
  background: #FF1B01;
  font-family: "Archivo", sans-serif;
  color: #fff;
  display: inline-block;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 0.9;
  padding: 5px 3px 5px 0;
  margin-right: 10px;
}
@media screen and (min-width: 769px) {
  .top-entry__box__hdg {
    writing-mode: vertical-rl;
    flex: 0 0 auto;
  }
}

.top-entry__box__contents {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  max-width: 1560px;
  flex: 1 1 auto;
}
@media screen and (max-width: 768px) {
  .top-entry__box__contents {
    flex: 0 1 auto;
  }
}

.top-entry__copy {
  color: #fff;
  line-height: 1.2;
  font-weight: 900;
  font-size: min(5.9vw, 5.6rem);
  width: 100%;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.56);
  margin-bottom: 40px;
}

.top-entry__btn {
  flex: 1 1 auto;
  min-height: 113px;
  background: linear-gradient(to right, #ed374d 25%, #0f3bb6 75%);
  color: #fff;
  font-size: 2.6rem;
  font-weight: bold;
  padding: 10px 130px 10px 40px;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 5px;
}

.top-entry__btn__arrow {
  width: 80px;
  height: 40px;
  display: block;
  border-radius: 5px;
  background: #fff;
  position: absolute;
  right: 35px;
  top: calc(50% - 20px);
}
.top-entry__btn__arrow:before {
  content: "";
  mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="9" height="10" viewBox="0 0 9 10"><path id="arrowRight" data-name="arrowRight" d="M0,0V2.515L4.471,5,0,7.484V10L9,5Z"/></svg>') center no-repeat;
  background: #111;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.top-entry__line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #00B34F;
  background: #fff;
  max-width: 340px;
  width: 100%;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 5px;
  min-height: 113px;
}
.top-entry__line:hover {
  background: #00B34F;
  color: #fff;
}
.top-entry__line:hover:before {
  background: #fff;
}
.top-entry__line:before {
  content: "";
  width: 40px;
  height: 38px;
  display: inline-block;
  background: #00B34F;
  transition: 0.3s;
  mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 19.047"><defs><style>.cls-1 { fill: %23fff; stroke-width: 0px; }</style></defs><path id="ico_line" data-name="ico_line" d="M18.663,10.84a.526.526,0,0,1-.525.525H16.676V12.3h1.462a.525.525,0,1,1,0,1.049H16.15a.526.526,0,0,1-.523-.524V8.852a.527.527,0,0,1,.525-.525h1.988a.525.525,0,0,1,0,1.05H16.676v.937h1.462A.526.526,0,0,1,18.663,10.84Zm-4.1,2.484a.539.539,0,0,1-.166.026.515.515,0,0,1-.425-.208l-2.036-2.764v2.45a.524.524,0,1,1-1.047,0V8.852a.522.522,0,0,1,.358-.5.485.485,0,0,1,.162-.028.539.539,0,0,1,.412.212l2.052,2.775V8.852a.525.525,0,0,1,1.05,0v3.976A.524.524,0,0,1,14.566,13.324Zm-4.95.028a.526.526,0,0,1-.522-.524V8.852a.524.524,0,1,1,1.048,0v3.976A.527.527,0,0,1,9.616,13.352Zm-1.529,0H6.1a.528.528,0,0,1-.525-.524V8.852a.525.525,0,0,1,1.05,0V12.3H8.087a.525.525,0,0,1,0,1.049ZM12,2.572c-5.513,0-10,3.642-10,8.118C2,14.7,5.559,18.059,10.363,18.7c.326.068.769.215.882.492a2.035,2.035,0,0,1,.032.9l-.137.85c-.037.251-.2.988.874.537a32.237,32.237,0,0,0,7.863-5.812A7.186,7.186,0,0,0,22,10.69C22,6.215,17.513,2.572,12,2.572Z" transform="translate(-2.001 -2.572)"/></svg>') center/contain no-repeat;
}

@media screen and (max-width: 768px) {
  .top-entry__box {
    padding-right: 20px;
  }
  .top-entry__btn {
    min-height: 85px;
    padding-left: 25px;
    font-size: 2rem;
  }
  .top-entry__line {
    min-height: 80px;
  }
}
@media screen and (max-width: 450px) {
  .top-entry__box {
    min-height: 340px;
    background-position: left calc(50% - 50px) top 50%;
    padding: 20px;
  }
  .top-entry__box__hdg {
    padding: 5px 3px 3px;
    margin-bottom: 20px;
  }
  .top-entry__btn {
    padding: 10px 75px 10px 30px;
    min-height: 70px;
  }
  .top-entry__btn__arrow {
    width: 40px;
    right: 20px;
  }
  .top-entry__line {
    min-height: 70px;
  }
  .top-entry__copy {
    margin-bottom: 5px;
  }
}
/***************************

object/object/project/_home.scss

***************************/
.about-box {
  background: #F4F6F9;
  border-radius: 5px;
  max-width: 1380px;
}
.about-box:has(.about-box__btnWrap) {
  padding-bottom: 10px;
}

.about-box__btnWrap {
  width: calc(100% - 20px);
  margin: 0 auto;
  background: #fff;
  border-radius: 5px;
  padding: 0 15px;
}

.about-box__btnWrap__inner {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
  min-height: 120px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0 60px;
}

.about-technology {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.8;
  padding: 0 20px;
}

.about-technology__share {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 90px 20px 70px;
  border-bottom: 2px solid #E8EDF5;
  margin: 0 auto 50px;
}
@media screen and (max-width: 1100px) {
  .about-technology__share {
    justify-content: center;
    gap: 30px;
  }
}
@media screen and (max-width: 450px) {
  .about-technology__share {
    padding: 50px 0px 40px;
  }
}

.about-technology__share__text {
  max-width: 400px;
  width: 37%;
}
@media screen and (max-width: 1100px) {
  .about-technology__share__text {
    width: 100%;
  }
}

.about-technology__share__image {
  display: flex;
  justify-content: space-between;
  max-width: 635px;
  width: 58.8%;
}
@media screen and (max-width: 1100px) {
  .about-technology__share__image {
    width: 100%;
  }
}

.about-technology__share__hdg {
  font-size: 6.4rem;
  line-height: 1;
  margin-bottom: 20px;
}
@media screen and (min-width: 1101px) {
  .about-technology__share__hdg {
    font-size: min(5.4vw, 6.4rem);
  }
}
@media screen and (max-width: 500px) {
  .about-technology__share__hdg {
    font-size: min(12.8vw, 6.4rem);
  }
}

.about-technology__share__hdg__num {
  font-family: "Outfit", sans-serif;
  font-size: 14rem;
  font-weight: 400;
  color: #434C9E;
}
@media screen and (min-width: 1101px) {
  .about-technology__share__hdg__num {
    font-size: min(11.8vw, 14rem);
  }
}
@media screen and (max-width: 500px) {
  .about-technology__share__hdg__num {
    font-size: min(28vw, 14rem);
  }
}

.about-technology__share__hdg__class {
  font-size: 5.4rem;
  margin-left: 10px;
}
@media screen and (min-width: 1101px) {
  .about-technology__share__hdg__class {
    font-size: min(4.5vw, 5.4rem);
  }
}
@media screen and (max-width: 500px) {
  .about-technology__share__hdg__class {
    font-size: min(10vw, 5.4rem);
  }
}

.about-technology__share__circle-wrap {
  width: calc(50% - 10px);
  max-width: 290px;
}

.about-technology__share__circle-hdg {
  background: #434C9E;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  font-size: min(4vw, 2.2rem);
  line-height: 1.4;
  font-weight: bold;
  padding: 5px 10px 7px 10px;
  position: relative;
  max-width: 260px;
  width: 100%;
  margin: 0 auto 30px;
}
.about-technology__share__circle-hdg:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 8px solid #434c9e;
  border-bottom: 0;
  position: absolute;
  left: calc(50% - 6px);
  bottom: -7px;
}

.about-technology__share__circle {
  width: 100%;
  aspect-ratio: 1/1;
  background: url(../img/about/share_circle_98.svg) no-repeat center/contain;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #434C9E;
  text-align: center;
  line-height: 1.2;
}
.about-technology__share__circle.is-60per {
  background-image: url(../img/about/share_circle_60.svg);
}

.about-technology__share__circle__about {
  font-size: 2.2rem;
}

.about-technology__share__circle__num {
  font-size: min(9.3vw, 12rem);
  font-weight: 400;
  font-family: "Outfit", sans-serif;
}
@media screen and (max-width: 768px) {
  .about-technology__share__circle__num {
    font-size: min(15.6vw, 12rem);
  }
}

.about-technology__share__circle__per {
  font-size: min(4.6vw, 6rem);
  font-weight: 400;
  font-family: "Outfit", sans-serif;
}
@media screen and (max-width: 768px) {
  .about-technology__share__circle__per {
    font-size: min(10.9vw, 6rem);
  }
}

.about-technology__overseas {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 30px 90px;
  margin-bottom: 55px;
}
@media screen and (max-width: 1100px) {
  .about-technology__overseas {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.about-technology__overseas__text {
  max-width: 415px;
}

.about-technology__order,
.about-technology__only {
  width: 50%;
  max-width: 580px;
  border-top: 2px solid #E8EDF5;
  padding-bottom: 95px;
}
@media screen and (max-width: 768px) {
  .about-technology__order,
  .about-technology__only {
    width: 100%;
  }
}

.about-technology__order__hdg {
  font-size: min(9vw, 5.4rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 30px;
}

.about-technology__order__hdg__num {
  font-size: min(19vw, 12rem);
  font-weight: 400;
  color: #434C9E;
  font-family: "Outfit", sans-serif;
}

.about-technology__order {
  padding-top: 56px;
}
@media screen and (min-width: 769px) {
  .about-technology__order {
    padding-right: 80px;
  }
}

.about-technology__only {
  padding-top: 65px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .about-technology__only {
    padding-left: 80px;
  }
  .about-technology__only:before {
    content: "";
    width: 2px;
    height: calc(100% - 105px);
    background: #E8EDF5;
    position: absolute;
    left: 0;
    top: 50px;
  }
}

.about-technology__only__hdg {
  font-size: min(9vw, 5.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
}

.about-technology__only__hdg__num {
  font-size: min(15vw, 9.6rem);
  font-weight: 400;
  color: #434C9E;
  font-family: "Outfit", sans-serif;
}

.about-company {
  display: grid;
  grid-template-areas: "item1 item2 noRed" "item3 item4 noRed";
  grid-template-columns: 34fr 36fr 46fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
}

.about-company__item {
  position: relative;
}
.about-company__item:nth-of-type(1) {
  grid-area: item1;
}
.about-company__item:nth-of-type(2) {
  grid-area: item2;
}
.about-company__item:nth-of-type(3) {
  grid-area: item3;
}
.about-company__item:nth-of-type(4) {
  grid-area: item4;
}
.about-company__item.is-noRed {
  grid-area: noRed;
  align-self: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.8;
}

.about-company__item__inner {
  max-width: max-content;
  width: 100%;
  margin: 0 auto;
}

.about-company__hdg {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.4;
}

.about-company__data {
  line-height: 1.2;
  font-size: 4.8rem;
  font-weight: 800;
}

.about-company__num {
  font-size: 10rem;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  color: #434C9E;
  margin-right: 10px;
}

@media screen and (min-width: 451px) {
  .about-company__item {
    position: relative;
  }
  .about-company__item:nth-of-type(1) {
    border-bottom: 2px solid #E8EDF5;
    padding-bottom: 30px;
    margin-bottom: 35px;
  }
  .about-company__item:nth-of-type(2) {
    border-bottom: 2px solid #E8EDF5;
    padding-bottom: 30px;
    margin-bottom: 35px;
  }
  .about-company__item:nth-of-type(2):before {
    content: "";
    width: 2px;
    height: calc(100% - 30px);
    background: #E8EDF5;
    position: absolute;
    left: 0;
    bottom: 30px;
  }
  .about-company__item:nth-of-type(4):before {
    content: "";
    width: 2px;
    height: 100%;
    background: #E8EDF5;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .about-company__item.is-noRed .about-company__item__inner {
    max-width: 300px;
  }
  .about-company__item.is-noRed .about-company__hdg {
    font-size: 5.4rem;
    line-height: 1;
    margin-bottom: 30px;
  }
  .about-company__item.is-noRed .about-company__num {
    font-size: 12rem;
    margin-right: 5px;
  }
  .about-company__item.is-noRed .about-company__small {
    font-size: 4rem;
  }
}
@media screen and (min-width: 1025px) {
  .about-company__item:nth-of-type(1) .about-company__item__inner, .about-company__item:nth-of-type(3) .about-company__item__inner {
    margin-left: 0;
    padding-left: 20px;
  }
  .about-company__item.is-noRed {
    padding-left: 80px;
    position: relative;
  }
  .about-company__item.is-noRed:before {
    content: "";
    width: 2px;
    height: 100%;
    background: #E8EDF5;
    position: absolute;
    left: 40px;
    bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  .about-company {
    display: grid;
    grid-template-areas: "item1 item2" "item3 item4" "noRed noRed";
    grid-template-columns: 1fr 1fr;
  }
  .about-company__item.is-noRed {
    border-top: 2px solid #E8EDF5;
    margin-top: 40px;
    padding-top: 20px;
  }
  .about-company__item.is-noRed .about-company__item__inner {
    max-width: 500px;
  }
  .about-company__item.is-noRed .about-company__hdg {
    max-width: 100%;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .about-company__hdg {
    font-size: min(4.1666666667vw, 3.2rem);
  }
  .about-company__data {
    font-size: min(6.25vw, 4.8rem);
  }
  .about-company__num {
    font-size: min(13.0208333333vw, 10rem);
  }
  .about-company__item.is-noRed .about-company__hdg {
    font-size: min(7.03125vw, 5.4rem);
  }
  .about-company__item.is-noRed .about-company__num {
    font-size: min(15.625vw, 12rem);
  }
  .about-company__item.is-noRed .about-company__small {
    font-size: min(5.2083333333vw, 4rem);
  }
}
@media screen and (max-width: 450px) {
  .about-company {
    display: block;
    grid-template-columns: 1fr 1fr;
  }
  .about-company__hdg {
    font-size: min(8vw, 3.2rem);
  }
  .about-company__data {
    font-size: min(12vw, 4.8rem);
  }
  .about-company__num {
    font-size: min(25vw, 10rem);
  }
  .about-company__item:nth-of-type(n+2) {
    border-top: 2px solid #E8EDF5;
    margin-top: 40px;
    padding-top: 20px;
  }
  .about-company__item.is-noRed .about-company__hdg {
    font-size: 3.2rem;
  }
  .about-company__item.is-noRed .about-company__data {
    font-size: 4.8rem;
  }
  .about-company__item.is-noRed .about-company__num {
    font-size: 10rem;
  }
  .about-company__item.is-noRed .about-company__small {
    font-size: 4rem;
  }
}
.about-environment {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-environment__item {
  width: 100%;
}

.about-environment__item__inner {
  max-width: max-content;
  width: 100%;
  margin: 0 auto;
}
.about-environment__item:nth-of-type(1) .about-environment__item__inner {
  padding-right: min(27.5vw, 160px);
  background: url(../img/about/environment_image01@2x.png) no-repeat right/min(26.7vw, 155px) min(27.5vw, 160px);
}
.about-environment__item:nth-of-type(2) .about-environment__item__inner {
  padding-right: min(25.8vw, 150px);
  background: url(../img/about/environment_image02@2x.png) no-repeat right/min(32vw, 186px) min(27.4vw, 159px);
}

.about-environment__hdg {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.4;
}

.about-environment__hdg__small {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  display: block;
  margin-top: 5px;
}

.about-environment__data {
  line-height: 1.2;
  font-size: 4.8rem;
  font-weight: 800;
}

.about-environment__data__about {
  line-height: 1.2;
  font-size: 2.2rem;
  font-weight: 600;
}

.about-environment__num {
  font-size: 10rem;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  color: #434C9E;
  margin-right: 10px;
}

.about-environment__numSmall {
  font-size: 6rem;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  color: #434C9E;
  margin-right: 10px;
}

@media screen and (min-width: 451px) {
  .about-environment__hdg br {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .about-environment__item {
    width: 33.3333333333%;
    position: relative;
  }
  .about-environment__item:nth-of-type(1), .about-environment__item:nth-of-type(2) {
    width: 50%;
    border-bottom: 2px solid #E8EDF5;
    padding-bottom: 30px;
    margin-bottom: 35px;
  }
  .about-environment__item:nth-of-type(1) .about-environment__num, .about-environment__item:nth-of-type(2) .about-environment__num {
    font-size: 12rem;
  }
  .about-environment__item:nth-of-type(2):before, .about-environment__item:nth-of-type(4):before, .about-environment__item:nth-of-type(5):before, .about-environment__item:nth-of-type(7):before, .about-environment__item:nth-of-type(8):before, .about-environment__item:nth-of-type(9):before {
    content: "";
    width: 2px;
    height: calc(100% - 30px);
    background: #E8EDF5;
    position: absolute;
    left: 0;
    bottom: 30px;
  }
  .about-environment__item:nth-of-type(4):before, .about-environment__item:nth-of-type(5):before {
    height: 100%;
    bottom: 0;
  }
  .about-environment__item:nth-of-type(7):before, .about-environment__item:nth-of-type(8):before, .about-environment__item:nth-of-type(9):before {
    bottom: 0;
  }
  .about-environment__item:nth-of-type(n+6) {
    border-top: 2px solid #E8EDF5;
    padding-top: 35px;
    margin-top: 35px;
  }
  .about-environment__item:nth-of-type(n+3) .about-environment__hdg {
    font-size: min(2.6vw, 3.2rem);
  }
  .about-environment__item:nth-of-type(n+3) .about-environment__hdg__small {
    font-size: 1.4rem;
  }
  .about-environment__item:nth-of-type(n+3) .about-environment__data {
    font-size: min(4vw, 4.8rem);
  }
  .about-environment__item:nth-of-type(n+3) .about-environment__data__about {
    font-size: min(1.8vw, 2.2rem);
  }
  .about-environment__item:nth-of-type(n+3) .about-environment__num {
    font-size: min(8.3vw, 10rem);
  }
  .about-environment__item:nth-of-type(n+3) .about-environment__numSmall {
    font-size: min(5vw, 6rem);
  }
  .about-environment__item:nth-of-type(3), .about-environment__item:nth-of-type(6) {
    width: 29.1%;
  }
  .about-environment__item:nth-of-type(3) .about-environment__item__inner, .about-environment__item:nth-of-type(6) .about-environment__item__inner {
    margin-left: 0;
    padding-left: 20px;
  }
  .about-environment__item:nth-of-type(4), .about-environment__item:nth-of-type(7) {
    width: 34.5%;
  }
  .about-environment__item:nth-of-type(5), .about-environment__item:nth-of-type(8) {
    width: 36.4%;
  }
}
@media screen and (min-width: 1201px) {
  .about-environment__item:nth-of-type(1) .about-environment__item__inner {
    margin-left: 0;
    padding-left: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .about-environment__item:nth-of-type(1), .about-environment__item:nth-of-type(2) {
    width: 100%;
  }
  .about-environment__item:nth-of-type(1):before, .about-environment__item:nth-of-type(2):before {
    display: none;
  }
  .about-environment__item:nth-of-type(1) .about-environment__item__inner, .about-environment__item:nth-of-type(2) .about-environment__item__inner {
    max-width: 480px;
  }
}
@media screen and (max-width: 768px) {
  .about-environment__item:nth-of-type(n+2) {
    border-top: 2px solid #E8EDF5;
    margin-top: 20px;
    padding-top: 30px;
  }
}
@media screen and (max-width: 450px) {
  .about-environment__item:nth-of-type(1) .about-environment__item__inner {
    padding-right: 60px;
  }
  .about-environment__item:nth-of-type(2) .about-environment__item__inner {
    padding-right: 0px;
    background-position: bottom right;
  }
}
/***************************

object/object/project/_business.scss

***************************/
.business-contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
  counter-reset: businessContents;
}

.business-contents__item {
  counter-increment: businessContents;
  border: 1px solid #E4E9EF;
  border-radius: 5px;
  width: calc(50% - 10px);
  padding: 80px 20px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.8;
  position: relative;
}
@media screen and (max-width: 768px) {
  .business-contents__item {
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .business-contents__item {
    font-size: 1.7rem;
  }
}

.business-contents__item__inner {
  max-width: 480px;
  margin: 0 auto;
}
.business-contents__item__inner:before {
  content: "BUSINESS" counter(businessContents, decimal-leading-zero);
  font-family: "Outfit", sans-serif;
  font-weight: bold;
  color: #434C9E;
  font-size: 1.2rem;
  line-height: 1.4;
  display: block;
  margin-bottom: 30px;
}

.business-contents__hdg {
  font-size: min(3.4vw, 5.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .business-contents__hdg {
    font-size: min(7.9vw, 5.4rem);
  }
}

.business-contents__image {
  margin-bottom: 40px;
}
@media screen and (max-width: 450px) {
  .business-contents__image {
    margin-bottom: 20px;
  }
}

.business-contents__share {
  width: min(10vw, 160px);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: min(1vw, 1.4rem);
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  border: 1px solid #FF1B01;
  border-radius: 50%;
  position: absolute;
  top: 110px;
  right: min(1.5vw, 25px);
}
@media screen and (max-width: 768px) {
  .business-contents__share {
    width: min(23vw, 160px);
    font-size: min(2vw, 1.4rem);
  }
}

.business-contents__share__about {
  font-size: min(0.7vw, 1.2rem);
  color: #FF1B01;
}
@media screen and (max-width: 768px) {
  .business-contents__share__about {
    font-size: min(1.7vw, 1.2rem);
  }
}

.business-contents__share__num {
  font-size: min(4vw, 6.4rem);
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  color: #FF1B01;
}
@media screen and (max-width: 768px) {
  .business-contents__share__num {
    font-size: min(9.4vw, 6.4rem);
  }
}

.business-contents__share__per {
  font-size: min(1.5vw, 2.4rem);
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  color: #FF1B01;
}
@media screen and (max-width: 768px) {
  .business-contents__share__per {
    font-size: min(3.5vw, 2.4rem);
  }
}

.business-history {
  margin-top: 120px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (max-width: 450px) {
  .business-history {
    font-size: 1.7rem;
  }
}

.business-history__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.business-history__hdg01 {
  font-size: min(6vw, 5.4rem);
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .business-history__hdg01 {
    font-size: min(7vw, 5.4rem);
  }
}

.business-history__hdg02 {
  font-size: min(4vw, 3.6rem);
  margin: 60px 0 30px;
}
@media screen and (max-width: 768px) {
  .business-history__hdg02 {
    font-size: min(6vw, 3.6rem);
    margin: 40px 0 30px;
  }
}

.business-history__image {
  margin: 80px 0 100px;
}
.business-history__image img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .business-history__image {
    margin: 40px 0;
  }
}

/***************************

object/object/project/_interview.scss

***************************/
.interview-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px 0;
}

.interview-list__item {
  width: calc(50% - 15px);
  max-width: 660px;
}
.interview-list__item a:hover {
  opacity: 1;
}
.interview-list__item a:hover .interview-list__image img {
  scale: 1.1;
}
@media screen and (max-width: 450px) {
  .interview-list__item {
    width: 100%;
  }
}

.interview-list__image {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 25px;
}
.interview-list__image img {
  transition: 0.3s;
}

.interview-list__department {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #111111;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 2px 18px;
  min-width: 140px;
  border-top-right-radius: 5px;
}

.interview-list__hdg {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 15px;
}
@media screen and (max-width: 450px) {
  .interview-list__hdg {
    font-size: 2.8rem;
  }
}

.interview-list__name {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.6;
}

.interview-list__name__en {
  font-family: "Archivo", sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  margin-right: 15px;
}

.interview-detail-title {
  padding-top: 220px;
}
.interview-detail-title .container_l {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .interview-detail-title {
    padding-top: 120px;
  }
}

.interview-detail-title__inner {
  margin-left: auto;
  margin-right: 0;
  padding-left: 140px;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 1671px) {
  .interview-detail-title__inner {
    width: calc(100% - (100% - 1630px) / 2);
  }
}
@media screen and (max-width: 450px) {
  .interview-detail-title__inner {
    padding-left: 90px;
  }
}

.interview-detail-title__hdg {
  writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.interview-detail-title__image {
  text-align: right;
}
.interview-detail-title__image img {
  height: 825px;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 450px) {
  .interview-detail-title__image img {
    height: 520px;
  }
}

.interview-detail-title__hdg__jp {
  font-size: 0;
}

.interview-detail-title__hdg__jp__inner {
  color: #fff;
  font-weight: 900;
  font-size: 5.4rem;
  line-height: 1.3;
  background: #111111;
  display: inline-block;
  padding: 10px 0;
}
@media screen and (max-width: 450px) {
  .interview-detail-title__hdg__jp__inner {
    font-size: 3.4rem;
  }
}

.interview-detail-title__hdg__en {
  font-family: "Archivo", sans-serif;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  margin-right: 25px;
}
@media screen and (max-width: 450px) {
  .interview-detail-title__hdg__en {
    margin-right: 1px;
  }
}

.interview-detail {
  counter-reset: interviewFaq;
}

.interview-detail__department {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 15px;
}

.interview-detail__name {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  border-bottom: 1px solid #E4E9EF;
  padding-bottom: 55px;
  margin-bottom: 100px;
}

.interview-detail__name__en {
  font-family: "Archivo", sans-serif;
  font-size: 3.6rem;
  font-weight: 900;
  margin-right: 15px;
}

.interview-detail__faq__dt {
  counter-increment: interviewFaq;
  font-size: 1.6rem;
  font-weight: 900;
  color: #434C9E;
  line-height: 1.6;
  padding-left: 55px;
  position: relative;
  margin-bottom: 30px;
}
.interview-detail__faq__dt:before {
  content: "Q." counter(interviewFaq);
  color: #fff;
  background: #434C9E;
  display: inline-block;
  font-family: "Outfit", sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  width: 40px;
  text-align: center;
  padding: 1px 0;
  border-radius: 2px;
  margin-right: 15px;
  position: absolute;
  left: 0;
  top: 3px;
}
.interview-detail__faq__dt:nth-of-type(n+2) {
  margin-top: 80px;
}

.interview-detail__faq__dd {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.8;
}

.interview-detail__faq__dd__large {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
}
@media screen and (max-width: 450px) {
  .interview-detail__faq__dd__large {
    font-size: 3rem;
  }
}

.interview-detail__image {
  margin-top: 100px;
  margin-bottom: 100px;
}

.interview-detail__message {
  background: #F4F6F9;
  padding-bottom: 60px;
  margin-top: 130px;
}

.interview-detail__message__text {
  width: 70.3%;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .interview-detail__message__text {
    width: 100%;
  }
}

.interview-detail__message__image {
  width: 22.9%;
}
.interview-detail__message__image img {
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .interview-detail__message__image {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }
}

.interview-detail__message__hdg {
  background: #434C9E;
  color: #fff;
  display: inline-block;
  font-family: "Archivo", sans-serif;
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1;
  padding: 2px 10px 1px;
  position: relative;
  top: -22px;
  margin-bottom: 8px;
}

.interview-detail__message__hdg02 {
  font-size: 1.6rem;
  color: #434C9E;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 20px;
}
p + .interview-detail__message__hdg02 {
  border-top: 3px dotted #D8D9E6;
  padding-top: 35px;
  margin-top: 40px;
}

.interview-others {
  border-top: 1px solid #E4E9EF;
  margin-top: 150px;
  padding-top: 150px;
}
.interview-others .interview-list {
  gap: 50px 0;
}
.interview-others .interview-list:after {
  content: "";
  display: block;
  width: calc((100% - 96px) / 3);
}
.interview-others .interview-list__item {
  width: calc((100% - 96px) / 3);
}
.interview-others .interview-list__hdg {
  font-size: min(3.38vw, 2.2rem);
}
.interview-others .interview-list__department {
  font-size: 1.4rem;
  min-width: 122px;
}
.interview-others .interview-list__name__en {
  font-size: min(5vw, 2.2rem);
}
@media screen and (max-width: 1100px) {
  .interview-others .interview-list:after,
  .interview-others .interview-list__item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 768px) {
  .interview-others .interview-list__image img {
    object-fit: cover;
    height: 170px;
  }
}

/***************************

object/object/project/_welfare.scss

***************************/
.welfare-list {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}

.welfare-list__item {
  width: calc((100% - 96px) / 3);
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 1100px) {
  .welfare-list__item {
    width: calc(50% - 24px);
  }
}
@media screen and (max-width: 450px) {
  .welfare-list__item {
    width: 100%;
  }
}

.welfare-list__image {
  margin-bottom: 30px;
}
.welfare-list__image img {
  border-radius: 5px;
}

.welfare-list__hdg {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .welfare-list__hdg {
    font-size: min(4.5vw, 3.2rem);
  }
}
@media screen and (max-width: 450px) {
  .welfare-list__hdg {
    font-size: 3rem;
  }
}

.welfare-calendar {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.8;
}

/***************************

object/object/project/_requirements.scss

***************************/
.requirements {
  font-size: 2rem;
  font-weight: bold;
}

.requirements-dl {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #111111;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}

.requirements-dl__dt {
  background: #F4F6F9;
  font-weight: 900;
  border-bottom: 1px solid #E4E9EF;
  padding: 30px;
  width: 23.188%;
}
@media screen and (max-width: 768px) {
  .requirements-dl__dt {
    width: 100%;
    border: none;
    padding: 15px 30px;
  }
}
@media screen and (max-width: 450px) {
  .requirements-dl__dt {
    padding: 15px 20px;
  }
}

.requirements-dl__dd {
  border-bottom: 1px solid #E4E9EF;
  padding: 30px;
  width: 76.812%;
}
@media screen and (max-width: 768px) {
  .requirements-dl__dd {
    width: 100%;
    padding: 15px 30px 30px;
  }
}
@media screen and (max-width: 450px) {
  .requirements-dl__dd {
    padding: 15px 20px 30px;
  }
}

.requirements__hdg {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.4;
  margin: 100px 0 40px;
}

.requirements-flow {
  counter-reset: flow;
}

.requirements-flow__item {
  counter-increment: flow;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #E4E9EF;
  padding: 30px 0;
}
.requirements-flow__item:last-of-type {
  border-bottom: 1px solid #E4E9EF;
}

.requirements-flow__hdg {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.2;
  padding-left: 100px;
  position: relative;
  width: 30%;
}
.requirements-flow__hdg:before {
  content: counter(flow, decimal-leading-zero);
  background: #434C9E;
  width: 80px;
  text-align: center;
  line-height: 1.2;
  border-radius: 2px;
  color: #fff;
  display: inline-block;
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
  padding: 10px 0;
  position: absolute;
  left: 0;
  top: -2px;
}
@media screen and (max-width: 768px) {
  .requirements-flow__hdg {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 450px) {
  .requirements-flow__hdg {
    padding-left: 75px;
  }
  .requirements-flow__hdg:before {
    width: 60px;
  }
}

.requirements-flow__contents {
  width: 68%;
  padding-top: 1px;
  line-height: 1.5;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .requirements-flow__contents {
    width: 100%;
  }
}

.requirements-faq {
  counter-reset: faq;
}

.requirements-faq__dt {
  counter-increment: faq;
  font-size: 2rem;
  font-weight: bold;
  padding: 32px 60px 32px 85px;
  position: relative;
  line-height: 1.4;
  background: #F4F6F9;
  border-radius: 5px;
  transition: 0.3s;
}
.requirements-faq__dt:before {
  content: "Q" counter(faq) ".";
  font-family: "Outfit", sans-serif;
  color: #434C9E;
  position: absolute;
  top: 33px;
  left: 30px;
}
.requirements-faq__dt:nth-of-type(n+2) {
  margin-top: 10px;
}
.requirements-faq__dt.is-open {
  color: #fff;
  background: #434C9E;
}
.requirements-faq__dt.is-open:before {
  color: #fff;
}
.requirements-faq__dt.is-open .requirements-faq__dt__plus {
  background: #fff;
}
.requirements-faq__dt.is-open .requirements-faq__dt__plus:after {
  background: #fff;
  transform: rotate(0deg);
}
@media screen and (max-width: 450px) {
  .requirements-faq__dt {
    padding: 25px 45px 25px 70px;
  }
  .requirements-faq__dt:before {
    left: 20px;
    top: 25px;
  }
}

.requirements-faq__dt__plus {
  width: 16px;
  height: 2px;
  display: block;
  background: #111111;
  position: absolute;
  top: calc(50% - 1px);
  right: 35px;
  transition: 0.3s;
}
.requirements-faq__dt__plus:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #111111;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(90deg);
  transition: 0.3s;
}
@media screen and (max-width: 450px) {
  .requirements-faq__dt__plus {
    right: 20px;
  }
}

.requirements-faq__dd {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 30px 0px 35px 85px;
  position: relative;
  line-height: 1.4;
}
.requirements-faq__dd:before {
  content: "A.";
  font-family: "Outfit", sans-serif;
  color: #BABEC4;
  position: absolute;
  top: 31px;
  left: 30px;
}

.career-list__item {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
}
.career-list__item a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 40px;
  border: 1px solid #E4E9EF;
  border-radius: 5px;
  position: relative;
}
.career-list__item:nth-of-type(n+2) {
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  .career-list__item a {
    padding-right: 60px;
  }
  .career-list__item a:after {
    content: "";
    mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="9" height="10" viewBox="0 0 9 10"><path id="arrowRight" data-name="arrowRight" d="M0,0V2.515L4.471,5,0,7.484V10L9,5Z"/></svg>') center no-repeat;
    background: #111111;
    position: absolute;
    width: 9px;
    height: 10px;
    position: absolute;
    top: calc(50% - 5px);
    right: 40px;
  }
}
@media screen and (max-width: 450px) {
  .career-list__item a {
    padding: 20px;
  }
}

.career-list__image {
  width: 27.5%;
}
.career-list__image img {
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .career-list__image {
    width: 100%;
  }
}

.career-list__text {
  width: 68.5%;
}
@media screen and (max-width: 768px) {
  .career-list__text {
    width: 100%;
  }
}

.career-list__tag {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.career-list__tag__item {
  display: inline-block;
  font-size: 1.4rem;
  color: #434C9E;
  border: 1px solid #434C9E;
  border-radius: 2px;
  font-weight: bold;
  line-height: 1;
  padding: 8px 10px;
}

.career-list__hdg {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 15px;
}

.career-list__small {
  font-size: 1.4rem;
  margin-top: 15px;
}

.career-detail__dateWrap {
  font-size: 1.6rem;
  font-weight: 900;
  color: #9FA2A8;
  margin-bottom: 20px;
}

.career-detail__date {
  font-size: 2rem;
  font-family: "Archivo", sans-serif;
}

.career-detail__hdg {
  font-size: 3.6rem;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 60px;
}

.career-detail__image {
  margin-bottom: 80px;
}
.career-detail__image img {
  border-radius: 5px;
}

.career-detail__box {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.8;
}
.career-detail__box + .career-detail__box {
  border-top: 1px solid #E4E9EF;
  padding-top: 60px;
  margin-top: 60px;
}
.career-detail__box iframe {
  width: 100% !important;
  height: 590px;
}

.career-detail__box__hdg {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
}

.career-detail__btnWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 90px;
}
.career-detail__btnWrap a {
  width: calc(50% - 15px);
}
@media screen and (max-width: 768px) {
  .career-detail__btnWrap a {
    width: 100%;
  }
}

/***************************

object/object/project/_news.scss

***************************/
.news-detail__date {
  font-size: 2rem;
  color: #9FA2A8;
  font-weight: 900;
  font-family: "Archivo", sans-serif;
}

.news-detail__hdg {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.4;
  border-bottom: 1px solid #E4E9EF;
  padding-bottom: 55px;
  margin-bottom: 100px;
}
@media screen and (max-width: 450px) {
  .news-detail__hdg {
    font-size: 2.8rem;
  }
}

.news-detail__contents {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.8;
  border-bottom: 1px solid #E4E9EF;
  padding-bottom: 55px;
  margin-bottom: 100px;
}
.news-detail__contents a {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.4;
  padding: 20px 100px 20px 0;
  position: relative;
}
.news-detail__contents a:before {
  content: "";
  width: 80px;
  height: 40px;
  display: block;
  border-radius: 5px;
  background: url(../img/common/arrow_right.svg) no-repeat center;
  background-color: #111;
  position: absolute;
  right: 0;
  top: calc(50% - 20px);
}

/***************************

object/object/project/_contact.scss

***************************/
.contact {
  font-size: 2rem;
  line-height: 1.8;
  font-weight: bold;
}

.contact__hdg {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.4;
  border-top: 1px solid #E4E9EF;
  padding: 60px 0 0;
  margin-bottom: 40px;
}
.contact__hdg:nth-child(n+2) {
  margin-top: 90px;
}
@media screen and (max-width: 450px) {
  .contact__hdg {
    font-size: 3rem;
  }
}

.contact__box {
  background: #F4F6F9;
  border-radius: 5px;
  padding: 30px 40px;
}
@media screen and (max-width: 450px) {
  .contact__box {
    padding: 30px 20px;
  }
}

.contact__box__hdg {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  border-bottom: 1px solid #E4E9EF;
  line-height: 1.6;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.contact__box__contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 30px 80px;
}

.contact__telWrap {
  text-align: center;
  line-height: 1.2;
}

.contact__tel {
  font-family: "Archivo", sans-serif;
  font-size: min(8.4vw, 4.8rem);
  font-weight: 900;
}

.contact__tel__hdg {
  font-size: min(2.8vw, 1.6rem);
}

.contact__telTime {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 600;
}

.contact__mail {
  font-family: "Archivo", sans-serif;
  font-size: min(2.8vw, 1.6rem);
  font-weight: 900;
  line-height: 1.2;
}
.contact__mail:not(:hover) .contact__mail__underline {
  text-decoration: underline;
}

.contact__mail__underline {
  font-size: min(5.6vw, 3.2rem);
  margin-left: 5px;
}

/***************************

object/object/project/_entry.scss

***************************/
.entry-box {
  padding-top: 80px;
  margin-top: 80px;
  border-top: 1px solid #E4E9EF;
}
@media screen and (min-width: 769px) {
  .entry-box {
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }
}

@media screen and (min-width: 769px) {
  .entry-box__progressWrap {
    flex: 0 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .entry-box__progressWrap {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 769px) {
  .entry-box__formWrap {
    max-width: 1000px;
    flex: 0 1 1000px;
  }
}

.entry-progress {
  counter-reset: progress;
}
@media screen and (min-width: 769px) {
  .entry-progress {
    position: sticky;
    top: 120px;
  }
}
@media screen and (max-width: 768px) {
  .entry-progress {
    display: flex;
    justify-content: center;
    gap: 30px;
  }
}

.entry-progress__item {
  counter-increment: progress;
  font-size: 2rem;
  font-weight: 900;
  position: relative;
  line-height: 1.6;
}
.entry-progress__item:before {
  content: counter(progress, decimal-leading-zero);
  width: 80px;
  line-height: 40px;
  border: 2px;
  display: inline-block;
  font-family: "Outfit", sans-serif;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  background: #EBEEF3;
  color: #B4B7CF;
  border-radius: 2px;
  margin-right: 25px;
  position: relative;
  z-index: 2;
}
.entry-progress__item.is-active:before {
  background: #434C9E;
  color: #fff;
}
.entry-progress__item:nth-of-type(n+2):after {
  content: "";
  width: 1px;
  height: 30px;
  background: #E4E9EF;
  position: absolute;
  top: -30px;
  left: 40px;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .entry-progress__item:nth-of-type(n+2) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .entry-progress__item {
    text-align: center;
  }
  .entry-progress__item:before {
    display: block;
    margin: 0 auto 10px;
  }
  .entry-progress__item:nth-of-type(n+2):after {
    width: 30px;
    height: 1px;
    top: 20px;
    left: -30px;
  }
}

.tab__menu-item {
  cursor: pointer;
}

.tab__panel-box:not(.is-show) {
  display: none;
}

.entry-tab {
  display: flex;
  justify-content: space-between;
}

.entry-tab__item {
  width: calc(50% - 5px);
  background: #fff;
  border: 1px solid #DFE2E8;
  border-radius: 5px;
  padding: 17px 17px 17px 64px;
  position: relative;
  font-size: 1.6rem;
  font-weight: 600;
}
.entry-tab__item:before {
  content: "";
  border: 1px solid #666;
  border-radius: 50%;
  width: 30px;
  aspect-ratio: 1/1;
  position: absolute;
  left: 20px;
  top: calc(50% - 16px);
}
.entry-tab__item.is-active:after {
  content: "";
  width: 18px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #111111;
  position: absolute;
  left: 27px;
  top: calc(50% - 9px);
}

.entry-form__dt {
  margin: 40px 0 25px;
  font-size: 2rem;
  font-weight: 900;
  position: relative;
  padding-left: 70px;
  line-height: 1.4;
}

.entry-form__req,
.entry-form__opt {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  width: 50px;
  display: inline-block;
  border-radius: 3px;
  line-height: 30px;
  text-align: center;
  position: absolute;
  top: -2px;
  left: 0;
}

.entry-form__req {
  background: #FF1B01;
}

.entry-form__opt {
  background: #C1C6CE;
}

.entry-form__dd select,
.entry-form__dd input[type=text],
.entry-form__dd textarea {
  border: 1px solid #E4E9EF;
  border-radius: 5px;
  background: #F4F6F9;
  width: 100%;
  display: block;
  padding: 25px;
  font-size: 1.6rem;
  line-height: 1.6;
}
.entry-form__dd input[type=file]::file-selector-button {
  border: 1px solid #8F8F9D;
  border-radius: 3px;
  background: #E9E9ED;
  padding: 2px 8px 5px;
}
@media screen and (max-width: 450px) {
  .entry-form__dd select,
  .entry-form__dd input[type=text],
  .entry-form__dd textarea {
    padding: 15px;
  }
}

.entry-form__dd__note {
  color: #9FA2A8;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.6;
  margin-top: 10px;
}

.entry-form__dd__file {
  border: 1px solid #E4E9EF;
  border-radius: 5px;
  background: #F4F6F9;
  width: 100%;
  display: block;
  padding: 25px;
  font-size: 1.6rem;
  line-height: 1.6;
}
.entry-form__dd__file + .entry-form__dd__file {
  margin-top: 10px;
}
@media screen and (max-width: 450px) {
  .entry-form__dd__file {
    padding: 15px;
  }
}

.entry-privacy {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  margin-top: 80px;
}

.entry-sendBtn {
  display: flex;
  align-items: center;
  border: none;
  background: #434C9E;
  width: 100%;
  min-height: 113px;
  position: relative;
  padding: 10px 130px 10px 35px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 60px;
}
.entry-sendBtn:after {
  content: "";
  width: 80px;
  height: 40px;
  border-radius: 5px;
  display: inline-block;
  background-image: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="9" height="10" viewBox="0 0 9 10" fill="%23434C9E"><path id="arrowRight" data-name="arrowRight" d="M0,0V2.515L4.471,5,0,7.484V10L9,5Z"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  position: absolute;
  top: calc(50% - 20px);
  right: 35px;
}
.entry-sendBtn input {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
}
.entry-privacy:not(:has(input[type=checkbox]:checked)) + .entry-sendBtn {
  background: #DADEE3;
  cursor: auto;
}
.entry-privacy:not(:has(input[type=checkbox]:checked)) + .entry-sendBtn:after {
  background-image: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="9" height="10" viewBox="0 0 9 10" fill="%23DADEE3"><path id="arrowRight" data-name="arrowRight" d="M0,0V2.515L4.471,5,0,7.484V10L9,5Z"/></svg>');
}
.entry-privacy:not(:has(input[type=checkbox]:checked)) + .entry-sendBtn input {
  pointer-events: none;
}
@media screen and (max-width: 450px) {
  .entry-sendBtn {
    padding: 10px 130px 10px 20px;
    min-height: 90px;
  }
  .entry-sendBtn:after {
    right: 20px;
  }
}

.wpcf7-list-item {
  padding: 5px 0;
  display: block;
  margin-left: 0 !important;
}

.wpcf7-list-item input[type=checkbox] {
  display: none;
}

.wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  padding: 0 0 0 50px;
  cursor: pointer;
  margin-right: 30px;
  display: inline-block;
}

.wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label::after,
.wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  transition: all 0.3s;
}
.wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label::after {
  left: 0;
  top: 0px;
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid #666;
  border-radius: 3px;
}
.wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label::before {
  left: 11px;
  top: 7px;
  width: 6px;
  height: 9px;
  border-bottom: 4px solid #E6E6E6;
  border-right: 4px solid #E6E6E6;
  transform: rotate(45deg);
  z-index: 1;
}

.wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  border-color: #111111;
}

.entry-thanks {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.8;
}

.entry-thanks__hdg {
  font-size: 3.6rem;
  font-weight: 900;
  margin-bottom: 50px;
  line-height: 1.4;
}
@media screen and (max-width: 450px) {
  .entry-thanks__hdg {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}

/***************************

object/utility/display.scss

***************************/
.relative {
  position: relative;
}

.inline {
  display: inline;
}

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

.block {
  display: block;
}

.none {
  display: none;
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-row {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-row-rev {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col;
  flex-direction: col;
}

.flex-col-rev {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col-reverse;
  flex-direction: col-reverse;
}

.flex-nowrap {
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.flex-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.flex-item0 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

@media screen and (min-width: 451px) {
  .sp-450 {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
/***************************

object/utility/_background.scss

***************************/
/***************************

object/utility/_link.scss

***************************/
.link--under-line {
  text-decoration: underline;
}

.link--under-line:hover {
  text-decoration: none;
}

.link--external:after {
  content: "";
  width: 9px;
  height: 9px;
  display: inline-block;
  background: #111;
  transition: 0.3s;
  mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="9" height="9" viewBox="0 0 9 9"><path id="external" data-name="external" d="M0,0V1.913H5.734L0,7.647,1.353,9,7.087,3.266V9H9V0Z"/></svg>') center/contain no-repeat;
  margin-left: 15px;
}

/***************************

object/utility/_text.scss

***************************/
.fv {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}

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

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

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

@media screen and (min-width: 451px) {
  .t-center_pc {
    text-align: center;
  }
  .t-left_pc {
    text-align: left;
  }
  .t-right_pc {
    text-align: right;
  }
}
.vat {
  vertical-align: top;
}

.vam {
  vertical-align: middle;
}

.vab {
  vertical-align: bottom;
}

.fs-10 {
  font-size: 10px;
}

.fs-11 {
  font-size: 11px;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.fs-16 {
  font-size: 16px;
}

.fs-17 {
  font-size: 17px;
}

.fs-18 {
  font-size: 18px;
}

.fs-19 {
  font-size: 19px;
}

.fs-20 {
  font-size: 20px;
}

.fs-21 {
  font-size: 21px;
}

.fs-22 {
  font-size: 22px;
}

.fs-23 {
  font-size: 23px;
}

.fs-24 {
  font-size: 24px;
}

.fs-25 {
  font-size: 25px;
}

.fs-26 {
  font-size: 26px;
}

.fs-27 {
  font-size: 27px;
}

.fs-28 {
  font-size: 28px;
}

.fs-29 {
  font-size: 29px;
}

.fs-30 {
  font-size: 30px;
}

.fs-31 {
  font-size: 31px;
}

.fs-32 {
  font-size: 32px;
}

.fs-33 {
  font-size: 33px;
}

.fs-34 {
  font-size: 34px;
}

.fs-35 {
  font-size: 35px;
}

.fs-36 {
  font-size: 36px;
}

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

.f-normal {
  font-weight: normal;
}

.indent--1 {
  text-indent: -1em;
  padding-left: 1em;
}

.indent--2 {
  text-indent: -2em;
  padding-left: 2em;
}

.indent--3 {
  text-indent: -3em;
  padding-left: 3em;
}

.indent--4 {
  text-indent: -4em;
  padding-left: 4em;
}

.indent--5 {
  text-indent: -5em;
  padding-left: 5em;
}

.fc--white {
  color: #fff;
}

.fc--black {
  color: #111111;
}

.fc--red {
  color: #FF1B01;
}

.txtdeco-none {
  text-decoration: none;
}

/***************************

object/utility/spases.scss

***************************/
.m-0 {
  margin: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb150 {
  margin-bottom: 150px;
}

.mb300 {
  margin-bottom: 10px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mr-0 {
  margin-right: 0px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.ml-0 {
  margin-left: 0px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pl-0 {
  padding-left: 0px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

/***************************

object/utility/_font.scss

***************************/
.fv {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}

.uppercase {
  text-transform: uppercase;
}

.letterspace01 {
  letter-spacing: 2px;
}

.letterspace02 {
  letter-spacing: 4px;
}

.letterspace03 {
  letter-spacing: 1px;
}

.lineheight01 {
  line-height: 1.3;
}

.outfit {
  font-family: "Outfit", sans-serif;
}

.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
}

.archivo {
  font-family: "Archivo", sans-serif;
}

.vertical {
  writing-mode: vertical-rl;
}/*# sourceMappingURL=style.css.map */