@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@600&display=swap");
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}

a, address, article, aside, audio, b, big, blockquote, body, button, caption, center, cite, code, dd, details, div, dl, dt, em, fieldset, figcaption, figure, footer, form, form, h1, h2, h3, h4, h5, h6, header, i, iframe, img, input, label, li, main, mark, menu, nav, ol, p, pre, q, s, section, select, small, span, strong, summary, table, tbody, td, textarea, tfoot, th, thead, time, tr, u, ul, video {
  margin: 0;
  padding: 0;
  font-size: inherit;
  box-sizing: border-box;
}

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

audio, canvas, progress, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

ol,
ul {
  list-style: none;
}

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

img {
  max-width: 100%;
  vertical-align: bottom;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline-width: 0;
}

b,
strong {
  font-weight: inherit;
  font-weight: bolder;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
}

button,
input,
select {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

[type=reset],
[type=submit],
button,
html [type=button] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button:-moz-focusring,
input:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

blockquote,
q {
  quotes: none;
}

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

/*==================================================================================================
	サイト基礎
==================================================================================================*/
body {
  color: #000;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.066rem;
  position: relative;
  width: 100%;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.6rem;
  }
}
body a {
  transition: 0.5s;
  text-decoration: none;
  color: inherit;
}
body img {
  height: auto;
}
body .spShow {
  display: none;
}
@media screen and (max-width: 767px) {
  body .spShow {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  body .pcShow {
    display: none;
  }
}

.preload * {
  transition: none !important;
}

.col {
  display: flex;
}
@media screen and (max-width: 767px) {
  .col {
    flex-direction: column;
  }
  .col > * {
    width: 100% !important;
  }
}

/*==================================================================================================
	Header
==================================================================================================*/
header {
  background: url("../img/main-bg.jpg") no-repeat top -5vw center/cover;
  position: relative;
  color: #fff;
}
header::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 5vw;
  display: block;
  width: 100%;
  height: 10.3649vw;
  background: url("../img/main-mask.svg") no-repeat center bottom/cover;
  transform: translateX(-50%);
}
header .col {
  justify-content: space-between;
  align-items: center;
  padding: 1.6vw;
}
header .col p {
  width: 25.7291666667vw;
}
@media screen and (max-width: 767px) {
  header .col p {
    width: 56vw !important;
  }
}
header .col .btn {
  display: flex;
  justify-content: flex-end;
  gap: 0.5em;
}
@media screen and (max-width: 767px) {
  header .col .btn {
    position: fixed;
    bottom: 0;
    z-index: 999;
    flex-direction: column;
  }
  header .col .btn a {
    width: 100%;
    justify-content: center;
    border-radius: 40px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
  }
}
header .col .btn a.yellow {
  display: block;
  text-align: center;
  position: relative;
  padding-right: 3em;
}
header .col .btn a.yellow::after {
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}
header .col .btn a.yellow small {
  font-size: 1.2rem;
}
header .col .btn .movie-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1em 1.6em;
  background: #00bc7c;
  color: #001810;
  border-radius: 300px;
  font-size: clamp(14px, 2vw, 1.8rem);
  font-weight: bold;
  line-height: 1.2;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  header .col .btn .movie-btn {
    background: rgba(0, 188, 124, 0.85);
  }
}
header .col .btn .movie-btn a {
  background: #fff;
  color: #00bc7c;
  padding: 1em;
  margin-left: 0.8em;
  border-radius: 10px;
  font-size: 1.2rem;
  line-height: 1;
  white-space: nowrap;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  header .col .btn .movie-btn a {
    flex: 0.2;
    text-align: center;
  }
}
header .col .btn .movie-btn a:hover {
  opacity: 0.4;
}
header .main {
  position: relative;
  z-index: 2;
}
header h1 {
  padding: 2em 1em 5em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  header h1 {
    padding: 2em 1em 4em;
  }
}
header h4 {
  margin-bottom: 1em;
  text-align: center;
  font-family: "Josefin Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: clamp(20px, 3vw, 3.8rem);
  line-height: 1;
}
header h4::after {
  content: "";
  display: block;
  margin: 1em auto 0;
  width: 3em;
  height: 1px;
  background: #fff;
}
header p {
  text-align: center;
  font-size: clamp(16px, 3vw, 2.6rem);
  font-weight: bold;
}
header nav {
  width: 100%;
  margin: 1.6em auto 5em;
  padding: 0 6vw;
}
header nav ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  header nav ul {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
}
header nav li {
  width: 100%;
  aspect-ratio: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: 0.6s;
  cursor: pointer;
}
header nav li::before {
  content: "more";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "Josefin Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 2rem;
  color: #00bc7c;
  background: rgba(255, 255, 255, 0.8);
  text-indent: 0px;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.3s;
  z-index: 1;
}
header nav li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00bc7c;
  border-radius: 10px;
  mix-blend-mode: hard-light;
  opacity: 0;
  transition: 0.3s;
}
header nav li:hover {
  background-size: 120%;
}
header nav li:hover::before {
  opacity: 1;
  width: 9rem;
  height: 9rem;
  border-radius: 300px;
}
header nav li:hover::after {
  opacity: 1;
}
header nav li p {
  text-indent: -9999px;
}
header nav li span {
  width: 22%;
  height: 22%;
  position: absolute;
  right: 5%;
  top: 5%;
}
header nav li span img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}

/*==================================================================================================
	Footer
==================================================================================================*/
@media screen and (max-width: 767px) {
  footer {
    padding-bottom: 6em;
  }
}
footer .contact-area {
  background: url("../img/footer-bg.jpg") no-repeat center/cover;
  padding: 3em 1em;
  text-align: center;
}
footer .contact-area p {
  max-width: 700px;
  margin: 0 auto 2em;
}
footer .contact-area .btn {
  margin-top: 3em;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
}
footer .contact-area .btn a {
  display: block;
  text-align: center;
  position: relative;
  padding-right: 3em;
  background: #fff;
  color: #00bc7c;
}
footer .contact-area .btn a::after {
  background: url("../img/icon-arrow-green.svg") no-repeat right center/contain;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}
footer .contact-area .btn a small {
  font-size: 1.2rem;
}
footer .contact-area .btn .movie-btn {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1em 1.6em;
  background: #fff;
  color: #00bc7c;
  border-radius: 300px;
  font-size: clamp(14px, 2vw, 1.8rem);
  font-weight: bold;
  line-height: 1.2;
  transition: 0.3s;
}
footer .contact-area .btn .movie-btn a {
  background: #00bc7c;
  color: #fff;
  padding: 1em;
  margin-left: 0.8em;
  border-radius: 10px;
  font-size: 1.2rem;
  line-height: 1;
  white-space: nowrap;
  transition: 0.3s;
}
footer .contact-area .btn .movie-btn a:hover {
  opacity: 0.4;
}
footer > p {
  padding: 1em;
  text-align: center;
  font-size: 1.4rem;
}

/*==================================================================================================
	共通 Common
==================================================================================================*/
.btn > a {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1em 1.6em;
  background: #00bc7c;
  color: #fff;
  border-radius: 300px;
  font-size: clamp(14px, 2vw, 1.8rem);
  font-weight: bold;
  line-height: 1.2;
  transition: 0.3s;
}
.btn > a::after {
  content: "";
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  background: url("../img/icon-arrow-white.svg") no-repeat right center/contain;
  margin-left: 0.8em;
  transition: 0.3s;
}
.btn > a:hover {
  opacity: 0.75;
}
.btn > a:hover::after {
  transform: scale(1.5);
}
.btn > a.yellow {
  background: #FEDE37;
  color: #222;
}
.btn > a.yellow:after {
  filter: saturate(0);
}

.scroll_bg {
  background-repeat: no-repeat !important;
  background-position: center top;
  background-size: cover !important;
}

.movie {
  max-width: 940px;
  margin: 0 auto 4em;
}
.movie iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

@-webkit-keyframes tab-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes tab-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
article.tab-cnt .tab-item {
  display: none;
}
article.tab-cnt .tab-item.active {
  display: block;
  -webkit-animation: tab-show 1.2s ease-in-out forwards;
          animation: tab-show 1.2s ease-in-out forwards;
}
article.tab-cnt .ttl {
  padding: 0 1em 3em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
article.tab-cnt .ttl::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 25%, rgba(0, 0, 0, 0) 56%);
}
@media screen and (max-width: 767px) {
  article.tab-cnt .ttl::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 60%);
  }
}
article.tab-cnt .ttl > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
article.tab-cnt .ttl .type {
  font-family: "Josefin Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: clamp(20px, 3vw, 3.6rem);
  text-align: right;
}
article.tab-cnt .ttl h2 {
  padding-top: 8.5em;
  font-size: clamp(24px, 3vw, 3.6rem);
  line-height: 1.6;
}
article.tab-cnt .ttl .job {
  padding-top: 0.8em;
  margin: 0.8em auto 0;
  border-top: 1px solid #fff;
  max-width: 1200px;
  font-size: clamp(16px, 3vw, 2rem);
  font-weight: bold;
  line-height: 1.35;
}
article.tab-cnt .ttl .job .name {
  font-family: "Josefin Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
article.tab-cnt #staff01 .ttl {
  background-position: right 40% top;
}
article.tab-cnt #staff02 .ttl {
  background-position: left 34% top;
}
article.tab-cnt #staff03 .ttl {
  background-position: right 40% top;
}
article.tab-cnt #staff04 .ttl {
  background-position: right 40% top;
}
article.tab-cnt #staff05 .ttl {
  background-position: right 40% top;
}
article.tab-cnt #staff06 .ttl {
  background-position: left 36% top;
}
article.tab-cnt #staff07 .ttl {
  background-position: left 22% top;
}
article.tab-cnt #staff08 .ttl {
  background-position: right 32% top;
}
article.tab-cnt #staff09 .ttl {
  background-position: right 30% top;
}
article.tab-cnt .cnt {
  border-top-right-radius: 3.2rem;
  border-top-left-radius: 3.2rem;
  background: #fff;
  margin-top: -3.2rem;
  padding: 0 1em 5em;
  position: relative;
  z-index: 2;
}
article.tab-cnt .section {
  max-width: 1200px;
  padding: 5em 0 0;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4.6875vw;
}
@media screen and (max-width: 767px) {
  article.tab-cnt .section {
    flex-direction: column;
  }
  article.tab-cnt .section > * {
    width: 100% !important;
    padding: 0 !important;
  }
  article.tab-cnt .section .img {
    margin-bottom: 2em;
  }
}
article.tab-cnt .section figure {
  border-radius: 10px;
  overflow: hidden;
}
article.tab-cnt .section h3 {
  color: #00bc7c;
  font-weight: bold;
  font-size: clamp(20px, 3vw, 2.6rem);
  line-height: 1.7;
}
article.tab-cnt .section p {
  margin-top: 2em;
}
article.tab-cnt .section__type1 .img {
  width: 37.5%;
}
article.tab-cnt .section__type1 .txt {
  width: 55%;
}
article.tab-cnt .section__type2 {
  max-width: none;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  article.tab-cnt .section__type2 {
    flex-direction: column-reverse;
  }
}
article.tab-cnt .section__type2 .txt {
  padding-left: 23.28125vw;
  width: 65%;
}
article.tab-cnt .section__type2 .img {
  width: 62.5vw;
  aspect-ratio: 1200/427;
  margin-left: auto;
  margin-right: -1em;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
@media screen and (max-width: 767px) {
  article.tab-cnt .section__type2 .img {
    width: calc(100% + 2em) !important;
    background-position: center !important;
    aspect-ratio: 375/240;
    margin-left: -1em;
    border-radius: 0px;
  }
}
article.tab-cnt .section__type3 .img {
  width: 56.6666666667%;
}
article.tab-cnt .section__type3 .img figure:not(:first-child) {
  margin-top: 2em;
}
article.tab-cnt .section__type3 .txt {
  width: 36%;
}
article.tab-cnt .section__movie {
  display: block;
  text-align: center;
}
article.tab-cnt .section__movie iframe {
  width: 100%;
  height: auto;
  max-width: 960px;
  aspect-ratio: 16/9;
  margin: 1em auto 0;
}
article.tab-cnt aside {
  background: #f5f5f5;
  padding: 4em 1em;
}
article.tab-cnt aside h2 {
  font-family: "Josefin Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  color: #666;
  font-size: clamp(22px, 3vw, 4.6rem);
  text-align: center;
}
article.tab-cnt aside h2 span {
  color: #00bc7c;
}
article.tab-cnt aside nav {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  article.tab-cnt aside nav {
    margin: 1em auto 0;
  }
}
article.tab-cnt aside ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 3em 3%;
}
@media screen and (max-width: 767px) {
  article.tab-cnt aside ul {
    row-gap: 5vw;
  }
}
article.tab-cnt aside li {
  width: 48.5%;
}
article.tab-cnt aside li .img {
  border-bottom-right-radius: 50px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  article.tab-cnt aside li .img {
    border-bottom-right-radius: 25px;
    aspect-ratio: 4/3;
  }
}
article.tab-cnt aside li .img p {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: "Josefin Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  color: #fff;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  article.tab-cnt aside li .img p {
    display: none;
  }
}
article.tab-cnt aside li .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s;
}
article.tab-cnt aside li .img::after {
  content: "more";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 9rem;
  height: 9rem;
  border-radius: 300px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "Josefin Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 2rem;
  color: #00bc7c;
  background: rgba(255, 255, 255, 0.8);
  text-indent: 0px;
  transition: 0.3s;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  article.tab-cnt aside li .img::after {
    display: none;
  }
}
article.tab-cnt aside li p {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.6em;
  margin-top: 0.68em;
  font-size: clamp(13px, 3vw, 1.7rem);
  font-weight: bold;
  line-height: 1.35;
}
article.tab-cnt aside li p .name {
  font-family: "Josefin Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: clamp(20px, 3vw, 3rem);
}
article.tab-cnt aside li:hover {
  cursor: pointer;
}
article.tab-cnt aside li:hover img {
  transform: scale(1.25);
}
article.tab-cnt aside li:hover .img::after {
  width: 11rem;
  height: 11rem;
  background: #00bc7c;
  color: #fff;
}
/*# sourceMappingURL=style.css.map */