@charset "UTF-8";
/* ==========================================================================
  Reset
  ========================================================================== */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  vertical-align: baseline;
}

article, aside, dialog, figure, footer, header, hgroup, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

img {
  font-size: 0;
  line-height: 0;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 100%;
  vertical-align: baseline;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
  font-style: italic;
  color: #000;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

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

fieldset, img {
  line-height: 0;
  vertical-align: top;
}

hr {
  display: none;
}

input, select {
  vertical-align: middle;
}

* {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
}

html, body {
  width: 100%;
  height: 100%;
}

ul, li {
  list-style: none;
}

b {
  font-weight: bold;
}

iframe {
  border: none;
  outline: none;
}

/*
   2026/04/20
 */
/* ==========================================================================
   1. Reset & Normalization
   ========================================================================== */
*, ::before, ::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/* 画像をレスポンシブ対応に */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* ==========================================================================
   2. Typography Variables
   ========================================================================== */
:root {
  --font-family-sans: 'Noto Sans JP', sans-serif;
  /* SP (Mobile) - Default */
  --font-size-h1: 1.75rem;
  --font-size-h2: 1.5rem;
  --font-size-h3: 1.25rem;
  --font-size-body: 1.1rem;
  --font-size-small: 0.875rem;
  --font-size-copyright: 0.75rem;
}

@media (min-width: 768px) {
  :root {
    /* PC (Desktop) */
    --font-size-h1: 2.5rem;
    --font-size-h2: 2.0rem;
    --font-size-h3: 1.5rem;
    --font-size-body: 1.1rem;
    --font-size-small: 0.9rem;
    --font-size-copyright: 0.75rem;
  }
}
/* ==========================================================================
   3. Global Styles
   ========================================================================== */
body {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-body);
  line-height: 1.6;
  color: #3c4043;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-weight: 700;
  line-height: 2rem;
  text-align: left;
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

p {
  font-size: var(--font-size-body);
  margin-top: 0;
  margin-bottom: 0.5rem;
  text-align: left;
  line-height: 1.8rem;
}

/* Helper Classes */
.text-body {
  font-size: var(--font-size-body);
}

.text-small {
  font-size: var(--font-size-small);
}

.text-copyright {
  font-size: var(--font-size-copyright);
  line-height: 1.5rem;
}

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

.text-bold {
  font-weight: bold;
}

/* Link Style */
a {
  color: #1a73e8; /* Google Link Blue */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

body {
  background: #fff;
  min-height: 100vh;
}

/* ==========================================================================
Layout (COMMON)
========================================================================== */
.l-main {
  padding-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .l-main {
    padding-bottom: 30px;
  }
}

#top .l-main {
  padding: 0;
}

section {
  padding-top: 30px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  section {
    padding: 40px 0 20px;
  }
}
section h2 {
  width: auto;
  height: 120px;
  margin: 0 auto 40px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  section h2 {
    height: 80px;
  }
}
section h2 img {
  width: auto;
  height: 100%;
  vertical-align: bottom;
}

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

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

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

.flex-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  align-items: flex-start;
}

.l-inner {
  width: 1400px;
  max-width: 95%;
  margin: 60px auto;
}
@media screen and (max-width: 600px) {
  .l-inner {
    width: auto;
    max-width: 90%;
    margin: 0 auto;
  }
}

.l-wrapper {
  overflow: hidden;
}

.btn {
  position: relative;
  font-size: var(--font-size-body);
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  text-decoration: none;
  text-align: center;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .btn {
    font-size: var(--font-size-small);
  }
}

.btn-more,
.btn {
  width: 100%;
  position: relative;
  max-width: 390px;
  height: 60px;
  display: inline-grid;
  text-decoration: none;
  background: #000;
  align-items: center;
}

.btn-more::after,
.btn::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 5%;
  margin-top: -10px;
  background: url(../img/btn_more.png) no-repeat;
  background-size: contain;
}

.btn-back::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 5%;
  margin-top: -10px;
  background: url(../img/btn_back.png) no-repeat;
  background-size: contain;
}

.btn-gaibu, .btn-detail {
  width: 65%;
  min-width: 200px;
  position: relative;
  padding: 2% 5%;
  height: 40px;
  margin: 0;
  display: inline-grid;
  font-size: var(--font-size-small);
  background: #000;
}
@media screen and (max-width: 600px) {
  .btn-gaibu, .btn-detail {
    width: 80%;
    padding: 3% 5%;
  }
}

.btn-detail {
  margin: 30px 0 15px;
}

.btn-gaibu::after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 5%;
  margin-top: -8px;
  background: url(../img/btn_gaibu.png) no-repeat;
  background-size: contain;
}

.btn-detail::after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 5%;
  margin-top: -8px;
  background: url(../img/btn_more.png) no-repeat;
  background-size: contain;
}

a {
  color: #000;
  text-decoration: underline;
}

a:hover {
  opacity: 0.8;
  text-decoration: none;
}

h3 a {
  text-decoration: none;
}

.date {
  font-family: Arial, Helvetica, sans-serif;
}

.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 20px;
}

/* 各数字のボックス */
.page-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #333;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.page-item.active {
  background-color: #000;
  color: #fff;
}

.page-item:hover:not(.active) {
  background-color: #f0f0f0;
}

.breadcrumb {
  display: flex;
  list-style: none;
  padding: 60px 0 0 2%;
}
.breadcrumb li {
  display: flex;
  align-items: center;
}
.breadcrumb li a {
  font-size: var(--font-size-copyright);
  text-decoration: none;
  color: #000;
}
.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin: 0 10px;
  color: #333;
}

.img-small {
  width: 50%;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .img-small {
    width: 80%;
  }
}

.img-middle {
  width: 70%;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .img-middle {
    width: 100%;
  }
}

.img-large {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* ==========================================================================
Header
========================================================================== */
.l-header {
  width: 100%;
  padding: 0;
  z-index: 1000;
  display: block;
  position: fixed;
  background: rgba(255, 255, 255, 0.7);
}
.l-header .header-inner {
  position: revert;
  width: 100%;
  margin: 15px 2%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
.l-header .header-inner .header-logo {
  margin: 0;
}
.l-header .header-inner .header-logo img {
  height: 30px;
  width: auto;
  display: block;
}
.l-header .header-inner .header-utilities {
  position: absolute;
  top: 50%;
  right: 80px;
  margin-top: -18px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 600px) {
  .l-header .header-inner .header-utilities {
    display: none;
  }
}
.l-header .header-inner .header-utilities .sns-icons {
  display: flex;
  list-style: none;
  gap: 10px;
}
.l-header .header-inner .header-utilities .sns-icons img {
  width: 36px;
  height: 36px;
  display: block;
}
.l-header .nav-trigger {
  position: absolute;
  width: 60px;
  height: 60px;
  right: 1%;
  top: 0;
  z-index: 10;
  cursor: pointer;
}
.l-header .nav-trigger .lines {
  position: relative;
  width: 100%;
  height: 100%;
}
.l-header .nav-trigger .lines span {
  position: absolute;
  z-index: 2;
  background: #505050;
  left: 15px;
  transition: all 0.25s ease-out;
}
.l-header .nav-trigger .lines span:nth-child(1) {
  width: 40px;
  height: 2px;
  top: 20px;
}
.l-header .nav-trigger .lines span:nth-child(2) {
  width: 40px;
  height: 2px;
  top: 28px;
}
.l-header .nav-trigger .lines span:nth-child(3) {
  width: 40px;
  height: 2px;
  top: 36px;
}
.l-header .nav-trigger.is-active .lines span {
  background: #eee;
}
.l-header .nav-trigger.is-active .lines span:nth-child(1) {
  transform: translateY(8px) rotate(-35deg);
}
.l-header .nav-trigger.is-active .lines span:nth-child(2) {
  width: 0;
  opacity: 0;
}
.l-header .nav-trigger.is-active .lines span:nth-child(3) {
  transform: translateY(-8px) rotate(35deg);
}
.l-header .gnav {
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  width: 20vw;
  height: 100vh;
  background: #000;
  z-index: 8;
  padding: 60px 3% 0;
  transform: translateX(110%);
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}
@media screen and (max-width: 600px) {
  .l-header .gnav {
    width: 90vw;
    height: 70vh;
    padding: 60px 5% 0;
  }
}
.l-header .gnav ul {
  position: relative;
  width: 100%;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.l-header .gnav ul li {
  border-bottom: 1px solid #eee;
  text-align: center;
}
.l-header .gnav ul li a {
  display: block;
  padding: 15px 0;
  font-size: var(--font-size-body);
  color: #eee;
  font-weight: normal;
  text-decoration: none;
}
@media screen and (max-width: 600px) {
  .l-header .gnav ul li a {
    padding: 5% 0;
    font-size: 1.1rem;
  }
}
.l-header .gnav ul li a:hover {
  opacity: 0.8;
}
.l-header .gnav .gnav-sns {
  display: flex;
  justify-content: center;
  flex-direction: unset;
  width: 70%;
  margin: 20px auto 0;
}
.l-header .gnav .gnav-sns li {
  width: 50%;
  padding: 0 5%;
  border: none;
}
.l-header .gnav .gnav-sns li img {
  width: 100%;
  height: auto;
  max-width: 60px;
}
.l-header .gnav.is-active {
  transform: translateX(0);
  visibility: visible;
}
.l-header .gnav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 7;
  opacity: 0;
  transition: opacity 0.4s;
}
.l-header .gnav-overlay.is-active {
  display: block;
  opacity: 1;
}

/* ==========================================================================
Main Content
========================================================================== */
.l-main #mv-area {
  padding: 0;
  position: relative;
}
.l-main #mv-area .slider-area {
  position: relative;
  background: #000;
}
.l-main #mv-area .slider-area h1 {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50%;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 5;
}
@media screen and (max-width: 600px) {
  .l-main #mv-area .slider-area h1 {
    width: 90%;
  }
}
.l-main #mv-area .slider-area .swiper {
  width: 100vw;
  height: 200px;
  margin-bottom: 10px;
  visibility: visible !important;
}
@media screen and (max-width: 600px) {
  .l-main #mv-area .slider-area .swiper {
    height: 120px;
  }
}
.l-main #mv-area .slider-area .swiper-slide {
  width: auto !important;
  height: 100%;
}
.l-main #mv-area .slider-area .swiper-slide img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.l-main #mv-area .slider-area .middle {
  height: 300px;
}
.l-main #mv-area .slider-area .swiper-wrapper {
  transition-timing-function: linear !important;
  will-change: transform;
}
.l-main #mv-area .sns-area {
  width: 100%;
  text-align: center;
  padding: 30px 0;
}
.l-main #mv-area .sns-area img {
  width: 60px;
  margin: 0 1%;
}
.l-main {
  /* ==========================================================================
  TOPページ　NEWS
  ========================================================================== */
}
.l-main .news_area .flex-box {
  justify-content: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .l-main .news_area .flex-box {
    justify-content: space-between;
    margin-bottom: 0;
  }
}
.l-main .news_area .flex-box li {
  width: 20%;
  margin: 0 2%;
}
@media screen and (max-width: 600px) {
  .l-main .news_area .flex-box li {
    width: 48%;
    margin: 0 0 30px;
  }
}
.l-main .news_area .flex-box li img {
  border: 1px solid #eee;
}
.l-main .news_area .flex-box li .news_date {
  margin: 10px 0 0;
  font-size: var(--font-size-small);
  line-height: 1.5rem;
  font-weight: bold;
}
.l-main .news_area .flex-box li .news_text {
  font-size: var(--font-size-small);
  line-height: 1.5rem;
}
.l-main {
  /* ==========================================================================
  TOPページ　WORKS
  ========================================================================== */
}
.l-main .works_area .l-inner {
  margin-bottom: 0;
}
.l-main .works_area .l-inner .movie-slider {
  padding-bottom: 90px !important;
  overflow: visible !important;
}
@media screen and (min-width: 601px) and (max-width: 1024px) {
  .l-main .works_area .l-inner .movie-slider {
    padding-bottom: 180px !important;
  }
}
@media screen and (max-width: 600px) {
  .l-main .works_area .l-inner .movie-slider {
    padding-bottom: 270px !important;
  }
}
.l-main .works_area .l-inner .movie-slider .swiper-wrapper {
  padding-bottom: 20%;
}
.l-main .works_area .l-inner .movie-slider .swiper-slide {
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform: scale(0.7);
}
.l-main .works_area .l-inner .movie-slider .swiper-slide-active {
  transform: scale(1);
  z-index: 10;
}
.l-main .works_area .l-inner .movie-slider .slide-text {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease 0.2s;
  text-align: center;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.l-main .works_area .l-inner .movie-slider .slide-text p {
  text-align: center;
}
.l-main .works_area .l-inner .movie-slider .slide-text h3 {
  margin-top: 0.5rem;
  font-weight: normal;
  text-align: center;
}
.l-main .works_area .l-inner .movie-slider .swiper-slide-active .slide-text {
  opacity: 1;
  visibility: visible;
}
.l-main .works_area .l-inner .movie-slider .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #eee;
}
.l-main .works_area .l-inner .movie-slider .text-copyright {
  text-align: right;
}
.l-main {
  /* ==========================================================================
  TOPページ　ABOUT US
  ========================================================================== */
}
.l-main .aboutus_area {
  text-align: center;
  margin: 0 auto;
  padding-bottom: 60px;
}
.l-main .aboutus_area h3 {
  text-align: center;
  font-weight: normal;
}
.l-main .aboutus_area p {
  text-align: center;
  margin: 30px 0;
}
.l-main {
  /* ==========================================================================
  TOPページ　INFO
  ========================================================================== */
}
.l-main .info_area {
  text-align: center;
  margin: 0 auto;
  padding: 15px 0;
  background: #eee;
}
@media screen and (max-width: 600px) {
  .l-main .info_area {
    padding: 30px 0;
  }
}
.l-main .info_area h2 {
  width: 30%;
  min-width: 360px;
  height: auto;
  margin: 0 auto 30px;
}
@media screen and (max-width: 600px) {
  .l-main .info_area h2 {
    min-width: auto;
    width: 100%;
  }
}
.l-main .info_area h2 img {
  width: 100%;
  height: auto;
}
.l-main .info_area .btn-more {
  max-width: 500px;
  height: 70px;
}

/* ==========================================================================
　下層 WORKS
========================================================================== */
#works .l-inner {
  text-align: center;
}
#works .l-inner .box-inner {
  margin-top: 80px;
}
@media screen and (max-width: 600px) {
  #works .l-inner .box-inner {
    margin-top: 40px;
  }
}
#works .l-inner .box-inner h3 {
  text-align: left;
  margin-bottom: 30px;
}
#works .l-inner .box-inner ul li {
  width: 22%;
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  #works .l-inner .box-inner ul li {
    width: 48%;
    margin-bottom: 30px;
  }
}
#works .l-inner .box-inner ul li img {
  margin-bottom: 1vh;
  border: 1px solid #eee;
}
#works .l-inner .box-inner ul li p {
  font-size: var(--font-size-small);
  line-height: 1.5rem;
  color: #000;
  margin-bottom: 0;
  text-align: left;
}
#works .l-inner .box-inner ul li p a {
  font-weight: bold;
  color: #000;
  text-decoration: underline;
  text-align: left;
}
#works .l-inner .box-inner ul li .works_name {
  font-size: var(--font-size-body) !important;
}
#works .l-inner .box-inner ul li .date {
  margin: 0 0 0.5rem 0;
  font-size: var(--font-size-copyright);
  font-weight: bold;
}
#works .l-inner .box-inner ul li .works-theater {
  margin: 10px 0;
  font-weight: bold;
}
#works .l-inner .box-inner ul:after, #works .l-inner .box-inner ul::before {
  content: "";
  display: block;
  width: 22%;
  height: 0;
}
@media screen and (max-width: 600px) {
  #works .l-inner .box-inner ul:after, #works .l-inner .box-inner ul::before {
    width: 48%;
  }
}
#works .l-inner .box-inner ul::before {
  order: 1;
}
#works .l-inner .box-inner .btn {
  margin: 15px 0 0;
}
@media screen and (max-width: 600px) {
  #works .l-inner .box-inner .btn {
    margin: 10px 0 0 0;
  }
}
#works .l-inner .box-inner .btn-back {
  margin: 30px 0;
}

.worksdetail-inner {
  width: 950px;
}
@media screen and (max-width: 600px) {
  .worksdetail-inner {
    width: 90%;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 600px) {
  .worksdetail-inner .flex-box {
    display: block;
  }
}
.worksdetail-inner .worksdetail-img {
  width: 40%;
}
@media screen and (max-width: 600px) {
  .worksdetail-inner .worksdetail-img {
    width: 100%;
    margin-bottom: 30px;
  }
}
.worksdetail-inner .worksdetail-text {
  width: 55%;
}
@media screen and (max-width: 600px) {
  .worksdetail-inner .worksdetail-text {
    width: 100%;
  }
}
.worksdetail-inner .worksdetail-text p {
  font-size: var(--font-size-small);
  line-height: 1.5rem;
  margin-bottom: 1rem;
}
.worksdetail-inner .worksdetail-text .date {
  margin-bottom: 0.5rem;
  line-height: 1rem;
}
.worksdetail-inner .worksdetail-text .lead {
  font-size: var(--font-size-body);
  font-weight: normal;
  margin-bottom: 0.5rem;
}
.worksdetail-inner .worksdetail-text h3 {
  margin: 0 0 1rem 0;
}
.worksdetail-inner .worksdetail-text .official_x {
  position: relative;
  display: block;
  padding-left: 35px;
  font-size: var(--font-size-small);
  text-align: left;
}
.worksdetail-inner .worksdetail-text .official_x::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -15px;
  background: url(../img/sns_x.png) no-repeat;
  background-size: contain;
}
.worksdetail-inner .worksdetail-btn-area {
  margin: 4rem auto;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .worksdetail-inner .worksdetail-btn-area {
    margin: 3rem auto;
  }
}
.worksdetail-inner .worksdetail-btn-area li {
  width: 40%;
  padding: 0 2%;
}
@media screen and (max-width: 600px) {
  .worksdetail-inner .worksdetail-btn-area li {
    width: 80%;
    padding: 0;
    margin: 0 auto 10px;
  }
}
.worksdetail-inner .worksdetail-btn-area li .btn-gaibu {
  width: 100%;
  padding: 5% 10%;
  margin: 0;
  height: 60px;
}
@media screen and (max-width: 600px) {
  .worksdetail-inner .worksdetail-btn-area li .btn-gaibu {
    margin-bottom: 10px;
  }
}
.worksdetail-inner .works-iframe {
  width: 100%;
  margin: 0 auto 60px;
  text-align: center;
}
.worksdetail-inner .works-iframe iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

/* ==========================================================================
　下層 NEWS
========================================================================== */
#news .l-inner {
  text-align: center;
}
#news .l-inner ul {
  justify-content: center;
  padding-top: 60px;
}
@media screen and (max-width: 600px) {
  #news .l-inner ul {
    justify-content: space-between;
    padding-top: 30px;
  }
}
#news .l-inner ul li {
  width: 20%;
  margin: 0 2% 60px;
}
@media screen and (max-width: 600px) {
  #news .l-inner ul li {
    width: 48%;
    margin: 0 0 30px;
  }
}
#news .l-inner ul li img {
  margin-bottom: 1vh;
  border: 1px solid #eee;
}
#news .l-inner ul li p {
  font-size: var(--font-size-body);
  line-height: 1.5rem;
  color: #000;
  margin-bottom: 0;
  text-align: left;
}
#news .l-inner ul li p a {
  color: #000;
  text-align: left;
}
#news .l-inner ul li .date {
  font-size: var(--font-size-small);
  font-weight: bold;
}
#news .l-inner .btn {
  margin: 30px 0;
}

.newsdetail-inner {
  width: 950px;
}
.newsdetail-inner .date {
  line-height: 1rem;
  margin-bottom: 1rem;
}
.newsdetail-inner h3 {
  margin: 0 0 1.8rem 0;
}
.newsdetail-inner .detail-img {
  margin-bottom: 1.8rem;
}
.newsdetail-inner .detail-img img {
  width: 100%;
  height: auto;
}
.newsdetail-inner .detail-info {
  margin: 40px 0;
  padding: 3%;
  border: 1px solid #000;
}
@media screen and (max-width: 600px) {
  .newsdetail-inner .detail-info {
    margin: 20px 0 40px;
  }
}
.newsdetail-inner .detail-info h4 {
  line-height: 1rem;
  margin: 0 0 1rem 0;
}
.newsdetail-inner .detail-info .detail-info-text {
  font-size: var(--font-size-small);
  line-height: 1.5rem;
  margin-bottom: 0;
}
.newsdetail-inner .btn-back {
  margin-top: 60px;
}
@media screen and (max-width: 600px) {
  .newsdetail-inner .btn-back {
    margin-top: 40px;
  }
}
.newsdetail-inner .news-iframe {
  width: 100%;
  margin: 0 auto 60px;
  text-align: center;
}
.newsdetail-inner .news-iframe iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

/* ==========================================================================
　下層 CONTACT
========================================================================== */
#contact .l-inner .contact-box {
  width: 100%;
  height: 1700px;
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  #contact .l-inner .contact-box {
    height: 700px;
    overflow: scroll;
  }
}

/* ==========================================================================
　共通 FOOTER
========================================================================== */
footer {
  background-color: #0d0b09;
  color: #ffffff;
  padding: 60px 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
}
@media screen and (max-width: 600px) {
  footer {
    padding: 5% 0;
  }
}
footer .l-inner {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 40px;
}
@media screen and (max-width: 600px) {
  footer .l-inner {
    padding: 0 3%;
  }
}
@media screen and (max-width: 600px) {
  footer .l-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
footer .l-inner .footer-logo {
  width: 50%;
  text-align: left;
}
@media screen and (max-width: 600px) {
  footer .l-inner .footer-logo {
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }
}
footer .l-inner .footer-logo img {
  width: 150px;
  height: auto;
}
footer .l-inner .footer-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 600px) {
  footer .l-inner .footer-right {
    width: 100%;
    align-items: center;
  }
}
footer .l-inner .footer-right p {
  font-size: var(--font-size-copyright);
  color: #ffffff;
  margin: 5px 0;
  letter-spacing: 0.05em;
}
footer .l-inner .footer-right {
  /* ナビゲーション */
}
footer .l-inner .footer-right .footer-nav {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  width: 100%;
}
@media screen and (max-width: 600px) {
  footer .l-inner .footer-right .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}
footer .l-inner .footer-right .footer-nav li {
  font-size: var(--font-size-small);
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1rem;
}
footer .l-inner .footer-right .footer-nav li a {
  color: #fff;
  text-decoration: none;
}
footer .l-inner .footer-right .footer-nav li a:hover {
  opacity: 0.7;
}
footer .l-inner .footer-right .footer-nav li:not(:last-child)::after {
  content: "|";
  margin: 0 25px;
  color: #fff;
  font-weight: normal;
}
@media screen and (max-width: 600px) {
  footer .l-inner .footer-right .footer-nav li:not(:last-child)::after {
    margin: 0 15px;
  }
}
footer .l-inner .footer-right .footer-kanren {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  footer .l-inner .footer-right .footer-kanren {
    display: block;
    margin-bottom: 30px;
  }
}
footer .l-inner .footer-right .footer-kanren .kanren-logo {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
}
@media screen and (max-width: 600px) {
  footer .l-inner .footer-right .footer-kanren .kanren-logo {
    position: unset;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
}
footer .l-inner .footer-right .footer-kanren .kanren-logo li {
  height: 25px !important;
  width: auto !important;
  margin-left: 30px;
}
@media screen and (max-width: 600px) {
  footer .l-inner .footer-right .footer-kanren .kanren-logo li {
    width: 40% !important;
    height: auto !important;
    margin: 0;
  }
}
footer .l-inner .footer-right .footer-kanren .kanren-logo li img {
  height: 100%;
  width: auto;
}
@media screen and (max-width: 600px) {
  footer .l-inner .footer-right .footer-kanren .kanren-logo li img {
    height: auto;
    width: 100%;
  }
}
footer .l-inner .footer-right .footer-kanren .kanren-logo li a:hover {
  opacity: 0.8;
}
footer .l-inner .footer-right .footer-copy {
  width: 100%;
  text-align: end;
}
@media screen and (max-width: 600px) {
  footer .l-inner .footer-right .footer-copy {
    text-align: center;
    line-height: 1rem;
  }
}/*# sourceMappingURL=style.css.map */