<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

html {
  width: 100%;
  height: 100%;
}

html.is-windows.is-fixed {
  /* scrollbar track 表示 */
  overflow-y: scroll !important;
}

body {
  opacity: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.9;
  width: 100%;
  margin: 0;
  /* フォントサイズ自動調整解除 */
  -webkit-text-size-adjust: 100%;
  /* 半角英数連続文字改行（幅指定） */
  word-wrap: break-word;
  overflow-wrap: break-word;
  /* 自動カーニング */
  /* font-feature-settings: "palt"; */
  letter-spacing: 0.02em;
}

body.is-show {
  opacity: 1;
  transition: all 1s ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  outline: 0px !important;
  backface-visibility: hidden;
  /* タップ時のハイライト非表示 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*:last-child {
  margin-bottom: 0 !important;
}

img {
  vertical-align: bottom;
  width: 100%;
}

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

dl,
dd {
  margin: 0;
}

input,
textarea {
  /* フォーカス時の画面ズーム防止 */
  font-size: 16px;
}

table {
  border-collapse: collapse;
  border: none;
  border-spacing: 0;
}

sup {
  font-size: 50%;
  vertical-align: super;
  position: relative;
  top: -0.1em;
}

sub {
  font-size: 50%;
  vertical-align: sub;
  position: relative;
  bottom: -0.1em;
}

/* font
------------------------------*/
.en {
  font-family: 'Be Vietnam Pro', sans-serif;
}

/* display
------------------------------*/
.pc {
  display: inline;
}

@media all and (max-width: 1023px) {
  .pc {
    display: none;
  }
}

.tb {
  display: none;
}

@media all and (max-width: 1023px) {
  .tb {
    display: inline;
  }
}

@media all and (max-width: 576px) {
  .tb {
    display: none;
  }
}

.sp {
  display: none;
}

@media all and (max-width: 576px) {
  .sp {
    display: inline;
  }
}

.pc.tb {
  display: inline;
}

@media all and (max-width: 576px) {
  .pc.tb {
    display: none;
  }
}

.tb.sp {
  display: none;
}

@media all and (max-width: 1023px) {
  .tb.sp {
    display: inline;
  }
}

/* btn
------------------------------*/
.c-btn {
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  color: inherit;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #1f2426;
}

.c-btn:hover {
  color: #fff;
  background-color: #1f2426;
}

/* delay scroll animation
------------------------------*/
.fadeInUp {
  opacity: 0;
}

.fadeInUp.is-show {
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 120px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* wrap
------------------------------*/
.l-wrap {
  /* overflow: hidden; */ /* position: sticky;のため */
  position: relative;
  width: 100%;
}

/* main
------------------------------*/
.l-main {
  display: block;
  width: 100%;
  position: relative;
}

/* header
------------------------------*/
.l-header {
  width: 100%;
}

.p-header {
  width: 100%;
  height: 118px;
  padding: 25px 38px 0 38px;
  display: flex;
}

@media all and (max-width: 830px) {
  .p-header {
    height: 62px;
    padding: 0 20px;
    align-items: center;
  }
}

.p-header__logo {
  width: 204px;
  margin: 0 auto 0 0;
}
.p-header__logo img {
  vertical-align: middle;
}

@media all and (max-width: 830px) {
  .p-header__logo {
    width: 268px;
  }
}

ul.p-header__list {
  margin: 0;
  padding: 5px 0 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 1;
}

@media all and (max-width: 830px) {
  ul.p-header__list {
    display: none;
  }
}

ul.p-header__list li {
  height: 20px;
}

ul.p-header__list li:nth-of-type(1) {
  width: 60px;
  margin-right: 30px;
}

ul.p-header__list li:nth-of-type(2) {
  width: 120px;
  margin-right: 25px;
}

ul.p-header__list li:nth-of-type(3) {
  width: 60px;
  margin-right: 15px;
}

ul.p-header__list li:nth-of-type(4) {
  width: 72px;
  margin-right: 0;
}

ul.p-header__list li:nth-of-type(5) {
  width: 72px;
  margin-right: 0;
}

ul.p-header__list li:nth-of-type(6) {
  width: 86px;
  margin-right: 0;
}

ul.p-header__list li a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

ul.p-header__list li a span.en {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  white-space: nowrap;
  transition: all 0.3s ease-out;
}

ul.p-header__list li a:hover span.en {
  transform: translate3d(-50%, calc(-50% + 20px), 0);
}

ul.p-header__list li a span.ja {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, calc(-50% - 20px), 0);
  white-space: nowrap;
  transition: all 0.3s ease-out;
}

ul.p-header__list li a:hover span.ja {
  transform: translate3d(-50%, calc(-50% + 0px), 0);
}

.p-header__btn {
  display: none;
}

@media all and (max-width: 830px) {
  .p-header__btn {
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 22px;
    position: relative;
    z-index: 9999;
  }
}

.p-header__btn-inner {
  width: 100%;
  height: 100%;
}

.p-header__btn span {
  display: inline-block;
  position: absolute;
  left: 0px;
  top: 8px;
  height: 3px;
  background-color: #1a1a1a;
  width: 100%;
  border-radius: 3px;
  transition: all 0.3s ease-out;
}

.p-header__btn span:nth-of-type(1) {
  transform: translateY(-8px);
}

.p-header__btn span:nth-of-type(2) {
  opacity: 1;
}

.p-header__btn span:nth-of-type(3) {
  transform: translateY(8px);
}

.p-header__btn.is-show span:nth-of-type(1) {
  transform: rotate(42.5deg);
  background: #fff;
}

.p-header__btn.is-show span:nth-of-type(2) {
  opacity: 0;
  background: #fff;
}

.p-header__btn.is-show span:nth-of-type(3) {
  transform: rotate(-42.5deg);
  background: #fff;
}

/* nav
------------------------------*/
.p-nav {
  display: none;
  position: fixed;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  z-index: 9998;
  padding: 5px;
  background: #fff;
}

.p-nav__inner {
  background: #fa4b4b;
  width: 100%;
  height: 100%;
  padding: 60px 20px 0px;
  border-radius: 30px;

  display: flex;
  align-items: center;
}

.p-nav__content {
  width: 100%;
  max-height: 100%;
  padding-bottom: 60px;
  overflow: auto;
  /* スクロール非表示（Firefox） */
  scrollbar-width: none;
}

.p-nav__content::-webkit-scrollbar {
  /* スクロール非表示（Chrome, Edge, Safari） */
  display: none;
}

ul.p-nav__content-list {
}

ul.p-nav__content-list li {
  text-align: center;
  line-height: 1;
  margin-bottom: 40px;
}

ul.p-nav__content-list li a {
  font-family: 'Be Vietnam Pro', sans-serif;
  color: #fff;
  font-size: 23px;
  text-decoration: none;
}

ul.p-nav__content-list li a span {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 400;
}

/* footer
------------------------------*/
.l-footer {
  width: 100%;
  position: relative;
}
.p-footer {
  width: 100%;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.4;
}

.p-footer__top {
  width: 100%;
  padding: 60px 20px 45px;
}

@media all and (max-width: 576px) {
  .p-footer__top {
    padding-top: 40px;
    padding-bottom: 30px;
  }
}

ul.p-footer__top-list {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

ul.p-footer__top-list li {
  width: 80px;
  margin: 0 7px;
}

ul.p-footer__top-list li a {
  transition: all 0.3s ease-out;
}

ul.p-footer__top-list li a:hover {
  opacity: 0.8;
}

.p-footer__top-txt {
  font-size: 15px;
  text-align: center;
}

.p-footer__link {
  width: 100%;
  background-color: #f4a001;
  padding: 50px 90px;
  position: relative;
}

@media all and (max-width: 576px) {
  .p-footer__link {
    padding: 50px 20px 110px;
  }
}

.p-pagetop {
  position: absolute;
  top: 50%;
  right: 26px;
  width: 52px;
  transform: translate3d(0, -50%, 0);
  cursor: pointer;
  transition: all 0.3s ease-out;
}

@media all and (max-width: 576px) {
  .p-pagetop {
    top: auto;
    right: auto;
    bottom: 30px;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
  }
}

.p-pagetop:hover {
  opacity: 0.8;
}

ul.p-footer__list {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -6px;
}

ul.p-footer__list li {
  padding: 0 0.7em;
  position: relative;
  margin-top: 6px;
}

ul.p-footer__list li::after {
  content: '';
  display: block;
  position: absolute;
  width: 1px;
  height: 60%;
  background-color: #fff;
  top: 6px;
  right: 0;
}

ul.p-footer__list li:last-child::after {
  display: none;
}

ul.p-footer__list li a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

ul.p-footer__list li a:hover {
  opacity: 0.8;
}

.p-footer__link-inner {
  width: 100%;
}

.p-footer__copyright {
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #f4a001;
  padding: 20px 20px 18px;
  font-weight: 700;
}

.is-sp .p-footer__copyright {
  padding-bottom: 78px;
}
</pre></body></html>