@charset "UTF-8";
/* SPファースト */
@media (max-width: 767px) {
  html {
    font-size: 2.2857142857vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.5384615385vw;
  }
}
@media (min-width: 1040px) {
  html {
    font-size: 16px;
  }
}

/* フォントウェイトとフォントカラーは、使用頻度が多いものを選択する */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #000000;
  line-height: 1;
  position: relative;
  background-image: url(../../assets/images/common/main-bg.png);
  background-repeat: repeat;
  background-position: center center;
  background-size: contain;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

a {
  transition: opacity 0.3s, color 0.3s;
  text-decoration: none;
  color: #000;
}
a:hover {
  opacity: 0.6;
}

/* PC版Chromeで拡縮画像ぼやけ対策 */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
/* iPhoneSafariで画像ジャギ対策 */
img {
  image-rendering: auto;
}

/* コンテンツ量が少なく短いページでもフッターを最下部に表示する ---- */
.content-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* コンテンツ量が少なく短いページでもフッターを最下部に表示する ここまで ---- */
/* YouTubeのframeborder属性の変わり(HTML5の標準仕様で廃止されているため) */
iframe {
  border: none;
}

.link-none {
  pointer-events: none;
}

/* ------------------------ */
/* 改行用、SP・PC非表示用の設定 */
/* ------------------------ */
/* ---------- 改行 〜 more：以上、less：以下 | ここから ---------- */
/* 414px以下で改行 */
@media screen and (min-width: 414px) {
  .br-414-less {
    display: none;
  }
}

/* 500px以下で改行 */
@media screen and (min-width: 500px) {
  .br-500-less {
    display: none;
  }
}

/* 768px以下で改行 */
@media screen and (min-width: 768px) {
  .br-768-less {
    display: none;
  }
}

/* 768px以上で改行 */
.br-768-more {
  display: none;
}
@media screen and (min-width: 768px) {
  .br-768-more {
    display: block;
  }
}

/* 1000px以下で改行 */
@media screen and (min-width: 768px) {
  .br-1000-less {
    display: none;
  }
}

/* 1000px以上で改行 */
.br-1000-more {
  display: none;
}
@media screen and (min-width: 1000px) {
  .br-1000-more {
    display: block;
  }
}

/* 1480px以上で改行 */
.br-1480-more {
  display: none;
}
@media screen and (min-width: 1480px) {
  .br-1480-more {
    display: block;
  }
}

/* 1920px以上で改行 */
.br-1920-more {
  display: none;
}
@media screen and (min-width: 1920px) {
  .br-1920-more {
    display: block;
  }
}

/* ---------- 改行 | ここまで ---------- */
/* ---------- 表示・非表示 〜 more：以上、less：以下 | ここから ---------- */
/* PCのとき非表示 */
@media screen and (min-width: 768px) {
  .pc-none {
    display: none;
  }
}

/* SPのとき非表示 */
.sp-none {
  display: none;
}
@media screen and (min-width: 768px) {
  .sp-none {
    display: block;
  }
}

/* SPのとき非表示（インライン要素ver） */
.sp-none-inline-block {
  display: none;
}
@media screen and (min-width: 768px) {
  .sp-none-inline-block {
    display: inline-block;
  }
}

/* ---------- 表示・非表示 〜 more：以上、less：以下 | ここまで ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

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

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

ul,
ol {
  list-style: none;
}

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

a {
  text-decoration: none;
}

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

article > * + * {
  margin-top: 1em;
}

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

img:not([alt]) {
  filter: blur(10px);
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.about__heading-2 {
  font-size: 1.25rem;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .about__heading-2 {
    font-size: 1.25rem;
  }
}

.about__text01 {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .about__text01 {
    font-size: 2rem;
  }
}

.about__text02 {
  font-size: 100px;
}

.about__box {
  padding: 1.875rem 1.25rem;
}

.about__wrapper {
  max-width: 62.5rem;
  width: 100%;
  background-color: #5e5dee;
  margin: auto;
  padding: 3.125rem;
}

.about__img {
  max-width: 31.25rem;
  width: 100%;
  margin: auto;
}

.about__img img {
  width: 100%;
  aspect-ratio: 700/450;
  object-fit: cover;
}

.archive-event {
  padding-top: 21.5625rem;
  padding-bottom: 12.6875rem;
}
@media screen and (min-width: 768px) {
  .archive-event {
    padding-top: 20.625rem;
    padding-bottom: 12.5rem;
  }
}

.archive-event__heading {
  margin-bottom: 9.375rem;
}
@media screen and (min-width: 768px) {
  .archive-event__heading {
    margin-bottom: 13.4375rem;
    padding-left: 7.5rem;
  }
}

.archive-event__heading-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #000;
  font-size: 2.25rem;
  line-height: 1.0555;
}
@media screen and (min-width: 768px) {
  .archive-event__heading-title {
    font-size: 1.75rem;
    line-height: 1.3571;
  }
}

.archive-event__heading-en {
  font-weight: 500;
  line-height: 1.6666;
  color: #000;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  line-height: 1.6;
  margin-top: 1rem;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .archive-event__heading-en {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }
}

.archive-event__wrap {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .archive-event__wrap {
    grid-template-columns: 16.25rem 1fr;
  }
}

.archive-event__filter {
  margin-bottom: 9.25rem;
}
@media screen and (min-width: 768px) {
  .archive-event__filter {
    margin-bottom: 0;
  }
}

.archive-event__filter-title {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3846;
  color: #000;
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  line-height: 1.4;
  padding-bottom: 30px;
  border-bottom: 1px solid #000;
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .archive-event__filter-title {
    font-size: 0.8125rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0;
    border-bottom: none;
    pointer-events: none;
  }
}

.archive-event__filter-title:after {
  content: "";
  position: absolute;
  background: url(../../assets/images/event/event-arrow.png) no-repeat center center/contain;
  width: 1.25rem;
  height: 0.625rem;
  top: 20%;
  right: 0.6875rem;
  transition: all 0.5s;
}
@media screen and (min-width: 768px) {
  .archive-event__filter-title:after {
    content: none;
  }
}

.archive-event__filter-title.active:after {
  transform: rotate(-180deg);
}

.archive-event__filter-title img {
  max-width: 1.9375rem;
  margin-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .archive-event__filter-title img {
    max-width: 1.25rem;
    margin-right: 0.75rem;
  }
}

.archive-event__filter-category {
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .archive-event__filter-category {
    margin-bottom: 3.75rem;
  }
}

.archive-event__filter-list {
  display: none;
  padding-top: 3.125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .archive-event__filter-list {
    display: block;
    padding-top: 0;
    text-align: left;
  }
}

.archive-event__filter-list li {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .archive-event__filter-list li {
    display: block;
  }
}

.archive-event__filter-list-item-mid {
  padding: 0 2.5rem;
  margin: 0 2.5rem;
  border-right: 1px solid #000;
  border-left: 1px solid #000;
}
@media screen and (min-width: 768px) {
  .archive-event__filter-list-item-mid {
    padding: 0;
    margin: 0;
    border-right: none;
    border-left: none;
  }
}

.archive-event__filter-list a {
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.8333;
  transition: all 0.3s;
  position: relative;
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .archive-event__filter-list a {
    font-size: 0.75rem;
    margin-bottom: 0.625rem;
    display: inline-block;
    color: #000;
  }
}

@media screen and (min-width: 768px) {
  .archive-event__filter-list a:after {
    content: "";
    position: absolute;
    background: url(../../assets/images/event/event-logo.png) no-repeat center center/contain;
    width: 10px;
    height: 10px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s;
  }
}

@media screen and (min-width: 768px) {
  .archive-event__filter-list a:hover {
    opacity: 1;
    padding-left: 0.8125rem;
  }
}

.archive-event__filter-list a:hover:after {
  opacity: 1;
}

.archive-event__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7.5625rem 0;
}
@media screen and (min-width: 768px) {
  .archive-event__list {
    grid-template-columns: 1fr 1fr;
    gap: 7.5rem 3.75rem;
  }
}

.archive-event__list-item a:hover {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .archive-event__list-wrap {
    height: 323px;
    position: relative;
    z-index: 2;
  }
}

@media screen and (min-width: 768px) {
  .archive-event__list-img {
    position: relative;
    z-index: 2;
    overflow: hidden;
  }
}

@media screen and (min-width: 768px) {
  .archive-event__list-img img {
    transition: all 0.3s;
    height: 323px;
    width: 100%;
    object-fit: cover;
  }
}

@media screen and (min-width: 768px) {
  .archive-event__list-wrap:hover .archive-event__list-img img {
    height: 250px;
    transform: scale(1.05);
    object-fit: cover;
  }
}

@media screen and (min-width: 768px) {
  .archive-event__list-wrap:hover .archive-event__list-title {
    bottom: 0;
  }
}

.archive-event__list-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #000;
  margin-top: 3.125rem;
  font-size: 1.625rem;
  line-height: 1.5769;
}
@media screen and (min-width: 768px) {
  .archive-event__list-title {
    line-height: 1.625;
    font-size: 1rem;
    margin-top: 1.5625rem;
    position: absolute;
    left: 0;
    bottom: 50px;
    z-index: 1;
    transition: all 0.3s;
  }
}

.archive-event__list-tags {
  margin-top: 2.125rem;
}
@media screen and (min-width: 768px) {
  .archive-event__list-tags {
    margin-top: 1.25rem;
  }
}

.archive-event__list-tag--category {
  font-weight: 700;
  font-size: 1.1875rem;
  letter-spacing: 0.12em;
  line-height: 1.8333;
  color: #fff;
  background-color: #000;
  padding: 0.125rem 0.5rem 0.3125rem;
  margin-right: 0.75rem;
}
@media screen and (min-width: 768px) {
  .archive-event__list-tag--category {
    font-size: 0.75rem;
    padding: 0.0625rem 0.25rem 0.1875rem;
    margin-right: 0.375rem;
  }
}

.archive-event__list-tag--status {
  font-size: 1.1875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.8333;
  color: #000;
  border: solid 1px #000;
  padding: 0.125rem 0.4375rem 0.3125rem;
  margin-right: 1rem;
}
@media screen and (min-width: 768px) {
  .archive-event__list-tag--status {
    font-size: 0.75rem;
    padding: 0.0625rem 0.25rem 0.1875rem;
  }
}

.hidden {
  display: none;
}

.archive-event__more {
  text-align: center;
}

.archive-event__more-btn {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-top: 5rem;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .archive-event__more-btn {
    font-size: 0.875rem;
    justify-content: flex-start;
  }
}

.archive-event__more-icon {
  position: relative;
  width: 2.13125rem;
  height: 2.13125rem;
  transition: all 0.3s;
  margin-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .archive-event__more-icon {
    margin-right: 1.625rem;
    width: 1.75625rem;
    height: 1.75625rem;
  }
}

.archive-event__more-icon img {
  position: absolute;
  width: 2.13125rem;
  height: 2.13125rem;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .archive-event__more-icon img {
    width: 1.75625rem;
    height: 1.75625rem;
  }
}

.archive-event__more-icon img:nth-of-type(1) {
  top: 0;
  right: 0;
}

.archive-event__more-icon img:nth-of-type(2) {
  top: 0;
  left: 0;
}

.archive-event__more-icon img:nth-of-type(3) {
  bottom: 0;
  right: 0;
}

.archive-event__more-icon img:nth-of-type(4) {
  bottom: 0;
  left: 0;
}

.archive-event__more-btn:hover .archive-event__more-icon img:nth-of-type(1) {
  top: -0.25rem;
  right: -0.25rem;
}

.archive-event__more-btn:hover .archive-event__more-icon img:nth-of-type(2) {
  top: -0.25rem;
  left: -0.25rem;
}

.archive-event__more-btn:hover .archive-event__more-icon img:nth-of-type(3) {
  bottom: -0.25rem;
  right: -0.25rem;
}

.archive-event__more-btn:hover .archive-event__more-icon img:nth-of-type(4) {
  bottom: -0.25rem;
  left: -0.25rem;
}

.archive-news {
  padding-top: 21.5625rem;
  padding-bottom: 12rem;
}
@media screen and (min-width: 768px) {
  .archive-news {
    padding-top: 18.5625rem;
    padding-bottom: 12.25rem;
  }
}

.archive-news__heading {
  margin-bottom: 13.4375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .archive-news__heading {
    margin-bottom: 14.375rem;
  }
}

.archive-news__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #000;
  font-size: 2.25rem;
  line-height: 1.0555;
}
@media screen and (min-width: 768px) {
  .archive-news__title {
    font-size: 1.75rem;
    line-height: 1.3571;
  }
}

.archive-news__title-en {
  font-weight: 500;
  line-height: 1.6666;
  color: #000;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  margin-top: 0.875rem;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .archive-news__title-en {
    margin-top: 0.625rem;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }
}

.archive-news__article-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7.4375rem 0;
}
@media screen and (min-width: 768px) {
  .archive-news__article-list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6.25rem 5rem;
  }
}

.archive-news__article-item {
  position: relative;
}

.archive-news__article-item a:hover {
  opacity: 0.8;
}

.archive-news__article-item a:hover .archive-news__article-thumbnail img {
  transform: scale(1.1);
}

.archive-news__article-item a:hover .archive-news__article-date {
  top: 2.5rem;
}

@media screen and (min-width: 768px) {
  .archive-news__article-date {
    position: absolute;
    transform: rotate(90deg);
    top: 1.5625rem;
    right: -3.4375rem;
    transition: all 0.3s;
  }
}

.archive-news__article-date p {
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #000;
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .archive-news__article-date p {
    text-align: left;
    font-size: 0.6875rem;
    margin-bottom: 0;
  }
}

.archive-news__article-thumbnail {
  overflow: hidden;
}

.archive-news__article-thumbnail img {
  transition: all 0.3s;
}

.archive-news__article-title {
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #000;
  font-size: 1.5rem;
  line-height: 1.75;
  margin-top: 2.375rem;
}
@media screen and (min-width: 768px) {
  .archive-news__article-title {
    font-size: 0.8125rem;
    line-height: 1.7692;
    margin-top: 0.75rem;
  }
}

.hidden {
  display: none;
}

.archive-news__more {
  text-align: center;
}

.archive-news__more-btn {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-top: 12.5rem;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .archive-news__more-btn {
    font-size: 0.875rem;
    margin-top: 12.5rem;
  }
}

.archive-news__more-icon {
  position: relative;
  width: 2.13125rem;
  height: 2.13125rem;
  transition: all 0.3s;
  margin-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .archive-news__more-icon {
    margin-right: 1.625rem;
    width: 1.75625rem;
    height: 1.75625rem;
  }
}

.archive-news__more-icon img {
  position: absolute;
  width: 2.13125rem;
  height: 2.13125rem;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .archive-news__more-icon img {
    width: 1.75625rem;
    height: 1.75625rem;
  }
}

.archive-news__more-icon img:nth-of-type(1) {
  top: 0;
  right: 0;
}

.archive-news__more-icon img:nth-of-type(2) {
  top: 0;
  left: 0;
}

.archive-news__more-icon img:nth-of-type(3) {
  bottom: 0;
  right: 0;
}

.archive-news__more-icon img:nth-of-type(4) {
  bottom: 0;
  left: 0;
}

.archive-news__more-btn:hover .archive-news__more-icon img:nth-of-type(1) {
  top: -0.25rem;
  right: -0.25rem;
}

.archive-news__more-btn:hover .archive-news__more-icon img:nth-of-type(2) {
  top: -0.25rem;
  left: -0.25rem;
}

.archive-news__more-btn:hover .archive-news__more-icon img:nth-of-type(3) {
  bottom: -0.25rem;
  right: -0.25rem;
}

.archive-news__more-btn:hover .archive-news__more-icon img:nth-of-type(4) {
  bottom: -0.25rem;
  left: -0.25rem;
}

.archive-project {
  padding-bottom: 12.6875rem;
}
@media screen and (min-width: 768px) {
  .archive-project {
    padding-bottom: 15.75rem;
  }
}

.archive-project__mv {
  overflow: hidden;
}

.archive-project__mv-inner {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .archive-project__mv-inner {
    padding-left: 7.5rem;
    flex-direction: row;
  }
}
@media screen and (min-width: 1280px) {
  .archive-project__mv-inner {
    left: calc(50% - 32.5rem);
    padding-left: 0;
  }
}

.archive-project__mv-heading {
  padding-left: 3.75rem;
}
@media screen and (min-width: 768px) {
  .archive-project__mv-heading {
    padding-top: 42.8125rem;
    padding-right: 10.6875rem;
    padding-left: 0;
  }
}

.archive-project__mv-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: #000;
  font-size: 2.25rem;
  letter-spacing: 0.1em;
  line-height: 1.0555;
}
@media screen and (min-width: 768px) {
  .archive-project__mv-title {
    font-size: 1.75rem;
    line-height: 1.3571;
  }
}

.archive-project__mv-title-en {
  font-weight: 500;
  line-height: 1.6666;
  color: #000;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .archive-project__mv-title-en {
    margin-top: 0.625rem;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }
}

.archive-project__mv-imgarea {
  padding-top: 18.75rem;
  padding-bottom: 9.6875rem;
  padding-left: 10rem;
}
@media screen and (min-width: 768px) {
  .archive-project__mv-imgarea {
    width: 62.5vw;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }
}

.archive-project__mv-imgarea img {
  height: 37.9375rem;
  width: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .archive-project__mv-imgarea img {
    height: 900px;
  }
}

.archive-project__article {
  padding-top: 12.375rem;
}
@media screen and (min-width: 768px) {
  .archive-project__article {
    padding-top: 18.75rem;
  }
}

.archive-project__article-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7.0625rem 0;
}
@media screen and (min-width: 768px) {
  .archive-project__article-list {
    grid-template-columns: 1fr 1fr;
    gap: 7.5rem;
  }
}

.archive-project__article-item {
  position: relative;
}

@media screen and (min-width: 768px) {
  .archive-project__article-thumbnail {
    min-height: 362px;
  }
}

.archive-project__article-thumbnail img {
  height: 28.5rem;
  width: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .archive-project__article-thumbnail img {
    height: 362px;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
  }
}

.archive-project__article-textarea {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .archive-project__article-textarea {
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.3s;
    width: 100%;
    z-index: 1;
    padding: 0;
  }
}

.archive-project__article-item a:hover {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .archive-project__article-item a:hover .archive-project__article-thumbnail img {
    height: 286px;
  }
}

@media screen and (min-width: 768px) {
  .archive-project__article-item a:hover .archive-project__article-textarea {
    padding: 0 1.875rem;
  }
}

.archive-project__article-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #000;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .archive-project__article-title {
    font-size: 1rem;
  }
}

.archive-project__article-text {
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #000;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.4583;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .archive-project__article-text {
    font-size: 0.75rem;
    line-height: 1.3333;
  }
}

.archive-project__article-text img {
  max-width: 2.125rem;
  margin-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .archive-project__article-text img {
    max-width: 0.99rem;
    margin-left: 0.625rem;
  }
}

.hidden {
  display: none;
}

.archive-project__more {
  text-align: center;
}

.archive-project__more-btn {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-top: 12.3125rem;
}
@media screen and (min-width: 768px) {
  .archive-project__more-btn {
    font-size: 0.875rem;
    margin-top: 15.625rem;
  }
}

.hidden {
  display: none;
}

.archive-project__more-icon {
  position: relative;
  width: 2.13125rem;
  height: 2.13125rem;
  transition: all 0.3s;
  margin-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .archive-project__more-icon {
    margin-right: 1.625rem;
    width: 1.75625rem;
    height: 1.75625rem;
  }
}

.archive-project__more-icon img {
  position: absolute;
  width: 2.13125rem;
  height: 2.13125rem;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .archive-project__more-icon img {
    width: 1.75625rem;
    height: 1.75625rem;
  }
}

.archive-project__more-icon img:nth-of-type(1) {
  top: 0;
  right: 0;
}

.archive-project__more-icon img:nth-of-type(2) {
  top: 0;
  left: 0;
}

.archive-project__more-icon img:nth-of-type(3) {
  bottom: 0;
  right: 0;
}

.archive-project__more-icon img:nth-of-type(4) {
  bottom: 0;
  left: 0;
}

.archive-project__more-btn:hover .archive-project__more-icon img:nth-of-type(1) {
  top: -0.25rem;
  right: -0.25rem;
}

.archive-project__more-btn:hover .archive-project__more-icon img:nth-of-type(2) {
  top: -0.25rem;
  left: -0.25rem;
}

.archive-project__more-btn:hover .archive-project__more-icon img:nth-of-type(3) {
  bottom: -0.25rem;
  right: -0.25rem;
}

.archive-project__more-btn:hover .archive-project__more-icon img:nth-of-type(4) {
  bottom: -0.25rem;
  left: -0.25rem;
}

.btn {
  display: flex;
  align-items: center;
}
.btn:hover .btn__text {
  opacity: 0.6;
}
.btn:hover .btn__icon:after {
  left: 85%;
  opacity: 1;
}
.btn:hover .btn__icon:before {
  opacity: 1;
}

.btn__text {
  transition: all 0.3s;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.125;
  text-align: right;
  color: #000;
  margin-right: 1.25rem;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .btn__text {
    font-size: 0.875rem;
    line-height: 1.14;
    margin-right: 0.675rem;
  }
}

.btn__icon {
  display: inline-block;
  position: relative;
  width: 3.625rem;
  height: 1rem;
}
@media screen and (min-width: 768px) {
  .btn__icon {
    width: 2.15625rem;
    height: 0.5625rem;
  }
}

.btn__icon:after {
  transition: all 0.3s;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background: transparent;
  border: 1px solid #191919;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .btn__icon:after {
    width: 0.5625rem;
    height: 0.5625rem;
  }
}

.btn__icon:before {
  content: "";
  position: absolute;
  width: 3.125rem;
  height: 1px;
  background: #191919;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .btn__icon:before {
    width: 1.875rem;
  }
}

.company-access {
  padding-top: 11.25rem;
}
@media screen and (min-width: 768px) {
  .company-access {
    padding-top: 11.875rem;
  }
}

.company-access__map {
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .company-access__map {
    padding-left: 7.5rem;
    padding-bottom: 3.125rem;
  }
}

.company-access__map--top {
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .company-access__map--top {
    margin-top: 3.125rem;
  }
}

.company-access__map--bottom {
  margin-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .company-access__map--bottom {
    margin-top: 8.75rem;
  }
}

.company-access__map iframe {
  width: 100%;
  height: 320px;
}
@media screen and (min-width: 768px) {
  .company-access__map iframe {
    height: 450px;
  }
}

.company-access__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.2777;
  color: #000;
  font-size: 1.75rem;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .company-access__title {
    font-size: 1.125rem;
    padding-left: 5rem;
    margin-bottom: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .company-access__textarea {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-left: 5rem;
  }
}

.company-access__text {
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #000;
  font-size: 1.625rem;
  line-height: 1.6153;
  margin-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .company-access__text {
    font-size: 0.8125rem;
    line-height: 2.4615;
    margin-bottom: 0;
  }
}

.company-access__btn {
  position: relative;
}
@media screen and (min-width: 768px) {
  .company-access__btn {
    padding-bottom: 0.625rem;
  }
}

.company-access__btn a {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #000;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .company-access__btn a {
    font-size: 0.875rem;
  }
}

.company-access__btn span {
  display: inline-block;
  position: relative;
  width: 3.625rem;
  height: 1rem;
  margin-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .company-access__btn span {
    width: 0.90625rem;
    height: 0.5625rem;
    margin-left: 0.40625rem;
  }
}

.company-access__btn span:after {
  transition: all 0.3s;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background: transparent;
  border: 1px solid #191919;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .company-access__btn span:after {
    width: 0.5625rem;
    height: 0.5625rem;
  }
}

.company-access__btn span:before {
  content: "";
  position: absolute;
  width: 3.125rem;
  height: 1px;
  background: #191919;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .company-access__btn span:before {
    width: 0.625rem;
  }
}

.company-access__btn a:hover {
  opacity: 1;
}

.company-access__btn a:hover span:after {
  left: 70%;
}

.company-awards {
  padding-top: 11.875rem;
}
@media screen and (min-width: 768px) {
  .company-awards {
    padding-top: 12.1875rem;
  }
}

.company-awards__grid {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 6.5625rem;
  gap: 3.5rem;
}
@media screen and (min-width: 768px) {
  .company-awards__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4.375rem;
    margin-top: 3.75rem;
  }
}

.company-awards__grid-number {
  color: #000;
  border-bottom: 1px solid #5C5C5C;
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  padding-bottom: 1.375rem;
  margin-bottom: 2.375rem;
}
@media screen and (min-width: 768px) {
  .company-awards__grid-number {
    font-size: 0.75rem;
    padding-bottom: 0.8125rem;
    margin-bottom: 2.375rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    line-height: 2.3333;
  }
}

.company-awards__grid-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.1em;
  font-size: 1.75rem;
  line-height: 1.7142;
}
@media screen and (min-width: 768px) {
  .company-awards__grid-title {
    font-size: 1.125rem;
    letter-spacing: 0.09em;
    line-height: 2;
  }
}

.company-heading__subtitle {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  color: #000;
  font-size: 1.25rem;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .company-heading__subtitle {
    font-size: 0.75rem;
  }
}

.company-heading__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.15;
  color: #000;
  font-size: 2rem;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .company-heading__title {
    font-size: 1.25rem;
    margin-top: 0.625rem;
  }
}

.company-mv img {
  width: 100%;
  object-fit: cover;
  height: 21.875rem;
}
@media screen and (min-width: 768px) {
  .company-mv img {
    height: 500px;
  }
}

.company-mv__title-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.3125rem;
}
@media screen and (min-width: 768px) {
  .company-mv__title-box {
    margin-bottom: 4.9375rem;
  }
}

.company-mv__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #000;
  font-size: 2.25rem;
  line-height: 1.0555;
}
@media screen and (min-width: 768px) {
  .company-mv__title {
    font-size: 1.75rem;
    line-height: 1.3571;
  }
}

.company-mv__title-en {
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #000;
  font-size: 1.25rem;
  line-height: 1.6;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .company-mv__title-en {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    line-height: 2.1666;
  }
}

.company-proflie {
  padding-top: 11.875rem;
}
@media screen and (min-width: 768px) {
  .company-proflie {
    padding-top: 18.4375rem;
  }
}

.company-proflie__table {
  border-bottom: 1px solid #5C5C5C;
  margin-top: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .company-proflie__table {
    margin-top: 3.3125rem;
  }
}

.company-proflie__table-item {
  display: grid;
  border-top: 1px solid #5C5C5C;
  padding: 2.8125rem 0 3.125rem 0;
  grid-template-columns: 15.125rem 1fr;
}
@media screen and (min-width: 768px) {
  .company-proflie__table-item {
    grid-template-columns: 10.0625rem 1fr;
    padding: 1.5625rem 0 1.375rem 0;
    max-width: 46.875rem;
  }
}

.company-proflie__table-title {
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #000;
  font-size: 1.625rem;
  line-height: 1.6;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .company-proflie__table-title {
    font-size: 0.8125rem;
    line-height: 2.4615;
  }
}

.company-proflie__table-text {
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #000;
  font-size: 1.625rem;
  line-height: 1.6;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .company-proflie__table-text {
    font-size: 0.8125rem;
    line-height: 2;
  }
}

.company-proflie__table-text--bottom {
  margin-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .company-proflie__table-text--bottom {
    margin-top: 0;
  }
}

.company-proflie__table-text--middle {
  margin: 2.6875rem 0 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .company-proflie__table-text--middle {
    margin: 0;
  }
}

.company-proflie__table-text .text-bold {
  font-weight: 700;
}

.company {
  padding-top: 21.875rem;
  padding-bottom: 12.8125rem;
}
@media screen and (min-width: 768px) {
  .company {
    padding-top: 18.5rem;
    padding-bottom: 11.875rem;
  }
}

@media screen and (min-width: 1280px) {
  .concept-col2 {
    position: relative;
    right: calc(50% - 32.5rem);
  }
}

@media screen and (min-width: 768px) {
  .concept-col2__inner {
    display: flex;
    justify-content: space-between;
  }
}

.concept-col2__imgarea {
  padding-right: 6.25rem;
}
@media screen and (min-width: 768px) {
  .concept-col2__imgarea {
    padding-right: 0;
    flex-grow: 1;
  }
}

.concept-col2__imgarea img {
  height: 35.25rem;
  width: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .concept-col2__imgarea img {
    height: 564px;
  }
}

.concept-col2__textarea {
  padding-left: 3.75rem;
  padding-right: 3.75rem;
  padding-top: 6.0625rem;
}
@media screen and (min-width: 768px) {
  .concept-col2__textarea {
    padding-left: 9.375rem;
    margin-right: 7.5rem;
    padding-top: 8.125rem;
  }
}
@media screen and (min-width: 1280px) {
  .concept-col2__textarea {
    margin-right: 0;
    padding-right: 0;
  }
}

.concept-col2__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #000;
  font-size: 2rem;
  line-height: 1.625;
  margin-bottom: 2.125rem;
}
@media screen and (min-width: 768px) {
  .concept-col2__title {
    font-size: 1.25rem;
    line-height: 2.1;
    margin-bottom: 4.1875rem;
  }
}

.concept-col2__title span {
  display: block;
  position: relative;
  left: -1.1875rem;
}
@media screen and (min-width: 768px) {
  .concept-col2__title span {
    left: -0.75rem;
  }
}

.concept-col2__text {
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #000;
  font-size: 1.5rem;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .concept-col2__text {
    font-size: 0.8125rem;
    max-width: 25.625rem;
    line-height: 2.4615;
  }
}

.concept-lead {
  padding-top: 9.5rem;
  padding-bottom: 9.1875rem;
}
@media screen and (min-width: 768px) {
  .concept-lead {
    padding-bottom: 9rem;
  }
}

.concept-lead__title {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.3214;
  text-align: left;
  letter-spacing: 0.1em;
  color: #000;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .concept-lead__title {
    font-size: 1.75rem;
    letter-spacing: 0.16em;
  }
}

.concept-lead__title img {
  max-width: 25.875rem;
}
@media screen and (min-width: 768px) {
  .concept-lead__title img {
    max-width: 19.375rem;
  }
}

.concept-lead__title span {
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #000;
  position: absolute;
  transform: rotate(90deg);
  top: 5.9375rem;
  right: -5.3125rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .concept-lead__title span {
    top: 3.125rem;
    right: -2.5625rem;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
  }
}

.concept-lead__subtitle {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.625;
  color: #000;
  font-size: 2rem;
  margin-top: 9.375rem;
  margin-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .concept-lead__subtitle {
    font-size: 1.25rem;
    margin-top: 9.0625rem;
    margin-bottom: 3.75rem;
    line-height: 1.6;
  }
}

.concept-lead__text {
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #000;
  font-size: 1.5rem;
  line-height: 1.75;
  max-width: 31.25rem;
}
@media screen and (min-width: 768px) {
  .concept-lead__text {
    max-width: 43.75rem;
    font-size: 0.8125rem;
    line-height: 2.4615;
  }
}

.concept-lead__text:nth-of-type(1) {
  margin-top: 5.4375rem;
}
@media screen and (min-width: 768px) {
  .concept-lead__text:nth-of-type(1) {
    margin-top: 5.875rem;
  }
}

.concept-lead__text:nth-of-type(2) {
  margin-top: 2.625rem;
}
@media screen and (min-width: 768px) {
  .concept-lead__text:nth-of-type(2) {
    margin-top: 2rem;
  }
}

.concept-mv {
  padding-left: 3.75rem;
  padding-top: 18.75rem;
}
@media screen and (min-width: 768px) {
  .concept-mv {
    padding-left: 17.5rem;
    padding-top: 0;
  }
}

.concept-mv img {
  height: 24.75rem;
  width: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .concept-mv img {
    height: 620px;
  }
}

.concept-value {
  overflow: hidden;
  padding-top: 14.5625rem;
  padding-bottom: 9.25rem;
}
@media screen and (min-width: 768px) {
  .concept-value {
    padding-top: 18.5625rem;
    padding-bottom: 12.125rem;
  }
}

.concept-value__inner {
  overflow: visible;
}

.concept-value__heading-en {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  color: #000;
}
@media screen and (min-width: 768px) {
  .concept-value__heading-en {
    font-size: 0.75rem;
    margin-bottom: 0.625rem;
  }
}

.concept-value__heading-title {
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
  position: relative;
  letter-spacing: 0.1em;
  margin-top: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .concept-value__heading-title {
    font-size: 1.25rem;
    display: inline-block;
    letter-spacing: 0.05em;
    margin-top: 0;
  }
}

.concept-value__heading-title:after {
  content: "";
  position: absolute;
  background: #5C5C5C;
  width: 100vw;
  height: 0.0625rem;
  transform: translateY(-50%);
  left: 20.625rem;
  top: 61%;
}
@media screen and (min-width: 768px) {
  .concept-value__heading-title:after {
    left: 13.125rem;
    top: 59%;
  }
}

.concept-value__heading-title span {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .concept-value__heading-title span {
    letter-spacing: 0.1em;
    margin-right: 0.1875rem;
  }
}

.concept-value__contents {
  margin-top: 8.75rem;
  padding-left: 4.5625rem;
}
@media screen and (min-width: 768px) {
  .concept-value__contents {
    padding-left: 8.125rem;
    margin-top: 10.0625rem;
  }
}

.concept-value__content {
  position: relative;
}
@media screen and (min-width: 768px) {
  .concept-value__content {
    display: flex;
    justify-content: space-between;
  }
}

.concept-value__content:after {
  content: "";
  position: absolute;
  background: #5C5C5C;
  width: 100vw;
  height: 0.0625rem;
  bottom: 0;
  left: 0;
}

.concept-value__content:last-child:after {
  content: none;
}

.concept-value__content:not(:first-child) {
  padding-top: 7.1875rem;
}
@media screen and (min-width: 768px) {
  .concept-value__content:not(:first-child) {
    padding-top: 5.8125rem;
  }
}

.concept-value__content:not(:last-child) {
  padding-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .concept-value__content:not(:last-child) {
    padding-bottom: 6rem;
  }
}

.concept-value__content-left {
  padding-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .concept-value__content-left {
    padding-left: 0.0625rem;
    padding-top: 0.3125rem;
  }
}

@media screen and (min-width: 768px) {
  .concept-value__content-right {
    max-width: 28.125rem;
    position: relative;
    right: 0.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .concept-value__content-right--002 {
    right: 1.375rem;
  }
}

@media screen and (min-width: 768px) {
  .concept-value__content-right--003 {
    right: 0;
  }
}

.concept-value__content-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: #000;
  position: relative;
  font-size: 2rem;
  padding-bottom: 3.25rem;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .concept-value__content-title {
    font-size: 1.25rem;
    padding-bottom: 2.6875rem;
    margin-bottom: 1.0625rem;
  }
}

.concept-value__content-title:before {
  content: "";
  position: absolute;
  background: #707070;
  width: 0.9375rem;
  height: 0.0625rem;
  bottom: 0;
  left: 0;
}

.concept-value__content-title:after {
  content: "";
  position: absolute;
  background: url(../../assets/images/concept/concept-value-icon.png) no-repeat center center/contain;
  width: 1.278125rem;
  height: 1.278125rem;
  top: -1.375rem;
  left: -2.0625rem;
}
@media screen and (min-width: 768px) {
  .concept-value__content-title:after {
    width: 0.75rem;
    height: 0.75rem;
    top: -0.9375rem;
    left: -0.9375rem;
  }
}

.concept-value__content-subtitle {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  color: #000;
  margin-bottom: 5.125rem;
  font-size: 1.25rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .concept-value__content-subtitle {
    font-size: 0.75rem;
    margin-bottom: 0;
  }
}

.concept-value__content-text {
  font-weight: 400;
  color: #000;
  font-size: 1.5rem;
  line-height: 1.75;
  color: #000;
  letter-spacing: 0.12em;
  padding-right: 0.75rem;
}
@media screen and (min-width: 768px) {
  .concept-value__content-text {
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    line-height: 2.44;
    padding-left: 0;
    padding-right: 0;
  }
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer__event-link {
  padding-right: 3.75rem;
  height: 31.25rem;
}
@media screen and (min-width: 768px) {
  .footer__event-link {
    padding-right: 7.5rem;
    height: 21.25rem;
  }
}

.footer__event-link a {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: block;
  height: 31.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__event-link a {
    height: 21.25rem;
  }
}

.footer__event-link a:after {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  transition: all 0.3s;
}
.footer__event-link a:hover {
  opacity: 1;
}

.footer__event-link a:hover:after {
  background-color: rgba(0, 0, 0, 0.4);
}

.footer__event-link a:hover img {
  transform: scale(1.05);
}

.footer__event-link a:hover span:after {
  left: 85%;
}

.footer__event-link img {
  width: 100%;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  object-fit: cover;
  height: 31.25rem;
}
@media screen and (min-width: 768px) {
  .footer__event-link img {
    height: 21.25rem;
  }
}

.footer__event-link-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: -4rem;
  height: 31.25rem;
  width: 58.5625rem;
}
@media screen and (min-width: 768px) {
  .footer__event-link-image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    top: -16.125rem;
    left: 0;
    width: 100%;
    height: 38.75rem;
  }
}

.footer__event-link-text {
  position: absolute;
  z-index: 3;
  bottom: 3.125rem;
  left: 3.75rem;
}
@media screen and (min-width: 768px) {
  .footer__event-link-text {
    width: 100%;
    max-width: 65rem;
    bottom: 2.375rem;
    left: calc(50% - 28.75rem);
    padding-left: 1.25rem;
  }
}
@media screen and (min-width: 1280px) {
  .footer__event-link-text {
    padding-left: 0;
  }
}

.footer__event-link-text h2 {
  font-weight: 500;
  color: #f8f8f8;
  font-family: "Noto Serif JP", serif;
  font-size: 2.25rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .footer__event-link-text h2 {
    font-size: 1.125rem;
  }
}

.footer__event-link-text p {
  font-weight: 400;
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  line-height: 1.909;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .footer__event-link-text p {
    font-size: 0.875rem;
    line-height: 2.2;
    margin-top: 1.875rem;
  }
}

.footer__event-link-text span {
  display: inline-block;
  position: relative;
  width: 3.625rem;
  height: 1rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .footer__event-link-text span {
    width: 2.429375rem;
    height: 0.625rem;
    margin-top: 1.5rem;
  }
}

.footer__event-link-text span:after {
  transition: all 0.3s;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .footer__event-link-text span:after {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.footer__event-link-text span:before {
  content: "";
  position: absolute;
  width: 3.125rem;
  height: 1px;
  background: #FFFFFF;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .footer__event-link-text span:before {
    width: 2.09375rem;
  }
}

.footer__decorate {
  padding-top: 18.75rem;
}
@media screen and (min-width: 768px) {
  .footer__decorate {
    padding-top: 12.9375rem;
  }
}

.footer__decorate-wrap {
  max-width: 25.125rem;
  margin-left: auto;
  margin-right: -1.5625rem;
}
@media screen and (min-width: 768px) {
  .footer__decorate-wrap {
    max-width: 14.5625rem;
    margin-left: auto;
    margin-right: -0.8125rem;
  }
}

.footer__decorate p {
  font-weight: 500;
  color: #000;
  font-size: 1rem;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-top: 0.5625rem;
  text-align: right;
  margin-right: 1.4375rem;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .footer__decorate p {
    font-size: 0.75rem;
    margin-top: 0.8125rem;
    text-align: left;
    margin-right: 0;
  }
}

.footer__menu {
  border-top: 1px solid rgba(51, 51, 51, 0.3);
  border-bottom: 1px solid rgba(51, 51, 51, 0.3);
}

@media screen and (min-width: 768px) {
  .footer__menu-flex {
    display: flex;
  }
}

.footer__menu-logo {
  padding-left: 3.75rem;
  padding-right: 3.75rem;
  padding-top: 15.625rem;
  padding-bottom: 3.125rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .footer__menu-logo {
    display: block;
    max-width: 36.25rem;
    flex-grow: 1;
    padding-top: 5rem;
    padding-bottom: 1.25rem;
    padding-right: 0;
  }
}

.footer__menu-logo img {
  max-width: 18.75rem;
}
@media screen and (min-width: 768px) {
  .footer__menu-logo img {
    max-width: 11.25rem;
    margin-bottom: 11.375rem;
  }
}

.footer__menu-logo p {
  color: #000;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: right;
  color: #000;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .footer__menu-logo p {
    font-size: 0.625rem;
    margin-right: 1.4375rem;
  }
}

.footer__menu-links {
  display: none;
}
@media screen and (min-width: 768px) {
  .footer__menu-links {
    display: block;
    max-width: 21.875rem;
    flex-grow: 1;
    border-left: 1px solid rgba(51, 51, 51, 0.3);
    padding-left: 3.75rem;
    padding-top: 8.1875rem;
  }
}

.footer__menu-links ul a {
  color: #000;
  font-weight: 400;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .footer__menu-links ul a {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    line-height: 2.1;
    position: relative;
    top: -0.25rem;
    left: 0;
  }
}

.footer__menu-links ul a:after {
  content: "";
  position: absolute;
  background: url(../../assets/images/common/footer-hover-icon.png) no-repeat center center/contain;
  width: 10px;
  height: 10px;
  top: 50%;
  left: -0.8125rem;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s;
}

.footer__menu-links ul a:hover {
  opacity: 1;
  left: 0.8125rem;
}

.footer__menu-links ul a:hover:after {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .footer__menu-links--001 ul:first-child {
    margin-bottom: 5.1875rem;
  }
}

@media screen and (min-width: 768px) {
  .footer__menu-links--002 ul:first-child {
    margin-bottom: 6.75rem;
  }
}

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

.footer__copyright {
  padding-top: 1.875rem;
  padding-left: 3.75rem;
  flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    padding-top: 1.0625rem;
    padding-left: 3.125rem;
  }
}

.footer__copyright p {
  color: #000;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .footer__copyright p {
    font-size: 0.625rem;
  }
}

.footer__pagetop {
  border-left: 1px solid rgba(51, 51, 51, 0.3);
  padding-left: 1.625rem;
  padding-top: 1rem;
  padding-bottom: 1.25rem;
  padding-right: 1.625rem;
}
@media screen and (min-width: 768px) {
  .footer__pagetop {
    flex-grow: 1;
    max-width: 6.25rem;
    padding-left: 1.625rem;
    padding-top: 0.75rem;
    padding-bottom: 1.5rem;
    padding-right: 0;
    padding-bottom: 10px;
  }
}

.footer__pagetop-text {
  font-weight: 400;
  color: #000;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.1428;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .footer__pagetop-text {
    font-size: 0.625rem;
    line-height: 1.6;
    margin-right: 1.09375rem;
  }
}

.footer__pagetop-icon {
  display: inline-block;
  width: 0.5625rem;
  height: 1.21875rem;
  position: relative;
}

.footer__pagetop-icon:after {
  transition: all 0.3s;
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0.5625rem;
  height: 0.5625rem;
  background: transparent;
  border: 1px solid #191919;
  border-radius: 50%;
}

.footer__pagetop-icon:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 0.9375rem;
  background: #191919;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.footer__pagetop a {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  gap: 0.25rem 0;
}
@media screen and (min-width: 768px) {
  .footer__pagetop a {
    flex-direction: row;
    gap: 0;
  }
}

.footer__pagetop a:hover .footer__pagetop-icon:after {
  bottom: 80%;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header__inner {
  max-width: 120rem;
  margin: 0 auto;
  padding-top: 1.875rem;
  padding-left: 1.875rem;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-right: 3.75rem;
    display: flex;
    justify-content: space-between;
    padding-left: 2.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .header__logo {
    margin-top: 0.625rem;
  }
}

.header__logo a {
  display: inline-block;
}

.header__logo img {
  max-width: 16.5rem;
}
@media screen and (min-width: 768px) {
  .header__logo img {
    max-width: 11.25rem;
  }
}

@media screen and (min-width: 768px) {
  .header__top-menu {
    padding-top: 1.875rem;
  }
}

.header__top-menu-event-link {
  text-align: right;
}

.header__top-menu-event-link a {
  overflow: hidden;
  position: relative;
  padding-top: 0.125rem;
  padding-bottom: 0.3125rem;
}

.header__top-menu-event-link a:hover {
  opacity: 1;
}

.header__top-menu-event-link a:hover:before {
  width: 101%;
}

.header__top-menu-event-link a:hover:after {
  width: 101%;
}

.header__top-menu-event-link a span:hover:before {
  height: 115%;
}

.header__top-menu-event-link a span:hover:after {
  height: 115%;
}

.header__top-menu-event-link a:before {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 95%;
  height: 0.0625rem;
  top: 0.25rem;
  left: -0.0625rem;
  transition: all 0.3s;
}

.header__top-menu-event-link a:after {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 95%;
  height: 0.0625rem;
  bottom: -0.0625rem;
  right: -0.0625rem;
  transition: all 0.3s;
}

.header__top-menu-event-link a span {
  position: relative;
  display: inline-block;
  color: #fff;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.9;
  padding: 0 1.9375rem;
}

.header__top-menu-event-link a span:before {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 0.0625rem;
  height: 65%;
  top: 0;
  left: -0.0625rem;
  transition: all 0.3s;
}

.header__top-menu-event-link a span:after {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 0.0625rem;
  height: 65%;
  bottom: -0.1875rem;
  right: -0.0625rem;
  transition: all 0.3s;
}

@media screen and (min-width: 768px) {
  .header__top-menu-links {
    margin-top: 3.4375rem;
    margin-right: 2.5rem;
  }
}

.header__top-menu-links-list {
  display: flex;
  gap: 0 2.5rem;
}

.header__top-menu-links-list-item a {
  color: #f8f8f8;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .header__top-menu-links-list-item a {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    line-height: 1.3333;
  }
}

.header__menu-open {
  position: fixed;
  top: 2.5rem;
  right: 1.875rem;
  z-index: 9999;
  width: 4.375rem;
  height: 3rem;
  transition: all 0.6s;
}
@media screen and (min-width: 768px) {
  .header__menu-open {
    top: 1.875rem;
    right: 1.875rem;
    width: 3.125rem;
    height: 2.125rem;
  }
}
@media screen and (min-width: 1920px) {
  .header__menu-open {
    right: calc(50% - 58.125rem);
  }
}

.header__menu-open span {
  display: block;
  background-color: #000000;
  width: 100%;
  height: 1px;
  position: absolute;
  transition: all 0.3s;
}

.header__menu-open span:nth-of-type(1) {
  top: 0;
  left: 0;
}

.header__menu-open span:nth-of-type(2) {
  top: 0.8125rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .header__menu-open span:nth-of-type(2) {
    top: 0.625rem;
    left: 0;
  }
}

.header__menu-open.active span:nth-of-type(1) {
  transform: rotate(-12deg);
  top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .header__menu-open.active span:nth-of-type(1) {
    top: 0.3125rem;
  }
}

.header__menu-open.active span:nth-of-type(2) {
  transform: rotate(12deg);
  top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .header__menu-open.active span:nth-of-type(2) {
    top: 0.3125rem;
  }
}

.header__menu-open:hover {
  opacity: 0.6;
}

.header__menu-open img {
  position: absolute;
  width: 4.375rem;
  height: 4.375rem;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .header__menu-open img {
    width: 3.125rem;
    height: 3.125rem;
  }
}

.header__menu-open:before {
  content: "Menu";
  position: absolute;
  top: 71%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #000;
  transition: all 0.3s;
  display: block;
}
@media screen and (min-width: 768px) {
  .header__menu-open:before {
    font-size: 0.75rem;
    top: 79%;
  }
}

.header__menu-open.active:before {
  content: "Close";
  position: absolute;
  top: 71%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #000;
  transition: all 0.3s;
  display: block;
}
@media screen and (min-width: 768px) {
  .header__menu-open.active:before {
    font-size: 0.75rem;
    top: 79%;
  }
}

.header__menu-open:hover {
  cursor: pointer;
}

.header__menu-open--top {
  display: none;
  opacity: 0;
}

.header__gnav {
  overflow-y: scroll;
  overflow-x: hidden;
  width: 100vw;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  background-image: url(../../assets/images/common/main-bg.png);
  background-repeat: repeat;
  background-position: center center;
  background-size: contain;
  transition: all 0.3s;
  opacity: 0;
  z-index: -100;
  pointer-events: none;
}
.header__gnav.active {
  z-index: 9998;
  opacity: 1;
  pointer-events: all;
}

.no-scroll {
  overflow: hidden;
}

.header__gnav-inner {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  padding-top: 9.6875rem;
  overflow: hidden;
  z-index: 9998;
  height: 100dvh;
}
@media screen and (min-width: 768px) {
  .header__gnav-inner {
    padding-left: 6.25rem;
    padding-right: 6.25rem;
    padding-top: 13.8125rem;
  }
}

.header__gnav-inner:after {
  content: "";
  position: absolute;
  background: url(../../assets/images/common/menu-spin-img.png) no-repeat center center/contain;
  width: 41.4375rem;
  height: 41.4375rem;
  top: 6.25rem;
  right: -9.25rem;
  animation: spin 30s linear infinite;
  z-index: 9997;
}
@media screen and (min-width: 768px) {
  .header__gnav-inner:after {
    width: 61.75rem;
    height: 61.75rem;
    top: -18.25rem;
    left: -18.0625rem;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.header__gnav-nav {
  padding-left: 3.75rem;
  padding-right: 2.6875rem;
  position: relative;
  z-index: 9998;
}
@media screen and (min-width: 768px) {
  .header__gnav-nav {
    padding-left: 0;
    padding-right: 0;
    max-width: 7.0625rem;
    margin-left: auto;
    margin-right: 6.5rem;
    gap: 0 6.25rem;
  }
}

.header__gnav-nav-list:nth-of-type(1) {
  padding-bottom: 3.4375rem;
  margin-bottom: 2.8125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header__gnav-nav-list:nth-of-type(1) {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

.header__gnav-nav-list a {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #000;
  font-size: 1.75rem;
  line-height: 1;
  transition: all 0.3s;
  padding-left: 1.9375rem;
}
@media screen and (min-width: 768px) {
  .header__gnav-nav-list a {
    font-size: 1.125rem;
    white-space: nowrap;
    padding-left: 0;
  }
}

.header__gnav-nav-list a:after {
  content: "";
  position: absolute;
  background: url(../../assets/images/common/header-hover-icon.png) no-repeat center center/contain;
  width: 1.25rem;
  height: 1.25rem;
  top: 55%;
  left: 0;
  transform: translateY(-50%);
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .header__gnav-nav-list a:after {
    width: 1rem;
    height: 1rem;
    opacity: 0;
  }
}

.header__gnav-nav-list a:hover {
  opacity: 1;
  padding-left: 1.3125rem;
}

.header__gnav-nav-list a:hover:after {
  opacity: 1;
}

.header__gnav-nav-list-item {
  margin-bottom: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .header__gnav-nav-list-item {
    margin-bottom: 3.75rem;
  }
}

.header__gnav-nav-list-item:last-child {
  margin-bottom: 0;
}

.header__gnav-info {
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 9998;
}
@media screen and (min-width: 768px) {
  .header__gnav-info {
    position: absolute;
    bottom: 7.5rem;
    max-width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-left: 6.25rem;
    padding-right: 6.25rem;
  }
}

.header__gnav-logo {
  padding-left: 3.75rem;
  padding-right: 2.6875rem;
}
@media screen and (min-width: 768px) {
  .header__gnav-logo {
    padding-left: 0;
    padding-right: 0;
  }
}

.header__gnav-logo-text {
  font-weight: 500;
  color: #000;
  font-size: 0.9375rem;
  letter-spacing: 0.12em;
  line-height: 2.6666;
  margin-top: 0.5rem;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .header__gnav-logo-text {
    font-size: 0.75rem;
    line-height: 2.6666;
    margin-top: 0.375rem;
  }
}

.header__gnav-logo img.img-logo {
  max-width: 17.75rem;
  margin-bottom: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .header__gnav-logo img.img-logo {
    margin-bottom: 0;
    max-width: 20.234375vw;
  }
}

.header__gnav-logo img.img-text {
  max-width: 19.375rem;
}
@media screen and (min-width: 768px) {
  .header__gnav-logo img.img-text {
    max-width: 14.5625rem;
  }
}

.header__gnav-links {
  position: relative;
  border-top: 1px solid #5C5C5C;
  border-bottom: 1px solid #5C5C5C;
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .header__gnav-links {
    border-top: none;
    border-bottom: none;
    margin-top: 0;
  }
}

.header__gnav-links-list {
  display: flex;
}

.header__gnav-links-list-item {
  flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .header__gnav-links-list-item {
    flex-grow: 0;
  }
}
.header__gnav-links-list-item:nth-of-type(2) {
  border-right: #000 1px solid;
  border-left: #000 1px solid;
}
@media screen and (min-width: 768px) {
  .header__gnav-links-list-item:nth-of-type(2) {
    padding: 0 1.125rem;
    margin: 0 1.125rem;
  }
}

.header__gnav-links-list-item a {
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  line-height: 1.8333;
  color: #000;
  height: 4.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .header__gnav-links-list-item a {
    font-size: 0.75rem;
    height: auto;
    display: block;
  }
}

.header__gnav-links-text {
  margin-top: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #000;
  text-align: right;
  font-size: 0.875rem;
  position: absolute;
  transform: rotate(90deg);
  right: -5.4375rem;
  top: -13.4375rem;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .header__gnav-links-text {
    position: relative;
    font-size: 0.625rem;
    transform: none;
    right: auto;
    top: auto;
  }
}

.inner {
  width: 100%;
  padding-right: 3.75rem;
  padding-left: 3.75rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1090px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

#loader-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/common/main-bg.png);
  background-repeat: repeat;
  background-position: center center;
  background-size: contain;
  background-color: #fff;
  z-index: 9998;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#loader-svg {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  z-index: 10000; /* 背景の上に表示されるように */
}
@media screen and (min-width: 768px) {
  #loader-svg {
    transform: translate(-50%, -50%) scale(1);
  }
}

.page-404 {
  padding-top: 41.1875rem;
  padding-bottom: 18.75rem;
}
@media screen and (min-width: 768px) {
  .page-404 {
    padding-top: 17.0625rem;
    padding-bottom: 13.125rem;
  }
}

.page-404__heading {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .page-404__heading {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}

.page-404__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #000;
  line-height: 1;
  font-size: 6.25rem;
  margin-right: 1.875rem;
}
@media screen and (min-width: 768px) {
  .page-404__title {
    font-size: 3.75rem;
    margin-top: 1.25rem;
  }
}

.page-404__subtitle {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.75;
  color: #000;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .page-404__subtitle {
    font-size: 1rem;
  }
}

.page-404__border {
  display: flex;
  align-items: center;
  padding-top: 3.75rem;
  padding-bottom: 4.0625rem;
  padding-right: 3.75rem;
}
@media screen and (min-width: 768px) {
  .page-404__border {
    padding-right: 7.5rem;
    padding-top: 5rem;
  }
}

.page-404__border span {
  display: inline-block;
  position: relative;
  height: 100%;
  width: 100%;
}

.page-404__border span:after {
  content: "";
  position: absolute;
  background: #000000;
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(50%);
}

.page-404__border img {
  margin-left: 0.625rem;
  max-width: 1.625rem;
}
@media screen and (min-width: 768px) {
  .page-404__border img {
    max-width: 1rem;
  }
}

.page-privacy-policy {
  padding-top: 21.4375rem;
  padding-bottom: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .page-privacy-policy {
    padding-top: 18.3125rem;
    padding-bottom: 5rem;
  }
}

.page-privacy-policy__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #000;
  font-size: 2.25rem;
  line-height: 1.2666;
  padding-bottom: 6.75rem;
}
@media screen and (min-width: 768px) {
  .page-privacy-policy__title {
    font-size: 1.75rem;
    padding-bottom: 9.6875rem;
    line-height: 1.3571;
  }
}

.page-privacy-policy__item {
  padding-bottom: 4.875rem;
}
@media screen and (min-width: 768px) {
  .page-privacy-policy__item {
    padding-bottom: 2.625rem;
  }
}

.page-privacy-policy__number {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #000;
  padding-bottom: 0.1875rem;
  border-bottom: 1px solid #000000;
  display: inline-block;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .page-privacy-policy__number {
    margin-left: 1.875rem;
    font-size: 1rem;
  }
}

.page-privacy-policy__textarea {
  border-bottom: 1px solid #5C5C5C;
  padding-left: 2.5rem;
  padding-bottom: 4.75rem;
}
@media screen and (min-width: 768px) {
  .page-privacy-policy__textarea {
    margin-left: 11.25rem;
    padding-bottom: 4.5625rem;
    padding-left: 0;
  }
}

.page-privacy-policy__textarea--last {
  border-bottom: none;
}

.page-privacy-policy__subtitle {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.2777;
  letter-spacing: 0.1em;
  color: #000;
  font-size: 1.75rem;
  line-height: 1.5;
  margin-top: 3rem;
  padding-right: 2.5rem;
  margin-bottom: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .page-privacy-policy__subtitle {
    font-size: 1rem;
    margin-bottom: 0.875rem;
    margin-top: 1.125rem;
  }
}

.page-privacy-policy__text {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #000;
  font-size: 1.5rem;
  line-height: 1.6666;
}
@media screen and (min-width: 768px) {
  .page-privacy-policy__text {
    font-size: 0.8125rem;
    max-width: 50rem;
    line-height: 2;
  }
}

.renovation-link {
  padding-top: 5.1875rem;
  padding-bottom: 12.5rem;
}
@media screen and (min-width: 768px) {
  .renovation-link {
    padding-top: 6.875rem;
    padding-bottom: 12.375rem;
  }
}

.renovation-link__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #000;
  font-size: 2rem;
  margin-bottom: 5.9375rem;
}
@media screen and (min-width: 768px) {
  .renovation-link__title {
    font-size: 1.25rem;
    margin-bottom: 3.125rem;
  }
}

.renovation-link__text {
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #000;
  max-width: 31.25rem;
  font-size: 1.5rem;
  line-height: 1.75;
  margin-bottom: 8.3125rem;
}
@media screen and (min-width: 768px) {
  .renovation-link__text {
    font-size: 0.8125rem;
    margin-bottom: 3.3125rem;
    line-height: 2.4615;
  }
}

.renovation-link__btn {
  text-align: right;
}

.renovation-link__btn a {
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #000;
  font-size: 1.5rem;
  line-height: 1.125;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .renovation-link__btn a {
    line-height: 1.1428;
    font-size: 0.875rem;
  }
}

.renovation-link__btn span {
  display: inline-block;
  position: relative;
  width: 3.625rem;
  height: 1rem;
  margin-left: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .renovation-link__btn span {
    width: 2.15625rem;
    height: 0.5625rem;
    margin-left: 0.6875rem;
  }
}

.renovation-link__btn span:after {
  transition: all 0.3s;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background: transparent;
  border: 1px solid #191919;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .renovation-link__btn span:after {
    width: 0.5625rem;
    height: 0.5625rem;
  }
}

.renovation-link__btn span:before {
  content: "";
  position: absolute;
  width: 3.125rem;
  height: 1px;
  background: #191919;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .renovation-link__btn span:before {
    width: 1.875rem;
  }
}

.renovation-link__btn a:hover {
  opacity: 1;
}

.renovation-link__btn a:hover span:after {
  left: 85%;
}

.renovation-loop {
  position: relative;
  margin-top: 11.875rem;
}
@media screen and (min-width: 768px) {
  .renovation-loop {
    margin-top: 12.1875rem;
  }
}

.renovation-loop__inner {
  width: 100%;
  height: 424px;
  background: url(../../assets/images/renovation/renovation-loop.png) repeat-x;
  background-size: 3694px 100%;
  background-position: 0 0;
  -webkit-animation: bgroop 40s linear infinite;
  animation: bgroop 40s linear infinite;
}

@-webkit-keyframes bgroop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -3694px 0;
  }
}
@keyframes bgroop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -3694px 0;
  }
}
.renovation-merit {
  padding-top: 12.8125rem;
  padding-bottom: 12.8125rem;
}
@media screen and (min-width: 768px) {
  .renovation-merit {
    padding-top: 25rem;
    padding-bottom: 14.25rem;
  }
}

.renovation-merit__heading {
  margin-bottom: 5.625rem;
}
@media screen and (min-width: 768px) {
  .renovation-merit__heading {
    margin-bottom: 4.875rem;
  }
}

.renovation-merit__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #000;
  font-size: 2rem;
  line-height: 1.2;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .renovation-merit__title {
    font-size: 1.25rem;
    margin-top: 0.9375rem;
  }
}

.renovation-merit__subtitle {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  color: #000;
  font-size: 1.25rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .renovation-merit__subtitle {
    font-size: 0.75rem;
  }
}

.renovation-merit__text {
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #000;
  font-size: 1.5rem;
  line-height: 1.75;
  margin-bottom: 8.4375rem;
}
@media screen and (min-width: 768px) {
  .renovation-merit__text {
    font-size: 0.8125rem;
    margin-bottom: 9.375rem;
    line-height: 2.4615;
    max-width: 43.75rem;
  }
}

.renovation-merit__img {
  width: 100%;
  padding-right: 3.125rem;
  padding-left: 3.125rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .renovation-merit__img {
    max-width: 61.25rem;
    padding-left: 0;
    padding-right: 0;
  }
}

.renovation-mv {
  overflow: hidden;
}

.renovation-mv__textarea {
  padding-top: 21.25rem;
  padding-left: 3.75rem;
  padding-right: 3.75rem;
  margin-bottom: 12.1875rem;
}
@media screen and (min-width: 768px) {
  .renovation-mv__textarea {
    padding-right: 7.75rem;
    padding-left: 0;
    padding-top: 21.5rem;
    margin-bottom: 0;
  }
}

.renovation-mv__inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .renovation-mv__inner {
    padding-left: 7.5rem;
    display: flex;
  }
}
@media screen and (min-width: 1280px) {
  .renovation-mv__inner {
    left: calc(50% - 32.5rem);
    padding-left: 0;
  }
}

.renovation-mv__imgarea {
  padding-left: 9.375rem;
}
@media screen and (min-width: 768px) {
  .renovation-mv__imgarea {
    padding-left: 0;
    height: 900px;
    width: 59.38vw;
    background-image: url(../../assets/images/renovation/renovation-mv.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }
}

.renovation-mv__imgarea img {
  height: 650px;
  width: 100%;
  object-fit: cover;
}

.renovation-mv__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #000;
  font-size: 2.25rem;
  line-height: 1.0555;
}
@media screen and (min-width: 768px) {
  .renovation-mv__title {
    font-size: 1.75rem;
    white-space: nowrap;
    line-height: 1.3571;
  }
}

.renovation-mv__subtitle {
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #000;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .renovation-mv__subtitle {
    font-size: 0.75rem;
    line-height: 2.6666;
    margin-top: 0;
  }
}

.renovation-mv__text {
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #000;
  font-size: 1.5rem;
  line-height: 1.75;
  margin-top: 5.5rem;
}
@media screen and (min-width: 768px) {
  .renovation-mv__text {
    font-size: 0.8125rem;
    max-width: 15.625rem;
    margin-top: 8.75rem;
    line-height: 2.4615;
  }
}

.renovation-point {
  border-top: 1px solid rgba(92, 92, 92, 0.2);
  border-bottom: 1px solid rgba(92, 92, 92, 0.2);
  overflow: hidden;
}

.renovation-point__grid .inner {
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .renovation-point__grid .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 15rem;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .renovation-point__grid .inner:after {
    content: "";
    position: absolute;
    background: rgba(92, 92, 92, 0.2);
    width: 0.0625rem;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

.renovation-point__grif-item {
  padding-top: 8.0625rem;
  padding-bottom: 8.125rem;
  padding-left: 2.0625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .renovation-point__grif-item {
    padding-top: 7.5rem;
    padding-bottom: 7.9375rem;
    padding-left: 0;
    border-bottom: none;
  }
}

.renovation-point__grif-item:after {
  content: "";
  position: absolute;
  background: rgba(92, 92, 92, 0.2);
  width: 100vh;
  height: 0.0625rem;
  bottom: 0;
  right: -3.75rem;
}
@media screen and (min-width: 768px) {
  .renovation-point__grif-item:after {
    content: none;
  }
}

.renovation-point__grif-item--bottom:after {
  content: none;
}

.renovation-point__heading {
  display: flex;
  align-items: center;
  position: relative;
}

.renovation-point__number {
  position: absolute;
  top: -1.375rem;
  left: -2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1;
  color: #000;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .renovation-point__number {
    font-size: 0.75rem;
    top: -0.875rem;
    left: -0.875rem;
  }
}

.renovation-point__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: #000;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .renovation-point__title {
    font-size: 1.25rem;
  }
}

.renovation-point__border {
  display: inline-block;
  width: 1.25rem;
  height: 0.0625rem;
  background-color: #000000;
  margin-left: 0.5rem;
  margin-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .renovation-point__border {
    margin-left: 0.875rem;
    margin-right: 0.75rem;
  }
}

.renovation-point__title-en {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  color: #000;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .renovation-point__title-en {
    font-size: 0.75rem;
  }
}

.renovation-point__text {
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #000;
  font-size: 1.5rem;
  line-height: 1.75;
  margin-top: 2.6875rem;
  margin-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .renovation-point__text {
    margin-top: 2.5rem;
    margin-bottom: 5.9375rem;
    max-width: 25rem;
    line-height: 2.4615;
    font-size: 0.8125rem;
  }
}

.renovation-point__copy {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #000;
  font-size: 2.25rem;
}
@media screen and (min-width: 768px) {
  .renovation-point__copy {
    font-size: 1.25rem;
  }
}

.single-news__wrap {
  padding-top: 21.5625rem;
  padding-bottom: 12.8125rem;
}
@media screen and (min-width: 768px) {
  .single-news__wrap {
    padding-top: 13.75rem;
    padding-bottom: 12.25rem;
  }
}

@media screen and (min-width: 768px) {
  .single-news__article {
    max-width: 50rem;
    margin: 0 auto;
  }
}

.single-news__article-date p {
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: center;
  color: #000;
  font-size: 1.25rem;
  margin-bottom: 9.6875rem;
}
@media screen and (min-width: 768px) {
  .single-news__article-date p {
    font-size: 0.75rem;
    margin-bottom: 6.25rem;
  }
}

.single-news__article-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  text-align: left;
  margin-top: 5rem;
  margin-bottom: 2.6875rem;
}
@media screen and (min-width: 768px) {
  .single-news__article-title {
    font-size: 1.25rem;
    text-align: center;
    letter-spacing: 0.1em;
    margin-top: 4.375rem;
    margin-bottom: 2.5rem;
  }
}

.single-news__content {
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #000;
  font-size: 1.5rem;
  line-height: 1.75;
  padding-bottom: 9.375rem;
}
@media screen and (min-width: 768px) {
  .single-news__content {
    font-size: 0.8125rem;
    line-height: 2.4615;
    max-width: 43.75rem;
    margin: 0 auto;
    padding-bottom: 6.5rem;
  }
}

.single-news__content p {
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .single-news__content p {
    padding-bottom: 2.1875rem;
  }
}

.single-news__navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #000;
  padding-top: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .single-news__navigation {
    max-width: 50rem;
    margin: 0 auto;
    padding-top: 3.125rem;
  }
}

.single-news__navigation-prev a {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #000;
  font-size: 1.5rem;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .single-news__navigation-prev a {
    font-size: 0.875rem;
  }
}

.single-news__navigation-prev span {
  display: inline-block;
  position: relative;
  width: 1.78125rem;
  height: 1rem;
  margin-right: 1rem;
}
@media screen and (min-width: 768px) {
  .single-news__navigation-prev span {
    width: 0.90625rem;
    height: 0.5625rem;
    margin-right: 0.5rem;
  }
}

.single-news__navigation-prev span:after {
  transition: all 0.3s;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background: transparent;
  border: 1px solid #191919;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .single-news__navigation-prev span:after {
    width: 0.5625rem;
    height: 0.5625rem;
  }
}

.single-news__navigation-prev span:before {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 1px;
  background: #191919;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .single-news__navigation-prev span:before {
    width: 0.625rem;
  }
}

.single-news__navigation-prev a:hover span:after {
  right: 70%;
}

.single-news__navigation-next a {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #000;
  font-size: 1.5rem;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .single-news__navigation-next a {
    font-size: 0.875rem;
  }
}

.single-news__navigation-next span {
  display: inline-block;
  position: relative;
  width: 1.78125rem;
  height: 1rem;
  margin-left: 1rem;
}
@media screen and (min-width: 768px) {
  .single-news__navigation-next span {
    width: 0.90625rem;
    height: 0.5625rem;
    margin-left: 0.5rem;
  }
}

.single-news__navigation-next span:after {
  transition: all 0.3s;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background: transparent;
  border: 1px solid #191919;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .single-news__navigation-next span:after {
    width: 0.5625rem;
    height: 0.5625rem;
  }
}

.single-news__navigation-next span:before {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 1px;
  background: #191919;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .single-news__navigation-next span:before {
    width: 0.625rem;
  }
}

.single-news__navigation-next a:hover span:after {
  left: 70%;
}

.single-news__navigation-list a {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #000;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .single-news__navigation-list a {
    font-size: 0.875rem;
  }
}

.single-news__navigation-list a:hover {
  opacity: 1;
}

.single-news__navigation-list-icon {
  position: relative;
  width: 2.13125rem;
  height: 2.13125rem;
  transition: all 0.3s;
  margin-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .single-news__navigation-list-icon {
    margin-right: 1.625rem;
    width: 1.75625rem;
    height: 1.75625rem;
  }
}

.single-news__navigation-list-icon img {
  position: absolute;
  width: 2.13125rem;
  height: 2.13125rem;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .single-news__navigation-list-icon img {
    width: 1.75625rem;
    height: 1.75625rem;
  }
}

.single-news__navigation-list-icon img:nth-of-type(1) {
  top: 0;
  right: 0;
}

.single-news__navigation-list-icon img:nth-of-type(2) {
  top: 0;
  left: 0;
}

.single-news__navigation-list-icon img:nth-of-type(3) {
  bottom: 0;
  right: 0;
}

.single-news__navigation-list-icon img:nth-of-type(4) {
  bottom: 0;
  left: 0;
}

.single-news__navigation-list a:hover .single-news__navigation-list-icon img:nth-of-type(1) {
  top: -0.25rem;
  right: -0.25rem;
}

.single-news__navigation-list a:hover .single-news__navigation-list-icon img:nth-of-type(2) {
  top: -0.25rem;
  left: -0.25rem;
}

.single-news__navigation-list a:hover .single-news__navigation-list-icon img:nth-of-type(3) {
  bottom: -0.25rem;
  right: -0.25rem;
}

.single-news__navigation-list a:hover .single-news__navigation-list-icon img:nth-of-type(4) {
  bottom: -0.25rem;
  left: -0.25rem;
}

.single-project__wrap {
  padding-top: 18.75rem;
  padding-bottom: 12.5rem;
}
@media screen and (min-width: 768px) {
  .single-project__wrap {
    padding-top: 11.5625rem;
    padding-bottom: 12.5rem;
  }
}

.single-project__wrap article > * + * {
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .single-project__img-001 {
    padding-right: 7.5rem;
  }
}

.single-project__img-001 img {
  object-fit: cover;
  width: 100%;
  height: 21.875rem;
}
@media screen and (min-width: 768px) {
  .single-project__img-001 img {
    height: 580px;
  }
}

.single-project__article-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin-top: 6.5625rem;
  margin-bottom: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .single-project__article-title {
    font-size: 1.25rem;
    margin-top: 5.875rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
  }
}

.single-project__article-title-icon {
  max-width: 4.5rem;
}
@media screen and (min-width: 768px) {
  .single-project__article-title-icon {
    max-width: 2.6875rem;
  }
}

.single-project__article-text {
  font-weight: 500;
  color: #000;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  line-height: 1.75;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .single-project__article-text {
    font-size: 0.8125rem;
    max-width: 32.5rem;
    margin-top: 0.9375rem;
    line-height: 2.4615;
    letter-spacing: 0.05em;
  }
}

.single-project__article-detail-imgarea {
  padding-left: 3.75rem;
  display: flex;
  gap: 0 0.5rem;
  padding-top: 9.0625rem;
  padding-bottom: 6.25rem;
}
@media screen and (min-width: 768px) {
  .single-project__article-detail-imgarea {
    padding-left: 7.5rem;
    gap: 0 0.9375rem;
    padding-top: 8.75rem;
    padding-bottom: 9.375rem;
  }
}

.single-project__img-002,
.single-project__img-003 {
  flex-grow: 1;
}

.single-project__img-002 {
  width: 65.9375%;
}
@media screen and (min-width: 768px) {
  .single-project__img-002 {
    width: 59.7%;
  }
}

.single-project__img-003 {
  width: 32.8125%;
}
@media screen and (min-width: 768px) {
  .single-project__img-003 {
    width: 29.8%;
  }
}

.single-project__article-detail-imgarea img {
  object-fit: cover;
  width: 100%;
  height: 18.125rem;
}
@media screen and (min-width: 768px) {
  .single-project__article-detail-imgarea img {
    height: 525px;
  }
}

.single-project__article-detail-textarea {
  padding-left: 3.125rem;
}
@media screen and (min-width: 768px) {
  .single-project__article-detail-textarea {
    padding-left: 5rem;
  }
}

.single-project__article-detail-title {
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #000;
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 5.3125rem;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .single-project__article-detail-title {
    font-size: 0.75rem;
    margin-bottom: 4.375rem;
  }
}

.single-project__article-detail-text {
  font-weight: 500;
  color: #000;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .single-project__article-detail-text {
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    line-height: 2.4615;
    max-width: 33.125rem;
  }
}

.single-project__img-004 {
  padding-top: 9.375rem;
  padding-bottom: 9.0625rem;
}
@media screen and (min-width: 768px) {
  .single-project__img-004 {
    padding-top: 9.0625rem;
    padding-bottom: 9.375rem;
  }
}

.single-project__img-004 img {
  object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .single-project__img-004 img {
    height: 550px;
  }
}

.single-project__article-customer-textarea {
  padding-left: 3.125rem;
}
@media screen and (min-width: 768px) {
  .single-project__article-customer-textarea {
    max-width: 23.75rem;
    margin-left: auto;
    padding-left: 0;
  }
}

.single-project__article-customer-title {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6666;
  color: #000;
  margin-bottom: 4.6875rem;
  font-size: 1.25rem;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .single-project__article-customer-title {
    font-size: 0.75rem;
    margin-bottom: 3.75rem;
  }
}

.single-project__article-customer-text {
  font-weight: 500;
  color: #000;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .single-project__article-customer-text {
    font-size: 0.8125rem;
    line-height: 2.4615;
    letter-spacing: 0.05em;
  }
}

.single-project__article-loop {
  padding-top: 9.0625rem;
  padding-bottom: 12.5rem;
}
@media screen and (min-width: 768px) {
  .single-project__article-loop {
    padding-top: 8.9375rem;
    padding-bottom: 9.375rem;
    padding-left: 7.5rem;
  }
}

.single-project__slider {
  overflow: hidden;
}

.single-project__slider-wrap {
  display: flex;
  gap: 0 0.3125rem;
}

.single-project__slider-wrap .scroll-hint-icon {
  width: 9.375rem;
  height: 9.375rem;
  border-radius: 50%;
  top: 35%;
  left: 39.6%;
  padding-top: 1.25rem;
  padding-bottom: 0.625rem;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .single-project__slider-wrap .scroll-hint-icon {
    width: 120px;
    height: 120px;
    top: 38%;
    left: 39.8%;
  }
}

.single-project__slider-wrap .scroll-hint-icon:after {
  content: none;
}

.single-project__slider-wrap .scroll-hint-icon:before {
  background-image: url(../../assets/images/common/scroll-hint-icon.png);
  width: 2.9375rem;
  height: 3.875rem;
  margin-top: 0.3125rem;
  margin-right: 0.0625rem;
}
@media screen and (min-width: 768px) {
  .single-project__slider-wrap .scroll-hint-icon:before {
    width: 40px;
    height: 54px;
    margin-top: 2px;
    margin-right: 3px;
  }
}

.single-project__slider-wrap .scroll-hint-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  font-size: 1.25rem;
  color: #fff;
  margin-top: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .single-project__slider-wrap .scroll-hint-text {
    margin-top: 11px;
    font-size: 12px;
    line-height: 1;
    color: #fff;
    padding-right: 2px;
  }
}

.single-project__slider-slide {
  flex: 0 0 auto;
}

.single-project__slider-slide img {
  height: 31.25rem;
  object-fit: cover;
  width: auto;
}
@media screen and (min-width: 768px) {
  .single-project__slider-slide img {
    height: 500px;
  }
}

.single-project__navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .single-project__navigation {
    margin: 0 auto;
  }
}

.single-project__navigation-pc-wrap {
  display: flex;
  gap: 0 2.5rem;
}

.single-project__navigation-prev a {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #000;
  font-size: 1.5rem;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .single-project__navigation-prev a {
    font-size: 0.875rem;
  }
}

.single-project__navigation-prev span {
  display: inline-block;
  position: relative;
  width: 1.78125rem;
  height: 1rem;
  margin-right: 1rem;
}
@media screen and (min-width: 768px) {
  .single-project__navigation-prev span {
    width: 0.90625rem;
    height: 0.5625rem;
    margin-right: 0.5rem;
  }
}

.single-project__navigation-prev span:after {
  transition: all 0.3s;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background: transparent;
  border: 1px solid #191919;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .single-project__navigation-prev span:after {
    width: 0.5625rem;
    height: 0.5625rem;
  }
}

.single-project__navigation-prev span:before {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 1px;
  background: #191919;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .single-project__navigation-prev span:before {
    width: 0.625rem;
  }
}

.single-project__navigation-prev a:hover span:after {
  right: 70%;
}

.single-project__navigation-next a {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #000;
  font-size: 1.5rem;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .single-project__navigation-next a {
    font-size: 0.875rem;
  }
}

.single-project__navigation-next span {
  display: inline-block;
  position: relative;
  width: 1.78125rem;
  height: 1rem;
  margin-left: 1rem;
}
@media screen and (min-width: 768px) {
  .single-project__navigation-next span {
    width: 0.90625rem;
    height: 0.5625rem;
    margin-left: 0.5rem;
  }
}

.single-project__navigation-next span:after {
  transition: all 0.3s;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background: transparent;
  border: 1px solid #191919;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .single-project__navigation-next span:after {
    width: 0.5625rem;
    height: 0.5625rem;
  }
}

.single-project__navigation-next span:before {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 1px;
  background: #191919;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .single-project__navigation-next span:before {
    width: 0.625rem;
  }
}

.single-project__navigation-next a:hover span:after {
  left: 70%;
}

.single-project__navigation-list a {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #000;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .single-project__navigation-list a {
    font-size: 0.875rem;
  }
}

.single-project__navigation-list a:hover {
  opacity: 1;
}

.single-project__navigation-list-icon {
  position: relative;
  width: 2.13125rem;
  height: 2.13125rem;
  transition: all 0.3s;
  margin-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .single-project__navigation-list-icon {
    margin-right: 1.625rem;
    width: 1.75625rem;
    height: 1.75625rem;
  }
}

.single-project__navigation-list-icon img {
  position: absolute;
  width: 2.13125rem;
  height: 2.13125rem;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .single-project__navigation-list-icon img {
    width: 1.75625rem;
    height: 1.75625rem;
  }
}

.single-project__navigation-list-icon img:nth-of-type(1) {
  top: 0;
  right: 0;
}

.single-project__navigation-list-icon img:nth-of-type(2) {
  top: 0;
  left: 0;
}

.single-project__navigation-list-icon img:nth-of-type(3) {
  bottom: 0;
  right: 0;
}

.single-project__navigation-list-icon img:nth-of-type(4) {
  bottom: 0;
  left: 0;
}

.single-project__navigation-list a:hover .single-project__navigation-list-icon img:nth-of-type(1) {
  top: -0.25rem;
  right: -0.25rem;
}

.single-project__navigation-list a:hover .single-project__navigation-list-icon img:nth-of-type(2) {
  top: -0.25rem;
  left: -0.25rem;
}

.single-project__navigation-list a:hover .single-project__navigation-list-icon img:nth-of-type(3) {
  bottom: -0.25rem;
  right: -0.25rem;
}

.single-project__navigation-list a:hover .single-project__navigation-list-icon img:nth-of-type(4) {
  bottom: -0.25rem;
  left: -0.25rem;
}

.top-lead {
  padding-top: 12.5rem;
  padding-bottom: 9.375rem;
}
@media screen and (min-width: 768px) {
  .top-lead {
    padding-top: 18.39375rem;
    padding-bottom: 11.3125rem;
  }
}

.top-lead__icon {
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .top-lead__icon {
    margin-bottom: 2.03125rem;
  }
}

.top-lead__icon img {
  max-width: 2.5rem;
}
@media screen and (min-width: 768px) {
  .top-lead__icon img {
    max-width: 1.575rem;
  }
}

@media screen and (min-width: 768px) {
  .top-lead__flex {
    display: flex;
    justify-content: space-between;
  }
}

.top-lead__left h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.1em;
  font-size: 2.25rem;
  margin-top: -0.3125rem;
  line-height: 1.77777;
}
@media screen and (min-width: 768px) {
  .top-lead__left h2 {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.top-lead__left p {
  font-weight: 500;
  color: #000000;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  line-height: 1.6;
  margin-bottom: 5.625rem;
}
@media screen and (min-width: 768px) {
  .top-lead__left p {
    margin-top: 0.625rem;
    font-size: 0.75rem;
    line-height: 1.3;
  }
}

@media screen and (min-width: 768px) {
  .top-lead__right {
    max-width: 31.25rem;
  }
}

.top-lead__right p {
  font-weight: 400;
  color: #000000;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  line-height: 1.75;
  margin-top: -0.3125rem;
}
@media screen and (min-width: 768px) {
  .top-lead__right p {
    font-size: 0.8125rem;
    line-height: 2.46;
    margin-top: -0.625rem;
  }
}

.top-lead__btn {
  margin-top: 9.6875rem;
}
@media screen and (min-width: 768px) {
  .top-lead__btn {
    margin-top: 8.625rem;
  }
}

.top-lead__btn .btn {
  justify-content: flex-end;
  margin-right: 5rem;
}
@media screen and (min-width: 768px) {
  .top-lead__btn .btn {
    justify-content: flex-start;
  }
}

.top-icon {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.5s, opacity 0.5s linear, transform 0.5s linear; /* transitionのタイミングを調整 */
}

.top-icon-active {
  visibility: visible;
  opacity: 1;
  transform: rotate(-180deg);
  transition: visibility 0s linear, opacity 0.5s linear, transform 0.5s linear; /* transitionのタイミングを調整 */
}

.top-links {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-links {
    margin-left: 6.25rem;
  }
}

.top-links__column {
  position: relative;
  height: 31.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-links__column {
    width: 33.3333333333%;
    height: 43.75rem;
  }
}

.top-links__column a {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .top-links__column:after {
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    transition: all 0.5s;
  }
}

.top-links__column a:hover {
  opacity: 1;
}

.top-links__column:hover:after {
  z-index: -1;
  opacity: 0;
}

.top-links__column a img {
  height: 31.25rem;
}
@media screen and (min-width: 768px) {
  .top-links__column a img {
    width: 100%;
    height: 43.75rem;
    object-fit: cover;
  }
}

.top-links__column--left img {
  object-position: center left;
}

.top-links__column--right img {
  object-position: center right;
}

.top-links__grid {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-links__grid {
    display: flex;
    position: relative;
  }
  .top-links__grid:hover:before {
    opacity: 1;
  }
  .top-links__grid:hover:after {
    opacity: 1;
  }
}

@media screen and (min-width: 768px) {
  .top-links__grid:before {
    content: "";
    position: absolute;
    background: #fff;
    width: 0.0625rem;
    height: 100%;
    top: 0;
    right: 33.3333333333%;
    z-index: 3;
    opacity: 0;
    transition: all 0.7s;
  }
}

@media screen and (min-width: 768px) {
  .top-links__grid::after {
    content: "";
    position: absolute;
    background: #fff;
    width: 0.0625rem;
    height: 100%;
    top: 0;
    left: 33.3333333333%;
    z-index: 3;
    opacity: 0;
    transition: all 0.7s;
  }
}

.top-links__textarea {
  display: none;
}
@media screen and (min-width: 768px) {
  .top-links__textarea {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 4;
    width: 100%;
    display: flex;
    pointer-events: none;
  }
}

.top-links__text {
  position: absolute;
  left: 3.75rem;
  bottom: 3.125rem;
  z-index: 4;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-links__text {
    padding-left: 2.5rem;
    padding-bottom: 2.5rem;
    width: 33.3333333333%;
    position: relative;
    left: auto;
    bottom: auto;
  }
}

.top-links__text h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: #f8f8f8;
  font-size: 2.25rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .top-links__text h2 {
    font-size: 1.125rem;
    line-height: 0.88;
  }
}

.top-links__text p {
  color: #fff;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.75;
  margin-top: 3.125rem;
  margin-bottom: 1.5625rem;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 768px) {
  .top-links__text p {
    font-size: 0.8125rem;
    line-height: 3.23;
    margin-top: 1.25rem;
    margin-bottom: 0;
  }
}

.top-links__text span {
  display: inline-block;
  position: relative;
  width: 3.625rem;
  height: 1rem;
}
@media screen and (min-width: 768px) {
  .top-links__text span {
    width: 2.15625rem;
    height: 0.5625rem;
  }
}

.top-links__text span:after {
  transition: all 0.3s;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .top-links__text span:after {
    width: 0.5625rem;
    height: 0.5625rem;
  }
}

.top-links__text span:before {
  content: "";
  position: absolute;
  width: 3.125rem;
  height: 1px;
  background: #fff;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .top-links__text span:before {
    width: 1.875rem;
  }
}

.top-links__sp-item a {
  position: relative;
}

.top-links__sp-item a:after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.top-links__sp-item img {
  height: 31.25rem;
  object-fit: cover;
}

.top-links__sp-text {
  position: absolute;
  left: 3.75rem;
  bottom: 3.125rem;
  z-index: 4;
  width: 100%;
}

.top-links__sp-text h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: #f8f8f8;
  font-size: 2.25rem;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 3.125rem;
}

.top-links__sp-text p {
  color: #fff;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.75;
  margin-top: 3.125rem;
  margin-bottom: 1.5625rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.top-links__sp-text span {
  display: inline-block;
  position: relative;
  width: 3.625rem;
  height: 1rem;
}
@media screen and (min-width: 768px) {
  .top-links__sp-text span {
    width: 2.15625rem;
    height: 0.5625rem;
  }
}

.top-links__sp-text span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}

.top-links__sp-text span:before {
  content: "";
  position: absolute;
  width: 3.125rem;
  height: 1px;
  background: #fff;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.top-mv {
  position: relative;
}

.top-mv__slider {
  height: 73.75rem;
}
@media screen and (min-width: 768px) {
  .top-mv__slider {
    height: 56.25rem;
  }
}

.top-mv__slider img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}

.top-mv__slider .swiper-slide-active img,
.top-mv__slider .swiper-slide-duplicate-active img,
.top-mv__slider .swiper-slide-prev img {
  animation: zoomUp 8s linear 0s normal both;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.top-news {
  padding-bottom: 13.75rem;
}
@media screen and (min-width: 768px) {
  .top-news {
    padding-bottom: 12.8125rem;
  }
}

.top-news__title {
  display: flex;
  align-items: center;
  margin-bottom: 3.5625rem;
}
@media screen and (min-width: 768px) {
  .top-news__title {
    margin-bottom: 4.6875rem;
  }
}

.top-news__title img {
  max-width: 2.5rem;
  margin-right: 0.9375rem;
}
.top-news__title h2 {
  font-weight: 500;
  color: #000;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .top-news__title h2 {
    font-size: 0.8125rem;
    line-height: 1.38;
  }
}

@media screen and (min-width: 768px) {
  .top-news__flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .top-news__article {
    width: 41.25rem;
  }
}

.top-news__article a {
  display: flex;
  flex-direction: column-reverse;
  gap: 0.9375rem 0;
  padding-top: 3.125rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(92, 92, 92, 0.2);
}
@media screen and (min-width: 768px) {
  .top-news__article a {
    gap: 0;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.top-news__article-title {
  font-weight: 400;
  color: #000;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  line-height: 1.7;
  white-space: normal;
  /* 文字を折り返す */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 表示する行数を2行に設定 */
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-news__article-title {
    font-size: 0.8125rem;
    line-height: 1.3;
    padding-right: 1em;
  }
}

.top-news__article-date {
  font-weight: 400;
  font-size: 1.375rem;
  letter-spacing: 0.12em;
  line-height: 1.909;
  color: #000;
}
@media screen and (min-width: 768px) {
  .top-news__article-date {
    margin-right: -0.125rem;
    font-size: 0.8125rem;
    letter-spacing: 0.12em;
    line-height: 1.3;
  }
}

.top-news__view-all {
  margin-top: 8.4375rem;
}
@media screen and (min-width: 768px) {
  .top-news__view-all {
    position: relative;
    top: -0.0625rem;
    margin-right: 0.78125rem;
    margin-top: 0;
  }
}

.top-news__view-all .btn {
  justify-content: flex-end;
}

.top-room {
  padding-top: 8.75rem;
}
@media screen and (min-width: 768px) {
  .top-room {
    padding-top: 9.3125rem;
  }
}

.top-room__flex {
  border-bottom: 1px solid rgba(92, 92, 92, 0.2);
  padding-bottom: 6.125rem;
  margin-bottom: 6.25rem;
}
@media screen and (min-width: 768px) {
  .top-room__flex {
    display: flex;
    justify-content: space-between;
    padding-bottom: 7.6875rem;
  }
}

@media screen and (min-width: 768px) {
  .top-room__left {
    max-width: 35rem;
  }
}

.top-room__left-title img {
  max-width: 2.5rem;
}
@media screen and (min-width: 768px) {
  .top-room__left-title img {
    max-width: 1.575rem;
  }
}

.top-room__left-title h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: #000;
  font-size: 2.25rem;
  letter-spacing: 0.1em;
  line-height: 1.0555;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .top-room__left-title h2 {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-top: 1.875rem;
  }
}

.top-room__left-title p {
  font-weight: 500;
  color: #000;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  line-height: 2.9;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .top-room__left-title p {
    font-size: 0.75rem;
    line-height: 2.6666;
    margin-top: 0;
  }
}

.top-room__left-text {
  font-weight: 400;
  color: #000;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  line-height: 1.75;
  margin-top: 3.3125rem;
  margin-right: 3.75rem;
}
@media screen and (min-width: 768px) {
  .top-room__left-text {
    font-size: 0.8125rem;
    line-height: 2.25;
    margin-top: 1.75rem;
    margin-right: 0;
  }
}

.top-room__right {
  display: flex;
  margin-top: 3.125rem;
  justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .top-room__right {
    margin-top: 0.625rem;
    justify-content: flex-start;
  }
}

.top-room__item a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12.9375rem;
  height: 12.9375rem;
  border-radius: 50%;
  border: 1px solid #000000;
  transition: all 0.7s;
  background-color: #000;
}
@media screen and (min-width: 768px) {
  .top-room__item a {
    width: 10.9375rem;
    height: 10.9375rem;
    background-color: transparent;
  }
}

.top-room__item a .icon-hover {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .top-room__item a .icon-hover {
    opacity: 0;
  }
}

.top-room__item a:after {
  content: "";
  position: absolute;
  background-color: #000000;
  width: 1.875rem;
  height: 0.125rem;
  bottom: 0.4375rem;
  right: -0.3125rem;
  transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .top-room__item a:after {
    width: 1.6875rem;
  }
}

.top-room__item a img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s;
}

.top-room__item a img.icon-default {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .top-room__item a:hover {
    opacity: 1;
    background: #000000;
  }
}

@media screen and (min-width: 768px) {
  .top-room__item a:hover img.icon-default {
    opacity: 0;
  }
}

@media screen and (min-width: 768px) {
  .top-room__item a:hover img.icon-hover {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.top-room__item p {
  font-weight: 500;
  color: #000;
  font-size: 1.4375rem;
  letter-spacing: 0.08em;
  line-height: 1.6086;
  text-align: right;
  margin-top: 1.5rem;
  position: relative;
  right: -0.125rem;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .top-room__item p {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    line-height: 1;
    margin-top: 1.125rem;
  }
}

.top-room__item--ig img {
  max-width: 4.4375rem;
}
@media screen and (min-width: 768px) {
  .top-room__item--ig img {
    max-width: 3.4375rem;
  }
}

.top-room__item--yt {
  margin-left: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .top-room__item--yt {
    margin-left: 2.5rem;
  }
}

.top-room__item--yt img {
  max-width: 5.52625rem;
}
@media screen and (min-width: 768px) {
  .top-room__item--yt img {
    max-width: 4.36625rem;
  }
}/*# sourceMappingURL=style.css.map */