:root {
  --main-bk: #222;
  --sub-color: #ffb400;
  --sub-color2: #373737;
  --brdr-color: #aeaeae;
  --st-easing: cubic-bezier(0, 0.315, 0.155, 0.995);
}

html,
body {
  background-color: #fff;
  font-family: "Helvetica Neue", Arial, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  /*font-family: '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;*/
  font-weight: 400;
  font-size: 62.5%;
  line-height: 1.75;
  letter-spacing: 0.1rem;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
}

/*html {
  visibility: hidden;
}

html.wf-active,
html.loading-delay {
  visibility: visible;
}*/

/*body.hidden {
  overflow: hidden;
}*/

::selection
{
    background: var(--sub-color);
    color: #fff;
}

.zeitung-micro-pro-bold {
  font-family: zeitung-micro, sans-serif;
  font-weight: 700;
  font-style: normal;
}

/*共通css*/
br.sp-only {
  display: none;
}

p {
  font-size: 1.5rem;
  color: var(--main-bk);
}

a {
  font-size: 1.4rem;
  color: var(--main-bk);
  text-decoration: none;
  transition: color .3s;
  cursor: pointer;
  transition: .5s var(--st-easing);
}

a:hover {
  color: var(--main-bk);
  opacity: 0.5;
  text-decoration: none;
}

.btn-wrapper {
  text-align: center;
}

.btn {
  margin: 10px 0 0;
  padding: 0;
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  background-color: var(--sub-color);
  padding: 14px 80px 10px;
  border-radius: 30px;
  color: var(--main-bk);
  font-weight: 600;
}

.btn:hover {
  color: var(--main-bk);
}

/*.btn:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #838383;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .4s var(--st-easing);
}*/

.btn.wh {
  background-color: #fff;
}

.comingsoon .btn:after {
  display: none;
}

.box:hover,
.btn:hover {
  opacity: 1;
}

.box:hover .btn:after,
.btn:hover:after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.btn-sq {
  border: 1px solid var(--brdr-color);
  border-radius: 2px;
  padding: 7px 70px 5px;
  display: inline-block;
  text-align: center;
}

.btn-sq:hover {
  opacity: 1;
  background-color: rgb(240,240,240);
}

img {
  width: 100%;
  margin-bottom: 20px;
  display: block;
}

.thum {
  background: no-repeat center center / cover;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
  font-weight: 400;
  color: var(--main-bk);
  letter-spacing: 0.2rem;
}

h1 {
  font-size: 5.4rem;
  margin-bottom: 30px;
}

h2 {
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 35px;
}

h2 span {
  font-size: 0.65em;
  display: block;
}

h2.eachTextAnime.appeartext span {
  font-size: 3.6rem;
}

.title {
  font-size: 3.6rem;
}

.title h2 {
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
}

.title span {
  font-size: 0.6em;
  font-weight: 400;
}

.title h2 span {
  font-size: 1em;
  font-weight: 600;
}

.title {
  margin-bottom: 35px;
}

h3 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

h4 {
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  margin-bottom: 20px;
}

h4 span {
  font-size: 0.9em;
}

h5 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

h6 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.section {
  width: calc(100% - 80px);
  max-width: 960px;
  margin: 0 auto 80px;
  padding-top: 30px;
}

dl {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

dl dt {
  font-size: 1.6rem;
  width: 100px;
  margin-right: 20px;
}

dl dd {
  font-size: 1.6rem;
  width: calc(100% - 120px);
}

.col2,
.col3,
.col4 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/*2列レイアウト*/
.col2 .box {
  width: calc(50% - 30px);
  margin-right: 60px;
}

.col2 .box:nth-of-type(2n) {
  margin-right: 0;
}

/*3列レイアウト*/
.col3 .box {
  width: calc((100% / 3) - 60px);
  margin-right: 90px;
  margin-bottom: 20px;
}

.col3 .box:nth-of-type(3n) {
  margin-right: 0;
}

/*4列レイアウト*/
.col4 {
  width: 100%;
  margin-bottom: 30px;
}

.col4 .box {
  width: calc(25% - 30px);
  margin-right: 40px;
  margin-bottom: 30px;
}

.col4 .box:nth-of-type(4n) {
  margin-right: 0;
}

.col4 .box img {
  width: 100%;
  height: calc(25vw - 55px);
  max-height: 205px;
  object-fit: cover;
  margin-bottom: 10px;
}

.col4 .box p {
  font-size: 1.2rem;
}

.col4 .box p.min {
  font-size: 1rem;
}

/*3:7のコンテンツ*/
.left-container {
  width: 300px;
  margin-right: 50px;
}

.right-container {
  width: calc(100% - 350px);
}

.right-container .info-container {
  margin-bottom: 60px;
}

.right-container .info-container .btn {
  font-size: 1.6rem;
}

.hero-image {
  width: 100%;
  height: 100vh;
  position: relative;
  background: no-repeat center center / cover;
  align-items: center;
  justify-content: center;
  margin-bottom: 70px;
}

.hero-image h1 {
  font-size: 7rem;
  line-height: 1;
  color: #fff;
  text-align: center;
  display: inline-block;
  letter-spacing: 0.5rem;
}

.hero-image h1 span {
  font-size: 0.4em;
  letter-spacing: 0.25rem;
  display: block;
}

.title-wrapper {
  margin-top: 120px;
  margin-bottom: 0;
}

.title-wrapper .title {
  display: flex;
  align-items: center;
}

.title-wrapper .title h1 {
  font-size: 5.4rem;
  font-weight: 600;
  line-height: 1.25;
  border: none;
  margin-bottom: 0;
}

.title-wrapper .title span {
  display: inline-block;
  font-size: 0.45em;
  letter-spacing: 0.1rem;
  margin-left: 20px;
  margin-top: 10px;
}

.title-wrapper .title h1 span {
  font-size: 1em;
  letter-spacing: 0.5rem;
  font-weight: 600;
  margin: 0;
}

.title-wrapper .title span span {
  font-size: 1em;
  margin: 0;
  letter-spacing: 0.5rem;
}

.cover-image,
.cover-image span {
  background: no-repeat center center / cover;
}

.cover-image.inview {
  overflow: hidden;
}

.cover-image.inview span {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 1s ease-in-out;
}

.cover-image.inview.is-show span {
  opacity: 1;
  transform: scale(1.05);
}

.eachTextAnime {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

.eachTextAnime span{
  transform: translateY(200%);
}

.eachTextAnime.appeartext span{ animation:text_anime_on 1s ease-in-out forwards .3s; }
@keyframes text_anime_on {
  0% {transform: translateY(200%) rotate(45deg);}
  100% {transform: translateY(0%)  rotate(0deg);}
}


/*個別css*/
header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #fff;
}

header .logo {
  width: 350px;
  position: absolute;
  top: 20px;
  left: 30px;
}

header .menu-btn {
  width: 40px;
  height: 30px;
  position: absolute;
  top: 25px;
  right: 40px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}

header .menu-btn span {
  width: 30px;
  height: 1px;
  background-color: var(--main-bk);
  position: absolute;
  right: 5px;
  transition: .3s var(--st-easing);
}

header .menu-btn span:nth-of-type(1) {
  top: 5px;
}

header .menu-btn span:nth-of-type(2) {
  top: 14px;
}

header .menu-btn span:nth-of-type(3) {
  bottom: 5px;
}

header .menu-btn.active span:nth-of-type(1) {
  top: 14px;
  transform: rotate(-45deg);
}

header .menu-btn.active span:nth-of-type(2) {
  width: 0;
}

header .menu-btn.active span:nth-of-type(3) {
  bottom: 14px;
  transform: rotate(45deg);
}

.menu {
  width: auto;
  height: auto;
  position: fixed;
  top: 28px;
  right: 30px;
  z-index: 900;
  transition: .3s var(--st-easing);
  text-align: right;
}

.menu .menu-list {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-left: 5px;
  margin-right: 70px;
}

.menu .menu-list a {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--main-bk);
  line-height: 1.5;
  margin: 0 0 10px 20px;
}

content {
  width: 100%;
}

.top {
  width: 100%;
  height: 100vh;
  max-height: 600px;
  padding-top: 80px;
  margin-bottom: 80px;
}

.top .swiper-container {
  width: 100%;
  height: 100%;
  z-index: 1;
}

.top .swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.top .swiper-slide .image-container {
  content: '';
  width: 100%;
  height: 100%;
  background: no-repeat center center / cover;
  position: absolute;
  top: 0;
  left: 0;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

.top .swiper-slide.swiper-slide-active .image-container,
.top .swiper-slide-duplicate-active .image-container,
.top .swiper-slide-prev .image-container {  
  animation: zoomUp 12s linear 0s 1 normal both;
  background: no-repeat center center / cover;
  will-change: transform;
}

.front .concept {
  position: relative;
  height: 400px;
  margin-bottom: 50px;
}


.front .concept .box.cover-image {
  width: 55vw;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
}

.front .concept .box.info {
  position: relative;
  z-index: 200;
  top: 20px;
}

.front .concept .box.info h2 {
  font-size: 3.2rem;
  letter-spacing: 0.75rem;
  display: inline-block;
  position: relative;
}

@keyframes brdr_anime_on {
  0% {transform: translateX(-200%);}
  100% {transform: translateX(0%);}
}

.front .concept .box.info h2.eachTextAnime.appeartext:before {
  content: "";
  width: 100%;
  height: 5px;
  background-color: var(--sub-color);
  position: absolute;
  left: -0.75rem;
  bottom: 0;
  transform: translateX(-100%);
  animation: brdr_anime_on 1.8s ease-in-out forwards .1s;
}

.front .concept .box.info h2 span {
  display: inline-block;
}

.front .concept .box.info p {
  line-height: 2.25;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  font-weight: 600;
}

.front .concept .box.cover-image span {
  height: 100%;
  background-size: contain;
  background-position: top right;
}

.front .concept .box.cover-image span {
  transform: scale(0.95);
}

.front .concept .box.cover-image.is-show span {
  transform: scale(1);
}

.front .service .box {
  margin-bottom: 50px;
}

.front .service .box h3,
.front .service .box p {
  text-align: center;
}

.front .service .box p {
  font-size: 1.4rem;
}

.front .service .box .cover-image {
  aspect-ratio: 4/2;
  margin-bottom: 25px;
}

.joinus {
  background-color: var(--sub-color);
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.joinus .left-container,
.joinus .right-container {
  width: 50%;
  margin: 0;
}

.joinus .left-container .cover-image {
height: 400px;
}

.joinus .right-container .info {
  padding: 50px;
}

.joinus .right-container .info h2,
.joinus .right-container .info .btn-wrapper {
  text-align: left;
}

.joinus .right-container .info p {
  margin-bottom: 30px;
}

.section.youtube {
  background-color: #e8e4db;
  padding: 0;
}

.section.youtube .left-container,
.section.youtube .right-container {
  width: 50%;
  margin: 0;
}

.section.youtube .left-container .info {
  padding: 40px 50px;
}

.section.youtube .right-container .cover-image {
  height: 350px;
}

.section.youtube .left-container .title h2,
.section.youtube .left-container .btn-wrapper {
  text-align: left;
}

.title.leftAlign h2,
.title.leftAlign h3,
.title.leftAlign span {
  justify-content: flex-start;
}

.section.youtube .left-container p {
  margin-bottom: 20px;
}

.section.contact p {
text-align: center;
margin-bottom: 40px;
}

.section.contact .btn {
  min-width: 150px;
  margin: 0 20px;
}


/*PAGE*/
.title.leftAlign h1,
.title.leftAlign span {
  text-align: left;
  justify-content: flex-start;
}

.fv-wrapper {
  position: relative;
  height: calc(45vw * 0.66666);
  min-height: 250px;
  max-height: 300px;
  z-index: 100;
}

.fv-wrapper .info-container {
  width: calc(100% - 480px);
}

.fv-wrapper .info-container p {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2;
  padding: 0 30px;
}

.fv-wrapper .cover-image {
  width: 45%;
  min-width: 480px;
  height: calc(45vw * 0.66666);
  min-height: 250px;
  max-height: 300px;
  background: no-repeat center center / cover;
  position: absolute;
  top: 0;
  right: 0;
}

.point-wrapper {
  background-color: #e8e4db;
  padding: 120px 0 60px;
  transform: translateY(-50px);
}

.point-wrapper .section {
  max-width: 800px;
  margin-bottom: 0;
}

.point-wrapper .section .box {
  position: relative;
}

.point-wrapper .section .box .cover-image {
  border-radius: 50%;
  aspect-ratio: 1/1;
  z-index: 0;
  margin-bottom: 20px;
}

.point-wrapper .section .box h4 {
  font-size: 5.4rem;
  line-height: 1;
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 50;
  color: #fff;
  padding: 9px 7px 2px;
}

.point-wrapper .section .box .info {
  text-align: center;
}

.point-wrapper .section .box .info p {
  text-align: justify;
}

.service-list-wrapper {
  width: 100%;
  max-width: 100%;
}

.service-list-wrapper .col2 {
  align-items: center;
}


.service-list-wrapper .col2:nth-of-type(even) {
  flex-direction: row-reverse;
  align-items: center;
}

.service-list-wrapper .box {
  width: 50%;
  height: 350px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-list-wrapper .box .info {
  padding: 40px 80px;
}

.service-list-wrapper .box .info .title {
  margin-bottom: 0;
}

.service-list-wrapper .box .info h3 {
  font-size: 2.8rem;
  text-align: left;
  position: relative;
  display: inline-block;
}

.service-list-wrapper .box .info h3 span {
  font-size: 1em;
  font-weight: 600;
}

.service-list-wrapper .box .info h3.eachTextAnime.appeartext:before {
  content: "";
  width: 100%;
  height: 5px;
  background-color: var(--sub-color);
  position: absolute;
  bottom: 0;
  transform: translateX(-100%);
  animation: brdr_anime_on 1.8s ease-in-out forwards .1s;
}

footer {
  background-color: var(--sub-color2);
  text-align: center;
  margin-top: 120px;
  padding: 50px 0;
}

footer .logo {
  width: 350px;
  display: inline-block;
}

footer .info {
  margin-bottom: 50px;
}

footer .info p {
  color: #fff;
  font-size: 1.4rem;
}

footer .copyright {
  color: #fff;
  font-size: 1.2rem;
}

.copyright {
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
}

@media screen and (max-width: 900px) {
  .col3 .box {
    width: calc((100% / 3) - 30px);
    margin-right: 45px;
  }

  header .menu-btn {
    opacity: 1;
    pointer-events: auto;
    z-index: 1000;
  }

  .menu {
    width: 200px;
    height: 100vh;
    background-color: #fff;
    overflow-y: scroll;
    opacity: 0;
    pointer-events: none;
    top: 0;
    right: 0;
  }

  .menu.active {
    opacity: 1;
    pointer-events: auto;
  }

  .menu .menu-list {
    padding: 100px 0;
    flex-direction: column;
  }

  .top {
    max-height: 350px;
    margin-bottom: 40px;
  }

  .section {
    margin-bottom: 60px;
  }

  .front .concept {
    height: auto;
  }

  .front .concept .box.cover-image {
    width: calc(50% - 30px);
    top: 30px;
  }

  .front .concept .box.info h2,
  .front .concept .box.info h2 span {
    font-size: 2.8rem;
  }

  .front .concept .box.info p br {
    display: none;
  }

  .section.contact .btn {
    margin-bottom: 20px;
  }

  footer {
    margin-top: 80px;
  }

  /*PAGE*/
  .title-wrapper {
    margin-bottom: 0px;
  }

  .title-wrapper .title {
    margin-bottom: 0;
  }

  .fv-wrapper {
    height: auto;
    max-height: inherit;
  }

  .fv-wrapper .info-container {
    width: 100%;
  }

  .fv-wrapper .cover-image {
    position: relative;
    width: 90%;
    margin-left: 10%;
  }

  .point-wrapper {
    padding: 90px 0 40px;
  }

  .point-wrapper .section {
    width: calc(100% - 160px);
    max-width: inherit;
  }

  .service-list-wrapper .box {
    height: 300px;
  }

  .service-list-wrapper .box .info {
    padding: 20px 50px;
  }

  .service-list-wrapper .box .info .title {
    margin-bottom: 0;
  }
}

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

  .col2 .box,
  .col3 .box {
    width: 100%;
    margin-right: 0;
  }

  .btn {
    padding: 10px 80px;
  }

  .section {
    margin-bottom: 50px;
  }

  header  {
    height: 60px;
  }

  header .logo {
    width: 250px;
    top: 18px;
    left: 20px;
  }

  header .menu-btn {
    top: 15px;
    right: 20px;
  }

  .top {
    max-height: inherit;
    height: 70vw;
    padding-top: 60px;
    margin-bottom: 0;
  }

  .front .concept .box.cover-image {
    position: relative;
    width: calc(100vw - 80px);
    height: calc(86vw  - 80px);
  }

  .front .concept .box.info h2 {
    margin-bottom: 20px;
  }

  .front .concept .box.info p {
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 10px;
  }

  .front .service .box {
    margin-bottom: 30px;
  }

  .joinus .left-container,
  .joinus .right-container {
    width: 100%;
  }

  .joinus .right-container .info {
    padding: 30px 30px 40px;
  }

  .joinus .right-container .info p {
    text-align: center;
  }

  .title.leftAlign h2,
  .title.leftAlign h3,
  .title.leftAlign span {
    justify-content: center;
  }

  .joinus .right-container .info h2,
  .joinus .right-container .info .btn-wrapper {
    text-align: center;
  }

  .section.youtube .col2 {
    flex-direction: column-reverse;
  }

  .section.youtube .left-container,
  .section.youtube .right-container {
    width: 100%;
  }

  .section.youtube .right-container .cover-image {
    height: 200px;
  }

  .section.youtube .left-container .info {
    padding: 30px;
  }

  .section.youtube .left-container .title h2,
  .section.youtube .left-container .btn-wrapper {
    text-align: center;
  }

  .section.youtube .left-container .btn-wrapper .btn {
    padding: 10px 0;
    width: 100%;
  }

  .section.contact .btn {
    min-width: 250px;
    padding: 10px 0;
  }

  footer {
    margin-top: 50px;
  }

  footer .logo {
    width: 300px;
  }

  /*PAGE*/
  .title-wrapper {
    margin-bottom: 0;
  }

  .title-wrapper .title {
    display: block;
  }

  .title-wrapper .title span {
    margin-left: 0;
  }

  .fv-wrapper .cover-image {
    min-width: inherit;
  }

  .fv-wrapper .info-container p {
    padding: 0;
  }

  .point-wrapper .section {
    max-width: 220px;
  }

  .point-wrapper .section .box {
    margin-bottom: 60px;
  }

  .point-wrapper .section .box:nth-last-of-type(1) {
    margin-bottom: 0;
  }

  .point-wrapper .section .box h4 {
    font-size: 6.8rem;
    top: -40px;
    left: -30px;
  }

  .service-list-wrapper {
    margin-bottom: 0;
  }

  .service-list-wrapper .box {
    height: auto;
  }

  .service-list-wrapper .box.cover-image {
    height: 300px;
  }

  .service-list-wrapper .box .info {
    padding: 40px;
  }

  .service-list-wrapper .box .info h3 {
    font-size: 2.4rem;
  }

  .section.contact p br {
    display: none;
  }
}



