@charset "shift_jis";
/* ========================================
index.css
------------------------------------------
※ IE10以上
※ wide:1180px（49px + 1082px + 49px）
※ font-sizeは基本を10pxで設定（1rem = 10px）
======================================== */


a.link-txt {
    color: #2090cd;
    text-decoration: none;
}
a.link-txt:hover {
    text-decoration: underline;
}


/* ---------------------------------------- 
 - img
---------------------------------------- */
img {
    max-width: 100%;
}

/* ---------------------------------------- 
 - .leadTitle
---------------------------------------- */
p.leadTitle {
    color: #52575A;
    font-size: 30px;
    font-weight: bold;
    padding-top: 60px;
}

#Content .wrapper h2 {
    margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
    #Content .wrapper h2 {
        margin-bottom: 20px;
    }
}

/* ---------------------------------------- 
 - .img-full
---------------------------------------- */
.img-full {
    margin: 0 auto 20px;
    text-align: center;
    max-width: 1082px;
    position: relative;
}
#Content .img-full .wrapper {
    width: 100%;
    max-width: 1082px;
    margin: 0 auto;
}
#Content .img-full .wrapper h1 {
    position: absolute;
    background: url(../images/img_main_logo.png) bottom left no-repeat;
    background-size: contain;
    color: #fff;
    font-weight: bold;
    padding-bottom: 10.5rem;
    text-align: center;
    top: 55px;
    width: 218px;
}
#Content .img-full p.lead {
    position: absolute;
    left: 3rem;
    bottom: 1rem;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    text-align: left;
    text-shadow: 0px 0px 4px #666, 0px 0px 4px #666;
}
#Content .img-full img {
    width: auto;
    height: auto;
}
@media screen and (max-width: 1082px) {
    #Content .img-full img {
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    #Content .img-full {
        margin-bottom: 30px;
    }
    #Content .img-full .wrapper h1 {
        top: 6.5vw;
        font-size: 24px;
        background: url(../images/img_main_logo.png) bottom left no-repeat;
        background-size: 100%;
        padding-bottom: 50px;
        width: auto;
    }
    #Content .img-full p.lead {
        text-indent: -9999px;
    }
}

/* ---------------------------------------- 
 - .sec-note
---------------------------------------- */
#Content .sec-note {
    color: #4D8CAC;
    font-size: 16px;
    line-height: 1.6;
    padding-right: 0;
    margin-left: 1em;
    text-indent: -1em;
    margin-bottom: 10px;
}
#Content .sec-note.text-right {
    text-align: right;
}
@media screen and (max-width: 768px) {
    #Content .sec-note {
        font-size: 13px;
    }
}

/* ---------------------------------------- 
 - .mv-area
---------------------------------------- */
#Content .mv-area {
    display: flex;
    align-items: center;
    background-color: #F1F3F7;
    margin-bottom: 100px;
}
#Content .mv-area .mv {
    width: 57%;
    clip-path: polygon(23% 0, 100% 0, 100% 100%, 0 100%);
}
#Content .mv-area .mv img {
    width: 100%;
    max-height: 700px;
    object-fit: cover;
}
#Content .mv-area .mv-title {
    width: 43%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-left: 1.5%;
    margin-top: 0;
}
#Content .mv-area .mv-title .mv-logo {
    width: clamp(160px, 18vw, 250px);
    margin-bottom: 3%;
}
#Content .mv-area .mv-title .mv-text {
    color: #00559D;
    font-size: clamp(18px, 1.67vw, 30px);
    font-weight: bold;
    line-height: 1.6;
}
@media screen and (max-width: 768px) {
    #Content .mv-area {
        flex-direction: column-reverse;
        margin-bottom: 60px;
        position: relative;
    }
    #Content .mv-area .mv {
        width: 100%;
        clip-path: none;
        margin-bottom: 20px;
    }
    #Content .mv-area .mv img {
        width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    #Content .mv-area .mv-title {
        width: 100%;
        align-items: flex-start;
        padding: 0 0 20px 0;
        position: absolute;
        bottom: 10px;
        left: 20px;
    }
    #Content .mv-area .mv-title .mv-logo {
        width: clamp(110px, 18vw, 250px);
        margin-bottom: 10%;
    }
    #Content .mv-area .mv-title .mv-text {
        color: #fff;
        font-size: clamp(14px, 3vw, 30px);
        line-height: 1.8;
    }
}

/* ---------------------------------------- 
 - .title_tab
---------------------------------------- */
#Content > .title_tab {
	width: 100%;
    margin: 50px auto 0;
    border-bottom: #b1b2b3 solid 1px;
}
#Content > .title_tab ul {
	width: 615px;
    height: 70px;
    margin: 0 auto;
    
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items:flex-end;
	-ms-align-items:flex-end;
	align-items:flex-end;
}
#Content > .title_tab ul li {
	width: 294px;
    height: 60px;
    background-color: #d5d5d5;
    cursor: pointer;
}
#Content > .title_tab ul li.current {
    height: 70px;
    background-color: #5A7FBF;
    border-left: #b1b2b3 solid 1px;
    border-top: #b1b2b3 solid 1px;
    border-right: #b1b2b3 solid 1px;
    margin-bottom: -1px;
}
#Content > .title_tab ul li a {
    display: block;
    text-decoration: none;
    width: 100%;
    height: 60px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
    -webkit-flex-direction: column;
	-ms-flex-direction: column;
    flex-direction: column;
}
#Content > .title_tab ul li.current a {
    height: 70px;
    color: #fff;
}
@media screen and (max-width: 768px) {
    /* title_tab */
    #Content > .title_tab {
        width: 100%;
        margin: 5.3vw auto 0;
        border-bottom: #b1b2b3 solid 1px;
    }
    #Content > .title_tab ul {
        width: 62vw;
        height: 60px;
    }
    #Content > .title_tab ul li {
        width: 29vw;
        height: 50px;
    }
    #Content > .title_tab ul li.current {
        height: 60px;
    }
    #Content > .title_tab ul li a {
        height: 100%;
        font-size: 1.3rem;
        line-height: 1.2;
        padding-left: 0.5em;
        padding-right: 0.5em;
        box-sizing: border-box;
        text-align: center;
    }
    #Content > .title_tab ul li.current a {
        height: 100%;
    }
}


/* ---------------------------------------- 
 - .tab-lowLebel
---------------------------------------- */
.tab-lowLebel {
    margin-bottom: 96px;
}
.tab-lowLebel ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    max-width: 1082px;
}
.tab-lowLebel ul li {
    display: table;
    margin-right: 1.48%;
    width: 32.34%;
}
.tab-lowLebel ul li:last-child {
    margin-right: 0;
}
.tab-lowLebel ul li a {
    background: #e5ecf4;
    background-size: 2.85%;
    color: #231815;
    display: table-cell;
    font-size: 1.8rem;
    line-height: 1.4;
    text-align: center;
    transition: all 0.3s ease;
    height: 80px;
    vertical-align: middle;
    width: 100%;
    position: relative;
}
.tab-lowLebel ul li a::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid #5a7fbf;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    position: absolute;
    top: calc(50% - 4px);
    right: 15px;
}
.tab-lowLebel ul li a:hover,
.tab-lowLebel ul li.current a {
    background: #5a7fbf;
    color: #fff;
    text-decoration: none;
}
.tab-lowLebel ul li a:hover::after,
.tab-lowLebel ul li.current a::after {
    border-left: 8px solid #fff;
}
@media screen and (max-width: 768px) {
    .tab-lowLebel {
        margin-bottom: 30px;
    }
    .tab-lowLebel ul li a {
        font-size: 1.0rem;
        height: 60px;
    }
    .tab-lowLebel ul li a::after {
        border-left: 4px solid #5a7fbf;
        border-top: 3px solid transparent;
        border-bottom: 3px solid transparent;
        top: calc(50% - 2px);
        right: 5px;
    }
    .tab-lowLebel ul li a:hover::after,
    .tab-lowLebel ul li.current a::after {
        border-left: 4px solid #fff;
    }
}


/* ---------------------------------------- 
 - h
---------------------------------------- */
h2 {
    background: #5a7fbf !important;
    color: #fff !important;
    margin-bottom: 20px;
    padding: 0 20px !important;
    /*padding-bottom: 0 !important;*/
}
@media all and (-ms-high-contrast:none) { /* IE11 */
    *::-ms-backdrop, h2 {
        padding: 3px 20px 0 !important;
    }
}
@media screen and (max-width: 768px) {
    h2 {
        font-size: 21px !important;
        line-height: 1.2;
        padding: 12px 20px 12px !important;
    }
    h2 span {
        display: block;
        font-size: 18px;
    }
}
h3 {
    color: #5a7fbf !important;
    font-size: 44px !important;
    margin-bottom: 15px;
    padding-bottom: 0 !important;
}
@media screen and (max-width: 768px) {
    h3 {
        font-size: 24px !important;
    }
}
h4 {
    background: #5a7fbf !important;
    color: #fff !important;
    font-size: 26px !important;
    font-weight: bold;
    margin-bottom: 30px;
    padding-bottom: 0 !important;
    padding: 0 22px;
}
@media all and (-ms-high-contrast:none) { /* IE11 */
    *::-ms-backdrop, h4 {
        padding: 2px 22px 0 !important;
    }
}
@media screen and (max-width: 768px) {
    h4 {
        font-size: 24px !important;
        margin-bottom: 20px;
        padding: 0 10px;
    }
}


/* ---------------------------------------- 
 - .descriptionTtl
---------------------------------------- */
.descriptionTtl {
    margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
    .descriptionTtl {
        margin-bottom: 20px;
    }
}


/* ---------------------------------------- 
 - p.img span
---------------------------------------- */
p.img span {
    margin-bottom: 40px;
    font-size: 15px;
    display: block;
    padding-right: 105px;
    text-align: right;
}
@media screen and (max-width: 768px) {
    p.img span {
        padding-right: 0;
    }
}


/* ---------------------------------------- 
 - .table
---------------------------------------- */
.table p.name {
    float: left;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}
.table ul {
    float: right;
    display: flex;
    margin-bottom: 10px;
}
.table ul li {
    font-size: 18px;
    margin-left: 12px;
}
.table ul li:first-child {
    font-weight: bold;
    margin-left: 0;
}
.table p.note a {
    background: url(../images/arrow.png) center left no-repeat;
    color: #004DA0;
    font-size: 24px;
    padding-left: 30px;
    text-decoration: none;
}
.table .table-img {
    margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
    .table p.name {
        float: none;
        font-size: 12px;
        margin-bottom: 0;
    }
    .table ul {
        float: none;
    }
    .table ul li {
        font-size: 16px;
    }
    .table ul li:first-child {
        margin-left: 0;
    }
    .table p.note a {
        background-size: contain;
        font-size: 18px;
    }
    .table p.tableSP {
        background: #f4f4f5;
        margin-bottom: 10px;
        padding: 1em 4%;
    }
    .table p.tableSP a {
        background: #231815 url(../images/ico_arr_red_r.png) 96.5% center no-repeat;
        background-size: 3%;
        border: #404040 solid 1px;
        box-sizing: border-box;
        color: #fff;
        display: block;
        font-size: 1.6rem;
        padding: 1em 0.25em;
        text-align: center;
        width: 100%;
    }
}


/* ---------------------------------------- 
 - .g_cargo_unfold-menu
---------------------------------------- */
.g_cargo_unfold-menu {
    margin-bottom: 50px;
    padding-top: 87px;
    margin-top: -87px;
}
.g_cargo_unfold-menu ul.photo {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.g_cargo_unfold-menu ul.photo li {
    width: 48.24%;
}
.g_cargo_unfold-menu ul.photo li:nth-child(n+3) {
    margin-top: 90px;
}
.g_cargo_unfold-menu ul.photo li span.ttl {
    color: #5a7fbf;
    display: block;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 30px;
}
.g_cargo_unfold-menu ul.photo li span.ttl span {
    display: block;
    font-size: 18px;
}
.g_cargo_unfold-menu ul.photo span.name {
    display: block;
    font-size: 15px;
    line-height: 1.4;
    margin-top: 25px;
    text-align: right;
}
.g_cargo_unfold-menu .table p.note {
    color: #4D8CAC;
    font-size: 15px;
    margin-top: 5px;
    text-align: right;
}
.g_cargo_unfold-menu .table .table-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    float: none;
    margin-bottom: 5px;
}
.g_cargo_unfold-menu .table .table-title li:last-child {
    font-weight: normal;
}
#table-menu h2 + p {
    font-size: 18px;
    margin-bottom: 25px;
    text-align: center;
}
#table-menu ul {
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
    width: 88.72%;
}
#table-menu ul li {
    text-align: center;
    width: 20.33%;
}
#table-menu ul li a {
    color: #5a7fbf;
}
#table-menu ul li a:hover {
    text-decoration: none;
}
#table-menu ul li a img {
    max-width: 62px;
}
@media screen and (max-width: 768px) {
    .g_cargo_unfold-menu {
        padding-top: 60px;
        margin-top: -60px;
    }
    .g_cargo_unfold-menu ul.photo {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }
    .g_cargo_unfold-menu ul.photo span.name {
        font-size: 14px;
    }
    .g_cargo_unfold-menu ul.photo li {
        width: 48.24%;
    }
    .g_cargo_unfold-menu ul.photo li:nth-child(n+3) {
        margin-top: 40px;
    }
    .g_cargo_unfold-menu ul.photo li span.ttl {
        font-size: 18px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    #table-menu ul {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        margin: 0 auto;
        width: 100%;
    }
    #table-menu ul li {
        margin-bottom: 2rem;
        text-align: center;
        width: 50%;
    }
    #table-menu ul li img {
        width: 72px;
    }
    .g_cargo_unfold-menu .table .table-title li {
        font-size: 12px;
    }
    .g_cargo_unfold-menu .table p.note {
        font-size: 12px;
    }
}


/* ---------------------------------------- 
 - #Gcargo-menu
---------------------------------------- */
#Gcargo-menu {
    padding-top: 87px;
    margin-top: -87px;
}
#Gcargo-menu p.ttl {
    color: #52575A;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 15px;
}
#Gcargo-menu p.ttls {
    color: #52575A;
    font-size: 18px;
}
#Gcargo-menu dl.capacityBox {
    margin: 0 auto;
    max-width: 1000px;
}
#Gcargo-menu dl.capacityBox dt {
    color: #52575A !important;
    font-size: 20px !important;
    font-weight: bold;
    margin: 0 0 20px;
    padding-bottom: 0 !important;
}
#Gcargo-menu dl.capacityBox dd {
    margin-bottom: 57px;
}
#Gcargo-menu dl.capacityBox dd img {
    width: 100%;
}
#Gcargo-menu .optionBox {
    background-color: #F0F7FF;
    display: flex;
    justify-content: space-between;
    margin: 0 auto 120px;
    padding: 20px 50px;
    width: 79.54%;
    max-width: 1000px;
}
#Gcargo-menu .optionBox dl dt {
    color: #52575A !important;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 7px;
}
#Gcargo-menu .optionBox dl:nth-of-type(1) {
    width: 55.93%;
    max-width: 458px;
}
#Gcargo-menu .optionBox dl:nth-of-type(2) {
    width: 37.02%;
    max-width: 358px;
}
#Gcargo-menu .optionBox dl dd:nth-of-type(1) {
    margin-bottom: 10px;
}
#Gcargo-menu .optionBox dl dd ul:nth-of-type(1) {
    display: flex;
    justify-content: space-between;
}
#Gcargo-menu .optionBox dl:nth-of-type(1) dd ul li {
    line-height: 1.4;
    width: 48.23%;
}
#Gcargo-menu .optionBox dl:nth-of-type(2) dd ul li {
    line-height: 1.4;
    width: 100%;
    max-width: 222px;
}
#Gcargo-menu .optionBox dl dd ul li img {
    margin-bottom: 5px;
}
#Gcargo-menu .optionBox dl dd ul li span {
    color: #4D8CAC;
    display: block;
    font-size: 16px;
}
#Gcargo-menu .img-title {
    margin-bottom: 40px;
}
#Gcargo-menu .flex-img-cap {
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    gap: 0;
    padding: 0 5%;
    margin: 15px auto;
}
#Gcargo-menu .flex-img-cap .img-cap {
    width: 35%;
    min-width: 315px;
}
@media screen and (max-width: 768px) {
    #Gcargo-menu p.ttl {
        font-size: 18px;
        margin-bottom: 15px;
    }
    #Gcargo-menu dl.capacityBox dt {
        font-size: 20px !important;
        margin: 0 0 10px;
    }
    #Gcargo-menu dl.capacityBox dd {
        margin-bottom: 20px;
    }
    #Gcargo-menu .optionBox {
        display: block;
        margin: 0 auto 20px;
        padding: 20px;
        width: auto;
        max-width: inherit;
    }
    #Gcargo-menu .optionBox dl dt {
        color: #52575A !important;
        font-size: 20px;
        font-weight: bold;
    }
    #Gcargo-menu .optionBox dl:nth-of-type(1) {
        width: 100%;
        max-width: inherit;
    }
    #Gcargo-menu .optionBox dl:nth-of-type(2) {
        width: 100%;
        max-width: inherit;
        margin-top: 20px;
    }
    #Gcargo-menu .optionBox dl:nth-of-type(1) dd ul li {
        width: 48.23%;
    }
    #Gcargo-menu .optionBox dl:nth-of-type(2) dd ul li {
        width: 48.23%;
    }
    #Gcargo-menu .optionBox dl dd ul li span {
        font-size: 14px;
    }
    #Gcargo-menu .img-title {
        margin-bottom: 20px;
    }
    #Gcargo-menu .flex-img-cap {
        padding: 0;
    }
    #Gcargo-menu .flex-img-cap .img-cap {
        width: 50%;
        min-width: auto;
        font-size: 12px;
    }
}


/* ---------------------------------------- 
 - #SuperGcargo-menu
---------------------------------------- */
#SuperGcargo-menu {
    margin-bottom: 100px;
    padding-top: 87px;
    margin-top: -87px;
}
#SuperGcargo-menu .descriptionTtl {
    margin-bottom: 0;
}
#SuperGcargo-menu .ttl-wrapper {
    margin-bottom: 40px;
    padding-top: 40px;
}
#SuperGcargo-menu .ttl-wrapper .ttl-wrapperInner {
    margin-bottom: 0;
}
#SuperGcargo-menu .ttl-wrapper .ttl-wrapperInner p.ttl {
    color: #52575A;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 30px;
}
#SuperGcargo-menu .ttl-wrapper .ttl-wrapperInner p.txt {
    color: #5A7FBF;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}
#SuperGcargo-menu .ttl-wrapper .img {
    max-width: 708px;
    margin: 0 auto 20px;
}
#SuperGcargo-menu .ttl-wrapper .img-note {
    max-width: 520px;
    color: #4D8CAC;
    line-height: 1.6;
    margin: 0 auto;
}
#SuperGcargo-menu .table {
    margin-bottom: 50px;
    padding-top: 20px;
}
#SuperGcargo-menu .table li {
    font-weight: normal;
}
#SuperGcargo-menu .t-img {
    max-width: 900px;
    margin: 0 auto 50px;
}
#SuperGcargo-menu .t-img .name {
    padding-right: 0;
    margin-bottom: 0;
}
#SuperGcargo-menu .flex-content {
    display: flex;
    justify-content: space-between;
    gap: 0 3%;
}
#SuperGcargo-menu .flex-content .item-txt {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 7px;
}
#SuperGcargo-menu .flex-content .item-l {
    width: 36%;
    max-width: 388px;
}
#SuperGcargo-menu .flex-content .item-r {
    width: 61%;
    max-width: 595px;
}
@media screen and (max-width: 768px) {
    #SuperGcargo-menu {
        margin-bottom: 50px;
    }
    #SuperGcargo-menu .ttl-wrapper {
        display: block;
        margin-bottom: 20px;
        padding-top: 20px;
    }
    #SuperGcargo-menu .ttl-wrapper .ttl-wrapperInner {
        margin-bottom: 20px;
    }
    #SuperGcargo-menu .ttl-wrapper .ttl-wrapperInner p.ttl {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 20px;
    }
    #SuperGcargo-menu .ttl-wrapper .ttl-wrapperInner p.txt {
        font-size: 16px;
        text-align: left;
    }
    #SuperGcargo-menu .ttl-wrapper p.img {
        width: 80%;
    }
    #SuperGcargo-menu .ttl-wrapper .img-note {
        font-size: 14px;
        margin: 0 auto 40px;
    }
    #SuperGcargo-menu .t-img {
        margin: 0 auto 40px;
    }
    #SuperGcargo-menu .table p.name {
        float: left;
    }
    #SuperGcargo-menu .table ul {
        float: right;
    }
    #SuperGcargo-menu .table ul li {
        font-size: 12px;
    }
}
@media screen and (max-width: 400px) {
    #SuperGcargo-menu .flex-content .item-l img, 
    #SuperGcargo-menu .flex-content .item-r img {
        height: 128px;
        object-fit: cover;
    }
}


/* ---------------------------------------- 
 - #GcargoEco-menu
---------------------------------------- */
#GcargoEco-menu {
    margin-bottom: 100px;
    padding-top: 87px;
    margin-top: -87px;
}
#GcargoEco-menu .img {
    max-width: 900px;
    margin: 0 auto;
}
#GcargoEco-menu .img.imgmb {
    margin-bottom: 40px;
}
#GcargoEco-menu .img span {
    padding-right: 0;
    margin-top: 10px;
}
#GcargoEco-menu ul.img2 {
    display: flex;
    justify-content: space-between;
    gap: 0 10%;
    margin: 80px auto 0;
    max-width: 814px;
}
#GcargoEco-menu ul.img2 li {
    width: 45%;
    max-width: 362px;
}
#GcargoEco-menu ul.img2 li img {
    width: 100%;
}
#GcargoEco-menu ul.img2 li span {
    display: block;
    margin-top: 5px;
}
@media screen and (max-width: 768px) {
    #GcargoEco-menu {
        margin-bottom: 50px;
    }
    #GcargoEco-menu ul.img2 {
        width: 100%;
        gap: 0 4%;
        margin: 40px auto 0;
    }
    #GcargoEco-menu ul.img2 li {
        width: 48%;
    }
}


/* ---------------------------------------- 
 - #GcargoSnow-menu
---------------------------------------- */
#GcargoSnow-menu .img {
    max-width: 900px;
    margin: 0 auto;
}
#GcargoSnow-menu .img span {
    padding-right: 0;
}
#GcargoSnow-menu ul {
    display: flex;
    justify-content: space-between;
}
#GcargoSnow-menu ul li img {
    margin-bottom: 10px;
}
#GcargoSnow-menu ul li span {
    display: block;
    line-height: 1.2;
    font-size: 14px;
}
@media screen and (max-width: 768px) {
    #GcargoSnow-menu ul {
        flex-wrap: wrap;
    }
    #GcargoSnow-menu ul li {
        margin-bottom: 15px;
    }
    #GcargoSnow-menu ul li img {
        margin-bottom: 5px;
        width: 44vw;
    }
}


/* ---------------------------------------- 
 - #GcargoBodySize-menu
---------------------------------------- */
#GcargoBodySize-menu {
    margin-bottom: 100px;
    padding-top: 87px;
    margin-top: -87px;
}
#GcargoBodySize-menu p.img {
    margin-bottom: 50px;
}
#GcargoBodySize-menu p.img.photo img {
    width: 100%;
}
#GcargoBodySize-menu p.ttl {
    color: #52575A;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 20px;
}
#GcargoBodySize-menu p.ttl + p {
    font-size: 16px;
}
#GcargoBodySize-menu .table .sec-note {
    margin-top: 5px;
}
#GcargoBodySize-menu .table .table-img {
    margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
    #GcargoBodySize-menu {
        margin-bottom: 50px;
        padding-top: 60px;
        margin-top: -60px;
    }
    #GcargoBodySize-menu p.ttl {
        font-size: 21px;
    }
    #GcargoBodySize-menu .table .table-img {
        margin-bottom: 40px;
    }
}


/* ---------------------------------------- 
 - #GcargoBodyEquipment-menu
---------------------------------------- */
#GcargoBodyEquipment-menu ul.list {
    display: flex !important;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
#GcargoBodyEquipment-menu ul.list li {
    width: 22.73%;
}
#GcargoBodyEquipment-menu ul.list li:nth-child(n+5) {
    margin-top: 45px;
}
#GcargoBodyEquipment-menu ul.list li span {
    display: block;
    line-height: 1.2;
    font-size: 14px;
    padding-top: 10px;
}
@media screen and (max-width: 768px) {
    #GcargoBodyEquipment-menu ul.list {
        margin-bottom: 20px;
    }
    #GcargoBodyEquipment-menu ul.list li {
        margin-bottom: 15px;
        width: 44vw;
    }
    #GcargoBodyEquipment-menu ul.list li:nth-child(n+5) {
        margin-top: 0;
    }
    #GcargoBodyEquipment-menu ul.list li img {
        display: block;
        margin-bottom: 5px;
    }
    #GcargoBodyEquipment-menu ul.list li span {
        padding-top: 2px;
    }
}


/* ---------------------------------------- 
 - parts
---------------------------------------- */
.mgB45 {
	margin-bottom: 45px;
}
.note2 {
    font-size: 14px;
}




