@charset "utf-8";

/* fonts
---------------------------------------------*/
/* .shippori-mincho-regular {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
}
.montserrat- {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.zen-kaku-gothic-new-medium {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.zen-kaku-gothic-new-bold {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.zen-old-mincho-regular {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
} */

/* bg color */
.bg-sky01{
    background-color: #ddf2fa;
}
.bg-blue01{
    background-color: #e4e9ef;
}
.bg-blue02{
    background-color: #cad9ed;
}
.bg-yellow01{
    background-color: #f2ede2;
}
.bg-navy01{
    background-color: #323c45;
}
.bg-green01{
    background-color: #d5ebe1;
}
.bg-purple01{
    background-color: #ecdfee;
}
.bg-cream01{
    background-color: #fcf1e7;
}
.bg-brown01{
    background-color: #50464b;
}

/* animation
---------------------------------------------*/
@keyframes fadeInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    80% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    0%, 80%, 100% { opacity: 0; }
    40% { opacity: 1; }
}
@keyframes fadeInLeft_infinite {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    80% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    0%, 80%, 100% { opacity: 0; }
    40% { opacity: 1; }
}
@keyframes fadeIn_arrow {
    0%, 80%, 100% { opacity: 0; }
    40% { opacity: 1; }
}
@keyframes fadeScale {
    0%, 100% { transform: scale(0.6); }
    40% { transform: scale(1); }
    0%, 80%, 100% { opacity: 0; }
    40% { opacity: 1; }
}
.textUp {
    overflow: hidden;
}
.animate_textUp span {
    display: inline-block;
    transform: translate(0, 105%);
    animation: textUp 0.6s forwards;
}
.animate_textUp span:nth-child(2) {
    animation-delay: 0.06s;
}
.animate_textUp span:nth-child(3) {
    animation-delay: 0.12s;
}
.animate_textUp span:nth-child(4) {
    animation-delay: 0.18s;
}
.animate_textUp span:nth-child(5) {
    animation-delay: 0.24s;
}
.animate_textUp span:nth-child(6) {
    animation-delay: 0.30s;
}
.animate_textUp span:nth-child(7) {
    animation-delay: 0.36s;
}
.animate_textUp span:nth-child(8) {
    animation-delay: 0.42s;
}
.animate_textUp span:nth-child(9) {
    animation-delay: 0.48s;
}
.animate_textUp span:nth-child(10) {
    animation-delay: 0.50s;
}
.animate_textUp span:nth-child(11) {
    animation-delay: 0.52s;
}
.animate_textUp span:nth-child(12) {
    animation-delay: 0.54s;
}
.animate_textUp span:nth-child(13) {
    animation-delay: 0.56s;
}
.animate_textUp span:nth-child(14) {
    animation-delay: 0.58s;
}
@keyframes textUp{
    from{ transform: translate(0, 105%); }
    to{ transform: translate(0, 0); }
}
.animate_lineGrow{
    animation: lineGrow 2s;
}
@keyframes lineGrow{
    0%{ flex-grow: 0; }
    100%{ flex-grow: 1; }
}
@keyframes stroke-width {
    0% {
        width: 0;
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}
@keyframes stroke-height {
    0% {
        height: 0;
        opacity: 1;
    }
    100% {
        height: 100%;
        opacity: 1;
    }
}
@keyframes lineinBG {
    0% {
        -webkit-clip-path: inset(0% 100% 0% 0%);
        clip-path: inset(0% 100% 0% 0%);
    }
    100% {
        -webkit-clip-path: inset(0% 0% 0% 0%);
        clip-path: inset(0% 0% 0% 0%);
    }
}
@keyframes bgArrow01 {
    0%{
        opacity: 0;
        transform: rotate(35deg);
    }
    100%{
        opacity: 1;
        transform: rotate(0deg);
    }
}
@keyframes bgArrow02 {
    0%{
        opacity: 0;
        transform: rotate(-35deg);
    }
    100%{
        opacity: 1;
        transform: rotate(0deg);
    }
}
@keyframes colorFilter{
    0%{ width: 100%; }
    100%{ width: 0%; }
}
@keyframes waveBG {
    from {
        transform:translate(0%);
    }
	to {
        transform:translate(-25%);
    }
}
@keyframes airplane {
    0%{
        transform: translate(-615%, 70%);
    }
    25%{
        transform: translate(-455%, 30%) rotate(20deg);
    }
    50%{
        transform: translate(-340%, 45%) rotate(50deg);
    }
    75%{
        transform: translate(-200%, 60%) rotate(20deg);
    }
    100%{
        transform: translate(0);
    }
}
@keyframes rotateSign{
    from{
        transform: rotateY(0);
    }
    to{
        transform: rotateY(360deg);
    }
}
.animate_rotateSign{
    animation: rotateSign ease-in-out 1s;
}
.waveBG.display_switch,
.rotateSign.display_switch{
    opacity: 1;
}

/* 共通
---------------------------------------------*/
ul.path-nav li{
    font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
    font-weight: 400;
}
.bg {
    position: relative;
}
.infinite {
    animation-iteration-count: infinite;
}
.features_wrap *{
    box-sizing: border-box;
}
.features_wrap{
    font-family: 'Noto Sans JP', sans-serif;
}
.features_wrap *[class*="absolute"]{
    position: absolute;
}
.features_wrap svg:not(.splide__arrow svg){
    position: static;
    width: auto;
}
@media screen and (min-width: 750px) {
    .features_wrap{
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 749px) {
    .features_wrap{
        margin-bottom: 100px;
    }
    .product_list .splide__arrow--prev{
        left: 5%;
    }
    .product_list .splide__arrow--next{
        right: 5%;
    }
}

/* 診断共通
---------------------------------------------*/
.features_wrap .chooseBox{
    width: 100%;
    margin-top: 50px;
    text-align: center;
}
.features_wrap .chooseBox .chooseBox_title{
    font-size: 2rem;
}
.features_wrap .chooseBox .question_title{
    margin-bottom: 20px;
}

/* 商品紹介
---------------------------------------------*/
.features_wrap .product_list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: left;
}
.features_wrap .product_list li.product_list_item{
    width: calc(100% / 3);
    border-left: 1px solid #ccc;
    position: relative;
}
.features_wrap .product_list li.product_list_item::after{
    content: '';
    width: 40px;
    height: 8px;
    border-bottom: solid 1px;
    border-right: solid 1px;
    transform: skew(45deg);
    position: absolute;
    bottom: 3.8%;
    right: 8%;
}
.features_wrap .product_list li.product_list_item a{
    display: block;
}
.features_wrap .product_list li.product_list_item a .itemDetail{
    height: 150px;
    padding: 3% 4% 4%;
    display: flex;
    flex-direction: column;
}
.features_wrap .product_list li a .itemDetail .itemDetail-item_name{
    height: 50px;
    font-weight: 600;
    line-height: 1.5;
}
.features_wrap .product_list li a .itemDetail .itemDetail-description{
    font-size: 12px;
    line-height: 1.6;
}
.features_wrap .product_list li a .itemDetail .itemDetail-color{
    height: 14px;
    margin-top: auto;
    align-self: flex-start;
}
@media screen and (max-width: 749px) {
    .features_wrap .product_list li.product_list_item::after{
        width: 7vw;
        height: 1.4vw;
    }
    .features_wrap .product_list li.product_list_item a .itemDetail{
        padding: 5%;
    }
}