@charset "UTF-8";
/*-----------------------------------
mainimage_block
-----------------------------------*/
#mainimage_block {
    position: relative;
    z-index: 0;
}
#mainimage_block .text_box {
    position: absolute;
    top: 27vw;
    left: 9vw;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 5;
}
#mainimage_block .text_box p {
    font-size: 45px;
    color: #fff;
    line-height: 180%;
    font-weight: bold;
}
@media screen and (max-width: 940px) {
    #mainimage_block .text_box p {
        font-size: 4vw;
    }
}
@media screen and (max-width: 640px) {
    #mainimage_block .text_box p {
        font-size: 24px;
        letter-spacing: 0;
    }
    #mainimage_block .text_box {
        position: absolute;
        top: 62%;
        left: 5%;
    }
}
@media screen and (max-width: 420px) {
    #mainimage_block .text_box p {
        font-size: 4.6vw;
    }
}
/*-----------------------------------
#mainimage_block swiper
-----------------------------------*/
#mainimage_block .swiper-slide img {
    width: 100%;
    position: relative;
}
#mainimage_block .swiper-slide {
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: relative;
}
#mainimage_block .swiper-slide img {
    object-fit: cover;
    width: 100%;
}
/*ズーム*/
#mainimage_block .swiper-slide:after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #000000;
    background-blend-mode: multiply;
    opacity: 0.25;
    animation: zoomUp 1.0s;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
@keyframes zoomUp {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}
#mainimage_block .swiper-slide-active .slide-img,
#mainimage_block .swiper-slide-duplicate-active .slide-img,
#mainimage_block .swiper-slide-prev .slide-img {
    animation: zoomUp 10s linear 0s 1 normal both;
}
/*ページネーション
--------------------------*/
#mainimage_block .swiper-horizontal>.swiper-pagination-bullets,
#mainimage_block .swiper-pagination-bullets.swiper-pagination-horizontal,
#mainimage_block .swiper-pagination-custom,
#mainimage_block .swiper-pagination-fraction {
    top: 50% !important;
    left: auto !important;
    right: 0 !important;
    width: 60px !important;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
#mainimage_block .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
#mainimage_block .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 19px var(--swiper-pagination-bullet-horizontal-gap, 4px) !important;
}
#mainimage_block .swiper-pagination-bullet {
    background: #fff !important;
    opacity: 1 !important;
    border-radius: 0 !important;
    display: block !important;
    height: 85px !important;
    width: 3px !important;
}
#mainimage_block .swiper-pagination-bullet-active {
    background: #d42b47 !important;
}
@media screen and (max-width: 940px) {
    #mainimage_block .swiper-horizontal>.swiper-pagination-bullets,
    #mainimage_block .swiper-pagination-bullets.swiper-pagination-horizontal,
    #mainimage_block .swiper-pagination-custom,
    #mainimage_block .swiper-pagination-fraction {
        width: 50px !important;
    }
    #mainimage_block .swiper-pagination-bullet {
        height: 50px !important;
    }
}
@media screen and (max-width: 640px) {
    #mainimage_block .swiper-slide img {
        height: 100dvh;
    }
    #mainimage_block .swiper-horizontal>.swiper-pagination-bullets,
    #mainimage_block .swiper-pagination-bullets.swiper-pagination-horizontal,
    #mainimage_block .swiper-pagination-custom,
    #mainimage_block .swiper-pagination-fraction {
        top: auto !important;
        left: 10px !important;
        bottom: 10px !important;
        text-align: left !important;
        width: 100% !important;
        -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
        transform: translateY(0%);
    }
    #mainimage_block .swiper-pagination-bullet {
        background: #fff !important;
        opacity: 1 !important;
        border-radius: 0 !important;
        height: 3px !important;
        width: 50px !important;
        display: inline-block !important;
    }
    #mainimage_block .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
    #mainimage_block .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 8px) !important;
    }
    #mainimage_block .swiper-pagination-bullet-active {
        background: #d42b47 !important;
    }
}
/*-----------------------------------
スクロールダウン
-----------------------------------*/
/*スクロールダウン全体の場所*/
.bl_scrollDown {
    position: absolute;
    bottom: 80px;
    right: 50px;
    z-index: 100;
    margin-bottom: -90px;
}
/* 丸の描写 */
.bl_scrollDown:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 16px;
    z-index: 1;
    width: 2px;
    height: 40px;
    border-radius: 50%;
    background: #D42442;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
    animation:
        circlemove 1.6s ease-in-out infinite,
        cirlemovehide 1.6s ease-out infinite;
}
.bl_scrollDown:after {
    content: "";
    position: absolute;
    top: -80px;
    right: 15px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 2px;
    height: 130px;
    background: #E3E3E3;
}
/*Scrollテキストの描写*/
.bl_scrollDown_body {
    position: absolute;
    right: 0;
    top: -180px;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.05em;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}
/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
    0% {
        bottom: 35px;
    }
    100% {
        bottom: -15px;
    }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
    0% {
        opacity: 0
    }
    50% {
        opacity: 1;
    }
    80% {
        opacity: 0.9;
    }
    100% {
        opacity: 0;
    }
}
@media screen and (max-width: 1600px) {
    .bl_scrollDown {
        right: 1%;
        bottom: 30px;
    }
}
@media screen and (max-width: 940px) {
    .bl_scrollDown:after {
        right: 10px;
    }
    .bl_scrollDown:before {
        right: 11px;
    }
}
@media screen and (max-width: 640px) {
    .bl_scrollDown {
        right: 12px;
    }
    .bl_scrollDown_body {
        top: -175px;
        font-size: 12px;
        font-weight: bold;
    }
    .bl_scrollDown:after {
        height: 90px;
    }
    .bl_scrollDown:before {
        height: 20px;
    }
    @keyframes circlemove {
        0% {
            bottom: 55px;
        }
        100% {
            bottom: 15px;
        }
    }
}
/*-----------------------------------
	about_block
-----------------------------------*/
#about_block {
    margin-top: -164px;
    position: relative;
}
#about_block::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 24%;
    height: 100%;
    z-index: -1;
    background-color: #f5f5f5;
}
#about_block h2 {
    font-size: 44px;
    color: #fff;
    line-height: 1;
}
#about_block .content_box ul {
    margin-top: 42px;
}
#about_block .btn_wrap {
    margin-top: 0;
    text-align: center;
}
#about_block a.el_btn {
    font-size: 20px;
    display: inline-block;
    width: 385px;
    padding: 25px 0;
    background-color: #D42442;
    border: 2px solid transparent;
    color: #fff;
    text-align: center;
    text-decoration: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    position: relative;
    font-weight: bold;
}
#about_block a.el_btn:focus,
#about_block a.el_btn:hover {
    background-color: #fff;
    border-color: currentColor;
    color: #343434;
}
#about_block .el_btn .el_btn_append::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.5em / 2);
    right: 1em;
    width: 0.5em;
    height: 0.5em;
    border-top: 2px solid;
    border-right: 2px solid;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
@media screen and (max-width: 1200px) {
    #about_block .content_box ul {
        margin-top: 20px;
    }
    #about_block {
        margin-top: -12vw;
    }
    #about_block::before{
        content: none;
    }
    #about_block a.el_btn {
        font-size: 18px;
    }
}
@media screen and (max-width: 640px) {
    #about_block h2 {
        font-size: 28px;
        color: #b91e38;
    }
    #about_block {
        margin-top: 60px;
    }
    #about_block .content_box ul {
        margin-top: 15px;
        margin-bottom: 40px;
    }
    #about_block a.el_btn {
        font-size: 15px;
        padding: 15px 0;
        width: 100%;
    }
    #about_block .btn_wrap {
        margin-top: 0;
    }
}
/*-----------------------------------
philosophy_block
-----------------------------------*/
#philosophy_block {
    padding-top: 90px;
    position: relative;
}
#philosophy_block::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 24%;
    height: 94%;
    z-index: -1;
    background-color: #f5f5f5;
}
#philosophy_block .row_box {
    position: relative;
}
#philosophy_block .title_style {
    margin-bottom: 130px;
    color: #2A2A2A;
}
#philosophy_block .philosophy_list {
    width: 41%;
    position: relative;
}
#philosophy_block .philosophy_list>*+* {
    margin-top: 70px;
}
#philosophy_block .philosophy_list::before {
    content: '';
    width: 98vw;
    height: 126%;
    background-color: #f5f5f9;
    position: absolute;
    top: -12%;
    left: -50vw;
    z-index: -1;
}
#philosophy_block .philosophy_list h3 {
    font-size: 28px;
    margin-bottom: 30px;
    line-height: 1;
    color: #2A2A2A;
}
#philosophy_block .philosophy_list h3 span {
    font-size: 55px;
    font-family: "Josefin Sans", sans-serif;
    position: relative;
    margin-right: 35px;
    vertical-align: middle;
}
#philosophy_block .philosophy_list h3 span::before {
    content: '';
    background-color: #e54d4d;
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
}
#philosophy_block .philosophy_list p {
    font-size: 18px;
    line-height: 2.2;
    color: #4B4B4B;
}
#philosophy_block .img_box {
    width: calc(50% + (50vw - 50%));
    position: absolute;
    height: 100%;
    bottom: 0;
    right: calc(50% - 50vw)
}
@media screen and (max-width: 1200px) {
    #philosophy_block .philosophy_list {
        width: 100%;
    }
    #philosophy_block .img_box {
        position: relative;
        order: 1;
        width: 70vw;
        height: auto;
        margin-left: auto;
        margin-right: auto;
        margin-top: 60px;
        right: 0;
    }
    #philosophy_block .title_style {
        margin-bottom: 85px;
    }
    #philosophy_block .philosophy_list>*+* {
        margin-top: 65px;
    }
    #philosophy_block {
        padding-top: 120px;
    }
    #philosophy_block .philosophy_list p br {
        display: none;
    }
    #philosophy_block::before {
        content: none;
    }
    #philosophy_block .philosophy_list::before {
        content: '';
        width: 116%;
        height: 135%;
        top: -30px;
        left: -6%;
    }
}
@media screen and (max-width: 640px) {
    #philosophy_block .img_box {
        width: 100%;
    }
    #philosophy_block .philosophy_list::before {
        content: none;
    }
    #philosophy_block .title_style {
        margin-bottom: 38px;
    }
    #philosophy_block .philosophy_list h3 span::before {
        bottom: -5px;
    }
    #philosophy_block .philosophy_list h3 span {
        font-size: 25px;
        margin-right: 10px;
    }
    #philosophy_block .philosophy_list h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    #philosophy_block .philosophy_list p {
        font-size: 14px;
        line-height: 2;
    }
    #philosophy_block .philosophy_list>*+* {
        margin-top: 45px;
    }
    #philosophy_block .img_box {
        margin-top: 35px;
    }
    #philosophy_block {
        padding-top: 90px;
    }
}
/*-----------------------------------
#philosophy_block swiper
-----------------------------------*/
#philosophy_block .swiper {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#philosophy_block .slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*ページネーション
--------------------------*/
#philosophy_block .swiper-horizontal>.swiper-pagination-bullets,
#philosophy_block .swiper-pagination-bullets.swiper-pagination-horizontal,
#philosophy_block .swiper-pagination-custom,
#philosophy_block .swiper-pagination-fraction {
    left: 20px !important;
    bottom: 20px !important;
    text-align: left !important;
}
#philosophy_block .swiper-pagination-bullet {
    background: #fff !important;
    opacity: 1 !important;
    border-radius: 0 !important;
    height: 3px !important;
    width: 85px !important;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 8px) !important;
}
#philosophy_block .swiper-pagination-bullet-active {
    background: #d42b47 !important;
}
@media screen and (max-width: 640px) {
    #philosophy_block .swiper-pagination-bullet {
        width: 50px !important;
    }
    #philosophy_block .swiper-horizontal>.swiper-pagination-bullets,
    #philosophy_block .swiper-pagination-bullets.swiper-pagination-horizontal,
    #philosophy_block .swiper-pagination-custom,
    #philosophy_block .swiper-pagination-fraction {
        left: 10px !important;
        bottom: 10px !important;
    }
}
/*-----------------------------------
	news_block
-----------------------------------*/
#news_block {
    margin: 220px 0 110px;
}
#news_block .news_inner {
    width: 1280px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}
#news_block .btn_box {
    margin-top: 28px;
}
#news_block ul {
    margin-top: 40px;
}
#news_block ul li {
    background: #fff;
}
#news_block ul li span {
    font-size: 16px;
    display: block;
    width: 150px;
    color: #adbacf;
    font-weight: bold;
}
#news_block ul li p {
    display: block;
    width: calc(100% - 150px);
}
#news_block ul li:nth-child(even) a {
    background: #F8F8F8;
}
#news_block ul li a {
    padding: 35px 55px;
    transition: ease 0.2s;
}
#news_block ul li a:hover {
    background: #d42442;
    color: #fff;
}
#news_block ul li a:hover span {
    color: #fff;
}
@media screen and (max-width: 1200px) {
    #news_block {
        margin: 160px 0 110px;
    }
    #news_block ul li a {
        padding: 25px 35px;
    }
}
@media screen and (max-width: 640px) {
    #news_block {
        margin-top: 90px;
        margin-bottom: 90px;
    }
    #news_block .news_inner {
        position: relative;
        padding-bottom: 70px;
    }
    #news_block .btn_box {
        position: absolute;
        bottom: 0;
        right: 0;
    }
    #news_block ul {
        margin-top: 0;
    }
    #news_block ul li a {
        padding: 15px;
    }
    #news_block ul li span {
        width: 100%;
    }
    #news_block ul li p {
        width: 100%;
        margin-top: 5px;
    }
}
/*-----------------------------------
block_style(business_block,recruit_block,franchise_block)
-----------------------------------*/
.block_style {
    margin-bottom: 110px;
}
.block_main {
    width: 100%;
    height: 30vw;
    background-size: cover;
    background-position: center;
    position: relative;
}
#business_block .block_main {
    background-image: url(../img/index/block_main_01.jpg);
}
#recruit_block .block_main {
    background-image: url(../img/index/block_main_02.jpg);
}
#franchise_block .block_main {
    background-image: url(../img/index/block_main_03.jpg);
}
.block_main:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #919191;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
}
.block_main .title_box {
    position: absolute;
    bottom: 45px;
    left: 45px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, .5);
}
.block_main .title_box h2 {
    /*width: 325px;*/
    font-size: 40px;
    margin-bottom: 45px;
    position: relative;
}
/*
.block_main .title_box h2:after {
    content: "";
    display: block;
    width: 150px;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: 12px;
    right: 0;
}
#franchise_block .block_main .title_box h2:after {
    content: "";
    display: block;
    width: 150px;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: 12px;
    right: -160px;
}
*/
.block_main .title_box h2 span {
    display: block;
    font-size: 20px;
    margin-bottom: 26px;
}
.block_main .title_box p {
    font-size: 34px;
    line-height: 1.6;
}
/* content_box */
.content_box.contents_inner {
    max-width: 100%;
}
.content_box ul {
    margin-top: 65px;
    margin-bottom: 55px;
}
.content_box li {
    width: 32%;
    margin-bottom: 2%;
    background: #fff;
    box-shadow: 0 15px 13px -6px rgb(197 195 249 / 15%);
    transition: ease 0.2s;
}
.content_box li:hover {
    box-shadow: none;
}
.content_box li a {
    display: block;
    height: 100%;
}
/* .content_box li .ame {
    position: relative;
} */
.content_box li a:hover .text_box h3 {
    color: #d42442;
}
.content_box .img_box img {
    object-fit: cover;
    object-position: center 25%;
    width: 100%;
    height: 10vw;
}
.content_box .text_box {
    padding: 25px 30px 20px;
}
.content_box .tab_link {
    position: relative;
}
.content_box .tab_link::before {
    content: url(../img/index/icon_link.svg);
    position: absolute;
    /* transform: scale(0.06); */
    width: 30px;
    height: 30px;
    top: 10px;
    right: 10px;
}
.content_box .text_box h3 {
    font-size: 20px;
    color: #2A2A2A;
    margin-bottom: 15px;
}
.content_box .text_box h3 span {
    font-size: 14px;

}
.content_box .text_box p {
    font-size: 15px;
    line-height: 200%;
    color: #747474;
}
.content_box .btn_box {
    overflow: hidden;
}
.content_box .btn_box a {
    float: right;
}
.block_main .title_box p br.block {
    display: none;
}
/* franchise_block */
#franchise_block .content_box li {
    width: 48%;
}
#franchise_block .content_box .img_box img {
    object-position: center 25%;
    height: 15vw;
}
@media screen and (max-width: 1300px) {
    .content_box .text_box h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .content_box .text_box p {
        font-size: 14px;
    }
}
@media screen and (max-width: 1200px) {
    .block_main .title_box p {
        font-size: 28px;
    }
    .block_main .title_box h2 {
        /*width: 305px;*/
        font-size: 35px;
    }
    .block_main .title_box h2 span {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .block_main {
        height: 40vw;
    }
    .block_main .title_box p br.block {
        display: block;
    }
    .content_box li {
        width: 49%;
    }
    .content_box li:nth-child(n+3) {
        margin-top: 20px;
    }
    .content_box .img_box img {
        height: 16vw;
    }
}
@media screen and (max-width: 640px) {
    .block_main .title_box {
        bottom: 20px;
        left: 20px;
    }
    .block_main {
        height: 70vw;
    }
    .block_main:before {
        background: #707070;
    }
    .block_main .title_box h2 {
        width: auto;
        font-size: 18px;
        letter-spacing: 0;
        margin-bottom: 25px;
    }
    .block_main .title_box h2:after {
        display: none;
    }
    #franchise_block .block_main .title_box h2:after {
        display: none;
    }
    .block_main .title_box h2 span {
        font-size: 12.5px;
        margin-bottom: 10px;
    }
    .block_main .title_box p {
        font-size: 13.5px;
        font-weight: bold;
        letter-spacing: 0;
    }
    .content_box ul {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .content_box li {
        width: 100%;
    }
    .content_box .text_box {
        padding: 15px;
    }
    .content_box .text_box h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .content_box .img_box img {
        height: 40vw;
    }
    .content_box .text_box p {
        font-size: 13px;
        line-height: 1.8;
    }
    .content_box li:nth-child(n+2) {
        margin-top: 20px;
    }
    .block_style {
        margin-bottom: 100px;
    }
/* franchise_block */
    #franchise_block .content_box li {
        width: 100%;
    }
    #franchise_block .content_box .img_box img {
        height: 40vw;
    }
}
