@charset "utf-8";
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&display=swap);
/* reset */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}
table {
  border-collapse: collapse;
  width: 100%;
}
fieldset,
img {
  border: 0;
  vertical-align: top;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}
li {
  list-style: none;
}
caption,
th {
  text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 400;
}
q:before,
q:after {
  content: "";
}
abbr,
acronym {
  border: 0;
  font-variant: normal;
}
sup {
  vertical-align: text-top;
}
sub {
  vertical-align: text-bottom;
}
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
input,
textarea,
select {
  *font-size: 100%;
}
legend {
  color: #000;
}
del,
ins {
  text-decoration: none;
}
section {
  display: block;
}
figure,
figcaption {
  margin: 0;
  padding: 0;
}
main {
  display: block;
  padding: 0;
  margin: 0;
}

.cf:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  font-size: 0.1em;
}
.cf {
  display: inline-block;
  zoom: 1;
}
ul.col {
  letter-spacing: -0.5em;
}
ul.col li {
  display: inline-block;
  vertical-align: top;
  letter-spacing: 0.06em;
}
/* \*/
* html .cf {
  height: 1%;
}
.cf {
  display: block;
}
/* */
a:link,
a:visited {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  text-decoration: none;
  color: #000;
}
a:hover {
  outline: none;
}
a:focus,
*:focus {
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  width/***/: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

body {
  font-family: "Gothic MB101 Medium", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #3c3c3c;
  word-wrap: break-word;
  font-feature-settings: "palt";
}

.only-sp {
  display: none;
}
.only-pc {
  display: block;
}

/*----------------------
#home
-----------------------*/
/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 4;
  right: 16px;
  top: 8px;
  width: 80px;
  height: 80px;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 37px;
  height: 2px;
  left: 0px;
  right: 0;
  margin: 0 auto;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 28px;
}
.hamburger span:nth-child(2) {
  top: 38px;
}
.hamburger span:nth-child(3) {
  top: 48px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 34px;
  left: 0px;

  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 34px;

  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

nav.globalMenuSp {
  pointer-events: none;
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  color: #fff;
  background: #fff;
  text-align: center;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
nav.globalMenuSp.active {
  pointer-events: auto;
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  color: #000000;
  background: #eee;
  text-align: center;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  height: 100vh;
}
nav.globalMenuSp .menu-logo {
}
nav.globalMenuSp .menu-logo img {
  width: 180px;
  margin-top: 100px;
}

nav.globalMenuSp .menu-wrap {
}
nav.globalMenuSp ul {
  margin-top: 40px;
  padding: 0;
}
nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.4s all;
  color: #000;
  font-size: 22px;
  text-align: center;
}
nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 10px;
  text-decoration: none;
  transition: all 0.4s ease-out;
}
nav.globalMenuSp ul li a.nolink {
  color: #acacac;
  pointer-events: none;
}

nav.globalMenuSp ul li a:hover {
  background: #000;
  color: #fff;
}
nav.globalMenuSp ul li a.nolink:hover {
  background: #fff;
  color: #000;
  transition: all 0.4s ease-out;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
}
header {
  position: fixed;
  z-index: 3;
}
header h1 {
  position: fixed;
  top: 36px;
  right: 110px;
  font-size: 13px;
  font-weight: 600;
}
a {
  color: #000;
}
#hero {
  text-align: center;
  width: 740px;
  transition: 0.7s;
  margin: 120px auto 0;
}
#contact #hero {
  min-height: auto;
  height: auto;
}
.hero-img {
  margin-left: 40px;
}

#hero .hero-img img {
  width: 100%;
}

#lead {
  padding-top: 120px;
  position: relative;
  padding-left: 180px;
}
.lead-parent {
  display: flex;
  justify-content: space-between;
}
.lead-copy {
  width: 40%;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.7;
}
.lead-copy h2 {
  font-weight: 600;
  font-feature-settings: "palt";
  color: #000;
}
.lead-txt {
  width: 60%;
  font-weight: 500;
}
.lead-txt p {
}
.sec {
}
.inner {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.inner-mini {
  width: 600px;
  margin: 0 auto 60px;
  position: relative;
}
.flimg01 {
  position: absolute;
  bottom: -80px;
  left: -80px;
}
.flimg02 {
  position: absolute;
  right: 0;
}
.flimg03 {
  position: absolute;
  bottom: -80px;
  left: -80px;
}

.bold {
  font-family: Gothic MB101 Bold;
}
#home-menber {
  padding-top: 180px;
}
#home-menber p {
  text-align: center;
  padding-bottom: 60px;
}
.menber-logo {
  margin-bottom: 40px;
}
.menber-total {
  text-align: center;
  margin: 40px auto;
  width: 300px;
  color: #e8490e;
  display: flex;
  justify-content: space-between;
}
.menber-total-genzai {
  width: 20%;
  padding-top: 36px;
  line-height: 1;
  font-size: 24px;
}
.menber-total-totla {
  width: 65%;
  letter-spacing: -0.03em;
  line-height: 1;
  font-size: 70px;
}
.menber-total-nin {
  width: 15%;
  padding-right: 10px;
  padding-top: 36px;
  line-height: 1;
  font-size: 24px;
}
.btn-wrap {
  width: 360px;
  margin: 0 auto;
}
.btn-wrap a {
  display: block;
  width: 360px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.05em;
  border: #333 solid 2px;
  padding: 10px;
  border-radius: 40px;
  box-sizing: border-box;
  margin-bottom: 10px;
  transition: all 0.4s;
}
.btn-wrap .btn-message a {
  border: #e94709 solid 2px;
  color: #e94709;
}
.btn-wrap .btn-message a:hover {
  background: #e94709;
  border: #e94709 solid 2px;
  color: #fff;
  transition: all 0.4s;
}
.btn-wrap .btn-form a {
  background: url("../images/home/bg-o.png?02");
  border: #e94709 solid 2px;
  color: #fff;
}
.btn-wrap .btn-form a:hover {
  opacity: 0.7;
  transition: all 0.4s;
}
.btn-wrap .btn-upload a {
  background: url("../images/home/bg-g.png?02");
  border: #058205 solid 2px;
  color: #fff;
}
.btn-wrap .btn-upload a:hover {
  opacity: 0.7;
  transition: all 0.4s;
}

.btn-wrap .btn-download a {
  background: url("../images/home/bg-y.png?02");
  border: #fed100 solid 2px;
  color: #000;
}
.btn-wrap .btn-download a:hover {
  opacity: 0.7;
  transition: all 0.4s;
}

.ico-start {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 50px;
}

#movie-list {
  padding-top: 180px;
  position: relative;
}
#movie-list .inner {
  width: 80%;
  margin: 0 auto;
  position: relative;
  max-width: 1280px;
}
#slide {
  padding-top: 180px;
}

.movie-list-parents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.movie-list-item {
  width: calc(33% - 24px);
  position: relative;
}
.movie-list-item .movie-list-item-title {
  padding: 16px 0 8px;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 60px;
}

.movie-list-item p {
  font-size: 14px;
  padding-bottom: 30px;
  letter-spacing: 0;
}

.movie-wrap {
  position: relative;
  padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
}

.movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#home-design {
  padding-top: 160px;
}
.home-design-parent {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.home-design-item {
  width: calc(50% - 50px);
  position: relative;
}
.home-design-tmb img {
  width: 100%;
}
.home-design-tmb {
  margin-bottom: 30px;
}
.home-design-copy {
  color: #000;
  line-height: 1.6;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}
.home-design-copy span {
  font-size: 16px;
  display: block;
}
.home-design-item p {
  font-size: 14px;
  line-height: 2.2;
}
.sec-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #000;
}
.sec-title.en {
  letter-spacing: -0.02em;
}
.sec-title-line {
  width: 80px;
  margin: 0 auto 80px;
}
.slide a {
  color: #333;
}
.slide-copy {
  padding-top: 10px;
  padding-bottom: 8px;
  text-align: center;
  font-size: 15px;
}
.slide-name {
  text-align: center;
  font-size: 13px;
  line-height: 1.6em;
  margin-bottom: 40px;
}
.slider {
  margin: 30px auto 50px;
}
.mypattern .slick-slide img {
  width: 100%;
  height: auto;
}
.mypattern,
.slider {
  width: 100%;
}
.mypattern .slick-slide {
  margin: 0 5px;
  position: relative;
}

.slick-dots li {
  margin: 0 !important;
}

#home-prof {
  background: url("../images/home/bg-blue.png");
  color: #fff;
  padding: 80px 0;
}
#home-prof .inner {
  max-width: 1100px;
  padding-left: 80px;
}

.home-prof-parent {
  display: flex;
  justify-content: space-between;
}
.home-prof-item {
  width: calc(50% - 30px);
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
}
.home-prof-tmb {
  width: calc(25% - 15px);
  position: relative;
}
.home-prof-summary {
  width: calc(75% - 15px);
  position: relative;
}

.home-prof-job {
  font-size: 12px;
  line-height: 1.4;
}

.home-prof-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}
.home-prof-item p {
  font-size: 12px;
  line-height: 1.8;
}

.concept {
  width: 800px;
  margin: 160px auto;
}
.concept img {
  width: 100%;
}

footer {
  clear: both;
}
footer p {
  padding: 15px 0;
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
}
.footer-parent {
  width: 80%;
  display: flex;
  margin: 80px auto;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-item {
  width: calc(50% - 30px);
}
.footer-item-title {
  font-size: 16px;
  border-bottom: #333 solid 1px;
  padding-bottom: 24px;
  text-align: center;
  line-height: 1.6;
}

/*-------------------------------
animation
---------------------------------*/

.summary {
  width: 39%;
  float: right;
  padding-left: 34px;
  box-sizing: border-box;
}
.summary-title {
  font-family: HanaRenge-Bd, serif;
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 40px;
}
.summary-title span {
  font-size: 20px;
}
.summary p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.back a {
  font-family: HanaRenge-Bd, serif;
  font-size: 24px;
  width: 150px;
  display: block;
  padding: 14px 30px;
  border: #000 solid 1px;
  color: #000;
  text-align: center;
  margin: 0px auto;
}
.back a:hover {
  background: #000;
  color: #fff;
}
.back {
  clear: both;
  padding: 80px 0;
}

.modal-container .txt {
  font-size: 16px;
  line-height: 2em;
  padding-bottom: 40px;
  margin-top: 40px;
}

.modal-container .indent li {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.6;
  padding-bottom: 5px;
}

.modaal-close-origin {
  text-align: center;
  color: #5a5958;
  display: block;
  border: #5a5958 solid 1px;
  padding: 14px 40px;
  font-size: 14px;
  transition: 0.4s;
  cursor: pointer;
  margin: 40px auto 100px;
  width: 160px;
}
.modaal-close-origin:hover {
  color: #fff;
  background: #5a5958;
  transition: 0.4s;
}

.logo-mini {
  width: 120px;
  margin: 0 auto 40px;
}
.item-single .item-title {
  font-size: 40px;
}

.modaal-container {
  background: #fff;
}
.item-title {
  font-size: 30px;
  letter-spacing: 0.08em;
  text-align: center;
  padding-top: 60px;
}
.modaal-content-container {
  padding: 100px 0 0;
  width: 800px;
  margin: 0px auto 120px;
}
.modaal-content-container th {
  font-weight: 400;
  font-size: 16px;
  padding: 14px;
  border-top: #b7b7b7 dotted 1px;
  width: 20%;
}
.modaal-content-container td {
  font-weight: 400;
  font-size: 16px;
  padding: 14px;
  border-top: #b7b7b7 dotted 1px;
  width: 80%;
}

.modaal-content-container table {
  width: 100%;
  margin-bottom: 30px;
  border-collapse: inherit;
}

.modaal-fullscreen .modaal-close {
  background: none;
  right: 40px;
  top: 26px;
}
.modaal-close:after,
.modaal-close:before {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 2px;
  height: 28px;
  border-radius: 4px;
  background: #252525;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.modal-lead-copy {
  font-size: 24px;
  text-align: center;
  padding: 40px 0 15px;
}

.modal-lead-name {
  line-height: 1.6;
  text-align: center;
  font-size: 15px;
  margin-bottom: 40px;
}
.modal-lead-name span {
  display: block;
}
.modai-body {
  width: 80%;
  margin: 0 auto;
}
.modai-body p {
  font-weight: 400;
  font-size: 14px;
  line-height: 2.2em;
  margin-bottom: 2em;
  letter-spacing: 0.08em;
}
.modai-body img {
  margin-bottom: 2em;
}

@media screen and (max-width: 768px) {
  .modaal-content-container {
    padding: 0;
    width: 80%;
    margin: 40px auto 120px;
  }
  .modaal-content-container th {
    font-weight: 400;
    font-size: 14px;
    padding: 8px;
    line-height: 1.5;
  }
  .modaal-content-container td {
    font-weight: 400;
    font-size: 14px;
    padding: 8px;
    line-height: 1.5;
  }
  .modaal-content-container td a {
    font-size: 12px;
  }

  .modal-container .txt {
    font-size: 14px;
  }
  .modaal-fullscreen .modaal-close {
    background: none;
    right: 0px;
    top: 0px;
  }
}

/*-------------------------------
animation
---------------------------------*/

@media screen and (max-width: 1260px) {
}

@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 800px) {
  .only-sp {
    display: block;
  }
  .only-pc {
    display: none;
  }

  #hero {
    width: 90%;
  }
  .hero-img {
    margin-left: 0;
  }
  #lead {
    padding-top: 80px;
    position: relative;
    padding-left: 0;
  }
  .inner {
    width: 85%;
    margin: 0 auto;
    position: relative;
  }
  .lead-parent {
    display: block;
  }
  .lead-copy {
    width: 100%;
    margin-bottom: 30px;
  }
  .lead-txt {
    width: 100%;
    font-weight: 500;
  }
  .flimg01 {
    position: absolute;
    bottom: auto;
    left: auto;
    width: 60px;
    top: 0;
    right: 0;
  }
  #home-menber {
    padding-top: 100px;
  }
  .inner-mini {
    width: 80%;
    margin: 0 auto 60px;
    position: relative;
  }
  #home-menber p {
    text-align: left;
  }
  .btn-wrap {
    width: 100%;
  }
  .btn-wrap a {
    display: block;
    width: 100%;
    font-size: 16px;
  }
  .flimg02 {
    position: absolute;
    right: -15px;
    width: 80px;
  }
  .movie-list-parents {
    display: block;
  }
  .movie-list-item {
    width: 100%;
    position: relative;
  }
  .flimg03 {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 60px;
  }
  .home-design-parent {
    display: block;
  }
  .home-design-item {
    width: 100%;
    margin-bottom: 60px;
  }
  .concept {
    width: 100%;
    margin: 80px auto;
  }
  #home-prof {
    background: url(../images/home/bg-blue.png);
    color: #fff;
    padding: 40px 0;
  }
  #home-prof .inner {
    width: 85%;
    padding-left: 0;
    margin: 0 auto;
  }
  .home-prof-parent {
    display: block;
  }
  .home-prof-item {
    width: 100%;
    display: block;
  }
  .home-prof-tmb {
    width: 40%;
    position: relative;
    margin: 0 auto 40px;
  }
  .home-prof-summary {
    width: 100%;
    position: relative;
  }
  .home-prof-job {
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
  }
  .home-prof-name {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
  }
  header h1 {
    display: none;
  }
  .modai-body {
    width: 100%;
    margin: 0 auto;
  }
  .modal-lead-copy {
    font-size: 22px;
    line-height: 1.5;
  }
  .inner {
    width: 85%;
    margin: 0 auto;
    position: relative;
  }
  .lead-copy {
    width: 100%;
    margin: 0 auto;
    font-size: 14px;
  }
  #home .lead-copy {
    width: 100%;
    margin: 0 auto 30px;
    font-size: 20px;
  }
  .message-list-item {
    width: calc(50% - 6px);
    position: relative;
    margin-bottom: 40px;
  }
  .message-list-item .message-list-item-title {
    padding: 20px 0 10px;
    letter-spacing: 0.08em;
    font-weight: 500;
    text-align: center;
    font-size: 13px;
    line-height: 1.5em;
    color: #000;
  }
  .message-list-item-name {
    text-align: center;
    font-size: 10px;
  }
  .hero-img {
    margin-left: 0;
  }
  .slide-copy {
    line-height: 1.6;
  }

  .btn-wrap .btn-download a {
    font-size: 13px;
  }
  .footer-parent {
    width: 80%;
    display: block;
    margin: 40px auto;
  }
  .footer-item {
    width: 100%;
    margin-bottom: 40px;
  }
  .footer-item-title {
    font-size: 14px;
    border-bottom: #333 solid 1px;
    padding-bottom: 14px;
    text-align: center;
    line-height: 1.6;
  }
  footer p {
    padding: 15px 0;
    font-size: 12px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 375px) {
  .home-design-copy {
    font-size: 17px;
  }
  .home-design-item p {
    font-size: 13px;
    line-height: 2.2;
  }
  .movie-list-item .movie-list-item-title {
    font-size: 13px;
  }
}
.registration {
  line-height: 1;
  max-width: 454px;
  display: flex;
  margin: 90px auto 0;
}
.registration__left {
  width: 27.533%;
  margin: 0 5.5% 0 -34px;
}
.registration__right {
  width: 66.96%;
}
#home-menber .registration__ttl {
  font-family: "Gothic MB101 Bold";
  text-align: center;
  border-top: 5px solid #e64600;
  border-bottom: 5px solid #e64600;
  color: #e64600;
  font-size: 25px;
  line-height: 45px;
  padding: 0;
}
#home-menber .registration__number {
  font-family: "Gothic MB101 Bold";
  color: #000;
  text-align: center;
  font-size: 50px;
  padding: 24px 0 0 0;
}
#home-menber .registration__number span {
  display: inline-block;
  padding-left: 20px;
}
#home-menber .registration__day {
  font-size: 13px;
  text-align: right;
  padding-top: 12px;
}
.top__report_wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 80%;
  max-width: 800px;
  margin: 94px auto 0;
}
.top__report,
.top__introduction {
  width: 47.23%;
}
.top__report img,
.top__introduction img {
  width: 100%;
}
@media screen and (max-width: 425px) {
  .registration {
    margin: 60px auto 0;
    justify-content: space-between;
  }
  .registration__left {
    width: 24%;
    margin: 0;
    position: relative;
  }
  .registration__left img {
    position: absolute;
    bottom: 30px;
  }
  .registration__right {
    width: 70%;
  }
  #home-menber .registration__ttl {
    font-size: 20px;
    line-height: 40px;
    padding: 0;
  }
  #home-menber .registration__number {
    font-size: 40px;
    letter-spacing: normal;
    padding: 24px 0 0 0;
  }
  #home-menber .registration__number span {
    display: inline-block;
    font-size: 30px;
    padding-left: 0;
  }
}
  .top__report,
  .top__introduction  {
	text-align: center;
}
@media screen and (max-width: 800px) {
  .top__report_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80%;
    margin: 94px auto 0;
  }
  .top__report,
  .top__introduction {
    width: 100%;
    text-align: center;
  }
  .top__report {
    margin-bottom: 60px;
  }
}
/*----------------------
 実現リポートページ
-----------------------*/
#report__hero {
  max-width: 720px;
  padding: 0 20px;
  margin: 130px auto 0;
  position: relative;
}
.report__hero_img01 {
  background: url(../images/home/fl-img.png) no-repeat;
  position: absolute;
  top: 0;
  left: 20px;
  width: 89px;
  height: 97px;
  background-size: cover;
}
.report__hero_mein {
  margin-top: 24px;
}
.report__hero_img02 {
  background: url(../images/home/fl-img02.png) no-repeat;
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 125px;
  height: 124px;
  background-size: cover;
}
.btn-report {
  max-width: 600px;
  background: url("../images/home/bg-blue.png");
  border: #0038a6 solid 2px;
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 60px;
  border-radius: 100vh;
  box-sizing: border-box;
  margin: 38px auto 0;
  transition: all 0.4s;
}
.report__inn_txt {
  width: 600px;
  margin: 40px auto 0;
  position: relative;
}
.report__list {
  max-width: 819px;
  padding: 0 20px;
  margin: 90px auto 140px;
  overflow: hidden;
}
.report__list_item {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 4.878%);
}
.report__list_item li {
  width: 28.455%;
  margin: 0 4.878% 34px 0;
}
.report__list_item li:nth-child(3n + 1):nth-last-child(-n + 3),
.report__list_item li:nth-child(3n + 1):nth-last-child(-n + 3) ~ li {
  margin: 0 4.878% 0 0;
}
.report__img {
  width: 100%;
  padding-top: 55.33%;
  position: relative;
}
.report__img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  object-fit: cover;
}
.repotr__ttl {
  font-size: 14px;
  margin-top: 22px;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
}
.report__name {
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
  margin-top: 20px;
}
.modal-lead-img {
  max-width: 800px;
  padding-top: 56.25%;
  position: relative;
}
.modal-lead-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  object-fit: cover;
}
.report__comingsoon {
  background: #ccc;
  width: 100%;
  padding-top: 55.33%;
  position: relative;
}
.report__comingsoon p {
  text-align: center;
  color: #fff;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  #report__hero {
    width: 90%;
    padding: 0 20px;
    margin: 120px auto 0;
    position: relative;
  }
  .report__hero_img01 {
    background: url(../images/home/fl-img.png) no-repeat;
    position: absolute;
    top: -50px;
    left: 20px;
    width: 60px;
    height: 65px;
    background-size: cover;
  }

  .report__hero_mein {
    margin-top: 24px;
  }
  .report__hero_img02 {
    background: url(../images/home/fl-img02.png) no-repeat;
    position: absolute;
    bottom: -40px;
    right: 20px;
    width: 80px;
    height: 79px;
    background-size: cover;
  }
  .btn-report {
    max-width: 455px;
    width: 90%;
    background: url("../images/home/bg-blue.png");
    border: #0038a6 solid 2px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 40px;
    padding: 10px;
    border-radius: 100vh;
    box-sizing: border-box;
    margin: 68px auto 0;
    transition: all 0.4s;
  }
  .report__inn_txt {
    width: 90%;
    margin: 40px auto 0;
    position: relative;
  }
  .report__list {
    width: 90%;
    padding: 0 20px;
    margin: 40px auto 0;
    overflow: hidden;
  }
  .report__list_item {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .report__list_item li {
    width: 100%;
    margin: 0 0 34px 0;
  }
  .report__list_item li:nth-child(3n + 1):nth-last-child(-n + 3),
  .report__list_item li:nth-child(3n + 1):nth-last-child(-n + 3) ~ li {
    margin: 0 0 34px 0;
  }
  .report__list_item li:last-child {
    margin: 0;
  }
  .report__img {
    width: 100%;
    padding-top: 55.33%;
    position: relative;
  }
  .report__img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    object-fit: cover;
  }
  .repotr__ttl {
    margin-top: 22px;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: center;
  }
  .report__name {
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
    margin-top: 20px;
  }
  .modal-lead-img {
    max-width: 800px;
    padding-top: 56.25%;
    position: relative;
  }
  .modal-lead-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    object-fit: cover;
  }
}

/*----------------------
 応援団ページ
-----------------------*/
#squad__hero {
  max-width: 720px;
  padding: 0 20px;
  margin: 130px auto 0;
  position: relative;
}
.squad__hero_img01 {
  background: url(../images/home/fl-img.png) no-repeat;
  position: absolute;
  top: 0;
  left: 20px;
  width: 89px;
  height: 97px;
  background-size: cover;
}
.squad__hero_mein {
  margin-top: 24px;
  text-align: center;
}
.squad__hero_img02 {
  background: url(../images/home/fl-img02.png) no-repeat;
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 125px;
  height: 124px;
  background-size: cover;
}
.btn-report {
  max-width: 600px;
  background: url("../images/home/bg-blue.png");
  border: #0038a6 solid 2px;
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 60px;
  border-radius: 100vh;
  box-sizing: border-box;
  margin: 38px auto 0;
  transition: all 0.4s;
}
.squad__inn_txt {
  max-width: 600px;
  margin: 40px auto 0;
  position: relative;
  text-align: center;
}
.squad__inn_txt p {
  display: inline-block;
  text-align: left;
}
.squad__list {
  max-width: 819px;
  padding: 0 20px;
  margin: 70px auto 140px;
  overflow: hidden;
}
.squad__list_item {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 4.878%);
}
.squad__list_item li {
  width: 28.455%;
  margin: 0 4.878% 64px 0;
  padding-top: 30px;
}
.squad__list_item li:nth-child(3n + 1):nth-last-child(-n + 3),
.squad__list_item li:nth-child(3n + 1):nth-last-child(-n + 3) ~ li {
  margin: 0 4.878% 0 0;
}
.squad__img {
  text-align: center;
}
.squad__img img {
  max-width: 100%;
  height: auto;
}
.squad__ttl {
  font-size: 16px;
  margin-top: 22px;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
  font-weight: 700;
  padding-left: 1em;
}
.squad__name {
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  margin-top: 8px;
  font-weight: 700;
  padding-left: 1em;
}
.squad_comment {
  margin-top: 20px; 
  padding-left: 1em;
}
.modal-lead-img {
  max-width: 800px;
  padding-top: 56.25%;
  position: relative;
}
.modal-lead-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  object-fit: cover;
}
.squad__comingsoon {
  background: #ccc;
  width: 100%;
  padding-top: 55.33%;
  position: relative;
}
.squad__comingsoon p {
  text-align: center;
  color: #fff;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  #squad__hero {
    width: 90%;
    padding: 0 20px;
    margin: 120px auto 0;
    position: relative;
  }
  .squad__hero_img01 {
    background: url(../images/home/fl-img.png) no-repeat;
    position: absolute;
    top: -50px;
    left: 20px;
    width: 60px;
    height: 65px;
    background-size: cover;
  }
  .squad__hero_mein {
    margin-top: 24px;
  }
  .squad__hero_img02 {
    background: url(../images/home/fl-img02.png) no-repeat;
    position: absolute;
    bottom: -40px;
    right: 20px;
    width: 80px;
    height: 79px;
    background-size: cover;
  }
  .btn-report {
    max-width: 455px;
    width: 90%;
    background: url("../images/home/bg-blue.png");
    border: #0038a6 solid 2px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 40px;
    padding: 10px;
    border-radius: 100vh;
    box-sizing: border-box;
    margin: 68px auto 0;
    transition: all 0.4s;
  }
  .squad__inn_txt {
    width: 90%;
    margin: 40px auto 0;
    position: relative;
  }
  .squad__list {
    width: 95%;
    padding: 0 10px 0 0;
    margin: 40px auto 0;
    overflow: hidden;
  }
  .squad__list_item {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .squad__list_item li {
    width: 50%;
    margin: 0 0 34px 0;
  }
  .squad__list_item li:nth-child(3n + 1):nth-last-child(-n + 3),
  .squad__list_item li:nth-child(3n + 1):nth-last-child(-n + 3) ~ li {
    margin: 0 0 34px 0;
  }
  .squad__list_item li:last-child {
    margin: 0;
  }
  .squad__img {
    width: 100%;
    position: relative;
	text-align: center;
  }
  .squad__img img {
	max-width: 100%;
	height: auto;
  }
  .squad__ttl {
    margin-top: 22px;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: center;
	font-size: 13px;
    font-weight: 700;
  }
  .squad__name {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    margin-top: 8px;
	font-weight: 700;
  }
  .modal-lead-img {
    max-width: 800px;
    padding-top: 56.25%;
    position: relative;
  }
  .modal-lead-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    object-fit: cover;
  }
}

/* トップページ、スライド */
.loop_wrap {
	position: relative;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row nowrap;
	flex-flow: row nowrap;
	overflow: hidden;
}

.loop_wrap:first-of-type {
	width: calc(175px * 100);
}

.loop_wrap + .loop_wrap {
	width: calc(175px * 100);
}

.loop_wrap ul {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row nowrap;
	flex-flow: row nowrap;
	width: 100%;
	margin: 0;
	padding: 0;
}

.loop_wrap li {
	min-width: 175px;
	list-style: none;
	text-align: center;
	box-sizing: border-box;
	padding-right: 5px;
}

.loop_wrap li a {
	display: block;
}

.loop_wrap li img {
	display: block;
	width: 100%;
	height: auto;
}

.loop_wrap li a:hover {
	opacity: .7;
}

.loop_wrap ul:first-child {
	-webkit-animation: loop 50s -25s linear infinite;
	animation: loop 50s -25s linear infinite;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	will-change: transform;
}

.loop_wrap ul + ul {
	-webkit-animation: loop2 50s  linear infinite;
	animation: loop2 50s linear infinite;
}

@-webkit-keyframes loop {
	0% {
		-webkit-transform: translateX(100%);
		-ms-transform: translateX(100%);
		transform: translateX(100%);
	}
	to {
		-webkit-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

@keyframes loop {
	0% {
		-webkit-transform: translateX(100%);
		-ms-transform: translateX(100%);
		transform: translateX(100%);
	}
	to {
		-webkit-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

@-webkit-keyframes loop2 {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	to {
		-webkit-transform: translateX(-200%);
		-ms-transform: translateX(-200%);
		transform: translateX(-200%);
	}
}

@keyframes loop2 {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	to {
		-webkit-transform: translateX(-200%);
		-ms-transform: translateX(-200%);
		transform: translateX(-200%);
	}
}

.loop_wrap + .loop_wrap ul:first-child {
	-webkit-animation: loop3 50s -25s linear infinite;
	animation: loop3 50s -25s linear infinite;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	will-change: transform;
}

.loop_wrap + .loop_wrap ul {
	-webkit-animation: loop4 50s  linear infinite;
	animation: loop4 50s linear infinite;
}
	
@-webkit-keyframes loop3 {
	0% {
		-webkit-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		transform: translateX(-100%);
	}
	to {
		-webkit-transform: translateX(100%);
		-ms-transform: translateX(100%);
		transform: translateX(100%);
	}
}

@keyframes loop3 {
	0% {
		-webkit-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		transform: translateX(-100%);
	}
	to {
		-webkit-transform: translateX(100%);
		-ms-transform: translateX(100%);
		transform: translateX(100%);
	}
}

@-webkit-keyframes loop4 {
	0% {
		-webkit-transform: translateX(-200%);
		-ms-transform: translateX(-200%);
		transform: translateX(-200%);
	}
	to {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes loop4 {
	0% {
		-webkit-transform: translateX(-200%);
		-ms-transform: translateX(-200%);
		transform: translateX(-200%);
	}
	to {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

#squad {
	border-top: solid 12px #ff4400;
  border-bottom: solid 12px #ff4400;
	position: relative;
  margin-top: 150px;
  overflow: hidden;
}


.loop_wrap + .loop_wrap {
	margin-top: 5px;
}

/*	
.loop_wrap:hover ul {
	animation-play-state: paused;
}

.loop_wrap + .loop_wrap:hover ul {
	animation-play-state: paused;
}
*/

#squad:hover ul {
	animation-play-state: paused;
}

.squad-logo {
    position: absolute;
    top: 0;
    width: 100%;
    text-align: center;
    pointer-events: none;
}

.squad-logo a {
  pointer-events: auto;
}

#home-menber {
  padding-top: 50px;
}

.inner-mini {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: auto;
}

#home-menber .inner-mini p {
  text-align: left;
  margin-top: 40px;
}

.menber-logo {
  margin: 0 10px;
}

@media screen and (max-width: 768px) {
  .loop_wrap ul:first-child {
    -webkit-animation: loop 100s -50s linear infinite;
    animation: loop 100s -50s linear infinite;
  }

  .loop_wrap ul + ul {
    -webkit-animation: loop2 100s  linear infinite;
    animation: loop2 100s linear infinite;
  }

  .loop_wrap + .loop_wrap ul:first-child {
    -webkit-animation: loop3 100s -50s linear infinite;
    animation: loop3 100s -50s linear infinite;
  }

  .loop_wrap + .loop_wrap ul {
    -webkit-animation: loop4 100s  linear infinite;
    animation: loop4 100s linear infinite;
  }

  .loop_wrap li {
    min-width: 87.5px;
  }
  
  .squad-logo img {
    /* height: 230px; */
    height: 170px;
    border-top: solid 30px rgba(255,255,255,0.9);
    border-bottom: solid 30px rgba(255,255,255,0.9);
  }

  #squad {
    margin-top: 50px;
  }
  
  .inner-mini {
    width: 80%;
  }

  .registration {
    width: 80%;
  }
  
}

/* 広報隊 */

#contact__hero {
  text-align: center;
  overflow: hidden;
}

.contact__hero_img_r {
  background: url("../images/contact/img_r.png") no-repeat;
  position: absolute;
  top: 130px;
  right: 0;
  width: 250px;
  height: 178px;
  background-size: cover;
  z-index: -1;
}
.contact__hero_img01 {
  background: url("../images/contact/img1.png") no-repeat;
  position: absolute;
  top: 365px;
  left: 60px;
  width: 133px;
  height: 135px;
  background-size: cover;
}
.contact__hero_mein {
  text-align: center;
  display: inline-block;
  position: relative;
  margin-left: -122px;
}
.contact__hero_img02 {
  background: url("../images/contact/img2.png") no-repeat;
  position: absolute;
  top: 430px;
  right: -160px;
  width: 110px;
  height: 107px;
  background-size: cover;
}
.contact__hero_img_l {
  background: url("../images/contact/img_l.png") no-repeat;
  position: absolute;
  top: 325px;
  left: 0;
  width: 202px;
  height: 180px;
  background-size: cover;
  z-index: -1;
}
#contact__read {
  text-align: center;
  margin-top: 20px;
}
#contact__read p {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.02em;
}
#contact__read a {
  margin-top: 20px;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .contact__hero_img_r {
    background: url("../images/contact/img_r_sp.png") no-repeat;
    top: 0;
    right: 0;
    width: 135px;
    height: 81px;
    background-size: cover;
    z-index: -1;
  }
  .contact__hero_img01 {
    top: 250px;
    left: 0;
    width: 61px;
    height: 62px;
  }
  .contact__hero_mein {
    margin-left: -10%;
    margin-top: 10px;
  }
  .contact__hero_img02 {
    top: 240px;
    right: -50px;
    width: 53px;
    height: 51px;
  }
  .contact__hero_img_l {
    background: url("../images/contact/img_l_sp.png") no-repeat;
    position: absolute;
    top: 425px;
    left: 0;
    width: 69px;
    height: 89px;
  }
  #contact__read {
    line-height: 1;
  }
  #contact__read p {
    position: relative;
    line-height: 2;
    margin-bottom: 30px;
    font-size: 20px;
    display: inline-block;
  }
  #contact__read a {
    display: block;
    margin-top: 0;
  }
  #contact__read a:first-of-type {
    text-align: left;
  }
  #contact__read a + a {
    text-align: right;
  }

}

/* 追加フォーム */

@media screen and (max-width: 768px) {
  #zip1,
  #zip2,
  #tel1,
  #tel2,
  #tel3,
  #fax1,
  #fax2,
  #fax3 {
    width: calc(100% / 3 - 1em);
  }
}

/*----------------------
 広報隊紹介ページ
-----------------------*/
.btn-intro {
  max-width: 455px;
  width: 90%;
  background: url("../images/home/bg-yg.png");
  border: #72bc33 solid 2px;
  color: #fff;
  font-size: 35px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 40px;
  padding: 10px;
  border-radius: 100vh;
  box-sizing: border-box;
  margin: 68px auto 0;
  transition: all 0.4s;
}
.intro__inn_txt {
  width: 90%;
  margin: 40px auto 0;
  position: relative;
  text-align: center;
}
.intro__list_item {
  max-width: 840px;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  margin: 30px auto 0;
}
.intro__list_item li {
  width: 22.619%;
  margin: 40px 1.19% 0;
}
.intro__img {
  width: 100%;
  padding-top: 66.842%;
  position: relative;
}
.intro__img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  object-fit: cover;
}
.intro__ttl {
  font-size: 13px;
  text-align: center;
  line-height: 1.4;
  margin-top: 12px;
}
.intro__txt {
  font-size: 10px;
  line-height: 1.3;
  color: #666;
  border-top: 1px solid #666;
  padding: 10px 0 0;
  margin: 10px 0 0;
}
.intro__txt span {
  color: #7dc31e;
}
@media screen and (max-width: 799px) {
  .intro__list_item {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    margin: 30px auto 0;
  }
  .intro__list_item li {
    width: 48%;
    margin: 40px 1% 0;
  }
}
@media screen and (max-width: 425px) {
  .intro__list_item {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    margin: 30px auto 0;
  }
  .intro__list_item li {
    width: 100%;
    margin: 40px 0 0;
  }
}

/* ステートムービー */

@media screen and (max-width: 1023px) {
  .movie-list-item {
    width: calc(100% - 8%);
    margin-left: 4%;
  }
  .slick-prev,
  .slick-next {
      display: none !important;
  }
}

@media screen and (min-width: 1024px) {
  .mypattern .slick-slide {
    margin: 0;
  }
  #movie-list {
    position: relative;
    max-width: 1240px;
    margin: auto;
  }
  #slide {
    padding-top: 30px;
    max-width: 1240px;
    margin: auto;
  }
  .flimg03 {
    left: 120px;
    bottom: -50px;
  }
  .slide a > div {
    display: flex;
    justify-content: center;
  }
  .slick-slide.slick-current {
    transition: transform 0.5s;
  }
  .slick-slide.is-active-prev,
  .slick-slide.is-active-next {
    transition: transform 0.5s; 
  }
  
  /* サイズ・位置 */
  .slick-slide {
    height: auto;
    transform: scale(0.875); 
    width: 100%;
    padding-top: 60px;
  }
  #slide .slick-slide {
    transform: scale(0.725);
  }
  .slick-center {
    transform: scale(1.73);
  }
  #movie-list .is-active-prev,
  #movie-list .is-active-next {
    transform: scale(1.73);
  }
  #slide .slick-center {
    transform: scale(1.33);
  }
  #slide .is-active-prev,
  #slide .is-active-next {
    transform: scale(1.33);
  }
  #movie-list .slick-list {
    padding-top: 30px !important;
  }
  #movie-list .slick-center,
  #movie-list .is-active-next {
    margin-top: -18px;
  }
  #slide .slick-center,
  #slide .is-active-next {
    margin-top: -11px;
  }
  .slide-pic {
    padding-bottom: 20px;
  }
  .movie-list-item {
    width: 214px;
  }
  .slick-slide .movie-list-item {
    margin-left: -214px;
  }
  .slick-slide.slick-current .movie-list-item {
    margin-left: 0px;
  }
  .slick-slide.is-active-prev .movie-list-item,
  .slick-slide.is-active-next .movie-list-item {
    margin-left: 0px;
  }
  .slick-slide.slick-current + .slick-slide .movie-list-item {
    margin-left: 214px;
  }
  .slick-slide.is-active-prev + .slick-slide .movie-list-item,
  .slick-slide.is-active-next + .slick-slide .movie-list-item {
    margin-left: 214px;
  }
  .slick-slide.slick-current + .slick-slide + .slick-slide .movie-list-item {
    margin-left: 214px;
  }
  .slick-slide.is-active-prev + .slick-slide + .slick-slide .movie-list-item {
    margin-left: 214px;
    transform: scale(1); /* がたつき対策 */
  }
  .slick-slide.is-active-next + .slick-slide + .slick-slide .movie-list-item {
    margin-left: 214px;
    transform: scale(1); /* がたつき対策 */
  }
  .slick-slide.slick-current + .slick-slide + .slick-slide + .slick-slide .movie-list-item {
    margin-left: 214px;
  }
  .slick-slide.is-active-prev + .slick-slide + .slick-slide + .slick-slide .movie-list-item,
  .slick-slide.is-active-next + .slick-slide + .slick-slide + .slick-slide .movie-list-item {
    margin-left: 214px;
  }
  .slick-slide.slick-current + .slick-slide + .slick-slide + .slick-slide + .slick-slide .movie-list-item {
    margin-left: -214px;
  }
  .slick-slide.is-active-prev + .slick-slide + .slick-slide + .slick-slide + .slick-slide .movie-list-item {
    margin-left: 214px;
  }
  .slick-slide.is-active-next + .slick-slide + .slick-slide + .slick-slide + .slick-slide .movie-list-item {
    margin-left: -214px;
  }

  .slide-pic {
    width: 296px;
  }
  .slick-slide .slide-pic {
    margin-left: -215px;
  }
  .slick-slide.slick-current .slide-pic {
    margin-left: 0;
  }
  .slick-slide.is-active-prev .slide-pic,
  .slick-slide.is-active-next .slide-pic {
    margin-left: 0;
  }
  .slick-slide.slick-current + .slick-slide .slide-pic {
    margin-left: 215px;
  }
  .slick-slide.is-active-prev + .slick-slide .slide-pic,
  .slick-slide.is-active-next + .slick-slide .slide-pic {
    margin-left: 215px;
  }
  .slick-slide.slick-current + .slick-slide + .slick-slide .slide-pic {
    margin-left: 215px;
  }
  .slick-slide.is-active-prev + .slick-slide + .slick-slide .slide-pic ,
  .slick-slide.is-active-next + .slick-slide + .slick-slide .slide-pic {
    margin-left: 215px;
  }
  .slick-slide.slick-current + .slick-slide + .slick-slide + .slick-slide .slide-pic {
    margin-left: 215px;
  }     
  .slick-slide.is-active-prev + .slick-slide + .slick-slide + .slick-slide .slide-pic,
  .slick-slide.is-active-next + .slick-slide + .slick-slide + .slick-slide .slide-pic {
    margin-left: 215px;
  } 
  
  /* タイトル */
  .slide-copy,
  .slide-name,
  .movie-list-item-title {
    visibility: hidden;
    opacity: 0;
    transition: opacity 1s;
  }
  #movie-list .slide-copy,
  #movie-list .slide-name,
  #movie-list .movie-list-item-title {
    transform: scale(0.667);
    padding-top: 0;
  }
  #slide .slide-copy,
  #slide .slide-name,
  #slide .movie-list-item-title {
    transform: scale(0.75);
    transform: scale(0.8);
  }
  #slide .slick-current .slide-copy,
  #slide .is-active-next .slide-copy,
  #slide .slick-current .slide-name,
  #slide .is-active-next .slide-name,
  #movie-list .slick-current .movie-list-item-title,
  #movie-list .is-active-next .movie-list-item-title {
    visibility: visible;
    opacity: 1;
  }
  .slide-copy {
    white-space: nowrap;
    width: 300%;
    margin-left: -100%;
    text-indent: 0.5em;
  }
  .slide-name {
    white-space: nowrap;
    width: 300%;
    margin-left: -100%;
  }
  .movie-list-item-title {
    white-space: nowrap;
    width: 300%;
    margin-left: -100%;
  }
  
  /* 矢印 */
  .slick-prev,
  .slick-next {
    right: 0;
    left: 0;
    margin: auto;
    z-index: 1;
    top: 60px !important;
    width: 0 !important;
    height: 0 !important;
  }
  .slick-prev::before,
  .slick-next::before {
    content: "" !important;
  }
}

@media screen and (min-width: 1200px) {
  .slick-slide.is-active-next + .slick-slide + .slick-slide + .slick-slide .slide-pic {
    transform: scale(0.75); /* がたつき対策 */
  }
  .slick-slide.slick-current + .slick-slide + .slick-slide + .slick-slide + .slick-slide .slide-pic {
    margin-left: 185px;
  }     
  .slick-slide.is-active-prev + .slick-slide + .slick-slide + .slick-slide + .slick-slide .slide-pic,
  .slick-slide.is-active-next + .slick-slide + .slick-slide + .slick-slide + .slick-slide .slide-pic {
    margin-left: 185px;
  }
}

@media screen and (min-width: 1366px) {
  #movie-list .slick-prev,
  #movie-list .slick-next {
    top: 135px !important;
  }
  #slide .slick-prev,
  #slide .slick-next {
    top: 165px !important;
  }
  .slick-prev::before,
  .slick-next::before {
    content: none !important;
    opacity: 1 !important;
    z-index: 100;
  }
  .slick-prev::before,
  .slick-next::before {
    width: 61px;
    height: 110px;
    display: inline-block;
  }
  #movie-list .slick-prev::before {
    margin-left: -1300px;
  }
  #movie-list .slick-next::before {
    margin-left: 640px;
  }
  #slide .slick-prev::before {
    margin-left: -1300px;
  }
  #slide .slick-next::before {
    margin-left: 640px;
  }
  .slick-prev::before {
    content: "" !important;
    width: 18px;
    height: 36px;
    background: url(../images/arrow_l.svg) no-repeat;
    background-size: contain;
  }
  .slick-next::before {
    content: "" !important;
    width: 18px;
    height: 36px;
    background: url(../images/arrow_r.svg) no-repeat;
    background-size: contain;
  }
}

/* 動画3本対応 */
@media screen and (min-width: 1024px) {
    /*
    #movie-list .slick-dots {
        display: flex;
        justify-content: center;
    }
    #movie-list .slick-dots li:nth-of-type(1) {
        order: 2;
    }
    #movie-list .slick-dots li:nth-of-type(2) {
        order: 3;
    }
    #movie-list .slick-dots li:nth-of-type(3) {
        order: 4;
    }
    #movie-list .slick-dots li:nth-of-type(4) {
        order: 5;
    }
    #movie-list .slick-dots li:nth-of-type(5) {
        order: 6;
    }
    #movie-list .slick-dots li:nth-of-type(6) {
        order: 1;
    }
    */
    #movie-list .slick-dots li:nth-of-type(3),
    #movie-list .slick-dots li:nth-of-type(4),
    #movie-list .slick-dots li:nth-of-type(5) {
        display: none;
    }
}

.top_movie {
	position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100svh;
	z-index: 10;
	background-color: rgba(52, 58, 65, 0.600000);
    backdrop-filter: blur(15px);
	opacity: 0;
	transition: 1s;
}
.top_movie {
	opacity: 1;
}
.top_movie .video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.top_movie #skipButton {
	position: fixed;
	right: 50px;
	bottom: 30px;
	width: 95px;
	height: 39px; 
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("../images/home/skip.png");
    color: #000;
	background-color: hsla(0,0%,0%,0.00);
	cursor: pointer;
	border: none;
}
.top_movie #muteButton {
	position: fixed;
    right: 70px;
    bottom: 91px;
	width: 45px;
	height: 28px; 
	background-image: url("../images/home/vo-off.png");
    color: #000;
	background-color: hsla(0,0%,0%,0.00);
	cursor: pointer;
	border: none;	
}
.top_movie #muteButton.unmuted {
	background-image: url("../images/home/vo-on.png");
}
#canvas {
	position: absolute;
	width: 100%;
	height: 85%;
    bottom: -45%;
}
#loading {
	width: 100%;
	height: 100svh;
	position: fixed;
	z-index: 1000;
	display: flex!important;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap:20px;
	top: 0;
	background-color: #fff;
	opacity: 1;
	transition: 1s;
}
#loading.hidden {
    opacity: 0; 
	visibility: hidden;
	transition: 1s;
}
.loading {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  gap:4px;
  flex-wrap: wrap;
  justify-content: center
}
.loading span {
	animation-name: loading;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    display: block;
	width: 20px;
    height: 20px;
}
.loading span:first-child {
 	animation-delay: 0s;
    background-color: #3BAED4;
}
.loading span:nth-child(2) {
 	animation-delay: 1.25s;
    background-color: #2BAB66;
}
.loading span:nth-child(3) {
	background-color: #EAAC39;
 	animation-delay: 1.5s;
}
.loading span:nth-child(4) {
	background-color: #DB4D48;
 	animation-delay: 1.75s;
}

.movie_img {
	position: fixed;
	width: 100%;
	height: 100svh;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 5000;
	background-color: #fff;
	opacity: 0;
	visibility: hidden;
	transition: 1s;
}
.movie_img.active {
	opacity: 1;
	visibility: visible;
	transition: 1s;
}
.loading-logo {
    overflow: hidden;
    position: absolute;
    z-index: 1;
	left: 50%;
	top: 50%;
	transform: translateX(-50%)translateY(-50%);

}
.loading-logo img  {
	transition: 1s;
	opacity: 0;
	width: 200px;
	transform: translateY(10px)
}
.loading-logo.active img{
	transform: translateY(0);
	transition: 3s;
	opacity: 1;
}
@keyframes loading {
    0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
#video-logo {
	position: absolute;
	left: 3%;
	top:3%;
	width: 100px;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}
#video-logo.active {
	opacity: 1;
	visibility: visible;
}
.top__report video, .top__introduction  video {
	width: 100%;
}
.commemoration_text {
	text-align: center;
    font-size: 24px;
    font-weight: 800;
    line-height: 2;
	color: #000;
}
.commemoration_text p {
	margin: 2rem 0;
	opacity: 0;
	transition: opacity 0.5s;
	transform: translateX(-10px)
}
.commemoration_text p.visible {
	opacity: 1;
	transform: translateX(0px)
}
.commemoration_text span {
    font-weight: 500;
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
	color: #333;
	display: block;
}
@media screen and (max-width:800px) {
#hero {
	width: 100%;
}
.hero-img {
	margin: 0 auto;
	width: 90%;
	gap: 4rem;
}
#loading img {
	width: 300px;
}
.top_movie .video {
	object-fit: contain;
}
.top_movie #skipButton {
	bottom: 5%;
}
.top_movie #muteButton {
	bottom: 15%;
}
.commemoration_text  {
	font-size: 18px;
}
#video-logo {
	width: 50px;
	top: 39%;
}
} 
.ceremony_movie {
  width: 90%;
  max-width: 1080px;
  margin: 5em auto 0;
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
}
.ceremony_movie .youtube {
  width: 32%;
}
.ceremony_movie .youtube .movie_box {
  position: relative;
  width: 100%;
  margin-bottom: 5px;
}
.ceremony_movie .youtube .movie_box::before {
  content: "";
  display: block;
  padding-top: calc((9 / 16) * 100%);
}
.ceremony_movie .youtube .movie_box iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width:890px) {
  .ceremony_movie .youtube {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
  }
}