@charset "UTF-8";
/*------------------------------------------------------------------

BASE

--------------------------------------------------------------------*/
/*Screen*/
html, body, div, article, section, span, p, ul, ol, li, h1, h2, h3, h4, h5, h6, a, em, strong, b, img, input, textarea, svg, button, fieldset, figure, header, footer, label, dl, dt, dd {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  font-size: 100%;
  vertical-align: baseline;
  list-style-type: none;
  -webkit-text-size-adjust: none;
  box-sizing: border-box;
  line-height: 1;
  border-collapse: collapse;
}

html {
  width: 100%;
  font-size: 62.5%;
  -ms-overflow-x: hidden;
  overflow-x: hidden;
}

body {
  width: 100%;
  position: relative;
  background: #000;
  color: #E3E3E3;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Arial, sans-serif;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 1.6;
  word-break: normal;
  word-wrap: break-word;
  overflow-x: hidden;
}

strong, b,
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

a {
  color: #333333;
  outline: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

p {
  margin: 0;
  padding: 0 0 1em;
  line-height: 1.6;
  line-break: strict;
}

img {
  max-width: 100%;
  display: inline-block;
  outline: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  transition: all 0.3s ease;
}

em {
  font-style: normal;
  font-weight: 700;
  display: block;
}

input[type=text],
input[type=url],
input[type=tel],
input[type=email],
input[type=checkbox],
input[type=submit],
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

input[type=submit]:hover {
  cursor: pointer;
}

.clear {
  width: 100%;
  font-size: 0px;
  height: 1px;
  overflow: hidden;
  clear: both;
  float: none;
  margin: 0 0 -1px 0;
  display: block;
}

.c {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.none {
  display: none;
}

/*.hidden { visibility:hidden; }*/
.nopc {
  display: none;
  visibility: hidden;
}
@media screen and (max-width: 812px) {
  .nopc {
    display: inherit;
    visibility: visible;
  }
}

@media screen and (max-width: 812px) {
  .nosp {
    display: none;
    visibility: hidden;
  }
}

.sps {
  display: none;
  visibility: hidden;
}
@media screen and (max-width: 500px) {
  .sps {
    display: inherit;
    visibility: visible;
  }
}

/*------------------------------------------------------------------

COMMON

--------------------------------------------------------------------*/
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 300;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Layout
-------------------------------*/
.baseWrap {
  width: min(100% - 100px, 1000px);
  padding: 0;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 812px) {
  .baseWrap {
    width: min(100% - 60px, 1000px);
  }
}

.wideWrap {
  width: min(100% - 100px, 1400px);
  padding: 0;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 812px) {
  .wideWrap {
    width: min(100% - 60px, 1400px);
  }
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.contentsWrap__inner {
  width: calc(min(100%, 660px) - 60px);
  margin: auto;
}
@media screen and (max-width: 812px) {
  .contentsWrap__inner {
    width: calc(min(100%, 660px) - 40px);
  }
}

.section {
  padding: 100px 0;
}
.section.bg {
  position: relative;
}
.section.bg:before {
  content: "";
  background: url(../images/bg-noise.png);
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  opacity: 0.07;
  z-index: 0;
}

/* Texts
-------------------------------*/
.txtWrap {
  width: min(100% - 100px, 580px);
  margin: auto;
}
@media screen and (max-width: 812px) {
  .txtWrap {
    width: min(100% - 60px, 580px);
  }
}
.txtWrap em {
  color: #EFEFEF;
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  line-height: 1.818;
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 812px) {
  .txtWrap em {
    font-size: clamp(1.6rem, 4.2vw, 2.2rem);
  }
}
.txtWrap p {
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  line-height: 2.125;
  padding: 0 0 2em;
}
@media screen and (max-width: 812px) {
  .txtWrap p {
    font-size: clamp(1.3rem, 3.4vw, 1.6rem);
  }
}

.section_tit {
  color: #333;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-align: center;
  padding-top: 20px;
}
@media screen and (max-width: 812px) {
  .section_tit {
    font-size: clamp(3rem, 8vw, 5rem);
    padding-top: 0;
  }
}

.section_tit_h2 {
  color: #333;
  font-size: 3rem;
  line-height: 1.333;
  text-align: center;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}
.section_tit_h2 span {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.09em;
  margin-top: 18px;
}
@media screen and (max-width: 812px) {
  .section_tit_h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.818;
    word-break: keep-all;
  }
  .section_tit_h2 span {
    margin-top: 11px;
  }
}

.section_tit_h3 {
  color: #333;
  font-size: 2.2rem;
  line-height: 1.333;
  text-align: center;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}
@media screen and (max-width: 812px) {
  .section_tit_h3 {
    word-break: keep-all;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.818;
  }
}

.section_tit_h4 {
  color: #333;
  font-size: 2rem;
  line-height: 1.333;
  text-align: center;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
@media screen and (max-width: 812px) {
  .section_tit_h4 {
    word-break: keep-all;
    line-height: 1.818;
  }
}

.txt--01 {
  color: #333;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.625;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0 0 2em;
}
@media screen and (max-width: 812px) {
  .txt--01 {
    font-size: clamp(1.3rem, 3.4vw, 1.6rem);
    line-height: 2.125;
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
  }
}

a img:hover {
  scale: 1.02;
}

/*------------------------------------------------------------------

HEADER

--------------------------------------------------------------------*/
header {
  width: 100%;
  padding: calc(52vh - 125px) 0 48vh;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 812px) {
  header {
    height: 100vh;
    padding: 0;
  }
  header .baseWrap {
    position: absolute;
    bottom: 15vh;
    left: 0;
    right: 0;
    margin: auto;
  }
}
header .inner {
  width: fit-content;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 812px) {
  header .inner {
    width: 100%;
  }
}
header .inner h1 {
  text-align: center;
}
header .inner h1 img {
  width: 400px;
}
@media screen and (max-width: 812px) {
  header .inner h1 img {
    width: 100%;
    max-width: 600px;
    height: auto;
  }
}
header .inner h1 span {
  font-size: 2rem;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 40px;
}
@media screen and (max-width: 812px) {
  header .inner h1 span {
    font-size: clamp(1.6rem, 4.2vw, 2rem);
    margin-top: 30px;
  }
}

/*------------------------------------------------------------------

FOOTER

--------------------------------------------------------------------*/
footer {
  background: #FFF;
}
footer .footer__inner {
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding: 30px 50px;
}
@media screen and (max-width: 812px) {
  footer .footer__inner {
    justify-content: center;
    padding: 30px 10px;
  }
}
@media screen and (max-width: 812px) {
  footer #f_nav {
    display: none;
  }
}
footer #f_nav ul {
  font-size: 0;
  display: flex;
  align-items: center;
}
footer #f_nav ul li {
  margin-right: 40px;
}
footer #f_nav ul li a {
  opacity: 0.5;
}
footer #f_nav ul li a:hover {
  opacity: 1;
}
footer #f_monopolize {
  width: 113px;
}
footer #f_agent {
  width: 90px;
}
footer #copy {
  color: #333333;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
}

/*------------------------------------------------------------------

CONTENTS

--------------------------------------------------------------------*/
.bgWrap {
  position: relative;
  height: 26.5vw;
  max-height: 500px;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 812px) {
  .bgWrap {
    height: 50vw;
    background-color: #FFF;
  }
}

.bg_item {
  position: absolute;
  left: 0;
  top: -20vw;
  width: 100%;
  height: 50vw;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: left center;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 812px) {
  .bg_item {
    height: 100%;
    top: 0;
    transform: none !important;
  }
}
.bg_item.item-01 {
  background-image: url("../images/bg-01.jpg");
}
@media screen and (max-width: 812px) {
  .bg_item.item-01 {
    background-image: url("../images/bg-01sp.jpg");
    height: 100vh;
    width: 100%;
    background-position: left;
  }
}

header .bg_item {
  height: 100%;
  top: 0;
  background-position: center;
}

.section-2nd em {
  margin-top: 60px;
}

.textBlock {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.textContentWrap {
  position: relative;
  width: 80%;
  text-align: center;
}

.textContentItem {
  opacity: 0;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 1s ease-in-out;
  display: flex;
  justify-content: center;
}
.textContentItem img {
  height: 90vh;
}
.textContentItem .text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  height: 80vh;
  max-height: 620px;
  text-align: justify;
}
.textContentItem .text p {
  font-family: "ten-mincho-text", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.2rem;
  line-height: 2.5;
  letter-spacing: 0.125em;
  color: #FFF;
}
@media screen and (max-width: 812px) {
  .textContentItem .text {
    height: 70vh;
    max-height: 580px;
  }
  .textContentItem .text p {
    font-size: 1.6rem;
    line-height: 2.25;
    letter-spacing: 0.25em;
  }
}

.textContentItem.active {
  opacity: 1;
}

.imgBackground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.slideshow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomIn 90s linear infinite;
  transform-origin: center;
}
.slide.show {
  opacity: 1;
  z-index: 1;
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.colorOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0); /* 初期色を黒に設定 */
  transition: background-color 2s ease-in-out, opacity 3s ease-in-out;
}

#koremade:before,
#korekara:before {
  color: #333;
  font-weight: 700;
  opacity: 0.04;
  font-size: 14.3vw;
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 812px) {
  #koremade:before,
  #korekara:before {
    font-size: 20vw;
    white-space: normal;
  }
}

#koremade {
  background: #FCF8F1;
  padding-bottom: 0;
  position: relative;
}
#koremade:before {
  content: "これまでのこと";
}
#koremade .movie {
  margin-block: 80px;
}
#koremade .movie .flex {
  justify-content: center;
  margin: 0 -20px;
}
#koremade .movie .block {
  width: calc(50% - 40px);
  margin: 0 20px;
  aspect-ratio: 16/9;
}
#koremade .movie .block iframe {
  width: 100%;
  height: 100%;
}
#koremade .movie .block p {
  color: #333;
  display: block;
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  line-height: 1;
  text-align: right;
  padding: 0.8em 0 0;
}
@media screen and (max-width: 812px) {
  #koremade .movie .flex {
    margin: 0;
  }
  #koremade .movie .block {
    width: 100%;
    margin: 0;
  }
  #koremade .movie .block:not(:first-child) {
    margin-top: 80px;
  }
}
#koremade .section_tit_h2 {
  margin-top: 150px;
}
@media screen and (max-width: 812px) {
  #koremade .section_tit_h2 {
    margin-top: 100px;
  }
}

.achievements_block {
  background: #FFF;
  border-radius: 8px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.0509803922);
  max-width: 1000px;
  height: clamp(400px, 60vh, 640px);
  overflow: auto;
  padding: 30px;
  margin-inline: auto;
}
.achievements_block::-webkit-scrollbar {
  background: transparent;
  width: 8px;
  height: 3px;
  border-radius: 30px;
}
.achievements_block::-webkit-scrollbar-thumb {
  background-color: #EFEFEF;
  border: 3px solid #FFF;
  border-radius: 30px;
}
@media screen and (max-width: 812px) {
  .achievements_block {
    width: min(100% - 60px, 1000px);
    height: clamp(400px, 75vh, 550px);
    padding: 22px 20px 30px;
  }
}
.achievements_block .achievements_item {
  display: flex;
  flex-wrap: wrap;
}
.achievements_block .achievements_item:not(:last-of-type) {
  border-bottom: 2px solid #EFEFEF;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 812px) {
  .achievements_block .achievements_item {
    flex-direction: column;
  }
}
.achievements_block .achievements_item .left {
  width: 99px;
  color: #333;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-right: 1px solid #EFEFEF;
}
@media screen and (max-width: 812px) {
  .achievements_block .achievements_item .left {
    width: 100%;
    display: flex;
    font-size: 1.3rem;
  }
}
.achievements_block .achievements_item .left .date {
  padding: 0;
}
.achievements_block .achievements_item .left .year {
  padding: 0;
}
@media screen and (max-width: 812px) {
  .achievements_block .achievements_item .left .year {
    margin-left: 0.6em;
  }
}
.achievements_block .achievements_item .right {
  width: calc(100% - 99px);
  padding-left: 30px;
}
@media screen and (max-width: 812px) {
  .achievements_block .achievements_item .right {
    width: 100%;
    padding-left: 0;
    margin-top: 18px;
  }
}
.achievements_block .achievements_item .right dl {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
.achievements_block .achievements_item .right dl dt {
  width: 64px;
  color: #888;
  font-size: 11px;
  font-weight: 700;
  background: #EFEFEF;
  border-radius: 3px;
  text-align: center;
  padding: 6px 0;
}
@media screen and (max-width: 812px) {
  .achievements_block .achievements_item .right dl dt {
    width: 52px;
    white-space: normal;
    font-size: 10px;
  }
}
.achievements_block .achievements_item .right dl dt:not(:first-of-type) {
  margin-top: 16px;
}
@media screen and (max-width: 812px) {
  .achievements_block .achievements_item .right dl dt:not(:first-of-type) {
    margin-top: 0.8rem;
  }
}
.achievements_block .achievements_item .right dl dt p {
  padding: 0;
}
.achievements_block .achievements_item .right dl dd {
  width: calc(100% - 64px);
  color: #333;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding-left: 30px;
  line-height: 1.8;
}
@media screen and (max-width: 812px) {
  .achievements_block .achievements_item .right dl dd {
    width: calc(100% - 52px);
    font-size: 1.25rem;
    padding-left: 1.5rem;
  }
}
.achievements_block .achievements_item .right dl dd:not(:first-of-type) {
  margin-top: 16px;
}
@media screen and (max-width: 812px) {
  .achievements_block .achievements_item .right dl dd:not(:first-of-type) {
    margin-top: 0.8rem;
  }
}
.achievements_block .achievements_item .right dl dd p {
  padding: 0;
}
.achievements_block .achievements_item .right dl dd span {
  color: #888888;
  font-size: 1.3rem;
  line-height: 1.7;
  display: inline-block;
  margin-top: 10px;
}
@media screen and (max-width: 812px) {
  .achievements_block .achievements_item .right dl dd span {
    font-size: 1.1rem;
    margin-top: 4px;
  }
}

.media_block {
  background: #FFF;
  border-radius: 8px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.0509803922);
  max-width: 1000px;
  padding: 30px;
  margin-inline: auto;
}
@media screen and (max-width: 812px) {
  .media_block {
    width: min(100% - 60px, 1000px);
    padding: 22px 20px 30px;
  }
}
.media_block .media_item {
  display: flex;
  flex-wrap: wrap;
}
.media_block .media_item:not(:last-of-type) {
  border-bottom: 1px solid #EFEFEF;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 812px) {
  .media_block .media_item {
    flex-direction: column;
  }
}
.media_block .media_item .left {
  width: 99px;
  color: #333;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-right: 1px solid #EFEFEF;
}
@media screen and (max-width: 812px) {
  .media_block .media_item .left {
    width: 100%;
    display: flex;
    font-size: 1.3rem;
  }
}
.media_block .media_item .left .date {
  padding: 0;
}
.media_block .media_item .left .year {
  padding: 0;
}
@media screen and (max-width: 812px) {
  .media_block .media_item .left .year {
    margin-left: 0.6em;
  }
}
.media_block .media_item .right {
  width: calc(100% - 99px);
  padding-left: 30px;
}
@media screen and (max-width: 812px) {
  .media_block .media_item .right {
    width: 100%;
    padding-left: 0;
    margin-top: 18px;
  }
}
.media_block .media_item .right p {
  color: #333;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.8;
}
.media_block .media_item .right a {
  color: #333;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: underline;
}

.link {
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  padding-block: 30px;
  max-width: 580px;
  margin: 40px auto 0;
  text-align: center;
}
.link p {
  color: #333;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding-bottom: 22px;
}
.link a {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.06em;
  text-decoration: underline;
}
.link a::after {
  line-height: 1;
}
@media screen and (max-width: 812px) {
  .link {
    width: min(100% - 60px, 1000px);
  }
  .link p {
    font-size: clamp(1.3rem, 3.4vw, 1.6rem);
  }
  .link a {
    font-size: clamp(1.2rem, 2.4vw, 1.4rem);
  }
}

@keyframes arrowmove {
  0% {
    right: 30%;
  }
  50% {
    right: 35%;
  }
  100% {
    right: 30%;
  }
}
.scrollarrow.is-active {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  margin: auto;
  width: 100px;
  height: 100px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  z-index: 100;
  display: grid;
  place-content: center;
}
.scrollarrow.is-active:before {
  content: "";
  width: 40px;
  height: 8px;
  border-bottom: 2px solid #fff;
  border-right: 3px solid #fff;
  transform: skew(45deg);
  position: absolute;
  top: 40%;
  right: 30%;
  animation: arrowmove 1s ease-in-out infinite;
}
@media screen and (max-width: 812px) {
  .scrollarrow.is-active {
    top: 15%;
  }
}

.voices_wrap {
  width: 100%;
  overflow-x: scroll;
  position: relative;
}
.voices_wrap::-webkit-scrollbar {
  background: transparent;
  width: 3px;
  height: 3px;
  border-radius: 30px;
}
.voices_wrap::-webkit-scrollbar-thumb {
  background-color: #EFEFEF;
  border-radius: 30px;
}
.voices_wrap .voices {
  width: 4500px;
  padding-inline: 8vw;
}
@media screen and (max-width: 812px) {
  .voices_wrap .voices {
    width: auto;
  }
}
.voices_wrap .voices ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width: 812px) {
  .voices_wrap .voices ul {
    flex-direction: column;
    min-height: 640px;
    max-height: 90vh;
    gap: 1.7rem;
  }
}
.voices_wrap .voices ul li {
  color: #333;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  font-style: normal;
  line-height: 2.125;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  width: fit-content;
  max-width: 50vw;
  padding: 2rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 812px) {
  .voices_wrap .voices ul li {
    font-size: 1.35rem;
    width: 100%;
    max-width: 100vw;
    height: 100%;
  }
}

.image_list_wrap {
  width: min(100% - 60px, 1000px);
  margin-inline: auto;
}
.image_list_wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.image_list_wrap ul::after {
  content: "";
  display: block;
  width: calc(33.3333333333% - 13.3333px);
}
.image_list_wrap ul li {
  width: calc(33.3333333333% - 13.3333px);
  aspect-ratio: 320/240;
  border-radius: 8px;
  background-color: #000;
  overflow: hidden;
}
.image_list_wrap ul li img {
  object-fit: cover;
  object-position: center;
  height: 100%;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
.scroll_img_area {
  margin-top: 40px;
}

.scroll_img_wrap {
  display: flex;
  background: #000;
  overflow: hidden;
}
.scroll_img_wrap ul {
  display: flex;
  list-style: none;
  padding: 0;
}
.scroll_img_wrap ul li {
  width: 36.6666666667vw;
  max-width: 526px;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.scroll_img_wrap ul li img {
  vertical-align: bottom;
}
@media screen and (max-width: 812px) {
  .scroll_img_wrap ul li {
    width: 66.6666666667vw;
  }
}

.scroll--right {
  animation: infinity-scroll-right 80s infinite linear 0.5s both;
}

.scroll--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

#korekara {
  background: #EFEFEF;
  position: relative;
  padding-bottom: 75px;
}
#korekara:before {
  content: "これからのこと";
}
@media screen and (max-width: 812px) {
  #korekara {
    padding-bottom: 0;
  }
}

.korekaraWrap {
  color: #333333;
  text-align: center;
}
.korekaraWrap .txt--01 {
  font-size: 2rem;
  line-height: 2.125;
}
.korekaraWrap .section_txt {
  margin-top: 80px;
  padding-bottom: 0;
}
@media screen and (max-width: 812px) {
  .korekaraWrap .txt--01 {
    font-size: clamp(1.3rem, 3.4vw, 1.6rem);
    line-height: 2.125;
    width: fit-content;
    margin-inline: auto;
  }
}

@media screen and (max-width: 812px) {
  .section.modelcase,
  .section.sponsorship {
    padding-top: 0;
  }
}

.flowWrap {
  margin-top: 80px;
}
.flowWrap .flex li {
  width: 33.333%;
  padding: 0 2.5vw;
}
.flowWrap .flex li .section_tit_h4 {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
.flowWrap .flex li .section_tit_h4 span {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
}
.flowWrap .flex li img {
  padding: 20px;
}
.flowWrap .flex li p {
  text-align: left;
  line-height: 1.8;
}
.flowWrap .flex li small {
  width: 100%;
  display: inline-block;
  text-align: left;
  line-height: 1.8;
}
.flowWrap .flex li small span {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: rgba(255, 220, 0, 0.4);
  text-underline-offset: -0.2em;
  text-decoration-skip-ink: none;
}
@media screen and (max-width: 812px) {
  .flowWrap {
    margin-top: 40px;
  }
  .flowWrap .flex {
    flex-direction: column;
  }
  .flowWrap .flex li {
    width: 100%;
    padding: 0 4vw;
  }
  .flowWrap .flex li:not(:first-child) {
    margin-top: 80px;
  }
  .flowWrap .flex li .section_tit_h4 span {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .flowWrap .flex li img {
    max-width: 400px;
    padding: 20px 4vw;
  }
}

#supporter {
  background: #EFEFEF;
  color: #333333;
  padding: 75px 0 150px;
}
@media screen and (max-width: 812px) {
  #supporter {
    padding-top: 0;
  }
}

.supporter_list {
  display: flex;
  flex-wrap: wrap;
}
.supporter_list li {
  width: 25%;
  height: 100px;
  display: grid;
  place-content: center;
}
.supporter_list dl {
  text-align: center;
  font-weight: 700;
}
.supporter_list dt {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
.supporter_list dd {
  font-size: 1.2rem;
  margin-top: 0.8em;
  line-height: 1.4;
}
.supporter_list dd:before {
  content: "（ ";
  color: #888;
}
.supporter_list dd:after {
  content: " ）";
  color: #888;
}
@media screen and (max-width: 812px) {
  .supporter_list li {
    width: 33.333%;
  }
  .supporter_list dd:before {
    content: "（";
  }
  .supporter_list dd:after {
    content: "）";
  }
}
@media screen and (max-width: 500px) {
  .supporter_list li {
    width: 50%;
  }
  .supporter_list dt {
    font-size: 1.4rem;
  }
  .supporter_list dd {
    font-size: 1.1rem;
    color: #555;
    margin-top: 1.1em;
  }
  .supporter_list dd:before, .supporter_list dd:after {
    content: "";
  }
}

.mt100 {
  margin-top: 100px;
}

.sponsoring_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 0;
}
.sponsoring_list li {
  width: 33.3333333333%;
  height: 80px;
  padding: 0 10px;
  display: grid;
  place-content: center;
}
.sponsoring_list li img {
  max-width: 100%;
  max-height: 80px;
}
.sponsoring_list li img svg {
  width: 100%;
}
.sponsoring_list li p {
  font-size: 2.25rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  padding: 0;
}
.sponsoring_list .item_sl img {
  max-height: 80px;
}
@media screen and (max-width: 812px) {
  .sponsoring_list .item_sl img {
    width: auto;
    max-height: 120px;
  }
}
.sponsoring_list .item_md img {
  max-height: 70px;
}
@media screen and (max-width: 812px) {
  .sponsoring_list {
    gap: 60px 0;
  }
  .sponsoring_list li {
    width: 100%;
    height: auto;
    text-align: center;
    padding: 0;
  }
  .sponsoring_list .item_md img {
    max-width: 94%;
    max-height: none;
  }
}

a.contact {
  display: block;
  color: #000;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  border: 2px solid #333;
  background: #FFF;
  width: min(100%, 320px);
  padding: 1.3em 0;
  margin: 18px auto 0;
  position: relative;
}
a.contact:after {
  content: "↗︎";
  display: inline-block;
  position: absolute;
  right: 20px;
  transition: all 0.3s ease;
}
a.contact:hover {
  background: #000;
  color: #FFF;
}
a.contact:hover:after {
  color: #FFF;
  right: 15px;
}
@media screen and (max-width: 812px) {
  a.contact {
    width: calc(100% - 40px);
  }
}

#last {
  background: #FFFFFF;
  color: #333333;
}
#last .l_logo {
  text-align: center;
}
#last .l_logo em {
  font-size: 2.2rem;
  line-height: 1.818;
  letter-spacing: 0.08em;
  padding-bottom: 26px;
}
@media screen and (max-width: 812px) {
  #last .l_logo em {
    font-size: clamp(2rem, 5vw, 3rem);
  }
}
#last .l_logo img {
  width: 400px;
}
@media screen and (max-width: 812px) {
  #last .l_logo img {
    width: min(100% - 60px, 480px);
    max-width: 600px;
    height: auto;
    margin: auto;
  }
}
#last .institute {
  max-width: 480px;
  margin-top: 112px;
  margin-inline: auto;
  border-left: 1px solid #EAEAEA;
  border-right: 1px solid #EAEAEA;
}
#last .institute h3 {
  font-size: 1.8rem;
  text-align: center;
}
#last .institute .member {
  width: fit-content;
  margin-inline: auto;
  margin-top: 48px;
}
#last .institute .title {
  width: 116px;
  float: left;
  padding-right: 48px;
}
#last .institute .title p {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: right;
}
#last .institute .name {
  width: fit-content;
  margin-left: 116px;
  padding-bottom: 26px;
}
#last .institute .name p {
  font-size: 1.4rem;
  font-weight: 700;
}
#last .institute .name p a {
  font-size: 1.2rem;
  text-decoration: underline;
  display: inline-block;
  padding-top: 12px;
}
#last .institute .name:last-of-type {
  padding-bottom: 4px;
}
#last .institute .name:last-of-type p {
  padding-bottom: 0;
}
@media screen and (max-width: 812px) {
  #last .institute h3 {
    font-size: 1.6rem;
  }
  #last .institute .title {
    width: 86px;
    padding-right: 24px;
  }
  #last .institute .name {
    margin-left: 86px;
  }
}
@media screen and (max-width: 500px) {
  #last .institute {
    border-left: none;
    border-right: none;
  }
  #last .institute a.blank:after {
    font-size: 1rem;
    right: -15px;
  }
}

a.blank {
  position: relative;
}
a.blank:after {
  content: "↗︎";
  display: inline-block;
  position: absolute;
  right: -18px;
  bottom: 0;
  transition: all 0.3s ease;
}
a.blank:hover {
  color: #888;
}
a.blank:hover:after {
  right: -20px;
  bottom: 2px;
}/*# sourceMappingURL=kidsincinema.css.map */