@charset "utf-8";
/* *****************************************************************************
   共通のスタイル記述
***************************************************************************** */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
a.btn {
    position: relative;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 1.4em 2em;
    background: #3238c6;
    text-align: center;
    line-height: 1em;
    display: block
}
a.btn::after {
    position: absolute;
    top: calc(50% - 6px);
    right: 15px;
    content: "";
    width: 8px;
    height: 12px;
    background: url("../images/ico_arrow.svg") center no-repeat;
    background-size: contain;
    display: block;
    transition: .3s;
}
a.btn:hover {
    background-color: #1e282d;
    text-decoration: none;
    transition: .3s;
}
@media screen and (max-width: 769px) {
    a.btn::after {
        top: calc(50% - 3px);
        width: 6px;
        height: 6px;
    }
}
a.btn-back {
    position: relative;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    min-width: 175px;
    padding: 9px 34px;
    border: 1px solid #FF0000;
    text-align: center;
    line-height: 1em;
    display: inline-block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
a.btn-back:hover::after, a.btn-back.active::after {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
@media screen and (min-width: 769px), print {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}
/* -----------------------------------------------------------------------------
 Header
----------------------------------------------------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 999;
    transition: .3s;
}
header.scroll {
    background-color: #fff;
}
header .logo {
    position: relative;
    margin: 14px 0 0 66px;
}
header .logo a {
    border-bottom: none;
    display: block;
}
header .logo a img {
    width: 163px;
    height: auto;
}
header .logo a img:nth-child(2) {
    display: none;
}
header nav {
    display: flex;
    justify-content: flex-end;
}
/* menu */
header nav .menu {
    font-size: 16px;
    margin: 3px 0 0 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
header nav .menu > li {
    margin-right: 2em;
    line-height: 1em;
}
header nav .menu > li > a {
    color: #000000;
    font-weight: 700;
    padding: 0.5em;
    border-bottom: none;
    display: inline-block;
    transition: 0.3s;
    font-weight: bold;
}
header.scroll nav .menu > li > a {
    color: #1e282d;
}
header nav .menu > li > a:hover {
    color: #3238c6;
    text-decoration: none;
    transition: 0.3s;
}
header nav .contact {
    width: 270px;
    height: 90px;
    background-color: #f9a900;
    text-align: center;
}
header nav .contact a {
    position: relative;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    width: 270px;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}
header nav .contact a:hover {
    background-color: #1e282d;
    text-decoration: none;
    transition: .3s;
}
header nav .contact a::before {
    content: "";
    width: 28px;
    height: 22px;
    margin-right: 10px;
    background: url("../images/ico_contact.svg") center no-repeat;
    background-size: contain;
    vertical-align: middle;
    display: inline-block;
}
header #bt-menu {
    display: none;
}
@media screen and (max-width: 1500px), print {
    header .logo {
        position: relative;
        margin: 20px 0 0 2vw;
    }
    header .logo a img {
        width: 10vw;
    }
    header nav .menu > li {
		margin-right: 5px;
	}
    header nav .menu > li > a {
        font-size: 1.3vw;
    }
}

@media screen and (max-width: 1090px), print {
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 60px;
        justify-content: space-between;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        z-index: 999;
    }
    header .logo {
        position: absolute;
        top: 10px;
        left: 5.3vw;
        width: 100px;
        margin: 0;
        z-index: 3;
    }
    header .logo a img {
        width: 100px;
        height: auto;
        vertical-align: top;
    }
    header .logo.open a img:nth-child(1) {
        display: none;
    }
    header .logo.open a img:nth-child(2) {
        display: block;
    }
    header nav {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        padding: 0;
        background-color: #3238c6;
        display: none;
    }
    header nav .menu {
        font-size: 18px;
        margin: 22vh 0 0 15.5vw;
        display: block;
    }
    header nav .menu > li {
        margin: 0 0 4.5vh 0;

    }
    header nav .menu > li > a {
        color: #fff !important;
    }
    header nav .menu > li > a:hover {
        color: #fff;
    }
    header nav .contact {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: 50px;
    }
    header nav .contact a {
        width: 100%;
    }
    header #bt-menu {
        position: absolute;
        top: 0;
        right: 0;
        width: 80px;
        height: 69px;
        cursor: pointer;
        display: block;
        z-index: 999;
    }
    header #bt-menu span {
        position: absolute;
        top: 29px;
        right: 28px;
        width: 23px;
        height: 2px;
        background-color: #000000;
        display: block;
        transition: .3s;
    }
    header #bt-menu span::before {
        position: absolute;
        top: -7px;
        right: 0;
        content: "";
        width: 23px;
        height: 2px;
        background-color: #000000;
        display: block;
        transition: .3s;
    }
    header #bt-menu span::after {
        position: absolute;
        top: 7px;
        right: 0;
        content: "";
        width: 23px;
        height: 2px;
        background-color: #000000;
        display: block;
        transition: .3s;
    }
    header.scroll #bt-menu span, header.scroll #bt-menu span::before, header.scroll #bt-menu span::after {
        background-color: #1e282d;
    }
    header #bt-menu.open span {
        position: absolute;
        top: 34px;
        right: 28px;
        width: 22px;
        height: 1px;
        background-color: transparent;
        display: block;
    }
    header #bt-menu.open span::before {
        position: absolute;
        top: 0;
        right: 0;
        content: "";
        width: 23px;
        height: 2px;
        background-color: #fff;
        -moz-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        -o-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
        transform: rotate(30deg);
        display: block;
        transition: .3s;
    }
    header #bt-menu.open span::after {
        position: absolute;
        top: 0;
        right: 0;
        content: "";
        width: 23px;
        height: 2px;
        background-color: #fff;
        -moz-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        -o-transform: rotate(-30deg);
        -ms-transform: rotate(-30deg);
        transform: rotate(-30deg);
        display: block;
        transition: .3s;
    }
}
@media screen and (max-width: 769px) {
    header nav .menu > li > a {
        font-size: inherit;
    }
}
/* -----------------------------------------------------------------------------
 contact
----------------------------------------------------------------------------- */
section.contact {
    width: 100%;
    background: url("../images/contact_bg.png") center no-repeat;
    background-size: cover;
}
section.contact .inner {
    width: 100%;
    max-width: 1054px;
    margin: 0 auto;
    padding: 65px 27px 80px;
    display: flex;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
section.contact .inner .left, section.contact .inner .right {
    color: #fff;
    width: 50%;
}
section.contact .inner .left h2 {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.26em;
}
section.contact .inner .left p {
    font-size: 32px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
section.contact .inner .right {
    display: flex;
    align-items: flex-end;
}
section.contact .inner .right .link {
    width: 100%;
}
section.contact .inner .right .link .btn {
    background-color: #f9a900;
}
section.contact .inner .right .link .btn:hover {
    background-color: #1e282d;
}
@media screen and (max-width: 769px) {
    section.contact {
        background: url("../images/contact_bg_sp.png") center no-repeat;
        background-size: cover;
    }
    section.contact .inner {
        padding: 45px 27px 60px;
        display: block;
    }
    section.contact .inner .left, section.contact .inner .right {
        width: 100%;
    }
    section.contact .inner .left h2 {
        font-size: 13px;
    }
    section.contact .inner .left p {
        font-size: 26px;
        letter-spacing: normal;
        white-space: normal;
    }
    section.contact .inner .right {
        margin-top: 32px;
    }
}
/* -----------------------------------------------------------------------------
 footer
----------------------------------------------------------------------------- */
footer {
    position: relative;
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    padding: 45px 27px 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
footer .inner {
    display: flex;
    justify-content: space-between;
}
footer .inner .ark-info {
    width: 40%
}
footer .inner .ark-info .info {
    color: #666666;
    font-size: 13px;
    margin-top: 20px;
}
footer .inner .ark-info .info a {
    color: #666666;
}
footer nav {
    width: 40%;
}
footer nav ul.menu {
    font-size: 14px;
    font-weight: 700;
    margin: 2em 0 0 0;
    display: flex;
    justify-content: flex-start;
    flex-flow: row wrap;
}
footer nav ul.menu li {
    margin: 0 3em 2em 0;
}
footer nav ul.menu li:last-child {
    margin: 0 0 2em 0;
}
footer nav ul.menu li a:hover {
    text-decoration: none;
}
footer nav ul.menu .spacer {
    width: 100%;
}
footer nav ul.sub {
    margin: 30px 0 0 0;
    display: flex;
    justify-content: flex-start;
    flex-flow: row wrap;
}
footer nav ul.sub {
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 0 0;
}
footer nav ul.sub li {
    margin: 0 3em 2em 0;
}
footer nav ul.sub li:last-child {
    margin: 0 0 2em 0;
}
footer nav ul.sub li a {
    color: #666666;
}
footer nav ul.sub li a:hover {
    color: #3036bc;
    text-decoration: none;
}
footer .copy {
    color: #666666;
    font-size: 12px;
    padding: 2em 0 5em 0;
    text-align: right;
}
.fo-btn {
    display: none;
}

/*foot_cara*/
.foot_cara{
    display: flex;
      max-width: 20%;
    margin: auto 0 auto auto ;
}
.foot_cara  >* + *{
    margin-left: 3%;
}

.foot_cara  img{
    width:100%;
}

@media screen and (max-width: 769px) {
    footer {
        padding: 50px 27px 0;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    footer .inner {
        display: block;
    }
    footer .inner .ark-info {
        width: auto;
    }
    footer .inner .ark-info .logo {
        text-align: center;
    }
    footer .inner .ark-info .info {
        font-size: 12px;
        margin-top: 30px;
    }
    footer nav {
        width: auto;
    }
    footer nav ul.menu .spacer {
        display: none;
    }
    .fo-btn {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50px;
        border-top: 1px solid #fff;
        text-align: center;
        display: flex;
        z-index: 999;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .fo-contact {
        width: 50%;
        background-color: #f9a900;
        text-align: center;
        z-index: 999;
    }
    .fo-contact a {
        position: relative;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        width: 100%;
        height: 100%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .3s;
    }
    .fo-contact a:hover {
        background-color: #1e282d;
        text-decoration: none;
        transition: .3s;
    }
    .fo-contact a::before {
        content: "";
        width: 28px;
        height: 22px;
        margin-right: 10px;
        background: url("../images/ico_contact.svg") center no-repeat;
        background-size: contain;
        vertical-align: middle;
        display: inline-block;
    }
    .fo-movie {
        width: 50%;
        background-color: #3238c6;
        border-left: 1px solid #fff;
        text-align: center;
        display: block;
        z-index: 999;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .fo-movie a {
        position: relative;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        width: 100%;
        height: 100%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .3s;
    }
    .fo-movie a:hover {
        background-color: #1e282d;
        text-decoration: none;
        transition: .3s;
    }
    .fo-movie a::before {
        content: "";
        width: 22px;
        height: 22px;
        margin-right: 10px;
        background: url("../images/ico_play.svg") center no-repeat;
        background-size: contain;
        vertical-align: middle;
        display: inline-block;
    }

/*foot_cara*/
.foot_cara{
    margin-top: 8%;
    margin-left: auto;
max-width:100%;
    margin: auto auto auto auto ;
}


}
/* -----------------------------------------------------------------------------
 flt-bnr
----------------------------------------------------------------------------- */
.flt-bnr {
    position: fixed;
    bottom: calc(50% - 146px);
    right: -490px;
    width: 570px;
    height: 292px;
    background-color: #3238c6;
    border-radius: 16px 0 0 16px;
    -moz-border-radius: 16px 0 0 16px;
    -webkit-border-radius: 16px 0 0 16px;
    text-align: center;
    z-index: 998;
    transition: .3s;
}
.flt-bnr:hover {
    right: 0px;
    transition: .3s;
}
.flt-bnr a {
    width: 100%;
    display: flex;
}
.flt-bnr a .subt {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    width: 80px;
    height: 292px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    display: flex;
    justify-content: center;
    align-items: center;
}
.flt-bnr a .subt::after {
    content: "";
    width: 25px;
    height: 25px;
    margin-top: 10px;
    background: url("../../images/btn_movie_ico.svg") no-repeat;
    background-size: contain;
    display: inline-block;
}
.flt-bnr:hover a .subt::after {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.flt-bnr a:hover {
    text-decoration: none;
}
.flt-bnr a .thumb {
    padding: 23px 0;
}
@media screen and (max-width: 769px) {
    .flt-bnr {
        display: none;
    }
}
.col_main{
    color: var(--col_main);
}