<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@-webkit-keyframes bg {
  0% {
    background-position: 800px 0;
  }
  100% {
    background-position: 0 0;
  }
}
@keyframes bg {
  0% {
    background-position: 800px 0;
  }
  100% {
    background-position: 0 0;
  }
}

@-webkit-keyframes op-logo {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.9);
    transform: translate(-50%, -50%) scale(0.9);
  }
  40% {
    opacity: 1;
  }
  46% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

@keyframes op-logo {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.9);
    transform: translate(-50%, -50%) scale(0.9);
  }
  40% {
    opacity: 1;
  }
  46% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

/*!
  Reset Stylesheet
  Author: yama-dev - https://github.com/yama-dev
  */
html, body, div, span, object, iframe, embed, main,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, u, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, tbody, tfoot, thead, tr, th, td, caption,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, source {
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  outline: 0;
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 100%;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

a {
  vertical-align: baseline;
  margin: 0;
  background: transparent;
  padding: 0;
  font-size: 100%;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}

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

hr {
  display: block;
  margin: 1em 0;
  border: 0;
  border-top: 1px solid #cccccc;
  padding: 0;
  height: 1px;
}

ol, ul {
  list-style: none;
}

button, input, select, textarea, datalist {
  vertical-align: middle;
  background-color: transparent;
  min-height: 1.5em;
}

input[type="submit"], input[type="reset"] {
  cursor: pointer;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

a[href^='tel'] {
  display: inline-block;
  color: inherit;
}

.clearfix:after {
  display: block;
  clear: both;
  visibility: hidden;
  height: 0;
  content: '.';
}

iframe {
  border: none;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0;
}

[role=button] {
  cursor: pointer;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

body {
  line-height: 1;
}

body, button, input, select, textarea, datalist {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-wrap: break-word;
  font-family: YakuHanJP, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

img {
  display: block;
  vertical-align: middle;
  max-width: 100%;
}

body {
  opacity: 0;
  font-weight: 400;
  font-family: 'Noto Serif JP';
}

body.is-load {
  opacity: 1;
  -webkit-transition: opacity 0.9s linear;
  transition: opacity 0.9s linear;
}

.p-opening {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: white;
  width: 100vw;
  height: 100vh;
  min-height: 90vh;
}

body.op-ed .p-opening {
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
  pointer-events: none;
}

.p-opening__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-animation: op-logo 7s linear both;
  animation: op-logo 7s linear both;
  width: 40%;
  max-width: 300px;
}

body.op-start .p-opening__title {
  opacity: 1;
  -webkit-transition: opacity 0.6s linear;
  transition: opacity 0.6s linear;
}

.p-opening__logo {
  position: absolute;
  top: 0;
  left: 0;
}

.l-wrap {
  position: relative;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  margin: 0 auto;
  width: 90%;
  overflow: hidden;
}

body.op-ed .l-wrap {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0s;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0s;
}

.l-content {
  background-color: white;
}

.p-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

.p-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: bg 30s linear infinite;
  animation: bg 30s linear infinite;
  background: url(../img/main/bg_jk.jpg) repeat top left 800px;
  background-size: 800px 800px;
  width: 100%;
  height: 100%;
  content: '';
}

.p-hbg {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  margin: 0 auto;
  width: 90%;
  height: 120vh;
  overflow: hidden;
  pointer-events: none;
}

body.menu-open .p-hbg {
  pointer-events: auto;
}

.p-hbg__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.p-hbg__inner::before {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s linear 0.3s;
  transition: opacity 0.3s linear 0.3s;
  background-color: white;
  width: 100%;
  height: 100%;
  content: '';
}

.p-hbg__btn {
  position: absolute;
  top: 17px;
  right: 4.2%;
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 1s cubic-bezier(0.25, 1, 0.5, 1) 0s;
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1) 0s;
  cursor: pointer;
  margin-right: -25px;
  width: 50px;
  height: 50px;
  pointer-events: all;
}

body.op-ed .p-hbg__btn {
  opacity: 1;
}

.p-hbg__btn-line {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: black;
  width: 42px;
  height: 1.5px;
}

.p-hbg__btn-line:nth-of-type(1) {
  top: 29px;
}

.p-hbg__btn-line:nth-of-type(2) {
  top: 18px;
}

.p-hbg__menu {
  position: absolute;
  left: 0;
  width: 100%;
  height: 120vh;
}

.p-hbg__menu-inner {
  -ms-overflow-style: none;
  padding: 321px 8.5% 0 8.5%;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  scrollbar-width: none;
}

.p-hbg__menu-inner::-webkit-scrollbar {
  display: none;
}

.p-hbg__menu a {
  position: relative;
  color: black;
  font-size: 42px;
  font-family: adobe-garamond-pro;
  letter-spacing: 4.4px;
  text-decoration: none;
}

.p-hbg__menu a::before {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: width 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition: width 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: black;
  width: 0;
  height: 1px;
  content: '';
}

.p-hbg__menu-list-items {
  -webkit-transform: translate(-18px, -5px);
  transform: translate(-18px, -5px);
  opacity: 0;
  -webkit-transition: opacity 0.3s linear, -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.3s linear, -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s linear;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s linear, -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 66px;
  line-height: 1.3;
}

.p-hbg__menu-list-items:last-of-type {
  margin: 0;
}

body.menu-open .p-hbg .p-hbg__inner::before {
  opacity: 1;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}

body.menu-open .p-hbg .p-hbg__btn {
  right: 95.6%;
  -webkit-transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0s;
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0s;
}

body.menu-open .p-hbg .p-hbg__btn-line {
  -webkit-transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  width: 46px;
}

body.menu-open .p-hbg .p-hbg__btn-line:nth-of-type(1) {
  top: 24px;
  -webkit-transform: translateX(-50%) rotate(31deg);
  transform: translateX(-50%) rotate(31deg);
}

body.menu-open .p-hbg .p-hbg__btn-line:nth-of-type(2) {
  top: 24px;
  -webkit-transform: translateX(-50%) rotate(-31deg);
  transform: translateX(-50%) rotate(-31deg);
}

body.menu-open .p-hbg .p-hbg__menu-side {
  right: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.3s;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.3s;
}

body.menu-open .p-hbg .p-hbg__menu-list-items:nth-of-type(1) {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
  -webkit-transition: opacity 0.4s linear 0.4s, -webkit-transform 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
  transition: opacity 0.4s linear 0.4s, -webkit-transform 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.4s, opacity 0.4s linear 0.4s;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.4s, opacity 0.4s linear 0.4s, -webkit-transform 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
}

body.menu-open .p-hbg .p-hbg__menu-list-items:nth-of-type(2) {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
  -webkit-transition: opacity 0.4s linear 0.6s, -webkit-transform 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.6s;
  transition: opacity 0.4s linear 0.6s, -webkit-transform 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.6s;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.6s, opacity 0.4s linear 0.6s;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.6s, opacity 0.4s linear 0.6s, -webkit-transform 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.6s;
}

body.menu-open .p-hbg .p-hbg__menu-list-items:nth-of-type(3) {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
  -webkit-transition: opacity 0.4s linear 0.8s, -webkit-transform 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.8s;
  transition: opacity 0.4s linear 0.8s, -webkit-transform 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.8s;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.8s, opacity 0.4s linear 0.8s;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.8s, opacity 0.4s linear 0.8s, -webkit-transform 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.8s;
}

.p-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  min-height: 90vh;
  overflow: hidden;
}

.p-hero__title {
  position: relative;
  width: 74%;
  max-width: 490px;
}

.p-hero__title-outer::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-99%, -50%);
  transform: translate(-99%, -50%);
  background-color: white;
  width: 100vw;
  height: 100vh;
  content: '';
}

.p-hero__title-outer::after {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(99%, -50%);
  transform: translate(99%, -50%);
  background-color: white;
  width: 100vw;
  height: 100vh;
  content: '';
}

.p-hero__title-inner::after {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -99%);
  transform: translate(-50%, -99%);
  background-color: white;
  width: 100vw;
  height: 200%;
  content: '';
}

.p-hero__title-inner::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 99%);
  transform: translate(-50%, 99%);
  background-color: white;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  content: '';
}

.p-hero__title img {
  position: relative;
  z-index: 1;
}

.p-hero__title h1::before {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-mask-image: url(../img/main/img_main-text02.svg);
  mask-image: url(../img/main/img_main-text02.svg);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: white;
  width: 100%;
  height: 100%;
  pointer-events: none;
  content: '';
}

.l-section__title {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
  opacity: 0;
  padding-left: 3px;
  font-size: 19px;
  font-family: adobe-garamond-pro;
  letter-spacing: 5px;
}

.l-section__title h2 {
  font-weight: 400;
}

.l-section__title.is-active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  -webkit-transition: opacity 0.7s linear, -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s linear, -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s linear;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s linear, -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.p-topics {
  margin-bottom: 22.5%;
  padding-top: 6.6%;
}

.p-topics__title {
  margin-bottom: 3.8%;
}

.p-topics__content {
  margin: 0 auto;
  width: 83.5%;
  max-width: 1700px;
}

.p-topics__list a {
  display: block;
  color: black;
  text-decoration: none;
}

.p-topics__list-items {
  margin-bottom: 6.6%;
}

.p-topics__list-items:last-of-type {
  margin: 0;
}

.p-topics__list-items.is-active .p-topics__list-img {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  -webkit-transition: opacity 0.7s linear, -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.7s linear, -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s linear;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s linear, -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.p-topics__list-items.is-active .p-topics__list-content {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  -webkit-transition: opacity 0.7s linear 0.3s, -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
  transition: opacity 0.7s linear 0.3s, -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s, opacity 0.7s linear 0.3s;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s, opacity 0.7s linear 0.3s, -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

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

.p-topics__list-img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
  opacity: 0;
  margin-right: 5%;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.p-topics__list-img img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: all 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  margin: 0 auto;
  width: 100%;
}

.p-topics__list-content {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
  opacity: 0;
  width: 45%;
}

.p-topics__list-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0.8%;
  color: #999999;
  font-size: 33px;
  font-family: adobe-garamond-pro;
  letter-spacing: 2.6px;
}

.p-topics__list-date.is-new::before {
  margin-left: 2%;
  border: #aaa solid 1px;
  padding: 0.8% 2.7%;
  content: 'NEW';
  font-size: 13px;
}

.p-topics__list-title {
  margin-bottom: 3%;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.6;
  letter-spacing: 5.5px;
}

.p-topics__list-lead {
  padding-left: 4px;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 1.6px;
}

.p-topics__list-lead-alpha {
  margin-top: 5%;
}

.p-history {
  margin-bottom: 6.5%;
}

.p-history__title {
  margin-bottom: 12.5%;
}

.p-history__content {
  margin: 0 auto;
  width: 83.5%;
  max-width: 1700px;
}

.p-history__list {
  margin: 0 auto;
  width: 98.5%;
}

.p-history__list-items {
  position: relative;
  margin-bottom: 13.9%;
}

.p-history__list-items:last-of-type {
  margin: 0;
}

.p-history__list-items.none-img .p-history__list-lead {
  margin: 0 0 0 5.8%;
}

.p-history__list-items.is-active .p-history__list-year {
  opacity: 1;
  -webkit-transition: opacity 0.7s linear;
  transition: opacity 0.7s linear;
}

.p-history__list-items.is-active .p-history__list-lead {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  -webkit-transition: opacity 0.7s linear 0.3s, -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
  transition: opacity 0.7s linear 0.3s, -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s, opacity 0.7s linear 0.3s;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s, opacity 0.7s linear 0.3s, -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.p-history__list-items.is-active .p-history__list-img {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  -webkit-transition: opacity 0.7s linear 0.6s, -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s;
  transition: opacity 0.7s linear 0.6s, -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s, opacity 0.7s linear 0.6s;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s, opacity 0.7s linear 0.6s, -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s;
}

.p-history__list-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  width: 88%;
}

.p-history__list-left {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 7.5%;
  width: 42.4%;
}

.p-history__list-year {
  position: absolute;
  top: 0;
  left: -1%;
  -webkit-transform: translateY(-60%);
  transform: translateY(-60%);
  opacity: 0;
  z-index: 1;
  color: rgba(170, 170, 170, 0.2);
  font-weight: 400;
  font-size: 192px;
  font-size: 12rem;
  font-size: min(208px,12vw);
  font-size: min(13rem,12vw);
  font-family: adobe-garamond-pro;
  letter-spacing: 15px;
}

.p-history__list-img {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
  opacity: 0;
}

.p-history__list-lead {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
  opacity: 0;
  margin-top: -10px;
  font-size: 14px;
  line-height: 2.45;
  letter-spacing: 2px;
}

.p-history__list-lead.none-img {
  margin: 0;
}

.l-footer {
  margin: 0 auto;
  border-top: 1px solid #b1b1b1;
  padding: 4% 0;
  width: 84%;
  font-family: YakuHanJP, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

.l-footer__share {
  border-bottom: 1px solid #b1b1b1;
  padding-bottom: 5%;
}

.l-footer__share-title {
  margin-bottom: 3%;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-align: center;
}

.l-footer__share-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
  width: 25%;
  max-width: 200px;
}

.l-footer__site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.l-footer__site-items {
  margin-right: 2%;
  width: 21%;
}

.l-footer__site-items:last-of-type {
  margin: 0;
}

.l-footer__site-items img {
  margin: 0 auto;
}

.l-footer__site a {
  -webkit-transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.l-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: 4.2%;
  width: 25%;
  max-width: 197px;
}

.l-footer__sns-items {
  margin-right: 14.5%;
  width: 11%;
}

.l-footer__sns-items:last-of-type {
  margin: 0;
}

.l-footer__sns-items img {
  margin: 0 auto;
}

.l-footer__sns-items a {
  -webkit-transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.l-footer__copy {
  margin-top: 3.5%;
  font-size: 12px;
  letter-spacing: 1px;
  text-align: center;
}

@media screen and (min-width: 768px){
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
  .is-pc-inline {
    display: inline-block;
  }
  .is-sp-inline {
    display: none;
  }
  .p-hbg__menu-side {
    display: none;
  }
  .p-hbg__menu a:hover::before {
    -webkit-transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
  }
  .p-topics__list a:hover .p-topics__list-img img {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    -webkit-transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .l-footer__site a:hover {
    opacity: 0.4;
    -webkit-transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .l-footer__sns-items a:hover {
    opacity: 0.4;
    -webkit-transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

@media screen and (max-width: 767px){
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
  .is-pc-inline {
    display: none;
  }
  .is-sp-inline {
    display: inline-block;
  }
  .l-wrap {
    margin: 0;
    margin-left: auto;
    width: 90%;
  }
  body.menu-open .l-wrap {
    -webkit-transform: translate(-13%, 0);
    transform: translate(-13%, 0);
    -webkit-transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .p-bg::before {
    background-size: 400px 400px;
  }
  .p-hbg {
    right: 0;
    left: auto;
    -webkit-transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0s;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0s;
    margin: 0;
    width: 90%;
  }
  body.menu-open .p-hbg {
    right: 10%;
  }
  .p-hbg__btn {
    top: 9px;
    right: 8.2%;
    margin-right: -14px;
    width: 28px;
    height: 28px;
  }
  .p-hbg__btn-line {
    width: 24px;
    height: 1px;
  }
  .p-hbg__btn-line:nth-of-type(1) {
    top: 16px;
  }
  .p-hbg__btn-line:nth-of-type(2) {
    top: 11px;
  }
  .p-hbg__menu-side {
    position: absolute;
    top: 0;
    right: -12%;
    -webkit-transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 11%;
    height: 120vh;
  }
  .p-hbg__menu-side::before {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: bg 30s linear infinite;
    animation: bg 30s linear infinite;
    background: url(../img/main/bg_jk.jpg) repeat top left 53%;
    background-size: 800px 800px;
    width: 100%;
    height: 100%;
    pointer-events: none;
    content: '';
  }
  .p-hbg__menu-inner {
    padding: 279px 6.5% 0 12.5%;
    width: 89%;
  }
  .p-hbg__menu a {
    font-size: 19px;
    letter-spacing: 3.4px;
  }
  .p-hbg__menu-list-items {
    margin-bottom: 36px;
  }
  body.menu-open .p-hbg .p-hbg__btn {
    right: 92.7%;
  }
  body.menu-open .p-hbg .p-hbg__btn-line {
    width: 24px;
  }
  body.menu-open .p-hbg .p-hbg__btn-line:nth-of-type(1) {
    top: 15px;
  }
  body.menu-open .p-hbg .p-hbg__btn-line:nth-of-type(2) {
    top: 14px;
  }
  .l-section__title {
    padding: 0;
    font-size: 13px;
    letter-spacing: 2px;
  }
  .p-topics {
    margin-bottom: 29.5%;
    padding-top: 3.6%;
  }
  .p-topics__title {
    margin-bottom: 6.8%;
  }
  .p-topics__content {
    width: 89%;
  }
  .p-topics__list-items {
    margin-bottom: 12%;
  }
  .p-topics__list-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }
  .p-topics__list-img {
    width: 100%;
  }
  .p-topics__list-content {
    width: 100%;
  }
  .p-topics__list-date {
    display: inline-block;
    margin-top: -9%;
    background-color: white;
    padding: 2% 6% 2% 0;
    font-size: 14px;
  }
  .p-topics__list-date.is-new {
    padding: 2% 18% 2% 0;
  }
  .p-topics__list-date.is-new::before {
    position: absolute;
    top: 50%;
    right: 6%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 10px;
  }
  .p-topics__list-title {
    margin: -2% 0 2% 0;
    font-size: 16px;
    letter-spacing: 1.4px;
  }
  .p-topics__list-lead {
    padding-left: 2px;
    font-size: 10px;
    line-height: 1.9;
    letter-spacing: 1.1px;
  }
  .p-topics__list-lead-alpha {
    margin-top: 6%;
  }
  .p-history {
    margin-bottom: 28%;
  }
  .p-history__title {
    margin-bottom: 27.5%;
  }
  .p-history__content {
    width: 89%;
  }
  .p-history__list {
    margin: 0;
    margin-left: auto;
    width: 93%;
  }
  .p-history__list-items {
    margin-bottom: 35%;
  }
  .p-history__list-items.none-img .p-history__list-lead {
    margin: 0;
    padding-top: 3.5%;
  }
  .p-history__list-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    width: 100%;
  }
  .p-history__list-left {
    margin: 0;
    width: 100%;
  }
  .p-history__list-year {
    left: -9%;
    -webkit-transform: translateY(-62%);
    transform: translateY(-62%);
    margin: 0;
    width: 100%;
    font-size: 6.5rem;
    letter-spacing: 4px;
    text-align: left;
  }
  .p-history__list-lead {
    margin: 14px 0 0 0;
    width: 100%;
    font-size: 11px;
    line-height: 1.8;
  }
  .l-footer {
    padding: 12% 0 20% 0;
    width: 100%;
  }
  .l-footer__share {
    padding-bottom: 12%;
  }
  .l-footer__share-title {
    margin-bottom: 10%;
  }
  .l-footer__share-sns {
    width: 62%;
  }
  .l-footer__site-items {
    width: 43%;
  }
  .l-footer__sns {
    margin-top: 14.5%;
    width: 66%;
    max-width: none;
  }
  .l-footer__sns-items {
    margin-right: 16.5%;
    width: 9%;
  }
  .l-footer__copy {
    margin-top: 14%;
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) and (max-width: 767px){
  .p-hbg__menu-side::before {
    background-size: 400px 400px;
  }
}
</pre></body></html>