@charset "UTF-8";
html {
  font-size: 100%; /* ここをjQueryで書き換えます。 */
}

body {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 500;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  color: #231815;
  font-size: 1rem; /* remで指定（1rem = 16px） */
  line-height: 1;
}

.animation {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.displaynone {
  display: none !important;
}

body.nonscroll {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

img {
  vertical-align: bottom;
}

img.pc {
  display: block !important;
}
@media screen and (max-width: 768px) {
  img.pc {
    display: none !important;
  }
}

img.sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  img.sp {
    display: block !important;
  }
}

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

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

.text-center {
  text-align: center !important;
  width: 100%;
}

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

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

.f_order1 {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}

.f_order2 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}

.f_order3 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 3;
  -webkit-order: 3;
  order: 3;
}

.f_order4 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 4;
  -webkit-order: 4;
  order: 4;
}

.mg_regular {
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .mg_regular {
    margin-bottom: 5vw;
  }
}

.mg_20 {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .mg_20 {
    margin-bottom: 1vw;
  }
}

.ocsize {
  width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .ocsize {
    width: 100%;
  }
}

.icsize {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .icsize {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  .icsize .icsize {
    width: 100%;
  }
}

.separate {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.separate .right {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
@media screen and (max-width: 768px) {
  .separate .right {
    margin-bottom: 5vw;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}
.separate .left {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
@media screen and (max-width: 768px) {
  .separate .left {
    margin-bottom: 5vw;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}
.separate.reverse .right {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
@media screen and (max-width: 768px) {
  .separate.reverse .right {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
}
.separate.reverse .left {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
@media screen and (max-width: 768px) {
  .separate.reverse .left {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}

.fadein {
  opacity: 0;
  transition: 1s;
}

.fadein.lazyloaded {
  opacity: 1;
}

.fadein-up {
  opacity: 0;
  transform: translate(0, 20%);
  transition-timing-function: ease-out;
  transition: transform 2s;
  transition-duration: 2s;
}

.fadein-up.lazyloaded {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein-down {
  opacity: 0;
  transform: translate(0, -50%);
  transition-timing-function: ease-out;
  transition: transform 2s;
  transition-duration: 2s;
}

.fadein-down.lazyloaded {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein-left {
  opacity: 0;
  transform: translate(-10%, 0%);
  transition-timing-function: ease-out;
  transition: transform 2s;
  transition-duration: 2s;
}

.fadein-left.lazyloaded {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein-right {
  opacity: 0;
  transform: translate(10%, 0%);
  transition-timing-function: ease-out;
  transition: transform 2s;
  transition-duration: 2s;
}

.fadein-right.lazyloaded {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein-split {
  display: inline-flex;
  overflow: visible;
}
.fadein-split span {
  display: block;
  transform: translate(0, 20%);
  transition-timing-function: ease-out;
  transition: transform 1s;
}

.fadein-split.lazyloaded span {
  opacity: 1;
  transform: translate(0, 0);
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, input, main {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  font-style: normal;
  color: #F500A2;
}

body {
  position: relative;
}

header {
  width: 100%;
  background-color: #fff;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  header {
    padding: 0.8rem 0 1rem 0;
  }
}
header .inner {
  max-width: 1440px;
  width: 80%;
  padding: 15px;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 1440px) {
  header .inner {
    width: 80%;
    padding: 0px;
  }
}
header .inner h1 {
  width: 600px;
  height: 97px;
}
@media screen and (max-width: 1440px) {
  header .inner h1 {
    width: 40%;
    height: auto;
    aspect-ratio: 600/97;
  }
}
@media screen and (max-width: 480px) {
  header .inner h1 {
    width: 90%;
    margin: auto;
  }
}
header .inner h1 img {
  width: 100%;
}
header .inner p {
  font-weight: 700;
  font-size: 25px;
  letter-spacing: 5.5px;
  color: #666464;
}
@media screen and (max-width: 1440px) {
  header .inner p {
    font-size: 20px;
    font-size: 1.3888888889vw;
  }
}
@media screen and (max-width: 768px) {
  header .inner p {
    font-size: 16px;
    font-size: 2.0833333333vw;
    letter-spacing: 3.5px;
  }
}
@media screen and (max-width: 480px) {
  header .inner p {
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-size: 2.6041666667vw;
    margin-left: 3rem;
    letter-spacing: 2px;
  }
}

.concept .mainimg {
  position: relative;
  aspect-ratio: 192/81;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .concept .mainimg {
    height: auto;
  }
}
.concept .mainimg h2 {
  z-index: 1;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  height: 80%;
}
.concept .mainimg h2 img {
  display: block;
  height: 100%;
  width: auto;
  margin: auto;
}
.concept .mainimg img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  z-index: 0;
}
.concept .catchcopy {
  background-color: #1D78AA;
  padding: 100px 5%;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .concept .catchcopy {
    padding: 3rem 5%;
  }
}
@media screen and (max-width: 768px) {
  .concept .catchcopy {
    padding: 2rem 5%;
  }
}
.concept .catchcopy h3 {
  margin-bottom: 30px;
  line-height: 1.3em;
  font-size: min(10vw, 50px);
  white-space: nowrap;
}
@media screen and (max-width: 1440px) {
  .concept .catchcopy h3 {
    font-size: 40px;
    font-size: 2.7777777778vw;
  }
}
@media screen and (max-width: 768px) {
  .concept .catchcopy h3 {
    font-size: 40px;
    font-size: 5.2083333333vw;
    margin-bottom: 1rem;
  }
}
.concept .catchcopy h3 br {
  display: none;
}
@media screen and (max-width: 768px) {
  .concept .catchcopy h3 br {
    display: block;
  }
}
.concept .catchcopy p {
  font-size: min(10vw, 20px);
  line-height: 1.7em;
}
@media screen and (max-width: 1440px) {
  .concept .catchcopy p {
    font-size: 20px;
    font-size: 1.3888888889vw;
  }
}
@media screen and (max-width: 768px) {
  .concept .catchcopy p {
    text-align: left;
    font-size: 25px;
    font-size: 3.2552083333vw;
  }
}
.concept .catchcopy p br {
  display: block;
}
@media screen and (max-width: 768px) {
  .concept .catchcopy p br {
    display: none;
  }
}

.maincontents {
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}
.maincontents .separate {
  margin: 0 auto;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin: 5rem auto;
  position: relative;
}
.maincontents .separate::after {
  display: block;
  float: none;
  content: "";
}
@media screen and (max-width: 1440px) {
  .maincontents .separate {
    margin: 2rem auto 4rem auto;
  }
}
@media screen and (max-width: 768px) {
  .maincontents .separate {
    flex-wrap: wrap;
  }
}
.maincontents .separate .photo {
  min-width: 52vw;
  margin-bottom: 0px;
  position: relative;
  margin-left: calc(50% - 50vw);
  border-radius: 0 2.5rem 2.5rem 0;
  overflow: hidden;
  aspect-ratio: 1010/428;
}
@media screen and (max-width: 768px) {
  .maincontents .separate .photo {
    width: 90%;
    margin: auto auto 1rem auto;
    height: auto;
    border-radius: 10px;
  }
}
.maincontents .separate .photo .bg {
  width: 100%;
  height: 100%;
  background-color: #FFC400;
  background-size: cover;
}
.maincontents .separate .photo .bg.Film {
  background-image: url(../../images/bg_film.jpg);
  background-position: left center;
}
@media screen and (max-width: 768px) {
  .maincontents .separate .photo .bg.Film {
    background-position: center center;
    background-size: cover;
  }
}
.maincontents .separate .photo .bg.Package {
  background-image: url(../../images/bg_package.jpg);
  background-position: right center;
}
@media screen and (max-width: 768px) {
  .maincontents .separate .photo .bg.Package {
    background-position: center center;
    background-size: cover;
  }
}
.maincontents .separate .photo .bg.Label {
  background-image: url(../../images/bg_label.jpg);
  background-position: center;
  background-position: left center;
}
@media screen and (max-width: 768px) {
  .maincontents .separate .photo .bg.Label {
    background-position: center center;
    background-size: cover;
  }
}
.maincontents .separate .photo .bg.Others {
  background-image: url(../../images/bg_others.jpg);
  background-position: right center;
}
@media screen and (max-width: 768px) {
  .maincontents .separate .photo .bg.Others {
    background-position: center center;
    background-size: cover;
  }
}
.maincontents .separate .text {
  width: 48vw;
  padding-left: 3%;
  margin-left: 0;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .maincontents .separate .text {
    width: 90%;
    padding-left: 0;
    margin: auto;
  }
}
.maincontents .separate .text h3 {
  font-size: min(10vw, 120px);
  color: #d8deea;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .maincontents .separate .text h3 {
    font-size: 90px;
    font-size: 7.5vw;
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .maincontents .separate .text h3 {
    font-size: 50px;
    font-size: 10.4166666667vw;
    margin-bottom: 0.5rem;
  }
}
.maincontents .separate .text h3::first-letter {
  color: #1D78AA;
}
.maincontents .separate .text h3 span:nth-of-type(1) {
  color: #1D78AA;
}
.maincontents .separate .text h4 {
  font-size: min(3vw, 40px);
  color: #1D78AA;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .maincontents .separate .text h4 {
    font-size: 30px;
    font-size: 6.25vw;
    margin-bottom: 0.5rem;
  }
}
.maincontents .separate .text p {
  font-size: 21px;
  line-height: 1.6em;
  font-size: min(1.5vw, 18px);
}
@media screen and (max-width: 768px) {
  .maincontents .separate .text p {
    font-size: 16px;
    font-size: 3.3333333333vw;
    font-feature-settings: "palt";
  }
}
@media screen and (max-width: 768px) {
  .maincontents .separate .text p br {
    display: none;
  }
}
.maincontents .separate.reverse {
  flex-direction: row-reverse;
  justify-content: end;
}
.maincontents .separate.reverse .photo {
  margin-right: calc(50% - 50vw);
  margin-left: 0;
  border-radius: 2.5rem 0px 0px 2.5rem;
  overflow: hidden;
  aspect-ratio: 1010/428;
}
@media screen and (max-width: 768px) {
  .maincontents .separate.reverse .photo {
    width: 90%;
    margin: auto auto 1rem auto;
    height: auto;
    border-radius: 10px;
  }
}
.maincontents .separate.reverse .text {
  width: 48vw;
  max-width: 480px;
  padding-right: 3%;
  box-sizing: content-box;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .maincontents .separate.reverse .text {
    width: 90%;
    padding-left: 0;
    margin: auto;
    padding-right: 0;
    box-sizing: border-box;
    max-width: fit-content;
  }
}
footer {
  background-color: #1D78AA;
  padding: 100px 5%;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  footer {
    padding: 3rem 5%;
  }
}
@media screen and (max-width: 768px) {
  footer {
    padding: 2rem 5%;
  }
}
footer .contents {
  width: 90%;
  width: 1440px;
  max-width: 1440px;
  max-width: 90%;
  margin: auto auto auto auto;
}
@media screen and (max-width: 1440px) {
  footer .contents {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  footer .contents {
    width: auto;
    max-width: 100%;
  }
}
footer .contents > h3 {
  font-size: 27px;
  color: #fff;
  text-align: left;
  margin-bottom: 60px;
}
@media screen and (max-width: 1440px) {
  footer .contents > h3 {
    font-size: 27px;
    font-size: 2.25vw;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  footer .contents > h3 {
    font-size: 24px;
    font-size: 3.125vw;
  }
}
@media screen and (max-width: 480px) {
  footer .contents > h3 {
    font-size: 24px;
    font-size: 5vw;
  }
}
footer .contents > h3::before {
  display: inline-block;
  content: "Company Profile";
  font-size: 81px;
  margin-right: 15px;
  font-family: ligurino, sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 1440px) {
  footer .contents > h3::before {
    font-size: 40px;
    font-size: 3.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  footer .contents > h3::before {
    font-size: 40px;
    font-size: 5.2083333333vw;
    margin-right: 5px;
  }
}
@media screen and (max-width: 480px) {
  footer .contents > h3::before {
    font-size: 35px;
    font-size: 7.2916666667vw;
  }
}
footer .separate {
  margin: 0 auto 100px auto;
}
@media screen and (max-width: 768px) {
  footer .separate {
    flex-direction: row-reverse;
    flex-direction: column-reverse;
    margin: 0 auto 2rem auto;
  }
}
footer dl.overview {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: calc(100% - 475px);
}
@media screen and (max-width: 1440px) {
  footer dl.overview {
    width: calc(60% - 20px);
  }
}
@media screen and (max-width: 768px) {
  footer dl.overview {
    width: 100%;
  }
}
footer dl.overview dt, footer dl.overview dd {
  font-size: min(4vw, 17px);
  color: #fff;
  padding: 5px 0;
  line-height: 1.4em;
}
@media screen and (max-width: 768px) {
  footer dl.overview dt, footer dl.overview dd {
    font-size: 18px;
    font-size: 3.75vw;
  }
}
footer dl.overview dt {
  width: 5em;
}
@media screen and (max-width: 768px) {
  footer dl.overview dt {
    width: 100%;
    padding: 5px 0 0px 0;
  }
}
footer dl.overview dt span {
  display: inline-block;
  width: 100%;
  text-align-last: justify;
}
@media screen and (max-width: 768px) {
  footer dl.overview dt span {
    text-align-last: auto;
    text-align: left;
  }
}
footer dl.overview dd {
  padding-left: 1.5em;
  width: calc(100% - 5em);
  text-align: left;
}
@media screen and (max-width: 768px) {
  footer dl.overview dd {
    font-size: 16px;
    font-size: 3.3333333333vw;
    width: 100%;
    padding: 0px 0 5px 0;
    font-weight: 400;
    border-bottom: 1px dashed #fff;
  }
}
footer figure {
  width: 445px;
}
@media screen and (max-width: 1440px) {
  footer figure {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  footer figure {
    width: 100%;
    margin-bottom: 10px;
  }
}
footer figure img {
  width: 100%;
  display: block;
}
footer .map iframe {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 123/43;
}
@media screen and (max-width: 768px) {
  footer .map iframe {
    height: auto;
    aspect-ratio: 1/1;
  }
}
footer .contact {
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  text-align: left;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  footer .contact {
    flex-wrap: wrap;
    align-items: flex-end;
    margin-top: 2.5rem;
    padding-top: 2rem;
  }
}
footer .contact .title, footer .contact .tel, footer .contact .fax {
  color: #fff;
}
@media screen and (max-width: 768px) {
  footer .contact .title, footer .contact .tel, footer .contact .fax {
    margin-bottom: 1rem;
  }
}
footer .contact .title h3, footer .contact .tel h3, footer .contact .fax h3 {
  font-size: min(4vw, 45px);
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  footer .contact .title h3, footer .contact .tel h3, footer .contact .fax h3 {
    font-size: 30px;
    font-size: 6.25vw;
    margin-bottom: 0.2rem;
    width: 100%;
  }
}
footer .contact .title p, footer .contact .tel p, footer .contact .fax p {
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0;
}
footer .contact .title {
  padding-right: 3rem;
}
@media screen and (max-width: 768px) {
  footer .contact .title {
    display: block;
    justify-content: baseline;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 768px) {
  footer .contact .title h3 {
    display: inline-block;
  }
}
@media screen and (max-width: 768px) {
  footer .contact .title p {
    display: inline-block;
    margin-bottom: 0;
    font-size: 15px;
    font-size: 3.125vw;
  }
}
footer .contact .tel {
  padding-right: 0.5rem;
}
footer .contact .title h3, footer .contact .tel h3, footer .contact .fax h3 {
  white-space: nowrap;
}
footer .contact .title h3 img, footer .contact .tel h3 img, footer .contact .fax h3 img {
  height: 55px;
  width: auto;
}
@media screen and (max-width: 1440px) {
  footer .contact .title h3, footer .contact .tel h3, footer .contact .fax h3 {
    font-size: 45px;
    font-size: 3.125vw;
  }
}
@media screen and (max-width: 768px) {
  footer .contact .title h3, footer .contact .tel h3, footer .contact .fax h3 {
    font-size: 40px;
    font-size: 8.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  footer .contact .title p, footer .contact .tel p, footer .contact .fax p {
    font-size: 14px;
    font-size: 2.9166666667vw;
  }
}
@media screen and (max-width: 768px) {
  footer .contact .tel h3, footer .contact .fax h3 {
    font-size: 26px;
    font-size: 5.4166666667vw;
  }
}
