@charset "utf-8";

/* CSS Document */

/*
  font-family: 'Roboto', sans-serif;
  font-family: 'Outfit', sans-serif;
  font-family: 'Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
*/

/***********
mainVisual
************/

.mainVisual {
  position: relative;
  margin-top: 90px;
  width: 100%;
  height: 70vh;
  min-height: 600px;
  overflow: hidden;
  opacity: 0;
  transition: all 1.5s ease 0.1s;
}
body.is-loaded .mainVisual{
  opacity: 1;
}
.mainVisual-main {
  position: absolute;
  right: 0;
  top: 0;
  width: 80vw;
}

.mainVisual-slider{
}
.mainVisual-slider li{
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 600px;
}
.mainVisual-img{
  width: 100%;
  height: 70vh;
  min-height: 600px;
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(1.02);
}
.mainVisual-img > img {
  display: none;
}

.mainVisual .slick-animation,
.mainVisual .slick-slide {
  opacity: 1 !important;
}
.mainVisual .slick-animation .mainVisual-img{
  animation: amin-fadeZoom 3s ease forwards;
}
.mainVisual .slick-prev-slide {
  z-index: 1001 !important;
}

.is-left .slick-prev-slide .mainVisual-slider-symbol,
.is-left .slick-prev-slide .mainVisual-img{
  animation: amin-mask-left 0.8s cubic-bezier(0.65, 0, 0.35, 1) forwards ;
}
.is-right .slick-prev-slide .mainVisual-slider-symbol,
.is-right .slick-prev-slide .mainVisual-img{
  animation: amin-mask-right 0.8s cubic-bezier(0.65, 0, 0.35, 1) forwards ;
}


@keyframes amin-fadeZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.02);
  }
}

@keyframes amin-mask-left {
  0% {
    clip-path: polygon(0% 0%, 100% 0% ,100% 100%, 0% 100% );
  }
  100% {
    clip-path: polygon(0% 0%, 0% 0% ,0% 100%, 0% 100% );
  }
}
@keyframes amin-mask-right {
  0% {
    clip-path: polygon(0% 0%, 100% 0% ,100% 100%, 0% 100% );
  }
  100% {
    clip-path: polygon(100% 0%, 100% 0% ,100% 100%, 100% 100% );
  }
}


/*
slick
*/

.slick-slide li {
  vertical-align: bottom;
}


/*
block
*/

.mainVisual-block {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mainVisual-box {
  padding: 40px 80px;
  background-color: #fff;
}
.mainVisual-lead {
  padding-bottom: 1em;
}
.mainVisual-lead-item {
  display: inline-block;
  font-size: 170%;
  font-weight: bold;
  font-feature-settings: "palt";
  border: 1px solid #000;
  padding: 0.2em 1em;
}
.mainVisual-lead-item:not(:last-child) {
  margin-right: 0.5em;
}
.mainVisual-title {
  font-size: 400%;
  font-weight: bold;
  line-height: 1.2;
  position: relative;
  z-index: 9;
}

.mainVisual-list {
  display: flex;
  text-align: center;
  margin-top: -50px;
}
.mainVisual-list li {
  position: relative;
}
.mainVisual-list li:not(:last-child) {
  margin-right: 40px;
}
.mainVisual-list li:not(:last-child)::before,
.mainVisual-list li:not(:last-child)::after{
  content: "";
  display: block;
  width: 35px;
  height: 3px;
  margin-top: -1px;
  margin-left: 3px;
  background-color: #fba918;
  position: absolute;
  left: 100%;
  top: 50%;
}
.mainVisual-list li:not(:last-child)::before{
  transform: rotate(-45deg);
}
.mainVisual-list li:not(:last-child)::after{
  transform: rotate(45deg);
}

.mainVisual-list-img {
  margin-left: -10px;
  margin-right: -10px;
}
.mainVisual-list-img figcaption {
  width: 8em;
  background-color: #000;
  color: #fff;
  padding: 0.2em 0;
  margin: 0 auto;
  text-align: center;
  font-size: 131%;
  font-weight: bold;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  white-space: nowrap;
}

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

  /*
  block
  */

  .mainVisual-box {
    padding: 30px 60px;
  }
  .mainVisual-lead-item {
    font-size: 131%;
  }
  .mainVisual-title {
    font-size: 300%;
  }
  .mainVisual-list {
    margin-top: -30px;
  }
  .mainVisual-list li {
    max-width: 10vw;
  }
  .mainVisual-list-img figcaption {
    font-size: 116%;
  }

}

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

  .mainVisual {
    margin-top: 0;
    width: 100%;
    height: 80vh;
  }
  .mainVisual-main {
    width: 100%;
  }

  .mainVisual-slider{
  }
  .mainVisual-slider li{
    height: 80vh;
  }
  .mainVisual-img{
    height: 80vh;
  }

  /*
  block
  */

  .mainVisual-block {
    height: 100%;
    width: 100%;
    padding-bottom: 0;
    align-items: center;
  }

  .mainVisual-box {
    display: inline-block;
    text-align: center;
    padding: 25px 5% 20px;
    background-color: rgba(255, 255, 255, 0.85);
  }
  .mainVisual-lead {
    padding-bottom: 0.5em;
  }
  .mainVisual-lead-item {
    font-size: 100%;
    padding: 0.2em 0.6em;
  }
  .mainVisual-lead-item:not(:last-child) {
    margin-right: 0.3em;
  }
  .mainVisual-title {
    font-size: calc(12px + 2.5vmin);
  }

  .mainVisual-list {
    margin-top: -3vmin;
    justify-content: center;
    width: auto;
  }
  .mainVisual-list li {
    position: relative;
    min-width: 70px;
  }
  .mainVisual-list li:not(:last-child) {
    margin-right: 20px;
  }
  .mainVisual-list li:not(:last-child)::before,
  .mainVisual-list li:not(:last-child)::after{
    margin-top: -1px;
    margin-left: -8px;
  }
  .mainVisual-list li:not(:last-child)::before{
    transform: rotate(-45deg) scale(0.5);
  }
  .mainVisual-list li:not(:last-child)::after{
    transform: rotate(45deg) scale(0.5);
  }

  .mainVisual-list-img {
    margin-left: -5px;
    margin-right: -5px;
  }
  .mainVisual-list-img figcaption {
    width: 6em;
    font-size: 85%;
  }


}


/***********
homeTopics
************/

.homeTopics {
  padding: 30px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #ddd;
}
.homeTopics-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 154%;
  padding-right: 1em;
}
.homeTopics-block {
  display: flex;
  align-items: flex-start;
}
.homeTopics-time {
  font-size: 108%;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  white-space: nowrap;
  margin-right: 1.5em;
}
.homeTopics-title {
  font-size: 108%;
  font-weight: bold;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  color: #668eb0;
}
.homeTopics-title a {
  color:668eb0;
  text-decoration: none;
}
body.is-pc .homeTopics-title a:hover {
  text-decoration: underline;
}

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

  .homeTopics {
    padding: 25px 5%;
    display: block;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #ddd;
  }
  .homeTopics-heading {
    font-size: 124%;
    padding: 0;
    text-align: center;
    padding-bottom: 0.8em;
  }
  .homeTopics-block {
    align-items: flex-start;
  }
  .homeTopics-time {
    font-size: 93%;
    margin-right: 1.5em;
    padding-top: 0.1em;
  }
  .homeTopics-title {
    font-size: 100%;
    font-weight: normal;
  }

}


/***********
homeBg
************/

.homeBg {
  background: url(../../img/carousel.jpg) repeat-x left bottom ;
  height: 180px;
  animation: anim-carouselBg01 50s linear infinite;
  border-bottom: 1px solid #eee;
}
@keyframes anim-carouselBg01 {
  0%   { background-position: 0 0; }
  100% { background-position: -1860px 0; }
}

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

  .homeBg {
    background-size: auto 90px;
    height: 90px;
    margin: 15px 0;
    animation: anim-carouselBg01 30s linear infinite;
  }

  @keyframes anim-carouselBg01 {
    0%   { background-position: 0 0; }
    100% { background-position: -930px 0; }
  }
}

/***********
homeIntro
************/

.homeIntro{
}

.homeIntro-heading {
  position: relative;
}
.homeIntro-heading::before {
  content: "";
  display: block;
  width: 180px;
  height: 180px;
  position: absolute;
  background: url(../../img/character01.png) no-repeat 0 0 / 100% 100%;
  position: absolute;
  right: 80px;
  bottom: 0;
}
.homeIntro-badge {
  font-size: 200%;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  width: 7em;
  height: 7em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 100%;
  position: absolute;
  left: 68%;
  top: 0;
}

.homeIntro-heading .l-headline {
  position: relative;
  z-index: 9;
}

.homeIntro-container {
  background-color: #fff;
  max-width: 1024px;
  text-align: center;
  margin: 0 auto 30px;
  padding: 30px 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  position: relative;
}

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

  .homeIntro-heading::before {
    width: 150px;
    height: 150px;
    right: 0;
  }
}

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

  .homeIntro{
  }
  .homeIntro-heading {
  }
  .homeIntro-heading::before {
    display: none;
  }
  .homeIntro-badge {
    font-size: 116%;
    left: 75%;
    top: -20px;
  }

  .homeIntro-container {
    margin: 0 -3% 20px;
    padding: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  }

}


/***********
homeStrength
************/

.homeStrength{
}
.homeStrength-list {
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
}
.homeStrength-list li {
  width: 33.3%;
  padding: 0 2%;
}
.homeStrength-list-img {
  padding-bottom: 20px;
}
.homeStrength-list img {
}
.homeStrength-list-title {
  font-size: 154%;
  font-feature-settings: "palt";
  padding-bottom: 0.5em;
  text-align: center;
}
.-homeStrength-list-text {
  font-size: 116%;
  line-height: 1.6;
}

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

  .homeStrength-list-title {
    font-size: 124%;
  }
  .-homeStrength-list-text {
    font-size: 100%;
  }

}

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

  .homeStrength{
  }
  .homeStrength-list {
    display: block;
    padding-bottom: 0;
    margin-bottom: -40px;
  }
  .homeStrength-list li {
    width: auto;
    padding: 0 8%;
    margin-bottom: 50px;
  }
  .homeStrength-list-img {
    padding-bottom: 20px;
    text-align: center;
  }
  .homeStrength-list img {
    width: 60%;
  }
  .homeStrength-list-title {
    font-size: 124%;
  }
  .-homeStrength-list-text {
    font-size: 100%;
    line-height: 1.6;
  }
}

/***********
homeProduct
************/

.homeProduct {
  text-align: center;
}
.homeProduct-heading {
  display: inline-block;
  position: relative;
}
.homeProduct-heading::before {
  content: "";
  display: block;
  width: 170px;
  height: 170px;
  position: absolute;
  background: url(../../img/character02.png) no-repeat 0 0 / 100% 100%;
  position: absolute;
  right: 100%;
  bottom: 0;
}

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

  .homeProduct-heading::before {
    width: 90px;
    height: 90px;
    display: none;
  }

}

/***********
homeLineup
************/

.homeLineup{
}
.homeLineup-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1%;
  padding: 0 3%;
}
.homeLineup-list li {
  margin-left: 1%;
  width: 32.3%;
}
.homeLineup-list a {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
}
.homeLineup-list a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}
body.is-pc .homeLineup-list a:hover::after {
  opacity: 0.7;
}
.homeLineup-list-img {
}
.homeLineup-list-img img {
}
.homeLineup-list-title {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 154%;
  font-weight: bold;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  font-feature-settings: "palt";
  text-align: center;
  z-index: 9;
}

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

  .homeLineup-list-title {
    font-size: 116%;
  }

}

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

  .homeLineup{
  }
  .homeLineup-list {
    display: block;
    margin-left: 0;
    padding: 0 0;
  }
  .homeLineup-list li {
    margin-left: 0;
    padding-bottom: 5px;
    width: auto;
  }
  .homeLineup-list a {
  }
  .homeLineup-list-img {
  }
  .homeLineup-list-img img {
    width: 100%;
    height: 30vmin;
    object-fit: cover;
  }
  .homeLineup-list-title {
    font-size: 116%;
  }

}

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/
