
/*----------------------------------------------------------------*/
/* stitch modified */
/*----------------------------------------------------------------*/

/*++++++++++++++++++++++++++++++++++++++++++++++++*/
@media screen and (max-width: 767px) {
/*++++++++++++++++++++++++++++++++++++++++++++++++*/

/* common */
main {
    background-image: unset;
}
.en {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}
.fuchidori {
    color: #fff;
    text-shadow: 1px 1px 0 #000, -1px -1px 0 #000,
    -1px 1px 0 #000, 1px -1px 0 #000,
    0px 1px 0 #000, 0 -1px 0 #000,
    -1px 0 0 #000, 1px 0 0 #000;
}
.common__title {
    font-size: 13.4vw;
    color: #F7701B;
    letter-spacing: 0.04em;
    line-height: 1.2;
    font-weight: bold;
    text-align: center;
}
.common__subtitle {
    margin-top: 5px;
    color: #F7701B;
    font-size: 4.7vw;
    font-weight: 800;
    text-align: center;
}
#follow_banner {
    position: fixed;
    right: 10px;
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0.3s;
    z-index: 9;
    width: 92px;
}
/* KVを過ぎたらスライドイン */
#follow_banner.active {
    opacity: 1;
    transition-property: opacity;
    transition-duration: 0.3s;
}
/* フッターに到達したら absolute に切り替え */
#follow_banner.at-footer {
    position: absolute;
    /* bottom は解除、top で位置指定 */
    bottom: auto;
}
.link__btn {
    display: block;
    position: relative;
    width: 100%;
    height: 60px;
    border: 1px solid #000;
    background: transparent;
    text-decoration: none;
    outline: none;
    margin: 0 auto;
    transition: background-color 0.3s ease;
}
.link__btn__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4vw;
    padding: 4px 0 0 0;
    color: #000;
    white-space: nowrap;
    letter-spacing: 0.14em;
    font-weight: 800;
}
.link__btn__icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 6.9%;
    fill: #000;
}
.link__btn:hover {
    background-color: #F7701B;
}
.link__btn:hover .link__btn__text {
    color: #fff;
}
.link__btn:hover .link__btn__icon {
    fill: #fff;
}
main:after, main:before{
    border-left: none;
}
#lead{
    padding: 0 0 40px 0;
}
#lead .trial__banner{
    margin: 0 auto;
}
#lead p{
    font-weight: bold;
    font-size: 4.5vw;
    letter-spacing: 0.04em;
    line-height: 2.24;
    padding: 37px 26px;
    text-align: left;
    color:#000;
}

/* デジハリ松本紹介ムービー */
#movie {
    margin: 40px 0 80px 0;
    padding: 0 22px;
}
#movie iframe{
    aspect-ratio: 16 / 9;
    border-width: 0;
}
#movie .movie__video {
    width: 100%;
    margin: 44px auto 0;
    max-width: 746px;
}

#movie .movie__video iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

#movie .movie__text {
    margin: 17px auto 40px;
    max-width: 700px;
    font-size: 4.2vw;
    line-height: 2;
    text-align: left;
}

#movie .movie__text .movie__text__title {
    font-size: 4.6vw;
    font-weight: 600;
    margin-bottom: -30px;
    display: block;
}

.movie__list {
    display: grid;
    padding: 0;
    list-style: none;
    margin: 50px auto 0;
    grid-template-columns: 1fr;
    gap: 72px 64px;
    max-width: 1032px;
}

.movie__item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.movie__thumb {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 0;
    background: transparent;
}

.movie__thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 再生アイコンの位置はそのまま */
.movie__thumb__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.movie__item__title {
    font-size: 18px;
    font-weight: 700;
}

.movie__item__desc {
    font-size: 14px;
    line-height: 2;
    text-align: left;
    padding: 0 20px;
    /* font-weight: 600; */
}

/* Modal（SP） */
.movieModal {
    position: fixed;
    inset: 0;
    display: none;
}

.movieModal.is-open {
    display: block;
}

.movieModal[aria-hidden="true"] {
    display: none;
}

.movieModal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.movieModal__dialog {
    position: relative;
    max-width: 960px;
    z-index: 1;
    width: 100%;
    max-height: calc(100dvh - 48px);
}

.movieModal__close {
    position: absolute;
    top: -50px;
    right: -6px;
    font-size: 34px;
    color: #ffffff;
}

.movieModal__title {
    margin: 0 0 12px 0;
    font-size: 18px;
}

.movieModal__videoWrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
    margin-bottom: 16px;
}

.movieModal__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

body.modal-open {
    overflow: hidden;
}

.movieModal {
    position: fixed;
    inset: 0;
    padding: 24px;
    box-sizing: border-box;
    z-index: 9999;
}

.movieModal.is-open {
    display: grid;
    place-items: center;
}

.movieModal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.movie .link__btn {
    border: 1px solid #ffffff;
}

.movie .link__btn__text {
    color: #ffffff;
}

.movie .link__btn__icon {
    fill: #ffffff;
}

.movie .link__btn:hover {
    background-color: unset;
}

/* リール動画 */
.movie__flock {
    width: 100vw;
    overflow: hidden;
    margin: 0 0 0 -22px;
}
.movie__flock * {
    box-sizing: border-box;
}
/*----*/
.movie__flock .slider-field{
    position: relative;
    width: 100%;
    padding: 10vw 0 14vw 0;
    visibility: hidden;
}
.movie__flock .slider-field.act-ready {
    visibility: visible;
}
.movie__flock .slider-body {
    width: 100%;
    overflow: hidden;
}
/*----*/
.movie__flock .slider-control {
    position: absolute;
    left: 0;
    bottom: 10vw;
    width: 100%;
    height: 0;
    text-align: center;
}
.movie__flock .slider-control-inner {
    display: inline-block;
    vertical-align: top;
    position: relative;
}
/*----*/
.movie__flock .slider-shift {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
}
.movie__flock .slider-shift .hitelm {
    position: absolute;
    top: 0;
    width: 13vw;
    aspect-ratio: 1/1;
    cursor: pointer;
}
.movie__flock .slider-shift .hitelm.mysd-prev {
    left: calc((13vw * -1) - 2vw);
}
.movie__flock .slider-shift .hitelm.mysd-next {
    right: calc((13vw * -1) - 2vw);
}
.movie__flock .slider-shift .hitelm .rect {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 70% auto;
}
/*----*/
.movie__flock .slider-dot {
    padding: 5.4vw 0 0 0;
    text-align: center;
}
.movie__flock .slider-dot .mysd-dot {
    display: inline-block;
    vertical-align: top;
    width: 2vw;
    height: 2vw;
    border-radius: 2vw;
    background-color: #ffffff;
    border-style: solid;
    border-width: 1px;
    border-color: #000000;
    margin: 0 0.7vw 0 0.7vw;
}
.movie__flock .slider-dot .mysd-dot.mysd-curr {
    background-color: #f16248;
}
/*----*/
.movie__flock .slider-box {
    position: relative;
    width: 100%;
    white-space: nowrap;
    font-size: 0;
    margin: 0 0 0 calc(50% - (43vw / 2));
    will-change: left;
}
.movie__flock .slider-box .each {
    display: inline-block;
    vertical-align: top;
    width: 43vw;
}
.movie__flock .slider-box .each .skin {
    position: relative;
    width: 100%;
    height: 100%;
    border-style: solid;
    border-width: 1px;
    border-color: #000000;
    transition-property: scale;
    transition-duration: 0.1s;
    transition-timing-function: linear;
    transform-origin: 50% 50%;
    scale: 0.84 0.84;
}
.movie__flock .slider-box .each.mysd-curr .skin {
    scale: 1 1;
}
.movie__flock .slider-box .each .area-movie {
    width: 100%;
    aspect-ratio: 540/960;
}
.movie__flock .slider-box .each .area-movie video {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
}
.movie__flock .slider-box .each .cover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.movie__flock .slider-box .each.mysd-curr.mode-playing .cover {
    display: none;
}
.movie__flock .slider-box .each .cover .hitelm {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.6);
    background-image: none;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 16vw auto;
    pointer-events: none;
}
.movie__flock .slider-box .each.mysd-curr .cover .hitelm {
    background-color: rgba(0,0,0,0);
    pointer-events: auto;
}

/* 選ばれる理由 */
#reasons .reasons {
    padding: 74px 22px;
    background-color: #f7f3ee;
    color: #000;
}
#reasons .reasons__title {
    text-align: center;
    font-size: 11vw;
    font-weight: bold;
    margin-bottom: 44px;
    letter-spacing: 0.08em;
    line-height: 1.4;
}
#reasons .reasons__list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin: 0 auto;
}
#reasons .reason-item {
    display: flex;
    gap: 2.5em;
    flex-direction: column !important;
    text-align: center;
}
#reasons .reason-item__image {
    flex: 1 1 0;
    min-width: 0;
}
#reasons .reason-item__image img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
#reasons .reason-item:nth-of-type(1) .reason-item__image,
#reasons .reason-item:nth-of-type(2) .reason-item__image {
    width: 86%;
    margin: auto;
}
#reasons .reason-item:nth-of-type(2) {
    gap: 3em;
}
#reasons .reason-item:nth-of-type(3) .reason-item__image {
    margin: auto;
    width: 80%;
    display: block;
}
#reasons .reason-item:nth-of-type(4) {
    gap: 2em;
}
#reasons .reason-item:nth-of-type(4) .reason-item__image {
    max-width: 531px;
    width: 100%;
    display: block;
}
#reasons .reason-item:nth-of-type(4) .reason-item__content {
    max-width: 469px;
    width: 100%;
}
#reasons .reason-item__content {
    flex: 1;
}
#reasons .reason-item__title {
    display: flex;
    align-items: center;
    gap: 12px;
}
#reasons .reason-item__number {
    font-size: 14vw;
    font-weight: bold;
    letter-spacing: 0.06em;
    padding-left: 4px;
    line-height: 0;
}
#reasons .reason-item__heading {
    font-size: 5vw;
    line-height: 1.8;
    letter-spacing: 0;
    text-align: left;
}
#reasons .reason-item__text {
    margin: 24px 0 0 0;
    line-height: 1.95;
    font-size: 4.2vw;
    letter-spacing: 0.03em;
    text-align: left;
}

/* インタビュー */
#interview .interview {
    text-align: center;
    padding: 80px 22px;
    background-color: #fff;
    color: #000;
}
#interview .interview__video {
    width: 100%;
    margin: 44px auto 0;
    max-width: 746px;
}
#interview .interview__video iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    border: 0;
}
#interview .interview__text {
    margin: 17px auto 40px;
    max-width: 700px;
    font-size: 4.2vw;
    line-height: 2;
    text-align: left;
}
#interview .interview__text .interview__text__title{
    font-size: 4.6vw;
    font-weight: 600;
    margin-bottom: -30px;
    display: block;
}


.interview__list {
    display: grid;
    padding: 0;
    list-style: none;
    margin: 64px auto 0;
    grid-template-columns: 1fr; 
    gap: 72px 64px;
    max-width: 1032px;
}
.interview__item { display: flex; flex-direction: column; gap: 12px; }


.interview__thumb{
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 0;
    background: transparent;
}

.interview__thumb img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;  
    display: block;
}

/* 再生アイコンの位置はそのまま */
.interview__thumb__play{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.interview__item__title { font-size: 18px; font-weight: 700; }
.interview__item__desc { font-size: 14px; line-height: 1.7; text-align: left;}

/* Modal */
.interviewModal { position: fixed; inset: 0; display: none; }
.interviewModal.is-open { display: block; }
.interviewModal[aria-hidden="true"] { display: none; }
.interviewModal__overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,.9);
}
.interviewModal__dialog {
    position: relative;
    max-width: 960px;
    z-index: 1;
    width: 100%;
    max-height: calc(100dvh - 48px);       
}
.interviewModal__close {
    position: absolute;
    top: -50px;
    right: -6px;
    font-size: 34px;
    color: #ffffff;
}
.interviewModal__title { margin: 0 0 12px 0; font-size: 18px; }
.interviewModal__videoWrap {
    position: relative; width: 100%;
    aspect-ratio: 16 / 9; background: #000; overflow: hidden;
    margin-bottom: 16px;
}
.interviewModal__iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
body.modal-open { overflow: hidden; }

.interviewModal {
    position: fixed;
    inset: 0;
    padding: 24px;              
    box-sizing: border-box;
    z-index: 9999;
}

.interviewModal.is-open {
    display: grid;            
    place-items: center;
}

.interviewModal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 0;
}
.interview .link__btn{
    border: 1px solid #ffffff;
}
.interview .link__btn__text{
    color: #ffffff;
}
.interview .link__btn__icon{
    fill: #ffffff;
}
.interview .link__btn:hover {
    background-color: unset;
}

/* WORKS */
#works .works {
    padding: 76px 24px 82px;
    text-align: center;
    background: #fff;
    color: #000;
}
#works .works__grid {
    display: grid;
    gap: 58px;
    margin: 46px 0 0 0;
}
#works .works__grid a{
    color: #000;
    transition : 0.5s;
}
#works .works__grid a:hover{
    opacity: 0.7;
    transition : 0.5s;
}
#works .works__item img {
    width: 100%;
    height: auto;
    display: block;
}
#works .works__meta {
    font-size: 4.2vw;
    margin-top: 9px;
    letter-spacing: 0.02em;
}
#works .works__name {
    font-size: 5.2vw;
    font-weight: bold;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    line-height: 1.4;
}
#works .works__desc {
    font-size: 3.7vw;
    line-height: 1.9;
    text-align: left;
    letter-spacing: 0.018em;
}

/* SUPPORT */
#support .support {
    background-color: #f7f3ee;
    padding: 76px 22px 290px;
    text-align: center;
    position: relative;
    color: #000;
    overflow: hidden;
}
#support .support__title {
    text-align: center;
    font-size: 8vw;
    font-weight: bold;
    margin-bottom: 22px;
    letter-spacing: 0.1em;
    line-height: 1.4;
}
#support .support__title .en {
    font-size: 9.6vw;
}
#support .support__lead {
    font-size: 4.8vw;
    font-weight: bold;
    margin-bottom: 10px;
}
#support .support__desc {
    font-size: 4.2vw;
    line-height: 1.98;
    letter-spacing: 0;
    text-align: left;
}
#support .support__visual {
    position: absolute;
}
#support .support__img--left {
    top: 33px;
    position: relative;
    left: -31px;
    width: 82%;
}
#support .support__img--right {
    right: -52px;
    width: 59.07%;
    top: -760px;
    position: relative;
}
#support .support__text {
    position: relative;
    z-index: 1;
}
#support .support__list-title {
    font-size: 5vw;
    font-weight: bold;
    margin-top: 226px;
    letter-spacing: 0.2em;
}
#support .support__list {
    margin-top: 13px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
#support .support__item {
    background: #fff;
    border: 1px solid #000;
    padding: 17px 0;
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.04em;
}

/* COURSE */
#course .course {
    margin: 0 auto;
    padding: 77px 22px;
    text-align: center;
    color: #000;
}
#course .course__hr {
    border: none;
    border-top: 1px solid #DCDCDC;
    margin: 54px 0;
}
#course .course__hr-middle {
    border: none;
    border-top: 1px solid #DCDCDC;
    margin: 28px 0;
}
#course .course-list {
    display: flex;
    flex-direction: column;
    gap: 27px;
    margin: 44px 0 34px;
}
#course .course-item__rap {
    margin: 0;
    display: flex;
    gap: 26px;
    flex-direction: column;
}
#course .course-item__info {
    flex: 1;
    text-align: left;
}
#course .course-item__thumb {
}
#course .course-item__thumb img {
    width: 100%;
}
#course .course-item__name {
    font-size: 8vw;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.085em;
}
#course .course-item__meta {
    font-size: 4.2vw;
    font-weight: bold;
    margin-top: 6px;
    letter-spacing: 0;
}
#course .course-item__price {
    font-size: 4vw;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.6;
}
#course .course-item__price .en {
    font-size: 8.8vw;
}
#course .course-item__desc {
    font-size: 4.2vw;
    line-height: 2;
    margin-top: 20px;
    letter-spacing: 0;
}
#course .course-item__skills__title {
    font-size: 4.7vw;
    font-weight: bold;
    margin-top: 34px;
}
#course .course-item__skills__title svg {
    position: relative;
    top: 4px;
}
#course .course-item__skills {
    display: flex;
    gap: 16px;
    margin: 12px 0px 37px;
    flex-wrap: wrap;
}
#course .course-item__skill {
    width: 44px;
    height: 44px;
}
#course .course-item__recommend-title {
    font-size: 5vw;
    color: #F7701B;
    font-weight: bold;
    margin-bottom: 12px;
}
#course .course-item__recommend-list {
    display: grid;
    gap: 16px;
    margin-bottom: 40px;
}
#course .course-item__recommend-item {
    background: #f7f3ee;
    padding: 26px;
    font-size: 4.6vw;
    line-height: 1.9;
    font-weight: bold;
    letter-spacing: 0.04em;
    display: flex;
    justify-content: center;
    align-items: center;
}
#course .course-item.movie .link__btn,
#course .course-item.mama .link__btn{
    margin-top: 44px;
}
#course .course__other {
    text-align: center;
    margin-top: 60px;
}

/* TRIAL */
#trial .trial {
    background-color: #f7f3ee;
    padding: 78px 22px;
    color: #000;
}
#trial .trial__title,
#trial .trial__subtitle {
    color: #000;
}
#trial .trial__cards {
    display: grid;
    gap: 18px;
    margin: 46px auto 40px;
}
#trial .trial__card {
    background: #fff;
    border: 1px solid #000;
}
#trial .trial__card-img {
    width: 100%;
    height: auto;
    display: block;
}
#trial .trial__card-step {
    position: relative;
    top: -22px;
    left: -1px;
    background-color: #FFE056;
    color: #000;
    font-size: 4.4vw;
    font-weight: bold;
    padding: 7px 17px;
    letter-spacing: 0.036em;
    border: 1px solid #000;
}
#trial .trial__card-body {
    padding: 0 34px 34px;
}
#trial .trial__card-title {
    font-size: 6.2vw;
    font-weight: bold;
    margin: -6px 0 12px;
    letter-spacing: 0.04em;
}
#trial .trial__card-text {
    font-size: 4vw;
    line-height: 2.04;
    letter-spacing: 0.04em;
}
.trial__banner {
    width: 80vw;
    aspect-ratio: 342 / 318;
    display: block;
    background-size: cover;
    background-position: center;
    transition: background-image 0.3s ease;
}


/* FAQ */
#faq {
    margin-top: 0;
}
#faq .faq {
    padding: 76px 22px 79px;
    background-color: #fff;
    color: #000;
}
#faq .faq-item_wrap {
    margin: 47px auto 0;

}
#faq .faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}
#faq .faq-item {
    border-top: 1px solid #333;
}
#faq .faq-item:last-child {
    border-bottom: 1px solid #333;
}
#faq .faq-question {
    width: 100%;
    padding: 20px 24px 20px 24px;
    letter-spacing: 0.09em;
    font-size: 5vw;
    line-height: 1.8;
    text-align: left;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
}
#faq .faq-icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
#faq .faq-icon::before,
#faq .faq-icon::after {
    content: '';
    position: absolute;
    background: #333;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform-origin: center;
    transition: transform 0.3s ease;
}
#faq .faq-icon::before {
    transform: translateY(-50%) rotate(0deg);
}
#faq .faq-icon::after {
    transform: translateY(-50%) rotate(90deg);
}
#faq .faq-item.active .faq-icon::after {
    transform: translateY(-50%) rotate(180deg);
}
#faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    text-align: left;
    margin: 0 30px;
    font-size: 3.8vw;
    line-height: 2;
    font-weight: bold;
}
#faq .faq-item.active .faq-answer {
    max-height: 260px;
    padding: 26px 0;
    border-top: 1px dashed #000;
    font-weight: normal;
    font-size: 3.8vw;
}

/* SNSアイコン */
#faq .faq__sns {
    display: grid;
    margin-top: 64px;
    grid-template-columns: repeat(2, 2fr);
    place-items: center;
    gap: 33px 0;
}
#faq .faq__sns a {
    place-items: center;
}
#faq .faq__sns a img {
    display: block;
    height: auto; 
}
#faq .faq__sns a:nth-of-type(1) {
    width: 35%;
}
#faq .faq__sns a:nth-of-type(2) {
    width: 50%;
}
#faq .faq__sns a:nth-of-type(3) {
    width: 72%;
}
#faq .faq__sns a:nth-of-type(4) {
    width: 94%;
}

.facilities {
    background: #fff;
}
.facility__title {
    margin: 75px 0 0 0;
}
.school .facilities{
    padding-bottom: 15px;
}
.school .facilities .slidArea {
    margin-top: 60px;
}
.school .facilities .slidFacilities li img {
    width: 100%;
}
.school .facilities .slidFacilities li .slidInner h3 {
    line-height: 1.6;
    letter-spacing: 1.6px;
}
.access {
    background: #fff;
}
.access .map {
    margin-top: 60px;
}

/*================================*/
#eyecatch {
}
#eyecatch .sect-eyecatch {
    width: 100%;
}
#eyecatch .area-visual {
    position: relative;
    padding: 342% 0 0 0;
}
#eyecatch .area-visual .layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
/*----------------*/
#eyecatch .each .figelm {
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100% auto;
}
/*----------------*/
#eyecatch .block-pic {
}
#eyecatch .block-pic .each {
    position: absolute;
}
#eyecatch .block-pic .each.n01 {
    left: 0;
    top: 38.6%;
    width: 94%;
    aspect-ratio: 732/458;
}
#eyecatch .block-pic .each.n02 {
    left: 75.9%;
    top: 2.4%;
    width: 24.1%;
    aspect-ratio: 188/164;
}
#eyecatch .block-pic .each.n03 {
    left: 0;
    top: 10.9%;
    width: 22.8%;
    aspect-ratio: 178/150;
}
#eyecatch .block-pic .each.n04 {
    left: 26.8%;
    top: 10.9%;
    width: 28.3%;
    aspect-ratio: 218/150;
}
#eyecatch .block-pic .each.n05 {
    left: 6.1%;
    top: 19%;
    width: 35.3%;
    aspect-ratio: 276/182;
}
#eyecatch .block-pic .each.n06 {
    left: 0;
    top: 58.2%;
    width: 53.7%;
    aspect-ratio: 418/280;
}
#eyecatch .block-pic .each.n07 {
    left: 59.7%;
    top: 61.5%;
    width: 40.8%;
    aspect-ratio: 314/194;
}
#eyecatch .block-pic .each.n08 {
    left: 56.9%;
    top: 71.2%;
    width: 43.3%;
    aspect-ratio: 336/156;
}
#eyecatch .block-pic .each.n09 {
    left: 53.6%;
    top: 87.4%;
    width: 46.5%;
    aspect-ratio: 362/208;
}
#eyecatch .block-pic .each.n10 {
    left: 30.6%;
    top: 71.2%;
    width: 20.1%;
    aspect-ratio: 156/232;
}
#eyecatch .block-pic .each.n11 {
    left: 47.7%;
    top: 19%;
    width: 52.2%;
    aspect-ratio: 408/322;
}
#eyecatch .block-pic .each .figelm {
    opacity: 0;
}
/*----------------*/
#eyecatch .block-char {
}
#eyecatch .block-char .each {
    position: absolute;
    width: 108.2%;
    aspect-ratio: 424/200;
}
#eyecatch .block-char .each.n01 {
    left: -19.1%;
    top: -2%;
}
#eyecatch .block-char .each.n02 {
    left: 26.6%;
    top: 6.3%;
}
#eyecatch .block-char .each.n03 {
    left: -4.1%;
    top: 24.4%;
}
#eyecatch .block-char .each.n04 {
    left: 26%;
    top: 51.8%;
}
#eyecatch .block-char .each.n05 {
    left: -40.7%;
    top: 68.1%;
}
#eyecatch .block-char .each.n06 {
    left: -4.2%;
    top: 81.3%;
}
#eyecatch .block-char .each.n07 {
    left: 24.6%;
    top: 71.6%;
}
#eyecatch .block-char .each .figelm {
    scale: 1 0;
}
/*----------------*/
#eyecatch .block-deco {
}
#eyecatch .block-deco .each {
    position: absolute;
    width: 32.8%;
    aspect-ratio: 1/1;
}
#eyecatch .block-deco .each.n01 {
    left: 23%;
    top: 35.4%;
}
#eyecatch .block-deco .each.n02 {
    left: 36.8%;
    top: 4.8%;
}
#eyecatch .block-deco .each.n03 {
    left: 13.2%;
    top: 52%;
}
#eyecatch .block-deco .each.n04 {
    left: 14.2%;
    top: 74%;
}
#eyecatch .block-deco .each.n05 {
    left: 35.4%;
    top: 82.7%;
}
#eyecatch .block-deco .each .figelm {
    scale: 0 0;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++*/
} /* end of media query */
/*++++++++++++++++++++++++++++++++++++++++++++++++*/


