@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Noto_Sans_JP';
    src: url(../font/Noto_Sans_JP/static/NotoSansJP-Medium.ttf);
}

/*font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", sans-serif;
}*/

header {
    display: flex;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background-color: #fff;
}

h1 {
    width: 35%;
    margin-top: 1%;
    margin-left: 2%;
    margin-right: 5%;
}

h1 img {
    width: 100%;
}

/*nav*/
nav {
    width: 100%;
    margin-top: 1%;
}

.header-nav-box {
    display: flex;
}

.header-nav-box ul {
    display: flex;
    width: 68%;
    margin-left: auto;
    margin-right: -5%;
}

.header-nav-box ul li { 
    width: calc( 100% / 3 );
    list-style-type: none;
}

.header-nav-box ul li a {
    display: block;
    width: fit-content;
    list-style: 1;
    color: #222;
    text-decoration: none;
    text-align: center;
}

/*map-nav*/
.map span {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.map a {
    padding: 20% 10% 8%;
    font-size: 1.5vw;
    background-color: #fff;
}

.map a:hover i {
    color: #fff;
}

.map a:hover span {
    color: #fff;
}

.map a:hover {
    border-radius: 3px;
    background-color: #223BBC;
}

.map i {
    position: relative;
    top: -0.5vw;
    font-size: 3vw;
    color: #223BBC;
}

/*question-nav*/
.question span {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.question a {
    padding: 20% 16.5% 8%;
    font-size: 1.5vw;
    background-color: #fff;
}

.question a:hover i {
    color: #fff;
}

.question a:hover span {
    color: #fff;
}

.question a:hover {
    border-radius: 3px;
    background-color: #223BBC;
}

.question i {
    position: relative;
    top: -0.5vw;
    font-size: 3vw;
    color: #223BBC;
}

/*search-nav*/
.search span {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.search a {
    padding: 20% 25% 8%;
    font-size: 1.5vw;
    background-color: #fff;
}

.search a:hover i {
    color: #fff;
}

.search a:hover span {
    color: #fff;
}

.search a:hover {
    border-radius: 3px;
    background-color: #223BBC;
}

.search i {
    position: relative;
    top: -0.5vw;
    font-size: 3vw;
    color: #223BBC;
}

/*login*/
.login-box {
    width: 25%;
    margin-top: 3%;
    margin-right: 3%;
}

.login-box a {
    display: block;
    padding-top: 10%;
    padding-bottom: 10%;
    font-size: 1.7vw;
    text-align: center;
    text-decoration: none;
    border-radius: 3px;
    background: rgb(255,192,0);
    background: linear-gradient(90deg, rgba(255,192,0,1) 19%, rgba(255,157,0,1) 100%);
}

.login-box a:hover {
    background: rgb(255,192,0);
    background: linear-gradient(90deg, rgba(255,192,0,1) 100%, rgba(255,157,0,1) 100%);
}

.login-box a:hover {
    opacity: 0.5;
}

.login-box i {
    margin-right: 10%;
    color: #fff;
    font-size: 2vw;
}

.login-box span {
    color: #fff;
    text-align: center;
}

/*下の固定化*/
.nav-box2 ul {
    display: flex;
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 100;
}

.nav-box2 ul li {
    display: inline-block;
    width: calc( 100% / 4 );
    height: 7.5vw;
    list-style-type: none;
    border-left: 1px solid #fff;
    background-color: #223BBC;
}

.nav-box2 ul li:nth-of-type(1) {
    border-left: none;
}

.nav-box2 ul li a {
    display: block;
    padding: 10%;
    color: #fff;
    font-size: 1.7vw;
    text-align: center;
    text-decoration: none;
}

.nav-box2 ul li:nth-of-type(2) a {
    padding: 5%;
    white-space: pre-wrap;
}

/*.nav-box2 hover*/
.nav-box2 ul li:hover a {
    color: #223BBC;
    background-color: #fff;
}

/*header下一つ目*/
.loop-box {
    width: 95%;
    margin-top: 14.5%;
    margin-left: auto;
    margin-right: auto;
    padding: 0.2%;
    color: red;
    font-size: 1.7vw;
    font-weight: 1000;
    border: 1px solid red;
    border-radius: 5px;
    background-color: #FDF4F9;
    overflow: hidden;
}

.loop-child-box {
    display: flex;
}

.loop-child-box p {
    white-space : nowrap;
}

.loop-child-box p:first-child {
    animation: loop 50s -25s linear infinite;
}

.loop-child-box p:last-child {
    animation: loop2 50s linear infinite;
}

@keyframes loop {
    0% {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
@keyframes loop2 {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}


/*header下二つ目*/
.nav-box3 ul {
    display: flex;
    flex-wrap: wrap;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
}

.nav-box3 ul li {
    width: 33%;
    list-style-type: none;
}

.nav-box3 ul li a {
    display: block;
    padding-top: 4%;
    padding-bottom: 2%;
    font-size: 2vw;
    font-weight: 800;
    color: #223BBC;
    text-align: center;
    text-decoration: none;
    border-left: 1px solid #E1E1E1;
    border-top: 1px solid #E1E1E1;
}

.nav-box3 ul li:nth-of-type(1) a,.nav-box3 ul li:nth-of-type(2) a,.nav-box3 ul li:nth-of-type(4) a,.nav-box3 ul li:nth-of-type(5) a {
    border-right: none;
}

.nav-box3 ul li:nth-of-type(1) a,.nav-box3 ul li:nth-of-type(4) a {
    border-left: none;
}

/*smartで使うものなので領域事消した*/
.nav-box3 .fa-chevron-right {
    margin-right: 10%;
    color: #223BBC;
    font-size: 2vw;
}

.nav-box3 .fa-chevron-down {
    display: none;
}

/*.nav-box3 hover*/
.nav-box3 ul li a:hover {
    background-color: #F4F4F4;
}

/*パンくずリスト*/
.list-box ul {
    display: flex;
    padding: 2% 0 2% 65%;
    background-color: #FAFAFA;
}

.list-box ul li {
    list-style-type: none;
}

.list-box ul li::after {
    content: " > " ;
    font-size: 1.5vw;
    color: #223BBC;
}

.list-box ul li:nth-of-type(2)::after {
    content: "";
}

.list-box ul li:nth-child(2) {
    display: block;
    margin-left: 1%;
}

.list-box ul li a {
    color: #223BBC;
    font-size: 1.5vw;
    text-decoration: none;
}

/*section*/
.section-flex-box{
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.section-container-box {
    margin-top: 2.5%;
}

/*注意box*/
.caution-box {
    padding: 2%;
    line-height: 2;
    border-radius: 5px;
    border: 1px solid red;
    background-color: #FCEFF0;
}

.caution-box a {
    display: block;
    color: #223BBC;
    font-size: 2vw;
    text-decoration: none;
}

.caution-box .fa-circle-exclamation {
    margin-right: 1%;
    color: red;
    font-size: 2vw;
}

/*注意の下*/
.caution-box + a {
    display: block;
    margin-top: 2%;
    margin-left: 2%;
    color: #223BBC;
    font-size: 1.8vw;
    text-decoration: none;
}

.caution-box + a .fa-chevron-right {
    margin-right: 1%;
    color: #223BBC;
    font-size: 1.7vw;
}

.section-container-box h2 {
    margin-top: 8%;
    margin-bottom: 3%;
    color: #222;
    font-size: 3vw;
}

/*サービスボックス*/
/*サービスボックス青い部分の文字*/
.service-parent-box h3 a {
    display: block;
    width: 100%;
    line-height: 3;
    font-size: 2.2vw;
    color: #fff;
    text-decoration: none;
    background-color: #223BBC;
}

.service-parent-box h3 a:hover {
    background-color: #4462CA;
}

.service-parent-box h3 a i {
    margin-left: 3%;
    margin-right: 3%;
    font-size: 2.2vw;
}

/*サービスボックス横並び*/
.service-flex-box {
    border-radius: 5px;
}

.service-parent-box {
    padding-bottom: 2%;
    border-left: 1px solid #c1c1c1;
    border-right: 1px solid #c1c1c1;
    border-bottom: 1px solid #c1c1c1;
}

/*資金調達*/
.service-flex-box:nth-of-type(1) .service-parent-box:nth-of-type(1) .service-child {
    margin-top: 2%;
}

.service-flex-box:nth-of-type(1) .service-parent-box:nth-of-type(1) .service-child a {
    display: block;
    line-height: 2;
    font-size: 2vw;
    color: #223BBC;
    text-decoration: none;
}

.service-flex-box:nth-of-type(1) .service-parent-box:nth-of-type(1) .service-child a:hover {
    color: #EC9121;
}

.service-flex-box:nth-of-type(1) .service-parent-box:nth-of-type(1) .service-child i {
    margin-left: 4%;
    margin-right: 2%;
}

/*経営サポート*/
.service-flex-box:nth-of-type(1) .service-parent-box:nth-of-type(2) .service-child {
    margin-top: 2%;
}

.service-flex-box:nth-of-type(1) .service-parent-box:nth-of-type(2) .service-child a {
    display: block;
    font-size: 2vw;
    color: #223BBC;
    line-height: 2;
    text-decoration: none;
}

.service-flex-box:nth-of-type(1) .service-parent-box:nth-of-type(2) .service-child a:hover {
    color: #EC9121;
}

.service-flex-box:nth-of-type(1) .service-parent-box:nth-of-type(2) .service-child i {
    margin-left: 4%;
    margin-right: 2%;
}

/*事業サポート*/
.service-flex-box:nth-of-type(2) .service-parent-box:nth-of-type(1) .service-child {
    margin-top: 2%;
}

.service-flex-box:nth-of-type(2) .service-parent-box:nth-of-type(1) .service-child a {
    display: block;
    font-size: 2vw;
    color: #223BBC;
    line-height: 2;
    text-decoration: none;
}

.service-flex-box:nth-of-type(2) .service-parent-box:nth-of-type(1) .service-child a:hover {
    color: #EC9121;
}

.service-flex-box:nth-of-type(2) .service-parent-box:nth-of-type(1) .service-child i {
    margin-left: 4%;
    margin-right: 2%;
}

/*予約*/
.service-flex-box:nth-of-type(2) .service-parent-box:nth-of-type(2) .service-child {
    margin-top: 2%;
}

.service-flex-box:nth-of-type(2) .service-parent-box:nth-of-type(2) .service-child a {
    display: block;
    font-size: 2vw;
    color: #223BBC;
    line-height: 2;
    text-decoration: none;
}

.service-flex-box:nth-of-type(2) .service-parent-box:nth-of-type(2) .service-child a:hover {
    color: #EC9121;
}

.service-flex-box:nth-of-type(2) .service-parent-box:nth-of-type(2) .service-child i {
    margin-left: 4%;
    margin-right: 2%;
}

/*便利*/
.service-flex-box:nth-of-type(2) .service-parent-box:nth-of-type(3) .service-child {
    margin-top: 2%;
}

.service-flex-box:nth-of-type(2) .service-parent-box:nth-of-type(3) .service-child a {
    display: block;
    font-size: 2vw;
    color: #223BBC;
    line-height: 2;
    text-decoration: none;
}

.service-flex-box:nth-of-type(2) .service-parent-box:nth-of-type(3) .service-child a:hover {
    color: #EC9121;
}

.service-flex-box:nth-of-type(2) .service-parent-box:nth-of-type(3) .service-child i {
    margin-left: 4%;
    margin-right: 2%;
}


.section-box6 {
    display: flex;
    margin-top: 7%;
    flex-wrap: wrap;
    gap:0 1px;
}
    
.tab-label {
    margin-bottom: 3%;
    color: #222;
    font-size: 2.2vw;
    font-weight: 600;
    border-left: 1px solid #c8c8c8;
    border-right: 1px solid #c8c8c8;
    border-top: 1px solid #c8c8c8;
    border-bottom: 1px solid #223BBC;
	padding: 1% 1%;
    order: -1;/*横並びの中で順序を決めている。*/
    flex: 1;/*領域に収めるために、どのように伸長・収縮させるか*/
    text-align: center;
}

.tab-content {
    width: 100%;
	display: none;
    /*触ってるところ以外は消した*/
}

.tab-switch:checked+.tab-label {/*checkボタン時にラベルがどう表示されるか*/
    color: #223BBC;
    border-left: 1px solid #223BBC;
    border-right: 1px solid #223BBC;
    border-top: 1px solid #223BBC;
    border-bottom: none;
}

.tab-switch:checked+.tab-label+.tab-content {
	display: block;/*触ると開くようにした*/
}

.tab-switch {
	display: none;/*チェックボタン消した*/
}

.section-box6 time {
    color: #222;
    font-size: 1.8vw;
    font-weight: 500;
}

.section-box6 ul li{
    margin-bottom: 2%;
    list-style: none;
    border-bottom: 1px solid #c8c8c8;
}

.section-box6 ul li a {
    font-size: 2vw;
    font-weight: 500;
    text-decoration: none;
}

.section-box6 i {
    margin-right: 0.3%;
    margin-bottom: 2%;
    font-size: 1.8vw;
    color: #223BBC;
}

.section-box6 .fa-file-pdf {
    margin-left: 0.5%;
    color: red;
}

.section-box6 .fa-folder-open {
    margin-left: 0.5%;
    color: #223BBC;
}

.section-box6 span {
    color: #223BBC;
}

.section-box6 ul li a:hover {
    color: #EC9121;
}

.section-box6 ul li a:hover span {
    color: #EC9121;
}

.section-box6 ul li a:hover .fa-file-pdf {
    color: #EC9121;
}

/*すべて見るボタン*/
.section-box6 p {
    width: 30%;
    margin-left: 85%;
    margin-bottom: 3%;
    text-align: center;
}

.section-box6 p a {
    color: #223BBC;
    font-size: 2vw;
    font-weight: 600;
    text-decoration: none;
}

.section-box6 p a i {
    font-size: 2vw;
    margin-right: 0.5%;
}

.section-box6 p a:hover {
    color: #EC9121;
}



/*3-1*/
.login-flex-box {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border: 1px solid #c1c1c1;
}

/*写真*/
.child-box img {
    display: block;
    width: 79%;
    margin-top: 4%;
    margin-left: auto;
    margin-right: auto;
}

/*1つ目ログイン*/
.login-flex-box .child-box:nth-of-type(1) a:nth-of-type(1) {
    display: block;
    width: 80%;
    padding: 4%;
    margin-top: 4%;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    font-size: 3vw;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 3px;
    background: rgb(255,192,0);
    background: linear-gradient(90deg, rgba(255,192,0,1) 19%, rgba(255,157,0,1) 100%);
}

.login-flex-box .child-box:nth-of-type(1) a:nth-of-type(1):hover {
    background: rgb(255,192,0);
    background: linear-gradient(90deg, rgba(255,192,0,1) 100%, rgba(255,157,0,1) 100%);
}

.login-flex-box .child-box:nth-of-type(1)  a:nth-of-type(1) i {
    margin-right: 5%;
    color: #fff;
    font-size: 3vw;
}

/*1つ目ログイン下*/
.login-flex-box .child-box:nth-of-type(1) a:nth-of-type(2),.login-flex-box .child-box:nth-of-type(1) a:nth-of-type(3),.login-flex-box .child-box:nth-of-type(1) a:nth-of-type(4){
    display: block;
    margin-top: 3%;
    padding-bottom: 3%;
    color: #222;
    font-size: 2.3vw;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
}

.login-flex-box .child-box:nth-of-type(1) a:nth-of-type(2) i,.login-flex-box .child-box:nth-of-type(1) a:nth-of-type(3) i,.login-flex-box .child-box:nth-of-type(1) a:nth-of-type(4) i {
    color: #223BBC;
    font-size: 2.3vw;
}

.login-flex-box .child-box:nth-of-type(1) a:nth-of-type(2):hover i,.login-flex-box .child-box:nth-of-type(1) a:nth-of-type(3):hover i,.login-flex-box .child-box:nth-of-type(1) a:nth-of-type(4):hover i {
    color: #EC9121;
}

.login-flex-box .child-box:nth-of-type(1) a:nth-of-type(2):hover,.login-flex-box .child-box:nth-of-type(1) a:nth-of-type(3):hover,.login-flex-box .child-box:nth-of-type(1) a:nth-of-type(4):hover  {
    color: #EC9121;
}

/*2つ目ログイン*/
.login-flex-box .child-box:nth-of-type(2) {
    border-top: 1px solid #c1c1c1;
    margin-bottom: 5%;
}

.login-flex-box .child-box:nth-of-type(2) a:nth-of-type(1) {
    display: block;
    width: 80%;
    padding: 4%;
    margin-top: 4%;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    font-size: 3vw;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 3px;
    background: rgb(255,192,0);
    background: linear-gradient(90deg, rgba(255,192,0,1) 19%, rgba(255,157,0,1) 100%);
}

.login-flex-box .child-box:nth-of-type(2) a:nth-of-type(1):hover {
    background: rgb(255,192,0);
    background: linear-gradient(90deg, rgba(255,192,0,1) 100%, rgba(255,157,0,1) 100%);
}

.login-flex-box .child-box:nth-of-type(2) a:nth-of-type(1) i {
    margin-right: 5%;
    color: #fff;
    font-size: 3vw;
}

/*お申込みはこちら画像*/
.child-box2 {
    padding: 5%;
    border-left: 1px solid #c1c1c1;
    border-right: 1px solid #c1c1c1;
    background-color: #FDF8DD;
}
.child-box2 a {
    display: block;
    text-align: center;
}

.child-box2 a:hover img {
    opacity: 0.5;
}

.child-box2 img {
    width: 100%;
}

/*店舗案内*/
.child-box2-box {
    padding-bottom: 4%;
    background-color: #FDF8DD;
}

.child-box2-box a:nth-of-type(1) {
    display: block;
    width: 90%;
    padding: 4%;
    margin-top: 4%;
    margin-left: auto;
    margin-right: auto;
    font-size: 3vw;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    background: rgb(78,153,243);
    background: linear-gradient(90deg, rgba(78,153,243,1) 0%, rgba(50,119,203,1) 0%, rgba(36,64,191,1) 100%);
}

.child-box2-box a:nth-of-type(1) {
    background: rgb(78,153,243);
    background: linear-gradient(90deg, rgba(78,153,243,1) 0%, rgba(80,158,246,1) 0%, rgba(59,114,220,1) 100%);
}

.child-box2-box a:nth-of-type(1) i {
    margin-left: 4%;
    margin-right: 2%;
    color: #fff;
    font-size: 3vw;
}

.child-box2-box a:nth-of-type(1) span {
    color: #fff;
    text-align: center;
}

.child-box2-box a:nth-of-type(2),.child-box2-box a:nth-of-type(3) {
    display: block;
    margin-top: 3%;
    font-size: 2.3vw;
    font-weight: 600;
    color: #222;
    text-align: center;
    text-decoration: none;
}

.child-box2-box a:nth-of-type(2):hover,.child-box2-box a:nth-of-type(3):hover {
    color: #EC9121;
}

.child-box2-box a:nth-of-type(2):hover i,.child-box2-box a:nth-of-type(3):hover i{
    color: #EC9121;
}

.child-box2-box a:nth-of-type(2) i,.child-box2-box a:nth-of-type(3) i {
    color: #4462CA;
}

.support-box {
    padding-bottom: 4%;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border: 1px solid #c1c1c1;
}

.support-box a {
    display: block;
    width: 80%;
    padding: 4%;
    margin-top: 4%;
    margin-left: auto;
    margin-right: auto;
    font-size: 3vw;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    background: rgb(78,153,243);
    background: linear-gradient(90deg, rgba(78,153,243,1) 0%, rgba(50,119,203,1) 0%, rgba(36,64,191,1) 100%);
}

.support-box a:hover {
    background: rgb(78,153,243);
    background: linear-gradient(90deg, rgba(78,153,243,1) 0%, rgba(80,158,246,1) 0%, rgba(59,114,220,1) 100%);
}

.support-box a i {
    margin-left: 4%;
    margin-right: 2%;
    color: #fff;
    font-size: 1.1vw;
}

.support-box a span {
    color: #fff;
    text-align: center;
    white-space: pre-wrap;
}

/*写真たち*/
.side-img {
    width: 70%;
    margin-top: 2%;
    margin-left: auto;
    margin-right: auto;
}

.side-img img {
    width: 100%;
    margin-top: 5%;
    transition: 0.5s;
}

.side-img img:hover {
    opacity: 0.5;
    transition: 0.5s;
}

/*みなとについて,各種手数料・・・*/
.child-box3 {
    margin-top: 5%;
    border-radius: 5px;
    border-left: 1px solid #c1c1c1;
    border-right: 1px solid #c1c1c1;
    border-bottom: 1px solid #c1c1c1;
}

.child-box3 h4 {
    height: 50%;
    padding-top: 5%;
    padding-bottom: 5%;
    color: #fff;
    font-size: 2.3vw;
    font-weight: 600;
    text-align: center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background-color: #223BBC;
}

.child-box3 li {
    line-height: 3;
    list-style-type: none;
    border-top: 1px solid #c1c1c1;
}

.child-box3 .fa-circle-chevron-right {
    color: #223BBC;
    margin-left: 4%;
    margin-right: 1%;
}

.child-box3 a {
    display: block;
    font-size: 2.3vw;
    font-weight: 600;
    text-decoration: none;
}

.child-box3 span {
    color: #222;
    text-decoration: none;
}

.child-box3 a:hover span {
    color: #EC9121;
}

.child-box3 .fa-folder-open {
    color: #223BBC;
    margin-left: 2%;
}

.child-box3 a:hover i {
    color: #EC9121;
}



/*section-box9*/
.section-box9 {
    display: flex;
    width: 89%;
    margin-top: 5%;
    margin-left: auto;
    margin-right: auto;
}

.section-box9 p {
    font-size: 1.7vw;
    font-weight: 600;
    margin-top: 2%;
    margin-bottom: 1%;
}

.section-box9 a {
    color: #222;
    text-decoration: none;
}

.section-box9 a:hover {
    opacity: 0.8;
}

.sns-box {
    display: flex;
    width: 20%;
    margin-left: auto;
}

.sns-box a {
    margin-left: 12%;
    margin-right: 2%;
}

.sns-box img {
    width: 130%;
    margin-top: 20%;
}

.sns-box img:hover {
    opacity: 0.8;
}

/*footer1*/
.footer-container{
    padding-top: 3%;
    padding-bottom: 5%;
    background-color: #F6F6F6;
}

.footer-flex-box{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8%;
}

.footer-box a:hover {
    color: #EC9121;
}

.footer-box h3 {
    border-bottom: 1px solid #c8c8c8;
}

.footer-box h3 a {
    display: block;
    margin-top: 3%;
    font-size: 2vw;
    font-weight: 600;
    color: #222;
    text-decoration: none;
}

.footer-box ul {
    display: flex;
    flex-wrap: wrap;
}

.footer-box ul li {
    margin-top: 1%;
    margin-left: 1em;
    list-style-type: none;
}

.footer-box ul li a {
    display: block;
    width: 100%;
    margin-right: 1em;
    font-size: 1.7vw;
    color: #222;
    text-decoration: none;
    border-right: 1px solid #c8c8c8;
}

/*footer2*/
.footer-flex-box2 ul{
    display: flex;
    flex-wrap: wrap;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.footer-flex-box2 ul li {
    margin-bottom: 3%;
    padding-right: 1%;
    padding-left: 1%;
    line-height: 1;
    border-right: 1px solid #c8c8c8;
    list-style-type: none;
}

.footer-flex-box2 ul li a {
    font-size: 1.7vw;
    color: #222;
    text-decoration: none;
}

.footer-flex-box2 ul li a:hover {
    color: #EC9121;
}

/*footer3*/
.footer-flex-box2 {
    display: flex;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.footer-flex-box2 p {
    margin-left: 3.5%;
    font-size: 1.6vw;
}

.footer-flex-box2:nth-of-type(4) {
    margin-top: 3%;
}

.footer-flex-box2:nth-of-type(4)  p:nth-of-type(1){
    font-size: 2vw;
}

/*footer-img*/
.footer-flex-box3 {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: 3% auto 1%;
}

.footer-flex-box3 a:hover {
    opacity: 0.5;
}

.footer-flex-box3 img {
    width: 100%;
    height: 5vw;
    vertical-align: bottom;
}

.footer-flex-box3 a:nth-child(1) {
    margin-left: 5%;
    margin-right: 3%;
    width: 50%;
}

.footer-flex-box3 a:nth-child(2) {
    margin-right: 3%;
    width: 20%;
}

.footer-flex-box3 a:nth-child(3) {
    margin-top: 0.1%;
    margin-right: 3%;
    width: 16%;
}

.footer-flex-box3 a:nth-child(4) {
    margin-left: 5%;
    margin-right: 3%;
    margin-top: 1%;
    width: 36%;
}

.footer-flex-box3 a:nth-child(5) {
    margin-top: 1%;
    margin-right: 3%;
    width: 15%;
}

.footer-flex-box3 a:nth-child(6) {
    margin-top: 1%;
    width: 20%;
}

/*copy*/
footer p small {
    display: block;
    margin-bottom: 10%;
    text-align: center;
    font-size: 1.6vw;
    color: #222;
}