@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300;400;500;600;700;800;900&family=Varela+Round&display=swap");
@import url("https://fonts.googleapis.com/earlyaccess/notosansjp.css");
* {
  font-family: sans-serif;
  text-transform: uppercase;
  scroll-behavior: smooth;
}

a {
  cursor: pointer !important;
}

/*---------------------------
  関数
---------------------------*/
#slider {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

/*
スライダー矢印（共通）
*/
#slider .prev,
#slider .next {
  width: 40px;
  height: 40px;
  background-color: #fff;
  cursor: pointer;
  opacity: 0.7;
  position: absolute;
  top: 45%;
  transition: 0.5s;
  z-index: 10;
}

#slider .prev:hover,
#slider .next:hover {
  opacity: 0.5;
}

#slider .prev::before,
#slider .prev::after,
#slider .next::before,
#slider .next::after {
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  background-color: #000;
  position: absolute;
}

/*
スライダー左矢印
*/
#slider .prev {
  left: 0;
}

#slider .prev::before,
#slider .prev::after {
  left: 12px;
}

#slider .prev:before {
  top: 37%;
  transform: rotate(-45deg);
}

#slider .prev:after {
  bottom: 37%;
  transform: rotate(45deg);
}

/*
スライダー右矢印
*/
#slider .next {
  right: 0;
}

#slider .next::before,
#slider .next::after {
  right: 12px;
}

#slider .next:before {
  top: 37%;
  transform: rotate(45deg);
}

#slider .next:after {
  bottom: 37%;
  transform: rotate(-45deg);
}

.slick-slide img {
  width: 100%;
}

/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 900px) {
  #slider .prev,
  #slider .next {
    top: 40%;
  }
}
html, body {
  overscroll-behavior: none;
}
html.disabled, body.disabled {
  overflow: hidden;
}

.l-header {
  padding: 0 1.0416666667vw;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: transparent;
  z-index: 10;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1000px) {
  .l-header {
    background-color: rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    padding: 0 20px;
  }
  .l-header .hamburger {
    font-size: 30px;
    color: white;
  }
}
.l-header.white {
  background-color: white;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1000px) {
  .l-header.white {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.l-header.white a {
  color: black;
}
.l-header.fixed {
  background-color: white;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1000px) {
  .l-header.fixed {
    background-color: black;
  }
}
.l-header.fixed a {
  color: black;
}
.l-header__logo {
  max-width: 400px;
  width: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  text-decoration: none;
}
@media screen and (max-width: 1000px) {
  .l-header__logo {
    height: auto;
  }
}
.l-header__logo img {
  width: 5.2083333333vw;
  height: auto;
  margin-right: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
@media screen and (max-width: 1000px) {
  .l-header__logo img {
    width: 15vw;
  }
}
.l-header__logo p {
  font-size: 14px;
  font-weight: bold;
  height: 100%;
  line-height: 1.5;
}
.l-header__info {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 2.6041666667vw;
       column-gap: 2.6041666667vw;
}
@media screen and (max-width: 1000px) {
  .l-header__info {
    display: none;
  }
}
.l-header__info a {
  font-size: 1.25vw;
  line-height: 1;
  color: white;
}
.l-header__sp {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  background-color: white;
  transition: all 0.5s ease;
  z-index: 9;
}
@media screen and (max-width: 1000px) {
  .l-header__sp {
    padding: 50px 30px;
  }
  .l-header__sp.active {
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
  }
  .l-header__sp h2 {
    margin-bottom: 50px;
    width: 100%;
    text-align: center;
    color: white;
    background-color: black;
    padding: 10px 0;
  }
  .l-header__sp h2 img {
    width: 32.5vw;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .l-header__sp--list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid black;
  }
  .l-header__sp--list li a {
    color: black;
  }
  .l-header__sp--list li a span {
    display: block;
    color: black;
  }
  .l-header__sp--list li a span:first-child {
    font-size: 16px;
    font-weight: bold;
  }
  .l-header__sp--list li .small {
    margin-top: 15px;
    display: block;
  }
}
.l-section {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 31.5104166667vw;
  position: relative;
  background-size: contain;
  background-position: top;
}
.l-section::after {
  content: "";
  display: block;
  background-image: url(./assets/img/top/photo_banner.png);
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 31.5104166667vw;
  background-size: cover;
}
@media screen and (max-width: 1000px) {
  .l-section::after {
    height: 100vh;
    margin-top: 0px;
    background-image: url(./assets/img/top/photo_img.png) !important;
    background-size: cover;
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@media screen and (max-width: 1000px) {
  .l-section {
    height: 100vh;
    margin-top: 0px;
  }
}
.l-section .sp--scroll {
  display: none;
  position: absolute;
  bottom: 100px;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .l-section .sp--scroll {
    color: white;
    font-size: 16px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
    font-weight: bold;
  }
  .l-section .sp--scroll div {
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    position: relative;
  }
  .l-section .sp--scroll div::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    border-right: 2px solid black;
    border-bottom: 2px solid black;
    transform: rotate(45deg);
    right: 18px;
    top: 14px;
  }
}
.l-section.service::after {
  background-image: url(./assets/img/business/services_banner.png) !important;
}
@media screen and (max-width: 1000px) {
  .l-section.service::after {
    background-image: url(./assets/img/business/services_img.png) !important;
  }
}
.l-section.contact::after {
  background-image: url(./assets/img/contact/contact_banner.png) !important;
}
@media screen and (max-width: 1000px) {
  .l-section.contact::after {
    background-image: url(./assets/img/contact/contact_img.png) !important;
  }
}
.l-section.company::after {
  background-image: url(./assets/img/company/company_banner.png) !important;
}
@media screen and (max-width: 1000px) {
  .l-section.company::after {
    background-image: url(./assets/img/company/company_img.png) !important;
  }
}
.l-section h2 {
  font-size: 1.5625vw;
  position: absolute;
  width: 100%;
  left: 0;
  top: 45%;
  right: auto;
  text-align: center;
  color: white;
  letter-spacing: 10px;
  line-height: 2;
  font-weight: bold;
  font-family: "小塚ゴシック Pro", "Kozuka Gothic Pro", sans-serif;
  text-shadow: 1px 1px 10px black;
}
@media screen and (max-width: 1000px) {
  .l-section h2 {
    font-size: 20px;
  }
}
.l-section h2 p {
  text-transform: none;
}
.l-section h2 p:first-child {
  font-size: 1.25vw;
}
@media screen and (max-width: 1000px) {
  .l-section h2 p:first-child {
    font-size: 20px;
  }
}
.l-section__gallery {
  max-width: 1000px;
  margin: auto;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery {
    margin-top: 50px;
    padding: 0 20px;
  }
}
.l-section__gallery.last {
  margin-top: 150px;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery.last {
    margin-top: 10.4166666667vw;
  }
}
.l-section__gallery__title {
  font-size: 22px;
  font-weight: bold;
  border-left: 5px solid #E94709;
  padding-left: 5px;
  padding: 10px 0 10px 10px;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__title {
    font-size: 18px;
  }
}
.l-section__gallery__title--sub {
  font-size: 16px;
  letter-spacing: 1.5px;
  margin-top: 30px;
  line-height: 160%;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__title--sub {
    font-size: 14px;
  }
}
.l-section__gallery__whats {
  margin: auto;
  max-width: 85%;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__whats {
    max-width: none;
    width: 95%;
  }
}
.l-section__gallery__whats ul {
  line-height: 1.8;
  margin-top: 30px;
}
.l-section__gallery__whats ul li {
  font-size: 16px;
  display: flex;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__whats ul li {
    font-size: 14px;
  }
}
.l-section__gallery__whats ul li .orange {
  color: #E94709;
}
.l-section__gallery__whats ul li::before {
  content: "○";
  margin-right: 5px;
}
.l-section__gallery__whats ul li .sp--only {
  display: none;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__whats ul li .sp--only {
    display: block;
  }
}
.l-section__gallery__whats ul li .pc--only {
  display: block;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__whats ul li .pc--only {
    display: none;
  }
}
.l-section__gallery__whats--imgs {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__whats--imgs {
    flex-direction: column;
    row-gap: 30px;
  }
}
.l-section__gallery__whats--imgs img {
  width: 49%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__whats--imgs img {
    width: 100%;
  }
}
.l-section__gallery__inner {
  margin-top: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 5px;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__inner {
    margin-top: 25px;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .l-section__gallery__inner img {
    width: 100%;
  }
}
.l-section__gallery__two {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  margin-top: 20px;
  max-width: 85%;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__two {
    flex-direction: column;
    row-gap: 30px;
    margin-top: 40px;
    max-width: none;
  }
}
.l-section__gallery__two--left {
  width: 40%;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__two--left {
    width: 100%;
  }
}
.l-section__gallery__two--left img {
  max-width: 120px;
}
.l-section__gallery__two--right {
  width: 60%;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__two--right {
    width: 100%;
    text-align: center;
  }
}
.l-section__gallery__two--right p {
  font-size: 19px;
  margin-bottom: 30px;
}
.l-section__gallery__two--right span {
  font-size: 14px;
  line-height: 1.8;
}
.l-section__gallery__two--right span .pc--only {
  display: block;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__two--right span .pc--only {
    display: none;
  }
}
.l-section__gallery__two--right span .sp--only {
  display: none;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__two--right span .sp--only {
    display: block;
  }
}
.l-section__gallery__table {
  text-align: center;
  margin-top: 50px;
}
.l-section__gallery__table--title {
  text-align: center;
}
.l-section__gallery__table--title img {
  max-width: 120px;
}
.l-section__gallery__table table {
  max-width: 550px;
  margin: auto;
  margin-top: 50px;
}
.l-section__gallery__table table tr {
  border-bottom: 1px solid black;
  height: 50px;
  line-height: 50px;
  font-size: 14px;
}
.l-section__gallery__table table th {
  width: 15%;
  text-align: right;
  margin-right: 60px;
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__table table th {
    text-align: left;
  }
}
.l-section__gallery__table table td {
  text-align: left;
  padding-left: 10%;
  padding-top: 15px;
  padding-bottom: 15px;
  white-space: nowrap;
  line-height: 1.8;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__table table td {
    white-space: normal;
  }
}
.l-section__gallery__access {
  display: flex;
  max-width: 865px;
  margin: auto;
  justify-content: space-between;
  margin-top: 50px;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__access {
    flex-direction: column;
    row-gap: 30px;
  }
}
.l-section__gallery__access--item {
  width: 45%;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__access--item {
    width: 100%;
  }
}
.l-section__gallery__access--item p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 30px;
}
.l-section__gallery__access--item iframe {
  width: 100%;
  max-height: 255px;
}
.l-section__gallery__service {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__service .prev, .l-section__gallery__service .next {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    padding: 10px;
    background-color: white;
    z-index: 1;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .l-section__gallery__service .prev {
    left: -20px;
  }
  .l-section__gallery__service .prev::after {
    content: "◀︎";
    color: black;
  }
  .l-section__gallery__service .next {
    right: -20px;
  }
  .l-section__gallery__service .next::after {
    content: "▶︎";
    color: black;
  }
}
.l-section__gallery__service--item {
  width: 32%;
}
.l-section__gallery__service--item:last-child {
  margin-right: 0;
}
.l-section__gallery__service--item img {
  width: 100%;
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-section__gallery__service p {
  font-size: 16px;
  margin-bottom: 10px;
}
.l-section__gallery__service--two {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.l-section__gallery__service--two--left {
  width: 35%;
}
.l-section__gallery__service--two--left img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-section__gallery__service--two--right {
  width: 60%;
  font-size: 14px;
  line-height: 1.5;
}
.l-section__gallery__service--two--reverse {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-bottom: 30px;
}
.l-section__gallery__service--two--reverse--left {
  width: 35%;
}
.l-section__gallery__service--two--reverse--left img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-section__gallery__service--two--reverse--right {
  width: 60%;
  font-size: 14px;
  line-height: 1.5;
}
.l-section__gallery__works {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  margin-top: 30px;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__works {
    flex-wrap: wrap;
    row-gap: 20px;
  }
}
.l-section__gallery__works--item {
  width: 32%;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__works--item {
    width: 100%;
  }
}
.l-section__gallery__works--item.wide {
  width: 100%;
}
.l-section__gallery__works--item img {
  width: 100%;
}
.l-section__gallery__works--item p {
  border-bottom: 1px solid #ccc;
  padding: 10px 5px;
}
.l-section__gallery__works--item .flex {
  display: flex;
  justify-content: left;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-size: 14px;
}
.l-section__gallery__works--item .image {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-section__gallery__works--item .image img {
  width: 100%;
  padding: 20px;
}
.l-section__gallery__works--item .image.separate {
  flex-direction: column;
}
.l-section__gallery__works--item .image.separate img {
  padding-bottom: 0;
}
.l-section__gallery__works--item .image.separate img:last-child {
  padding-bottom: 20px;
}
.l-section__gallery__works--item .image.flex {
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 10px;
  flex-wrap: wrap;
}
.l-section__gallery__works--item .image.flex img {
  width: calc((100% - 20px) / 3);
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__works--item .image.flex img {
    width: 100%;
  }
}
.l-section__gallery__works--item .image.flex--second {
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 10px;
  flex-wrap: wrap;
}
.l-section__gallery__works--item .image.flex--second img {
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__works--item .image.flex--second img {
    width: 100%;
  }
}
.l-section__gallery__event--item {
  margin-top: 20px;
}
.l-section__gallery__event--item--title {
  font-size: 16px;
}
.l-section__gallery__event--item ul {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  margin-top: 15px;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__event--item ul {
    flex-wrap: wrap;
    row-gap: 20px;
  }
}
.l-section__gallery__event--item ul li {
  width: calc((100% - 30px) / 3);
  padding: 10px;
  margin-bottom: 15px;
  margin-right: 15px;
  border: 1px solid lightgray;
  border-radius: 5px;
  max-height: 550px;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__event--item ul li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
    max-height: none;
  }
}
.l-section__gallery__event--item ul li:nth-child(3n) {
  margin-right: 0;
}
.l-section__gallery__event--item ul li.wide {
  width: calc((100% - 30px) / 3 * 2);
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__event--item ul li.wide {
    width: 100%;
  }
}
.l-section__gallery__event--item ul li img {
  width: 100%;
  height: 30%;
  margin: 30px 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-section__gallery__event--item ul li .wide {
  height: 40% !important;
}
.l-section__gallery__event--item ul li .fit {
  height: 100% !important;
}
.l-section__gallery__event--item ul li .first {
  width: 65% !important;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__event--item ul li .first {
    width: 100% !important;
  }
}
.l-section__gallery__event--item ul li .second {
  width: 35% !important;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__event--item ul li .second {
    width: 100% !important;
  }
}
.l-section__gallery__event--item ul li .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
  -moz-column-gap: 10px;
       column-gap: 10px;
  height: 30%;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__event--item ul li .flex {
    flex-direction: column;
    row-gap: 10px;
    height: auto;
  }
}
.l-section__gallery__event--item ul li .flex.ex {
  margin: 70px 0;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__event--item ul li .flex.ex {
    margin: 20px 0 10px;
  }
}
.l-section__gallery__event--item ul li .flex__word {
  margin: 0;
  display: flex;
  justify-content: left;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__event--item ul li .flex__word {
    flex-direction: column-reverse;
    row-gap: 10px;
  }
}
.l-section__gallery__event--item ul li .flex__word p {
  width: 65%;
  font-size: 12px !important;
  font-weight: normal !important;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__event--item ul li .flex__word p {
    width: 100%;
  }
}
.l-section__gallery__event--item ul li .flex__word img {
  height: 100%;
  width: 35%;
  margin: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__event--item ul li .flex__word img {
    width: 100%;
  }
}
.l-section__gallery__event--item ul li .flex.column {
  flex-direction: column;
  height: auto;
  row-gap: 10px;
}
.l-section__gallery__event--item ul li .flex.column img:first-child {
  width: 50%;
}
.l-section__gallery__event--item ul li .flex.column img:last-child {
  width: 70%;
}
.l-section__gallery__event--item ul li .flex img {
  width: 48%;
  margin: 0;
}
.l-section__gallery__event--item ul li p {
  font-size: 12px;
  line-height: 1.5;
}
.l-section__gallery__event--item ul li p:first-child {
  font-size: 16px;
  font-weight: bold;
}
.l-section__gallery__event--item ul li span {
  font-size: 12px;
  white-space: nowrap;
  padding-left: 14px;
}
.l-section__gallery__event--item.single {
  width: 100%;
  padding: 10px;
  border: 1px solid lightgray;
  border-radius: 5px;
  max-height: 550px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__event--item.single {
    flex-direction: column;
    max-height: none;
  }
}
.l-section__gallery__event--item.single .left {
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__event--item.single .left {
    width: 100%;
  }
}
.l-section__gallery__event--item.single .left img {
  width: 80%;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__event--item.single .left img {
    width: 100%;
  }
}
.l-section__gallery__event--item.single .right {
  display: flex;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__event--item.single .right {
    width: 100%;
    align-items: flex-start;
  }
}
.l-section__gallery__event--item.single .right .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 15px;
}
.l-section__gallery__event--item.single .right .inner .link {
  color: cornflowerblue;
  font-size: 14px;
  text-decoration: underline;
  text-transform: lowercase;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__event--item.single .right .inner .link {
    line-height: 1.6;
    text-align: center;
  }
}
.l-section__gallery__youtube {
  width: 50%;
  height: 300px;
  margin: auto;
  margin-top: 100px;
  max-width: 600px;
}
.l-section__gallery__youtube iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-section__gallery__contact {
  width: 95%;
  margin: auto;
  margin-top: 30px;
}
.l-section__gallery__contact h5 {
  color: #E94709;
  font-size: 12px;
  margin-bottom: 10px;
}
.l-section__gallery__contact__inner {
  background-color: #EFEFEF;
  padding: 3.6% 8.5%;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__contact__inner {
    padding: 10px;
  }
}
.l-section__gallery__contact__inner--item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 30px;
  font-size: 14px;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__contact__inner--item {
    flex-direction: column;
    row-gap: 10px;
  }
}
.l-section__gallery__contact__inner--item--left {
  width: 30%;
  text-align: right;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__contact__inner--item--left {
    width: 100%;
    text-align: left;
  }
}
.l-section__gallery__contact__inner--item--left span {
  color: #E94709;
}
.l-section__gallery__contact__inner--item--right {
  width: 65%;
  text-align: left;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__contact__inner--item--right {
    width: 100%;
  }
}
.l-section__gallery__contact__inner--item--right.radio {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__contact__inner--item--right.radio {
    flex-direction: column;
    row-gap: 10px;
    align-items: flex-start;
  }
}
.l-section__gallery__contact__inner--item--right.radio input[type=radio] {
  margin-left: 10px;
  margin-right: 5px;
  width: 16px;
  height: 16px;
}
.l-section__gallery__contact__inner--item--right.radio input[type=radio]:first-child {
  margin-left: 0px;
}
.l-section__gallery__contact__inner--item--right input[type=text] {
  background-color: white;
  border: 1px solid #ccc;
  width: 90%;
  padding: 5px;
  text-transform: lowercase;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__contact__inner--item--right input[type=text] {
    width: 100%;
  }
}
.l-section__gallery__contact__inner--item--right label {
  display: flex;
  justify-content: left;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__contact__inner--item--right label {
    flex-direction: column;
    row-gap: 10px;
  }
}
.l-section__gallery__contact__inner--item--right label:first-child {
  margin-bottom: 10px;
  line-height: 1.5;
}
.l-section__gallery__contact__inner--item--right label input {
  background-color: white;
  border: 1px solid #ccc;
  width: 90%;
  padding: 5px;
  text-transform: lowercase;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__contact__inner--item--right label input {
    width: 100%;
  }
}
.l-section__gallery__contact__inner--item--right label p {
  width: 10%;
  white-space: nowrap;
  font-size: 12px;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__contact__inner--item--right label p {
    width: 100%;
  }
}
.l-section__gallery__contact__inner--item--right label textarea {
  background-color: white;
  border: 1px solid #ccc;
  width: 90%;
  padding: 5px;
  height: 110px;
  text-transform: lowercase;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__contact__inner--item--right label textarea {
    width: 100%;
  }
}
.l-section__gallery__rights {
  width: 95%;
  margin: auto;
  margin-top: 30px;
}
.l-section__gallery__rights p {
  font-size: 14px;
  margin-bottom: 30px;
  line-height: 1.8;
}
.l-section__gallery__rights--title {
  font-size: 16px;
  margin-bottom: 30px;
}
.l-section__gallery__rights--btn {
  margin-top: 50px;
}
.l-section__gallery__rights--btn label {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__rights--btn label {
    line-height: 1.6;
    align-items: baseline;
  }
}
.l-section__gallery__rights--btn label input[type=checkbox] {
  width: 15px;
  height: 15px;
  margin-right: 10px;
}
.l-section__gallery__rights--btn br {
  display: none;
}
@media screen and (max-width: 1000px) {
  .l-section__gallery__rights--btn br {
    display: block;
  }
}
.l-section__gallery__rights--submit {
  margin-top: 50px;
  text-align: center;
}
.l-section__gallery__rights--submit input[type=submit] {
  background-color: #E94709;
  padding: 30px 110px;
  color: white;
}
.l-section__gallery__rights--submit input[type=submit]:hover {
  opacity: 0.5;
}
.l-gallery {
  padding: 5.2083333333vw 0;
  max-width: 1600px;
  width: 83.3333333333%;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .l-gallery {
    width: 100%;
    box-sizing: border-box;
    padding: 25px;
  }
}
.l-gallery__paginate {
  display: flex;
  justify-content: right;
  align-items: center;
}
.l-gallery__paginate a {
  width: 30px;
  height: 30px;
  line-height: 28px;
  border: 1px solid black;
  font-size: 20px;
  margin-right: 10px;
  text-align: center;
}
.l-gallery__paginate a:last-child {
  margin-right: 0;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 10px;
}
.l-gallery__paginate a.active {
  border: 1px solid white;
  background-color: black;
  color: white;
}
.l-gallery__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 2.6041666667vw 0;
  row-gap: 30px;
}
@media screen and (max-width: 1000px) {
  .l-gallery__inner {
    justify-content: space-between;
    gap: 10px;
  }
}
.l-gallery__inner img {
  width: calc((100% - 90px) / 4);
  height: 18.2291666667vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1000px) {
  .l-gallery__inner img {
    width: 100px;
    height: 100px;
  }
}
.l-main {
  position: relative;
}
.l-main__mv {
  height: 100vh;
  position: relative;
}
.l-main__mv::after {
  content: "";
  display: block;
  background-image: url(./assets/img/top/amsa_1920×1080.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 1000px) {
  .l-main__mv::after {
    height: 100vh;
    margin-top: 0px;
    background-size: cover;
  }
}
.l-main__mv.company::after {
  background-image: url(./assets/img/top/amsa_img02.jpg);
}
.l-main__mv .sp--scroll {
  display: none;
  position: absolute;
  bottom: 100px;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .l-main__mv .sp--scroll {
    color: white;
    font-size: 16px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
    font-weight: bold;
  }
  .l-main__mv .sp--scroll div {
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    position: relative;
    bottom: auto;
  }
  .l-main__mv .sp--scroll div::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    border-right: 2px solid black;
    border-bottom: 2px solid black;
    transform: rotate(45deg);
    right: 18px;
    top: 14px;
  }
}
.l-main__mv__title, .l-main__mv div {
  font-size: 5.2083333333vw;
  position: absolute;
  width: 100%;
  right: auto;
  text-align: center;
  color: white;
  text-transform: lowercase;
}
.l-main__mv__title {
  left: 0;
  right: auto;
  top: 45%;
}
.l-main__mv__title img {
  width: 16.6145833333vw;
}
@media screen and (max-width: 1000px) {
  .l-main__mv__title img {
    width: 60%;
  }
}
.l-main__mv__title img.disabled {
  display: none;
}
.l-main__mv div {
  left: 0;
  right: auto;
  bottom: 3.5416666667vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}
.l-main__mv div p {
  font-size: 1.25vw;
  font-family: sans-serif;
  margin-bottom: 0.5208333333vw;
}
@media screen and (max-width: 1000px) {
  .l-main__mv div p {
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}
.l-main__mv div img {
  width: 2.6041666667vw;
  height: 2.6041666667vw;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1000px) {
  .l-main__mv div img {
    width: 10vw;
    height: 10vw;
  }
}
.l-main__service {
  background-color: white;
  padding: 5.2083333333vw 0;
}
@media screen and (max-width: 1000px) {
  .l-main__service {
    padding: 10vw 0;
  }
}
.l-main__service h2 {
  padding: 0 5.2083333333vw;
  text-transform: lowercase;
  font-size: 1.7708333333vw;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 3.125vw;
  font-family: "小塚ゴシック Pro", "Kozuka Gothic Pro", sans-serif;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .l-main__service h2 {
    font-size: 3.5vw;
    margin-bottom: 6vw;
  }
}
.l-main__service .flexBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .l-main__service .flexBox {
    flex-wrap: wrap;
  }
}
.l-main__service .flexBox .image {
  border: 0;
  display: inline-block;
  position: relative;
  width: 49%;
}
@media screen and (max-width: 1000px) {
  .l-main__service .flexBox .image {
    width: 95%;
    height: 40vh;
  }
}
.l-main__service .flexBox .image img {
  border-radius: 0 20px 20px 0;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .l-main__service .flexBox .image img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 1000px) {
  .l-main__service .flexBox .image:last-child {
    margin-right: 0;
    margin-left: auto;
    margin-top: 30px;
  }
}
.l-main__service .flexBox .image:last-child img {
  border-radius: 20px 0 0 20px;
}
.l-main__service .text p {
  font-size: 1.1979166667vw;
  line-height: 2;
}
.l-main__company {
  height: 100vh;
  padding: 5.2083333333vw 0;
}
@media screen and (max-width: 1000px) {
  .l-main__company {
    height: 50vh;
    padding: 10vw 0;
  }
}
.l-main__company h2 {
  font-size: 2.0833333333vw;
  font-weight: bold;
  color: white;
  margin-bottom: 2.34375vw;
  text-align: center;
  text-transform: initial;
  font-family: "小塚ゴシック Pro", "Kozuka Gothic Pro", sans-serif;
}
@media screen and (max-width: 1000px) {
  .l-main__company h2 {
    font-size: 3.5vw;
    line-height: 1.6;
  }
}
.l-main__company h2 .sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  .l-main__company h2 .sp {
    display: block;
  }
}
.l-main__company p {
  font-size: 1.25vw;
  text-align: center;
  color: white;
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  .l-main__company p {
    display: none;
  }
}
.l-main__company p .close {
  display: none;
}
@media screen and (max-width: 1000px) {
  .l-main__company p .close {
    display: block;
  }
}
@media screen and (max-width: 1000px) {
  .l-main__company .sp-text.spnone {
    display: none;
  }
  .l-main__company .sp-text.active {
    width: 90%;
    display: block;
    position: fixed;
    inset: 0;
    background-color: #EFEFEF;
    color: black;
    margin: auto;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    flex-direction: column;
    align-items: end;
    padding: 20px 20px 20px;
    padding-top: 10px;
    box-sizing: border-box;
    row-gap: 10px;
    text-align: justify;
    border-radius: 10px;
    text-align: center;
  }
  .l-main__company .sp-text span {
    display: block;
    float: right;
    line-height: 1;
    font-size: 28px;
  }
}
.l-main__company .btn--sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  .l-main__company .btn--sp {
    display: block;
    color: white;
    border: 2px solid white;
    padding: 5px 20px;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 2.8vw;
    margin: 0 auto;
    margin-top: 20px;
  }
}
.l-main__gallery {
  background-color: white;
  padding: 5.2083333333vw 0;
}
.l-main__gallery__inner {
  display: flex;
  justify-content: space-between;
  padding: 0 1.0416666667vw;
}
.l-main__gallery__inner img {
  width: 18.125vw;
  height: 12.5520833333vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1000px) {
  .l-main__gallery__inner img {
    width: 23%;
    height: 80px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 1000px) {
  .l-main__gallery__inner .lastImage {
    display: none;
  }
}
.l-main__gallery a {
  display: block;
  border: 1px solid black;
  width: 80%;
  max-width: 630px;
  margin: 0 auto;
  margin-top: 3.125vw;
  padding: 1.5625vw 0;
  text-align: center;
  font-size: 1.5104166667vw;
  transition: all 0.5s;
}
@media screen and (max-width: 1000px) {
  .l-main__gallery a {
    font-size: 2.8vw;
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px 40px;
  }
}
.l-main__gallery a:hover {
  border: 1px solid white;
  color: white;
  background-color: black;
  transition: all 0.5s;
}
.l-footer {
  background-color: #E6E6E6;
}
@media screen and (max-width: 1000px) {
  .l-footer.last {
    margin-top: 0;
  }
}
.l-footer__inner {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 15px;
  padding: 17px 0 82px;
}
@media screen and (max-width: 1000px) {
  .l-footer__inner {
    display: none;
  }
}
.l-footer__inner--item {
  width: auto;
  text-align: left;
}
.l-footer__inner--item p {
  margin-bottom: 10px;
}
.l-footer__inner--item a {
  text-decoration: none;
  color: black;
  font-size: 15px;
  display: block;
  margin-bottom: 10px;
}
.l-footer__inner--item a span {
  color: #898989;
  margin-right: 5px;
}
.l-footer__rights {
  text-align: center;
  font-size: 14px;
  color: white;
  background-color: black;
  padding: 20px 0;
}
@media screen and (max-width: 1000px) {
  .l-footer__rights {
    font-size: 10px;
  }
}

#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: -50px;
  bottom: 60px;
  background: black;
  opacity: 0.9;
  border-radius: 50%;
}
@media (max-width: 1000px) {
  #page_top {
    bottom: 20px;
  }
}

#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#page_top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f106";
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -2px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

.bg {
  display: none;
  background-color: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 9998 !important;
}

.modal-img {
  display: none;
  height: auto;
  width: 35%;
  height: auto;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999 !important;
}

@media screen and (max-width: 769px) {
  .modal-img {
    width: 70%;
  }
}
.loading {
  opacity: 0;
  transition: all 3s;
  transform: scale(0.95);
  visibility: hidden;
  position: relative;
  z-index: 10;
}
.loading.active {
  opacity: 1;
  transition: all 3s;
  transform: scale(1);
  visibility: visible;
}

.loading-bg {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #E94709;
  opacity: 1;
  transition: all 2s;
  visibility: visible;
}
.loading-bg.active {
  opacity: 0;
  transition: all 2s;
  visibility: hidden;
}

.openbtn1 {
  display: none;
}
@media screen and (max-width: 1000px) {
  .openbtn1 {
    display: block;
    position: fixed; /*ボタン内側の基点となるためrelativeを指定*/
    top: 0;
    right: 0;
    cursor: pointer;
    width: 30px;
    height: 30px;
    z-index: 9999;
    transition: all 0.5s;
  }
  .openbtn1 span {
    display: inline-block;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    right: 15px;
    height: 3px;
    border-radius: 0px;
    background-color: white;
    width: 100%;
    z-index: 120;
  }
  .openbtn1 span:nth-of-type(1) {
    top: 20px;
  }
  .openbtn1 span:nth-of-type(2) {
    top: 30px;
  }
  .openbtn1 span:nth-of-type(3) {
    top: 40px;
  }
  .openbtn1 p {
    position: absolute;
    font-size: 1.6vw;
    bottom: 1.3vw;
    left: 0;
    right: auto;
    width: 100%;
    text-align: center;
  }
  .openbtn1.active {
    right: -5px;
    transition: all 0.5s;
    z-index: 9999;
    background-color: transparent;
  }
  .openbtn1.active span {
    background-color: black;
  }
  .openbtn1.active span:nth-of-type(1) {
    top: 20px;
    right: 10px;
    transform: translateY(10px) rotate(-45deg);
    width: 40px;
  }
  .openbtn1.active span:nth-of-type(2) {
    opacity: 0; /*真ん中の線は透過*/
  }
  .openbtn1.active span:nth-of-type(3) {
    top: 20px;
    right: 10px;
    transform: translateY(10px) rotate(45deg);
    width: 40px;
  }
  .openbtn1.active p {
    display: none;
  }
}

#business--slider {
  display: none;
}
@media screen and (max-width: 1000px) {
  #business--slider {
    display: block;
  }
}
#business--slider--pc {
  display: flex;
}
@media screen and (max-width: 1000px) {
  #business--slider--pc {
    display: none;
  }
}

.bg-white {
  background-color: white;
  padding-top: 50px;
  padding-bottom: 50px;
}/*# sourceMappingURL=style.css.map */