@charset "UTF-8";
/*=====================================================================
　リセット
=====================================================================*/
 html,
 body,
 h1,
 h2,
 h3,
 h4,
 h5,
 h6,
 p,
 ul,
 dl,
 dd,
 dt,
 ol{
     margin: 0;
     padding: 0;
 }
 ul {
     list-style: none;
 }
 ul, dl, ol{
	 list-style-position: inside;
	 margin: 0;
	 padding: 0;
 }
 a {
	 color: inherit;
	 text-decoration: none;
	 touch-action: manipulation;/* SP時の誤動作防止_連打時のズーム防止 */
 }
img{
	height: auto;
	max-width: 100%;
	vertical-align: bottom;
	width: 100%;
}

/*=====================================================================
　PC
=====================================================================*/
html{
	box-sizing: border-box;
    font-size: 16px;/* remの基準値 */
    overflow-x: hidden;
    scroll-behavior: smooth;/* ※safariは未対応 */
}
*, *::before, *::after {
    box-sizing: inherit;
}

body{
    /* 背景 */
    background: var(--bg-color);
	/* 文字設定 */
    color: var(--primary-color);
	font-family: var(--font-style, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
}

/* 全体
----------------------------------------------*/
/* カード */
.card{
    background: var(--secondary-color);
    border-radius: 500px 500px 0 0;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
    position: relative;
    width: 100%;
    /*
    height: 100%;
    overflow: hidden;
    */
}

.img-frame{
    border-radius: 500px 500px 0 0;
    overflow: hidden;
}
.img-card{
    height: calc(100vmin * .425);
    object-fit: cover;
    overflow: hidden;
    transition: .6s;
    width: 100%;
}
a:hover .img-card{
    transform: scale(1.1);
    overflow: hidden;
}

.card-content{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin-top: 0.5rem;
}
.card-title{
    font-size: calc(var(--font-size) * 1.05);
    letter-spacing: 0.02em;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    text-align: center;
}
.card-text{
    font-size: calc(var(--font-size) * 0.9);
    line-height: 1.45;
    /*margin-top: auto;*/
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* 発売日等の注釈 */
.card .tag-circle{
    align-items: center;
    background: var(--gradation-color);
    border-radius: 52% 48% 63% 37% / 50% 58% 42% 50%;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    color: var(--secondary-color);
    display: flex;
    height: 80px;
    justify-content: center;
    line-height: 1.2;
    text-align: center;
    width: 80px;
    z-index: 1;
    /* 位置 */
    position: absolute;
    bottom: 15%;
    left: -5%;
}


/* 文字色 */
.notes{
    color: #707070;
    font-size: calc(var(--font-size) * 0.8);
}

/* 改行 */
.sp_br{
    display: none;
}

/* アニメーション
----------------------------------------------*/
/* 線が伸びてからテキストが現れる　※線は消えない */
.lead {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lead-motion {
    display: inline-block;
    overflow: hidden;
    position: relative;
    width: max-content;
}

/* 背景のスライド線 */
.lead-motion::after {
    background: linear-gradient(270deg, #a6d1f0 0%, #d3cce6 40%, #f7beb9 100%);
    content: "";
    height: 100%;
    transform: translateX(-100%);
    width: 100%;
    z-index: 1;
    /* 位置 */
    position: absolute;
    top: 0;
    left: 0;
    /* padding: 0 0.5rem; */
}

/* テキスト初期状態 */
.lead-text {
    display: inline-block;
    opacity: 0;
    position: relative;
    transform: translateX(-20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    z-index: 2;
}

/* アクティブ時のアニメーション */
.lead-motion.active::after {
    animation: lineIn 1.2s ease-out forwards;
}

.lead-motion.active .lead-text {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1.1s; /* 線の動きに合わせて遅延 */
    padding-left: 1rem;
}

/* 背景ラインのアニメーション */
@keyframes lineIn {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* 装飾
----------------------------------------------*/
/* 上記アニメーションと似た挙動 */
.a_link{
    background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0) 50%,
      #a6d1f0 50%,
      #d3cce6 75%,
      #f7beb9 100%
    );
    background-position: 0 0;
    background-size: 200% auto;
    transition: .3s;
}
.a_link:hover{
    background-position: -100% 0;
    /*color: var(--secondary-color);*/
}


/* header
----------------------------------------------*/
/* 全体 */
.site-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.logo{
    width: 180px;
}


/* footer
----------------------------------------------*/
footer{
    background: var(--gradation-color);
    color: var(--secondary-color);
    padding: 3rem 0;
    text-align: center;
}
footer .area-footer_top, footer .area-footer_bottom{
    max-width: var(--inner-1000);
    padding: 0 1rem;
}

/* 上段 */
.area-footer_top{
    align-items: center;
    display: flex;
    font-style: normal;
    font-weight: 300;
    gap: 1rem;
    justify-content: center;
    letter-spacing: 0.06em;
    margin: 0 auto;
}
.area-footer_top img{
    width: 0.6rem;
}

/* 下段 */
.area-footer_bottom{
    margin: 1.5rem auto 0;
}
.area-footer_bottom .logo-footer{
    width: 150px;
}
.area-footer_bottom .copyright{
    font-size: 10px;
    margin-top: 1rem;
}


/*=====================================================================
　850px以下
=====================================================================*/
@media screen and (max-width: 850px) {
    /* 全体
    ----------------------------------------------*/
    /* 改行 */
    .sp_br{
        display: block;
    }
    
    /* カード */
    .card{
        max-width: auto;
        min-height: auto;
    }
    .img-card {
        height: calc(100vmin * .7);
    }
    .card-text {
        /*margin-top: 0.5rem;*/
    }
    
    
    /* header
    ----------------------------------------------*/
    .site-header{
        padding: 0;
    }
    
    /* ロゴ */
    .logo {
        background: linear-gradient(270deg, #a6d1f0 0%, #d3cce6 40%, #f7beb9 100%, #d3cce6 50%, #a6d1f0 50%);
        border-radius: 0 0 0.5rem 0;
        width: 110px;
    }
    .logo img{
        padding: 0.5rem 0.5rem 0.8rem;
    }
    
}


/*=====================================================================
　580px以下
=====================================================================*/
@media screen and (max-width: 580px) {
    /* 全体
    ----------------------------------------------*/
    /* カード */
    .img-card {
        height: calc(100vmin);
    }
    
    /* アニメーション
    ----------------------------------------------*/
    /* アクティブ時のアニメーション */
    .lead-motion.active .lead-text {
        padding-left: 0.25rem;
    }
    
    /* header
    ----------------------------------------------*/
    /* ロゴ */
    .logo {
        width: 85px;
    }
}


/*=====================================================================
　380px以下※社用スマホ
=====================================================================*/
@media screen and (max-width: 380px) {
    /* 全体
    ----------------------------------------------*/
    /* カード */
    .card {
        max-width: 500px;
    }
    .img-card {
        height: calc(100vmin * .95);
    }
    
    /* メインビジュアル
    ----------------------------------------------*/
    .hero-img{
        border-radius: 0 0 0 70px;
    }
}


/*=====================================================================
　header
=====================================================================*/
/* ハンバーガーボタン全体 */
.el_humburger {
    box-sizing: border-box;
    color: #000;
    cursor: pointer;
    height: 25px;
    padding-top: 0;
    pointer-events: auto;
    text-align: center;
    width: 46px;
    z-index: 20;
    /* 位置 */
    position: fixed;
    top: 45px;
    right: 60px;
}

.el_humburger_wrapper {
    display: inline-block;
    margin-bottom: 5px;
    width: 42px;
}

.el_humburger_text {
    font-size: 12px;
    letter-spacing: 0.1em;
}

.js_humburgerOpen .el_humburger_text.el_humburger_text__menu {
    display: none;
}

.el_humburger_text.el_humburger_text__close {
    display: none;
}

.js_humburgerOpen .el_humburger_text.el_humburger_text__close {
    display: block;
}

.el_humburger span.el_humburger_bar {
    background: #fff;
    display: block;
    height: 1px;
    margin-bottom: 9px;
    transition: all 0.2s ease-in-out;
    width: 100%;
}

.el_humburger span.el_humburger_bar:last-child {
    margin-bottom: 0;
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.top {
    background: #000;
    transform: translateY(9px) rotate(-45deg);
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.middle {
    opacity: 0;
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.bottom {
    background: #000;
    transform: translateY(-11px) rotate(45deg);
}

.el_humburgerButton.el_humburgerButton__close {
    top: 2%;
    right: 2%;
}

.el_humburgerButton__close span.el_humburger_bar {
    background: #000;
    display: block;
    height: 4px;
    margin: 0 auto;
    width: 35px;
}

.el_humburgerButton__close span.el_humburger_bar.top {
    transform: translateY(5px) rotate(-45deg);
}

.el_humburgerButton__close span.el_humburger_bar.bottom {
    transform: translateY(-6px) rotate(45deg);
}

.navi {
    background-color: rgba(255, 255, 255, 0.9);
    box-sizing: border-box;
    height: 100%;
    overflow: auto;
    padding-top: 100px;
    transition: all 600ms ease-out;
    transform: translateZ(0) translateX(100%);
    width: 450px;
    z-index: 3;
    /* 位置 */
    position: fixed;
    right: 0;
    top: 0;
}

.js_humburgerOpen .navi {
    font-family: var(--ttl_font-style);
    transform: translateZ(0) translateX(0);
    /* 位置 */
    right: 0;
    top: 0;
}

.navi_item {
    font-size: calc(var(--font-size) * 1.1);
    margin-bottom: 28px;
    margin-left: 90px;
    white-space: nowrap;
}

.navi_item.op_innerLink {
    cursor: pointer;
}

/* メディアクエリまとめて */
@media screen and (max-width: 850px) {
    .el_humburger {
        display: block;
        height: 80px;
        padding-top: 30px;
        width: 80px;
        /* 位置 */
        right: 0;
        top: 0;
    }
    #factory .el_humburger {
        display: none;
    }
    .el_humburger_wrapper {
        width: 30px;
    }
    .el_humburger_text {
        font-size: 10px;
        padding-top: 2px;
    }
    .el_humburger_text svg path {
        fill: #000;
        transition: fill 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
    }
    .js_humburgerOpen .el_humburger_text svg path {
        fill: #000;
    }
    .el_humburger span.el_humburger_bar {
        background: #000;
        left: 0;
        top: 0;
    }
    .navi {
        padding: 100px 5% 0;
    }
    .js_humburgerOpen .navi {
        width: 100%;
    }
    .navi_item {
        font-size: calc(var(--font-size) * 1.1);
        margin-left: 0;
    }
}

