/*ベース_______________________________________*/
body {
    position: relative;
    font-family: "Zen Kaku Gothic New", sans-serif;
    overflow-X: hidden;
}
img {
    max-width: 100%;
}
/*コンテンツ　共用*/
.sp {
    display: none;
    @media screen and (max-width: 768px) {
        display: inline;
    }
}
.pc {
    display: inline;
    @media screen and (max-width: 768px) {
        display: none;
    }
}
.block_00 {}
.block_inner {
    width: 1100px;
    max-width: 89.333%;
    margin: 0 auto;
}
.block_00 a:hover {
    opacity: 1;
}
/*TOPページリンクボタン*/
.btn01 {
    position: relative;
    display: block;
    width: 64px;
    height: 70px;
    aspect-ratio: 64 / 70;
    content: "";
    background-image: url("../img/top/btn01.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.btn01:hover, .btn01:active {
    background-image: url("../img/top/btn01_h.svg");
}
.btn01.move {
    background-image: url("../img/top/btn01_h_r.svg");
}
/*線の設定*/
.btn01::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: left center;
    transform: scale(1, 1) translate(0, -50%);
    width: 96%;
    height: 1px;
    background: #000;
    opacity: 1;
}
/*矢印の設定*/
.btn01::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 150%;
    transform: translate(-150%, -50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    opacity: 1;
}
.btn01:hover::before {
    background: #F78D36;
    ;
}
/*矢印の設定*/
.btn01:hover::after {
    border-top: 1px solid #F78D36;
    border-right: 1px solid #F78D36;
}
@media screen and (max-width: 768px) {
    .btn01 {
        background-image: url("../img/top/btn01_h.svg");
    }
    .btn01::before {
        background: #F78D36;
    }
    /*矢印の設定*/
    .btn01::after {
        content: "";
        border-top: 1px solid #F78D36;
        border-right: 1px solid #F78D36;
        opacity: 1;
    }
}
/*線と矢印を繰り返しアニメーション*/
.btn01:hover::before {
    animation: arrowlong01 1.6s infinite;
}
.btn01:active::before {
    animation: arrowlong01 1.6s infinite;
}
.btn01:hover::after {
    animation: arrowlong02 1.6s infinite;
}
.btn01:active ::after {
    animation: arrowlong02 1.6s infinite;
}
@keyframes arrowlong01 {
    0% {
        transform: scale(.2, 1) translate(0, -50%);
        opacity: 0
    }
    20% {
        transform: scale(.2, 1) translate(0, -50%);
        ;
        opacity: 1
    }
    80% {
        transform: scale(.95, 1) translate(0, -50%);
        opacity: 1
    }
    100% {
        transform: scale(.95, 1) translate(0, -50%);
        opacity: 0
    }
}
@keyframes arrowlong02 {
    0% {
        left: 65%;
        transform: translate(-65%, -50%) rotate(45deg);
        opacity: 0
    }
    20% {
        left: 65%;
        transform: translate(-65%, -50%) rotate(45deg);
        opacity: 1
    }
    80% {
        left: 150%;
        transform: translate(-150%, -50%) rotate(45deg);
        opacity: 1
    }
    100% {
        left: 150%;
        transform: translate(-150%, -50%) rotate(45deg);
        opacity: 0
    }
}
/*TOPページ　コンテンツタイトル*/
.ttl01 {
    font-size: 36px;
    font-weight: bold;
    line-height: .85;
    letter-spacing: .1em;
    display: flex;
    flex-flow: column;
    align-items: center;
    font-family: "Barlow", sans-serif;
    color: #F78D36;
}
.ttl01 .dec01 {
    font-size: .5em;
    margin-top: 1.3em;
    font-weight: 500;
    line-height: .75;
    letter-spacing: .08em;
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: #000;
}
.ttl01 .dec_color01 {
    color: #000 !important;
}
.ttl01.hover .dec_color01 {
    color: #F78D36 !important;
}
@media screen and (max-width: 768px) {
    .ttl01 {
        font-size: 30px;
        font-size: calc(30 / 375 * 100vw);
    }
    .ttl01 .dec01 {
        font-size: .4666em;
        margin-top: 1.52em;
    }
    .ttl01 .dec_color01 {
        color: #F78D36 !important;
    }
}
.ani_up {
    overflow: hidden;
}
.ani_up img {
    transition: .3s;
}
.ani_up.up img {
    transform: scale(1.15);
}
.js-animation {
    transition: 0.4s all ease-in-out;
}
@media screen and (max-width: 768px) {
.js-animation.adjust01 {
    transition: .4s all linear;
}
    }


.js-animation:not(.is-active) {
    translate: 0 5vh;
    opacity: 0;
}
@media screen and (max-width: 768px) {
.js-animation.adjust01 {
	transition: none;
    translate: 0 40px;
    opacity: 0;
}
	
.js-animation.adjust01.is-active {
  animation: open01 .4s;
   animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
	@keyframes open01 {
  0% {
    translate: 0 40px;
    opacity: 0;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}

	
	
}
	
	
	




/*各コンテンツ*/
.block_00 {}
.block_inner {}
.block_news_top {
    background: #fff;
    padding: 80px 0 0;
}
/*TOPページ--------------------*/
/*mv*/
.mv_ttl .dec01, .mv_ttl .dec02 {
    display: flex !important;
    overflow: hidden;
}
.mv_ttl span {
    display: block;
    transform: translateY(100%);
    transition: 0.7s;
}
.mv_ttl .dec01 span {
    transition-delay: calc(.05s * (var(--nth, 1) - 1));
}
.mv_ttl .dec02 span {
    transition-delay: calc(.08s * (var(--nth, 1) - 1) + 1.0s);
    letter-spacing: .1em;
}
.mv_ttl .dec01 .set_3, .mv_ttl .dec01 .set_6 {
    letter-spacing: -.3em;
}
.mv_start .mv_ttl span {
    transform: translateY(0);
}
.block_mv {
    background-color: #fff;
    padding-top: 166px;
    padding-bottom: 83px;
    position: relative;
    z-index: 0;
}
.block_mv::after {
    content: "";
    display: block;
    position: absolute;
    background-image: url("../img/top/introduction_dec01.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    bottom: -658px;
    left: -199px;
    width: 811px;
    aspect-ratio: 811 / 790;
    z-index: -1;
}
_::-webkit-full-page-media, _:future, :root .block_mv::after {
    height: 790px;
}




@media screen and (max-width: 768px) {
    .block_mv::after {
        bottom: calc(-284 / 375 * 100vw);
        left: calc(-136 / 375 * 100vw);
        width: calc(421 / 375 * 100vw);
		
		/*display: none;*/
    }
	
_::-webkit-full-page-media, _:future, :root .block_mv::after {
   height: calc(410 / 375 * 100vw)!important;
		/*display: none;*/

}
	
	
}





.block_mv .mv_ttl {
    font-size: 60px;
    color: #fff;
    position: absolute;
    z-index: 2;
    top: 114px;
    left: calc(54px + 5.71%);
}
@media screen and (max-width: 768px) {
    .block_mv .mv_ttl {
        top: calc(83px - 6.2%);
        left: calc(10px + 5.71%);
        font-size: calc(30 / 375 * 100vw);
    }
}
.block_mv .mv_ttl .dec01 {
    color: #000;
    display: block;
    font-size: calc((32 / 60) * 1em);
    letter-spacing: .1em;
    /*line-height: .83;*/
    overflow: hidden;
    line-height: 1.2;
    margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
    .block_mv .mv_ttl .dec01 {
        margin-bottom: 2px;
    }
}
@media screen and (max-width: 768px) {
    .block_mv {
        padding-top: 83px;
        /*padding-bottom: calc(47 / 375 * 100vw);*/
        padding-bottom: 12.53vw;
    }
}
.block_mv .swiper01 {
    position: relative;
    z-index: 0;
    margin-left: 5.71%;
    overflow: hidden;
}
.block_mv .swiper-pagination {
    text-align: left;
    margin-left: 49px;
}
.block_mv .swiper-pagination-bullet {
    width: 30px;
    height: 2px;
    border-radius: 0;
    background-color: #fff;
    opacity: 1;
}
.block_mv .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .block_mv .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
}
.block_mv .swiper-horizontal > .swiper-pagination-bullets, .block_mv .swiper-pagination-bullets.swiper-pagination-horizontal, .block_mv .swiper-pagination-custom, .block_mv .swiper-pagination-fraction {
    bottom: 36px;
}
.block_mv .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #000;
}
@media screen and (max-width:768px) {
    .block_mv .swiper-pagination {
        margin-left: 15px;
    }
    .block_mv .swiper-pagination-bullet {
        width: 20px;
    }
    .block_mv .swiper-horizontal > .swiper-pagination-bullets, .block_mv .swiper-pagination-bullets.swiper-pagination-horizontal, .block_mv .swiper-pagination-custom, .block_mv .swiper-pagination-fraction {
        bottom: 20px;
    }
}
.block_mv .top_down {
    position: absolute;
    top: 83px;
    right: 11.4%;
    z-index: 1;
    aspect-ratio: 1;
    width: 147px;
    mix-blend-mode: difference;
    transform: translate3d(0, 0, 0);
}
_::-webkit-full-page-media, _:future, :root .block_mv .top_down {
    height: 147px;
}

@media screen and (max-width:768px) {
_::-webkit-full-page-media, _:future, :root .block_mv .top_down {
    height: calc(91 / 375 * 100vw);
}
    }



.block_mv .top_down img {
    animation: rote01 24s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
    /*position: absolute;
	top: 50%;
  left: 50%;
	transform-origin: center;
  transform: translate(-50%,-50%);*/
}
/*@media screen and (max-width:768px) {
_:lang(x)+_:-webkit-full-screen-document, .block_mv .top_down img {
position: relative;
  top: 20%;
}
}*/
.block_mv .top_down::after {
    content: "";
    display: block;
    position: absolute;
    background-image: url("../img/top/mv_topdown_arrow.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    aspect-ratio: 1;
}
_::-webkit-full-page-media, _:future, :root .block_mv .top_down::after {
    height: 22px
}



@media screen and (max-width: 1024px) {
    .block_mv .top_down {
        top: auto;
        /*bottom: -83px;*/
        bottom: 0;
    }
}
@media screen and (max-width:768px) {
    .block_mv .top_down {
        /*bottom: calc(91 / 375 * -50vw);*/
        bottom: 0;
        right: 5.33vw;
        width: calc(91 / 375 * 100vw);
    }
    /*_:lang(x)+_:-webkit-full-screen-document, .block_mv .top_down {
        bottom: -5%;

    }
*/
    .block_mv .top_down::after {
        width: calc(13 / 375 * 100vw);
    }
    _::-webkit-full-page-media, _:future, :root .block_mv .top_down::after {
        height: calc(13 / 375 * 100vw);
    }
}
@keyframes rote01 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/*イントロ*/
.block_introduction {
    position: relative;
    padding: 117px 0 100px;
}
@media screen and (max-width: 768px) {
    .block_introduction {
        padding: 68px 0 60px;
    }
    .block_introduction::after {
        top: calc(-75 / 375 * 100vw);
        left: calc(-136 / 375 * 100vw);
        width: calc(421 / 375 * 100vw);
    }
}
.block_introduction .block_inner {
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 1024px) {
    .block_introduction .block_inner {
        flex-flow: column;
    }
}
.block_introduction .parts_ttl01 {
    position: relative;
    width: 352px;
    padding-left: 44px;
}
.block_introduction .parts_ttl01 h3 {
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 0.1em;
    line-height: .85;
    font-family: "Barlow", sans-serif;
    display: flex;
    flex-flow: column;
    gap: 17px;
}
@media screen and (max-width: 768px) {
    .block_introduction .parts_ttl01 h3 {
        font-size: calc(13 / 375 * 100vw);
    }
}
.block_introduction .parts_ttl01 h3 > .dec01 {
    letter-spacing: .1em;
    font-size: 3.076em;
    line-height: 1.625;
    font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 768px) {
    .block_introduction .parts_ttl01 h3 .dec01 {
        font-size: 2.0em;
        line-height: 1.538;
    }
}
.block_introduction .parts_ttl01 h3::after {
    content: "";
    display: block;
    position: absolute;
    background-color: #363639;
    top: 4px;
    left: 0;
    width: 24px;
    height: 1px;
}
@media screen and (max-width: 768px) {
    .block_introduction .parts_ttl01 h3::after {
        width: calc(14 / 375 * 100vw);
    }
}
@media screen and (max-width: 768px) {
    .block_introduction .parts_ttl01 {
        width: 100%;
        padding-left: 0;
    }
    .block_introduction .parts_ttl01 h3 {
        width: 100%;
        padding-left: 0;
        font-size: calc(13 / 375 * 100vw);
    }
}
@media screen and (max-width: 1024px) {
    .block_introduction .parts_ttl01 {
        width: 528px;
        margin: 0 auto 40px;
    }
}
@media screen and (max-width: 768px) {
    .block_introduction .parts_ttl01 {
        width: 100%;
        padding-left: 7.164%;
        margin: 0 auto calc(34 / 375 * 100vw);
    }
    .block_introduction .parts_ttl01 h3::after {
        width: calc(13 / 375 * 100vw);
        top: calc(5.5 / 375 * 100vw);
    }
}
.block_introduction .box_text {
    margin-top: 22px;
    margin-right: 52px;
    width: 490px;
    font-weight: 500;
    font-size: 18px;
    line-height: 4.222;
    letter-spacing: .1em;
}
.block_introduction .box_text strong {
    display: block;
    font-weight: bold;
    font-size: 1.555em;
    line-height: 2.0;
    letter-spacing: .1em;
    margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
    .block_introduction .box_text strong {
        font-size: 1.125em;
        margin-bottom: calc(8 / 375 * 100vw);
    }
}
@media screen and (max-width: 1024px) {
    .block_introduction .box_text {
        width: 528px;
        max-width: 100%;
        padding-left: 44px;
        margin: 0 auto;
    }
}
@media screen and (max-width: 768px) {
    .block_introduction .box_text {
        width: 100%;
        padding-left: 7.164%;
        font-size: calc(16 / 375 * 100vw);
        line-height: 3.75;
    }
    .block_introduction .box_text p {
        letter-spacing: .05em;
    }
}
/*お知らせ*/
.block_info .block_inner {
    padding: 70px 0;
    border: solid #000;
    border-width: 3px 0;
    display: flex;
}
@media screen and (max-width: 800px) {
    .block_info .block_inner {
        flex-flow: column;
    }
}
@media screen and (max-width: 768px) {
    .block_info .block_inner {
        padding: 43px 0;
    }
}
.block_info .block_inner .box_ttl {
    margin-top: 11px;
    width: 304px;
    margin-right: 7%;
    padding-left: 45px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}
@media screen and (max-width: 800px) {
    .block_info .block_inner .box_ttl {
        display: contents;
    }
}
.block_info .block_inner .box_ttl .ttl01 {
    width: fit-content;
    align-items: flex-start;
    margin-bottom: 36px;
}
@media screen and (max-width: 800px) {
    .block_info .block_inner .box_ttl .btn01 {
        order: 3;
        margin: 40px 30px 0 auto;
    }
}
.block_info .block_inner .box_list {
    width: calc(100% - 304px - 7%);
    padding-left: 7.00%;
    border-left: 1px solid #000;
    font-size: 18px;
    letter-spacing: 0.1em;
}
.block_info .block_inner .box_list .p-information__index__list__item {
    border-bottom: 1px solid #000;
    border-image: linear-gradient(to right, #000 0%, #000 83px, transparent 83px);
    border-image-slice: 1;
}
@media screen and (max-width: 800px) {
    .block_info .block_inner .box_list .p-information__index__list__item {
        border-image: linear-gradient(to right, #000 0%, #000 74px, transparent 74px);
        border-image-slice: 1;
    }
}
@media screen and (max-width: 800px) {
    .block_info .block_inner .box_list {
        width: 100%;
        padding-left: 0;
        order: 2;
        border-left: none;
    }
}
@media screen and (max-width: 768px) {
    .block_info .block_inner .box_list {
        font-size: calc(16 / 375 * 100vw);
    }
}
/*事業紹介*/
.block_business, .block_work {
    padding: 120px 0 60px;
    background: linear-gradient(#F7F7F8, #F7F7F8) no-repeat;
    background-size: cover;
    background-position: 0 340px;
}
@media screen and (max-width: 768px) {
    .block_business, .block_work {
        padding: 80px 0 60px;
        background-position: 0 144px;
    }
}
.block_business .box_img, .block_work .box_img {
    width: 1100px;
    max-width: 100%;
}
@media screen and (max-width: 768px) {
    .block_business .box_img, .block_work .box_img {
        max-width: auto;
        height: auto;
    }
}
.block_business .box_text, .block_work .box_text {
    position: relative;
    z-index: 1;
    background-color: #F7F7F8;
    width: 438px;
    padding: 56px 0 0;
    margin: -119px auto 0;
    display: flex;
    flex-flow: column;
    align-items: center;
}
@media screen and (max-width: 1232px) {
    .block_business .box_text, .block_work .box_text {
        margin: calc(-122 / 1232 * 100vw) auto 0;
    }
}
@media screen and (max-width: 768px) {
    .block_business .box_text, .block_work .box_text {
        margin: calc(-56 / 375 * 100vw) auto 0;
        width: 87.46%;
        padding: 43px 0 0;
    }
}
.block_business .box_text .ttl01, .block_work .box_text .ttl01 {
    margin-bottom: 44px;
    position: relative;
}
.block_business .box_text .ttl01 .dec_color01, .block_work .box_text .ttl01 .dec_color01 {
    color: #000 !important;
}
.block_business .box_text.up .ttl01 .dec_color01, .block_work .box_text.up .ttl01 .dec_color01 {
    color: #F78D36 !important;
}
@media screen and (max-width: 768px) {
    .block_work .box_text .ttl01 .dec_color01 {
        color: #F78D36 !important;
    }
}
.block_business .box_text .ttl01::after, .block_work .box_text .ttl01::after {
    content: "";
    background-color: #000;
    width: 46px;
    height: 1px;
    margin-top: 40px;
}
@media screen and (max-width: 768px) {
    .block_business .box_text .ttl01, .block_work .box_text .ttl01 {
        font-size: calc(30 / 375 * 100vw);
        margin-bottom: calc(26 / 375 * 100vw);
    }
    .block_business .box_text .ttl01::after, .block_work .box_text .ttl01::after {
        width: calc(36 / 375 * 100vw);
        margin-top: 40px;
    }
}
.block_business .box_text p, .block_work .box_text p {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: .1em;
    line-height: .65;
    margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
    .block_business .box_text p, .block_work .box_text p {
        font-size: calc(24 / 375 * 100vw);
        margin-bottom: calc(50 / 375 * 100vw);
    }
}
/*実績紹介*/
.block_work {
    background: linear-gradient(#F7F7F8, #F7F7F8) no-repeat;
    /* padding: 0 0 120px;*/
    padding: 60px 0 120px;
    background-position: 0 340px;
}
@media screen and (max-width: 768px) {
    .block_work {
        /*padding: 0 0 87px;*/
        padding: 80px 0 87px;
        background-position: 0 144px;
    }
}
/*インタビュー*/
.block_interview .block_inner {
    padding: 108px 0 0;
    width: 100%;
    max-width: 100%;
}
@media screen and (max-width: 768px) {
    .block_interview .block_inner {
        padding: 84px 0 0;
    }
}
.block_interview .block_inner .ttl01 {
    margin-bottom: 57px;
}
.block_interview .block_inner .box_list {
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 768px) {
    .block_interview .block_inner .box_list {
        flex-flow: column;
        gap: calc(30 / 375 * 100vw);
    }
}
.block_interview .block_inner .box_list li {
    width: calc((100% - 2px) / 3);
    overflow: hidden;
    transition: .3s;
}
@media screen and (max-width: 768px) {
    .block_interview .block_inner .box_list li {
        width: 100%;
        aspect-ratio: 750 / 998;
    }
    _::-webkit-full-page-media, _:future, :root .block_interview .block_inner .box_list li {
        height: 133.06vw;
    }
}
.block_interview .block_inner .box_list li a {
    height: 470px;
    display: block;
    position: relative;
    z-index: 0;
    color: #000;
    font-family: "Barlow", sans-serif;
}
@media screen and (max-width: 768px) {
    .block_interview .block_inner .box_list li a {
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .37);
    }
}
.block_interview .block_inner .box_list li a .no {
    position: absolute;
    top: 0;
    left: 0;
    width: 133px;
    height: 156px;
    background-color: #fff;
    font-weight: bold;
    font-size: 50px;
    letter-spacing: 0.1em;
    line-height: 1;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    transition: .3s opacity;
    opacity: 1;
}
.block_interview .block_inner .box_list li a .no::after {
    content: "";
    display: block;
    background-color: #000;
    width: .5em;
    height: 1px;
    margin-top: .46em;
}
@media screen and (max-width: 768px) {
    .block_interview .block_inner .box_list li a .no::after {
        margin-top: .5em;
    }
}
.block_interview .block_inner .box_list li a .no .dec01 {
    font-size: .22em;
    margin-bottom: .7em;
    letter-spacing: .08em;
}
@media screen and (max-width: 768px) {
    .block_interview .block_inner .box_list li a .no .dec01 {
        font-size: .29em;
        margin-bottom: .5em;
    }
}
@media screen and (max-width: 1250px) {
    .block_interview .block_inner .box_list li a .no {
        width: 103px;
        height: 116px;
        font-size: 40px;
    }
}
@media screen and (max-width: 1078px) {
    .block_interview .block_inner .box_list li a .no {
        top: auto;
        bottom: 0;
    }
}
@media screen and (max-width: 768px) {
    .block_interview .block_inner .box_list li a .no {
        top: 0;
        bottom: auto;
        width: 93px;
        height: 109px;
        font-size: 34px;
    }
}
.block_interview .block_inner .box_list li a .ttl {
    opacity: 0;
    position: absolute;
    bottom: 51px;
    left: 51px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 2.0;
    color: #fff;
    transition: .3s;
}
@media screen and (max-width: 768px) {
    .block_interview .block_inner .box_list li a .ttl {
        font-size: calc(12 / 375 * 100vw);
        opacity: 1;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, .37);
        padding: 21px 12.25%;
    }
}
.block_interview .block_inner .box_list li a .ttl h4 {
    font-size: 2em;
}
.block_interview .block_inner .box_list li a .ttl p {
    margin-top: 3px;
}
.block_interview .block_inner .box_list li a .ttl p .dec01 {
    font-size: 1.583em;
    margin-left: 1.5em;
}
@media screen and (max-width: 768px) {
    .block_interview .block_inner .box_list li a .ttl p {
        margin-top: 8px;
    }
    .block_interview .block_inner .box_list li a .ttl p .dec01 {
        margin-left: 1.18em;
    }
    .block_interview .block_inner .box_list li a .ttl h4 {
        letter-spacing: 0.08em;
        font-size: 1.666em;
    }
}
.block_interview .block_inner .box_list li a:after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .3s;
}
.block_interview .block_inner .box_list li.view01 {
    background-image: url("../img/top/interview03.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
@media screen and (max-width: 768px) {
    .block_interview .block_inner .box_list li.view01 {
        background-image: url("../img/top/interview03_sp.jpg");
    }
}
.block_interview .block_inner .box_list li.view02 {
    background-image: url("../img/top/interview01.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
@media screen and (max-width: 768px) {
    .block_interview .block_inner .box_list li.view02 {
        background-image: url("../img/top/interview01_sp.jpg");
    }
}
.block_interview .block_inner .box_list li.view03 {
    background-image: url("../img/top/interview02.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
@media screen and (max-width: 768px) {
    .block_interview .block_inner .box_list li.view03 {
        background-image: url("../img/top/interview02_sp.jpg");
    }
}
.block_interview .box_list.hover li {
    width: calc((100% - 2px) / 3);
    transition: .3s;
}
.block_interview .box_list.hover.view01 li, .block_interview .box_list.hover.view02 li, .block_interview .box_list.hover.view03 li {
    width: calc(16.5% - 1px);
}
.block_interview .box_list.hover.view01 li .no, .block_interview .box_list.hover.view02 li .no, .block_interview .box_list.hover.view03 li .no {
    opacity: 0;
    top: 0;
    bottom: auto;
}
.block_interview .box_list.hover.view01 li.view01, .block_interview .box_list.hover.view02 li.view02, .block_interview .box_list.hover.view03 li.view03 {
    width: 67%;
}
.block_interview .box_list.hover.view01 li.view01 .no, .block_interview .box_list.hover.view02 li.view02 .no, .block_interview .box_list.hover.view03 li.view03 .no {
    opacity: 1;
}
.block_interview .box_list.hover.view01 li.view01 .ttl, .block_interview .box_list.hover.view02 li.view02 .ttl, .block_interview .box_list.hover.view03 li.view03 .ttl {
    opacity: 1;
    transition: .7s;
}
.block_interview .box_list.hover.view01 li.view01 a::after, .block_interview .box_list.hover.view02 li.view02 a::after, .block_interview .box_list.hover.view03 li.view03 a::after {
    background-color: rgba(0, 0, 0, .37);
}
.block_interview #box_list-cursor {
    position: fixed;
    background: #fff;
    border-radius: 999px;
    width: 90px;
    height: 90px;
    margin: -55px 0 0 -45px;
    display: block;
    pointer-events: none;
    mix-blend-mode: difference;
    top: 0;
    left: 0;
    z-index: 55;
    transform: scale(0);
    transition: transform 0.3s;
}
/*ページへのリンク*/
.block_link {
    background-color: #F7F7F8;
    padding: 120px 0;
}
@media screen and (max-width: 768px) {
    .block_link {
        padding: 84px 0;
    }
}
.block_link .block_inner {
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 768px) {
    .block_link .block_inner {
        flex-flow: column;
        gap: 6px;
    }
}
.block_link .block_inner a {
    background-color: #fff;
    width: calc((100% - 8px) / 3);
    padding: 51px 0 72px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    min-height: 364px;
    transition: .3s;
}
.block_link .block_inner a .ttl01 {
    text-align: center;
    line-height: 1.4;
    color: #000;
}
.block_link .block_inner a:hover .ttl01 {
    color: #F78D36;
}
.block_link .block_inner a .ttl01 .dec01 {
    margin-top: .8em;
}
.block_link .block_inner a:hover .ttl01 .dec01 {
    /*color: #fff;*/
    color: #F78D36;
}
@media screen and (max-width: 899px) {
    .block_link .block_inner a .ttl01 {
        font-size: 30px;
        color: #F78D36;
    }
}
@media screen and (max-width: 768px) {
    .block_link .block_inner a {
        width: 100%;
        min-height: 323px;
        padding: 43px 0 55px;
    }
    .block_link .block_inner a .ttl01 {
        font-size: calc(32 / 375 * 100vw);
        margin-bottom: calc(37 / 375 * 100vw);
    }
    .block_link .block_inner a .ttl01 .dec01 {
        margin-top: .8em;
        color: #F78D36;
    }
}
.block_link .block_inner a .btn01 {
    margin-top: auto;
}
.block_link .block_inner a:nth-of-type(n+2) .ttl01 {
    margin-top: 27px;
}
.block_link .block_inner a:nth-of-type(n+2) .ttl01 .dec01 {
    margin-top: 1.055em;
}
@media screen and (max-width: 768px) {
    .block_link .block_inner a:nth-of-type(n+2) .ttl01 {
        margin-bottom: calc(60 / 375 * 100vw);
    }
}
.block_link .block_inner a:hover, .block_link .block_inner a:active {
    background-color: #363639;
    /*color: #fff;*/
    color: #F78D36;
}
/*.block_link .block_inner a:hover .btn01,
.block_link .block_inner a:active .btn01 {
    filter: invert(100%) sepia(94%) saturate(3%) hue-rotate(259deg) brightness(108%) contrast(100%);
}*/
.block_link .ani_move.move::before {
    animation: arrowlong01 1.6s ease infinite;
}
.block_link .ani_move.move::after {
    animation: arrowlong02 1.6s ease infinite;
}
.block_link .ani_move.move::before {
    background: #F78D36;
}
.block_link .ani_move.move::after {
    border-top: 1px solid #F78D36;
    border-right: 1px solid #F78D36;
}

/*バナー追加*/

.block_banner01 {
	margin-bottom:100px;
}
.block_banner01 a{
	display: block;
	width:1100px;
	max-width: 89.333%;
	margin:0 auto;
}

@media screen and (max-width: 768px) {
.block_banner01 {
	margin-bottom:60px;
}
}
