@charset "UTF-8";
/**
 * 引数のfontSizeをremに変換する関数
 * @param fontSize フォントサイズ
 */
/**
 * 引数の最大画面サイズから指定されたpx数を元にvwに変換する関数
 * @param maxScreenSize 最大画面サイズ
 * @param px 変換するpx数
 */
/**
 * 引数のpx数とparentを元に割合を返す関数
 * @param percent 最大画面サイズ
 * @param px 変換するpx数
 */
/**
 * 引数のfontSizeを元に指定されたpx数をemに変換する関数
 * @param px 変換するpx数
 * @param fontSize フォントサイズ
 */
/* ***********************************
 *
 *    Ire's CSS Reset & Base
 *    https://github.com/ireade/css/blob/master/base.scss
 * *********************************** */
/* Reset margin, padding, border
 * *********************************** */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

/* Typography
   * *********************************** */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.4;
}

* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a,
a:visited {
  color: inherit;
  text-decoration: none;
}

/* Layout
   * *********************************** */
article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: inherit;
}

/* Elements
   * *********************************** */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

ol,
ul {
  list-style: none;
}

img,
video {
  max-width: 100%;
}

img {
  border-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

/* Attributes & states
   * *********************************** */
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Utility classes
   * *********************************** */
.sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  left: -9999px;
  top: -9999px;
}

html {
  box-sizing: border-box;
  overflow-y: scroll;
  height: 100%;
  scroll-behavior: smooth;
  font-size: 0.8333333333vw;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 769px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  overflow: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #231815;
  letter-spacing: 0.05em;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

main {
  flex: 1 0 auto;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
strong {
  font-weight: bold;
}

input,
textarea {
  max-width: 100%;
  font-family: inherit;
  font-size: 100%;
}

@media only screen and (min-width: 768px) {
  .c-onlySP {
    display: none !important;
  }
}
@media not all and (min-width: 768px) {
  .c-onlyPC {
    display: none !important;
  }
}
.c-mainInner {
  padding: 0 4.3%;
}
@media only screen and (min-width: 768px) {
  .c-mainInner {
    margin-left: auto;
    margin-right: auto;
    max-width: 1080px;
    padding: 0 40px;
  }
}

.c-header {
  position: fixed;
  z-index: 100;
  width: 100%;
  padding: 3.6rem 4rem;
}
@media only screen and (min-width: 768px) {
  .c-header {
    backdrop-filter: blur(20px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.5);
  }
}
@media not all and (min-width: 768px) {
  .c-header {
    position: relative;
    padding: 0;
  }
}
.c-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media not all and (min-width: 768px) {
  .c-header__menu {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    top: 0;
    left: 0;
    padding: 1.6rem 4.3%;
    z-index: 1001;
  }
}
.c-header__logo {
  display: block;
  width: 5.7rem;
  transition: 0.3s;
}
.c-header__logo:hover {
  opacity: 0.7;
}
@media not all and (min-width: 768px) {
  .c-header .c-headerNav {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0;
    z-index: 1000;
    transform: translateX(101%);
    opacity: 0;
    transition: 0.3s;
    overflow: scroll;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
  }
}
.c-header .c-headerNav__list {
  display: flex;
  align-items: center;
  column-gap: 4rem;
  padding-right: 4rem;
  padding-left: 2rem;
}
@media not all and (min-width: 768px) {
  .c-header .c-headerNav__list {
    flex-direction: column;
    padding: 0;
    row-gap: 2.4rem;
  }
}
.c-header .c-headerNav__item {
  position: relative;
  z-index: 1;
}
.c-header .c-headerNav__link {
  display: block;
  font-size: 1.2rem;
  line-height: 2rem;
  font-weight: bold;
  transition: 0.3s;
  position: relative;
}
.c-header .c-headerNav__link::after {
  position: absolute;
  left: 50%;
  bottom: -4px;
  z-index: 1;
  transform: translateX(-50%);
  content: "";
  width: 75%;
  height: 0.2rem;
  background: linear-gradient(#fdd000 0 0) var(--p, 0) 100% / var(--d, 0) 3px
    no-repeat;
  transition: 0.3s, background-position 0s 0.3s;
}
.c-header .c-headerNav__link:hover {
  opacity: 0.7;
}
.c-header .c-headerNav__link:hover::after {
  --d: 100%;
  --p: 100%;
}
.c-header__button {
  cursor: pointer;
  outline: 0;
  display: block;
  border: none;
  background: 0 0;
  position: relative;
  z-index: 5000;
  width: 4rem;
  height: 2.4rem;
}
@media only screen and (min-width: 768px) {
  .c-header__button {
    display: none;
  }
}
.c-header__button span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fdd000;
  left: 0;
  transition: 0.3s;
}
.c-header__button span:nth-of-type(1) {
  top: 0;
}
.c-header__button span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.c-header__button span:nth-of-type(3) {
  bottom: 0%;
}
.c-header.--active .c-headerNav {
  transform: translateX(0);
  opacity: 1;
  transition: 0.3s;
}
.c-header.--active .c-header__button span {
  width: 80%;
  top: 50%;
  left: 50%;
}
.c-header.--active .c-header__button span:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-header.--active .c-header__button span:nth-of-type(2) {
  opacity: 0;
  transform: translate(0);
}
.c-header.--active .c-header__button span:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.c-sns {
  position: fixed;
  top: 27rem;
  left: 5.1rem;
  z-index: 2000;
}
.c-sns__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 3.2rem;
  width: 80%;
}
.c-sns__list a {
  display: block;
  transition: 0.3s;
}
.c-sns__list a:hover {
  opacity: 0.7;
}

.c-link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #231815;
  color: #fff !important;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  width: fit-content;
  min-width: 20.4rem;
  height: 5.6rem;
  transition: 0.3s;
}
.c-link:hover {
  opacity: 0.7;
}
.c-link::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.4rem;
  height: 100%;
  background-color: #fdd000;
}

.c-scroll {
  transform: rotate(90deg);
}
.c-scroll__text {
  font-size: 1.2rem;
}
.c-scroll__border {
  position: absolute;
  top: 45%;
  right: -1rem;
  width: 5.3rem;
  height: 0.1rem;
  background-color: #fdd000;
  overflow: hidden;
  transform: translate(100%, 0);
}
.c-scroll__border::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.4rem;
  height: 0.3rem;
  background-color: #231815;
  z-index: 100;
  animation: scrolldown 1.4s ease-in-out infinite;
}
@keyframes scrolldown {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(150%);
  }
}

.c-footer {
  background-color: #fdd000;
}
.c-footer__inner {
  margin-left: auto;
  margin-right: auto;
  padding-top: 15.2rem;
  padding-bottom: 12rem;
  width: 96rem;
}
@media not all and (min-width: 768px) {
  .c-footer__inner {
    width: 100%;
    padding: 4rem 4.3%;
  }
}
.c-footer__main {
  display: flex;
  justify-content: space-between;
  column-gap: 12rem;
}
@media not all and (min-width: 768px) {
  .c-footer__main {
    flex-direction: column;
    justify-content: unset;
    row-gap: 3.2rem;
  }
}
.c-footer__logo {
  width: 25.8rem;
  display: block;
  transition: 0.3s;
}
@media not all and (min-width: 768px) {
  .c-footer__logo {
    width: 12.4rem;
    margin: auto;
  }
}
.c-footer__logo:hover {
  opacity: 0.7;
}
.c-footer__info {
  flex: 1;
}
.c-footer__info div {
  display: flex;
  column-gap: 2.4rem;
}
.c-footer__info div + div {
  margin-top: 0.8rem;
}
.c-footer__info dt {
  width: 20%;
  font-size: 1.2rem;
  line-height: 2rem;
  letter-spacing: 0.1em;
}
.c-footer__info dd {
  flex: 1;
  font-size: 1.2rem;
  line-height: 1.8rem;
  letter-spacing: 0.1em;
}
.c-footer__other {
  margin-top: 6.4rem;
  display: flex;
  justify-content: space-between;
}
@media not all and (min-width: 768px) {
  .c-footer__other {
    margin-top: 3.2rem;
    flex-direction: column;
    justify-content: unset;
    row-gap: 2.4rem;
  }
}
.c-footer .c-footerNav__list {
  display: flex;
  column-gap: 3.4rem;
}
@media not all and (min-width: 768px) {
  .c-footer .c-footerNav__list {
    flex-direction: column;
    row-gap: 1.6rem;
  }
}
.c-footer .c-footerNav__item {
  position: relative;
  width: fit-content;
}
.c-footer .c-footerNav__item--active::after {
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  content: "";
  width: 75%;
  height: 0.2rem;
  background-color: #fff;
}
.c-footer .c-footerNav__link {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  transition: 0.3s;
}
.c-footer .c-footerNav__link:hover {
  opacity: 0.7;
}
.c-footer__sns {
  display: flex;
  column-gap: 4rem;
  align-items: center;
}
@media not all and (min-width: 768px) {
  .c-footer__sns {
    column-gap: 1.6rem;
  }
}
.c-footer__sns a {
  width: fit-content;
  display: block;
  transition: 0.3s;
}
.c-footer__sns a:hover {
  opacity: 0.7;
}
.c-footer__copyright {
  margin-top: 2.4rem;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.modaal-wrapper .modaal-close {
  position: absolute;
}
.modaal-wrapper .modaal-close:focus:after,
.modaal-wrapper .modaal-close:focus:before,
.modaal-wrapper .modaal-close:hover:after,
.modaal-wrapper .modaal-close:hover:before {
  background: #fdd000;
}
@media not all and (min-width: 768px) {
  .modaal-wrapper .modaal-close {
    top: 5px;
    right: 5px;
  }
}
.modaal-wrapper .modaal-container {
  background-color: #fdd000;
  width: 97.2rem;
  max-width: 972px;
}
@media not all and (min-width: 768px) {
  .modaal-wrapper .modaal-container {
    width: 100%;
  }
}
.modaal-wrapper .modaal-container .modaal-content-container {
  padding: 5.4rem 8rem 4.4rem;
}
@media not all and (min-width: 768px) {
  .modaal-wrapper .modaal-container .modaal-content-container {
    padding: 2.4rem 4.3%;
  }
}

.c-contact__title {
  color: honeydew;
  font-size: xx-large;
  text-align: center;
  margin-bottom: 2rem;
}
.c-contact__submit {
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.5rem;
  width: 21.7rem;
  height: 5.3rem;
  background-color: #231815;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  border: 2px solid #231815;
  transition: 0.3s;
}
.c-contact__submit:hover {
  color: #231815;
  background-color: #fff;
}
.c-contact__wrapper .sent .item,
.c-contact__wrapper .sent p {
  display: none;
}
.c-contact__wrapper .sent .completeMessage {
  display: block !important;
  border: none;
  font-size: 2.4rem;
  margin: 1.6rem;
  text-align: center;
}
@media not all and (min-width: 768px) {
  .c-contact__wrapper .sent .completeMessage {
    font-size: 1.6rem;
  }
}
.c-contact__wrapper .sent .wpcf7-response-output {
  display: none;
}

.wpcf7-form {
  margin-top: 2.4rem;
  color: #231815;
}

.wpcf7-form p {
  margin-bottom: 1.6rem;
  position: relative;
}

.wpcf7-form label {
  display: block;
  margin-bottom: 0.4rem;
  color: #231815;
  font-size: 1.4rem;
  font-weight: bold;
}

.wpcf7-form .wpcf7-form-control {
  width: 100%;
  box-sizing: border-box;
  padding: 1.2rem 1.4rem;
  border: none;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  color: #231815;
  background: #fff;
  margin-top: 0.2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wpcf7-form .wpcf7-form-control:focus {
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.wpcf7-form textarea.wpcf7-form-control {
  min-height: 8rem;
  resize: vertical;
}

.wpcf7-form .wpcf7-submit {
  width: 21.7rem;
  height: 5.3rem;
  margin: 2rem auto 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.5rem;
  background-color: #231815;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  border: 2px solid #231815;
  transition: 0.3s;
  cursor: pointer;
}

.wpcf7-form .wpcf7-submit:hover {
  color: #231815;
  background-color: #fff;
}

.wpcf7-response-output {
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid #231815;
  color: #231815;
}

.c-input {
  background-color: #fff;
  position: relative;
}
.c-input label {
  position: absolute;
  top: 0.8rem;
  left: 1.4rem;
  font-size: 1.4rem;
  font-weight: bold;
}
.c-input input {
  width: 100%;
  height: 100%;
  border: none;
  padding: 3.2rem 1.4rem 0.8rem;
  font-size: 2rem;
  font-weight: bold;
}

.c-textarea {
  background-color: #fff;
  position: relative;
}
.c-textarea label {
  position: absolute;
  top: 0.8rem;
  left: 1.4rem;
  font-size: 1.4rem;
  font-weight: bold;
}
.c-textarea textarea {
  resize: none;
  width: 100%;
  height: 13.6rem;
  border: none;
  padding: 3.2rem 1.4rem 0.8rem;
  font-size: 2rem;
  font-weight: bold;
}

.top .mv {
  position: relative;
}
.top .mv__inner {
  width: 100%;
  height: 100vh;
  border-bottom: 6px solid #231815;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  max-height: 75rem;
}
.top .mv__mainImage {
  width: 25.8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media not all and (min-width: 768px) {
  .top .mv__mainImage {
    width: 12.4rem;
  }
}
.top .mv__underLinks {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 8rem 2.4rem;
}
@media not all and (min-width: 768px) {
  .top .mv__underLinks {
    padding: 0 4.3% 1.6rem;
  }
}
.top .mv__link {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  position: relative;
  transition: 0.3s;
}
@media not all and (min-width: 768px) {
  .top .mv__link {
    font-size: 1.2rem;
  }
}
.top .mv__link:hover {
  opacity: 0.7;
}
.top .mv__link--active::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.6rem;
  background-color: #fdd000;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}
.top .mv__triangle {
  display: flex;
  justify-content: center;
  align-items: center;
}
.top .mv__triangle div {
  border-right: 6.5rem solid transparent;
  border-bottom: 10.8rem solid #231815;
  border-left: 6.5rem solid transparent;
}
@media not all and (min-width: 768px) {
  .top .mv__triangle div {
    border-right-width: 3.2rem;
    border-bottom-width: 5.4rem;
    border-left-width: 3.2rem;
  }
}
.top .mv__scroll {
  position: absolute;
  top: 50%;
  right: 5.1rem;
  transform: translateY(-50%);
  z-index: 100;
}
.top .section {
  position: relative;
}
.top .section::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: 34.1rem;
  height: 100%;
  z-index: -1;
  background-color: #fdd000;
}
@media not all and (min-width: 768px) {
  .top .section::after {
    width: 12.5rem;
  }
}
.top .section__bg {
  width: 100%;
  height: 10.8rem;
  background-attachment: fixed;
  background-position: center;
}
@media not all and (min-width: 768px) {
  .top .section__bg {
    background-size: cover;
  }
}
.top .section__bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(253, 208, 0, 0.7);
}
.top .section__inner {
  margin-left: auto;
  margin-right: auto;
  padding: 11rem 0 9.6rem;
  width: 97.5rem;
}
@media not all and (min-width: 768px) {
  .top .section__inner {
    padding: 5.6rem 4.3%;
    width: 100%;
  }
}
.top .section__detail {
  display: flex;
  justify-content: space-between;
}
@media not all and (min-width: 768px) {
  .top .section__detail {
    flex-direction: column;
    row-gap: 8rem;
  }
}
.top .section__main {
  width: 50%;
}
@media not all and (min-width: 768px) {
  .top .section__main {
    width: 100%;
  }
}
.top .section__title {
  display: flex;
  column-gap: 2.4rem;
  align-items: center;
}
@media not all and (min-width: 768px) {
  .top .section__title {
    flex-direction: column;
    align-items: unset;
    row-gap: 0.8rem;
  }
}
.top .section__title--sub {
  color: #fdd000;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
}
.top .section__contents {
  position: relative;
  margin-top: 5.6rem;
  padding: 6.4rem 0;
}
.top .section__contents::before,
.top .section__contents::after {
  content: "";
  position: absolute;
  left: 0;
  width: 2rem;
  height: 0.2rem;
  background-color: #231815;
}
.top .section__contents::before {
  top: 0;
}
.top .section__contents::after {
  bottom: 0;
}
.top .section__list li {
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  line-height: 3.1rem;
}
.top .section__list li::before {
  content: "・";
}
.top .section__sub {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media not all and (min-width: 768px) {
  .top .section__sub {
    width: 100%;
  }
}
.top .section__sub--link {
  margin-top: auto;
  padding-top: 4rem;
  display: flex;
  justify-content: center;
}
.top .section--architecture .section__bg {
  background-image: url(../img/top/architecture_bg_img.png);
}
.top .section--architecture .section__title--main {
  width: 35.3rem;
}
@media not all and (min-width: 768px) {
  .top .section--architecture .section__title--main {
    width: 80%;
  }
}
.top .section--architecture .section__sub {
  margin-top: -4rem;
}
.top .section--architecture .section__sub--image {
  width: 41rem;
  transform: rotate(13deg);
  padding-bottom: 4rem;
}
@media not all and (min-width: 768px) {
  .top .section--architecture .section__sub--image {
    width: 80%;
  }
}
.top .section--foodtruck .section__bg {
  background-image: url(../img/top/foodtruck_bg_img.png);
}
.top .section--foodtruck .section__title--main {
  width: 30.9rem;
}
@media not all and (min-width: 768px) {
  .top .section--foodtruck .section__title--main {
    width: 80%;
  }
}
.top .section--foodtruck .section__sub--image {
  width: 49.2rem;
}
@media not all and (min-width: 768px) {
  .top .section--foodtruck .section__sub--image {
    width: 80%;
  }
}
.top .section--entertainment .section__bg {
  background-image: url(../img/top/entertainment_bg_img.png);
}
.top .section--entertainment .section__title--main {
  width: 40.1rem;
}
@media not all and (min-width: 768px) {
  .top .section--entertainment .section__title--main {
    width: 80%;
  }
}
.top .section--entertainment .section__sub--image {
  width: 34.1rem;
  transform: rotate(289deg);
}
@media not all and (min-width: 768px) {
  .top .section--entertainment .section__sub--image {
    width: 60%;
  }
}
.top .message {
  display: flex;
}
@media not all and (min-width: 768px) {
  .top .message {
    flex-direction: column;
  }
}
.top .message__image {
  width: 48.4rem;
}
@media not all and (min-width: 768px) {
  .top .message__image {
    width: 100%;
  }
}
.top .message__detail {
  flex: 1;
  background-color: #231815;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media not all and (min-width: 768px) {
  .top .message__detail {
    padding: 4rem 4.3%;
  }
}
.top .message__description {
  width: 50rem;
}
@media not all and (min-width: 768px) {
  .top .message__description {
    width: 100%;
  }
}
.top .message__description p {
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  line-height: 3.1rem;
  color: #fff;
}
.top .message__description p + p {
  margin-top: 0.8rem;
}
.top .news {
  padding-top: 6.7rem;
  padding-bottom: 0;
}
.top .news__inner {
  margin-left: auto;
  margin-right: auto;
  width: 110rem;
  display: flex;
}
@media not all and (min-width: 768px) {
  .top .news__inner {
    width: 100%;
    flex-direction: column;
  }
}
.top .news__head {
  width: 43.4rem;
  background-color: #231815;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.4rem 0;
  margin: 0 auto;
}
@media not all and (min-width: 768px) {
  .top .news__head {
    width: 100%;
  }
}
.top .news__title {
  width: 15rem;
}
.top .news__main {
  flex: 1;
  background-color: #fdd000;
  padding: 4rem 6.4rem;
}
@media not all and (min-width: 768px) {
  .top .news__main {
    padding: 4rem 4.3%;
  }
}
.top .news .newsItem + .newsItem {
  margin-top: 1.6rem;
}
.top .news .newsItem__main {
  display: flex;
  justify-content: space-between;
  column-gap: 2.4rem;
}
@media not all and (min-width: 768px) {
  .top .news .newsItem__main {
    flex-direction: column;
    justify-content: unset;
  }
}
.top .news .newsItem__main--date,
.top .news .newsItem__main--title {
  font-size: 1.2rem;
  line-height: 3.1rem;
  letter-spacing: 0.14em;
}
.top .news .newsItem__main--title {
  flex: 1;
}
.top .news .newsItem__sub {
  display: flex;
  column-gap: 2.4rem;
}
@media not all and (min-width: 768px) {
  .top .news .newsItem__sub {
    column-gap: 1.6rem;
  }
}
.top .news .newsItem__sub--border {
  flex: 1;
  height: 0.2rem;
  background-color: #fff;
}
.top .news .newsItem__sub--more {
  width: 8.3rem;
  display: block;
  transition: 0.3s;
}
.top .news .newsItem__sub--more:hover {
  opacity: 0.7;
}
.top .contact {
  margin: 5.6rem 0 7.2rem;
}
@media not all and (min-width: 768px) {
  .top .contact {
    margin: 4rem 4.3%;
  }
}
.top .contact__link {
  margin-left: auto;
  margin-right: auto;
  width: 110rem;
  height: 11rem;
  background-color: #231815;
  border: 1px solid #231815;
  border-radius: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.top .contact__link img {
  width: 29.1rem;
}
@media not all and (min-width: 768px) {
  .top .contact__link img {
    width: 14.5rem;
  }
}
@media not all and (min-width: 768px) {
  .top .contact__link {
    width: 100%;
    height: 5.6rem;
  }
}
.top .contact__link:hover {
  opacity: 0.7;
}

.service .mv {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.service .mv__inner {
  height: 100%;
  width: 100%;
  padding-top: 4.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .service .mv__inner {
    padding-top: 12.2rem;
  }
}
.service .mv__image {
  width: 100%;
  height: 100%;
  position: relative;
}
.service .mv__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.service .mv__triangle {
  margin-top: -5rem;
  position: relative;
  border-top: 6px solid #231815;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media not all and (min-width: 768px) {
  .service .mv__triangle {
    margin-top: -2.4rem;
  }
}
.service .mv__triangle div {
  border-right: 6.5rem solid transparent;
  border-bottom: 10.8rem solid #231815;
  border-left: 6.5rem solid transparent;
}
@media not all and (min-width: 768px) {
  .service .mv__triangle div {
    border-right-width: 3.2rem;
    border-bottom-width: 5.4rem;
    border-left-width: 3.2rem;
  }
}
.service .mv__scroll {
  position: absolute;
  top: 50%;
  right: 5.1rem;
  transform: translateY(-50%);
  z-index: 1000;
}
.service .section {
  position: relative;
}
.service .section__bg {
  width: 100%;
  height: 5.8rem;
  background-attachment: fixed;
  background-position: center;
}
@media not all and (min-width: 768px) {
  .service .section__bg {
    background-size: cover;
  }
}
.service .section__bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(253, 208, 0, 0.7);
}
.service .section__inner {
  margin-left: auto;
  margin-right: auto;
  padding: 11rem 0 9.6rem;
  width: 97.5rem;
}
@media not all and (min-width: 768px) {
  .service .section__inner {
    padding: 5.6rem 4.3%;
    width: 100%;
  }
}
.service .section__detail {
  display: flex;
  justify-content: space-between;
  column-gap: 11rem;
}
@media not all and (min-width: 768px) {
  .service .section__detail {
    flex-direction: column;
    row-gap: 2.4rem;
  }
}
.service .section__main {
  width: 50%;
}
@media not all and (min-width: 768px) {
  .service .section__main {
    width: 100%;
    order: 2;
  }
}
.service .section__title {
  display: flex;
  column-gap: 1.6rem;
  flex-direction: column;
}
@media not all and (min-width: 768px) {
  .service .section__title {
    align-items: unset;
    row-gap: 0.8rem;
  }
}
.service .section__title--sub {
  color: #fdd000;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
}
.service .section__imageList {
  margin-top: 8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
@media not all and (min-width: 768px) {
  .service .section__imageList {
    margin-top: 0;
  }
}
.service .section__actionImage img {
  margin-top: 2rem;
  max-width: 80%;
}
.service .section__thumbnail {
  transition: 0.8s cubic-bezier(0.25, 0.74, 0.22, 0.99);
}
.service .section__thumbnail img {
  width: 100%;
  transition: 0.8s cubic-bezier(0.25, 0.74, 0.22, 0.99);
  object-fit: cover;
  aspect-ratio: 16/9;
}
.service .section__thumbnail:not(.--active) {
  background-color: #fdd000;
}
.service .section__thumbnail:not(.--active) img {
  opacity: 0.7;
}
.service .section__list li {
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  line-height: 3.1rem;
}
.service .section__list li::before {
  content: "・";
}
.service .section__sub {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media not all and (min-width: 768px) {
  .service .section__sub {
    margin-top: 4rem;
    width: 100%;
    order: 1;
  }
}
.service .section__sub--image {
  width: 100%;
}
.service .section__sub--image img {
  width: 100%;
  transition: 0.8s cubic-bezier(0.25, 0.74, 0.22, 0.99);
}
.service .section__sub--detail {
  margin-top: 5rem;
  width: 100%;
  font-size: 1.2rem;
}
.service .section__heading {
  position: absolute;
  top: 24rem;
  right: 3.2rem;
  transform: rotate(90deg);
}
@media not all and (min-width: 768px) {
  .service .section__heading {
    display: none;
  }
}
.service .section__moreLink {
  margin-top: 2.4rem;
  width: 10.3rem;
}
@media not all and (min-width: 768px) {
  .service .section__moreLink {
    width: 5.2rem;
  }
}
.service .section__content {
  display: none;
}
.service .section__content.--active {
  display: block;
}
.service .section__content a {
  color: #fdd000;
  font-weight: bold;
  transition: 0.3s;
}
.service .section__content a:hover {
  opacity: 0.7;
}
.service .section--architecture .section__bg {
  background-image: url(../img/top/architecture_bg_img.png);
}
.service .section--foodtruck .section__bg {
  background-image: url(../img/top/foodtruck_bg_img.png);
}
.service .section--entertainment .section__bg {
  background-image: url(../img/top/entertainment_bg_img.png);
}
.service .section--entertainment .section__thumbnail {
  border-radius: 50%;
}
.service .section--entertainment .section__thumbnail img {
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}
.artistProfile .section__sub {
  width: 85%;
  margin: 0 auto;
}

.newsDetail {
  padding: 24rem 0 12rem;
}
@media not all and (min-width: 768px) {
  .newsDetail {
    padding: 12rem 0 6rem;
  }
}
.newsDetail__inner {
  padding: 0 4.3%;
}
@media only screen and (min-width: 768px) {
  .newsDetail__inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 95rem;
    padding: 0 40px;
  }
}
.newsDetail__title {
  width: 15rem;
}
@media not all and (min-width: 768px) {
  .newsDetail__title {
    width: 7.5rem;
  }
}
.newsDetail__article {
  margin-top: 6.4rem;
}
@media not all and (min-width: 768px) {
  .newsDetail__article {
    margin-top: 3.2rem;
  }
}
.newsDetail .article {
  display: flex;
  column-gap: 5.5rem;
}
@media not all and (min-width: 768px) {
  .newsDetail .article {
    flex-direction: column;
    row-gap: 3.2rem;
  }
}
.newsDetail .article__textWrap {
  flex: 1;
}
@media not all and (min-width: 768px) {
  .newsDetail .article__textWrap {
    order: 2;
  }
}
.newsDetail .article__header {
  display: flex;
  column-gap: 4.4rem;
  padding-bottom: 2.4rem;
}
@media not all and (min-width: 768px) {
  .newsDetail .article__header {
    flex-direction: column;
    row-gap: 1.6rem;
    padding-bottom: 1.6rem;
  }
}
.newsDetail .article__date {
  padding-top: 0.8rem;
}
.newsDetail .article__title {
  font-size: 2.4rem;
  font-weight: bold;
}
@media not all and (min-width: 768px) {
  .newsDetail .article__title {
    font-size: 1.8rem;
  }
}
.newsDetail .article__main {
  border-top: 2px solid #fdd000;
  padding-top: 2.8rem;
}
.newsDetail .article__main > * {
  word-break: break-all;
  margin: 8px 0;
}
@media only screen and (min-width: 768px) {
  .newsDetail .article__main > * {
    margin: 8px 0;
  }
}
.newsDetail .article__main p {
  line-height: 1.8;
  font-size: 1.4rem;
  min-height: 14px;
}
@media only screen and (min-width: 768px) {
  .newsDetail .article__main p {
    font-size: 1.6rem;
    min-height: 16px;
  }
}
.newsDetail .article__main figure {
  padding: 8px 0;
  width: fit-content;
}
.newsDetail .article__main figcaption {
  text-align: center;
  color: #666;
  font-size: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .newsDetail .article__main figcaption {
    font-size: 1.4rem;
  }
}
.newsDetail .article__main img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 1000px;
  object-fit: cover;
}
.newsDetail .article__main ul {
  padding: 4px 16px;
}
.newsDetail .article__main ul li {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .newsDetail .article__main ul li {
    font-size: 1.6rem;
  }
}
.newsDetail .article__main ul li + li {
  margin-top: 4px;
}
.newsDetail .article__main ul li::before {
  margin-right: 8px;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #231815;
}
.newsDetail .article__footer {
  padding-top: 4.4rem;
  display: flex;
  justify-content: flex-end;
}
.newsDetail .article__footer a {
  transition: 0.3s;
}
.newsDetail .article__footer a:hover {
  opacity: 0.7;
}
.newsDetail .article__imgWrap {
  width: 35.8rem;
}
@media not all and (min-width: 768px) {
  .newsDetail .article__imgWrap {
    order: 1;
    width: 100%;
  }
}

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

.top .news__link {
  justify-self: center;
}

.news-archive {
  padding: 6.7rem 0;
}

.news-archive__inner {
  margin-left: auto;
  margin-right: auto;
  width: 110rem;
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 768px) {
  .news-archive__inner {
    margin-top: 6rem;
  }
}

@media not all and (min-width: 768px) {
  .news-archive__inner {
    width: 100%;
    padding: 0 4.3%;
  }
}

.news-archive__head {
  width: 43.4rem;
  background-color: #231815;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.4rem 0;
  margin: 0 auto;
}

@media not all and (min-width: 768px) {
  .news-archive__head {
    width: 100%;
  }
}

.news-archive__title {
  width: 15rem;
}

.news-archive__main {
  padding: 4rem 6.4rem;
}

@media not all and (min-width: 768px) {
  .news-archive__main {
    padding: 4rem 4.3%;
  }
}

.news-archive__list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.news-archive__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #231815;
}

.news-archive__item:last-child {
  border-bottom: none;
}

.news-archive__item--main {
  display: flex;
  gap: 2.4rem;
}

@media not all and (min-width: 768px) {
  .news-archive__item--main {
    flex-direction: column;
    gap: 0.8rem;
  }
}

.news-archive__item--date,
.news-archive__item--title {
  font-size: 1.2rem;
  line-height: 3.1rem;
  letter-spacing: 0.14em;
}

.news-archive__item--sub {
  display: flex;
  gap: 2.4rem;
  align-items: center;
}

.news-archive__item--border {
  width: 5.3rem;
  height: 0.1rem;
  background-color: #231815;
}

.news-archive__item--more {
  width: 8.3rem;
  display: block;
  transition: 0.3s;
}

.news-archive__item--more:hover {
  opacity: 0.7;
}

.news-archive__pagination {
  margin-top: 4rem;
  text-align: center;
}

.news-archive__no-posts {
  text-align: center;
  font-size: 1.2rem;
  line-height: 3.1rem;
  letter-spacing: 0.14em;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.news-list li {
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #231815;
}

.news-list li:last-child {
  border-bottom: none;
}

.news-list a {
  display: flex;
  gap: 2.4rem;
  width: 100%;
}

.news-list__date,
.news-list__title {
  font-size: 1.2rem;
  line-height: 3.1rem;
  letter-spacing: 0.14em;
  text-align: left;
}

.news-list__title {
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

/* ニュース一覧のモバイルスタイル */
@media screen and (max-width: 767px) {
  .artistNewsArea {
    padding: 0;
  }

  .news-list__item {
    margin-bottom: 15px;
  }

  .news-list__link {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }

  .news-list__date {
    font-size: 12px;
    color: #666;
  }

  .news-list__title {
    font-size: 14px;
    line-height: 1.4;
  }
}

.artistAreaWrapper {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  width: 100%;
}

.artistNewsArea {
  width: 100%;
  padding: 0;
}

.artistNewsArea h2 {
  text-align: left;
  margin-bottom: 2rem;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 100%;
}

.news-list li {
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #231815;
  width: 100%;
}

.news-list li:last-child {
  border-bottom: none;
}

.news-list a {
  display: flex;
  gap: 2.4rem;
  align-items: flex-start;
  width: 100%;
}

.news-list__date,
.news-list__title {
  font-size: 1.2rem;
  line-height: 3.1rem;
  letter-spacing: 0.14em;
  text-align: left;
}

.news-list__title {
  flex: 1;
}

/* ニュース一覧のモバイルスタイル */
@media screen and (max-width: 767px) {
  .artistAreaWrapper {
    flex-direction: column;
  }

  .news-list__item {
    margin-bottom: 15px;
  }

  .news-list__link {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }

  .news-list__date {
    font-size: 12px;
    color: #666;
  }

  .news-list__title {
    font-size: 14px;
    line-height: 1.4;
  }

  .news-list li a {
    align-items: left;
  }
}

/* ヘッダー・フッターナビ共通 */
.c-headerNav__list a,
.c-footerNav__list a {
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #000;
  text-decoration: none;
  letter-spacing: 0em;
  white-space: nowrap;
}

/* 本文エリア */
.news-archive .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 150px 20px 0;
  box-sizing: border-box;
}

/* ニュースリスト */
.news-list {
  list-style: none;
  padding: 0;
  margin: 3rem 0;
}

.news-list li {
  padding: 1.2rem 1rem;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s;
}

.news-list li a {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  display: flex;
  gap: 0rem;
}

.news-list li:hover {
  background-color: #f8f8f8;
}

.news-list__date {
  width: 8rem;
  flex-shrink: 0;
  color: #666;
  font-size: 0.9rem;
  margin-right: 0;
}

.news-list__title {
  flex: 1;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ページネーション */
.pagination {
  margin-top: 3rem;
  text-align: center;
}

.pagination .page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 12px;
  border: 1px solid #ccc;
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s, color 0.3s;
}

.pagination .page-numbers:hover {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

.pagination .current {
  background-color: #333;
  color: #fff;
  border: 1px solid #333;
}

/* ニュースリンクボタン */
.news__link {
  text-align: right;
  margin-top: 2rem;
  padding-right: 2rem;
  position: relative;
  z-index: 2;
}

/* Artistセクション 横並び */
.artistAreaWrapper {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 3rem;
  padding: 0 10px;
}

.artistProfile {
  flex: 7;
}

.artistNewsArea {
  flex: 3;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .artistNewsArea {
    padding-top: 2rem;
  }

  .artistAreaWrapper {
    flex-direction: column;
    padding: 0 5px;
  }

  .news-list li a {
    flex-direction: column;
    gap: 5px;
  }

  .news-list__date {
    width: auto;
    font-size: 12px;
  }

  .news-list__title {
    font-size: 14px;
    line-height: 1.4;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
}
