@charset "UTF-8";
/*
Theme Name: Theme name
Author: Author
Author URI:
*/
/* A Modern CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding: 5.3333333333rem;
  font-size: calc(100vw / 1370 * 15);
}
@media (1370px < width) {
  html {
    font-size: 15px;
  }
}
@media (width <= 768px) {
  html {
    font-size: calc(100vw / 390 * 15);
  }
}

body {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #555555;
  line-height: 2;
}
body.is-menu-open {
  overflow: hidden;
}

a {
  color: #555555;
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

a[href$=".pdf"] {
  background: url(../images/common/pdficon_large.png) no-repeat right;
  padding: 11px 40px 8px 0;
  overflow: hidden;
  margin-top: 0;
  margin-left: 0;
}

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

pre {
  white-space: pre;
}

/********************************************
* Layout
********************************************/
.l-content {
  padding: 4rem 0;
}

/* Header */
.l-header {
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 1000;
  width: 100%;
}
@media (width <= 768px) {
  .l-header {
    padding: 0.6666666667rem 1.3333333333rem;
  }
}
.l-header__logo {
  width: 17.2666666667rem;
}
@media (width <= 768px) {
  .l-header__logo {
    width: 13.3333333333rem;
    z-index: 1;
    position: relative;
  }
}
.l-header__nav {
  display: flex;
  align-items: center;
  gap: 2em;
  position: relative;
}
@media (width <= 768px) {
  .l-header__nav {
    display: block;
    position: fixed;
    left: 100%;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    transition: 0.3s;
    gap: 0;
    overflow-y: scroll;
    padding: 8rem 0 5.3333333333rem;
  }
}
.l-header .menu-h_nav-container,
.l-header .h-nav {
  width: 100%;
  height: auto;
}
.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: 2em;
  list-style: none;
}
@media (width <= 768px) {
  .l-header__nav-list {
    width: 100%;
    height: 100vh;
    flex-direction: column;
    gap: 0;
    overflow-y: scroll;
  }
}
@media (width <= 768px) {
  .l-header__nav-list.c-list {
    height: auto;
    padding: 0 1.3333333333rem;
  }
}
@media (width <= 768px) {
  .l-header .menu-item, .l-header__nav-item {
    padding: 0.3333333333rem 0;
    width: 100%;
  }
  .l-header .menu-item:not(:last-child), .l-header__nav-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  }
}
@media (width <= 768px) {
  .l-header .menu-item--ig .l-header__nav-ig, .l-header__nav-item--ig .l-header__nav-ig {
    width: 3.3333333333rem;
    margin: 1.3333333333rem auto 0;
  }
}
.l-header .menu-item .sub-menu, .l-header__nav-item .sub-menu {
  padding-left: 0;
  position: absolute;
  list-style: none;
  display: none;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  left: 0;
  background: rgba(239, 239, 239, 0.9);
  z-index: 1;
  padding: 0.6666666667rem;
}
@media (width <= 768px) {
  .l-header .menu-item .sub-menu, .l-header__nav-item .sub-menu {
    position: static;
    width: 100%;
    background-color: #efefef;
    border: none;
    padding: 0 0.6666666667rem;
    margin-top: 0.3333333333rem;
  }
}
.l-header .menu-item .sub-menu .menu-item, .l-header__nav-item .sub-menu .menu-item {
  display: inline-block;
}
.l-header .menu-item .sub-menu .menu-item a, .l-header__nav-item .sub-menu .menu-item a {
  color: #351d0c;
  padding: 0.5333333333rem 1.0666666667rem;
}
@media (width <= 768px) {
  .l-header .menu-item .sub-menu .menu-item a, .l-header__nav-item .sub-menu .menu-item a {
    font-size: 0.8rem;
  }
}
.l-header .menu-item .sub-menu .menu-item a:after, .l-header__nav-item .sub-menu .menu-item a:after {
  content: inherit;
}
.l-header .menu-item a, .l-header__nav-item a {
  color: #fff;
  text-decoration: none;
}
@media (width <= 768px) {
  .l-header .menu-item a, .l-header__nav-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.is-scrolled .l-header .menu-item a, .is-menu-open .l-header .menu-item a, .is-scrolled .l-header__nav-item a, .is-menu-open .l-header__nav-item a {
  color: #351d0c;
}
.l-header .menu-item--no-page > a, .l-header__nav-item--no-page > a {
  color: #737373;
  pointer-events: none;
}
.l-header .menu-item-has-children a, .l-header__nav-item-has-children a {
  position: relative;
  padding-right: 1.6666666667rem;
}
@media (width <= 768px) {
  .l-header .menu-item-has-children a, .l-header__nav-item-has-children a {
    padding-right: 0;
  }
}
.l-header .menu-item-has-children a:after, .l-header__nav-item-has-children a:after {
  position: absolute;
  right: 0;
  top: calc(50% - 0.5333333333rem);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
  width: 0.6666666667rem;
  height: 0.6666666667rem;
  transform: rotate(135deg);
}
@media (width <= 768px) {
  .l-header .menu-item-has-children a:after, .l-header__nav-item-has-children a:after {
    top: 1.6666666667rem;
    right: 4.6666666667rem;
  }
}
.is-scrolled .l-header .menu-item-has-children a:after, .is-menu-open .l-header .menu-item-has-children a:after, .is-scrolled .l-header__nav-item-has-children a:after, .is-menu-open .l-header__nav-item-has-children a:after {
  border-top: 1px solid #351d0c;
  border-right: 1px solid #351d0c;
}
.l-header__nav-link {
  color: #fff;
  font-size: 1.0666666667rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}
@media (width <= 768px) {
  .l-header__nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9333333333rem;
    padding: 0.6666666667rem 0;
  }
}
.is-scrolled .l-header__nav-link, .is-menu-open .l-header__nav-link {
  color: #351d0c;
}
.l-header__nav-thumb {
  display: none;
}
@media (width <= 768px) {
  .l-header__nav-thumb {
    display: block;
    width: 4rem;
    height: 4rem;
    overflow: clip;
  }
}
.l-header__nav-ig {
  width: 1.4rem;
}
.is-menu-open .l-header .l-header__nav {
  left: 0;
}
.is-menu-open .l-header .l-header__nav-link {
  color: #351d0c;
}

.l-menu-trigger {
  width: 2.6666666667rem;
  height: 2.6666666667rem;
  cursor: pointer;
  position: relative;
  display: none;
}
@media (width <= 768px) {
  .l-menu-trigger {
    display: block;
    z-index: 1;
    top: -0.3333333333rem;
  }
}
.l-menu-trigger__bar {
  display: block;
  transition: all 0.3s;
  width: 100%;
  height: 0.1333333333rem;
  position: absolute;
  left: calc(50% - 1.3333333333rem);
  top: calc(50% - 0.1rem);
  display: inline-block;
  background: #fff;
}
.l-menu-trigger__bar:nth-of-type(1) {
  transform: translateY(-0.4666666667rem);
}
.is-menu-open .l-menu-trigger__bar:nth-of-type(1) {
  transform: translateY(0rem) rotate(45deg);
}
.l-menu-trigger__bar:nth-of-type(2) {
  transform: translateY(0.4666666667rem);
}
.is-menu-open .l-menu-trigger__bar:nth-of-type(2) {
  transform: translateY(0rem) rotate(-45deg);
}
.is-scrolled .l-menu-trigger .l-menu-trigger__bar, .is-menu-open .l-menu-trigger .l-menu-trigger__bar {
  background-color: #351d0c;
}
.is-scrolled .l-menu-trigger .l-menu-trigger__text, .is-menu-open .l-menu-trigger .l-menu-trigger__text {
  color: #351d0c;
}
.l-menu-trigger__text {
  color: #fff;
  position: absolute;
  bottom: -1.1333333333rem;
  font-size: 0.8rem;
}

/* Footer */
@media (width <= 768px) {
  .l-footer {
    display: flex;
    flex-direction: column;
  }
}
@media (width <= 768px) {
  .l-footer.c-section {
    padding-bottom: 4.6666666667rem;
  }
}
.l-footer .c-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (width <= 768px) {
  .l-footer .c-inner {
    flex-direction: column;
  }
}
@media (width <= 768px) {
  .p-page .l-footer .c-inner {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (width <= 768px) {
  .l-footer__left {
    display: contents;
  }
}
.l-footer__logo {
  width: 18.7333333333rem;
}
@media (width <= 768px) {
  .l-footer__logo {
    display: block;
    width: 13.3333333333rem;
    margin-bottom: 2rem;
    order: 1;
  }
}
.l-footer__nav {
  width: 43.3333333333rem;
}
@media (width <= 768px) {
  .l-footer__nav {
    width: 100%;
    order: 2;
  }
}
.l-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 0;
  margin-bottom: 0.6666666667rem;
  position: relative;
}
@media (width <= 768px) {
  .l-footer__nav-list.c-list {
    margin-bottom: 2rem;
  }
}
.l-footer__nav-list > .menu-item {
  width: 33.3%;
}
.l-footer .menu-item, .l-footer__nav-item {
  width: 33.3%;
}
@media (width <= 768px) {
  .l-footer .menu-item, .l-footer__nav-item {
    width: 100%;
  }
}
.l-footer .menu-item a, .l-footer__nav-item a {
  text-decoration: none;
}
@media (width <= 768px) {
  .l-footer .menu-item a, .l-footer__nav-item a {
    padding-right: 2rem;
  }
}
.l-footer .menu-item-has-children a, .l-footer__nav-item-has-children a {
  position: relative;
  padding-right: 1.6666666667rem;
}
.l-footer .menu-item-has-children a:after, .l-footer__nav-item-has-children a:after {
  position: absolute;
  right: 0;
  top: calc(50% - 0.5333333333rem);
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  content: "";
  width: 0.6666666667rem;
  height: 0.6666666667rem;
  transform: rotate(135deg);
}
.l-footer .menu-item--no-page > a, .l-footer__nav-item--no-page > a {
  pointer-events: none;
}
.l-footer .l-header__nav-thumb {
  display: none;
}
.l-footer .sub-menu {
  display: none;
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  padding: 0.6666666667rem;
  gap: 0.6666666667rem 1.3333333333rem;
  flex-wrap: wrap;
  list-style: none;
  background-color: rgba(239, 239, 239, 0.9);
  z-index: 1;
  margin: 0;
}
@media (width <= 768px) {
  .l-footer .sub-menu {
    position: static;
    width: 100%;
  }
}
.l-footer .sub-menu .menu-item {
  width: auto;
  display: inline-block;
}
@media (width <= 768px) {
  .l-footer .sub-menu .menu-item {
    display: inline-block;
    width: 49%;
    font-size: 0.8rem;
  }
}
.l-footer .sub-menu .menu-item a {
  padding: 0.5333333333rem 1.0666666667rem;
}
@media (width <= 768px) {
  .l-footer .sub-menu .menu-item a {
    padding: 0;
  }
}
.l-footer .sub-menu .menu-item a:after {
  content: inherit;
}
.l-footer__nav-link {
  text-decoration: none;
  font-size: 1.0666666667rem;
}
@media (width <= 768px) {
  .l-footer__nav-link {
    font-size: 1rem;
  }
}
.l-footer__sns-list {
  width: 100%;
  display: flex;
  justify-content: end;
}
@media (width <= 768px) {
  .l-footer__sns-list {
    order: 3;
    justify-content: center;
  }
}
.l-footer__sns-img {
  width: 1.4rem;
}
@media (width <= 768px) {
  .l-footer__sns-img {
    width: 2.6666666667rem;
  }
}
.l-footer__copyrights {
  font-size: 0.8rem;
}
@media (width <= 768px) {
  .l-footer__copyrights {
    order: 4;
    font-size: 0.9333333333rem;
    text-align: center;
    margin-top: 2rem;
  }
}

/* Sidebar */
/********************************************
* Form
********************************************/
input[type=email],
input[type=text] {
  width: 500px;
  max-width: 100%;
  padding: 5px;
  height: 35px;
}

textarea {
  width: 500px;
  max-width: 100%;
  height: 250px;
}

input[type=submit] {
  width: 300px;
  height: 35px;
  max-width: 100%;
  border: 1px solid #ccc;
}

/********************************************
* Wordpress
********************************************/
body.single article .wp-block-heading {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.3333333333rem;
}
body.single article .wp-block-heading:not(:first-child) {
  margin-top: 2rem;
}
body.single article blockquote {
  position: relative;
  padding: 3em 2.5em 2em 3.5em;
  color: #333333;
  background-color: #e4efc3;
  text-align: left;
  margin-bottom: 1em;
}
body.single article blockquote::before {
  display: inline-block;
  position: absolute;
  top: 1em;
  left: 1.5em;
  width: 2em;
  height: 2em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.58341 17.3211C3.55316 16.2274 3 15 3 13.0103C3 9.51086 5.45651 6.37366 9.03059 4.82318L9.92328 6.20079C6.58804 8.00539 5.93618 10.346 5.67564 11.822C6.21263 11.5443 6.91558 11.4466 7.60471 11.5105C9.40908 11.6778 10.8312 13.159 10.8312 15C10.8312 16.933 9.26416 18.5 7.33116 18.5C6.2581 18.5 5.23196 18.0095 4.58341 17.3211ZM14.5834 17.3211C13.5532 16.2274 13 15 13 13.0103C13 9.51086 15.4565 6.37366 19.0306 4.82318L19.9233 6.20079C16.588 8.00539 15.9362 10.346 15.6756 11.822C16.2126 11.5443 16.9156 11.4466 17.6047 11.5105C19.4091 11.6778 20.8312 13.159 20.8312 15C20.8312 16.933 19.2642 18.5 17.3312 18.5C16.2581 18.5 15.232 18.0095 14.5834 17.3211Z' fill='%23a1c049'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: "";
}
body.single article blockquote p {
  margin: 0;
}
body.single article blockquote cite {
  display: block;
  color: #737373;
  font-size: 0.8em;
  text-align: right;
}
body.single article ul.wp-block-list {
  list-style: disc;
  padding-left: 2em;
  margin-bottom: 1em;
}
body.single article ul.wpp-list {
  padding-left: 0;
}
body.single article table,
body.single article img,
body.single article .wp-block-buttons {
  margin-bottom: 1em;
}
body.single article h1.has-background,
body.single article h2.has-background,
body.single article h3.has-background,
body.single article h4.has-background,
body.single article h5.has-background,
body.single article h6.has-background {
  padding: 1rem 1.6666666667rem;
}
@media (width <= 768px) {
  body.single article h1.has-background,
  body.single article h2.has-background,
  body.single article h3.has-background,
  body.single article h4.has-background,
  body.single article h5.has-background,
  body.single article h6.has-background {
    padding: 0.6666666667rem;
  }
}

/* Media */
.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

/* Contact Form */
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 .wpcf7-not-valid {
  background: pink;
}
.wpcf7 .wpcf7-response-output {
  margin: 10px 0 0;
  padding: 8px 35px 8px 14px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.wpcf7 .wpcf7-validation-errors {
  color: #b94a48;
  background-color: #f2dede;
  border: 1px solid #eed3d7;
}
.wpcf7 .wpcf7-mail-sent-ok {
  color: #3a87ad;
  background-color: #d9edf7;
  border: 1px solid #bce8f1;
}

.breadcrumbs {
  padding: 1.3333333333rem 0 4rem;
}

/********************************************
* Component
********************************************/
.c-archive-list__item {
  display: flex;
  justify-content: space-between;
  padding: 0.6666666667rem 0;
}
.c-archive-list__date {
  display: inline-block;
  width: 4.6666666667rem;
}
.c-archive-list__title {
  display: inline-block;
  font-size: 1.0666666667rem;
  width: calc(100% - 6rem);
}

.c-block01 {
  display: flex;
}
@media (width <= 768px) {
  .c-block01 {
    flex-direction: column;
  }
}
.c-block01__header {
  text-align: left;
  width: 16.6666666667rem;
}
@media (width <= 768px) {
  .c-block01__header {
    width: 100%;
  }
}
.c-block01__content {
  width: calc(100% - 16.6666666667rem);
}
@media (width <= 768px) {
  .c-block01__content {
    width: 100%;
  }
}

.c-block02 {
  display: flex;
  align-items: center;
  transform: translateX(10.6666666667rem);
}
@media (width <= 768px) {
  .c-block02 {
    flex-direction: column;
    gap: 2rem;
    transform: translateX(0);
  }
}
.c-block02--reverse {
  transform: translateX(-10.6666666667rem);
}
@media (width <= 768px) {
  .c-block02--reverse {
    transform: translateX(0);
  }
}
.c-block02--reverse .c-block02__text {
  order: 2;
  text-align: right;
  display: flex;
  align-items: end;
  flex-direction: column;
  padding-right: 0;
}
@media (width <= 768px) {
  .c-block02--reverse .c-block02__text {
    order: 1;
    text-align: left;
    align-items: start;
  }
}
.c-block02--reverse .c-block02__thumb {
  order: 1;
}
@media (width <= 768px) {
  .c-block02--reverse .c-block02__thumb {
    order: 2;
  }
}
.c-block02--reverse .c-block02__p {
  text-align: left;
}
.c-block02.c-inner {
  max-width: 88rem;
}
@media (width <= 768px) {
  .c-block02.c-inner {
    max-width: inherit;
  }
}
.c-block02__text {
  width: 36rem;
  padding-right: 1.3333333333rem;
}
@media (width <= 768px) {
  .c-block02__text {
    width: 100%;
    padding-right: 0;
  }
}
.c-block02__caption {
  color: #ff77a8;
  font-size: 1.7333333333rem;
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.4;
}
@media (width <= 768px) {
  .c-block02__caption {
    line-height: 1.8;
  }
}
.c-block02__p {
  font-weight: 500;
  font-size: 1.0666666667rem;
  width: 25.1333333333rem;
  margin-bottom: 2rem;
  line-height: 2.4;
}
@media (width <= 768px) {
  .c-block02__p {
    font-size: 1rem;
    width: 100%;
  }
}
.c-block02__p--large {
  font-size: 1.6rem;
  line-height: 2.4;
}
.c-block02__thumb {
  width: 52rem;
  position: relative;
  overflow: clip;
}
@media (width <= 768px) {
  .c-block02__thumb {
    width: 100%;
  }
}
.c-block02__thumb:before {
  transition: 0.5s;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ccc;
}
.c-block02__thumb.is-visible:before {
  left: 100%;
}

.c-breadcrumb {
  margin: 0.6666666667rem 0 2rem;
}
@media (width <= 768px) {
  .c-breadcrumb {
    margin: 0 0 1.3333333333rem;
    font-size: 0.8rem;
  }
}

.c-btn {
  border: 1px solid rgba(53, 29, 12, 0.4);
  border-radius: 0.6666666667rem;
  display: inline-block;
  padding: 1.3333333333rem 2rem;
  text-decoration: none;
}
@media (width <= 768px) {
  .c-btn {
    display: block;
    width: 100%;
    max-width: 16rem;
    padding: 0.6666666667rem 1.3333333333rem;
  }
}
.c-btn .c-icon {
  margin-right: 0.6666666667rem;
}

.c-btns {
  display: flex;
  gap: 2.6666666667rem;
}
@media (width <= 768px) {
  .c-btns {
    flex-direction: column;
    align-items: center;
    gap: 1.3333333333rem;
  }
}

.c-column-list__item {
  position: relative;
  padding: 0.6666666667rem 0 0.6666666667rem 1.5em;
}
.c-column-list__item:before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0.7333333333rem;
}
@media (width <= 768px) {
  .c-column-list__item:before {
    top: 0.6666666667rem;
  }
}
.c-column-list__link {
  text-decoration: none;
  font-size: 0.9333333333rem;
}
@media (width <= 768px) {
  .c-column-list__link {
    font-size: 1rem;
  }
}

.c-fixed-btn {
  position: fixed;
  right: 0;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.1333333333rem;
  z-index: 1001;
}
@media (width <= 768px) {
  .c-fixed-btn {
    top: inherit;
    bottom: 0;
    width: 100%;
    flex-direction: row;
    gap: 0;
  }
}
.c-fixed-btn__link {
  line-height: 1;
  text-decoration: none;
  border-radius: 0.6666666667rem 0 0 0.6666666667rem;
  width: 4.2666666667rem;
  background-color: #351d0c;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  line-height: 4.2666666667rem;
  padding: 1.3333333333rem 0;
}
@media (width <= 768px) {
  .c-fixed-btn__link {
    height: auto;
    font-size: 0.8rem;
    width: 25%;
    writing-mode: horizontal-tb;
    line-height: 1;
    border-radius: 0;
  }
  .c-fixed-btn__link:not(:last-child) {
    border-right: 1px solid #fff;
  }
}
.c-fixed-btn__link span {
  line-height: 1;
  writing-mode: horizontal-tb;
  text-orientation: initial;
}
.c-fixed-btn__img {
  width: 1.0666666667rem;
  margin: auto 1.6rem 0.6666666667rem;
  display: inline-block;
}
@media (width <= 768px) {
  .c-fixed-btn__img {
    display: none;
  }
}

.c-flex {
  display: flex;
  gap: 1.3333333333rem;
}
@media (width <= 768px) {
  .c-flex {
    flex-wrap: wrap;
  }
}
.c-flex--2 .c-flex__item {
  width: 50%;
}
@media (width <= 768px) {
  .c-flex--2 .c-flex__item {
    width: 100%;
  }
}
.c-flex--3 .c-flex__item {
  width: 33.33%;
}
@media (width <= 768px) {
  .c-flex--3 .c-flex__item {
    width: 100%;
  }
}
.c-flex--4 .c-flex__item {
  width: 25%;
}
@media (width <= 768px) {
  .c-flex--4 .c-flex__item {
    width: 100%;
  }
}

.c-icon {
  display: inline;
  margin-bottom: 0;
  vertical-align: middle;
}
.c-icon--mail {
  width: 1.4666666667rem;
}
.c-icon--tel {
  width: 1.3333333333rem;
}

.c-inner {
  max-width: 66.6666666667rem;
  margin: 0 auto;
}
@media (width <= 768px) {
  .c-inner {
    max-width: inherit;
  }
}

.c-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-list--upper-alphabet {
  list-style: upper-alpha;
}
.c-list--lower-alphabet {
  list-style: lower-alpha;
}
.c-list--upper-roman {
  list-style: upper-roman;
}
.c-list--lower-roman {
  list-style: lower-roman;
}
.c-list--none {
  list-style: none;
}
.c-list--circle {
  list-style: circle;
}
.c-list--disc {
  list-style: disc;
}
.c-list--square {
  list-style: square;
}
.c-list--decimal {
  list-style: decimal;
}
.c-list--decimal-leading-zero {
  list-style: decimal-leading-zero;
}

.c-media-list {
  margin: 2rem 0 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
@media (width <= 768px) {
  .c-media-list {
    gap: 2rem;
  }
}
.c-media-list__item {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  width: 100%;
}
@media (width <= 768px) {
  .c-media-list__item {
    flex-direction: column;
  }
}
.c-media-list__thumb {
  width: 12rem;
}
@media (width <= 768px) {
  .c-media-list__thumb {
    margin: 0 auto 1.3333333333rem;
  }
}
.c-media-list__thumb img:not(:first-of-type) {
  margin-top: 1.3333333333rem;
}
.c-media-list__text {
  width: calc(100% - 16rem);
}
@media (width <= 768px) {
  .c-media-list__text {
    width: 100%;
  }
}
.c-media-list__title {
  font-size: 1.2rem;
  color: #cb0808;
  font-weight: 600;
  margin-bottom: 0.6666666667rem;
}
.c-media-list__link {
  color: #cb0808;
  text-decoration: none;
}
.c-media-list__p {
  margin-bottom: 1em;
}

.c-more {
  font-size: 1rem;
  font-family: "marcellus", serif;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  padding: 0 1.3333333333rem 0.3333333333rem;
  position: relative;
}
.c-more:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.6666666667rem;
  border-bottom: 1px solid rgba(53, 29, 12, 0.4);
  border-right: 1px solid rgba(53, 29, 12, 0.4);
  transform: skewX(45deg);
}

.c-mv {
  width: 100vw;
  height: 32.6666666667rem;
  overflow: clip;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
@media (width <= 768px) {
  .c-mv {
    height: 13.3333333333rem;
    margin-bottom: 0.6666666667rem;
  }
}
.c-mv:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(76, 56, 36, 0.5);
}
.c-mv--no-img {
  height: 5.3333333333rem;
}
@media (width <= 768px) {
  .c-mv--no-img {
    margin-bottom: 0;
    height: 4rem;
  }
}
.c-mv--no-img:after {
  content: inherit;
}

.c-pagenation {
  margin: 3.3333333333rem 0 0 0;
  padding: 0;
  text-align: center;
}
.c-pagenation:after, .c-pagenation__navul:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}
.c-pagenation__nav {
  margin: 0;
  padding: 0;
}
.c-pagenation__item {
  display: inline-block;
  list-style: none;
  margin-left: 0.2rem;
  margin-bottom: 0.2rem;
  line-height: 1;
  vertical-align: middle;
}
@media (width <= 768px) {
  .c-pagenation__item {
    font-size: 0.8rem;
  }
}
.c-pagenation__item:first-child {
  margin-left: 0;
}
.c-pagenation__item--active {
  background-color: #333;
  border-radius: 0.2rem;
  color: #ffffff;
  cursor: not-allowed;
  padding: 1rem 1.3333333333rem;
}
@media (width <= 768px) {
  .c-pagenation__item--active {
    padding: 0.6666666667rem 1rem;
  }
}
.c-pagenation__link {
  background: none repeat scroll 0 0 #cccccc;
  border-radius: 0.2rem;
  color: #ffffff;
  display: block;
  padding: 1rem 1.3333333333rem;
  text-decoration: none;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}
@media (width <= 768px) {
  .c-pagenation__link {
    padding: 0.6666666667rem 1rem;
  }
}
.c-pagenation__link:hover {
  background-color: #333;
  color: #ffffff;
  opacity: 0.8;
  transition-duration: 500ms;
  transition-property: all;
  transition-timing-function: ease;
}

.c-pill-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  gap: 2.5333333333rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
@media (width <= 768px) {
  .c-pill-list {
    flex-direction: column;
    gap: 1.3333333333rem;
  }
}
.c-pill-list__item {
  width: calc(50% - 1.2666666667rem);
  display: flex;
  border: 1px solid rgba(53, 29, 12, 0.2);
}
@media (width <= 768px) {
  .c-pill-list__item {
    width: 100%;
  }
}
.c-pill-list__text {
  width: 50%;
  background-color: #f6f6f6;
  padding: 1.3333333333rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-pill-list__thumb {
  padding: 1.3333333333rem;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-pill-list__img {
  width: 10rem;
}

.c-post-navigation {
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
}

.c-scroll {
  width: 6.6666666667rem;
  display: flex;
  justify-content: center;
  align-items: end;
  text-orientation: mixed;
}
@media (width <= 768px) {
  .c-scroll {
    width: 2.6666666667rem;
    left: 0;
    z-index: 2;
    bottom: 0.6666666667rem;
  }
}
.c-scroll__inner {
  writing-mode: vertical-lr;
  display: flex;
  align-items: center;
  padding-bottom: 1.3333333333rem;
}
.c-scroll__link {
  text-decoration: none;
  color: #000;
}
.c-scroll__bar {
  margin-top: 0.6666666667rem;
  display: inline-block;
  height: 13.3333333333rem;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.2);
  position: relative;
  overflow-y: clip;
}
@media (width <= 768px) {
  .c-scroll__bar {
    height: 6.6666666667rem;
  }
}
.c-scroll__bar:before {
  content: "";
  width: 0.5333333333rem;
  height: 0.5333333333rem;
  background-color: #000;
  border-radius: 999px;
  position: absolute;
  left: calc(50% - 0.2666666667rem);
  bottom: 0;
}
.c-scroll__bar:after {
  content: "";
  width: 1px;
  height: 13.3333333333rem;
  background-color: #000;
  display: block;
  animation: scroll 4s infinite;
}
.c-scroll--top {
  transform: rotate(180deg);
  position: absolute;
  right: 0;
  bottom: 2rem;
}
@media (width <= 768px) {
  .c-scroll--top {
    left: inherit;
    right: 0;
    bottom: 4.6666666667rem;
  }
}

.c-scroll-bar {
  overflow-y: scroll;
}
.c-scroll-bar::-webkit-scrollbar {
  width: 0.1666666667rem;
}
.c-scroll-bar::-webkit-scrollbar-thumb {
  background-color: #ff0000;
  border-radius: 999px;
}
.c-scroll-bar::-webkit-scrollbar-track {
  background-color: #999;
  border-radius: 0.1666666667rem;
}

.c-section {
  overflow: clip;
  position: relative;
  padding: 4.3333333333rem 0;
}
@media (width <= 768px) {
  .c-section {
    padding: 2rem 1.3333333333rem;
  }
}

.c-single__thumbnail {
  margin-bottom: 2.6666666667rem;
  text-align: center;
}
.c-single__thumbnail--press_release .c-single__img {
  width: 20rem;
  margin: 0 auto;
}

.c-table {
  width: 100%;
  border-collapse: collapse;
}
.c-table th {
  text-align: center;
  padding: 0.6666666667rem;
  vertical-align: middle;
}
.c-table td {
  padding: 0.6666666667rem;
  text-align: left;
  text-align: center;
}
.c-table--hours th {
  padding: 0.6666666667rem 0rem;
}
@media (width <= 768px) {
  .c-table--hours th {
    font-size: 0.8rem;
  }
}
.c-table--hours th:first-child {
  font-size: 1.0666666667rem;
  width: 8.3333333333rem;
}
@media (width <= 768px) {
  .c-table--hours th:first-child {
    width: 6.6666666667rem;
    font-size: 0.8rem;
  }
}
.c-table--hours th:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.5);
}
.c-table--hours td {
  font-size: 1rem;
  padding: 0.6666666667rem 0;
}
@media (width <= 768px) {
  .c-table--hours td {
    font-size: 0.8rem;
  }
}
.c-table--hours td:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.5);
}

.c-title__eng {
  font-size: 2.4rem;
  font-family: "marcellus", serif;
}
.c-title__h2 {
  font-size: 0.9333333333rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.c-top-list {
  margin-bottom: 1.3333333333rem;
  text-align: left;
}
.c-top-list__item:first-of-type .c-top-list__link {
  padding-top: 0;
}
.c-top-list__item:not(:last-child) {
  border-bottom: 1px solid rgba(102, 102, 102, 0.2);
}
.c-top-list__link {
  text-decoration: none;
  display: block;
  padding: 2.6666666667rem 0;
}
.c-top-list__date {
  font-size: 0.9333333333rem;
  font-weight: 500;
}
@media (width <= 768px) {
  .c-top-list__date {
    font-size: 0.8666666667rem;
  }
}
.c-top-list__title {
  font-size: 1.0666666667rem;
  font-weight: 500;
}
@media (width <= 768px) {
  .c-top-list__title {
    font-size: 1rem;
  }
}

.c-youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.c-youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/********************************************
* Project
********************************************/
.p-home__mv {
  position: relative;
  height: auto;
}
.p-home__mv:after {
  content: inherit;
}
.p-home__mv .swiper-wrapper {
  height: 52.6666666667rem;
}
@media (width <= 768px) {
  .p-home__mv .swiper-wrapper {
    height: 20rem;
  }
}
.p-home__mv .swiper-slide {
  overflow: clip;
}
.p-home__mv .swiper-slide.is-fadein img {
  animation: fadeIn 3s ease-in-out forwards;
}
.p-home__mv .swiper-pagination {
  bottom: 2rem;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 2.6666666667rem;
}
.p-home__mv .swiper-pagination-bullet {
  width: 0.2666666667rem;
  height: 0.2666666667rem;
  position: relative;
  margin: 0;
  opacity: 1;
}
.p-home__mv .swiper-pagination-bullet:after {
  position: absolute;
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  top: calc(50% - 0.8rem);
  left: calc(50% - 0.8rem);
}
.p-home__mv .swiper-pagination-bullet-active {
  background-color: #000;
}
.p-home__mv .swiper-pagination-bullet-active:after {
  position: absolute;
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  top: calc(50% - 0.8rem);
  left: calc(50% - 0.8rem);
  border: 1px solid #000;
}
@media (width <= 768px) {
  .p-home__mv .c-scroll {
    position: absolute;
  }
}
.p-home__mv-inner {
  display: flex;
  width: 100%;
}
.p-home__mv-p {
  width: 100%;
  font-size: 2.5333333333rem;
  font-weight: 700;
  text-align: center;
  position: absolute;
  top: calc(50% - 4rem);
  color: #fff;
  text-shadow: 0 0 0.6666666667rem black;
  z-index: 1;
}
@media (width <= 768px) {
  .p-home__mv-p {
    top: 6.6666666667rem;
    font-size: 1.6rem;
  }
}
.p-home__mv-p span {
  opacity: 0;
}
@media (width <= 768px) {
  .p-home__mv-p span {
    display: block;
  }
}
.p-home__mv-p span.fadein1 {
  animation: fadeIn1 2s ease-in-out forwards;
}
.p-home__mv-p span.fadein2 {
  animation: fadeIn2 2s ease-in-out 2s forwards;
}
.p-home__mv-p span.fadein3 {
  animation: fadeIn3 2s ease-in-out 4s forwards;
}
.p-home__mv-slider {
  width: calc(100% - 6.6666666667rem);
  padding-bottom: 4rem;
}
@media (width <= 768px) {
  .p-home__mv-slider {
    width: 100%;
  }
}
.p-home__news {
  text-align: right;
}
.p-home__media {
  text-align: right;
}
.p-home__full-bg {
  height: 30rem;
  position: relative;
  margin: 4.3333333333rem 0;
}
@media (width <= 768px) {
  .p-home__full-bg {
    height: 16.6666666667rem;
    margin: 2rem 0;
  }
}
.p-home__full-bg__img {
  width: 100%;
  position: absolute;
  top: -160%;
}
@media (width <= 768px) {
  .p-home__full-bg__img {
    width: 160%;
    max-width: inherit;
    top: -170%;
  }
}
.p-home__photos {
  display: flex;
  justify-content: center;
  gap: 6.4rem;
  position: relative;
}
@media (width <= 768px) {
  .p-home__photos {
    flex-direction: column;
    gap: 1.3333333333rem;
  }
}
.p-home__photos.is-visible .p-home__photos-img:nth-of-type(1) {
  animation: slideIn 0.5s ease-in-out forwards;
}
.p-home__photos.is-visible .p-home__photos-img:nth-of-type(2) {
  animation: slideIn 0.5s ease-in-out 0.2s forwards;
}
.p-home__photos-img {
  position: relative;
  left: 120%;
  width: 41.3333333333rem;
}
.p-home__hours .c-table {
  margin-right: 1.3333333333rem;
  margin-bottom: 0.6666666667rem;
}
@media (width <= 768px) {
  .p-home__hours .c-table {
    margin-right: 0;
  }
}
.p-home__hours .u-text--right {
  margin-bottom: 2rem;
}
.p-home__access-inner {
  display: flex;
}
@media (width <= 768px) {
  .p-home__access-inner {
    flex-direction: column;
  }
}
.p-home__access-text {
  width: 24.6666666667rem;
}
@media (width <= 768px) {
  .p-home__access-text {
    width: 100%;
  }
}
.p-home__access-logo {
  width: 18.7333333333rem;
}
@media (width <= 768px) {
  .p-home__access-logo {
    margin-bottom: 2rem;
  }
}
.p-home__access-p {
  font-size: 0.8666666667rem;
  line-height: 2.3rem;
}
@media (width <= 768px) {
  .p-home__access-p {
    font-size: 1rem;
    margin-bottom: 2em;
    line-height: 2.4;
  }
}
.p-home__access-p:not(:last-child) {
  margin-bottom: 2em;
}
.p-home__access-map {
  width: calc(100% - 24.6666666667rem);
  height: 28.6666666667rem;
}
@media (width <= 768px) {
  .p-home__access-map {
    width: 100%;
    height: auto;
  }
}
.p-home__access-map iframe {
  position: absolute;
  width: 61.2rem;
  height: 28.6666666667rem;
}
@media (width <= 768px) {
  .p-home__access-map iframe {
    position: relative;
    width: 100%;
    height: 23.3333333333rem;
  }
}
.p-home__column .c-block01__content {
  text-align: right;
}
.p-home__column .c-column-list {
  text-align: left;
  margin-bottom: 2rem;
}

@keyframes scroll {
  0% {
    transform: translateY(-13.3333333333rem);
  }
  100% {
    transform: translateY(13.3333333333rem);
  }
}
@keyframes fadeIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
@keyframes fadeIn1 {
  0% {
    opacity: 0;
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes fadeIn2 {
  0% {
    opacity: 0;
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes fadeIn3 {
  0% {
    opacity: 0;
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes slideIn {
  0% {
    left: 100%;
  }
  100% {
    left: 0;
  }
}
.p-page__header {
  text-align: center;
  width: 100%;
  margin-bottom: 4rem;
}
@media (width <= 768px) {
  .p-page__header {
    margin-bottom: 2rem;
  }
}
@media (width <= 768px) {
  .p-page .c-inner {
    padding: 0 1.3333333333rem 2rem;
  }
}
.p-page article .h1,
.p-page article h1:not([class]) {
  display: inline-block;
  font-size: 2.4rem;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.6666666667rem;
  font-weight: 600;
  line-height: 1.4;
}
@media (width <= 768px) {
  .p-page article .h1,
  .p-page article h1:not([class]) {
    font-size: 1.8666666667rem;
    text-align: left;
    text-underline-offset: 0.3333333333rem;
    line-height: 1.6;
  }
}
.p-page article .h2,
.p-page article h2:not([class]) {
  font-size: 2.1333333333rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
@media (width <= 768px) {
  .p-page article .h2,
  .p-page article h2:not([class]) {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 1.3333333333rem;
  }
}
.p-page article .h2:not(:first-child),
.p-page article h2:not([class]):not(:first-child) {
  margin-top: 4rem;
}
@media (width <= 768px) {
  .p-page article .h2:not(:first-child),
  .p-page article h2:not([class]):not(:first-child) {
    margin-top: 2rem;
  }
}
.p-page article .h3,
.p-page article h3:not([class]) {
  font-size: 1.6666666667rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
@media (width <= 768px) {
  .p-page article .h3,
  .p-page article h3:not([class]) {
    font-size: 1.4666666667rem;
    line-height: 1.6;
    margin-bottom: 1.3333333333rem;
  }
}
.p-page article .h3:not(:first-child),
.p-page article h3:not([class]):not(:first-child) {
  margin-top: 4rem;
}
@media (width <= 768px) {
  .p-page article .h3:not(:first-child),
  .p-page article h3:not([class]):not(:first-child) {
    margin-top: 2rem;
  }
}
.p-page article .h4,
.p-page article h4:not([class]) {
  font-size: 1.5333333333rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
@media (width <= 768px) {
  .p-page article .h4,
  .p-page article h4:not([class]) {
    font-size: 1.3333333333rem;
    line-height: 1.6;
    margin-bottom: 1.3333333333rem;
  }
}
.p-page article .h4:not(:first-child),
.p-page article h4:not([class]):not(:first-child) {
  margin-top: 4rem;
}
@media (width <= 768px) {
  .p-page article .h4:not(:first-child),
  .p-page article h4:not([class]):not(:first-child) {
    margin-top: 2rem;
  }
}
.p-page article .h5,
.p-page article h5:not([class]) {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
@media (width <= 768px) {
  .p-page article .h5,
  .p-page article h5:not([class]) {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.3333333333rem;
  }
}
.p-page article .h5:not(:first-child),
.p-page article h5:not([class]):not(:first-child) {
  margin-top: 4rem;
}
@media (width <= 768px) {
  .p-page article .h5:not(:first-child),
  .p-page article h5:not([class]):not(:first-child) {
    margin-top: 2rem;
  }
}
.p-page article p:not([class]) {
  margin-bottom: 2em;
  line-height: 2;
}
.p-page article hr:not([class]) {
  height: 1px;
  margin: 4rem 0;
  background-color: rgba(53, 29, 12, 0.4);
}
.p-page article .p-list,
.p-page article ul:not([class]) {
  background-color: #f6f6f6;
  padding: 1.3333333333rem;
  display: flex;
  flex-wrap: wrap;
  list-style: disc;
}
.p-page article .p-list li,
.p-page article ul:not([class]) li {
  width: 100%;
  margin-left: 1.3333333333rem;
  padding: 0.3333333333rem 0;
}
.p-page article .p-list ul,
.p-page article ul:not([class]) ul {
  list-style: circle;
  padding: 0;
}
.p-page article .p-list ul li,
.p-page article ul:not([class]) ul li {
  width: 100% !important;
}
.p-page article .p-list.p-list--col1 li,
.p-page article ul:not([class]).p-list--col1 li {
  width: 100%;
}
.p-page article .p-list.p-list--col2 li,
.p-page article ul:not([class]).p-list--col2 li {
  width: calc(50% - 1.3333333333rem);
}
@media (width <= 768px) {
  .p-page article .p-list.p-list--col2 li,
  .p-page article ul:not([class]).p-list--col2 li {
    width: 100%;
  }
}
.p-page article .p-list.p-list--col3 li,
.p-page article ul:not([class]).p-list--col3 li {
  width: calc(33.3% - 1.3333333333rem);
}
@media (width <= 768px) {
  .p-page article .p-list.p-list--col3 li,
  .p-page article ul:not([class]).p-list--col3 li {
    width: 100%;
  }
}
.p-page article .p-table,
.p-page article table:not([class]) {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
@media (width <= 768px) {
  .p-page article .p-table tr:not(:last-child) td,
  .p-page article table:not([class]) tr:not(:last-child) td {
    border-bottom: none;
  }
}
.p-page article .p-table th,
.p-page article table:not([class]) th {
  background-color: #f6f6f6;
  padding: 0.6666666667rem 1.3333333333rem;
  font-weight: 600;
  border: 1px solid rgba(53, 29, 12, 0.4);
}
@media (width <= 768px) {
  .p-page article .p-table th,
  .p-page article table:not([class]) th {
    display: block;
    width: 100%;
    border-bottom: none;
    text-align: left;
  }
}
.p-page article .p-table td,
.p-page article table:not([class]) td {
  padding: 0.6666666667rem 1.3333333333rem;
  border: 1px solid rgba(53, 29, 12, 0.4);
}
@media (width <= 768px) {
  .p-page article .p-table td,
  .p-page article table:not([class]) td {
    display: block;
    width: 100%;
  }
}
.p-page article .p-table--multi {
  display: block;
  overflow-x: scroll;
}
@media (width <= 768px) {
  .p-page article .p-table--multi {
    white-space: nowrap;
  }
  .p-page article .p-table--multi th,
  .p-page article .p-table--multi td {
    display: table-cell;
  }
}
@media (width <= 768px) {
  .p-page article .p-table--no-index tr:first-of-type {
    display: none;
  }
}
.p-page article img {
  display: inline;
}

/* Utilities */
.u-mt0 {
  margin-top: 0px;
}

.u-mb0 {
  margin-bottom: 0px;
}

.u-mt10 {
  margin-top: 10px;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mt50 {
  margin-top: 50px;
}

.u-mb50 {
  margin-bottom: 50px;
}

.u-mt60 {
  margin-top: 60px;
}

.u-mb60 {
  margin-bottom: 60px;
}

.u-mt70 {
  margin-top: 70px;
}

.u-mb70 {
  margin-bottom: 70px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-mt90 {
  margin-top: 90px;
}

.u-mb90 {
  margin-bottom: 90px;
}

.u-mt100 {
  margin-top: 100px;
}

.u-mb100 {
  margin-bottom: 100px;
}

.u-pc {
  display: block;
}
@media (width <= 768px) {
  .u-pc {
    display: none;
  }
}
.u-pc--inline {
  display: inline;
}
@media (width <= 768px) {
  .u-pc--inline {
    display: none;
  }
}
.u-pc--iblock {
  display: inline-block;
}
@media (width <= 768px) {
  .u-pc--iblock {
    display: none;
  }
}
.u-pc--table {
  display: table;
}
@media (width <= 768px) {
  .u-pc--table {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media (width <= 768px) {
  .u-sp {
    display: block;
  }
}
.u-sp--inline {
  display: none;
}
@media (width <= 768px) {
  .u-sp--inline {
    display: inline;
  }
}
.u-sp--iblock {
  display: none;
}
@media (width <= 768px) {
  .u-sp--iblock {
    display: inline-block;
  }
}
.u-sp--table {
  display: none;
}
@media (width <= 768px) {
  .u-sp--table {
    display: table;
  }
}

.u-ofit {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.u-pos--absolute {
  position: absolute;
}
.u-pos--fixed {
  position: fixed;
}
.u-pos--relative {
  position: relative;
}

.u-text--default {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.u-text--marcellus {
  font-family: "Marcellus", serif;
}
.u-text--center {
  text-align: center;
}
.u-text--left {
  text-align: left;
}
.u-text--right {
  text-align: right;
}
.u-text--thin {
  font-weight: 100;
}
.u-text--extra-light {
  font-weight: 200;
}
.u-text--light {
  font-weight: 300;
}
.u-text--regular {
  font-weight: 400;
}
.u-text--medium {
  font-weight: 500;
}
.u-text--semi-bold {
  font-weight: 600;
}
.u-text--bold {
  font-weight: 700;
}
.u-text--extra-bold {
  font-weight: 800;
}
.u-text--black {
  font-weight: 900;
}
.u-text--big {
  font-size: 1.4em;
}
.u-text--regular {
  font-size: 1em;
}
.u-text--small {
  font-size: 0.8em;
}

.u-ellipsis {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
.u-ellipsis--2 {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.u-ellipsis--3 {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.u-ellipsis--4 {
  -webkit-line-clamp: 4;
  line-clamp: 4;
}
.u-ellipsis--5 {
  -webkit-line-clamp: 5;
  line-clamp: 5;
}

.u-color__yellow {
  color: yellow;
}

.u-fade-in {
  opacity: 0;
  transform: translateY(2rem);
  transition: 0.8s;
}
@media (width <= 768px) {
  .u-fade-in {
    transform: translateY(2rem);
  }
}
.u-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}