@charset "UTF-8";
:root {
  --font-size-base: 1rem;
  --font-family-ja: "Shippori Mincho", serif;
  --font-family-en: "EB Garamond", serif;
  --color-black: #3E3E3E;
  --color-gray: #DADADA;
  --color-gray-bg: #EBEBEB;
  --color-red: #CC0000;
  --color-red-1: #8D0000;
  --color-link: #fff;
  --color-link-1: rgb( 255 255 255 / .8);
  --line-height-base: 1.5;
  --line-height-large: 1.8;
  --header-height: 60px;
}

@media screen and (min-width: 768px) {
  :root {
    --line-height-large: 2;
    --header-height: 94px;
  }
}
* {
  box-sizing: border-box;
}

a, button, input, textarea {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
}

a {
  cursor: pointer;
  text-decoration: none;
}

p {
  line-height: var(--line-height-large);
}

ul, ol {
  list-style: none;
}

body {
  font-size: var(--font-size-base);
  font-family: var(--font-family-ja);
  color: var(--color-black);
  font-weight: 400;
  line-height: var(--line-height-base);
  letter-spacing: 0;
  font-feature-settings: "palt";
}

html {
  font-size: 4.2666666667vw;
}

@media screen and (min-width: 375px) {
  html {
    font-size: 100%;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 100%;
  }
}
/** utilities **/
.visibility--sp {
  display: block;
}

.visibility--pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .visibility--pc {
    display: block;
  }
  .visibility--sp {
    display: none;
  }
}
.text-brackets {
  letter-spacing: -0.24%;
}

/** layout **/
.spacer {
  padding-top: 700px;
}

.siteWrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  flex: 1;
  position: relative;
  z-index: 2;
}

.section {
  position: relative;
  z-index: 1;
}

footer {
  z-index: 1;
}

/** button **/
.button-1 {
  --_animation-translate: 0;
  width: 11rem;
  height: 3.125rem;
  display: flex;
  align-items: center;
  background-color: #fff;
  justify-content: space-between;
  padding: 4px;
}

.button-1__text {
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  font-weight: 400;
  font-family: var(--font-family-en);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  padding: 1.4285714286em;
}

.button-1__icon-wrapper {
  aspect-ratio: 1/1;
  height: 100%;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #E8E8E8;
}

.button-1__icon {
  position: relative;
  width: 0.625rem;
  aspect-ratio: 9/14;
  overflow: hidden;
}
.button-1__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  transform: translateX(var(--_animation-translate));
  transition: transform 0.3s ease-out;
}

.button-1__icon-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: calc(-50% - 10px) -50%;
  transition: transform 0.3s ease-out;
}

@media screen and (min-width: 768px) {
  .button-1:hover {
    --_animation-translate: 10px;
  }
}
.button-2 {
  --_animation-translate: 0;
  width: fit-content;
  min-width: 10.75rem;
  height: 3.125rem;
  display: flex;
  align-items: center;
  background-color: #fff;
  justify-content: space-between;
  padding: 2px;
}

.button-2__text {
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  font-weight: 400;
  font-family: var(--font-family-en);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  padding: 1.4285714286em;
}

.button-2__icon-wrapper {
  aspect-ratio: 1/1;
  height: 100%;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #E8E8E8;
}

.button-2__icon {
  position: relative;
  width: 0.625rem;
  aspect-ratio: 9/14;
  overflow: hidden;
}
.button-2__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  transform: translateY(var(--_animation-translate));
  transition: transform 0.3s ease-out;
}

.button-2__icon-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% calc(-50% - 15px);
  transition: transform 0.3s ease-out;
}

@media screen and (min-width: 768px) {
  .button-2:hover {
    --_animation-translate: 15px;
  }
}
/*#################################
パンクズ
#################################*/
.breadcrumb {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  min-width: 0;
}

.breadcrumb > span,
.breadcrumb > span > a,
.breadcrumb > span > span {
  display: inline-block;
  white-space: nowrap;
  vertical-align: middle;
}

.breadcrumb > span:last-of-type {
  overflow: hidden;
  min-width: 0;
  flex-shrink: 1;
}

.breadcrumb svg {
  flex-shrink: 0;
  margin-bottom: -0.1875rem;
}

.breadcrumb > span:last-of-type > a,
.breadcrumb > span:last-of-type > span {
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/*#################################
お知らせ下層ページタイトル
#################################*/
.sub-news-title {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-top: 29px;
}

.sub-news-title__en {
  font-size: 1rem;
  line-height: 21px;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: var(--color-red);
  font-family: var(--font-family-en);
}

.sub-news-title__ja {
  font-size: 1.6875rem;
  line-height: 20px;
  letter-spacing: 0.04em;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .sub-news-title {
    margin-top: 0;
    gap: 24px;
  }
  .sub-news-title__ja {
    font-size: 32px;
    line-height: 23px;
    letter-spacing: 0.04em;
  }
}
.header {
  display: inline-flex;
  align-items: center;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  height: var(--header-height);
  width: 100%;
  overflow: hidden;
}
.header::after {
  content: "";
  display: block;
  transition: 0.6s ease;
  width: 100%;
  z-index: 998;
  position: fixed;
  top: 0;
  left: 0;
  height: var(--header-height);
  opacity: 0;
  visibility: hidden;
}
.header.bg-black::after {
  transition: 0.6s ease;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  opacity: 1;
  visibility: visible;
}

.header__inner {
  flex-shrink: 0;
  width: 100%;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
  transition: transform 0.3s ease;
}
.header__inner.is-hidden {
  transform: translateY(-100%);
}

.header__main {
  display: flex;
  width: fit-content;
  gap: 40px;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 999;
}

@media screen and (min-width: 768px) {
  .header {
    height: var(--header-height);
    width: fit-content;
  }
  .header__inner {
    padding-left: 40px;
    padding-right: 0px;
    justify-content: flex-start;
    width: fit-content;
  }
}
/** logo **/
.header__logo {
  width: 192px;
  flex-shrink: 0;
  display: block;
  opacity: 0.8;
}
.header__logo img {
  display: block;
  width: 100%;
  aspect-ratio: 222/47;
  height: auto;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .header__logo {
    width: 224px;
  }
}
/** nav **/
.header__nav {
  display: none;
}

@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
    position: absolute;
    top: 0;
    left: 300px;
    z-index: 2;
    height: var(--header-height);
    width: fit-content;
  }
  .header__nav-list {
    height: inherit;
    display: flex;
    align-items: center;
    gap: 16px;
    letter-spacing: 0.04em;
    color: var(--color-black);
  }
  .header__nav-item a {
    --_translate: 0;
    --_opacity: 0;
    position: relative;
  }
  .header__nav-item a div {
    transition: transform 0.3s ease-out;
    transform: translateX(var(--_translate));
  }
  .header__nav-item a::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #3e3e3e;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    opacity: var(--_opacity);
    transition: opacity 0.3s ease-out;
  }
  .header__nav-item a:hover {
    --_translate: 7px;
    --_opacity: 1;
  }
}
/** article link **/
.article-link {
  --_button-background-color: rgb(255 255 255 / .8);
  --_button-opacity: .2;
  --_translate: 0;
  position: fixed;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  border: 2px solid transparent;
  width: min(100% - 32px, 475px);
  height: 50px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  z-index: 1;
  transition: filter 0.3s ease-out, opacity 0.3s ease-out;
}
.article-link.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.article-link.article-link--nav {
  position: static;
  margin-inline: auto;
}

.article-link-image,
.article-link-content {
  transform: translateX(var(--_translate));
  transition: transform 0.3s ease-out;
}

.article-link-image {
  width: min(100%, 92px);
}
.article-link-image img {
  display: block;
  width: 100%;
  aspect-ratio: 92/46;
  height: auto;
  object-fit: cover;
}

.article-link-content {
  margin-left: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
}

.article-link-time {
  font-family: var(--font-family-en);
  font-size: 0.75rem;
}

.article-link-title {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.article-link-button {
  position: relative;
  height: 100%;
  aspect-ratio: 1/1;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.article-link-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--_button-background-color);
  opacity: var(--_button-opacity);
  transition: all 0.3s ease-out;
}
.article-link-button svg {
  transition: fill 0.3s ease-out;
  fill: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .article-link:hover {
    --_button-opacity: 1;
    --_button-background-color: rgb(255 255 255 / 1);
    --_translate: 7px;
  }
  .article-link:hover .article-link-button svg {
    fill: #000;
  }
  .article-link-time {
    font-size: 1rem;
  }
  .article-link-title {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1024px) {
  .article-link-content {
    gap: 16px;
  }
  .article-link-content {
    flex-direction: row;
    align-items: center;
  }
  .article-link {
    bottom: auto;
    top: 24px;
    right: 24px;
  }
}
/** hamburger button **/
.header__hamburger {
  flex-shrink: 0;
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
  background-color: transparent;
  border: none;
  padding: 0;
  z-index: 999;
}
.header__hamburger span {
  display: block;
  width: 100%;
  background-color: var(--color-black);
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease-out;
}
.header__hamburger span:first-child {
  translate: -50% calc(-50% - 3px);
}
.header__hamburger span:nth-child(2) {
  translate: -50% calc(-50% + 3px);
}

.header__hamburger.is-active span:first-child {
  translate: -50% -50%;
  rotate: 20deg;
  background-color: #fff;
}
.header__hamburger.is-active span:nth-child(2) {
  translate: -50% -50%;
  rotate: -20deg;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}
/** sp nav **/
.header__sp-nav {
  display: block;
  width: 100%;
  background-color: var(--color-black);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  color: #fff;
  padding-top: 130px;
  padding-bottom: 150px;
  height: 100%;
  max-height: 100vh;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
}

.header__sp-nav.is-active {
  transform: translateX(0);
}

.header__sp-nav-list {
  margin-bottom: 32px;
  --_inner: 40px;
  width: calc(100% - var(--_inner) * 2);
  margin-inline: auto;
}

.header__sp-nav-item a {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid rgba(217, 217, 217, 0.2);
  transition: color 0.3s ease;
}

.header__sp-nav-item-en {
  font-size: 1.125rem;
  font-family: var(--font-family-en);
  letter-spacing: 0.04em;
}

.header__sp-nav-item-ja {
  font-size: 0.875rem;
}

.header__sp-nav-list-bottom {
  margin-bottom: 85px;
  padding-inline: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

@media screen and (min-width: 768px) {
  .header__sp-nav {
    display: none;
  }
}
.sub-news {
  padding: 84px 0 70px;
  background-color: var(--color-gray-bg);
}

.sub-news__button {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

@media screen and (min-width: 768px) {
  .sub-news {
    padding: 79px 0 104px;
  }
  .sub-news__button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
}
.sub-news__container {
  --_inner-padding: 20px;
  width: 100%;
  margin-inline: auto;
  margin-right: 0;
  padding-inline: var(--_inner-padding);
}

@media screen and (min-width: 768px) {
  .sub-news__container {
    width: 100%;
    margin-right: auto;
    --_inner-padding: 40px;
    display: block;
    padding: var(--_inner-padding);
  }
  .sub-news__body {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .sub-news__container {
    grid-template-columns: auto 1fr;
    gap: 55px;
  }
}
.sub-news__header {
  display: contents;
}

.sub-news__header-title {
  font-size: 2rem;
  font-weight: 400;
  font-family: var(--font-family-en);
  text-transform: uppercase;
  color: var(--color-red);
  margin-left: 20px;
}

.sub-news__header-link {
  order: 2;
  margin-inline: auto;
  min-width: 17.875rem;
}

.sub-news__button--more .sub-news__header-link {
  min-width: 10.75rem;
}

@media screen and (min-width: 1024px) {
  .sub-news__header {
    padding-top: 54px;
    display: block;
  }
  .sub-news__header-title {
    margin-bottom: 40px;
    margin-left: initial;
  }
  .sub-news__button--more .sub-news__header-link {
    min-width: 10.75rem;
  }
}
.sub-news__cat-tabs {
  margin: 36px 0;
}

.sub-news__cat-tab-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media screen and (min-width: 768px) {
  .sub-news__header-link {
    margin: initial;
    min-width: 17.875rem;
  }
}
.sub-news__cat-tab__link {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.12em;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px;
  min-width: 80px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--color-black);
  transition: 0.3s;
}
.sub-news__cat-tab__link.current {
  color: rgba(255, 255, 255, 0.8);
  background-color: var(--color-black);
}

@media screen and (min-width: 768px) {
  .sub-news__cat-tabs {
    --_inner: 25px;
    max-width: 1020px;
    padding-inline: var(--_inner);
    margin-inline: auto;
    margin-block: 40px;
  }
  .sub-news__body {
    --_inner: 25px;
    max-width: 1020px;
    padding-inline: var(--_inner);
    margin-inline: auto;
  }
  .sub-news__cat-tab__link:hover {
    color: rgba(255, 255, 255, 0.8);
    background-color: var(--color-black);
    transition: 0.3s;
  }
}
.single-news {
  padding: 84px 0 70px;
  background-color: var(--color-gray-bg);
}

.single-news__button {
  margin-top: 40px;
}

.single-news__body {
  margin-top: 36px;
}

.single-news__thumbnail img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 335/189;
  object-fit: cover;
  vertical-align: middle;
}

.single-news__title {
  margin-top: 28px;
  font-size: 1.75rem;
  line-height: 1.6;
  letter-spacing: 0.12em;
  font-weight: 400;
  font-family: var(--font-family-ja);
}

.single-news__meta {
  padding: 24px 0 32px;
  display: flex;
  align-items: center;
  gap: 27px;
  border-bottom: 1px solid var(--color-gray);
}

.single-news__date {
  font-size: 1rem;
  line-height: 1.3125;
  letter-spacing: 0.02em;
  font-weight: 400;
  font-family: var(--font-family-en);
}

.single-news__category {
  font-size: 0.75rem;
  padding: 3.5px 6.5px;
  border: 1px solid var(--color-black);
  line-height: 1;
  min-width: 3.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-news__contents .mt-1 {
  margin-top: 1px;
}
.single-news__contents .mt-2 {
  margin-top: 2px;
}
.single-news__contents .mt-3 {
  margin-top: 3px;
}
.single-news__contents .mt-4 {
  margin-top: 4px;
}
.single-news__contents .mt-5 {
  margin-top: 5px;
}
.single-news__contents .mt-6 {
  margin-top: 6px;
}
.single-news__contents .mt-7 {
  margin-top: 7px;
}
.single-news__contents .mt-8 {
  margin-top: 8px;
}
.single-news__contents .mt-9 {
  margin-top: 9px;
}
.single-news__contents .mt-10 {
  margin-top: 10px;
}
.single-news__contents .mt-11 {
  margin-top: 11px;
}
.single-news__contents .mt-12 {
  margin-top: 12px;
}
.single-news__contents .mt-13 {
  margin-top: 13px;
}
.single-news__contents .mt-14 {
  margin-top: 14px;
}
.single-news__contents .mt-15 {
  margin-top: 15px;
}
.single-news__contents .mt-16 {
  margin-top: 16px;
}
.single-news__contents .mt-17 {
  margin-top: 17px;
}
.single-news__contents .mt-18 {
  margin-top: 18px;
}
.single-news__contents .mt-19 {
  margin-top: 19px;
}
.single-news__contents .mt-20 {
  margin-top: 20px;
}
.single-news__contents .mt-21 {
  margin-top: 21px;
}
.single-news__contents .mt-22 {
  margin-top: 22px;
}
.single-news__contents .mt-23 {
  margin-top: 23px;
}
.single-news__contents .mt-24 {
  margin-top: 24px;
}
.single-news__contents .mt-25 {
  margin-top: 25px;
}
.single-news__contents .mt-26 {
  margin-top: 26px;
}
.single-news__contents .mt-27 {
  margin-top: 27px;
}
.single-news__contents .mt-28 {
  margin-top: 28px;
}
.single-news__contents .mt-29 {
  margin-top: 29px;
}
.single-news__contents .mt-30 {
  margin-top: 30px;
}
.single-news__contents .mt-31 {
  margin-top: 31px;
}
.single-news__contents .mt-32 {
  margin-top: 32px;
}
.single-news__contents .mt-33 {
  margin-top: 33px;
}
.single-news__contents .mt-34 {
  margin-top: 34px;
}
.single-news__contents .mt-35 {
  margin-top: 35px;
}
.single-news__contents .mt-36 {
  margin-top: 36px;
}
.single-news__contents .mt-37 {
  margin-top: 37px;
}
.single-news__contents .mt-38 {
  margin-top: 38px;
}
.single-news__contents .mt-39 {
  margin-top: 39px;
}
.single-news__contents .mt-40 {
  margin-top: 40px;
}
.single-news__contents .mt-41 {
  margin-top: 41px;
}
.single-news__contents .mt-42 {
  margin-top: 42px;
}
.single-news__contents .mt-43 {
  margin-top: 43px;
}
.single-news__contents .mt-44 {
  margin-top: 44px;
}
.single-news__contents .mt-45 {
  margin-top: 45px;
}
.single-news__contents .mt-46 {
  margin-top: 46px;
}
.single-news__contents .mt-47 {
  margin-top: 47px;
}
.single-news__contents .mt-48 {
  margin-top: 48px;
}
.single-news__contents .mt-49 {
  margin-top: 49px;
}
.single-news__contents .mt-50 {
  margin-top: 50px;
}
.single-news__contents .mt-51 {
  margin-top: 51px;
}
.single-news__contents .mt-52 {
  margin-top: 52px;
}
.single-news__contents .mt-53 {
  margin-top: 53px;
}
.single-news__contents .mt-54 {
  margin-top: 54px;
}
.single-news__contents .mt-55 {
  margin-top: 55px;
}
.single-news__contents .mt-56 {
  margin-top: 56px;
}
.single-news__contents .mt-57 {
  margin-top: 57px;
}
.single-news__contents .mt-58 {
  margin-top: 58px;
}
.single-news__contents .mt-59 {
  margin-top: 59px;
}
.single-news__contents .mt-60 {
  margin-top: 60px;
}
.single-news__contents .mt-61 {
  margin-top: 61px;
}
.single-news__contents .mt-62 {
  margin-top: 62px;
}
.single-news__contents .mt-63 {
  margin-top: 63px;
}
.single-news__contents .mt-64 {
  margin-top: 64px;
}
.single-news__contents .mt-65 {
  margin-top: 65px;
}
.single-news__contents .mt-66 {
  margin-top: 66px;
}
.single-news__contents .mt-67 {
  margin-top: 67px;
}
.single-news__contents .mt-68 {
  margin-top: 68px;
}
.single-news__contents .mt-69 {
  margin-top: 69px;
}
.single-news__contents .mt-70 {
  margin-top: 70px;
}
.single-news__contents .mt-71 {
  margin-top: 71px;
}
.single-news__contents .mt-72 {
  margin-top: 72px;
}
.single-news__contents .mt-73 {
  margin-top: 73px;
}
.single-news__contents .mt-74 {
  margin-top: 74px;
}
.single-news__contents .mt-75 {
  margin-top: 75px;
}
.single-news__contents .mt-76 {
  margin-top: 76px;
}
.single-news__contents .mt-77 {
  margin-top: 77px;
}
.single-news__contents .mt-78 {
  margin-top: 78px;
}
.single-news__contents .mt-79 {
  margin-top: 79px;
}
.single-news__contents .mt-80 {
  margin-top: 80px;
}
.single-news__contents .mt-81 {
  margin-top: 81px;
}
.single-news__contents .mt-82 {
  margin-top: 82px;
}
.single-news__contents .mt-83 {
  margin-top: 83px;
}
.single-news__contents .mt-84 {
  margin-top: 84px;
}
.single-news__contents .mt-85 {
  margin-top: 85px;
}
.single-news__contents .mt-86 {
  margin-top: 86px;
}
.single-news__contents .mt-87 {
  margin-top: 87px;
}
.single-news__contents .mt-88 {
  margin-top: 88px;
}
.single-news__contents .mt-89 {
  margin-top: 89px;
}
.single-news__contents .mt-90 {
  margin-top: 90px;
}
.single-news__contents .mt-91 {
  margin-top: 91px;
}
.single-news__contents .mt-92 {
  margin-top: 92px;
}
.single-news__contents .mt-93 {
  margin-top: 93px;
}
.single-news__contents .mt-94 {
  margin-top: 94px;
}
.single-news__contents .mt-95 {
  margin-top: 95px;
}
.single-news__contents .mt-96 {
  margin-top: 96px;
}
.single-news__contents .mt-97 {
  margin-top: 97px;
}
.single-news__contents .mt-98 {
  margin-top: 98px;
}
.single-news__contents .mt-99 {
  margin-top: 99px;
}
.single-news__contents .mt-100 {
  margin-top: 100px;
}
.single-news__contents * {
  font-size: 0.875rem;
  line-height: 2.4;
  letter-spacing: 0.12em;
}
.single-news__contents h2 {
  margin-top: 48px;
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 700;
  font-family: var(--font-family-ja);
}
.single-news__contents h3 {
  margin-top: 16px;
  font-size: 1.125rem;
  line-height: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}
.single-news__contents h3::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1px;
  background-color: var(--color-black);
  margin-bottom: -5px;
}
.single-news__contents p {
  font-size: 0.875rem;
  line-height: 2.4;
  margin-top: 12px;
}
.single-news__contents a {
  text-decoration: none;
  position: relative;
}
.single-news__contents a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right;
  transition: transform 0.4s ease;
}
.single-news__contents a:hover::before {
  transform: scaleX(0);
}
.single-news__contents a[target=_blank] {
  display: inline-block;
}
.single-news__contents a[target=_blank]::before {
  bottom: 0.375rem;
  width: calc(100% - 1.875rem);
}
.single-news__contents a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(./images/common/another-link.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: -0.375rem;
}
.single-news__contents img {
  width: 100%;
  vertical-align: middle;
}
.single-news__contents figcaption {
  margin-top: 16px;
}
.single-news__contents ul {
  border: 1px solid rgba(62, 62, 62, 0.3);
  padding: 2.5rem 1.25rem;
  list-style: none;
}
.single-news__contents ul li {
  position: relative;
  padding-left: 18px;
  line-height: 2;
}
.single-news__contents ul li + li {
  margin-top: 8px;
}
.single-news__contents ul li::before {
  content: "・";
  position: absolute;
  left: -0.3125rem;
}
.single-news__contents ol {
  list-style: none;
  padding-left: 0;
  border: 1px solid rgba(62, 62, 62, 0.3);
  padding: 2.5rem 1.25rem;
}
.single-news__contents ol li:nth-child(1)::before {
  content: "①";
}
.single-news__contents ol li:nth-child(2)::before {
  content: "②";
}
.single-news__contents ol li:nth-child(3)::before {
  content: "③";
}
.single-news__contents ol li:nth-child(4)::before {
  content: "④";
}
.single-news__contents ol li:nth-child(5)::before {
  content: "⑤";
}
.single-news__contents ol li:nth-child(6)::before {
  content: "⑥";
}
.single-news__contents ol li:nth-child(7)::before {
  content: "⑦";
}
.single-news__contents ol li:nth-child(8)::before {
  content: "⑧";
}
.single-news__contents ol li:nth-child(9)::before {
  content: "⑨";
}
.single-news__contents ol li:nth-child(10)::before {
  content: "⑩";
}
.single-news__contents ol li:nth-child(11)::before {
  content: "⑪";
}
.single-news__contents ol li:nth-child(12)::before {
  content: "⑫";
}
.single-news__contents ol li:nth-child(13)::before {
  content: "⑬";
}
.single-news__contents ol li:nth-child(14)::before {
  content: "⑭";
}
.single-news__contents ol li:nth-child(15)::before {
  content: "⑮";
}
.single-news__contents ol li:nth-child(16)::before {
  content: "⑯";
}
.single-news__contents ol li:nth-child(17)::before {
  content: "⑰";
}
.single-news__contents ol li:nth-child(18)::before {
  content: "⑱";
}
.single-news__contents ol li:nth-child(19)::before {
  content: "⑲";
}
.single-news__contents ol li:nth-child(20)::before {
  content: "⑳";
}
.single-news__contents ol li {
  position: relative;
  padding-left: 1.5em;
  line-height: 2;
}
.single-news__contents ol li + li {
  margin-top: 8px;
}
.single-news__contents ol li::before {
  position: absolute;
  left: 0;
}
.single-news__contents .bg-white {
  background-color: #fff;
  padding: 2.5rem 1.25rem;
}
.single-news__contents figcaption {
  text-align: center;
  line-height: 2;
}

@media screen and (min-width: 768px) {
  .single-news {
    padding: 80px 0 99px;
  }
  .single-news__body {
    max-width: 906px;
    padding-inline: 25px;
    width: 100%;
    margin-inline: auto;
  }
  .single-news__title {
    margin-top: 48px;
  }
  .single-news__meta {
    padding: 30px 0 40px;
    gap: 43px;
  }
  .single-news__contents h2 {
    font-size: 1.5rem;
  }
  .single-news__contents ul {
    padding: 40px 32px;
  }
  .single-news__contents ul li {
    padding-left: 20px;
  }
  .single-news__contents ol {
    padding: 40px 32px;
  }
  .single-news__contents ol li {
    padding-left: 20px;
  }
  .single-news__contents .bg-white {
    padding: 2rem;
  }
}
.cards-news {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
}

.card-news:first-child a {
  border-top: 1px solid var(--color-gray);
}

.card-news a {
  --_translate: 0;
  --_button-background-color: rgb(255 255 255 / .8);
  --_button-color: var(--color-black);
  --_button-move-animation: 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-shrink: 0;
  padding: 32px 0;
  border-bottom: 1px solid #DADADA;
}

.card-news__header {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-bottom: 24px;
}

.card-news__date {
  font-family: var(--font-family-en);
  letter-spacing: 0.02em;
}

.card-news__category {
  font-size: 0.75rem;
  padding: 3.5px 6.5px;
  border: 1px solid var(--color-black);
  line-height: 1;
  min-width: 3.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-news__figure {
  width: 100%;
  margin-bottom: 12px;
}
.card-news__figure img {
  display: block;
  width: 100%;
  aspect-ratio: 107/60;
}

.card-news__title {
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  font-weight: 400;
}

.card-news__description {
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.card-news__button-cover {
  display: none;
}

.card-news__content {
  padding-right: 30px;
}

@media screen and (min-width: 768px) {
  .cards-news {
    display: block;
    padding-bottom: 0px;
    overflow-x: visible;
  }
  .card-news {
    padding-left: initial;
    padding-right: initial;
  }
  .card-news:first-child {
    padding-left: 0px;
    margin-left: 0px;
    border-left: none;
  }
  .card-news a {
    flex-direction: row;
    width: 100%;
    gap: 0;
    padding: 40px 0px 31px;
    flex-shrink: 1;
    border-bottom: 1px solid var(--color-gray);
    transition: filter 0.3s;
    background-color: var(--color-gray-bg);
    align-items: flex-start;
  }
  .card-news a:hover {
    --_translate: 12px;
    --_button-background-color: var(--color-black);
    --_button-color: #DADADA;
    --_button-move-animation: 10px;
  }
  .card-news__header,
  .card-news__content,
  .card-news__figure {
    transition: transform 0.3s ease-out;
    transform: translateX(var(--_translate));
  }
  .card-news__figure {
    margin-left: 32px;
    width: 11.0309278351%;
  }
  .card-news__content {
    flex: 1;
    margin-left: 24px;
    margin-top: -7px;
    padding-right: 0;
  }
  .card-news__button-cover {
    display: block;
    height: 100%;
    margin-left: 32px;
  }
  .card-news__button {
    width: 46px;
    aspect-ratio: 1/1;
    background-color: var(--_button-background-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--_button-color);
    position: relative;
    transition: all 0.3s ease-out;
  }
  .card-news__button-content {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 0.5625rem;
    overflow: hidden;
  }
  .card-news__button-content svg {
    width: 100%;
    aspect-ratio: 9/14;
    display: block;
    transform: translateX(var(--_button-move-animation));
    transition: transform 0.3s ease-out;
  }
  .card-news__button-icon-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: calc(-50% - 12px) -50%;
  }
}
.footer {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px 0 75px;
  color: var(--color-black);
  background-color: #FDFDFD;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.footer__inner {
  --_inner: 20px;
  position: relative;
  width: calc(100% - var(--_inner) * 2);
  margin-inline: auto;
}

.footer__top {
  display: flex;
  justify-content: space-between;
}

.footer__name {
  font-size: 2.375rem;
  line-height: 1em;
  writing-mode: vertical-rl;
}

@media screen and (min-width: 768px) {
  .footer__inner {
    --_inner: 64px;
  }
  .footer__name {
    font-size: 3.625rem;
  }
}
/** nav **/
.footer__nav {
  margin-bottom: 25px;
  display: flex;
  gap: 40px;
  flex-direction: column;
  justify-content: flex-end;
}

.footer__nav-list {
  display: flex;
  gap: 12px;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  justify-content: flex-end;
  text-align: right;
}

.footer__nav-item--mails {
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .footer__nav {
    margin-bottom: 24px;
    gap: 40px;
  }
  .footer__nav-list {
    gap: 24px;
    font-size: 0.75rem;
  }
  .footer__nav-item--mails {
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .footer__nav {
    display: flex;
    flex-direction: row;
    gap: 24px;
  }
  .footer__nav-list {
    justify-content: initial;
  }
}
.footer__nav-item a {
  position: relative;
  display: block;
  transition: transform 0.3s ease-out;
}

.footer__nav-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-end;
}

.footer__nav-link-email {
  display: block;
}

@media screen and (min-width: 768px) {
  .footer__nav-item a:hover {
    transform: translateX(4px);
  }
}
/** button **/
.footer__button {
  --_icon-move-animation: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  position: absolute;
  top: 100%;
  left: 0;
  translate: 0 -100%;
}

.footer__button-text {
  font-family: var(--font-family-en);
}

.footer__button-icon-wrapper {
  position: relative;
  width: 0.5625rem;
  aspect-ratio: 9/14;
  display: block;
  overflow: hidden;
}

.footer__button-icon-hover,
.footer__button-icon {
  rotate: -90deg;
  display: block;
}

.footer__button-icon {
  transition: translate 0.3s ease-out;
}

.footer__button-icon-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% calc(-50% + 11px);
  transition: translate 0.3s ease-out;
}

@media screen and (min-width: 768px) {
  .footer__button {
    margin-bottom: 37px;
    position: static;
    translate: 0 0;
  }
  .footer__button:hover .footer__button-icon-hover {
    translate: -50% -50%;
  }
  .footer__button:hover .footer__button-icon {
    translate: 0 -11px;
  }
}
/** logo **/
.footer__logo {
  margin-bottom: 16px;
  width: min(100%, 215px);
  margin-inline-start: auto;
}
.footer__logo img {
  display: block;
  width: 100%;
  aspect-ratio: 373/80;
  height: auto;
}

@media screen and (min-width: 768px) {
  .footer__logo {
    margin-bottom: 28px;
    width: min(100%, 373px);
  }
}
/** copyright **/
.footer__copyright {
  font-size: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer__copyright-notice {
  display: none;
}

.footer__copyright-text {
  font-family: var(--font-family-en);
  letter-spacing: 0.02em;
}

@media screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 0.75rem;
    margin-top: -24px;
  }
  .footer__copyright-notice {
    display: block;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }
  .footer__copyright-text {
    position: relative;
    padding-left: 2em;
    margin-left: 2em;
  }
  .footer__copyright-text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 0.875em;
    transform: translateY(-50%);
    background-color: var(--color-gray);
  }
}

/*# sourceMappingURL=style.css.map */
