@charset "shift_jis";

@import "base/_variables-jis.css";
@import "base/_typography-jis.css";
@import "base/_layout-jis.css";
@import "base/_effect-jis.css";
@import "base/_font-jis.css";

html {
    color: #2C2C2C;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "FOT-UD角ゴ_スモール Pr6 R", "M,Noto Sans JP", sans-serif;
    font-size: 1rem;
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: #2C2C2C;
}

a,
button,
input[type="button"],
input[type="submit"],
.clickable,
[role="button"] {
    cursor: pointer;
    transition: all 0.3s ease;
}


/*common*/

/*セクションごとの背景色*/
.section-padding--blue {
    padding: 10px 0px;
    background: #EBF3F9;
}

.section-padding--white {
    padding: 50px 20px;
    background: #fff;
}

/*余白*/
.padding-5020 {
    padding: 50px 20px;
}


@media only screen and (max-width: 767px) {
    .section-padding {
        padding: 50px 50px;
    }
}

/*ディスプレイ調整*/
@media only screen and (max-width: 767px) {
    .is-pc-show {
        display: none;
    }
}
@media only screen and (min-width: 768px) {
    .is-sp-show {
        display: none;
    }
}

/*セクションタイトル*/
.section-title__container {
    margin: auto;
    text-align: center;
}

h1.section-title__category {
    margin-bottom: 15px;
    text-align: center;
    color: #005BAB;
    font-family: "FOT-UD角ゴ_スモール Pr6 B";
    font-size: 32px;
    line-height: 1.4;

}

.section-title__line {
    margin: auto;
    width: 200px;
    height: 5px;
    background: #F00;
    margin-bottom: 15px;
}

.section-title__container p {
    line-height: 1.7;
    font-family: "FOT-UD角ゴ_スモール Pr6 DB";
}


/*全体*/
 /* ============================================ */
 .header-nav__container {
     position: fixed;
     width: 100%;
     z-index: 100;
     background: var(--color-white);
     box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
 }

 /*サブ*/
 /* ============================================ */
 .header-nav__sub {
     display: flex;
     height: 35px;
     justify-content: center;
     background-color: var(--color-primary);
 }

 .header-nav__sub__content {
     display: flex;
     width: 100%;
     padding: 0 100px;
     justify-content: flex-end;
 }

 .header-nav__sub__content ul {
     display: flex;
     align-items: center;
     font-size: var(--font-size-small);
     font-family: var(--font-Dsp-B);
     gap: 22px;
 }


 .link-primary {
     display: inline-block;
     position: relative;
     width: fit-content;
     padding: 4px 20px 4px 0;
     background-repeat: no-repeat;
     border-bottom: 1px;
     transition: color .3s ease, background-size .3s ease;
     line-height: 1;
     color: var(--color-white);
 }

 .link-primary::after {
     content: "";
     position: absolute;
     top: 4px;
     right: 0px;
     bottom: 0px;
     width: 15px;
     height: 15px;
     background-size: contain
 }

 .link-primary.icon-blank::after {
     background-image: url(../images/icon-link_1-w.svg);
 }


 /*サブ--ホバー*/
 /* ============================================ */
 .link-primary:hover {
     border-bottom: var(--color-white);
     padding: 4px 20px 3px 0;
 }


 .link-primary::before {
     position: absolute;
     left: 0;
     content: '';
     width: 100%;
     height: 1px;
     background: #fff;
     bottom: -3px;
     transform: scale(0, 1);
     transition: transform 0.3s;
     transform-origin: left top;
 }


 .link-primary:hover::before {
     transform: scale(1, 1);
     transform-origin: left top;
 }



 @media only screen and (max-width: 767px) {
     .header-nav__sub.is-pc-show-header {
         display: none
     }
 }



 /*メイン*/
 /*左側*/
 /* ============================================ */
 .header-nav__main {
     display: flex;
     justify-content: space-between;
     width: 100%;
     height: 75px;
     background-color: var(--color-white);
 }

 .header-nav__main__container {
     display: flex;
     width: fit-content;
     justify-content: flex-start;
     align-items: center;
     padding: 0 0 0 80px;
     gap: 30px;
 }

 @media only screen and (max-width: 767px) {
    .header-nav__main__container {
        width: 100%;
}
 }

 .header-nav__main__content {
     display: flex;
     gap: 40px;
     font-size: var(--font-size-base);
     font-family: var(--font-Dsp-B);
 }


 .header-nav__main__button {
     display: inline-block;
     outline: none;
     border-bottom: 2px;
 }

 .header-nav__main__button:hover {
     color: var(--color-primary);
 }

 .header-nav__main__content a {
     position: relative;
 }

 .header-nav__main__content a::after {
     position: absolute;
     left: 0;
     content: '';
     width: 100%;
     height: 3px;
     background: var(--color-primary);
     bottom: -10px;
     visibility: hidden;
     opacity: 0;
     transition: 0.5s;
 }

 .header-nav__main__content a:hover::after {
     visibility: visible;
     opacity: 1;
     transition: 0.5s;
 }

 .header-nav__main--title {
     padding-left: 5px;
     color: var(--color-secondary);
     font-size: 10px;
     font-family: "FOT-UD角ゴ_スモール Pr6 R";
     line-height: 1;
 }

 .header-nav__main--logo img {
     width: 200px;
 }

  /*右側*/
 /* ============================================ */

 .c-header-navi__main__right {
    display: flex;
    padding: 0 30px 0 0 ;
    justify-content: flex-start;
    align-items: center;
    font-family: var(--font-Dsp-DB);
    font-size: var(--font-size-base);
 }

 .c-header-navi__main__right ul {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
 }

 .c-header-navi__main__right ul li a {
    display: block;
    text-align: center;
    padding: 10px 15px;
    border-radius: 999px;
    color: var(--color-primary);
    background-color: var(--color-secondary);
 }

 .c-header-navi__main__right ul li a:hover {
    color: white;
    background-color: var(--color-primary);
 }

 @media only screen and (max-width: 767px) {

    .c-header-navi__main__right {
        display: none;
     }
}

 

 @media (min-width:768px) and (max-width: 1200px) {

     .header-nav__sub__content {
         width: 100%;
     }

     .header-nav__main__container {
         width: fit-content;
         padding-left: 30px;
     }

 }

 @media only screen and (max-width: 767px) {

     .header-nav__main__container {
         padding-left: 10px;
         padding-right: 30px;
         justify-content: space-between;
         box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
     }

     .header-nav__main__content {
         display: none;
     }
 }

 /* ハンバーガーメニュー */
 /* ============================================ */
 .hamburger-menu {
     display: none;
     width: 30px;
     height: 30px;
     position: relative;
     background: none;
     border: none;
     cursor: pointer;
 }

 @media screen and (max-width: 767px) {
     .hamburger-menu {
         display: block;
     }
 }

 .hamburger-menu__line {
     position: absolute;
     left: 0;
     width: 100%;
     height: 2px;
     border-radius: 999px;
     background-color: #005BAB;
     transition: all .3s;
 }

 .hamburger-menu__line:nth-child(1) {
     top: 4px;
 }

 .hamburger-menu__line:nth-child(2) {
     top: 14px;
 }

 .hamburger-menu__line:nth-child(3) {
     top: 24px;
 }

 /* メニューオープン時 */
 .hamburger-menu.is-active .hamburger-menu__line:nth-child(1) {
     transform: translateY(10px) rotate(45deg);
 }

 .hamburger-menu.is-active .hamburger-menu__line:nth-child(2) {
     opacity: 0;
 }

 .hamburger-menu.is-active .hamburger-menu__line:nth-child(3) {
     transform: translateY(-10px) rotate(-45deg);
 }

 


 /* Header Navigation */
 .header-nav__container {
     position: fixed;
     top: 0;
     z-index: 100;
     width: 100%;
     background: var(--color-white);
     box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
 }

 .header-nav__sub {
     display: flex;
     height: 35px;
     justify-content: center;
     background-color: var(--color-primary);
 }

 .header-nav__sub__content {
     display: flex;
     width: 100%;
     padding: 11px 30px;
     justify-content: flex-end;
 }

 /* ... 他のナビゲーション関連のスタイル ... */

 @media only screen and (max-width: 767px) {
     .header-nav__sub.is-pc-show-header {
         display: none;
     }

     /* ... レスポンシブ対応 ... */
 }
 /* ドロップダウン */ 
/* ============================================ */ 
 .c-dropdown {
    position: relative;
    display: inline-block;
}

.c-dropdown__content {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 110px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px;
}

.c-dropdown__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
}

.c-dropdown__section {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.c-dropdown__section+.c-dropdown__section {
    border-left: 1px solid #eee;
    padding-left: 20px;
}

.c-dropdown__title {
    color: #333;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    padding-left: 10px;
    border-left: 4px solid #0066cc;
}

.c-dropdown__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.c-dropdown__item {
    margin-bottom: 8px;
}

.c-dropdown__link {
    color: #333;
    text-decoration: none;
    font-size: 13px;
    display: block;
    padding: 4px 0;
}

.c-dropdown__link:hover {
    color: #0066cc;
}

.c-dropdown__content.is-active {
    display: flex;
    justify-content: center;
}
 
 
/* SPメニュー */
/* ============================================ */
.c-sp-menu {
    position: fixed;
    top: 75px;
    bottom: 110px;
    left: 0;
    width: 100%;
    height: 0;
    background: #fff;
    z-index: 100;
    overflow-y: auto;
    max-height: calc(100vh - 185px);
    transition: height 0.7s ease-in-out, opacity 0.7s ease-in-out;
    opacity: 0;
 }

 .c-sp-menu.is-active {
     height: fit-content;
     opacity: 1;
     box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
     transition: height 0.7s ease-in-out;
 }

 .c-sp-menu:not(.is-active) {
     height: 0;
     opacity: 1;
     transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
 }


 .c-sp-menu.is-active .c-sp-menu__nav {
     transform: translateY(0);
     opacity: 1;
 }

 .c-sp-menu__list {
     display: flex;
     flex-direction: column;
     
 }


 .c-sp-menu.is-active .c-sp-menu__list li {
     width: 100%;
     opacity: 1;
 }

 .c-sp-menu .c-sp-menu__list li {
     width: 100%;
     opacity: 1;
 }


 .c-sp-menu__list a {
     display: block;

     color: var(--color-text);

 }


.c-sp-menu-icon--close {
    display: none
}

.c-sp-menu-icon--open {
    display: none;
}


.c-sp-menu__button {
    width: 100%;
    padding: 15px 30px;
    text-align: left;
    background: none;
    border: none;
    position: relative;
    font-size: 16px;
    font-family: var(--font-Dsp-B);
    border-top: 1px solid var(--color-gray-light);
}


.c-sp-menu__icon {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s;
}

.c-sp-menu__button[aria-expanded="true"] .c-sp-menu__icon {
    transform: translateY(-50%) rotate(-135deg);
}

.c-sp-menu__submenu {
    display: none;
    background: #fff;
}

.c-sp-menu__button[aria-expanded="true"]+.c-sp-menu__submenu {
    display: block;
}

.c-sp-menu__submenu__title {
    width: 100%;
    padding: 12px 35px;
    font-family: var(--font-Dsp-B);
    border-top: 1px solid var(--color-gray-light);
}


.c-sp-menu__submenu li span {
    display: inline-block;
    padding: 0 8px;
}

.c-sp-menu__submenu li span.finance {
    border-left: 3pt solid var( --color-p-f-oknx);
}

.c-sp-menu__submenu li span.sales {
    border-left: 3pt solid var( --color-p-s-hb);
}

.c-sp-menu__submenu li span.hr {
    border-left: 3pt solid var( --color-p-h-ky);
}



.c-sp-menu__submenu a {
    display: block;
    margin-left: 45px;
    padding: 12px 0px;
    color: #333;
    text-decoration: none;
    border-top: 1px solid var(--color-gray-light);
    font-family: var(--font-Dsp-M);
}

@media only screen and (max-width: 767px) {
    .c-sp-menu-icon--open {
        display: flex
    }
}


/*ファーストビュー*/
/* ============================================ */
.hero {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 110px auto 0px auto;
}

.hero.style-a {
    background-image: url(../images/pict_hero_background_style_a.png);
}

.hero.style-b {
    background-image: url(../images/pict_hero_background_style_a.png);
}

.hero .hero__container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px 30px 30px 30px;
}

.hero.style-a .hero__container {
    height: 450px;
}

.hero.style-b .hero__container {
    height: 200px;
}

.hero__message {
    max-width: 1200px;
}

.hero__container h1 {
    z-index: 90;
    text-align: center;
    font-family: "FOT-UD角ゴ_スモール Pr6 B";
    color: #fff;
    line-height: 1.4;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero.style-a h1 {
    position: absolute;
    display: inline-block;
    text-align: center;
    top: 100px;
    right: 8%;
    font-size: 48px;
}

.hero__container .hero__icon {
    z-index: 90;
    display: flex;
    flex-direction: row-reverse;
    position: absolute;
    width: 100%;
    top: 250px;
    right: 8%;
    gap: 20px;
}

.hero__container .hero__icon ul {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 20px;
}

.hero__container .hero__icon ul li {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__container .hero__icon ul li>p {
    height: auto;
    margin-top: 2px;
    font-size: 12px;
    font-family: "FOT-UD角ゴ_スモール Pr6 DB";
}

.hero__container .hero__icon img {
    width: 80px;
}


.hero p {
    text-align: center;
    font-size: 16px;
    font-family: "FOT-UD角ゴ_スモール Pr6 DB";
    color: #fff;
    letter-spacing: 2px;
    line-height: 1.7;
}

.hero.style-b h1 {
    position: absolute;
    display: inline-block;
    text-align: center;
    top: 35px;
    right: 0;
    left: 0;
    font-size: 36px;
    letter-spacing: 2px;
}


.hero.style-b p {
    position: absolute;
    display: inline-block;
    text-align: center;
    top: 100px;
    right: 0;
    left: 0;
}


.hero__img img {
    position: absolute;
    width: 750px;
    left: 5%;
    bottom: 0;
}

@media only screen and (max-width: 767px) {

    .hero {
        margin: 75px auto 0px auto;
    }

    .hero.style-a .hero__container {
        height: 520px;
    }

    .hero__container h1 {
        top: 32px;
        right: 0;
        left: 0;
        margin: auto;
    }

    .hero.style-a h1 {
        position: absolute;
        text-align: center;
        top: 30px;
        right: 0;
        left: 0;
        font-size: 32px;
    }


    .hero.style-b h1 {
        position: absolute;
        display: inline-block;
        text-align: center;
        right: 0;
        left: 0;
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .hero.style-b p {
    top: 130px;
    right: 0;
    left: 0;
}
    

    .hero p {
        font-size: 12px;

    }
    

    .hero__img img {
        width: 800px;
        left: 0px;
    }

    .hero__message {
        right: 0;
        left: 0;
    }

    .hero__container .hero__icon {
        justify-content: center;
        position: absolute;
        padding: 0 30px;
        top: 140px;
        right: 0;
        left: 0;
        gap: 10px;
    }

    .hero__container .hero__icon img {
        width: 50px;
    }

    
    .hero__container .hero__icon ul {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        gap: 15px;
    }
    
    .hero__container .hero__icon ul li {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero__container .hero__icon ul li>p {
        font-size: 10px;
        letter-spacing: 1px;
    }
}

/*ログインフォーム*/
.bp-main__container {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: stretch;
}

.bp-list__container {
    width: 65%;
}


.bp-list__wrapper {
    display: flex;
    padding: 30px 20px 30px 15%;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    row-gap: 20px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.bp-category__container {
    width: 35%;
    background: #eaebeb;
}

.bp-category__wrapper {
    display: flex;
    padding: 30px 20px 30px 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

@media (min-width:768px) and (max-width: 1200px) {
    .header-nav__main__content {
        padding-left: 20px;
    }

    .bp-list__wrapper {
        padding: 20px;
    }

}

.bp__heading {
   width: 100%;
}

.bp__heading h2 {
    padding: 5px 10px;
    align-items: center;
    border-left: 6px solid #005BAB;
    font-size: 20px;
    font-family: "FOT-UD角ゴ_スモール Pr6 B";
}

.bp-list__inner {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 20px;
}

.list-style-bp__container {
    display: flex;
    width: calc(50% - 20px);
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    border-radius: 3px;
    border: 1px solid var(--product-, #999);
    background: #FFF;
}

.list-style-bp__heading {
    display: flex;
    padding: 5px 20px 5px 20px;
    height: 40px;
    align-items: center;
    gap: 15px;
    align-self: stretch;
    background: #FFF;
}

.list-style-bp__heading h3 {
    text-align: center;
    font-size: 20px;
    font-family: "FOT-UD角ゴ_スモール Pr6 B";
}

.list-style-bp__heading p {
    color: #333;
    font-size: 12px;
    font-family: "FOT-UD角ゴ_スモール Pr6 DB";
}

.list-style-bp__heading.partner {
    border-bottom: 7px solid #4C65A1 ;
}

.list-style-bp__heading.partner p {
    font-family: "FOT-UD角ゴ_スモール Pr6 DB";
    font-size: 16px;
}

.list-style-bp__heading.dsa {
    border-bottom: 7px solid #FB2D5D ;
}

.list-style-bp__heading.dsa h3 {
    color: #FB2D5D;
}

.list-style-bp__heading.dci {
    border-bottom: 7px solid #8FCC2C ;
}

.list-style-bp__heading.dci h3 {
    color: #8FCC2C;
}

.list-style-bp__heading.dcp {
    border-bottom: 7px solid #BC80BC;
}

.list-style-bp__heading.dcp h3 {
    color: #BC80BC;
}

.list-style-bp__heading.dcai {
    border-bottom: 7px solid #FDA197 ;
}

.list-style-bp__heading.dcai h3 {
    color: #FDA197;
}

.list-style-bp__heading.odds {
    border-bottom: 7px solid #379BFF ;
}

.list-style-bp__heading.odds h3 {
    color: #379BFF;
}

.list-style-bp__heading.dsp {
    border-bottom: 7px solid #800001 ;
}

.list-style-bp__heading.dsp h3 {
    color: #800001;
}

.list-style-bp__heading.dsap {
    border-bottom: 7px solid #FDC021 ;
}

.list-style-bp__heading.dsap h3 {
    color: #FDC021;
}


.list-style-bp__content {
    display: flex;
    padding: 10px 20px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    gap: 3px;

}

.list-style-bp__content.list-style-bp__content form {
    width: 100%;
}

.list-style-bp__requestform {
    display: flex;
    align-items: center;
    align-self: stretch;
    gap: 10px;
    margin-bottom: 10px;
}

.list-style-bp__requestform label {  
    width: 40%;
    color: #333;
    text-align: left;
    font-family: "FOT-UD角ゴ_スモール Pr6 R";
    font-size: 12px;
}

.list-style-bp__requestform input {  
    width: 100%;
    height: 21px;
    border: 1px solid #c4c4c4 ;
    border-radius: 2px;
    padding: 2px 5px;
}

.list-style-bp__bt {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    align-self: stretch;
    margin-bottom: 5px;
}

 .list-style-bp__bt input {
    display: flex;
    padding: 3px 10px 2px 10px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 5px;
    border-bottom: 0px ;
    background: #005BAB;
    color: #fff;
    font-size: 14px;
}

.list-style-bp__ch {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    font-size: 10px;
}

.list-style-bp__ch span {
    display: flex;
    align-items: flex-end;
    align-self: stretch;
    gap: 5px;
}


.list-style-bp__ch a {
    display: inline-block;
    border-bottom: 1px solid #333333;
}

.list-style-bp__ch a:hover {
    color: #005BAB;
}



.bp-category__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bp-category__inner ul li a{
    display: flex;
    padding: 10px 8px 10px 5px;
    justify-content: space-between;
    align-items:center;
    align-self: stretch;
    border-bottom: 1px solid #999;
    gap: 15px;
}

.bp-category__inner ul li a:hover{
    background-color: #FFF;
}

.bp-category__content__inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bp-category__content--title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "FOT-UD角ゴ_スモール Pr6 DB";
    font-size: 12px;
}


.bp-category__content--title p {
    display: flex;
    flex-direction: row;

}

.bp-category__content--title span {
    font-family: "FOT-UD角ゴ_スモール Pr6 B";
    font-size: 18px;
}

.bp-category__content--title.bpsry span {
    font-family: "FOT-UD角ゴ_スモール Pr6 B";
    font-size: 16px;
    line-height: 1.4;
}


.bp-category__content img {
    display: inline-block;
    width: 20px;
    height: 20px;
}

@media only screen and (max-width: 767px) {


    .bp__heading {
        width: 100%;
    }


    .bp-main__container {
        flex-direction: column;
        gap: 0px;
    }
    
    .bp-list__container {
        max-width: none;
        width: 100%;
        justify-content: center;
    }
    
    
    .bp-list__wrapper {
        padding: 30px;
        justify-content: center;
        align-items: center;
        align-content: center;
    }

    .list-style-bp__container {
        width: 100%;
    }

    .list-style-bp__heading {
        padding: 5px 10px 5px 10px;
        height: 50px;
    }

    .list-style-bp__content {
        padding: 10px 10px;
    }

    .list-style-bp__requestform {
        gap: 5px;
    }
        

    .bp-category__container {
        width: 100%;
        justify-content: center;
    }

    .bp-category__wrapper {
        padding: 30px;
    }

    .bp-category__inner ul {
        width: 100%;
    }


    .bp-category__inner ul li a{
        width: 100%;
        gap: auto;
        padding: 10px 8px 10px 8px;
    }


}




/* c-footer */
.c-footer__container {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--color-primary);
  color: white;
}

.c-footer__logo-container img {
  padding-top: var(--spacing-lg);
  margin-left: -5px;
  width: 120px;
}

.c-footer__nav {
  width: 80vw;
}

.c-footer-menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
}


.c-footer-menu__wrapper_left {
  display: block;
}

.c-footer-menu__wrapper_right{
  display: flex;
  gap: 40px;
}

.c-footer-menu__inner {
  display: flex;
  flex-direction: row;
  gap: 30px;
}


.c-footer-menu__content {
  display: flex;
  flex-direction: row;
}



.c-footer-menu__group {
  width: 100%;
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
}

.c-footer-menu__heading {
  display: flex;
  padding: 10px 0px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-bottom: 1px solid #FFF;
  color: #FFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.c-footer-menu__category {
  display: flex;
  height: 25px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: #FFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.c-footer-menu__topics a {
  display: flex;
  height: 25px;
  align-items: center;
  align-self: stretch;
  color: #FFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.c-footer-menu__description {
  color: #FFF;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.c-footer-menu__product a {
  color: #FFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.c-footer-menu__product {
  display: flex;
  width: calc(20vw - 20px);
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 5px;
}

@media only screen and (max-width: 767px) {
  .c-footer__nav {
    width: 92vw;
  }

  .c-footer-menu {
    flex-direction: column;
    justify-content: center;
    gap: 0;
  }

  .c-footer-menu__topics a {
    width: 100%;
  }

  .c-footer-menu__product {
    width: 100%;
  }

  .c-footer-menu__heading {
    width: 85vw;
  }

  .c-footer-menu__inner {
    flex-direction: column;
  }

  .c-footer-menu__wrapper_right {
    flex-direction: column;
  }

}

@media (min-width:768px) and (max-width: 1000px) {
  .c-footer-menu__wrapper_right {
     flex-direction: column;
   }

   .c-footer-menu {
    justify-content: center;
    gap: 60px;
  }

  .c-footer-menu__inner {
    gap: 80px;
  }

  .c-footer-menu__heading {
    width: 100%;
  }
  
 }


/*ナビゲーション*/
/* ============================================ */



.c-footer__terms {
  display: flex;
  width: 80vw;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
}

.c-footer__terms p {
  font-size: 12px;
}

.c-footer__terms ul {
  display: flex;
}

.c-footer__terms ul li a {
  padding-left: var(--spacing-lg);
  color: white;
  font-size: 12px;
}

@media only screen and (max-width: 767px) {
  .c-footer__terms {
    flex-direction: column-reverse;
    width: 92vw;
  }

  .c-footer__terms ul {
    flex-wrap: wrap;
    padding-bottom: var(--spacing-lg);
  }

  .c-footer__terms ul li a {
    padding-left: var(--spacing-sm);
  }

}
