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

foundation/base.scss

***************************/
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@4.1.1/dist/css/yakuhanjp.css");
@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-word;
  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: 1.8rem;
  color: #111111;
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 2;
  width: 100%;
}
@media screen and (max-width: 450px) {
  body {
    font-size: 1.6rem;
  }
}

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

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 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: #fff;
  width: calc(100% - 80px);
  position: fixed;
  top: 20px;
  left: 40px;
  border-radius: 5px;
  padding: 15px 40px 15px 25px;
  transition: 0.5s;
  z-index: 999;
}
header .bogo-language-switcher {
  display: flex;
  gap: 5px;
}
header .bogo-language-switcher li {
  order: 2;
}
header .bogo-language-switcher li.en a:before {
  content: "EN";
}
header .bogo-language-switcher li.ja {
  order: 1;
}
header .bogo-language-switcher li.ja a:before {
  content: "JP";
}
header .bogoflags {
  display: none;
}
header .bogo-language-name {
  font-size: 0;
}
header .bogo-language-name a {
  display: block;
  width: 26px;
  aspect-ratio: 1/1;
  border: 1px solid #fff;
  text-align: center;
  border-radius: 50%;
}
header .bogo-language-name a:before {
  content: "";
  color: #9DA2A7;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 24px;
  font-family: "Inter Tight", sans-serif;
}
header .bogo-language-name a.current {
  background: #26C2E8;
}
header .bogo-language-name a.current:before {
  color: #fff;
}

.header__logo {
  font-size: 0;
}

@media screen and (min-width: 769px) {
  .header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
  .header__nav__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}
@media screen and (max-width: 768px) {
  header {
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    padding: 0 0 0 25px;
    height: 80px;
  }
  header .bogo-language-switcher {
    margin-left: auto;
  }
  .header__nav {
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
  }
  .header__nav__item {
    color: #fff;
  }
  .header__nav__item:nth-of-type(n+2) {
    margin-top: 10px;
  }
}
@media screen and (max-width: 450px) {
  header {
    height: 60px;
    padding-left: 15px;
  }
  .header__logo {
    width: 92px;
  }
}
/* Hamburger menu */
.gnav {
  line-height: 1.6;
  margin: 0;
}

/* toggle button */
.header__toggleBtn {
  cursor: pointer;
  display: inline-block;
  background: #26C2E8;
  aspect-ratio: 64/60;
  border: none;
  outline: none;
  position: relative;
  padding: 21px 0 13px;
  text-align: center;
  z-index: 9999;
  height: 100%;
}
.header__toggleBtn:after {
  content: "MENU";
  font-family: "Inter Tight", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.header__toggleBtn__bar {
  position: relative;
  z-index: 9999;
  margin-top: 8px;
  margin-bottom: 3px;
  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: #fff;
  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: #fff;
  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: flex !important;
    justify-content: center;
    align-items: center;
    flex: 1 1 auto;
    height: inherit !important;
  }
  .header__toggleBtn {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .gnav {
    position: absolute;
    left: 0;
    top: 80px;
    width: 100%;
    height: 100vh;
    background: rgba(38, 194, 232, 0.95);
    border-bottom: 1px solid #E8E8E8;
    z-index: 6;
    opacity: 1;
    visibility: visible;
    transition: 0.5s;
    padding: 40px 25px 0;
  }
  .header:has(input[name=toggle]:not(:checked)) .gnav {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
  }
}
@media screen and (max-width: 450px) {
  .gnav {
    top: 60px;
  }
  .header__toggleBtn {
    padding-top: 16px;
  }
  .header__toggleBtn::after {
    font-size: 0.8rem;
  }
  .header__toggleBtn__bar {
    width: 18px;
    margin-bottom: -6px;
  }
  .header__toggleBtn__bar:before, .header__toggleBtn__bar:after {
    width: 18px;
  }
  .header__toggleBtn__bar:before {
    top: -6px;
  }
  .header__toggleBtn__bar:after {
    top: 6px;
  }
  input[name=toggle]:checked + .header__toggleBtn__bar:before {
    transform: translateY(6px) rotate(45deg);
  }
  input[name=toggle]:checked + .header__toggleBtn__bar:after {
    transform: translateY(-6px) rotate(-45deg);
  }
}
/***************************

layout/_footer.scss

***************************/
footer {
  background: #F2F4F6;
}

.footer-contact {
  padding: 90px 0 100px;
  color: #fff;
  position: relative;
  top: -100px;
  z-index: 1;
}
.footer-contact > * {
  position: relative;
  z-index: 2;
}
.footer-contact:after {
  content: "";
  width: calc(100% - 60px);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #26C2E8;
  border-radius: 15px 0 0 15px;
}
@media screen and (max-width: 1705px) {
  .footer-contact:after {
    width: calc(100% - 10px);
  }
}
.footer-contact .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}

.footer-contact-hdg {
  font-size: 4.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 30px;
}

.footer-contact__btnWrap {
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .footer-contact {
    padding: max(40px, 10.6666vw) 15px;
    top: -55px;
  }
  .footer-contact-hdg {
    font-size: max(3.2rem, 8.53333vw);
    margin-bottom: 20px;
  }
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
  margin-bottom: 30px;
}

@media screen and (max-width: 450px) {
  .footer-nav {
    gap: 15px 30px;
  }
  .footer-nav__item {
    width: calc(50% - 15px);
    max-width: 130px;
  }
}
.footer-sns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
}

.footer-sns__item a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-sns__item i {
  width: 40px;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

@media screen and (max-width: 450px) {
  .footer-sns__item {
    font-size: 1.2rem;
  }
}
.footer-infoBox {
  margin-top: 80px;
  padding: 35px 0 90px;
  border-top: 1px solid #E0E3E6;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 30px 40px;
}

.footer-addr {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-right: 40px;
}

.footer-addr-hdg {
  font-weight: 800;
  margin-bottom: 5px;
}

.footer-link {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 10px;
}

.footer-link__item-ttl {
  font-size: 1.4rem;
  font-weight: 600;
}
.footer-link__item-ttl:after {
  content: "";
  width: 16px;
  height: 8px;
  display: inline-block;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="11.5" height="9.5" viewBox="0 0 11.5 9.5"><g id="external"><path id="tyohokei66" class="st0" d="M3,0h8.5v6.5H3V0ZM10,1.5h-5.5v3.5h5.5V1.5Z"/>    <path id="path413" class="st0" d="M7.8,9.5H0V3.8h1.5v4.2h6.2v1.5Z"/></g></svg>');
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  background-color: #9DA2A7;
  transition: 0.5s;
  margin-left: auto;
  flex: 0 0 16px;
}

@media screen and (max-width: 768px) {
  .footer-logo {
    width: max(240px, 64vw);
    max-width: 540px;
  }
  .footer-addr {
    font-size: 1.4rem;
    margin-right: 0;
  }
  .footer-link__item-ttl {
    font-size: 1.3rem;
  }
}
.footer-bottom {
  background: #fff;
  padding: 40px 0;
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.footer-bottom small {
  font-family: "Inter Tight", sans-serif;
  font-size: 1.2rem;
  color: #9DA2A7;
  margin-left: auto;
}

.footer-bottom__link {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 600;
}

.footer-bottom__link__itme:not(:last-of-type) {
  padding-right: 20px;
  border-right: 1px solid #9DA2A7;
}

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

layout/_slick.scss

***************************/
/* Slick Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

.slick-slide img {
  width: 100%;
  height: auto;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./img/common/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick/slick.eot");
  src: url("./fonts/slick/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick/slick.woff") format("woff"), url("./fonts/slick/slick.ttf") format("truetype"), url("./fonts/slick/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 1;
  display: block;
  width: 16px;
  height: 31px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-top: -15px;
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  opacity: 0.65;
  color: transparent;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 0.25;
}

.slick-prev {
  left: 30px;
  background: url(img/common/btn-prev.png) no-repeat center center;
}

.slick-next {
  right: 30px;
  background: url(img/common/btn-next.png) no-repeat center center;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: 10px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #AAA;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: #000;
  opacity: 0.75;
}

.slick-archive {
  padding-top: 10px;
  margin: 0 auto;
  width: calc(100% - 50px);
}

.slick-archive__item {
  padding: 5px;
}

.slick-archive__item a {
  display: block;
  max-width: 350px;
  margin: auto;
  color: #231815;
  text-decoration: none;
  position: relative;
}

.slick-archive__item a:hover {
  opacity: 0.65;
}

.slick-archive__date {
  margin-top: 5px;
  display: block;
}

.slick-archive__title {
  display: block;
  font-weight: bold;
}

.slick-archive__label {
  background-color: #464a4c;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 0.2em 2em;
}

@media screen and (max-width: 560px) {
  .slick-archive__date {
    font-size: 1rem;
  }
  .slick-archive__title {
    font-size: 1.2rem;
  }
  .slick-archive__label {
    font-size: 1rem;
  }
}
/***************************

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 25px;
  font-size: 12px;
  margin: 0 auto 100px;
  max-width: 1330px;
}
.breadcrumbs a {
  color: #26C2E8;
  display: block;
}
.breadcrumbs a:not(:hover) {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    margin-bottom: 55px;
  }
}

.breadcrumbs__item {
  position: relative;
}
.breadcrumbs__item:not(:first-of-type) {
  padding-left: 20px;
}
.breadcrumbs__item:not(:first-of-type):after {
  content: "";
  width: 4px;
  height: 4px;
  border-right: 1px solid #9DA2A7;
  border-bottom: 1px solid #9DA2A7;
  position: absolute;
  left: 8px;
  top: calc(50% - 2px);
  transform: rotate(-45deg);
}
.breadcrumbs__item:last-of-type {
  pointer-events: none;
}
.breadcrumbs__item:last-of-type a {
  color: #9DA2A7;
  text-decoration: none;
}

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

layout/_page-title.scss

***************************/
.subpage {
  padding-bottom: 100px;
}
@media screen and (max-width: 450px) {
  .subpage {
    padding-bottom: 70px;
  }
}

.subpage-title {
  height: 500px;
  background: url(../img/common/page_title_crane@2x.png) no-repeat right/contain;
  background-color: #26C2E8;
  padding-top: 120px;
  color: #fff;
  margin-bottom: 120px;
}
.subpage-title .container_l {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.subpage-title__hdgWrap {
  line-height: 1.2;
}

.subpage-title__hdg {
  font-size: 60px;
  font-weight: 800;
  padding: 12px 0 18px 45px;
  position: relative;
}
.subpage-title__hdg:before {
  content: "";
  width: 5px;
  height: 100%;
  background: #F7CA1C;
  border-radius: 20px 20px 0 0;
  position: absolute;
  left: 0;
  top: 0;
}
.subpage-title__hdg + p {
  padding: 10px 0 10px 45px;
  position: relative;
}
.subpage-title__hdg + p:before {
  content: "";
  width: 5px;
  height: 100%;
  background: #fff;
  border-radius: 0 0 20px 20px;
  position: absolute;
  left: 0;
  top: 0;
}

.subpage-title__image img {
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .subpage-title {
    height: 380px;
  }
  .subpage-title__hdg {
    font-size: 50px;
  }
  .subpage-title__image {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .subpage-title {
    height: 280px;
    margin-bottom: 60px;
    padding-top: 85px;
  }
  .subpage-title__hdg {
    font-size: 40px;
    padding-left: 25px;
  }
  .subpage-title__hdg + p {
    padding-left: 25px;
  }
}
.page-404 {
  padding: 150px 0 200px;
}

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

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

***************************/
.hdg-type01 {
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1.2;
  color: #26C2E8;
  margin-bottom: 45px;
}
@media screen and (max-width: 450px) {
  .hdg-type01 {
    font-size: 3.6rem;
    margin-bottom: 25px;
  }
}

.hdg-type02 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 40px;
}
@media screen and (max-width: 450px) {
  .hdg-type02 {
    margin-bottom: 25px;
  }
}

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

object/component/_list.scss

***************************/
.ol-type01 {
  counter-reset: ol-type01;
}

.ol-type01__item {
  counter-increment: ol-type01;
  font-size: 1.8rem;
  position: relative;
  padding: 15px 0 21px 55px;
  line-height: 1.6;
  border-bottom: 1px solid #E0E3E6;
  font-weight: 800;
}
.ol-type01__item:before {
  content: counter(ol-type01);
  width: 36px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 2px solid #26C2E8;
  border-radius: 9999px;
  color: #26C2E8;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 12px;
}

.dl-type01 {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.6;
}

.dl-type01__dt {
  background: #F2F4F6;
  border: 1px solid #E0E3E6;
  width: 22%;
  font-weight: 800;
  padding: 20px;
}
.dl-type01__dt:nth-of-type(n+2) {
  border-top: none;
}

.dl-type01__dd {
  border: 1px solid #E0E3E6;
  width: 78%;
  padding: 20px;
}

@media screen and (min-width: 451px) {
  .dl-type01__dt:first-of-type {
    border-top-left-radius: 5px;
  }
  .dl-type01__dt:last-of-type {
    border-bottom-left-radius: 5px;
  }
  .dl-type01__dd {
    border-left: none;
  }
  .dl-type01__dd:nth-of-type(n+2) {
    border-top: none;
  }
  .dl-type01__dd:first-of-type {
    border-top-right-radius: 5px;
  }
  .dl-type01__dd:last-of-type {
    border-bottom-right-radius: 5px;
  }
}
@media screen and (max-width: 450px) {
  .dl-type01__dt {
    width: 100%;
  }
  .dl-type01__dt:first-of-type {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
  .dl-type01__dd {
    width: 100%;
    border-top: none;
  }
  .dl-type01__dd:last-of-type {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
}
/***************************

object/component/_box.scss

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

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

.box-type01 {
  background: #F2F4F6;
  border-radius: 5px;
  padding: 40px 45px;
}
@media screen and (max-width: 450px) {
  .box-type01 {
    padding: 20px;
  }
}

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

object/component/_button.scss

***************************/
.btn-type01 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #D2D6D9;
  border-radius: 5px;
  padding: 15px 30px 15px 25px;
  font-size: 1.8rem;
  font-weight: 800;
  width: fit-content;
  max-width: 100%;
  background-color: #fff;
}
.btn-type01:hover {
  background-color: #26C2E8;
  color: #fff;
  border-color: #26C2E8;
  opacity: 1;
}
.btn-type01:hover:after {
  background-color: #fff !important;
}
.btn-type01:after {
  content: "";
  width: 16px;
  height: 8px;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="7.999" viewBox="0 0 16 7.999"><path id="arrow_right_2x" data-name="arrow_right@2x" d="M11.2,0V3.389H0V4.61H11.2V8L16,4Z" transform="translate(0 0)"/></svg>');
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  background-color: #111;
  transition: 0.5s;
  margin-left: auto;
  flex: 0 0 16px;
}
.btn-type01.--external:after {
  height: 10px;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="11.5" height="9.5" viewBox="0 0 11.5 9.5"><g id="external"><path id="tyohokei66" class="st0" d="M3,0h8.5v6.5H3V0ZM10,1.5h-5.5v3.5h5.5V1.5Z"/><path id="path413" class="st0" d="M7.8,9.5H0V3.8h1.5v4.2h6.2v1.5Z"/></g></svg>');
  background-color: #9DA2A7;
}
.btn-type01.--download:after {
  height: 12px;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10.907" height="12.528" viewBox="0 0 10.907 12.528"><g id="download" transform="translate(-310.224 -30.274)"><line id="arrow2" y1="9.226" transform="translate(315.631 30.274)" fill="black" stroke="black" stroke-linejoin="round" stroke-width="1.5"/><path id="arrow1" d="M19.19,24.96,23.1,28.64l3.909-3.68" transform="translate(292.533 10.7)" fill="none" stroke="black" stroke-width="1.5"/><path id="bar" d="M0,0H10.907" transform="translate(310.224 42.052)" fill="black" stroke="black" stroke-width="1.5"/></g></svg>');
  background-color: #9DA2A7;
}
@media screen and (min-width: 451px) {
  .btn-type01 {
    min-width: 350px;
  }
}
@media screen and (max-width: 450px) {
  .btn-type01 {
    width: 100%;
  }
}

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 15px 30px 15px 25px;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  width: 350px;
  max-width: 100%;
  background-color: #26C2E8;
}
.footer-contact-btn:hover {
  background-color: #fff;
  color: #26C2E8;
  opacity: 1;
}
.footer-contact-btn:hover:after {
  background-color: #26C2E8 !important;
}
.footer-contact-btn:after {
  content: "";
  width: 16px;
  height: 8px;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="7.999" viewBox="0 0 16 7.999"><path id="arrow_right_2x" data-name="arrow_right@2x" d="M11.2,0V3.389H0V4.61H11.2V8L16,4Z" transform="translate(0 0)"/></svg>');
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  background-color: #fff;
  transition: 0.5s;
  margin-left: auto;
  flex: 0 0 16px;
}

.link-external {
  color: #26C2E8;
}
.link-external:not(:hover) {
  text-decoration: underline;
}
.link-external:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 10px;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="11.5" height="9.5" viewBox="0 0 11.5 9.5"><g id="external"><path id="tyohokei66" class="st0" d="M3,0h8.5v6.5H3V0ZM10,1.5h-5.5v3.5h5.5V1.5Z"/><path id="path413" class="st0" d="M7.8,9.5H0V3.8h1.5v4.2h6.2v1.5Z"/></g></svg>');
  background-color: #9DA2A7;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  margin-left: 5px;
}

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

object/component/_form.scss

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

object/object/project/_home.scss

***************************/
.top-mv {
  position: relative;
  overflow-x: hidden;
}

.top-mv__text {
  background: #26C2E8;
  color: #fff;
}
.top-mv__text:before {
  content: "";
  width: min(49vw, 798px);
  aspect-ratio: 798/790;
  background: url(../img/top/mv_crane.png) no-repeat center/contain;
  position: absolute;
  left: 23px;
  bottom: 0;
  z-index: 1;
}
.top-mv__text > * {
  position: relative;
  z-index: 2;
}

.top-mv-hdg {
  font-size: min(3.75vw, 6rem);
  font-weight: 800;
  line-height: 1.2;
}

@media screen and (min-width: 769px) {
  .top-mv {
    display: flex;
    flex-direction: row-reverse;
  }
  .top-mv__image {
    width: 72.9%;
  }
  .top-mv__text {
    width: 27.1%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 0 min(1.875vw, 30px) 65px;
  }
  .top-mv-hdg {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .top-mv__text {
    padding: max(23px, 6.1333vw) 25px;
  }
  .top-mv__text:before {
    width: max(67.466vw, 253px);
    aspect-ratio: 253/250;
    background: url(../img/top/mv_crane_sp.png) no-repeat center/contain;
    left: auto;
    right: min(-10.666vw, -40px);
  }
  .top-mv-hdg {
    font-size: max(3.2rem, 8.5333vw);
  }
  .top-mv-hope {
    width: max(195px, 52vw);
  }
}
.top-about {
  padding: 150px 0;
}

.top-about-hdg {
  font-size: 4.8rem;
  font-weight: 900;
  color: #26C2E8;
  line-height: 1.2;
  margin-bottom: 30px;
}

.top-about-btnWrap {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
}

@media screen and (min-width: 769px) {
  .top-about-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .top-about-box__image {
    width: 31.3%;
    padding-top: 45px;
  }
  .top-about-box__text {
    width: 58.6%;
  }
}
@media screen and (max-width: 768px) {
  .top-about {
    padding: max(53px, 14.1333vw) 0 max(53px, 16vw);
  }
  .top-about-box__image img {
    width: max(280px, 74.6vw);
    max-width: 400px;
  }
  .top-about-box__text {
    margin-top: 30px;
  }
  .top-about-hdg {
    font-size: max(3.2rem, 8.53333vw);
    margin-bottom: 20px;
  }
}
.top-contentsLink {
  padding: 100px 0 85px;
  margin-bottom: 120px;
  position: relative;
}
.top-contentsLink > * {
  position: relative;
  z-index: 2;
}
.top-contentsLink:after {
  content: "";
  width: calc(100% - 60px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #F2F4F6;
  border-radius: 0 15px 15px 0;
}

.top-contentsLink-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.top-contentsLink-list__item {
  width: calc(50% - 40px);
}

.top-contentsLink-list__item__image img {
  border-radius: 15px 15px 0 0;
}

.top-contentsLink-list__item__text {
  background: #fff;
  padding: 40px 60px 60px;
  border-radius: 0 0 15px 15px;
}

.top-contentsLink-list__item__hdg {
  font-size: 4.8rem;
  font-weight: 900;
  color: #26C2E8;
  line-height: 1.2;
  margin-bottom: 25px;
}

@media screen and (max-width: 1705px) {
  .top-contentsLink:after {
    width: calc(100% - 10px);
  }
}
@media screen and (max-width: 768px) {
  .top-contentsLink {
    padding: max(50px, 13.33333vw) 0;
    margin-bottom: max(80px, 21.33333vw);
  }
  .top-contentsLink-list__item {
    width: 100%;
  }
  .top-contentsLink-list__item__hdg {
    font-size: max(3.2rem, 8.53333vw);
    margin-bottom: 20px;
  }
  .top-contentsLink-list__item__text {
    padding: max(25px, 6.6666vw) max(30px, 8vw) max(30px, 8vw) max(30px, 8vw);
  }
}
@media screen and (max-width: 450px) {
  .top-contentsLink-list__item__image img {
    border-radius: 5px 5px 0 0;
  }
  .top-contentsLink-list__item__text {
    border-radius: 0 0 5px 5px;
  }
}
.top-slide__swiper {
  overflow-x: hidden;
}
.top-slide__swiper .swiper-wrapper {
  transition-timing-function: linear;
}

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

object/object/project/_about.scss

***************************/
.about02,
.about03,
.about04 {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .about02,
  .about03,
  .about04 {
    padding-top: 60px;
  }
}

.about-officer {
  display: flex;
  flex-wrap: wrap;
  gap: 3px 15px;
}

.about-officer__dt {
  width: 95px;
}

.about-officer__dd {
  width: calc(100% - 110px);
}

.history-hdg {
  font-family: "Inter Tight", sans-serif;
  font-size: 4rem;
  font-style: italic;
  font-weight: 400;
  color: #26C2E8;
}
.history-dl + .history-hdg {
  margin-top: 25px;
}

.history-dl {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #E0E3E6;
  padding-bottom: 20px;
}

.history-dl__dt {
  width: 280px;
}

.history-dl__dd {
  width: calc(100% - 280px);
  position: relative;
  padding-left: 20px;
}
.history-dl__dd:before {
  content: "";
  width: 8px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #26C2E8;
  position: absolute;
  top: 15px;
  left: 0;
}

@media screen and (max-width: 768px) {
  .history-dl__dt {
    width: 100%;
  }
  .history-dl__dt:nth-of-type(n+2) {
    margin-top: 10px;
  }
  .history-dl__dd {
    width: 100%;
  }
}
/***************************

object/object/project/_message.scss

***************************/
.message-box {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 0;
}

.message-box__image {
  width: 28.8%;
  max-width: 368px;
}
.message-box__image img {
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .message-box__image {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
}

.message-box__text {
  width: 65.3%;
}
@media screen and (max-width: 768px) {
  .message-box__text {
    width: 100%;
  }
}

.message-box__hdg {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 30px;
}

.message-box__job {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 20px 0 5px;
  text-align: right;
}

.message-box__name {
  font-size: 2.8rem;
  font-weight: 800;
  text-align: right;
}

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

object/object/project/_support.scss

***************************/
.support-table {
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  width: 100%;
  line-height: 1.4;
}
.support-table th, .support-table td {
  border-top: 1px solid #E0E3E6;
  border-left: 1px solid #E0E3E6;
  padding: 20px 25px;
}
.support-table th:last-child, .support-table td:last-child {
  border-right: 1px solid #E0E3E6;
}
.support-table thead th {
  background: #F2F4F6;
  width: 342px;
}
.support-table thead th:first-child {
  border-top-left-radius: 5px;
  width: 938px;
}
.support-table thead th:last-child {
  border-top-right-radius: 5px;
}
.support-table tbody th {
  text-align: left;
}
.support-table tbody td {
  text-align: center;
}
.support-table tbody td:nth-of-type(1) {
  text-align: right;
}
.support-table tfoot th, .support-table tfoot td {
  background: #F4FCFE;
  border-bottom: 1px solid #E0E3E6;
}
.support-table tfoot th:first-child, .support-table tfoot td:first-child {
  border-bottom-left-radius: 5px;
  text-align: left;
}
.support-table tfoot th:last-child, .support-table tfoot td:last-child {
  border-bottom-right-radius: 5px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .support-table {
    width: 620px;
  }
  .support-table th, .support-table td {
    padding: 15px 20px;
    font-size: 1.6rem;
  }
  .support-table thead th {
    width: 175px;
  }
  .support-table thead th:first-child {
    width: 430px;
  }
}

@media screen and (max-width: 768px) {
  .support-tableWrap {
    overflow-x: scroll;
  }
}

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

object/object/project/_contact.scss

***************************/
.contact__hdg {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact__mail {
  display: inline-block;
  font-weight: bold;
  font-size: 2.4rem;
}
@media screen and (max-width: 450px) {
  .contact__mail {
    font-size: 1.8rem;
  }
}

.commercial-at:before {
  content: "@";
}

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

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

.flex-gap-20 {
  gap: 20px;
}

.flex-gap-30 {
  gap: 30px;
}

@media screen and (min-width: 451px) {
  .sp-550 {
    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;
}

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

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

.subEng {
  text-transform: uppercase;
  font-family: "Lexend Zetta", sans-serif;
}

.garamond {
  font-family: "EB Garamond", serif;
}

.lexend {
  font-family: "Lexend Zetta", sans-serif;
}

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