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

foundation/base.scss

***************************/
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,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: #fff;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "小塚ゴシック", "Noto Sans Japanese", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 2;
  width: 100%;
}

main {
  background: linear-gradient(to top, transparent 103px, #07203F 103px);
  position: relative;
  z-index: 5;
  overflow: hidden;
  padding-bottom: 103px;
}
main:after {
  content: "";
  width: 100%;
  height: 103px;
  background: url(../img/common/curtain.png) repeat-x center;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 769px) and (min-height: 650px) {
  main {
    margin-bottom: calc(100vh - 103px);
  }
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 1s;
  -moz-transition: 1s;
  -webkit-transition: 1s;
  -o-transition: 1s;
  -ms-transition: 1s;
}

a:hover {
  color: inherit;
  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;
}

.wrapper {
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 5%;
}

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

layout/_header.scss

***************************/
header [class^=container] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 769px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header__nav__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
/* 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);
}

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

@media screen and (min-width: 769px) {
  .gnav {
    display: block !important;
    height: inherit !important;
  }
}
@media screen and (max-width: 768px) {
  .gnav {
    position: absolute;
    left: 0;
    top: 65px;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #E8E8E8;
    z-index: 6;
    transition: 0.5s;
  }
  .header:has(input[name=toggle]:not(:checked)) .gnav {
    transform: translateX(100%);
  }
}
/***************************

layout/_footer.scss

***************************/
footer {
  margin-top: -103px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) and (min-height: 650px) {
  footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-top: 0;
  }
}
footer small {
  font-size: 1rem;
}

.footer__contact {
  background: url(../img/common/footer_bg.png) no-repeat top/cover;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 130px;
}
@media screen and (min-width: 769px) and (min-height: 650px) {
  .footer__contact {
    height: calc(100vh - 120px);
    padding-top: 100px;
  }
}

.footer__contact__large {
  font-size: min(6.8vw, 4.8rem);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer__bottom {
  background: #000;
  font-size: 1.4rem;
  font-weight: 500;
}

.footer__bottom__inner {
  max-width: 1440px;
  padding: 30px 15px;
  min-height: 120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px min(3vw, 45px);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    width: 100%;
  }
}

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

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: 20px 0 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.wp-pagenavi a, .wp-pagenavi span {
  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;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  line-height: 3.5;
}

.wp-pagenavi span.current {
  color: #fff;
  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/_breadcrumbs.scss

***************************/
.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 10px 0;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.breadcrumbs a {
  color: #9797A5;
  display: inline-block;
}
.breadcrumbs a:not(:hover) {
  text-decoration: underline;
}

.breadcrumbs__item {
  position: relative;
}
.breadcrumbs__item:not(:first-of-type):before {
  content: "-";
  display: inline-block;
  margin: 0 5px;
}
.breadcrumbs__item:last-of-type {
  pointer-events: none;
  text-decoration: none;
}

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

layout/_subpage.scss

***************************/
main.subPage {
  background-image: url(../img/common/curtain02.png), url(../img/common/subpage_bg.jpg), linear-gradient(to top, transparent 103px, #041020 103px);
  background-repeat: repeat-x, no-repeat, no-repeat;
  background-size: auto, 100% auto, auto;
  background-position: top, top, bottom;
  padding-bottom: 240px;
  min-height: calc(61vw + 103px);
}

.subPage-hdg {
  height: 324px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 60px 0;
  margin-bottom: 80px;
}
@media screen and (max-width: 450px) {
  .subPage-hdg {
    height: auto;
    padding-top: 120px;
  }
}

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

layout/_faq.scss

***************************/
.faq01__dl {
  border-bottom: 1px dotted #bbb;
  margin: 0;
  padding: 0 50px 0px 0;
  position: relative;
}

.faq01__dl:nth-of-type(1) {
  border-top: 1px dotted #bbb;
}

.faq01__dl:after,
.faq01__dl:before {
  content: "";
  width: 1px;
  height: 15px;
  border-bottom: 1px solid #BABABA;
  border-right: 1px solid #BABABA;
  position: absolute;
  top: calc(50% - 12px);
  right: 20px;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
}

.faq01__dl:before,
.faq01__dl.is-open:after {
  transform: rotate(90deg);
}

.faq01__dl__dt {
  position: relative;
  padding: 25px 0 25px 60px;
  font-size: 20px;
  font-weight: bold;
}

.faq01__dl__dt:before {
  content: "Q.";
  font-family: "Jost", sans-serif;
  color: #BD9F64;
  font-size: 24px;
  font-weight: 500;
  width: 48px;
  line-height: 48px;
  display: inline-block;
  text-align: center;
  position: absolute;
  left: 0;
  top: calc(50% - 26px);
}

.faq01__dl__dd {
  position: relative;
  padding: 10px 0 30px 60px;
  font-size: 16px;
}

.faq01__dl__dd:before {
  content: "A.";
  font-family: "Jost", sans-serif;
  color: #BABABA;
  font-size: 24px;
  font-weight: 500;
  width: 48px;
  line-height: 48px;
  display: inline-block;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
}

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

object/component/_heading.scss

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

object/component/_box.scss

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

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

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

object/component/_button.scss

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

object/component/_form.scss

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

object/object/project/_home.scss

***************************/
@keyframes fadeup {
  0% {
    opacity: 0;
    translate: 0 20px;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.top-mv {
  background-image: url(../img/common/curtain02.png), url(../img/top/main_bg.jpg);
  background-repeat: repeat-x, no-repeat;
  background-size: auto, 100% auto;
  background-position: top, top;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1101px) {
  .top-mv {
    aspect-ratio: 1500/1137;
  }
}

.top-mv__hdg {
  position: absolute;
  top: 7.3vw;
  left: 0;
  z-index: 5;
  width: 100%;
  text-align: center;
  opacity: 0;
  animation: fadeup 1s 0.5s both;
}

.top-mv__image01 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  animation: fadeup 1s 1.1s both;
}

.top-mv__image02 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  animation: fadeup 1s 1.3s both;
}

.top-mv__image03 {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 6;
  animation: fadeup 1s 0.9s both;
}
.top-mv__image03 img {
  width: 100%;
}

.top-mv__image04 {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 10;
  animation: fadein 1s 0.8s both;
}
.top-mv__image04 img {
  width: 100%;
}

.top-mv__image01 img {
  width: 30.4vw;
}

.top-mv__image02 img {
  width: 36.1vw;
}

@media screen and (min-width: 1101px) {
  .top-mv__hdg img {
    width: 58.3vw;
  }
}
@media screen and (max-width: 1100px) {
  .top-mv {
    aspect-ratio: 1500/1630;
  }
  .top-mv__hdg {
    top: 9.3vw;
    padding: 50px;
  }
  .top-mv__image01 {
    left: -10vw;
  }
  .top-mv__image01 img {
    width: 41vw;
  }
  .top-mv__image02 {
    right: -10vw;
  }
  .top-mv__image02 img {
    width: 48vw;
  }
}
.top-message {
  padding: 130px 0 0;
}
@media screen and (max-width: 450px) {
  .top-message {
    padding-top: 90px;
  }
}

.top-message__box__hdg {
  text-align: center;
  position: relative;
  top: max(-8.8333vw, -53px);
}
.top-message__box__hdg > img {
  position: relative;
  z-index: 3;
}

.top-message__box__hdg__en {
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  top: -46px;
}
@media screen and (max-width: 450px) {
  .top-message__box__hdg__en {
    top: -35px;
  }
}

.top-message__box {
  border-left: 4px solid #CE9F39;
  border-right: 4px solid #CE9F39;
  position: relative;
  padding: 0 20px 160px;
  font-size: 2.4rem;
  text-align: center;
  line-height: 2.4;
}
.top-message__box:before, .top-message__box:after {
  content: "";
  width: 4px;
  height: 70px;
  background: linear-gradient(#CE9F39, #07203F);
  position: absolute;
  bottom: 0;
}
.top-message__box:before {
  left: -4px;
}
.top-message__box:after {
  right: -4px;
}
.top-message__box > *:nth-child(2):before, .top-message__box > *:nth-child(2):after {
  content: "";
  width: calc(50% - 125px);
  height: 4px;
  background: #CE9F39;
  position: absolute;
  top: 0;
  z-index: 2;
}
.top-message__box > *:nth-child(2):before {
  left: 0;
}
.top-message__box > *:nth-child(2):after {
  right: 0;
}
@media screen and (max-width: 450px) {
  .top-message__box {
    font-size: 1.7rem;
    text-align: left;
  }
}

.top-message__linkWrap {
  background: url(../img/top/message_bottom_bg.jpg) no-repeat top 135px left 50%/100% auto;
  padding: 0 20px 100px;
  position: relative;
}
.top-message__linkWrap > * {
  position: relative;
  z-index: 2;
}
.top-message__linkWrap:after {
  content: "";
  width: 100%;
  height: 350px;
  background: linear-gradient(transparent, #6A7E86 45%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
@media screen and (max-width: 1500px) {
  .top-message__linkWrap {
    background-size: auto;
  }
}
@media screen and (max-width: 450px) {
  .top-message__linkWrap {
    background-position: top 95px left 50%;
    padding-bottom: 35px;
    background-size: 165% auto;
  }
}

.top-message__linkWrap__text {
  margin: 0 0 490px;
  font-size: 4rem;
  line-height: 1.8;
  height: max-content;
  text-align: center;
}
@media screen and (max-width: 450px) {
  .top-message__linkWrap__text {
    font-size: 2.8rem;
    margin-bottom: 150px;
  }
}

.top-message__linkWrap__text__inner {
  display: inline-block;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-align: left;
}

.top-message__link {
  display: block;
  max-width: max-content;
  margin: 0 auto;
}

.top-job {
  padding: 100px 0 0;
  background: #6A7E86;
}
.top-job .container {
  position: relative;
}

.top-job__deco01 {
  position: absolute;
  left: -100px;
  top: -265px;
  z-index: 1;
}
@media screen and (max-width: 450px) {
  .top-job__deco01 {
    width: 140px;
    left: -15px;
    top: -105px;
    display: none;
  }
}

.top-job__deco02 {
  position: absolute;
  top: -50px;
  left: 175px;
  z-index: 1;
}
@media screen and (max-width: 450px) {
  .top-job__deco02 {
    width: 97px;
    left: 0;
  }
}

.top-job__deco03 {
  position: absolute;
  top: -130px;
  right: 40px;
  z-index: 1;
}
@media screen and (max-width: 450px) {
  .top-job__deco03 {
    width: 165px;
    right: -25px;
  }
}

.top-job__deco04 {
  position: absolute;
  right: -80px;
  top: -100px;
  z-index: 1;
}
@media screen and (max-width: 450px) {
  .top-job__deco04 {
    width: 135px;
    right: -10px;
    top: -60px;
    display: none;
  }
}

.top-job__top {
  text-align: center;
  padding: 0 50px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 450px) {
  .top-job__top {
    padding: 0 25px;
  }
}

.top-job__listWrap {
  padding-bottom: 290px;
  background: #fff;
  border-radius: 48px 48px 0 0;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 450px) {
  .top-job__listWrap {
    border-radius: 20px 20px 0 0;
  }
}

.top-job__hdg {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 450px) {
  .top-job__hdg {
    margin-bottom: 35px;
    padding: 0 65px;
  }
}

.top-job__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .top-job__list {
    gap: 40px;
  }
}
@media screen and (max-width: 450px) {
  .top-job__list {
    gap: 15px;
  }
}

.top-job__item {
  width: calc((100% - 40px) / 2);
  max-width: 320px;
  position: relative;
}
.top-job__item:hover {
  z-index: 2;
}
.top-job__item:hover:nth-of-type(2), .top-job__item:hover:nth-of-type(3), .top-job__item:hover:nth-of-type(5) {
  transform: rotate(2deg);
}
.top-job__item:hover:nth-of-type(1), .top-job__item:hover:nth-of-type(4), .top-job__item:hover:nth-of-type(6) {
  transform: rotate(-2deg);
}
.top-job__item:hover .top-job__card {
  transform: rotateY(360deg) scale(1.125);
  opacity: 1;
  z-index: 2;
}
.top-job__item:hover .top-job__card-front {
  opacity: 0;
}
.top-job__item:not(:hover) .top-job__card-rev {
  opacity: 0;
}
.top-job__item:not(:hover) .top-job__card-btn {
  opacity: 0;
  transform: scale(0);
}
.top-job__item:nth-of-type(2), .top-job__item:nth-of-type(3), .top-job__item:nth-of-type(5) {
  transform: rotate(5deg);
}
.top-job__item:nth-of-type(1), .top-job__item:nth-of-type(4), .top-job__item:nth-of-type(6) {
  transform: rotate(-5deg);
}
@media screen and (min-width: 769px) {
  .top-job__item {
    width: calc((100% - 120px) / 3);
  }
  .top-job__item:nth-of-type(1) {
    order: 2;
  }
  .top-job__item:nth-of-type(2) {
    order: 1;
  }
  .top-job__item:nth-of-type(n+3) {
    order: 3;
  }
}
@media screen and (max-width: 450px) {
  .top-job__item {
    width: calc(50% - 10px);
  }
}

.top-job__card {
  display: block;
  position: relative;
  transition: 0.3s;
}
.top-job__card img {
  filter: drop-shadow(0px 5px 15px rgba(0, 0, 0, 0.2));
}

.top-job__card-front {
  position: absolute;
  top: 0;
  left: 0;
}

.top-job__card-btn {
  width: 126px;
  aspect-ratio: 1/1;
  background: #BA9130;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  padding-top: 89px;
  font-weight: 600;
  position: absolute;
  right: -17px;
  bottom: 70px;
  display: inline-block;
  transform: scale(1);
  transition: 0.3s;
}
.top-job__card-btn:before, .top-job__card-btn:after {
  content: "";
  background: #fff;
  position: absolute;
  width: 48px;
  height: 1px;
  left: calc(50% - 24px);
  top: 50%;
}
.top-job__card-btn:after {
  transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  .top-job__card-btn {
    width: 60px;
    padding-top: 33px;
    font-size: 1.3rem;
    right: -3px;
    bottom: 38px;
  }
  .top-job__card-btn:before, .top-job__card-btn:after {
    content: "";
    width: 18px;
    left: calc(50% - 9px);
    top: 40%;
  }
}
@media screen and (max-width: 450px) {
  .top-job__card-btn {
    width: 60px;
    padding-top: 33px;
    font-size: 1.3rem;
    right: -3px;
    bottom: 38px;
  }
  .top-job__card-btn:before, .top-job__card-btn:after {
    content: "";
    width: 18px;
    left: calc(50% - 9px);
    top: 40%;
  }
}

.top-job__modal {
  position: relative;
  padding: 0 100px;
  width: 98vw;
  max-width: 1400px;
}

.top-job__modal__prev,
.top-job__modal__next {
  position: absolute;
  top: calc(50% - 60px);
  width: 60px;
  height: 120px;
  display: block;
  color: transparent !important;
}

.top-job__modal__prev {
  left: 0;
  background: url(../img/top/job_modal_prev@2x.png) no-repeat center/contain;
}

.top-job__modal__next {
  right: 0;
  background: url(../img/top/job_modal_next@2x.png) no-repeat center/contain;
}

.top-job__modal-box {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  background: #fff;
  max-height: 100vh;
  overflow: scroll;
  -ms-overflow-style: none; /* IE, Edge */
  scrollbar-width: none; /* Firefox */
}

.top-job__modal-box::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.top-job__modal-box__image {
  width: 50%;
}

.top-job__modal-box__text {
  width: 50%;
  padding: 70px 20px;
  color: #212121;
  font-size: 1.8rem;
}

.top-job__modal-box__close {
  width: 142px;
  aspect-ratio: 1/1;
  background: #BA9130;
  color: #fff;
  border: none;
  border-radius: 50%;
  text-align: center;
  padding-top: 89px;
  font-weight: 600;
  position: absolute;
  left: calc(50% - 71px);
  bottom: -71px;
  display: inline-block;
  font-size: 2rem;
  font-family: inherit;
}
.top-job__modal-box__close:before, .top-job__modal-box__close:after {
  content: "";
  background: #fff;
  position: absolute;
  width: 56px;
  height: 1px;
  left: calc(50% - 28px);
  top: 50%;
  transform: rotate(45deg);
}
.top-job__modal-box__close:after {
  transform: rotate(-45deg);
}

.top-job__modal-box__text__hdg {
  background: url(../img/top/job_modal_hdg_bg@2x.png) no-repeat center/contain;
  text-align: center;
  color: #fff;
  font-size: min(1.4vw, 20px);
  font-weight: 600;
  max-width: 542px;
  aspect-ratio: 542/88;
  margin: 0 auto 10px;
  line-height: 1;
  padding-top: min(1.2vw, 17px);
}
.top-job__modal-box__text__hdg:not(:first-child) {
  margin-top: 50px;
}
.top-job__modal-box__text__hdg + p {
  max-width: 400px;
  margin: 0 auto;
}

@media screen and (max-width: 1100px) {
  .top-job__modal {
    max-width: 700px;
    padding: 0 50px;
  }
  .top-job__modal__prev,
  .top-job__modal__next {
    top: calc(50% - 40px);
    width: 40px;
    height: 80px;
  }
  .top-job__modal-box__image {
    width: 100%;
  }
  .top-job__modal-box__text {
    width: 100%;
    padding-bottom: 90px;
  }
  .top-job__modal-box__text__hdg {
    font-size: min(3.25vw, 20px);
    padding-top: min(2.76vw, 17px);
  }
  .top-job__modal-box__close {
    bottom: 5px;
    font-size: 13px;
    width: 70px;
    padding-top: 40px;
    left: calc(50% - 35px);
  }
  .top-job__modal-box__close:before, .top-job__modal-box__close:after {
    width: 24px;
    left: calc(50% - 12px);
    top: 43%;
  }
}
@media screen and (max-width: 450px) {
  .top-job__modal {
    padding: 0 10px;
  }
  .top-job__modal__prev,
  .top-job__modal__next {
    width: 25px;
  }
  .top-job__modal-box__text__hdg {
    font-size: min(3.1vw, 20px);
    padding-top: min(2.5vw, 17px);
  }
  .top-job__modal-box__text {
    font-size: 1.4rem;
  }
}
@keyframes keepoutSlide {
  0% {
    background-position: top 50% left 0;
  }
  100% {
    background-position: top 50% left 1499px;
  }
}
@keyframes keepoutSlideRev {
  0% {
    background-position: top 50% right 0;
  }
  100% {
    background-position: top 50% right 1499px;
  }
}
.top-keepout {
  position: absolute;
  top: -245px;
  z-index: 1;
  width: 100%;
}
.top-keepout:before, .top-keepout:after {
  content: "";
  width: calc(100% + 200px);
  height: 120px;
  background-image: url(../img/top/keep_out_text.png);
  background-repeat: repeat-x;
  background-position: top 50% left 0;
  background-size: 1499px 97px;
  background-color: #FFFF00;
  position: absolute;
  top: 246px;
  left: -100px;
}
.top-keepout:before {
  transform: rotate(-10deg);
  animation: keepoutSlideRev 30s both infinite linear;
  z-index: 2;
}
.top-keepout:after {
  transform: rotate(10deg);
  animation: keepoutSlide 30s both infinite linear;
  z-index: 1;
}
@media screen and (max-width: 690px) {
  .top-keepout:before, .top-keepout:after {
    height: 80px;
    top: 194px;
    background-size: 1000px 66px;
  }
}

.top-keepout__image {
  position: relative;
  z-index: 3;
  text-align: center;
  overflow: hidden;
  padding-right: 230px;
}
@media screen and (max-width: 690px) {
  .top-keepout__image {
    padding-right: 0;
    width: 300px;
    margin: 0 auto;
  }
}

.top-people {
  position: relative;
  padding-top: 100px;
  z-index: 5;
}
.top-people .container {
  max-width: 100%;
}
@media screen and (max-width: 690px) {
  .top-people {
    padding-top: 20px;
  }
}

.top-people__hdg {
  text-align: center;
  margin-bottom: max(-5.7vw, -60px);
}

.top-people__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 435px) {
  .top-people__list {
    gap: 30px;
  }
}

.top-people__list__item a {
  opacity: 1;
}
@media screen and (max-width: 435px) {
  .top-people__list__item {
    width: calc(50% - 15px);
  }
}

.top-people__list__item__img {
  margin-bottom: max(-9vw, -45px);
  max-width: 200px;
  aspect-ratio: 200/250;
  border-radius: 50%;
  overflow: hidden;
}
.top-people__list__item__img img {
  transition: 0.3s;
}
.top-people__list__item a:hover .top-people__list__item__img img {
  transform: scale(1.1);
}

.top-people__list__item__name {
  max-width: 200px;
  aspect-ratio: 200/54;
  margin: 0 auto;
  background: url(../img/top/people_name_flame@2x.png) no-repeat center/contain;
  text-align: center;
  font-size: min(5.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.4;
  padding-top: 7px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 435px) {
  .top-people__list__item__name {
    line-height: 1.2;
  }
}

.top-people__list__item__jp {
  text-align: center;
  font-size: min(3.4vw, 1.5rem);
  font-weight: bold;
  line-height: 1.5;
}

.top-data {
  padding: 80px 0 145px;
  background: linear-gradient(transparent, #041020);
  position: relative;
}

.top-data__hdg {
  text-align: center;
  position: relative;
  z-index: 5;
  margin-bottom: -55px;
}

.top-data__list {
  padding: 125px 20px 65px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #07203F;
  border-radius: 25px;
  gap: 85px 0;
}
.top-data__list:after {
  content: "";
  width: 18%;
}
@media screen and (max-width: 1100px) {
  .top-data__list:after {
    width: 50%;
    max-width: 400px;
  }
}

.top-data__list__item.is-item01, .top-data__list__item.is-item02 {
  width: 50%;
}
.top-data__list__item.is-item03, .top-data__list__item.is-item04, .top-data__list__item.is-item05 {
  width: 25%;
}
@media screen and (max-width: 1100px) {
  .top-data__list__item.is-item01 {
    width: 100%;
  }
  .top-data__list__item.is-item02 {
    width: 100%;
    margin-top: 30px;
  }
  .top-data__list__item.is-item03, .top-data__list__item.is-item04, .top-data__list__item.is-item05 {
    width: 50%;
    max-width: 400px;
  }
}
@media screen and (max-width: 599px) {
  .top-data__list__item.is-item05 {
    width: 100%;
    max-width: 400px;
  }
}

.top-data__list__item__hdg {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
  text-decoration: underline;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  text-decoration-thickness: 2px;
  text-underline-offset: 10px;
}

.top-data__list__item__num {
  font-size: 9.6rem;
  font-weight: 500;
  font-family: "Inter Tight", sans-serif;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .top-data__list__item__num {
    line-height: 1.2;
  }
}

.top-data__list__item__num__small {
  font-size: 4.4rem;
}

.top-data__list__item__num__year {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
  font-size: 3.8rem;
  font-weight: bold;
}

.top-data__deco {
  position: absolute;
  bottom: 0;
  right: calc(50% - 695px);
}
@media screen and (max-width: 1430px) {
  .top-data__deco {
    right: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-data__deco {
    width: 210px;
  }
}

.graph-round-wrap {
  width: 283px;
  aspect-ratio: 1/1;
  margin: 0 auto;
}

.graph-round-cont {
  width: 100%;
  height: 100%;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.graph-round-cont_inner {
  width: 56.5%;
  aspect-ratio: 1/1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background: #07203F;
  position: relative;
  z-index: 2;
  padding: 20px;
}

.graph-round-cont_inner img {
  width: auto;
}

.data-1,
.data-2,
.data-3,
.data-4,
.data-5 {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100%;
}

.graph-round-cont .data-num {
  position: absolute;
  border-bottom: 2px dotted #fff;
  padding-bottom: 5px;
  padding-left: 10px;
}
.graph-round-cont .data-num:before {
  content: "";
  width: 40px;
  border-bottom: 2px dotted #fff;
  position: absolute;
}
.graph-round-cont .data-num.is-leftSide {
  padding-left: 0;
  padding-right: 10px;
}
.top-data__list__item.is-item01 .graph-round-cont .data-num {
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.graph-round-cont .data-num .text {
  font-weight: bold;
  line-height: 1.8;
  font-size: 1.5rem;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
}

.graph-round-cont .data-num .number {
  font-family: "Inter Tight", sans-serif;
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 1;
}

.graph-round-cont .data-num .number:after {
  display: inline-block;
  content: "%";
}

.top-data__list__item.is-item03 .graph-round-wrap,
.top-data__list__item.is-item04 .graph-round-wrap {
  width: min(36.6vw, 220px);
}
.top-data__list__item.is-item03 .graph-round-cont_inner,
.top-data__list__item.is-item04 .graph-round-cont_inner {
  width: 80%;
}

.top-data__list__item.is-item01 .data-1 .data-num {
  top: max(-7.89vw, -45px);
  right: max(-0.3vw, -2px);
}
.top-data__list__item.is-item01 .data-1 .data-num:before {
  width: 30px;
  rotate: 120deg;
  left: -25px;
  bottom: -14px;
}

.top-data__list__item.is-item01 .data-2 .data-num {
  top: min(3.5vw, 20px);
  right: max(-18.4vw, -105px);
}
.top-data__list__item.is-item01 .data-2 .data-num:before {
  rotate: 120deg;
  left: -32px;
  bottom: -19px;
}

.top-data__list__item.is-item01 .data-3 .data-num {
  bottom: min(2.6vw, 15px);
  right: max(-12.2vw, -70px);
}
.top-data__list__item.is-item01 .data-3 .data-num:before {
  rotate: -120deg;
  left: -32px;
  bottom: 15px;
}

.top-data__list__item.is-item01 .data-4 .data-num {
  bottom: min(2.6vw, 15px);
  left: max(-13.1vw, -75px);
}
.top-data__list__item.is-item01 .data-4 .data-num:before {
  rotate: -60deg;
  right: -32px;
  bottom: 15px;
}

.top-data__list__item.is-item01 .data-5 .data-num {
  top: 0;
  left: max(-17.5vw, -100px);
}
.top-data__list__item.is-item01 .data-5 .data-num:before {
  rotate: 60deg;
  right: -32px;
  bottom: -19px;
}

.top-data__list__item.is-item02 .data-1 .data-num {
  top: max(-6.1vw, -35px);
  right: max(-11.4vw, -65px);
}
.top-data__list__item.is-item02 .data-1 .data-num:before {
  rotate: 120deg;
  left: -32px;
  bottom: -19px;
}

.top-data__list__item.is-item02 .data-2 .data-num {
  bottom: max(-1vw, -6px);
  right: max(-19.8vw, -113px);
}
.top-data__list__item.is-item02 .data-2 .data-num:before {
  width: 70px;
  rotate: -120deg;
  left: -54px;
  bottom: 28px;
}

.top-data__list__item.is-item02 .data-3 .data-num {
  top: min(17.5vw, 100px);
  left: max(-19.2vw, -110px);
}
.top-data__list__item.is-item02 .data-3 .data-num:before {
  width: 15px;
  right: -17px;
  bottom: -2px;
}

.top-data__list__item.is-item02 .data-4 .data-num {
  top: max(-8.7vw, -50px);
  left: max(-2.1vw, -12px);
  border: none;
  padding-bottom: 7px;
}
.top-data__list__item.is-item02 .data-4 .data-num:before {
  width: 30px;
  rotate: -120deg;
  right: 10px;
  bottom: -12px;
}
.top-data__list__item.is-item02 .data-4 .data-num:after {
  content: "";
  width: 80px;
  border-bottom: 2px dotted #fff;
  position: absolute;
  bottom: 0px;
  left: 0;
}

.graph-round-cont_inner_rate {
  font-family: "Inter Tight", sans-serif;
}

.graph-round-cont_inner:has(.graph-round-cont_inner_rate) {
  font-size: min(10.6vw, 6.4rem);
  line-height: 1;
}

.graph-round-cont_inner_rate_hdg {
  font-size: min(2.5vw, 1.5rem);
  display: block;
  padding-bottom: min(0.5vw, 3px);
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
  font-weight: bold;
}

@media screen and (max-width: 450px) {
  .graph-round-wrap {
    width: min(49.6vw, 283px);
  }
  .graph-round-cont .data-num .number {
    font-size: min(5.6vw, 3.2rem);
  }
  .top-data__list__item__hdg {
    font-size: min(4.2vw, 2.4rem);
  }
  .graph-round-cont .data-num .text {
    font-size: min(2.6vw, 1.5rem);
  }
  .top-data__list__item.is-item02 .data-4 .data-num:after {
    width: min(12.5vw, 80px);
  }
}
/***************************

object/object/project/_message.scss

***************************/
.subPage .top-message__box:before, .subPage .top-message__box:after {
  content: "";
  width: 4px;
  height: 350px;
  background: linear-gradient(#CE9F39, #041020 60%);
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 450px) {
  .subPage .top-message__box {
    padding-bottom: 90px;
  }
}

.message01 {
  margin-top: min(13.63vw, 120px);
}

.message01__boss {
  position: absolute;
  bottom: 0;
  left: -100px;
}
@media screen and (max-width: 1090px) {
  .message01__boss {
    left: -15px;
    width: 150px;
  }
}
@media screen and (max-width: 768px) {
  .message01__boss {
    display: none;
  }
}

.message02__box {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  background: #07203F;
  border-radius: 6px;
}

.message02__box__image {
  width: 45.727%;
}
.message02__box__image img {
  border-radius: 6px 0 0 6px;
}

.message02__box__text {
  width: 54.273%;
  flex: 1 0 auto;
  padding: 50px 20px;
  font-size: 1.6rem;
}

.message02__box__text__hdg {
  background: url(../img/message/job_modal_hdg_bg@2x.png) no-repeat center/contain;
  text-align: center;
  font-size: min(1.73vw, 2rem);
  font-weight: 600;
  color: #212121;
  max-width: 541px;
  aspect-ratio: 541/87;
  margin: 0 auto 10px;
  line-height: 1;
  padding-top: min(1.47vw, 17px);
}
.message02__box__text__hdg:not(:first-child) {
  margin-top: 50px;
}
.message02__box__text__hdg + p {
  max-width: 480px;
  margin: 0 auto;
}

@media screen and (max-width: 1100px) {
  .message02__box {
    max-width: 502px;
    margin: 0 auto;
  }
  .message02__box__image {
    width: 100%;
  }
  .message02__box__image img {
    border-radius: 6px 6px 0 0;
  }
  .message02__box__text {
    width: 100%;
  }
  .message02__box__text__hdg {
    font-size: min(3.636363vw, 2rem);
    padding-top: min(2.36363vw, 13px);
  }
}
@media screen and (max-width: 450px) {
  .message02__box__text__hdg {
    font-size: min(3.9vw, 20px);
    padding-top: min(2.7vw, 17px);
  }
  .message02__box__text {
    font-size: 1.4rem;
    padding: 35px 15px;
  }
}
.message03 {
  padding-top: 80px;
}

.message03__box {
  background: #07203F;
  border-radius: 6px;
  padding: 45px 20px;
}

.message03__hdg {
  width: max-content;
  max-width: 100%;
  margin: 0 auto 35px;
  line-height: 1.6;
  background: url(../img/message/star@2x.png) no-repeat left/23px 22px, url(../img/message/star@2x.png) no-repeat right/23px 22px;
  padding: 0 30px;
  font-size: 3.6rem;
  font-weight: 600;
  text-align: center;
}

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

.message03__list__item {
  padding-left: 40px;
  background: url(../img/message/check@2x.png) no-repeat top 3px left 0/24px 23px;
  line-height: 1.2;
  font-size: 2.8rem;
  font-weight: 600;
}
.message03__list__item:nth-of-type(n+2) {
  margin-top: 20px;
}

.message03__list__item__kana {
  font-size: 2.1rem;
}

.message03__list__item__note {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  display: inline-block;
}

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

object/object/project/_recruitment.scss

***************************/
.recruitment01__box {
  background: #07203F;
  border-radius: 6px;
  padding: 45px 20px;
}

.recruitment01__dl {
  max-width: 1007px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.recruitment01__dt {
  width: 25.3%;
  padding-right: 20px;
  font-weight: 600;
}

.recruitment01__dd {
  width: 74.7%;
}

.recruitment01__dd__hdg {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 5px 10px;
}

.recruitment01__dd__hdg__box {
  border: 1px solid #fff;
  line-height: 1.4;
  padding: 5px 10px 3px;
  width: max-content;
  max-width: 100%;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 10px;
  display: block;
}

.recruitment01__dd__addr {
  border: 1px solid #BA9130;
  padding: 10px 20px;
}

@media screen and (min-width: 451px) {
  .recruitment01__dt:nth-of-type(n+2),
  .recruitment01__dd:nth-of-type(n+2) {
    border-top: 1px solid #fff;
    margin-top: 35px;
    padding-top: 35px;
  }
}
@media screen and (max-width: 450px) {
  .recruitment01__dt {
    width: 100%;
    font-size: 1.8rem;
  }
  .recruitment01__dt:nth-of-type(n+2) {
    border-top: 1px solid #fff;
    margin-top: 35px;
    padding-top: 35px;
  }
  .recruitment01__dd {
    width: 100%;
    border: none;
    margin-top: 20px;
  }
}
/***************************

object/object/project/_people.scss

***************************/
.people-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 65px 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 435px) {
  .people-list {
    gap: 30px 0;
  }
}

.people-list__item {
  width: calc((100% - 60px) / 3);
  max-width: 292px;
}
.people-list__item a {
  opacity: 1;
}
@media screen and (max-width: 660px) {
  .people-list__item {
    width: calc(50% - 15px);
  }
}

.people-list__item__img {
  margin-bottom: max(-9vw, -45px);
  aspect-ratio: 292/364;
  border-radius: 50%;
  overflow: hidden;
}
.people-list__item__img img {
  transition: 0.3s;
}
.people-list__item a:hover .people-list__item__img img {
  transform: scale(1.1);
}

.people-list__item__name {
  max-width: 291px;
  aspect-ratio: 291/78;
  margin: 0 auto;
  background: url(../img/people/name_flame@2x.png) no-repeat center/contain;
  text-align: center;
  font-size: min(3.469vw, 3.4rem);
  font-weight: 600;
  line-height: 1.4;
  padding-top: min(1.02vw, 10px);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 660px) {
  .people-list__item__name {
    font-size: min(5.1515vw, 3.4rem);
    padding-top: min(1.51515vw, 10px);
  }
}

.people-list__item__jp {
  text-align: center;
  font-size: min(1.836vw, 1.8rem);
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 660px) {
  .people-list__item__jp {
    font-size: min(2.7272vw, 1.8rem);
  }
}

.peopleDetail__main {
  position: relative;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
}

.peopleDetail__main__image {
  position: relative;
}
.peopleDetail__main__image:after {
  content: "";
  width: 100%;
  height: 50px;
  background: linear-gradient(transparent, #041020);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.peopleDetail__main__text {
  position: absolute;
  bottom: 100px;
  left: 40px;
  z-index: 2;
  background: linear-gradient(rgba(53, 58, 79, 0.96), rgba(21, 23, 32, 0.96));
  outline: 1px solid #BA9130;
  outline-offset: -10px;
  padding: 25px 30px;
}
@media screen and (min-width: 769px) {
  .peopleDetail__main__text {
    min-width: 360px;
  }
}

.peopleDetail__hdg {
  font-size: 4.4rem;
  line-height: 1.3;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.peopleDetail__hdg__job {
  display: block;
  font-size: 1.5rem;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
  font-weight: bold;
}

.peopleDetail__hdgSub {
  max-width: 100%;
  font-size: 1.5rem;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 3px;
}

.peopleDetail__hdgSub__inner {
  display: inline-block;
}

.peopleDetail__main__text__worksHdg {
  padding-left: 20px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #B58E31;
  line-height: 1.4;
  margin-bottom: 5px;
  background: url(../img/people/works_hdg_deco@2x.png) no-repeat top 3px left 0/14px 15px;
}

.peopleDetail__main__text__works {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .peopleDetail__main img {
    object-fit: cover;
    object-position: top;
    height: 100%;
    aspect-ratio: 750/730;
  }
  .peopleDetail__main__text {
    position: relative;
    left: 20px;
    bottom: 40px;
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 450px) {
  .peopleDetail__hdg {
    font-size: 4rem;
  }
  .peopleDetail__hdgSub {
    font-size: 1.8rem;
  }
}
.peopleDetail-interviewHdg {
  text-align: center;
  margin: 75px 0 10px;
}
@media screen and (max-width: 768px) {
  .peopleDetail-interviewHdg {
    margin-top: 30px;
  }
}

.peopleDetail-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 0;
}
.peopleDetail-box + .peopleDetail-box {
  margin-top: 100px;
}

.peopleDetail-box__text {
  width: 100%;
  padding-top: 10px;
}

.peopleDetail-box__image {
  width: 100%;
  text-align: center;
}

.peopleDetail-faq__dt {
  font-size: 2.4rem;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  line-height: 1.4;
  margin-bottom: 25px;
}
.peopleDetail-faq__dt img {
  flex: 0 0 auto;
  margin-top: 5px;
}
.peopleDetail-faq__dt:nth-of-type(n+2) {
  margin-top: 60px;
}

@media screen and (min-width: 769px) {
  .peopleDetail-box.is-rev {
    flex-direction: row-reverse;
  }
  .peopleDetail-box.is-rev .peopleDetail-box__text {
    width: 55.4%;
    max-width: 567px;
  }
  .peopleDetail-box.is-rev .peopleDetail-box__image {
    width: 41.7%;
  }
  .peopleDetail-box__text {
    width: 55%;
    max-width: 560px;
  }
  .peopleDetail-box__image {
    width: 42.1%;
  }
}
.peopleDetail-oneSentence {
  border: 4px solid #CE9F39;
  padding-top: 37px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 120px;
}

.peopleDetail-oneSentence__text {
  padding: 0 60px 37px;
  width: 71.7%;
}

.peopleDetail-oneSentence__image {
  width: 28.3%;
  position: relative;
}
@media screen and (min-width: 769px) {
  .peopleDetail-oneSentence__image img {
    position: absolute;
    left: 0;
    bottom: 0;
  }
}

.peopleDetail-oneSentence__hdg {
  font-size: 2.2rem;
  width: max-content;
  max-width: 100%;
  font-size: 600;
  background: #fff;
  color: #212121;
  line-height: 1.4;
  padding: 7px 20px 6px;
  border-radius: 999px;
  margin-bottom: 25px;
  position: relative;
}
.peopleDetail-oneSentence__hdg:after {
  content: "";
  width: 11px;
  height: 11px;
  background: url(../img/people/balloon@2x.png) no-repeat center/contain;
  position: absolute;
  bottom: -10px;
  left: 30px;
}

@media screen and (max-width: 768px) {
  .peopleDetail-oneSentence {
    margin-top: 60px;
  }
  .peopleDetail-oneSentence__text {
    padding: 0 60px 37px;
    width: 100%;
  }
  .peopleDetail-oneSentence__image {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 450px) {
  .peopleDetail-oneSentence__text {
    padding: 0 20px 37px;
  }
}
/***************************

object/object/project/_entry.scss

***************************/
.entry01-tel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
  background: #07203F;
  border-radius: 9px;
  min-height: 167px;
  padding: 20px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
  line-height: 1.4;
}

.entry01-tel__num {
  color: #B89130;
  font-size: 400;
  font-family: "Inter Tight", sans-serif;
  font-size: 4rem;
}

.entry01-tel__num__small {
  font-size: 2.8rem;
  margin-right: 5px;
}

.entry01__hdg {
  width: max-content;
  max-width: 100%;
  margin: 0 auto 35px;
  line-height: 1.6;
  background: url(../img/message/star@2x.png) no-repeat left/23px 22px, url(../img/message/star@2x.png) no-repeat right/23px 22px;
  padding: 0 30px;
  font-size: 3.6rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 450px) {
  .entry01__hdg {
    font-size: 3rem;
  }
}

.entry01__dl {
  max-width: 1007px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.entry01__dt {
  width: 29.791%;
  padding-right: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 25px;
  align-self: flex-start;
}

.entry01__dd {
  width: 70.209%;
}

@media screen and (min-width: 769px) {
  .entry01__dt {
    padding-top: 10px;
  }
  .entry01__dt:nth-of-type(n+2) {
    border-top: 1px solid #fff;
    margin-top: 35px;
    padding-top: 49px;
  }
  .entry01__dd:nth-of-type(n+2) {
    border-top: 1px solid #fff;
    margin-top: 35px;
    padding-top: 35px;
  }
}
@media screen and (max-width: 768px) {
  .entry01__dt {
    width: 100%;
    font-size: 1.8rem;
  }
  .entry01__dt:nth-of-type(n+2) {
    border-top: 1px solid #fff;
    margin-top: 35px;
    padding-top: 35px;
  }
  .entry01__dd {
    width: 100%;
    border: none;
    margin-top: 20px;
  }
}
.entry01__dt__req,
.entry01__dt__opt {
  border-radius: 3px;
  line-height: 1;
  height: 30px;
  width: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
}

.entry01__dt__req {
  background: #BA9130;
}

.entry01__dt__opt {
  border: 1px solid #fff;
}

.entry01__dt__note {
  width: 100%;
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
}

input[type=text],
textarea {
  border: 1px solid #ddd;
  border-radius: 2px;
  background: #F8F8F8;
  padding: 20px;
  width: 100%;
}
input[type=text]::placeholder,
textarea::placeholder {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: #aaa;
}

textarea {
  height: 360px;
}

.entry01-btnSend {
  border: none;
  background: transparent;
}

.wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 0 35px;
}

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

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

.wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  padding: 0 0 0 40px;
  cursor: pointer;
  line-height: 1.6;
  font-size: 1.6rem;
  display: inline-block;
}

.wpcf7-list-item .wpcf7-list-item-label::after,
.wpcf7-list-item .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
}

.wpcf7-list-item:has(input[type=radio]) .wpcf7-list-item-label::after {
  left: 0;
  top: -2px;
  width: 26px;
  height: 26px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
}

.wpcf7-list-item:has(input[type=radio]) .wpcf7-list-item-label::before {
  left: 6px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: #BA9130;
  opacity: 0;
  z-index: 1;
  border-radius: 50%;
}

.wpcf7-list-item:has(input[type=checkbox]) .wpcf7-list-item-label::after {
  left: 0;
  top: -1px;
  width: 26px;
  height: 26px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 2px;
}

.wpcf7-list-item:has(input[type=checkbox]) .wpcf7-list-item-label::before {
  left: 8px;
  top: 4px;
  width: 8px;
  height: 12px;
  border-bottom: 4px solid #BA9130;
  border-right: 4px solid #BA9130;
  opacity: 0;
  transform: rotate(45deg);
  z-index: 1;
}

.wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::before,
.wpcf7-list-item [type=checkbox]:checked + .wpcf7-list-item-label::before {
  opacity: 1;
}

.entryThanks-hdg {
  font-size: 2.4rem;
  line-height: 1.4;
  margin-bottom: 30px;
  font-weight: 500;
}

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

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;
  }
}
@media screen and (max-width: 450px) {
  .pc-450 {
    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: url(../img/common/ico_external.png);
  font-size: 0;
  margin-left: 5px;
}

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

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: #212121;
}

.fc--red {
  color: red;
}

.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;
}

.inter-tight {
  font-family: "Inter Tight", sans-serif;
}/*# sourceMappingURL=style.css.map */