@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Noto+Sans+JP:wght@100..900&family=Reem+Kufi+Fun:wght@400..700&family=Oooh+Baby&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Maru+Gothic:wght@300;400;500;700;900&family=Zen+Old+Mincho&display=swap');
@media(max-width:767px) {
    .hide-for-small {
        display: none !important;
    }
}

@media(min-width:768px) {
    .show-for-small {
        display: none !important;
    }
}

html {
    font-size: 62.5%;
    overflow-y: scroll;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    -webkit-text-size-adjust: none;
    color: #231816;
    font-weight: 400;
    font-style: normal;
    overflow: hidden;
}

a {
    transition: all 0.5s;
}

a:not(.btn):hover {
    opacity: 0.6;
}

#go-top {
    position: fixed;
    bottom: -120px;
    left: 15px;
    opacity: 0;
    transition: all .3s;
    z-index: 99;
}

#go-top.show {
    opacity: 1;
    bottom: 70px;
}

#go-top a {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 15px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #f3000d;
    overflow: hidden;
    background-color: #fff;
    color: #f3000d;
    transition: .3s;
    font-family: 'Lexend', sans-serif;
}

#go-top a::after {
    content: "";
    width: 15px;
    height: 18px;
    mask-image: url(../images/index/icon-top.svg);
    -webkit-mask-image: url(../images/index/icon-top.svg);
    mask-size: 100% 100%;
    mask-position: center;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    background-color: #f3000d;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

#go-top a:hover {
    opacity: 1;
    background-color: #f3000d;
    color: #fff;
    border-color: #fff;
}

#go-top a:hover::after {
    background-color: #fff;
}

#go-top a img {
    margin: 0 auto;
}

.ff-kaku {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.ff-baby {
    font-family: "Oooh Baby", cursive;
}

.ff-maru {
    font-family: "Zen Maru Gothic", sans-serif;
}

.ff-lexend {
    font-family: "Lexend", sans-serif;
}

.ff-mincho {
    font-family: "Zen Old Mincho", sans-serif;
}


/*ANIMATION*/

.anim {
    opacity: 0;
}

.anim.blur {
    opacity: 1;
}

.anim.blur.is-animated,
.add-animation .anim.blur {
    animation-name: blurAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes blurAnime {
    from {
        filter: blur(10px);
        transform: scale(1.02);
    }
    to {
        filter: blur(0);
        transform: scale(1);
    }
}

.anim.fade {
    opacity: 0;
}

.anim.fade.is-animated {
    opacity: 1;
    animation-name: fade;
    animation-duration: 2s;
}

.anim.slideinBottom.is-animated {
    opacity: 1;
    animation-name: slideinBottom;
    animation-duration: 0.5s;
}

@keyframes slideinBottom {
    0% {
        transform: translateY(100px);
    }
    100% {
        transform: translateY(0);
    }
}

.anim.faderight.is-animated {
    opacity: 1;
    animation-name: faderight;
    animation-duration: 2s;
}

.anim.fade.is-animated {
    opacity: 1;
    animation-name: fade;
    animation-duration: 2s;
}

.anim.fadeleft.is-animated {
    opacity: 1;
    animation-name: fadeleft;
    animation-duration: 2s;
}

.anim.fadeup.is-animated {
    animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.anim.fadeup-2.is-animated {
    opacity: 1;
    animation-name: fadeup-2;
    animation-duration: 0.5s;
}

.home .anim.fadedown.is-animated {
    opacity: 1;
    animation-name: fadedown;
    animation-duration: 0.5s;
}

.anim.zoomin.is-animated {
    animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.anim.fadeup.is-animated.delay{
    animation-delay: 0.5s;
}
@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes faderight {
    from {
        opacity: 0;
        transform: translateX(-150px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes fadedown {
    from {
        opacity: 0;
        transform: translateY(-150px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes fadeup {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeup-2 {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0px);
    }
}

@keyframes fadeleft {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.anim.effectfade {
    opacity: 0;
    transform: translate(0, 20px);
    transition: all 1.5s ease;
}

.anim.effectfade.is-animated {
    opacity: 1;
    transform: translate(0, 0);
}


/*HEADER*/


/* .header-wrapper:after {
    content: "";
    height: 713px;
    width: 713px;
    background-image: url(../images/index/bg-header.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    border-radius: 50%;
    top: -202px;
    left: -108px;
    z-index: -5;
} */

.header-main .logo-left .logo {
    margin-right: 0px;
    width: 270px;
    line-height: 1;
    padding: 0;
    position: relative;
}

.header-inner {
    position: static;
    padding-left: 60px;
    padding-top: 18px;
    padding-right: 25px;
    padding-bottom: 15px;
}

#logo .header-logo {
    width: 100%;
}

.header-main .main-menu {
    flex: 1;
    margin-left: 20px;
}

.header-main .main-menu .nav {
    position: relative;
    width: fit-content;
    margin-left: auto;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.mega-menu {
    left: 0;
    position: absolute;
    text-align: left;
    width: 100%;
    text-align: center;
    padding-top: 0px;
    opacity: 0;
    transition: all .3s ease;
    z-index: -1;
    visibility: hidden;
    top: 117px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 5px;
}

.header-main .main-menu .nav>li.nav-service:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    top: 122px;
    z-index: 12;
}

.header-main .main-menu .nav>li {
    margin: 0;
    position: relative;
    transition: .3s;
    padding-bottom: 0px;
    padding: 0;
    border-right: 1px solid #ffffff;
}

.header-main .main-menu .nav>li:last-child {
    border-right: none;
}

.header-main .main-menu .nav>li>a {
    font-weight: bold;
    color: #231816;
    text-align: center;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    min-width: 120px;
}

.header-main .main-menu .nav>li>a span {
    margin-top: 10px;
}

.header-main .main-menu .nav>li>a:hover {
    opacity: 1;
    color: #fd000d;
}

@media (min-width: 768px) {
    /* .header-main .main-menu .nav>li>a::after {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        width: 0;
        height: calc(100% + 6px);
        background: #ef8200;
        transition: all .3s;
        z-index: -1;
    }
    .header-main .main-menu .nav>li.current>a::after,
    .header-main .main-menu .nav>li:hover>a::after {
        width: 100%;
    } */
    a.btn.btn-view img {
        padding-left: 10px;
    }
}

a.menu-btn {
    width: 60px;
    min-height: 60px;
    position: absolute;
    border: none;
    top: 0;
    right: 0;
    z-index: 8999;
    background-color: #f3000d;
    transition: none;
    height: auto;
    box-shadow: none;
    border-bottom-left-radius: 15px;
}

a.menu-btn span {
    display: block;
    position: absolute;
    height: 1px;
    width: 24px;
    top: 13px;
    background-color: #fff;
    left: 18px;
    transition: all 0.5s;
    border-radius: 10px;
}

a.menu-btn span:nth-child(2) {
    top: 22px;
}

a.menu-btn span:nth-child(3) {
    top: 31px;
}

a.menu-btn::after {
    content: 'Menu';
    left: 50%;
    transform: translateX(-50%);
    top: 38px;
    position: absolute;
    color: #fff;
    font-weight: 500;
    font-size: 1.2rem;
    width: max-content;
    text-align: center;
    font-family: 'Lexend', sans-serif
}

a.menu-btn.open:after {
    content: "Close";
}

body.menu-open header:before {
    display: none;
}

a.menu-btn.open span {
    display: block;
    position: absolute;
    transform: rotate(45deg);
    top: 23px;
    /* left: 21px; */
    width: 22px;
}

a.menu-btn.open span:nth-child(2) {
    display: none;
}

a.menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg);
}

@keyframes sdl {
    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%;
    }
}

.main-menu li.nav-item:hover>a span::after,
.main-menu li.nav-item.current>a span::after {
    left: 50%;
    opacity: 1;
}

.loading-active main {
    opacity: 0;
}

.loading-active header {
    opacity: 0;
}

.loading-active footer {
    opacity: 0;
}

.breadcrums {
    position: relative;
    padding: 25px 0;
}

.breadcrums ul {
    display: flex;
    justify-content: flex-start;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.breadcrums ul li>a {
    color: #f3000d;
}

.breadcrums ul li {
    position: relative;
    margin-bottom: 0;
}

.breadcrums ul li:not(:last-child) {
    margin-right: 35px;
}

.breadcrums ul li span {
    color: #231816;
    text-decoration: underline;
}

.breadcrums ul li span br {
    display: none;
}

.breadcrums ul li:not(:nth-last-child(1)):after {
    content: "";
    position: absolute;
    width: 7px;
    height: 12px;
    background-image: url(../images/index/arrow-right.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    top: 55%;
    transform: translateY(-50%);
    right: -22px;
}

ul.list-anchor {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.page-id-10 ul.list-anchor{
    justify-content: flex-start;
}
ul.list-anchor li {
    width: calc(20% - 20px);
    margin-right: 24px;
    margin-bottom: 20px;
}

ul.list-anchor li:last-child,
ul.list-anchor li:nth-child(5n) {
    margin-right: 0;
}

ul.list-anchor li a {
    display: flex;
    align-items: center;
    font-weight: 500;
    min-height: 64px;
    justify-content: flex-start;
    border: 1px solid #f3000d;
    color: #231816;
    position: relative;
    background-color: white;
    padding: 10px 20px;
    font-weight: 500;
    font-family: 'Noto Sans JP', sans-serif;
    border-radius: 8px;
    line-height: 1.185;
    padding-right: 40px;
}

ul.list-anchor li a:hover {
    color: #f3000d ;
    opacity: 1;
    background-color: #fff0f0;
}

ul.list-anchor li a::after {
    content: "";
    width: 16px;
    height: 19px;
    background-image: url(../images/index/icon-top.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    transform: translateY(-50%) rotate(180deg);
    top: 50%;
    right: 20px;
    transition: .3s;
}

.box-scroll {
    position: absolute;
    bottom: -70px;
    right: -65px;
    height: 130px;
    z-index: 2;
    color: #ec5a24;
}

.loading-active main {
    opacity: 0;
}

.box-scroll::after {
    content: "";
    position: absolute;
    top: 0px;
    width: 1px;
    height: 130px;
    animation: pathmove 1.8s ease-in-out infinite;
    /* opacity: 0; */
    left: 50%;
    transform: translateX(-50%);
    background: #000000;
}

a.scroll {
    font-size: 1.3rem;
    color: #000000;
    font-weight: 300;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -70px;
}

@keyframes pathmove {
    0% {
        height: 0;
        top: 0px;
        opacity: 0;
    }
    30% {
        height: 130px;
        opacity: 1;
    }
    100% {
        height: 0;
        top: 100px;
        opacity: 0;
    }
}

.main-menu {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}

ul.slick-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    bottom: -55px;
}

ul.slick-dots li {
    width: 13px;
    height: 13px;
    background-color: #bebebe;
    border-radius: 50%;
    margin: 0 5px;
}

ul.slick-dots li.slick-active {
    background-color: #fd000d;
}

ul.slick-dots li button {
    opacity: 0;
    padding: 0;
    display: flex;
    width: 100%;
    height: 100%;
}


/* header {
    position: fixed;
    top: 35px;
    left: 0;
    width: 100%;
    z-index: 9;
}

header.UpMove {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100px);
    }
}

header.DownMove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
} */

header {
    position: relative;
}

a.btn.btn-contact {
    width: 250px;
    height: 154px;
    border-bottom-left-radius: 47px;
    background: linear-gradient(32deg, rgba(71, 192, 232, 1) 0%, rgba(182, 107, 168, 1) 49%, rgba(235, 97, 84, 1) 98%);
    border: 2px solid #fff;
    border-width: 0 0 2px 2px;
    font-size: 2rem;
    letter-spacing: 0.1em;
    color: #fff;
    flex-direction: column;
    padding-top: 20px;
    justify-content: flex-start;
    font-weight: 500;
}

a.btn.btn-contact:hover {
    opacity: 0.6;
}

a.btn.btn-contact h2 {
    font-size: 6rem;
    letter-spacing: 0.1em;
    line-height: 1;
    font-family: 'Caveat', cursive;
    padding-bottom: 10px;
    font-weight: normal;
}

a.btn.btn-contact::after {
    width: 33px;
    height: 10px;
    background-image: url(../images/index/icon-right.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: 20px;
    bottom: 45px;
    transform: none;
    top: auto;
}


/* .header-wrapper {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 5;
} */


/* .news-item.item-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 25px 20px 30px;
    position: relative;
    margin-bottom: 0;
    font-family: "Noto Sans JP", sans-serif;
    border-bottom: 1px solid #c8c8c8;
}

.news-item.item-list:last-child {
    border-bottom: none;
}

.news-item.item-list:hover::before {
    right: 0;
}

.news-item .date {
    width: 110px;
    color: #757575;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    letter-spacing: 0.075em;
}

a.cat {
    width: 110px;
    min-height: 25px;
    display: flex;
    background-color: #b54919;
    border-radius: 0;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    align-items: center;
    justify-content: center;
}

.news-item.item-list .title {
    width: 100%;
    padding-top: 15px;
}

.news-item.item-list .title a {
    text-decoration: underline;
} */

.color-1 {
    color: #f3000d;
}

.color-2 {
    color: #0045b3;
}

.color-3 {
    color: #0069b3;
}

.color-4 {
    color: #0098db;
}

.news-item.item-list {
    position: relative;
    display: flex;
    align-items: center;
    padding: 25px 30px;
    flex-wrap: wrap;
}
.bot-social a img{
    max-width: 46px;
    height: auto;
}

.news-item.item-list:hover:after {
    width: 100%;
}

.news-item.item-list:hover .title a {
    opacity: 1;
}

.box-date-cat {
    display: flex;
    align-items: center;
}

.news-item .date {
    color: #231816;
    width: 150px;
    font-size: 1.7rem;
    font-family: 'Lexend', sans-serif;
    text-align: center;
}

a.cat {
    display: flex;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    background-color: #FFE1E1;
    min-width: 190px;
    min-height: 27px;
    color: #F3000D;
    font-size: 1.5rem;
    font-weight: 500;
}

.news-item.item-list .title {
    flex: 1;
}

.news-item.item-list .title a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    color: #222222;
    text-decoration: underline;
}

/* Store Search AJAX Loading */
#store-results {
    transition: opacity 0.3s ease;
}

#store-results.loading {
    opacity: 0.5;
    pointer-events: none;
}

.store-search-loading {
    position: relative;
}

.store-search-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
footer{
    border-top:1px solid #F3000D ;
}
.aab__accordion_component a[href^="tel:"] {
    color: #f3000d;
    text-decoration: underline;
}
.page-sub .contact-03{
    background-color: transparent;
}

.page-id-283.page-mac-contact .submit-btn .one-btn input{
    color: #fff;
}
.page-id-283.page-mac-contact .submit-btn .one-btn.back-btn input{
    color: #17008c;
}
@media(min-width:768px) {
    .logged-in .header-wrapper {
        top: 32px;
    }
    .header-wrapper {
        position: fixed;
        z-index: 10;
        width: 100%;
        background-color: #FFFDF5;
    }
    header{
        height: 128px;
    }
}

header.UpMove .header-wrapper {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-100px);
    }
}

header.DownMove .header-wrapper {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body{
    background-color: #FFFDF5;
}
.main-title.main-title-oneline{
    display: flex;
    align-items: center;
}
.main-title.main-title-oneline .main-title-jp{
    margin-top: 0;
    margin-left: 30px;
    margin-top: 21px;
}
.home-recruit-left .main-title-en{
    color: #0045B3;
}
.home-link .sub-title{
    font-size: 30px;
    font-weight: bold;
    padding: 15px 15px 35px;
    background-color: white;
}
.home-link .sub-title::after{
    bottom: 20px;
}
body.prevent-send .submit-btn .btn{
    pointer-events: none;
    cursor: default;
}