/* ress 
The MIT License (MIT)
Copyright © 2016 Filipe Linhares
*/
html{-webkit-text-size-adjust:100%;box-sizing:border-box;-moz-tab-size:4;tab-size:4;word-break:normal}*,:after,:before{background-repeat:no-repeat;box-sizing:inherit}:after,:before{text-decoration:inherit;vertical-align:inherit}*{margin:0;padding:0}hr{color:inherit;height:0;overflow:visible}details,main{display:block}summary{display:list-item}small{font-size:80%}[hidden]{display:none}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}a{background-color:transparent}a:active,a:hover{outline-width:0}code,kbd,pre,samp{font-family:monospace,monospace}pre{font-size:1em}b,strong{font-weight:bolder}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-color:inherit;text-indent:0}iframe{border-style:none}input{border-radius:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}textarea{overflow:auto;resize:vertical}button,input,optgroup,select,textarea{font:inherit}optgroup{font-weight:700}button{overflow:visible}button,select{text-transform:none}[role=button],[type=button],[type=reset],[type=submit],button{cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button:-moz-focusring{outline:1px dotted ButtonText}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}button,input,select,textarea{background-color:transparent;border-style:none}a:focus,button:focus,input:focus,select:focus,textarea:focus{outline-width:0}select{-moz-appearance:none;-webkit-appearance:none}select::-ms-expand{display:none}select::-ms-value{color:currentColor}legend{border:0;color:inherit;display:table;max-width:100%;white-space:normal}::-webkit-file-upload-button{-webkit-appearance:button;color:inherit;font:inherit}[disabled]{cursor:default}img{border-style:none}progress{vertical-align:baseline}[aria-busy=true]{cursor:progress}[aria-controls]{cursor:pointer}[aria-disabled=true]{cursor:default}

 /*------------------------
    color
------------------------*/
:root{
    --color-body:#f8f8f8;
    --color-dark: #272623;
    --color-gray: #eee;
    --color-navy: #002864;
    --color-action: #3366CC;
    --color-red: #b53345;
    --color-white: #fff;
    --bg-color-hero: #eee;
 }

 /*------------------------
    common
------------------------*/
body {
    background-color: var(--color-body);
    font-family: 'manrope', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.05em;
 }
 main {
    padding-top: 80px;
 }
 section,.section {
    width: 960px;
    margin: 0 auto;
 }
 .color-red {
    color: var(--color-red);
 }
 h1 {
    width: 100%;
    position: relative;
    line-height: 1.2;
 }
 h2 {
    width: 100%;
    margin: 80px 0 30px;
    position: relative;
    font-size: 32px;
    line-height: 1.2;
 }
 h3 {
    width: 100%;
    margin: 50px 0 30px;
    position: relative;
    font-size: 24px;
    line-height: 1.2;
 }
 a {
    text-decoration: none;
    color: var(--color-action);
 }
 @media(hover: hover) {
    a:hover {
        text-decoration: underline;
    }
}
a[target="_blank"]::after {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-left: 0.2em;
    margin-bottom: 0.2em;
    vertical-align: middle;
    background-image: url(../img/outbound_blue.svg);
    background-position: center;
    background-size: 0.9em;
}
 p {
    margin-bottom: 30px;
 }

ul {
    margin-bottom: 30px;
    list-style-position: inside;
}
li {
    margin-left: 1em;
    list-style-position: outside;
}
.red {
    color: var(--color-red);
}
@media screen and (min-width:1000px) {
    .sp-only {
        display: none;
    }
}
@media screen and (max-width:999px) {
    .pc-only {
        display: none;
    }
    main {
        padding-top: 64px;
    }
    section,.section {
        width: calc(100% - 40px);
        margin: 0 20px;
    }
    h2 {
        font-size: 23px;
        margin: 30px 0;
    }
    h3 {
        font-size: 20px;
        margin: 30px 0;
    }
}

 /*------------------------
    header
------------------------*/
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    color: var(--color-white);
    background-color: var(--color-dark);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    z-index: 9999;
}
header a {
    color: var(--color-white);
}
header a:hover {
    text-decoration: none;
}
header ul {
    list-style: none;
}
.header-inner {
    display: flex;
    height: 80px;
    max-width: 1440px;
    margin: 0 auto;
    justify-content: space-around;
    align-items: center;
}
.header-logo a {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
}
.logo {
    margin-right: 15px;
}
.logo img {
    display: block;
}
.header-nav {
    display: flex;
    margin-bottom: 0;
    justify-content: space-between;
    align-items: center;
    column-gap: 40px;
}
.header-nav a {
    display: block;
    position: relative;
    line-height: 80px;
}
.header-nav a:hover::before {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--color-action);
}
.header-nav a.current::after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 4px;
    position: absolute;
    bottom: 16px;
    left: calc(50% - 2px);
    background-color: var(--color-action);
}
.other-button {
    margin-bottom: 0;
}
.other-button a {
    display: flex;
    padding: 0 15px;
    border-radius: 4px;
    line-height: 32px;
    background: linear-gradient(to bottom, #2555b0 1%, #3366CC 100%);
    font-size: 12px;
    font-weight: 500;
    align-items: center;
    gap: 8px;
}
.other-button a::after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    margin-bottom: 2px;
    background-image: url(../img/outbound.svg);
    background-size: auto;
}
@media(hover: hover) {
    .other-button a:hover {
        background: linear-gradient(to bottom, #3366CC 1%, #2555b0 100%);
    }
}
@media screen and (max-width:999px) {
    header {
        box-shadow: none;
        background: none;
    }
    .header-inner {
        display: block;
        width: 100%;
        height: 64px;
        position: relative;
    }
    .sp-header-wrap {
        display: flex;
        width: 100%;
        height: 64px;
        position: absolute;
        top: 0;
        justify-content: space-between;
        align-items: center;
        background-color: var(--color-dark);
        z-index: 1;
    }
    .header-logo a {
        font-size: 16px;
    }
    .logo {
        margin-right: 10px;
        margin-left: 20px;
    }
    .logo img {
        height: 32px;
    }
    #menu-btn {
        display: flex;
        width: 64px;
        height: 64px;
        text-indent: -9999px;
        background-image: url(../img/menu.svg);
        background-size: 64px;
        background-position: top;
    }
    #menu-btn.is-open {
        background-position: bottom;
    }
    #sp-menu-panel {
        min-width: 270px;
        height: 100vh;
        padding: 104px 30px 0;
        position: absolute;
        top: 0;
        right: -270px;
        background: #444;
        transition: .3s;
    }
    #sp-menu-panel::after {
        content: '';
        display: block;
        width: 100%;
        background-color: #444;
        box-sizing: border-box;
    }
    #sp-menu-panel.is-open {
        right: 0;
    }
    .sp-header-nav {
        margin-bottom: 40px;
        font-size: 14px;
    }

    .sp-header-nav li {
        border-top: 1px solid #555;
    }

    .sp-header-nav li:last-child {
        border-bottom: 1px solid #555;
    }

    .sp-header-nav li a {
        line-height: 50px;
        margin-left: 10px;
    }
    .other-button a {
        line-height: 45px;
        justify-content: center;
        font-size: 13px;
    }
}

/*------------------------
    hero
------------------------*/

.hero {
    height: 340px;
    width: 100%;
    position: relative;
    padding: 20px;
    box-sizing: border-box;
}
.hero-inner {
    display: flex;
    height: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-color-hero);
    z-index: -1;
}
.hero-inner h1 {
    width: 100%;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    position: relative;
}
@media screen and (max-width:999px) {
    .hero {
        height: 180px;
        padding: 10px;
    }
    .hero-inner h1 {
        font-size: 28px;
    }
}
/* home hero */
.home .hero {
    padding-top: 0;
}
.home .hero-inner {
    padding-top: 10px;
}
.home .hero-inner::after {
    content: '';
    display: block;
    max-width: 100%;
    width: 100%;
    height: 60px;
    border-radius: 0 0 24px 24px;
    position: absolute;
    bottom: -60px;
    background-color: var(--color-gray);
}
@media screen and (max-width:999px) {
    .home .hero {
        padding: 0 10px 0;
    }
    .home .hero-inner::after {
        height: 30px;
        border-radius: 0 0 10px 10px;
        bottom: -30px;
    }
}
/* collection hero */
.collection .hero-inner {
    border-radius: 24px;
}
@media screen and (max-width:999px) {
    .collection .hero-inner {
        border-radius: 10px;
    }
}
/* single hero */
.single .hero {
    height: 240px;
    max-width: 960px;
    padding: 0;
    margin: 0 auto;
}
.single .hero-inner {
    justify-content: flex-start;
    background: none;
}
.single .hero-inner h1 {
    text-align: left;
}
.subtitle {
    position: absolute;
    top: -16px;
    left: 0.2em;
    font-size: 16px;
    font-weight: 400;
}
@media screen and (max-width:999px) {
    .single .hero {
        height: 180px;
        padding: 20px;
    }
    .subtitle {
        font-size: 11px;
    }
}

 /*------------------------
    home
------------------------*/
.site-description {
    max-width: 960px;
    padding: 50px;
    border-radius: 20px;
    margin: -40px auto 70px;
    background-color: var(--color-white);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 35px 40px 0;
}
.site-description .small{
    font-size: 14px;
}
.site-description *:last-child{
    margin-bottom: 0;
}
.content-list {
    display: flex;
    gap: 60px;
    list-style: none;
}
.content-list li {
    display: flex;
    width: 50%;
    height: 128px;
    margin: 0;
    border-top: 2px solid var(--color-action);
    align-items: center;
    font-size: 20px;
    font-weight: 700;
}
.content-list a {
    display: flex;
    width: 100%;
    position: relative;
    justify-content: space-between;
    align-items: center;
    line-height: 58px;
}
.content-list a::after {
    content:'';
    width: 58px;
    height: 58px;
    background-image: url(../img/link01.svg);
    background-position: center;
    background-size: 48px;
}
.content-list a::before {
    content:'';
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 100px;
    position: absolute;
    top: calc(50% - 24px);
    right: 5px;
    background-color: var(--color-action);
    z-index: -1;
    transition: .3s;
    opacity: .4;
}
@media(hover: hover) {
    .content-list a:hover::before {
        transform: scale(1.209,1.209);
        opacity: .2;
    }
}
@media screen and (max-width:999px) {
    .site-description {
        padding: 24px;
        border-radius: 12px;
        margin: -20px 0 40px;
        font-size: 16px;
    }
    .content-list a::before {
        content: none;
    }
    .content-list a::after {
        width: 32px;
        height: 32px;
        background-size: 32px;

    }
}
@media screen and (max-width:740px) {
    .content-list {
        display: block;
    }
    .content-list li {
        height: 82px;
        width: 100%;
        font-size: 18px;
    }
}

/*------------------------
    collection parts
------------------------*/
.tab-menu {
    width: 960px;
    margin: 0 auto;
}
.tab-list {
    display: flex;
    padding: 20px 0;
    margin-bottom: 0;
    list-style: none;
    flex-wrap: wrap;
    gap: 10px;
}
.tab-item {
    margin: 0;
}
.tab-item span {
    display: inline-block;
    height: 34px;
    min-width: 60px;
    padding: 0 16px;
    border-radius: 38px;
    border: 1px solid var(--color-gray);
    box-sizing: border-box;
    line-height: 32px;
    font-weight: 500;
    text-align: center;
    background-color: var(--color-white);
    cursor: pointer;
}
.tab-item:hover span {
    color: var(--color-action);
    border-color: var(--color-action);
}
.tab-item.active span{
    color: var(--color-white);
    background-color: var(--color-action);
    border-color: var(--color-action);
}
.tab-panel {
    display: none;
}
.tab-panel.show {
    display: block;
}
.tab-panel h2 {
    margin: 30px 0 50px;
}
.heading-acronym {
    margin-bottom: 30px;
    font-size: 24px;
}
.heading-acronym span {
    display: block;
    width: 48px;
    line-height: 48px;
    border-radius: 48px;
    background-color: var(--color-gray);
    text-align: center;
}
.product-list {
    display: flex;
    margin-bottom: 50px;
    list-style: none;
    column-gap: 60px;
    flex-wrap: wrap;
}
.product-item {
    width: calc(50% - 30px);
    border-top: 1px solid var(--color-gray);
    margin: 0;
}
.product-item a {
    display: flex;
    height: 90px;
    position: relative;
    align-items: center;
    color: #272623;
}
@media(hover: hover) {
    .product-item a:hover {
        text-decoration: none;
        color: var(--color-action);
        
    }
}
.product-img {
    display: flex;
    width: 90px;
    margin-right: 16px;
    white-space: nowrap;
}

.product-img img {
    height: 65px;
    width: auto;
}
.product-name {
    width: 100%;
    margin-right: 52px;
    position: relative;
    justify-content: space-between;
    align-items: center;
    line-height: 1.2;
    font-size: 18px;
    font-weight: 500;
}
.product-item a::before {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 32px;
    position: absolute;
    top: calc(50% - 16px);
    right: 5px;
    background-color: var(--color-action);
    z-index: -1;
    transition: .3s;
    opacity: .5;
}
@media (hover: hover) {
    .product-item a:hover::before {
        transform: scale(1.3125,1.3125);
        opacity: .2;
    }
}
.product-item a::after {
    content: '';
    display: block;
    width: 42px;
    height: 42px;
    position: absolute;
    right: 0;
    background-image: url(../img/link01.svg);
    background-position: center;
    background-size: 32px;
}
@media screen and (max-width:999px) {
    .tab-menu {
        width: calc(100% - 20px);
        margin: 0 20px;
    }
    .tab-section h2 {
        margin: 10px 0 30px;
    }
    .heading-acronym {
        font-size: 20px;
    }
    .heading-acronym span {
        width: 32px;
        line-height: 32px;
    }
    .product-name {
        font-size: 16px;
    }
    .product-item a::before {
        content: none;
    }
}
@media screen and (max-width:640px) {
    .tab-menu {
        width: calc(100% - 20px);
        margin: 0 20px;
        overflow-x: auto;
    }
    .tab-list {
        padding: 10px 0 20px; 
        flex-wrap: nowrap;
    }
    .tab-item {
        white-space: nowrap;
        font-size: 14px;
    }
    .tab-item:last-child {
        padding-right: 20px;
    }
    .product-item {
        width: 100%;
    }
    .product-name::after {
        width: 32px;
        height: 32px;
    }
}

/*------------------------
    single parts
------------------------*/
.product-info {
    max-width: 960px;
    margin: -50px auto 30px;
}
.product-info img {
    width: 200px;
    height: auto;
    margin-bottom: 10px;
}
figcaption {
    font-size: 14px;
}
.note {
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--color-gray);
    margin: 30px 0;
    background-color: var(--color-white);
}
.note > *:last-child {
    margin-bottom: 0;
}
.heading-type01 {
    margin: 80px 0 30px;
    padding-bottom: 12px;
    border-bottom: 1px solid #999;
}
.heading-type01::after {
    content: "";
    background-image: url(../img/parts_heading01.svg);
    background-repeat: no-repeat;
    background-position: top left;
    width: 23px;
    height: 3px;
    position: absolute;
    bottom: -3px;
    left: 0;
}
.safety-manual {
    margin-bottom: 30px;
}
.safety-manual-list {
    list-style: none;
}
.safety-manual-item {
    display: flex;
    padding: 24px 12px;
    margin: 0;
    border-top: 1px solid var(--color-gray);
    justify-content: space-between;
    align-items: center;
}
.safety-manual-item dl {
    width: calc(100% - 160px);
}
.safety-manual-item dt {
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: var(--color-action);
}
.manual-btn {
    height: 40px;
    width: 160px;
    margin-bottom: 0;
    position: relative;
}
.manual-btn::before {
    content: '';
    display: block;
    height: 40px;
    width: 160px;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color-action);
    opacity: .5;
    transition: .3s;
}
.manual-btn a {
    display: flex;
    border-radius: 5px;
    position: relative;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 40px;
    color: var(--color-white);
    background-color: var(--color-action);
}
.manual-btn a::after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background-image: url(../img/outbound.svg);
    background-size: auto;
}
.product-manual {
    margin-bottom: 30px;
}
.product-manual-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    list-style: none;
}
.product-manual-item {
    display: flex;
    width: 304px;
    padding: 32px;
    margin: 0;
    box-sizing: border-box;
    border-radius: 12px;
    border: 1px solid var(--color-gray);
    flex-direction: column;
    background-color: var(--color-white);
}
.product-manual-item dt {
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: var(--color-action);
}
.product-manual-item dd {
    margin-bottom: 20px;
}
.product-manual-item .manual-btn {
    width: 100%;
    height: 48px;
    margin-top: auto;

}
.product-manual-item .manual-btn a {
    font-size: 16px;
    line-height: 48px;
}
.product-manual-item .manual-btn a::after {
    width: 15px;
    height: 15px;
    background-size: 15px;
}
.product-manual-item .manual-btn::before {
    height: 48px;
    width: 100%;
}
@media (hover: hover) {
    .safety-manual-item:hover {
        background-color: var(--color-white);
    }
    .manual-btn a:hover {
        text-decoration: none;
    }
    .manual-btn:hover::before {
        transform: scale(1.0625,1.25);
        opacity: .2;
    }
}
@media screen and (max-width:999px) {
    .product-info {
        padding: 0 20px;
    }
    .product-manual {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    .product-manual-list {
        flex-wrap: nowrap;
    }
    .product-manual-item {
        width: 264px;
    }
}
@media screen and (max-width:640px) {
    .product-info img {
        width: 100%;
    }
    .heading-type01 {
        margin-top: 50px;
    }
    .safety-manual-item {
        display: block;
    }
    .safety-manual-item dl {
        width: 100%;
    }
    .safety-manual-item dd {
        margin-bottom: 16px;
    }
}

/*------------------------
    footer
------------------------*/
footer {
    width: 100%;
    margin-top: 100px;
    padding: 30px 0;
    color: var(--color-white);
    background-color: var(--color-navy);
}
footer a {
    color: var(--color-white);
}
footer p {
    margin-bottom: 0;
}
.page-to-top a {
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    text-indent: -9999px;
    font-size: 1px;
    background-image: url(../img/page_to_top.svg);
    background-position: top center;
    background-size: 50px;
}
@media(hover: hover) {
    .page-to-top a:hover {
        background-position: bottom center;
    }
}
.footer-inner {
    max-width: 960px;
    margin: 30px auto 0;
    text-align: center;
}
.footer-menu {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 16px;
    font-size: 14px;
    list-style: none;
}
.footer-menu li {
    margin: 0;
}
.copyright {
    font-size: 11px;
    color: #bbb;
}
@media screen and (max-width:999px) {
    footer {
        margin-top: 50px;
        padding: 20px 0;
    }
}


 