@charset "UTF-8";
:root{
    --black: #101010;
    --beige: #F3F4EB;
    --gray: #999;
    --white: #fff;
    --yellow: #FDD900;
    --pink: #FCDBD8;
    --red: #CA4410;
    --orange: #F8D9A2;
    --blue: #CEE1E8;
    --purple: #E4D4E4;
    --bg--pink: #FCEDE9;
    --bg-orange: #FFF3E4;
    --shadow: 0 0 8px rgba(16, 16, 16, 0.5);
}
* {
  box-sizing: border-box;
}

html{
    margin: 0;
    padding: 0;
    font-size: 100%;
}
body{
    margin: 0;
    padding: 0;
    color: var(--black);
    font-family: 'Noto Sans JP', sans-serif;
}
.site-Container{
    overflow: hidden;
    background-color: var(--beige);
}
a{
    text-decoration: none;
    padding: 6px;
}
img{
    max-width: 100%;
}
ul{
    padding-left: 0;
}
li{
    list-style: none;
}
p{
    margin: 0;
}
.wrapper{
    padding: 8% 4%;
    margin: 0 auto;
}
.onlysp{
    display: block;
}
.onlypc{
    display: none;
}

/*============ fadein ============*/
.fadeIn{
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    will-change: opacity, transform;
}
.fadeIn.active{
    opacity: 1;
    transform: translateY(0);
}

/*============ header ============*/
#header{
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 4%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    height: 60px;
}
#site-Title-Lp img {
    height: 2rem;
    width: auto;
}
#menu-Lp ul {
    display: flex;             /* リスト項目も横並びにする */
    gap: 1.5rem;
    margin: 0;
}
#menu-Lp a{
    color: var(--black);
    font-weight: 700;
    border-bottom: solid 1px var(--black);
    font-family: "Zen Maru Gothic", sans-serif;
    transition: all 0.3s ease;
}
#menu-Lp a:hover{
    opacity: 0.7;
}

/*=========== fv ===========*/
#fv{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 80px;
    height: 80vh;
    background-image: url(../img/fv-bg-sp.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 60px;
    overflow: hidden;
}
#fv .fv-Text{
    font-size: 0.85rem;
    opacity: 0.5;
    font-weight: 500;
}
#fv .fv-Text.left{
    text-align: left;
    padding: 1rem 4% 0;
}
#fv .fv-Text.right{
    text-align: right;
    padding: 0 4%;
    margin-top: -1rem;
}
#fv .page-Title{
    margin: 0;
    margin-top: -1rem;
}
#fv .page-Title img {
        max-width: 100%;
        height: auto;
    }
@keyframes fvtitleFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* FVのタイトルに適用 */
#fv .page-Title.fadeInLoad {
  opacity: 0; /* 最初は透明 */
  animation-name: fvtitleFadeIn;
  animation-duration: 1.2s;      /* 1.2秒かけて表示 */
  animation-delay: 0.5s;         /* 0.5秒待ってから開始（ここで時間差を作る） */
  animation-fill-mode: forwards; /* アニメーション終了時の状態（不透明）を維持 */
}

/*=========== slider ===========*/
.slider-Container {
    width: 100%;
    overflow: hidden;
    padding-top: 1rem;
    position: relative;
    top: -80px;
    left: 0;
    background-color: transparent;
    z-index: 999;
}
.slider-Track {
    display: flex;
    width: calc(180px * 16);
    animation: scroll 80s linear infinite;
}
.slide {
    width: 180px;
    height: 146px;
    flex-shrink: 0;
    padding: 0 10px;
    box-sizing: border-box;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 8)); } /* 画像8枚分移動 */
}

/*============ comic-concept ============*/
#comic-Concept{
    background-color: var(--bg--pink);
    padding-top: 5rem;
    text-align: center;
    position: relative;
    margin-top: -180px;
}
#comic-Concept .concept-Text{
    margin-bottom: 4rem;
    padding-top: 8rem;
    position: relative;
    z-index: 1;
}
#comic-Concept .concept-Text::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/object-bg1.png") no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
}

#comic-Concept .concept-Text p{
    font-weight: 700;
}
#comic-Concept .concept-Text p:first-child{
    margin-bottom: 2rem;
}

#comic-Concept .concept-Image{
    position: relative;
    z-index: 1;
}
#comic-Concept .concept-Image::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/object-bg2.png") no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
}
#comic-Concept .sec-Title img{
    width: 75%;
}

/*============ comic ============*/
#comic{
    background-color: var(--bg--pink);
    padding-top: 4rem;
    padding-bottom: 2rem;
}
#comic .sec-Title{
    text-align: center;
    margin: 0;
    padding: 2rem 4% 0;
    position: relative;
    z-index: 1;
}
#comic .sec-Title::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/object-bg3.png") no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
}
#comic .sec-Title img{
    width: 75%;
}
#comic .comic-Creator{
    padding: 3rem 4% 0;
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}
#comic .comic-Creator::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/object-bg4.png") no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
}
#comic .comic-Creator .text{
    margin-bottom: 3rem;
}
#comic .creator-Wrapper{
    text-align: center;
}
#comic .comic-Creator .creator{
    display: inline-block;
    font-size: 0.8rem;
    text-align: center;
    color: var(--gray);
    transition: all 0.5s ease;
}
#comic .comic-Creator .creator:hover{
    opacity: 0.8;
}
#comic .comic-Container{
    padding-top: 3rem;
    padding-bottom: 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}
#comic .comic-Container::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url("../img/object-bg5.png") no-repeat;
    background-size: contain;
    z-index: -1;
}
#comic .comic-Wrapper{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    margin-bottom: 2rem;
    padding: 0 4%;
}
#comic .comic-Container .comic-Content{
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}
#comic .comic-Content .comic-Img-Wrapper {
    position: relative;
    max-height: 400px; /* 最初に見せる高さ */
    overflow: hidden;
    transition: max-height 1s ease;
    margin-bottom: 2rem;
}
#comic .comic-Content .comic-Img-Wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px; /* グラデーションの高さ */
    background: linear-gradient(to bottom, transparent, white);
    transition: opacity 0.5s ease;
}
#comic .comic-Container .comic-Content .comic-Continue{
    display: inline-block;
    background-color: var(--yellow);
    border-radius: 10rem;
    padding: 0.5rem 0;
    text-align: center;
    font-size: 1.1em;
    font-weight: 700;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    z-index: 10;
    cursor: pointer;
    transition: all 0.5s ease;
    border: solid 2px var(--yellow);
}
#comic .comic-Container .comic-Content .comic-Continue:hover{
    background-color: var(--white);
}
/* 4コマすべて表示 */
#comic .comic-Content.is-open .comic-Img-Wrapper {
    max-height: 2000px; /* 高さを制限なしにする */
}
#comic .comic-Content.is-open .comic-Img-Wrapper::after {
    opacity: 0;
}
#comic .comic-Content.is-open .comic-Continue {
    display: none;
}
#comic .comic-Content .comic-Explanation{
    text-align: left;
}
#comic .comic-Content .comic-Explanation .comic-Title .sub{
    font-family: 'Zen Maru Gothic';
    font-weight: 600;
    font-size: 1.4rem;
}
#comic .comic-Content .comic-Explanation .comic-Title .title{
    font-size: 1.7rem;
    font-weight: 700;
    padding: 0 3px;
    background: linear-gradient(transparent 65%, var(--pink) 35%);
  display: inline;
}
#comic .comic-Button{
    display: inline-block;
    background-color: var(--yellow);
    border-radius: 10rem;
    padding: 0.5rem 3rem;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.5s ease;
    border: solid 2px var(--yellow);
}
#comic .comic-Button:hover{
    background-color: var(--white);
}
#comic .comic-Content.is-hidden {
    display: none;
}
/* 10個のエピソード表示 */
#comic .comic-Wrapper.show-all .comic-Content.is-hidden {
    display: block; /* または flex など元の形式に合わせる */
}
#comic .comic-Wrapper.show-all + #load-more {
    display: none;
}

/*============ swiching-area ============*/
.swiching-Area{
    margin-top: -120px;
    width: 100%;
    height: 60vh;
    background-image: url(../img/Frame\ 1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/*============ movie-concept ============*/
#movie-Concept{
    font-family: 'Noto Sans serif', serif;
}
#movie-Concept .sec-Title{
    padding: 0 4%;
    text-align: center;
}
#movie-Concept .concept-Container{
    padding: 5rem 0 0 0;
    position: relative;
    max-width: 1280px; /* 必要に応じて調整 */
    margin: 0 auto;
}
#movie-Concept .img-Wrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}
#movie-Concept .movie-Concept-Text.text-Left{
    padding-left: 4%;
    margin-bottom: 1rem;
}
#movie-Concept .img-Wrapper .right{
    text-align: right;
}
#movie-Concept .img-Wrapper .right img{
    width: 50%;
}
#movie-Concept .img-Wrapper.second{
    text-align: center;
    top: -1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -5vw; 
    z-index: 10;
    position: relative;
}
#movie-Concept .img-Wrapper.second img{
    width: 70%;
    height: auto;
}
#movie-Concept .img-Wrapper.bottom{
    position: relative;
    top: -2.5rem;
    z-index: 20;
    margin-top: -6vw; 
}
#movie-Concept .img-Wrapper .left img{
    width: 50%;
}
#movie-Concept .movie-Concept-Text.text-Right{
    padding-right: 4%;
    text-align: right;
    position: relative;
    padding-bottom: 5rem;
    z-index: 1;
}
#movie-Concept .movie-Concept-Text.text-Right::before{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 80%;
    background-image: url("../img/object15.png");
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}
/* 背景装飾 */
#movie-Concept .movie-Concept-Text.text-Right::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 80%;
    background-image: url("../img/object15.png");
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}
.scroll-Down{
    text-align: center;
    padding:3rem 4%;
}
.scroll-Down p{
	font-size: 1.2rem;
    font-weight: 600;
	position: relative;
    padding-bottom: 80px;
}
.scroll-Down p::after{
	content: '';
    position: absolute;
    top: 6rem;
    left: 50%;
    width: 1px;
    height: 80px;
    background: var(--black);
	animation: scrollDown 2s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes scrollDown {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/*============ movie ============*/
#movie .sectitle-Container{
    text-align: center;
    margin-bottom: 3rem;
}
#movie .sectitle-Container .sec-Title{
    color: var(--red);
    position: relative;
    padding: 0 2rem;
    display: inline-block;
}
#movie .sectitle-Container .sec-Title::before{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--red);
    width: 1.5rem;
    height: 2px;
}
#movie .sectitle-Container .sec-Title::after{
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--red);
    width: 1.5rem;
    height: 2px;
}
#movie .movie-Container{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
#movie .movie-Content{
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 8px;
    padding: 2rem 1rem;
}
#movie .movie-Content .drama-Number{
    display: inline-block;
    color: var(--white);
    background-color: var(--black);
    padding: 0.3rem 1rem;
    margin-bottom: 0.5rem;
    font-family: 'Noto Sans serif', serif;
}
#movie .movie-Content .drama-Title{
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
#movie .movie-Content iframe{
    width: 100% !important;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-bottom: 1.5rem;
}
@supports not (aspect-ratio: 16 / 9){
    #movie .movie-Content iframe{
        height: 315px;
    }
}
#movie .drama-Explanation .explanation-copy{
    font-size: 0.9rem;
    font-weight: 600;
}
#movie .drama-Explanation .text{
    font-size: 0.85rem;
    margin-bottom: 1rem;
}
#movie .tag-Container{
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}
#movie .tag-Container .tag{
    padding: 0.3rem 0.8rem;
    background-color: #e5e5e5;
    font-weight: 500;
    font-size: 0.85rem;
}

/*============ closing ============*/
#closing{
    background-color: var(--bg-orange);
}
#closing .questionnaire{
    text-align: center;
    margin-bottom: 2rem;
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 8px;
    padding: 2rem 0.5rem;
    border: solid 3px #f6b8ae;
}
#closing .thank{
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
#closing .title{
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
#closing .questionnaire .character{
    width: 75%;
    margin: 0 auto;
}
#closing .questionnaire .character img{
    width: 55%;
}
#closing .title img{
    width: 62%;
}
#closing .questionnaire a{
    display: inline-block;
    background-color: var(--yellow);
    border-radius: 10rem;
    padding: 0.5rem 3rem;
    text-align: center;
    font-size: 1.1em;
    font-weight: 700;
    color: var(--black);
    position: relative;
    transition: all 0.3s ease;
}
#closing .questionnaire a:hover{
    opacity: 0.7;
}
#closing .questionnaire a::after{
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16%;
    height: 27%;
    background-image: url(../img/new-window.png);
    background-size: 50%;
    background-repeat: no-repeat;
}
#closing .questionnaire a span{
    display: block;
    font-size: 0.9rem;
}
#closing .questionnaire .text{
    font-size: 0.85rem;
}
#closing .support{
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 8px;
    padding: 2rem 1rem;
    text-align: center;
    border: solid 3px #f6b8ae;
}
#closing .support .title{
    font-size: 1.3rem;
    font-weight: 700;
}
#closing .support-List{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
#closing .support-List li{
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(16, 16, 16, 0.5);
}
#closing .support-List li a{
    display: block;
    width: 100%;
    height: 100%;
    color: var(--black);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 6px 3px;
}
#closing .support-List li a:hover{
    opacity: 0.7;
}
#closing .support-List .workstyle{
    background-color: var(--orange);
}
#closing .support-List .daycare{
    background-color: var(--blue);
}
#closing .support-List .hoiku{
    background-color: var(--purple);
}
#closing .support-List li img{
    width: calc(26% - 0.5rem);
}
#closing .support-List li .support-Text{
    width: calc(74% - 0.5rem);
}
#closing .support-List li .support-Text .title{
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-align: left;
}
#closing .support-List li .support-Text .text{
    font-size: 0.85rem;
    font-weight: 500;
    text-align: left;
}

/*============ footer ============*/
#footer{
    background-color: #FFEB75;
    text-align: center;
}
#footer .prefInfo .prefInfo__logo{
    height: 25px;
    margin: 0 auto 20px;
    width: 98px;
}
#footer .prefInfo .prefInfo__contact .prefInfo__dep{
    margin-bottom: 10px;
    font-weight: 700;
}
#footer .prefInfo .prefInfo__contact .prefInfo__address{
    margin-bottom: 10px;
}
#footer .prefInfo .prefInfo__contact .prefInfo__device .prefInfo__tel{
    display: block;
    margin-bottom: 10px;
}
#footer .prefInfo .prefInfo__contact .prefInfo__device .prefInfo__fax{
    display: block;
    margin-bottom: 10px;
}
#footer .footer__copyright{
    padding-top: 40px;
    font-size: 0.75rem;
}

