@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Noto+Serif+JP:wght@500;600&display=swap");
/*//////////////////////////////////////////////////////////

Copyright (C) apricot-design All Rights Reserved.
------------------------------------------------------------
CSS information
 file name  :  reset.css
 style info :  リセットファイル
 admin info :  apricot-design

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

audio[controls], canvas, video {
  display: inline-block;
  *display: inline;
  zoom: 1;
}

html {
  overflow-y: scroll;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, ul {
  margin: 0;
  padding: 0;
}

body, button, input, select, textarea {
  font-size: 100%;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

pre, code, kbd, samp {
  font-family: monospace, monospace;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

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

small {
  font-size: 75%;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ul, ol {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0px;
}

nav ul, nav ol {
  list-style: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

figure, form {
  margin: 0;
}

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  *margin-left: -7px;
}

input, button, select, textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font-size: 100%;
  vertical-align: baseline;
  *vertical-align: middle;
  margin: 0;
  padding: 0;
}

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

select {
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
}
select::-ms-expand {
  display: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

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

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}

img, abbr, acronym, fieldset {
  border: 0;
}

li {
  list-style: none;
}

/*画像を縦に並べた時に余白が出ないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
* {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.ie6_error, .no_script {
  background: #F66;
  padding: 100px;
  text-align: center;
  font-size: 150%;
  color: #333;
}

.flt {
  float: left;
}

.flr {
  float: right;
}

.txt_l, td.txt_l, .txt_l td {
  text-align: left;
}

.txt_r, td.txt_r, .txt_r td {
  text-align: right;
}

.txt_c, td.txt_c, .txt_c td {
  text-align: center;
}

.valign_t, td.valign_t, .valign_t td {
  vertical-align: top;
}

.valign_m, td.valign_m, .valign_m td {
  vertical-align: middle;
}

.valign_b, td.valign_b, .valign_b td {
  vertical-align: bottom;
}

.clear {
  clear: both;
}

.clearfix {
  zoom: 1;
}
.clearfix:before {
  content: "";
  display: block;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.fadeIn {
  opacity: 0;
}
.fadeIn.js_active {
  -webkit-animation: fadeIn 0.6s ease-in-out forwards;
          animation: fadeIn 0.6s ease-in-out forwards;
}

.fadeInDelay {
  opacity: 0;
}
.fadeInDelay.js_active {
  -webkit-animation: fadeIn 0.6s ease-in-out 0.4s forwards;
          animation: fadeIn 0.6s ease-in-out 0.4s forwards;
}

.fadeInLeft {
  opacity: 0;
}
.fadeInLeft.js_active {
  -webkit-animation: fadeInLeft 0.6s ease-in-out forwards;
          animation: fadeInLeft 0.6s ease-in-out forwards;
}

.fadeInRight {
  opacity: 0;
}
.fadeInRight.js_active {
  -webkit-animation: fadeInRight 0.6s ease-in-out forwards;
          animation: fadeInRight 0.6s ease-in-out forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(2em);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(2em);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
:root {
  --headerHeight: 155px;
  --minWidth: 1000px;
}
@media screen and (max-width: 767px) {
  :root {
    --headerHeight: 100px;
    --minWidth: 1px;
  }
}

html {
  width: 100%;
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--headerHeight);
}

body {
  position: relative;
  font: 500 16px/2 "Noto Serif JP", serif;
  color: #fff;
  text-align: left;
  letter-spacing: 0.12em;
  font-feature-settings: "palt";
  background: url(../images/background.jpg) repeat-y center top/100% auto;
}
body::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  body {
    line-height: 1.75;
  }
}

a {
  text-decoration: none;
  color: #fff;
  transition: 0.5s;
}
a:link, a:active, a:visited {
  text-decoration: none;
}

a[href*=tel] {
  pointer-events: none;
  cursor: default;
}
@media screen and (max-width: 767px) {
  a[href*=tel] {
    pointer-events: auto;
    cursor: pointer;
  }
}

.opacity {
  transition: 0.5s;
}
.opacity:hover {
  opacity: 0.5;
}

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

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: inherit;
  }
}

#container_wrap {
  overflow: hidden;
  min-width: var(--minWidth);
  padding-top: var(--headerHeight);
}

.section_wrap {
  position: relative;
  padding-bottom: 8.75em;
}
@media screen and (max-width: 767px) {
  .section_wrap {
    padding-bottom: 5em;
  }
}

.inner, .inner_lg, .inner_min {
  position: relative;
  max-width: calc(1000px + min(4vw, 60px) * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 min(4vw, 60px);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .inner, .inner_lg, .inner_min {
    padding: 0 min(8vw, 30px);
  }
}
.inner_min {
  max-width: calc(750px + min(4vw, 60px) * 2);
}
.inner_lg {
  max-width: calc(1180px + min(4vw, 60px) * 2);
}

.split {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: calc(1000px + min(4vw, 60px) * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 min(4vw, 60px);
}
@media screen and (max-width: 767px) {
  .split {
    padding: 0 min(8vw, 30px);
  }
}
.split__side {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .split__side {
    width: 100%;
    order: 2;
  }
}
.split__content {
  width: 66%;
}
@media screen and (max-width: 767px) {
  .split__content {
    width: 100%;
    order: 1;
    margin-bottom: 3em;
  }
}

.header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 1380px;
  padding: 0 15px;
  min-width: var(--minWidth);
  max-width: 100%;
  height: var(--headerHeight);
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1000;
  transition: height 0.5s;
}
.header.js_active {
  position: fixed;
  height: 100px;
}
@media screen and (max-width: 767px) {
  .header.js_active {
    height: 80px;
  }
}
.header_ttl {
  position: relative;
  z-index: 2;
}
.header_ttl .logo {
  display: block;
  width: 185px;
  aspect-ratio: 185/97;
  white-space: nowrap;
  text-indent: 110%;
  overflow: hidden;
  background: url(../images/logo.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .header_ttl .logo {
    width: 100px;
  }
}
.header_ttl .logo:hover {
  opacity: 0.7;
}

.menu-trigger {
  display: grid;
  place-content: center;
  position: absolute;
  height: 100%;
  width: 60px;
  padding-top: 15px;
  z-index: 2;
  cursor: pointer;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .menu-trigger {
    display: grid;
    height: 100%;
    width: 60px;
    padding-top: 15px;
  }
}
.menu-trigger span {
  display: block;
  position: relative;
  width: 40px;
  height: 2px;
  background: #fff;
  transition: all 0.5s ease;
  border-radius: 2px;
}
.menu-trigger span::before, .menu-trigger span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  left: calc(50% - 20px);
  top: -10px;
  border-radius: 2px;
  transform-origin: center;
  transition: all 0.5s ease;
}
.menu-trigger span::after {
  top: 10px;
}
.menu-trigger p {
  margin-top: 10px;
}
.menu-trigger p::before {
  content: "MENU";
  display: block;
  font-size: 12px;
  text-align: center;
  color: #fff;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .menu-trigger p::before {
    font-size: 12px;
  }
}
.menu-trigger.active span {
  transform: rotate(-90deg);
  background: transparent;
}
.menu-trigger.active span::before, .menu-trigger.active span::after {
  background-color: #fff;
  transform: rotate(135deg);
  top: 0;
  left: 0;
}
.menu-trigger.active span::after {
  transform: rotate(-135deg);
}
.menu-trigger.active p::before {
  content: "CLOSE";
}

#gnavi {
  position: fixed;
  width: 100%;
  top: 0;
  right: -100%;
}
@media screen and (max-width: 767px) {
  #gnavi {
    position: fixed;
    width: 100%;
    top: 0;
    right: -100%;
  }
}
#gnavi.active {
  right: 0;
  z-index: 1;
  -webkit-animation: gnav 0.5s ease 0.5s both;
          animation: gnav 0.5s ease 0.5s both;
}
#gnavi.active .global_nav li {
  opacity: 1;
  transform: translateX(0);
  transition: 0.3s;
  transition-delay: 0.5s;
}
#gnavi.active .global_nav li:nth-child(2) {
  transition-delay: 0.6s;
}
#gnavi.active .global_nav li:nth-child(3) {
  transition-delay: 0.7s;
}
#gnavi.active .global_nav li:nth-child(4) {
  transition-delay: 0.8s;
}
#gnavi.active .global_nav li:nth-child(5) {
  transition-delay: 0.9s;
}
#gnavi.active .global_nav li:nth-child(6) {
  transition-delay: 1s;
}
#gnavi.active .global_nav li:nth-child(7) {
  transition-delay: 1.1s;
}
#gnavi.active .global_nav li:nth-child(8) {
  transition-delay: 1.2s;
}
#gnavi.active .global_nav li:nth-child(9) {
  transition-delay: 1.3s;
}
#gnavi.active .global_nav li:nth-child(10) {
  transition-delay: 1.4s;
}
#gnavi .global_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  position: relative;
  gap: 1em;
  padding-top: 160px;
}
@media screen and (max-width: 767px) {
  #gnavi .global_nav {
    gap: 1em;
    padding-top: 120px;
  }
}
#gnavi .global_nav li {
  width: 100%;
  opacity: 0;
  text-align: center;
  transform: translateX(-20px);
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #gnavi .global_nav li {
    width: 100%;
    opacity: 0;
    text-align: center;
    transform: translateX(-20px);
    margin-bottom: 20px;
  }
}
#gnavi .global_nav li:first-child::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 25px;
  background-color: #a37b2e;
  top: calc(50% - 12.5px);
  left: -1px;
  transform: rotate(35deg);
}
#gnavi .global_nav li::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 25px;
  background-color: #a37b2e;
  top: calc(50% - 12.5px);
  right: -1px;
  transform: rotate(35deg);
}
#gnavi .global_nav li a {
  display: inline-block;
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #gnavi .global_nav li a {
    display: inline-block;
    letter-spacing: 2px;
    font-size: 1.25em;
  }
}
#gnavi .global_nav li a span {
  display: block;
  font-size: 0.5em;
}
#gnavi .global_nav li a:hover {
  opacity: 0.4;
}

#overlay {
  display: none;
  opacity: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
  top: 0;
  left: 0;
  background-color: #a37b2e;
  transition: 0.3s;
  z-index: 10;
}
#overlay.active {
  display: block;
  -webkit-animation: gnav 0.5s ease forwards;
          animation: gnav 0.5s ease forwards;
  z-index: 0;
  pointer-events: auto;
}

@-webkit-keyframes gnav {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes gnav {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.footer {
  padding: 0 min(4vw, 60px) 2em;
}
.footer__logo {
  display: block;
  width: 247px;
  margin: 0 auto 2.5em;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 140px;
  }
}
.footer__logo img {
  width: 100%;
}
.footer__text {
  text-align: center;
  font-weight: 600;
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  .footer__text {
    font-size: 0.875em;
  }
}
.footer .copyright {
  text-align: center;
  font-size: 0.875em;
}
@media screen and (max-width: 767px) {
  .footer .copyright {
    padding: 10px 0;
    font-size: 0.75em;
  }
}

.main_visual {
  display: block;
  position: relative;
  width: calc(100% - min(4.66vw, 70px));
  height: 665px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .main_visual {
    width: 100%;
    height: calc(100vh - 100px);
    height: calc(100svh - 100px);
  }
}
.main_visual__image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.main_visual__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main_visual__title {
  display: grid;
  place-content: center;
  position: relative;
  width: 50%;
  height: 100%;
  z-index: 1;
  margin-left: auto;
  background-color: rgba(255, 255, 255, 0.66);
}
@media screen and (max-width: 767px) {
  .main_visual__title {
    width: 65%;
  }
}
.main_visual__title::before {
  content: "";
  position: absolute;
  width: 57px;
  height: 100%;
  background: url(../images/mv_text.svg) no-repeat center/contain;
  top: 0;
  left: 0;
  transform: translateX(-50%);
}
.main_visual__title img {
  display: block;
}
@media screen and (max-width: 767px) {
  .main_visual__title img {
    width: 60%;
    margin: auto;
  }
}

.home .contents_bg {
  padding: 8.5em 0 0;
}
@media screen and (max-width: 767px) {
  .home .contents_bg {
    padding-top: 4em;
  }
}
.home .contents_bg::before {
  transform: translateY(-70%);
}

.contents_bg {
  position: relative;
  padding: 12.5em 0 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .contents_bg {
    padding-top: 6em;
  }
}
.contents_bg::before {
  content: "";
  position: absolute;
  width: 71%;
  aspect-ratio: 1066/920;
  background: url(../images/bg_main_01.png) no-repeat center/contain;
  top: 0;
  right: 0;
  transform: translateY(-63%);
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .contents_bg::before {
    transform: translateY(-50%);
  }
}
.contents_bg::after {
  content: "";
  position: absolute;
  width: 37.66%;
  aspect-ratio: 565/660;
  background: url(../images/bg_main_02.png) no-repeat center/contain;
  left: 0;
  bottom: 0;
  transform: translateY(19.7%);
}

.hero {
  display: grid;
  place-content: center;
  position: relative;
  width: 100%;
  height: 600px;
  background: url(../images/hero.jpg) no-repeat center/cover;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .hero {
    height: 300px;
  }
}
.hero__title {
  font-size: 4.0625em;
  font-weight: 500;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767px) {
  .hero__title {
    font-size: 6.9vw;
    padding: 0 min(4vw, 60px);
  }
}
.hero__image img {
  display: block;
  max-width: min(50vw, 750px);
}
@media screen and (max-width: 767px) {
  .hero__image img {
    max-width: min(85vw, 750px);
  }
}
@media screen and (max-width: 767px) {
  .hero--project03 .hero__image img {
    width: auto;
    height: 280px;
  }
}

.about_text_01 {
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 3.125em;
}
@media screen and (max-width: 767px) {
  .about_text_01 {
    text-align: left;
  }
}
.about_text_01:last-child {
  margin-bottom: 0;
}

.about_text_02 {
  text-align: center;
  line-height: 2.8;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .about_text_02 {
    line-height: 2.2;
  }
}
.about_text_02 strong {
  display: block;
  font-size: 1.25em;
}
@media screen and (max-width: 767px) {
  .about_text_02 strong {
    font-size: 1.1em;
  }
}
.about_text_02 + .about_text_01 {
  margin-top: 4em;
}

.about_text_03 {
  position: relative;
  text-align: center;
  margin: 45px 0 40px;
}
.about_text_03:last-child {
  margin-bottom: 0;
}
.about_text_03::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 26px;
  background-color: #fff;
  left: calc(50% - 0.5px);
  bottom: calc(100% + 10px);
}

.about_ttl_01 {
  text-align: center;
  font-size: 1.5625em;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .about_ttl_01 {
    font-size: 1.25em;
  }
}

.about_box_01 {
  display: block;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 40px min(4vw, 60px);
}
@media screen and (max-width: 767px) {
  .about_box_01 {
    padding: min(4vw, 60px);
  }
}
.about_box_01 p {
  text-align: center;
  color: #a37b2e;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .about_box_01 p {
    text-align: left;
  }
}

.about_box_02 {
  display: block;
  border-bottom: 1px solid #fff;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .about_box_02 {
    padding-bottom: 30px;
  }
}
.about_box_02 .about_ttl_01 {
  overflow: hidden;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .about_box_02 .about_ttl_01 {
    margin-bottom: 20px;
  }
}
.about_box_02 .about_ttl_01 span {
  display: inline-block;
  position: relative;
  padding: 0 20px;
}
.about_box_02 .about_ttl_01 span::before, .about_box_02 .about_ttl_01 span::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 1px;
  background-color: #fff;
  top: calc(50% - 0.5px);
  right: 100%;
}
.about_box_02 .about_ttl_01 span::after {
  right: auto;
  left: 100%;
}

.detail {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
}
.detail li {
  width: calc(50% - 17.5px);
}
@media screen and (max-width: 767px) {
  .detail li {
    width: 100%;
  }
}
.detail li dl {
  margin-bottom: 2.2em;
}
.detail li dl:last-child {
  margin-bottom: 0;
}
.detail li dl dt {
  font-size: 1.125em;
  border-bottom: 1px solid #fff;
  padding: 0 0 5px 30px;
  margin-bottom: 13px;
}
@media screen and (max-width: 767px) {
  .detail li dl dt {
    padding: 0 0 5px;
  }
}
.detail li dl dd {
  font-size: 0.9375em;
  padding-left: 30px;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .detail li dl dd {
    font-size: 1em;
    padding: 0;
  }
}
.detail li dl dd a {
  text-decoration: underline;
}
.detail li dl dd table th, .detail li dl dd table td {
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .detail li dl dd table th, .detail li dl dd table td {
    padding: 8px 0;
    font-size: 0.9375em;
    border-bottom: 1px solid #fff;
  }
}

.project02_date {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 60px;
  margin-bottom: 5.625em;
}
@media screen and (max-width: 767px) {
  .project02_date {
    gap: 20px;
  }
}
.project02_date a {
  display: block;
  position: relative;
  width: 345px;
  max-width: 100%;
  color: #a37b2e;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .project02_date a {
    width: calc(50% - 10px);
  }
}
.project02_date a::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 9px;
  background: url(../images/ico_date_arrow.svg) no-repeat center/contain;
  bottom: 0;
  left: calc(50% - 9px);
  transition: 0.5s;
}
.project02_date a:nth-child(2) p::after {
  background-image: url(../images/ico_date_02.svg);
}
.project02_date a:hover::after {
  bottom: 15px;
}
.project02_date a strong {
  display: block;
  background-color: #a37b2e;
  color: #000;
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.625em;
  line-height: 42px;
}
@media screen and (max-width: 767px) {
  .project02_date a strong {
    font-size: 1.4em;
  }
}
.project02_date a p {
  position: relative;
  font-size: 7.5em;
  padding-left: 50px;
  line-height: 0.9;
}
@media screen and (max-width: 767px) {
  .project02_date a p {
    font-size: 14.5vw;
    padding: 0;
  }
}
.project02_date a p::before {
  content: "2023";
  position: absolute;
  font-size: 3.7rem;
  transform-origin: right top;
  transform: rotate(-90deg);
  left: -2.5em;
  top: 0.4em;
}
@media screen and (max-width: 767px) {
  .project02_date a p::before {
    display: block;
    position: relative;
    font-size: 6vw;
    transform: none;
    left: auto;
    top: auto;
    margin-bottom: 5px;
  }
}
.project02_date a p::after {
  content: "";
  position: absolute;
  width: 42px;
  aspect-ratio: 1/1;
  background: url(../images/ico_date_01.svg) no-repeat center/contain;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .project02_date a p::after {
    width: 30px;
  }
}

.project02_map {
  display: block;
  margin-bottom: 8.75em;
}
@media screen and (max-width: 767px) {
  .project02_map {
    margin: 0 min(-8vw, -30px) 5em;
  }
}
.project02_map img {
  display: block;
  margin: auto;
}

.js-scrollable {
  width: 100%;
  overflow-x: scroll;
}
@media screen and (max-width: 767px) {
  .js-scrollable table {
    white-space: nowrap;
  }
}

.schedule {
  width: 100%;
  line-height: 1.625;
  text-align: center;
  border-collapse: separate;
}
@media screen and (max-width: 767px) {
  .schedule {
    font-size: 0.9375em;
  }
}
.schedule thead th {
  width: 27%;
  background-color: #a37b2e;
  padding: 10px;
  color: #000;
  border-right: 1px solid #000;
}
.schedule thead th:first-child {
  width: 19%;
  background-color: transparent;
  border: 0 none;
}
.schedule thead th:last-child {
  border-right: 0 none;
}
.schedule tbody th {
  background-color: #a37b2e;
  color: #000;
  padding: 20px 10px;
  border-bottom: 1px solid #000;
}
.schedule tbody td {
  position: relative;
  text-align: left;
  border-right: 1px solid #a37b2e;
  border-bottom: 1px solid #a37b2e;
  padding: 10px 15px;
}
.schedule tbody td.center {
  text-align: center;
}
.schedule tbody td .arrow::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 335%;
  background-color: #a37b2e;
  top: 0;
  left: calc(50% - 0.5px);
}
.schedule tbody td .arrow::after {
  content: "";
  position: absolute;
  border: 5px solid transparent;
  border-bottom: 0 none;
  border-top: 9px solid #a37b2e;
  top: 335%;
  left: calc(50% - 5px);
}

.map {
  position: relative;
  overflow: hidden;
  margin-bottom: 2em;
}
.map::before {
  content: "";
  display: block;
  height: 650px;
}
@media screen and (max-width: 767px) {
  .map::before {
    height: 300px;
  }
}
.map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ttl_cmn_01 {
  font-weight: 600;
  text-align: center;
  margin-bottom: 3.5em;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_01 {
    margin-bottom: 2.5em;
  }
}
.ttl_cmn_01::before {
  content: attr(data-en);
  display: block;
  font-size: 2.5em;
  font-weight: 500;
  color: #a37b2e;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_01::before {
    font-size: 2em;
  }
}

.ttl_cmn_02 {
  display: block;
  text-align: center;
  font-size: 2.1875em;
  line-height: 1.43em;
  color: #a37b2e;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_02 {
    font-size: 1.8em;
  }
}
.ttl_cmn_02__sub {
  text-align: center;
  font-size: 1.375em;
  color: #a37b2e;
  line-height: 1.54;
  margin-bottom: 3.3em;
}

.ttl_cmn_03 {
  display: block;
  font-size: 1.625em;
  line-height: 1.43em;
  color: #a37b2e;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .ttl_cmn_03 {
    font-size: 1.8em;
  }
}

.ttl_post {
  font-size: 2em;
  font-weight: 500;
  border-bottom: 1px solid #fff;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
}

.list_topics {
  margin-bottom: 3.125em;
  border-top: 1px solid #a37b2e;
}
.list_topics li {
  border-bottom: 1px solid #a37b2e;
}
.list_topics li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 15px 125px 15px 45px;
  background: url(../images/ico_arrow_gold.svg) no-repeat center right 50px;
}
@media screen and (max-width: 767px) {
  .list_topics li a {
    display: block;
    padding: 10px 30px 10px 10px;
    background-size: 25px auto;
    background-position: center right;
  }
}
.list_topics li a:hover {
  background-position: center right 30px;
}
.list_topics li a:hover .title {
  text-decoration: underline;
}
.list_topics li a .date {
  width: 140px;
  font-weight: 600;
  color: #a37b2e;
}
@media screen and (max-width: 767px) {
  .list_topics li a .date {
    width: 100%;
    font-size: 0.875em;
  }
}
.list_topics li a .title {
  width: calc(100% - 140px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .list_topics li a .title {
    width: 100%;
    font-size: 0.875em;
    overflow: visible;
    white-space: normal;
  }
}

#list_breadcrumb {
  position: relative;
  font-size: 0.93em;
  z-index: 1;
}
#list_breadcrumb .list_breadcrumb_inner {
  position: absolute;
  top: 100%;
  left: 50%;
  width: calc(100% - min(3.33vw, 50px) * 2);
  padding-top: 30px;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  #list_breadcrumb .list_breadcrumb_inner {
    width: calc(100% - min(8vw, 30px) * 2);
    padding-top: 15px;
    white-space: nowrap;
    overflow-x: scroll;
  }
}

.list_pagination {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid #fff;
  margin-bottom: 8em;
}
@media screen and (max-width: 767px) {
  .list_pagination {
    margin-bottom: 5em;
  }
}
.list_pagination:last-child {
  margin-bottom: 0;
}
.list_pagination.noprev {
  justify-content: flex-end;
}
.list_pagination li {
  display: flex;
  width: 33.3333%;
}
@media screen and (max-width: 767px) {
  .list_pagination li {
    width: 50%;
  }
}
.list_pagination li a {
  display: block;
  position: relative;
  font-size: 0.93em;
  color: #fff;
  padding: 0 30px;
}
.list_pagination li a::before {
  content: "";
  position: absolute;
  width: 20px;
  aspect-ratio: 1/1;
  background: url(../images/ico_sidenav_arrow.svg) no-repeat center/contain;
  top: calc(50% - 10px);
  right: 0;
}
.list_pagination li a:hover {
  color: #a37b2e;
}
@media screen and (max-width: 767px) {
  .list_pagination li.prev {
    order: 1;
  }
}
.list_pagination li.prev a::before {
  right: auto;
  left: 0;
  transform: rotateY(180deg);
}
.list_pagination li.archive {
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .list_pagination li.archive {
    order: 3;
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid #fff;
  }
}
.list_pagination li.archive a::before {
  content: none;
}
.list_pagination li.next {
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .list_pagination li.next {
    order: 2;
  }
}

.archive-pagenavi {
  display: flex;
  justify-content: center;
}
.archive-pagenavi .wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.archive-pagenavi .wp-pagenavi a, .archive-pagenavi .wp-pagenavi span:not(.extend) {
  display: grid;
  place-content: center;
  width: 34px;
  aspect-ratio: 1/1;
  border: 1px solid #a37b2e;
  color: #a37b2e;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .archive-pagenavi .wp-pagenavi a, .archive-pagenavi .wp-pagenavi span:not(.extend) {
    width: 24px;
    font-size: 1em;
  }
}
.archive-pagenavi .wp-pagenavi a.previouspostslink, .archive-pagenavi .wp-pagenavi a.nextpostslink, .archive-pagenavi .wp-pagenavi span:not(.extend).previouspostslink, .archive-pagenavi .wp-pagenavi span:not(.extend).nextpostslink {
  display: block;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-indent: 110%;
  border: 0 none;
  width: 26px;
}
.archive-pagenavi .wp-pagenavi a.previouspostslink::before, .archive-pagenavi .wp-pagenavi a.nextpostslink::before, .archive-pagenavi .wp-pagenavi span:not(.extend).previouspostslink::before, .archive-pagenavi .wp-pagenavi span:not(.extend).nextpostslink::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/ico_sidenav_arrow.svg) no-repeat center/contain;
  top: 0;
  left: 0;
}
.archive-pagenavi .wp-pagenavi a.previouspostslink::before, .archive-pagenavi .wp-pagenavi span:not(.extend).previouspostslink::before {
  transform: rotateY(180deg);
}
.archive-pagenavi .wp-pagenavi a.current, .archive-pagenavi .wp-pagenavi a:hover, .archive-pagenavi .wp-pagenavi span:not(.extend).current, .archive-pagenavi .wp-pagenavi span:not(.extend):hover {
  background-color: #a37b2e;
  color: #fff;
}

.list_dots {
  margin-bottom: 55px;
}
.list_dots li {
  position: relative;
  font-size: 0.9375em;
  padding-left: 1em;
}
.list_dots li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
}

.dlist_performer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 55px;
  margin-bottom: 3.75em;
}
.dlist_performer:last-child {
  margin-bottom: 0;
}
.dlist_performer dt {
  width: 300px;
}
@media screen and (max-width: 767px) {
  .dlist_performer dt {
    width: 100%;
  }
}
.dlist_performer dt img {
  display: block;
  margin: auto;
}
.dlist_performer dd {
  width: calc(100% - 300px - 55px);
}
@media screen and (max-width: 767px) {
  .dlist_performer dd {
    width: 100%;
  }
}
.dlist_performer dd h3 {
  font-size: 1.875em;
  line-height: 1.73;
  margin-bottom: 0.75em;
}
@media screen and (max-width: 767px) {
  .dlist_performer dd h3 {
    font-size: 1.5em;
  }
}
.dlist_performer dd h3 span {
  display: block;
  font-size: 0.66em;
  color: #a37b2e;
}
.dlist_performer dd p {
  font-size: 0.9375em;
}

.btn_cmn_01 {
  display: block;
  width: 300px;
  line-height: 70px;
  font-size: 1.125em;
  text-align: center;
  background: url(../images/ico_arrow_black.svg) no-repeat top calc(50% - 3px) right 15px;
  background-color: #a37b2e;
  border: 1px solid #a37b2e;
  color: #000;
  border-radius: 40px;
  margin: 0 auto 2em;
}
@media screen and (max-width: 767px) {
  .btn_cmn_01 {
    width: 250px;
    line-height: 50px;
    font-size: 0.875em;
  }
}
.btn_cmn_01:last-child {
  margin-bottom: 0;
}
.btn_cmn_01:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

input[type=submit].btn_submit {
  -webkit-appearance: none;
  border-radius: 0;
  outline: none;
  border-radius: 0;
  border: 0 none;
  cursor: pointer;
  display: block;
  width: 266px;
  max-width: 100%;
  line-height: 65px;
  color: #fff;
  background-color: #a37b2e;
  border: 1px solid #a37b2e;
  letter-spacing: 1px;
  font-weight: 500;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  transition: 0.5s;
  margin: 0 auto;
  border-radius: 40px;
}
@media screen and (max-width: 767px) {
  input[type=submit].btn_submit {
    height: 60px;
    line-height: 58px;
  }
}
input[type=submit].btn_submit:hover {
  background-color: #fff;
  color: #a37b2e;
}

.btn_back {
  display: block;
  width: 266px;
  max-width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.7);
  height: 60px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  color: #fff;
  transition: 0.5s;
  text-align: center;
  margin: 2em auto 0;
  border-radius: 40px;
}
.btn_back:hover {
  background-color: #fff;
  color: #fff;
}

.table_form {
  display: block;
  width: 100%;
  margin-bottom: 3em;
}
.table_form thead, .table_form tbody, .table_form tr, .table_form th, .table_form td {
  display: block;
  width: 100%;
}
.table_form tr:first-child th {
  padding-top: 0;
}
.table_form th {
  padding: 40px 0 0;
  font-weight: 400;
}
.table_form th.req::after {
  content: "※";
  display: inline-block;
  color: #ff4700;
  font-size: 0.8em;
}
.table_form td {
  padding: 15px 0 0;
  vertical-align: top;
}

input[type=text],
input[type=tel],
input[type=email],
textarea,
select {
  width: 100%;
  padding: 20px 15px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  background-color: #fff;
  outline: none;
  font-size: 1.06em;
  border-radius: 14px;
}
@media screen and (max-width: 767px) {
  input[type=text],
input[type=tel],
input[type=email],
textarea,
select {
    padding: 15px 10px;
  }
}

textarea {
  width: 100%;
  height: 200px;
  margin: 0;
}

.mwform-radio-field.vertical-item,
.mwform-checkbox-field.horizontal-item {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .mwform-radio-field.vertical-item,
.mwform-checkbox-field.horizontal-item {
    display: block;
  }
}
.mwform-radio-field.vertical-item label,
.mwform-checkbox-field.horizontal-item label {
  display: inline-block;
  cursor: pointer;
}
.mwform-radio-field.vertical-item label input,
.mwform-checkbox-field.horizontal-item label input {
  display: none;
}
.mwform-radio-field.vertical-item label input:checked + span::after,
.mwform-checkbox-field.horizontal-item label input:checked + span::after {
  transform: scale(1);
  transition-delay: 0.2s;
}
.mwform-radio-field.vertical-item label span,
.mwform-checkbox-field.horizontal-item label span {
  display: block;
  position: relative;
  padding-left: 40px;
  font-weight: 400;
}
.mwform-radio-field.vertical-item label span::before,
.mwform-checkbox-field.horizontal-item label span::before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border: 1px solid #b6b0ad;
  background-color: #fff;
  left: 0;
  border-radius: 50%;
  top: calc(50% - 13px);
  transition: 0.3s;
}
.mwform-radio-field.vertical-item label span::after,
.mwform-checkbox-field.horizontal-item label span::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: #a37b2e;
  border-radius: 50%;
  transform: scale(0);
  left: 6px;
  top: calc(50% - 7px);
  transition: 0.3s;
}

.mw_wp_form_confirm .read, .mw_wp_form_confirm .read--left,
.mw_wp_form_confirm .txt_link,
.mw_wp_form_confirm .doui_wrap {
  display: none;
}

.m0 {
  margin-bottom: 0;
}

.m30 {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .m30 {
    margin-bottom: 10px;
  }
}

.m80 {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .m80 {
    margin-bottom: 50px;
  }
}

.read, .read--left {
  text-align: center;
  font-weight: 400;
  font-size: 1.06em;
  margin-bottom: 2.5em;
}
.read--left {
  text-align: left;
}
.read:last-child, .read--left:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .read, .read--left {
    text-align: left;
    line-height: 1.75;
  }
}

.top_read {
  text-align: center;
  font-weight: 600;
  margin-bottom: 3.125em;
}
@media screen and (max-width: 767px) {
  .top_read {
    font-size: 0.875em;
    text-align: left;
  }
}

.post_date {
  text-align: right;
  margin-bottom: 2em;
}

.single_contents {
  margin-bottom: 6em;
  line-height: 2.13;
}
.single_contents p {
  line-height: 2.13;
  margin-bottom: 2em;
}
.single_contents p:last-child {
  margin-bottom: 0;
}

.txt_cmn {
  margin-bottom: 2.7em;
}
.txt_cmn:last-child {
  margin-bottom: 0;
}

.al_center {
  text-align: center;
}
.al_center_pc {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .al_center_pc {
    text-align: left;
  }
}
.al_center_sp {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .al_center_sp {
    text-align: center;
  }
}

.totop {
  opacity: 0;
  position: fixed;
  right: 30px;
  bottom: 10%;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .totop {
    display: none !important;
  }
}
.totop li {
  width: 60px;
  margin: 0 auto;
}
.totop li:first-child {
  width: 45px;
  margin-bottom: 20px;
}
.totop li a {
  display: block;
}
.totop li a:hover {
  opacity: 0.7;
}

@-webkit-keyframes load_end {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes load_end {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@-webkit-keyframes load_view {
  100% {
    opacity: 1;
  }
}
@keyframes load_view {
  100% {
    opacity: 1;
  }
}
.loading {
  display: grid;
  place-content: center;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000;
  top: 0;
  left: 0;
  z-index: 1001;
  background: url(../images/background.jpg) repeat-y center top/100% auto;
}
.loading::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.loading.end {
  -webkit-animation: load_end 1.1s ease forwards;
          animation: load_end 1.1s ease forwards;
}
.loading .loading_logo {
  display: block;
  opacity: 0;
  transform: translateY(10%);
  transition: transform 1s;
}
.loading .loading_logo.view {
  transform: translateY(0);
  -webkit-animation: load_view 1s ease-in forwards;
          animation: load_view 1s ease-in forwards;
}

/* ADD:2024.09.18 */
.event_hero {
  position: relative;
  z-index: 2;
  width: 100%;
}

.event_lead {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .event_lead {
    margin-bottom: 50px;
  }
}

.event_notes {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .event_notes {
    margin-bottom: 50px;
  }
}

/* ADD:2024.09.26 */
.mv_slide {
  margin: 30px 0 20px;
  z-index: 5;
}
.mv_slide li {
  padding: 0 20px;
}
.mv_slide a {
  display: block;
  background-color: #fff;
}
.mv_slide a img {
  width: 100%;
}
@media (any-hover: hover) {
  .mv_slide a img {
    transition: opacity 0.3s;
  }
  .mv_slide a:hover img {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .mv_slide {
    margin: 0;
  }
  .mv_slide li {
    padding: 0 5px;
  }
}

.ttl_topics_event {
  font-size: 1.5em;
  color: #a37b2e;
}