@charset "UTF-8";

/*----------------------------------------------------------*/
/* 【追加】 OEM用
/*----------------------------------------------------------*/
.oem_box {
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
}

.oem_box-img {
    max-width: 300px;
    width: 34%;
}

.oem_box-txt {
    max-width: 570px;
    width: 63%;
}

.oem_box-txt p {
    margin-bottom: 1.5em !important;
}

/*.oem_box-txt p:nth-last-child(1) {
    margin-bottom: 0 !important;
}
*/

.oem_box-txt-box {
    background-color: #EFF6FC;
    padding: 3%;
    margin-bottom: 1.5em;
}

.oem_box-txt-box p {
    margin-bottom: 0 !important;
}

@media only screen and (max-width: 768px){
    .oem_box {
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .oem_box-img {
        width: 100%;
        margin: 0 auto 4% auto;
    }

    .oem_box-txt {
        width: 100%;
        margin: auto;
    }
}


/*----------------------------------------------------------*/
/* カスタマイズ用CSS
/*----------------------------------------------------------*/

*{
    margin: 0;
    padding: o;
}
html{
	box-sizing:border-box;
	line-height:1;
	font-size: 62.5%; /*  50 56.25 62.5 68.75 75*/
    background: #fff;
}
body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt" 1;
    overflow-x: hidden;
    counter-reset: rank;
    animation: fadeIn 2.5s ease 0s 1 normal;
    letter-spacing: .05em;
    color: #242424;
}

#all_wrap { position: relative; }
#all_wrap .content a { color: #005491; font-weight: 400; transition: ease 0.2s; }
#all_wrap .content a:hover { color: #005491; font-weight: 400; text-decoration: underline; transition: ease 0.2s; }
#all_wrap .single_content img { width: 100%; height: auto; padding: 0; margin: 0 auto; }

#all_wrap .content a.wp-block-button__link {
    display: block;
    width: 50%;
    color: #fff;
    transition: ease 0.2s;
    position: relative;
    padding: 10px 20px;
    margin: 0 auto;
}
#all_wrap .content a.wp-block-button__link:hover { text-decoration: none; opacity: 0.8; transition: ease 0.2s; }
#all_wrap .content a.wp-block-button__link::after {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background: none;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0,-50%) rotate(-45deg);
    -webkit-transform: translate(0,-50%) rotate(-45deg);
    transition: ease 0.2s;
}
#all_wrap .content a.wp-block-button__link:hover::after {
    right: 18px;
    transition: ease 0.2s;
}

/* スクロールの幅の設定 */
html::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* スクロールの背景の設定 */
html::-webkit-scrollbar-track {
  border-radius: 0;
  box-shadow: 0 0 4px #fff inset;
}

/* スクロールのつまみ部分の設定 */
html::-webkit-scrollbar-thumb {
  border-radius: 0;
  background: #c8c8c8;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

#all_wrap .single_content a { color: #005491; font-weight: 400; transition: ease 0.2s; }
#all_wrap .single_content a:hover { color: ##005491; font-weight: 400; text-decoration: underline; transition: ease 0.2s; }


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap .content a.wp-block-button__link {
        display: block;
        width: 90%;
        color: #fff;
        transition: ease 0.2s;
        position: relative;
        padding: 10px 50px;
        margin: 0 auto;
    }
}


/************************************************************/
/*　アニメーション
/************************************************************/
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/* 左からスラインドイン */
@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
        opacity: 0;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
        opacity: 0;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
    transition: all 0.5s ease;
}

/* 右からスラインドイン */
@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
        opacity: 0;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
        opacity: 0;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
    transition: all 0.5s ease;
}

/* 下からスラインドイン */
@-webkit-keyframes slideInBtm {
    from {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
        opacity: 0;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes slideInBtm {
    from {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
        opacity: 0;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
.slideInBtm {
    -webkit-animation-name: slideInBtm;
    animation-name: slideInBtm;
    transition: all 0.5s ease;
}

/* 中心からズームイン */
@-webkit-keyframes slideInZoom {
    from {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes slideInZoom {
    from {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}
.slideInZoom {
    -webkit-animation-name: slideInZoom;
    animation-name: slideInZoom;
    transition: all 0.5s ease;
}


/************************************************************/
/*　共通
/************************************************************/

/*本文*/
#all_wrap .content {
    font-size: 15px;
    line-height: 2;
    padding: 0;
    margin: 0 auto 100px;
}
.secBox {
    margin-bottom: 100px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*本文*/
    #all_wrap .content {
        font-size: 15px;
        line-height: 2;
        padding: 0;
        margin: 0 auto 50px;
    }
    .secBox {
        margin-bottom: 50px;
    }
}

/*フレックス2列*/
.flexBox {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 80px;
}
.flexBox > div {
    width: 48%;
    padding: 0;
    margin: 0 0 20px;
}

/*フレックス3列*/
.flexBox3 {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 80px;
    position: relative;
}
.flexBox3::after {
    content: '';
    display: block;
    width: 23%;
}
.flexBox3 > div {
    width: 31%;
    padding: 0;
    margin: 0 0 20px;
}
.flexBox3 > div > img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}

/*フレックス4列*/
.flexBox4 {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 80px;
    position: relative;
}
.flexBox4::before {
    order: 1;
}
.flexBox4::before,
.flexBox4::after {
    content: '';
    display: block;
    width: 23%;
}
.flexBox4 > div {
    width: 23%;
    padding: 0;
    margin: 0 0 20px;
}
.flexBox4 > div > img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*フレックス2列*/
    .flexBox {
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        align-content: stretch;
        align-items: stretch;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    .flexBox > div {
        width: 100%;
        padding: 0;
        margin: 0 auto 20px;
    }

    /*フレックス3列*/
    .flexBox3 {
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        align-content: stretch;
        align-items: stretch;
        flex-wrap: wrap;
        margin-bottom: 20px;
        position: relative;
    }
    .flexBox3::after {
        content: '';
        display: block;
        width: 23%;
    }
    .flexBox3 > div {
        width: 31%;
        padding: 0;
        margin: 0 0 20px;
    }
    .flexBox3 > div > img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
    }

    /*フレックス4列*/
    .flexBox4 {
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        align-content: stretch;
        align-items: stretch;
        flex-wrap: wrap;
        margin-bottom: 20px;
        position: relative;
    }
    .flexBox4::before {
        order: 1;
    }
    .flexBox4::before,
    .flexBox4::after {
        content: '';
        display: none;
    }
    .flexBox4 > div {
        width: 48%;
        padding: 0;
        margin: 0 0 10px;
    }
    .flexBox4 > div > img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
    }
}


/*通常ボタン*/
#all_wrap .Btn.w50 {
    width: 50%;
    margin-right: auto;
    margin-left: auto;
}
#all_wrap .Btn.harf {
    width: 48%;
    margin: 0;
}
#all_wrap .Btn > a {
    display: block;
    padding: 15px 16px;
    margin: 20px auto 10px;
    color: #fff!important;
    background-color: #f0ad4e;
    border-color: #eea236!important;
    font-size: 18px;
    line-height: 1.2em;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 400;
    transition: 0.5s;
    text-align: center;
}
#all_wrap .Btn > a:hover {
    color: #fff;
    background-color: #f90;
    border-color: #f90!important;
    text-decoration: none;
    font-weight: 400;
    transition: 0.5s;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*通常ボタン*/
    #all_wrap .Btn.w50 {
        width: 100%;
        margin-right: auto;
        margin-left: auto;
    }
    #all_wrap .Btn.harf {
        width: 100%;
        margin: 0;
    }
    #all_wrap .Btn > a {
        display: block;
        padding: 12px 12px;
        margin: 10px auto 10px;
        color: #fff!important;
        background-color: #f0ad4e;
        border-color: #eea236!important;
        font-size: 15px;
        line-height: 1.2em;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 400;
        transition: 0.5s;
        text-align: center;
    }
    #all_wrap .Btn > a:hover {
        color: #fff;
        background-color: #f90;
        border-color: #f90!important;
        text-decoration: none;
        font-weight: 400;
        transition: 0.5s;
    }
}

/*通常ボタン 青*/
#all_wrap .Btn2.w50 {
    width: 50%;
    margin-right: auto;
    margin-left: auto;
}
#all_wrap .Btn2.harf {
    width: 48%;
    margin: 0;
}
#all_wrap .Btn2 > a {
    display: block;
    padding: 15px 16px;
    margin: 20px auto 10px;
    color: #fff!important;
    background-color: #5bc0de;
    border-color: #46b8da!important;
    font-size: 18px;
    line-height: 1.2em;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 400;
    transition: 0.5s;
    text-align: center;
}
#all_wrap .Btn2 > a:hover {
    color: #fff;
    background-color: #46b8da;
    border-color: #46b8da!important;
    text-decoration: none;
    font-weight: 400;
    transition: 0.5s;
}

#all_wrap .flexBox .Btn > a,
#all_wrap .flexBox .Btn2 > a {
    margin-bottom: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*通常ボタン 青*/
    #all_wrap .Btn2.w50 {
        width: 100%;
        margin-right: auto;
        margin-left: auto;
    }
    #all_wrap .Btn2.harf {
        width: 100%;
        margin: 0;
    }
    #all_wrap .Btn2 > a {
        display: block;
        padding: 12px 12px;
        margin: 10px auto 10px;
        color: #fff!important;
        background-color: #5bc0de;
        border-color: #46b8da!important;
        font-size: 15px;
        line-height: 1.2em;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 400;
        transition: 0.5s;
        text-align: center;
    }
    #all_wrap .Btn2 > a:hover {
        color: #fff;
        background-color: #46b8da;
        border-color: #46b8da!important;
        text-decoration: none;
        font-weight: 400;
        transition: 0.5s;
    }

    #all_wrap .flexBox .Btn > a,
    #all_wrap .flexBox .Btn2 > a {
        margin-bottom: 0;
    }
}

/*赤ボタン*/
.BtnRed {
    display: inline-block;
}
.BtnRed.center {
    text-align: center;
    margin: 0 auto;
}
#all_wrap .l-wrapper .pageContents .content .BtnRed,
#all_wrap .l-wrapper .postContents .content .BtnRed {
    display: inline-block;
}
.BtnRed > a,
#all_wrap .l-wrapper .pageContents .content .BtnRed > a,
#all_wrap .l-wrapper .postContents .content .BtnRed > a {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0 0 0 25px;
    margin: auto;
    background: #D60000;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    position: relative;
    z-index: 0;
    transition: all 0.5s ease;
}
.BtnRed > a::before,
#all_wrap .l-wrapper .pageContents .content .BtnRed > a::before,
#all_wrap .l-wrapper .postContents .content .BtnRed > a::before {
    content: '';
    display: block;
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    background: #B40000;
    transition: all 0.5s ease;
}
.BtnRed > a:hover::before,
#all_wrap .l-wrapper .pageContents .content .BtnRed > a:hover::before,
#all_wrap .l-wrapper .postContents .content .BtnRed > a:hover::before {
    width: 100%;
    transition: all 0.5s ease;
}
.BtnRed > a:hover,
#all_wrap .l-wrapper .postContents .content .BtnRed > a:hover,
#all_wrap .l-wrapper .pageContents .content .BtnRed > a:hover {
    text-decoration: none;
}
.BtnRed > a > span,
#all_wrap .l-wrapper .pageContents .content .BtnRed > a > span,
#all_wrap .l-wrapper .postContents .content .BtnRed > a > span {
    display: block;
    padding: 25px;
    margin: 0 0 0 25px;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    position: relative;
    background: #B40000;
}
.BtnRed > a > span::before,
#all_wrap .l-wrapper .pageContents .content .BtnRed > a > span::before,
#all_wrap .l-wrapper .postContents .content .BtnRed > a > span::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transition: all 0.5s ease;
}
.BtnRed > a > span::after,
#all_wrap .l-wrapper .pageContents .content .BtnRed > a > span::after,
#all_wrap .l-wrapper .postContents .content .BtnRed > a > span::after {
    content: '';
    display: block;
    width: 2px;
    height: 10px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
    -webkit-transform: translate(-50%,-50%) rotate(45deg);
    transition: all 0.5s ease;
}
.BtnRed > a:hover > span::before,
#all_wrap .l-wrapper .pageContents .content .BtnRed > a:hover > span::before,
#all_wrap .l-wrapper .postContents .content .BtnRed > a:hover > span::before {
    transform: translate(-50%,-50%) rotate(45deg);
    -webkit-transform: translate(-50%,-50%) rotate(45deg);
    transition: all 0.5s ease;
}
.BtnRed > a:hover > span::after,
#all_wrap .l-wrapper .pageContents .content .BtnRed > a:hover > span::after,
#all_wrap .l-wrapper .postContents .content .BtnRed > a:hover > span::after {
    transform: translate(-50%,-50%) rotate(90deg);
    -webkit-transform: translate(-50%,-50%) rotate(90deg);
    transition: all 0.5s ease;
}

/*青ボタン*/
.BtnBlue {
    display: inline-block;
}
.BtnBlue.center {
    text-align: center;
    margin: 0 auto;
}
#all_wrap .l-wrapper .pageContents .content .BtnBlue,
#all_wrap .l-wrapper .postContents .content .BtnBlue {
    display: inline-block;
}
.BtnBlue > a,
#all_wrap .l-wrapper .pageContents .content .BtnBlue > a,
#all_wrap .l-wrapper .postContents .content .BtnBlue > a {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0 0 0 25px;
    margin: auto;
    background: #005491;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    position: relative;
    z-index: 0;
    transition: all 0.5s ease;
}
.BtnBlue > a::before,
#all_wrap .l-wrapper .pageContents .content .BtnBlue > a::before,
#all_wrap .l-wrapper .postContents .content .BtnBlue > a::before {
    content: '';
    display: block;
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    background: #004E86;
    transition: all 0.5s ease;
}
.BtnBlue > a:hover::before,
#all_wrap .l-wrapper .pageContents .content .BtnBlue > a:hover::before,
#all_wrap .l-wrapper .postContents .content .BtnBlue > a:hover::before {
    width: 100%;
    transition: all 0.5s ease;
}
.BtnBlue > a > span,
#all_wrap .l-wrapper .pageContents .content .BtnBlue > a > span,
#all_wrap .l-wrapper .postContents .content .BtnBlue > a > span {
    display: block;
    padding: 25px;
    margin: 0 0 0 25px;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    position: relative;
    background: #004E86;
}
.BtnBlue > a > span::before,
#all_wrap .l-wrapper .pageContents .content .BtnBlue > a > span::before,
#all_wrap .l-wrapper .postContents .content .BtnBlue > a > span::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transition: all 0.5s ease;
}
.BtnBlue > a > span::after,
#all_wrap .l-wrapper .pageContents .content .BtnBlue > a > span::after,
#all_wrap .l-wrapper .postContents .content .BtnBlue > a > span::after {
    content: '';
    display: block;
    width: 2px;
    height: 10px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
    -webkit-transform: translate(-50%,-50%) rotate(45deg);
    transition: all 0.5s ease;
}
.BtnBlue > a:hover > span::before,
#all_wrap .l-wrapper .pageContents .content .BtnBlue > a:hover > span::before,
#all_wrap .l-wrapper .postContents .content .BtnBlue > a:hover > span::before {
    transform: translate(-50%,-50%) rotate(45deg);
    -webkit-transform: translate(-50%,-50%) rotate(45deg);
    transition: all 0.5s ease;
}
.BtnBlue > a:hover > span::after,
#all_wrap .l-wrapper .pageContents .content .BtnBlue > a:hover > span::after,
#all_wrap .l-wrapper .postContents .content .BtnBlue > a:hover > span::after {
    transform: translate(-50%,-50%) rotate(90deg);
    -webkit-transform: translate(-50%,-50%) rotate(90deg);
    transition: all 0.5s ease;
}
.BtnBlue > a:hover,
#all_wrap .l-wrapper .pageContents .content .BtnBlue > a:hover,
#all_wrap .l-wrapper .postContents .content .BtnBlue > a:hover {
    text-decoration: none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    .BtnBlue {
        display: block;
    }
    .BtnBlue > a,
    #all_wrap .l-wrapper .pageContents .content .BtnBlue > a,
    #all_wrap .l-wrapper .postContents .content .BtnBlue > a {
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        align-content: center;
        align-items: center;
        flex-wrap: nowrap;
        padding: 0 0 0 25px;
        margin: auto;
        background: #005491;
        color: #fff;
        font-size: 15px;
        font-weight: 500;
        line-height: 1;
        position: relative;
        z-index: 0;
        transition: all 0.5s ease;
    }
}

/*テキストボタン*/
.BtnTxt {
    display: inline-block;
}
.BtnTxt > a {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0 25px 0 0;
    margin: auto;
    background: none;
    color: #272727;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    position: relative;
    z-index: 0;
    transition: all 0.5s ease;
}
.BtnTxt > a > span {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #005491;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
}
.BtnTxt > a > span::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transition: all 0.5s ease;
}
.BtnTxt > a > span::after {
    content: '';
    display: block;
    width: 1px;
    height: 8px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
    -webkit-transform: translate(-50%,-50%) rotate(45deg);
    transition: all 0.5s ease;
}
.BtnTxt > a:hover {
    color: #D60000;
    transition: all 0.5s ease;
}
.BtnTxt > a:hover > span {
    background: #D60000;
    transition: all 0.5s ease;
}
.BtnTxt > a:hover > span::before {
    transform: translate(-50%,-50%) rotate(45deg);
    -webkit-transform: translate(-50%,-50%) rotate(45deg);
    transition: all 0.5s ease;
}
.BtnTxt > a:hover > span::after {
    transform: translate(-50%,-50%) rotate(90deg);
    -webkit-transform: translate(-50%,-50%) rotate(90deg);
    transition: all 0.5s ease;
}


/*アンダーライン*/
.yellow { background: linear-gradient(transparent 50%,rgba(255,252,107,.69) 50%); }
.red { background: linear-gradient(transparent 50%,rgba(255,182,193,.3) 50%); }

/*More ボタン*/
.MoreBtn {
    text-align: left;
    padding: 0;
    margin: 0;
    margin-top: 20px;
}
.MoreBtn > a {
    display: inline-block;
    padding: 25px 80px 25px 50px;
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    background: #222;
    border-radius: 20px 0 20px 0;
    position: relative;
    transition: all 0.3s ease;
}
.MoreBtn > a:hover {
    transition: all 0.3s ease;
    background: #2BD1EF;
}
.MoreBtn > a::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    padding: 0;
    margin: 0;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}
.MoreBtn > a::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    margin: 0;
    background: none;
    border-right: 1px solid #fff;
    position: absolute;
    top: calc(50% + 2px);
    right: 22px;
    transform: translate(0, -50%) rotate(-65deg);
    -webkit-transform: translate(0, -50%) rotate(-65deg);
    -ms-transform: translate(0, -50%) rotate(-65deg);
    opacity: 0.8;
    transition: all 0.3s ease;
}
.MoreBtn > a:hover::before {
    right: 18px;
    transition: all 0.3s ease;
}
.MoreBtn > a:hover::after {
    right: 20px;
    transition: all 0.3s ease;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*More ボタン*/
    .MoreBtn {
        text-align: left;
        padding: 0;
        margin: 0;
        margin-top: 20px;
    }
    .MoreBtn > a {
        display: inline-block;
        padding: 15px 55px 15px 40px;
        margin: 0;
        font-size: 15px;
        font-weight: bold;
        line-height: 1;
        color: #fff;
        background: #222;
        border-radius: 20px 0 20px 0;
        position: relative;
        transition: all 0.3s ease;
    }
    .MoreBtn > a:hover {
        transition: all 0.3s ease;
        background: #2BD1EF;
    }
    .MoreBtn > a::before {
        content: '';
        display: block;
        width: 20px;
        height: 1px;
        padding: 0;
        margin: 0;
        background: #fff;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translate(0, -50%);
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        opacity: 0.8;
        transition: all 0.3s ease;
    }
    .MoreBtn > a::after {
        content: '';
        display: block;
        width: 10px;
        height: 10px;
        padding: 0;
        margin: 0;
        background: none;
        border-right: 1px solid #fff;
        position: absolute;
        top: calc(50% + 2px);
        right: 22px;
        transform: translate(0, -50%) rotate(-65deg);
        -webkit-transform: translate(0, -50%) rotate(-65deg);
        -ms-transform: translate(0, -50%) rotate(-65deg);
        opacity: 0.8;
        transition: all 0.3s ease;
    }
    .MoreBtn > a:hover::before {
        right: 18px;
        transition: all 0.3s ease;
    }
    .MoreBtn > a:hover::after {
        right: 20px;
        transition: all 0.3s ease;
    }
}

/*More テキスト*/
.More {
    text-align: left;
    padding: 0;
    margin: 20px 0 0;
}
.More > a {
    display: inline-block;
    padding: 10px 40px 10px 0;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    color: #222;
    border-bottom: 1px solid #222;
    position: relative;
    transition: all 0.3s ease;
}
.More > a::after {
    content: '';
    display: block;
    width: 10px;
    height: 20px;
    padding: 0;
    margin: 0;
    background: none;
    border-right: 1px solid #222;
    position: absolute;
    bottom: -20px;
    right: 5px;
    transform: translate(0, -50%) rotate(-60deg);
    -webkit-transform: translate(0, -50%) rotate(-60deg);
    -ms-transform: translate(0, -50%) rotate(-60deg);
    transform-origin: center center;
    opacity: 0.8;
    transition: all 0.3s ease;
}
.MoreW > a {
    display: inline-block;
    padding: 10px 40px 10px 0;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    border-bottom: 1px solid #fff;
    position: relative;
    transition: all 0.3s ease;
}
.MoreW > a::after {
    content: '';
    display: block;
    width: 10px;
    height: 20px;
    padding: 0;
    margin: 0;
    background: none;
    border-right: 1px solid #fff;
    position: absolute;
    bottom: -20px;
    right: 5px;
    transform: translate(0, -50%) rotate(-60deg);
    -webkit-transform: translate(0, -50%) rotate(-60deg);
    -ms-transform: translate(0, -50%) rotate(-60deg);
    transform-origin: center center;
    opacity: 0.8;
    transition: all 0.3s ease;
}
.More > a:hover,
.MoreW > a:hover {
    opacity: 0.8;
    transition: all 0.3s ease;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*More テキスト*/
    .More {
        text-align: left;
        padding: 0;
        margin: 20px 0 0;
    }
    .More > a {
        display: inline-block;
        padding: 10px 40px 10px 0;
        margin: 0;
        font-size: 14px;
        font-weight: 500;
        line-height: 1;
        color: #222;
        border-bottom: 1px solid #222;
        position: relative;
        transition: all 0.3s ease;
    }
    .More > a::after {
        content: '';
        display: block;
        width: 10px;
        height: 20px;
        padding: 0;
        margin: 0;
        background: none;
        border-right: 1px solid #222;
        position: absolute;
        bottom: -20px;
        right: 5px;
        transform: translate(0, -50%) rotate(-60deg);
        -webkit-transform: translate(0, -50%) rotate(-60deg);
        -ms-transform: translate(0, -50%) rotate(-60deg);
        transform-origin: center center;
        opacity: 0.8;
        transition: all 0.3s ease;
    }
    .MoreW > a {
        display: inline-block;
        padding: 10px 40px 10px 0;
        margin: 0;
        font-size: 14px;
        font-weight: 500;
        line-height: 1;
        color: #fff;
        border-bottom: 1px solid #fff;
        position: relative;
        transition: all 0.3s ease;
    }
    .MoreW > a::after {
        content: '';
        display: block;
        width: 10px;
        height: 20px;
        padding: 0;
        margin: 0;
        background: none;
        border-right: 1px solid #fff;
        position: absolute;
        bottom: -20px;
        right: 5px;
        transform: translate(0, -50%) rotate(-60deg);
        -webkit-transform: translate(0, -50%) rotate(-60deg);
        -ms-transform: translate(0, -50%) rotate(-60deg);
        transform-origin: center center;
        opacity: 0.8;
        transition: all 0.3s ease;
    }
    .More > a:hover,
    .MoreW > a:hover {
        opacity: 0.8;
        transition: all 0.3s ease;
    }
}

/*目次*/
#pageContents {
    width: calc(100% - 90px);
    padding: 0 20px 30px 30px;
    margin: 0 0 0 auto;
    background: linear-gradient(to right,#1b81ca 0%,#004E86 100%);
}
#pageContents > ul {
    width: calc(100% - 70px);
    padding: 0;
    margin: 0;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    list-style: none;
    border-left: solid 1px rgba(255, 255, 255, 0.5);
    box-sizing: border-box;
}
#pageContents > ul > li {
    width: 25%;
    padding: 0;
    margin: 0;
    position: relative;
}
#pageContents > ul > li.w50 {
    width: 50%;
    padding: 0;
    margin: 0;
    position: relative;
}
#pageContents > ul > li.w30 {
    width: calc(100% / 3);
    padding: 0;
    margin: 0;
    position: relative;
}
#pageContents > ul > li > a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 20px 45px 20px 20px;
    margin: 0;
    border-top: solid 1px rgba(255, 255, 255, 0.5);
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
    border-right: solid 1px rgba(255, 255, 255, 0.5);
    box-sizing: border-box;
    font-size: 15px;
    line-height: 1.2em;
    color: #fff;
    font-weight: 300;
    position: relative;
    transition: all 0.5s ease;
}
#pageContents > ul > li:nth-child(n+5) > a {
    display: block;
    padding: 20px 60px 20px 20px;
    margin: 0;
    border-top: none;
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
    border-right: solid 1px rgba(255, 255, 255, 0.5);
    box-sizing: border-box;
    font-size: 15px;
    line-height: 1.2em;
    color: #fff;
    font-weight: 300;
    position: relative;
    transition: all 0.5s ease;
}
#pageContents > ul > li.w50:nth-child(n+3) > a {
    display: block;
    padding: 20px 60px 20px 20px;
    margin: 0;
    border-top: none;
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
    border-right: solid 1px rgba(255, 255, 255, 0.5);
    box-sizing: border-box;
    font-size: 15px;
    line-height: 1.2em;
    color: #fff;
    font-weight: 300;
    position: relative;
    transition: all 0.5s ease;
}
#pageContents > ul > li.w30:nth-child(n+4) > a {
    display: block;
    padding: 20px 60px 20px 20px;
    margin: 0;
    border-top: none;
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
    border-right: solid 1px rgba(255, 255, 255, 0.5);
    box-sizing: border-box;
    font-size: 15px;
    line-height: 1.2em;
    color: #fff;
    font-weight: 300;
    position: relative;
    transition: all 0.5s ease;
}
#pageContents > ul > li > a:hover,
#pageContents > ul > li.w50 > a:hover {
    background: #fff;
    color: #004E86;
    transition: all 0.5s ease;
}
#pageContents > ul > li > a::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    position: absolute;
    top: 55%;
    right: 20px;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    transition: all 0.5s ease;
}
#pageContents > ul > li > a::after {
    content: '';
    display: block;
    width: 1px;
    height: 10px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    background: #fff;
    position: absolute;
    top: 55%;
    right: 23px;
    transform: translate(0,-50%) rotate(45deg);
    -webkit-transform: translate(0,-50%) rotate(45deg);
    transition: all 0.5s ease;
}
#pageContents > ul > li > a:hover::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border-top: 1px solid #004E86;
    border-right: 1px solid #004E86;
    position: absolute;
    top: 55%;
    right: 20px;
    transform: translate(0,-50%) rotate(45deg);
    -webkit-transform: translate(0,-50%) rotate(45deg);
    transition: all 0.5s ease;
}
#pageContents > ul > li > a:hover::after {
    content: '';
    display: block;
    width: 1px;
    height: 10px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    background: #004E86;
    position: absolute;
    top: 55%;
    right: 23px;
    transform: translate(0,-50%) rotate(90deg);
    -webkit-transform: translate(0,-50%) rotate(90deg);
    transition: all 0.5s ease;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*目次*/
    #pageContents {
        width: 95%;
        padding: 0 20px 20px;
        margin: 0 0 0 auto;
        background: linear-gradient(to right,#1b81ca 0%,#004E86 100%);
    }
    #pageContents > ul {
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        display: -webkit-flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        list-style: none;
        border-left: solid 1px rgba(255, 255, 255, 0.5);
        box-sizing: border-box;
    }
    #pageContents > ul > li,
    #pageContents > ul > li.w30 {
        width: 50%;
        padding: 0;
        margin: 0;
        position: relative;
    }
    #pageContents > ul > li.w50 {
        width: 100%;
        padding: 0;
        margin: 0;
        position: relative;
    }
    #pageContents > ul > li > a,
    #pageContents > ul > li.w30 > a{
        display: flex;
        display: -webkit-flex;
        align-items: center;
        align-content: center;
        width: 100%;
        height: 100%;
        padding: 15px 25px 15px 10px;
        margin: 0;
        border-top: solid 1px rgba(255, 255, 255, 0.5);
        border-bottom: solid 1px rgba(255, 255, 255, 0.5);
        border-right: solid 1px rgba(255, 255, 255, 0.5);
        box-sizing: border-box;
        font-size: 10px;
        line-height: 1.2em;
        color: #fff;
        font-weight: 300;
        position: relative;
        transition: all 0.5s ease;
    }
    #pageContents > ul > li:nth-child(n+5) > a {
        display: flex;
        display: -webkit-flex;
        align-items: center;
        align-content: center;
        padding: 15px 30px 15px 10px;
        margin: 0;
        border-top: none;
        border-bottom: solid 1px rgba(255, 255, 255, 0.5);
        border-right: solid 1px rgba(255, 255, 255, 0.5);
        box-sizing: border-box;
        font-size: 10px;
        line-height: 1.2em;
        color: #fff;
        font-weight: 300;
        position: relative;
        transition: all 0.5s ease;
    }
    #pageContents > ul > li.w50 > a {
        display: flex;
        display: -webkit-flex;
        align-items: center;
        align-content: center;
        padding: 15px 30px 15px 10px;
        margin: 0;
        border-top: none;
        border-bottom: solid 1px rgba(255, 255, 255, 0.5);
        border-right: solid 1px rgba(255, 255, 255, 0.5);
        box-sizing: border-box;
        font-size: 10px;
        line-height: 1.2em;
        color: #fff;
        font-weight: 300;
        position: relative;
        transition: all 0.5s ease;
    }
    #pageContents > ul > li.w50:nth-child(1) > a {
        display: flex;
        display: -webkit-flex;
        align-items: center;
        align-content: center;
        padding: 15px 30px 15px 10px;
        margin: 0;
        border-top: solid 1px rgba(255, 255, 255, 0.5);
        border-bottom: solid 1px rgba(255, 255, 255, 0.5);
        border-right: solid 1px rgba(255, 255, 255, 0.5);
        box-sizing: border-box;
        font-size: 10px;
        line-height: 1.2em;
        color: #fff;
        font-weight: 300;
        position: relative;
        transition: all 0.5s ease;
    }
    #pageContents > ul > li.w50:nth-child(n+3) > a {
        display: flex;
        display: -webkit-flex;
        align-items: center;
        align-content: center;
        padding: 15px 30px 15px 10px;
        margin: 0;
        border-top: none;
        border-bottom: solid 1px rgba(255, 255, 255, 0.5);
        border-right: solid 1px rgba(255, 255, 255, 0.5);
        box-sizing: border-box;
        font-size: 10px;
        line-height: 1.2em;
        color: #fff;
        font-weight: 300;
        position: relative;
        transition: all 0.5s ease;
    }
    #pageContents > ul > li.w30:nth-child(n+4) > a {
        display: block;
        padding: 15px 30px 15px 10px;
        margin: 0;
        border-top: none;
        border-bottom: solid 1px rgba(255, 255, 255, 0.5);
        border-right: solid 1px rgba(255, 255, 255, 0.5);
        box-sizing: border-box;
        font-size: 10px;
        line-height: 1.2em;
        color: #fff;
        font-weight: 300;
        position: relative;
        transition: all 0.5s ease;
    }
    #pageContents > ul > li:nth-child(3) > a,
    #pageContents > ul > li:nth-child(4) > a {
        display: flex;
        display: -webkit-flex;
        align-items: center;
        align-content: center;
        padding: 15px 30px 15px 10px;
        margin: 0;
        border-top: none;
        border-bottom: solid 1px rgba(255, 255, 255, 0.5);
        border-right: solid 1px rgba(255, 255, 255, 0.5);
        box-sizing: border-box;
        font-size: 10px;
        line-height: 1.2em;
        color: #fff;
        font-weight: 300;
        position: relative;
        transition: all 0.5s ease;
    }
    #pageContents > ul > li > a:hover,
    #pageContents > ul > li.w50 > a:hover {
        background: #fff;
        color: #004E86;
        transition: all 0.5s ease;
    }
    #pageContents > ul > li > a::before {
        content: '';
        display: block;
        width: 5px;
        height: 5px;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
        position: absolute;
        top: 55%;
        right: 10px;
        transform: translate(0,-50%);
        -webkit-transform: translate(0,-50%);
        transition: all 0.5s ease;
    }
    #pageContents > ul > li > a::after {
        content: '';
        display: block;
        width: 1px;
        height: 5px;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        border: none;
        background: #fff;
        position: absolute;
        top: 55%;
        right: 12px;
        transform: translate(0,-50%) rotate(45deg);
        -webkit-transform: translate(0,-50%) rotate(45deg);
        transition: all 0.5s ease;
    }
    #pageContents > ul > li > a:hover::before {
        content: '';
        display: block;
        width: 5px;
        height: 5px;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        border-top: 1px solid #004E86;
        border-right: 1px solid #004E86;
        position: absolute;
        top: 55%;
        right: 10px;
        transform: translate(0,-50%) rotate(45deg);
        -webkit-transform: translate(0,-50%) rotate(45deg);
        transition: all 0.5s ease;
    }
    #pageContents > ul > li > a:hover::after {
        content: '';
        display: block;
        width: 1px;
        height: 5px;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        border: none;
        background: #004E86;
        position: absolute;
        top: 55%;
        right: 12px;
        transform: translate(0,-50%) rotate(90deg);
        -webkit-transform: translate(0,-50%) rotate(90deg);
        transition: all 0.5s ease;
    }
}

#pageContents > ul > li > ul {
    width: 100%;
    height: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    border: none;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 20;
    transition: all 0.5s ease;
}
#pageContents > ul > li:hover > ul {
    height: 100%;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
}
#pageContents > ul > li > ul > li {
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #fff;
}
#pageContents > ul > li > ul > li > a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 20px 45px 20px 20px;
    margin: 0;
    box-sizing: border-box;
    border: none;
    font-size: 15px;
    line-height: 1.2em;
    color: #fff;
    background: #004E86;
    font-weight: 300;
    position: relative;
    transition: all 0.5s ease;
}
#pageContents > ul > li > ul > li > a:hover {
    background: #fff;
    color: #004E86;
    transition: all 0.5s ease;
}
#pageContents > ul > li > ul > li > a::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    position: absolute;
    top: 55%;
    right: 20px;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    transition: all 0.5s ease;
}
#pageContents > ul > li > ul > li > a::after {
    content: '';
    display: block;
    width: 1px;
    height: 10px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    background: #fff;
    position: absolute;
    top: 55%;
    right: 23px;
    transform: translate(0,-50%) rotate(45deg);
    -webkit-transform: translate(0,-50%) rotate(45deg);
    transition: all 0.5s ease;
}
#pageContents > ul > li > ul > li > a:hover::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border-top: 1px solid #004E86;
    border-right: 1px solid #004E86;
    position: absolute;
    top: 55%;
    right: 20px;
    transform: translate(0,-50%) rotate(45deg);
    -webkit-transform: translate(0,-50%) rotate(45deg);
    transition: all 0.5s ease;
}
#pageContents > ul > li > ul > li > a:hover::after {
    content: '';
    display: block;
    width: 1px;
    height: 10px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    background: #004E86;
    position: absolute;
    top: 55%;
    right: 23px;
    transform: translate(0,-50%) rotate(90deg);
    -webkit-transform: translate(0,-50%) rotate(90deg);
    transition: all 0.5s ease;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #pageContents > ul > li > ul {
        width: 100%;
        height: 0;
        padding: 0;
        margin: 0;
        list-style: none;
        border: none;
        box-sizing: border-box;
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 20;
        transition: all 0.5s ease;
    }
    #pageContents > ul > li:hover > ul {
        height: 100%;
        opacity: 1;
        visibility: visible;
        transition: all 0.5s ease;
    }
    #pageContents > ul > li > ul > li {
        padding: 0;
        margin: 0;
        border-bottom: 1px solid #fff;
    }
    #pageContents > ul > li > ul > li > a {
        display: block;
        width: 100%;
        height: 100%;
        padding: 10px 30px 10px 10px;
        margin: 0;
        box-sizing: border-box;
        border: none;
        font-size: 10px;
        line-height: 1.2em;
        color: #fff;
        background: #004E86;
        font-weight: 300;
        position: relative;
        transition: all 0.5s ease;
    }
    #pageContents > ul > li > ul > li > a:hover {
        background: #fff;
        color: #004E86;
        transition: all 0.5s ease;
    }
    #pageContents > ul > li > ul > li > a::before {
        content: '';
        display: block;
        width: 5px;
        height: 5px;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
        position: absolute;
        top: 55%;
        right: 10px;
        transform: translate(0,-50%);
        -webkit-transform: translate(0,-50%);
        transition: all 0.5s ease;
    }
    #pageContents > ul > li > ul > li > a::after {
        content: '';
        display: block;
        width: 1px;
        height: 5px;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        border: none;
        background: #fff;
        position: absolute;
        top: 55%;
        right: 12px;
        transform: translate(0,-50%) rotate(45deg);
        -webkit-transform: translate(0,-50%) rotate(45deg);
        transition: all 0.5s ease;
    }
    #pageContents > ul > li > ul > li > a:hover::before {
        content: '';
        display: block;
        width: 5px;
        height: 5px;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        border-top: 1px solid #004E86;
        border-right: 1px solid #004E86;
        position: absolute;
        top: 55%;
        right: 10px;
        transform: translate(0,-50%) rotate(45deg);
        -webkit-transform: translate(0,-50%) rotate(45deg);
        transition: all 0.5s ease;
    }
    #pageContents > ul > li > ul > li > a:hover::after {
        content: '';
        display: block;
        width: 1px;
        height: 5px;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        border: none;
        background: #004E86;
        position: absolute;
        top: 55%;
        right: 12px;
        transform: translate(0,-50%) rotate(90deg);
        -webkit-transform: translate(0,-50%) rotate(90deg);
        transition: all 0.5s ease;
    }
    
    .pageContentsBtn {
        display: block;
        width: 100%;
        padding: 10px 0;
        margin: 0 auto;
        text-align: left;
        color: #004E86;
        font-size: 12px;
        line-height: 1;
        background: #fff;
        position: relative;
        display: flex;
        display: -webkit-flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: nowrap;
        transition: all 0.5s ease;
    }
    .pageContentsBtn::before {
        content: '';
        display: block;
        width: 10px;
        height: 2px;
        padding: 0;
        margin: 0;
        background: #004E86;
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translate(0,-50%);
        -webkit-transform: translate(0,-50%);
        transition: all 0.5s ease;
    }
    .pageContentsBtn::after {
        content: '';
        display: block;
        width: 2px;
        height: 10px;
        padding: 0;
        margin: 0;
        background: #004E86;
        position: absolute;
        top: 50%;
        right: 14px;
        transform: translate(0,-50%);
        -webkit-transform: translate(0,-50%);
        transition: all 0.5s ease;
    }
    .pageContentsBtn.active::after {
        transform: translate(0,-50%) rotate(90deg);
        -webkit-transform: translate(0,-50%) rotate(90deg);
        transition: all 0.5s ease;
    }
}

/************************************************************/
/*　コンテンツ整形
/************************************************************/
#all_wrap p {
    font-size: 15px;
    line-height: 2;
    font-weight: 400;
    font-feature-settings: "palt" 1;
    font-style: normal;
}
#all_wrap .l-wrapper .content p {
    font-size: 15px;
    line-height: 1.7;
    padding: 0;
    margin: 0 auto 20px;
}
#all_wrap .l-wrapper-full .content p {
    font-size: 15px;
    line-height: 2;
    padding: 0;
    margin: 0 auto 20px;
}
#all_wrap img.alignleft {
    margin-right: 30px;
    margin-bottom: 30px;
}
#all_wrap img.alignright {
    margin-left: 30px;
    margin-bottom: 30px;
}

/*カスタマイズ*/
#all_wrap .content div {
    margin-top: 0;
}
#all_wrap .content .wp-block-columns {
    margin-top: 0;
    align-content: flex-start;
    align-items: flex-start;
}
#all_wrap .content .wp-block-spacer {
    padding: 0;
    margin: 0;
}
#all_wrap .l-wrapper .postContents .content .wp-block-columns h3:first-of-type,
#all_wrap .l-wrapper .pageContents .content .wp-block-columns h3:first-of-type,
#all_wrap .l-wrapper .postContents .content .wp-block-columns h4:first-of-type,
#all_wrap .l-wrapper .pageContents .content .wp-block-columns h4:first-of-type,
#all_wrap .l-wrapper .postContents .content .wp-block-columns h5:first-of-type,
#all_wrap .l-wrapper .pageContents .content .wp-block-columns h5:first-of-type {
    margin-top: 0;
}
#all_wrap .l-wrapper .postContents .content p.toriatsukai,
#all_wrap .l-wrapper .pageContents .content p.toriatsukai {
    display: inline-block;
    background: #33BBED;
    color: #FFF;
    padding: 11px 35px 10px;
    border-radius: 40px;
}

/*投稿ページ　タグ下マージン*/
#all_wrap .l-wrapper .dateList {
    margin-bottom: 5px;
}

/*下マージン*/
#all_wrap .l-wrapper .pageContents .content .mb0,
#all_wrap .l-wrapper .postContents .content .mb0 { margin-bottom: 0px; }
#all_wrap .l-wrapper .pageContents .content .mb5,
#all_wrap .l-wrapper .postContents .content .mb5 { margin-bottom: 5px; }
#all_wrap .l-wrapper .pageContents .content .mb10,
#all_wrap .l-wrapper .postContents .content .mb10 { margin-bottom: 10px; }
#all_wrap .l-wrapper .pageContents .content .mb20,
#all_wrap .l-wrapper .postContents .content .mb20 { margin-bottom: 20px; }
#all_wrap .l-wrapper .pageContents .content .mb30,
#all_wrap .l-wrapper .postContents .content .mb30 { margin-bottom: 30px; }
#all_wrap .l-wrapper .pageContents .content .mb40,
#all_wrap .l-wrapper .postContents .content .mb40 { margin-bottom: 40px; }
#all_wrap .l-wrapper .pageContents .content .mb50,
#all_wrap .l-wrapper .postContents .content .mb50 { margin-bottom: 50px; }
#all_wrap .l-wrapper .pageContents .content .mb60,
#all_wrap .l-wrapper .postContents .content .mb60 { margin-bottom: 60px; }
#all_wrap .l-wrapper .pageContents .content .mb70,
#all_wrap .l-wrapper .postContents .content .mb70 { margin-bottom: 70px; }
#all_wrap .l-wrapper .pageContents .content .mb80,
#all_wrap .l-wrapper .postContents .content .mb80 { margin-bottom: 80px; }
#all_wrap .l-wrapper .pageContents .content .mb90,
#all_wrap .l-wrapper .postContents .content .mb90 { margin-bottom: 90px; }
#all_wrap .l-wrapper .pageContents .content .mb100,
#all_wrap .l-wrapper .postContents .content .mb100 { margin-bottom: 100px; }

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap p {
        font-size: 14px;
        line-height: 1.7em;
        font-weight: 400;
        font-feature-settings: "palt" 1;
        font-style: normal;
    }
    #all_wrap .l-wrapper .content p {
        font-size: 14px;
        line-height: 1.7em;
        padding: 0;
        margin-bottom: 10px;
    }
    #all_wrap .l-wrapper-full .content p {
        font-size: 14px;
        line-height: 1.7em;
        padding: 0;
        margin-bottom: 10px;
    }
    #all_wrap .l-wrapper .postContents .content p.toriatsukai,
    #all_wrap .l-wrapper .pageContents .content p.toriatsukai {
        display: inline-block;
        background: #33BBED;
        color: #FFF;
        padding: 11px 35px 10px;
        border-radius: 40px;
        text-align: center;
    }
    /*下マージン*/
    #all_wrap .l-wrapper .pageContents .content .mb0,
    #all_wrap .l-wrapper .postContents .content .mb0 { margin-bottom: 0px; }
    #all_wrap .l-wrapper .pageContents .content .mb5,
    #all_wrap .l-wrapper .postContents .content .mb5 { margin-bottom: 2px; }
    #all_wrap .l-wrapper .pageContents .content .mb10,
    #all_wrap .l-wrapper .postContents .content .mb10 { margin-bottom: 5px; }
    #all_wrap .l-wrapper .pageContents .content .mb20,
    #all_wrap .l-wrapper .postContents .content .mb20 { margin-bottom: 10px; }
    #all_wrap .l-wrapper .pageContents .content .mb30,
    #all_wrap .l-wrapper .postContents .content .mb30 { margin-bottom: 15px; }
    #all_wrap .l-wrapper .pageContents .content .mb40,
    #all_wrap .l-wrapper .postContents .content .mb40 { margin-bottom: 20px; }
    #all_wrap .l-wrapper .pageContents .content .mb50,
    #all_wrap .l-wrapper .postContents .content .mb50 { margin-bottom: 25px; }
    #all_wrap .l-wrapper .pageContents .content .mb60,
    #all_wrap .l-wrapper .postContents .content .mb60 { margin-bottom: 30px; }
    #all_wrap .l-wrapper .pageContents .content .mb70,
    #all_wrap .l-wrapper .postContents .content .mb70 { margin-bottom: 35px; }
    #all_wrap .l-wrapper .pageContents .content .mb80,
    #all_wrap .l-wrapper .postContents .content .mb80 { margin-bottom: 40px; }
    #all_wrap .l-wrapper .pageContents .content .mb90,
    #all_wrap .l-wrapper .postContents .content .mb90 { margin-bottom: 45px; }
    #all_wrap .l-wrapper .pageContents .content .mb100,
    #all_wrap .l-wrapper .postContents .content .mb100 { margin-bottom: 50px; }

}

/*ウィジェットパディング*/
#all_wrap .widget-main {
    padding: 0;
    margin: 0;
}

/*== スマホ・PC 非表示 ==*/
.pc_none { display: none; }
.sp_none { display: block; }
@media only screen and (max-width: 768px){
    .pc_none { display: block; }
    .sp_none { display: none; }
}

/*== フレックス ==*/
.flex {
    width: 100%;
    padding: 0;
    margin: 0 auto 20px;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: nowrap;
}
.flex > div {
    width: 48%;
    padding: 0;
    margin: 0;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    .flex {
        width: 100%;
        padding: 0;
        margin: 0 auto 20px;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .flex > div {
        width: 100%;
        padding: 0;
        margin: 0 auto 10px;
    }
}

/*日付*/
.Date {
    display: block;
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
    color: #555;
    padding: 0;
    margin: 0 auto 20px;
}


/************************************************************/
/*　JS
/************************************************************/

/*lightbox*/
.nivo-lightbox-effect-fade {
    visibility: hidden;
    opacity: 0;
}
.nivo-lightbox-overlay.nivo-lightbox-open {
    visibility: visible;
    opacity: 1;
}
.nivo-lightbox-theme-default .nivo-lightbox-close {
    opacity: 1;
}
.nivo-lightbox-theme-default .nivo-lightbox-close {
    background-size: 20px 20px;
}
.nivo-lightbox-theme-default .nivo-lightbox-close {
    width: 20px;
    height: 20px;
}


/************************************************************/
/*　構成
/************************************************************/
.l-main {
	width: calc(80% - 50px);
	margin-bottom: 0;
    z-index: 1;
}
#all_wrap.main_page .l-wrapper {
    width: 100%;
    max-width: 1100px;
    padding: 0;
    margin: 0 auto;
}
#all_wrap.sub_page .l-wrapper {
    width: calc(100% - 180px);
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}
.l-wrapper-full {
    position: relative;
    width: 100%;
	margin: 0 auto;
    padding: 0;
}
.top_wrapper {
    width: 100%;
    padding: 0;
    margin: 0 auto;
}

#all_wrap .l-wrapper .l-main {
    width: 900px;
    min-width: 900px;
    max-width: 100%;
    padding: 50px 0;
    margin: 0;
}
#all_wrap .l-wrapper-full .l-main {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.page {
    width: 100%;
}
.dividerBottom {
    margin-bottom: 0;
}
.pageContents .content,
.archiveContents .content {
    padding: 0;
    margin: 0 auto 50px;
}
#all_wrap .l-wrapper-full .pageContents .content, #all_wrap .l-wrapper-full .archiveContents .content {
    margin: 0;
    padding: 0;
}
#all_wrap .l-wrapper-full .sitemap_content {
    width: 100%;
    max-width: 1100px;
    padding: 0;
    margin: 0 auto 100px;
}
 
.l-sidebar {
    width: 30%;
    min-width: 200px;
    padding: 50px 0;
    margin: 0;
    margin-left: 50px;
    z-index: 5;
    position: sticky;
    top: 70px;
    left: 0;
}
.l-main-wide    {width: calc(80% - 50px); margin-right:0;}
.l-main-wide1000{width:1000px;margin: auto;}
.l-main-wide900 {width:900px; margin: auto;}
.l-main-wide800 {width:800px; margin: auto;}
.l-main-wide700 {width:700px; margin: auto;}
.l-main-right   {order: 2;}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap .l-wrapper .l-main {
        width: 90%;
        margin: 0 auto;
    }
    #all_wrap.main_page .l-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
    }
    #all_wrap.sub_page .l-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
    }
    .l-wrapper-full .l-main {
        width: 100%;
        margin: 0 auto;
    }
    
    #all_wrap .l-wrapper .l-main {
        width: 90%;
        min-width: 90%;
        max-width: 90%;
        padding: 20px 0;
        margin: 0 auto;
    }
    #all_wrap .l-wrapper-full .l-main {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    .l-wrapper {
        width: 100%;
        padding: 0;
        margin:20px 0;
    }
    .l-wrapper-full {
        position:relative;
        width: 100%;
        margin: 0 auto;
        padding: 0;
        background: #fff;
    }
    
    .l-wrapper-guide {
        position: relative;
        width: 100%;
        margin: 0 auto;
        padding: 20px 0;
    }
    .l-wrapper-guide::before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        padding: 0;
        margin: 0 auto;
        background-image: url("https://iine-book.com/img/guide_wrap_bg.jpg");
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-position: top 150px right;
        background-color: #f5f5f5;
        background-size: 100%;
    }
    
    .l-sidebar {
        display: none;
    }
    
    .page {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    .content {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    .postContents {
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }
    .pageContents .content,
    .archiveContents .content {
        padding: 0;
        margin: 0 auto;
    }
    
    /*グーグルマップ表示*/
    .l-wrapper iframe {
        width: 100%;
    }
    
    /*検索結果なし*/
    .archive__item-none {
        width: 90%;
        padding: 0;
        margin: 0 auto;
        border: none;
    }
}

.widgetSearch__contents .widgetSearch__select {
    -webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
    padding: 10px 10px;
    line-height: 1em;
}
.searchbox {
    width: 100%;
    position: relative;
    display: inline-block;
}
.searchbox::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-bottom: solid 2px #b4b3b3;
  border-right: solid 2px #b4b3b3;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -4px;
}

#all_wrap .pager {
    width: 100%;
    max-width: 1200px;
    padding: 0;
    margin: 0 auto;
}

/************************************************************/
/*　見出し　＆　パンくず
/************************************************************/

h1,h2,h3,h4,h5,h6,b,strong {
    font-style: normal;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt" 1;
    font-size: 1em;
}
#all_wrap .content strong {
    color: #364e96;
}

#page_title {
    width: 100%;
    padding: 180px 0 60px;
    margin: 0 auto;
    position: relative;
    z-index: 0;
}
#page_title::before {
    content: '';
    display: block;
    width: calc(100% - 90px);
    height: 150px;
    background: #005491;
    background: linear-gradient(to right,#1b81ca 0%,#004E86 100%);
    position: absolute;
    bottom: -50px;
    right: 0;
    z-index: -3;
}
#page_title .page_title_box {
    width: calc(100% - 90px);
    text-align: center;
    padding: 0;
    margin: 0 0 0 auto;
    position: relative;
    z-index: 0;
}
#page_title > figure {
    display: block;
    width: calc(100% - 90px);
    height: 100%;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    overflow: hidden;
    text-align: center;
    background: #000;
}
#page_title > figure::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
#page_title > figure img {
    width: auto;
    height: 100%;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}
#page_title .page_title_box > strong {
    display: block;
    position: relative;
    padding: 0;
    margin: 0 0 5px;
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 1;
    text-align: left;
    color: #fff;
    z-index: -1;
    text-transform: uppercase;
}
#page_title .page_title_box > h1 {
    width: calc(100% - 90px);
    padding: 0;
    margin: 0 0 50px;
    font-size: 15px;
    line-height: 1.4em;
    color: #fff;
    font-weight: 300;
    letter-spacing: 0.1em;
    border: none;
    background: none;
    text-align: left;
}
#page_title > p {
    width: calc(100% - 90px);
    padding: 0;
    margin: 0;
    text-align: center;
    color: #fff;
    font-size: 15px;
    line-height: 2em;
}

/*スクロール*/
.page_title_scroll {
    width: 45px;
    text-align: center;
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 75px;
    z-index: 2;
    padding: 0 0 60px;
    overflow: hidden;
    color: #fff;
    font-size: 14px;
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .2em;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 1500;
    transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
}
.page_title_scroll span {
    color: rgba(0,0,0,1);
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    display: block;
    text-align: center;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    padding: 0;
    margin: 0 auto;
}
.page_title_scroll::before {
    width: 100%;
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    width: 1px;
    height: 50px;
    background: rgba(0,0,0,0.2);
}
.page_title_scroll::after {
    width: 100%;
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    width: 1px;
    height: 50px;
    background: #000;
}
.page_title_scroll::after {
    animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (min-width: 1150px){
    #page_title > figure img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
    }
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #page_title {
        width: 100%;
        padding: 60px 0 20px;
        margin: 0 auto;
        position: relative;
        z-index: 0;
    }
    #page_title::before {
        content: '';
        display: block;
        width: 95%;
        height: 40px;
        background: #005491;
        background: linear-gradient(to right,#1b81ca 0%,#004E86 100%);
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: -3;
    }
    #page_title .page_title_box {
        width: 90%;
        text-align: left;
        padding: 0;
        margin: 0 auto;
        position: relative;
        z-index: 0;
    }
    #page_title > figure {
        display: block;
        width: 95%;
        height: 100%;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -2;
        overflow: hidden;
        text-align: center;
        background: #000;
    }
    #page_title > figure::before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }
    #page_title > figure img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
    }
    #page_title .page_title_box > strong {
        display: block;
        position: relative;
        padding: 0;
        margin: 0 0 5px;
        font-family: ten-mincho, serif;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 1;
        text-align: left;
        color: #fff;
        z-index: -1;
        text-transform: uppercase;
    }
    #page_title .page_title_box > h1 {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        font-size: 10px;
        line-height: 1.4em;
        color: #fff;
        font-weight: 300;
        letter-spacing: 0.1em;
        border: none;
        background: none;
        text-align: left;
    }
    #page_title > p {
        display: none;
    }

    /*スクロール*/
    .page_title_scroll {
        display: none;
    }
}

#all_wrap .l-wrapper .pageContents .content h2,
#all_wrap .l-wrapper .postContents .content h2 {
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    color: #262626;
    font-size: 35px;
    line-height: 1.4em;
    letter-spacing: 0.05em;
    padding: 0 0 20px;
    margin: 0 auto 40px;
    text-align: center;
    position: relative;
}
#all_wrap .l-wrapper .pageContents .content h2::before,
#all_wrap .l-wrapper .postContents .content h2::before {
    content: '';
    display: block;
    width: 100px;
    height: 1px;
    background: #272727;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
}
#all_wrap .l-wrapper .pageContents .content h2::after,
#all_wrap .l-wrapper .postContents .content h2::after {
    content: '';
    display: block;
    width: 1px;
    height: 5px;
    background: #272727;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
}

#all_wrap .l-wrapper .pageContents .content h2.singleTitle,
#all_wrap .l-wrapper .postContents .content h2.singleTitle {
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    color: #262626;
    font-size: 25px;
    line-height: 1.4em;
    letter-spacing: 0.05em;
    padding: 0 0 20px;
    margin: 0 auto 20px;
    text-align: left;
    position: relative;
}
#all_wrap .l-wrapper .pageContents .content h2.singleTitle::before,
#all_wrap .l-wrapper .postContents .content h2.singleTitle::before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
    background: linear-gradient(to right,#1b81ca 0%,#004E86 100%);
}
#all_wrap .l-wrapper .pageContents .content h2.singleTitle::after,
#all_wrap .l-wrapper .postContents .content h2.singleTitle::after {
    display: none;
}
#all_wrap .l-wrapper h2.blue,
#all_wrap .l-wrapper h2.blue {
    padding: 15px;
    margin: 0 auto 20px;
    text-align: center;
    background: #005491;
    border: none;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    font-weight: 600;
}

#all_wrap .l-wrapper .pageContents .content h3,
#all_wrap .l-wrapper .postContents .content h3 {
    margin-bottom: 30px;
    padding: 15px 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4em;
    background-color: none;
    border-radius: 0;
    border-bottom: dashed 2px #6594e0;
    color: #364e96;
    margin-top: 4rem;
    position: relative;
}
#all_wrap .l-wrapper h3.product_contact_title {
    margin-bottom: 30px;
    padding: 15px 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4em;
    background-color: none;
    border-radius: 0;
    border-bottom: dashed 2px #6594e0;
    color: #364e96;
    margin-top: 4rem;
    position: relative;
}
#all_wrap .l-wrapper .pageContents .content h3.blue,
#all_wrap .l-wrapper .postContents .content h3.blue {
    padding: 15px;
    margin: 0;
    text-align: center;
    background: #005491;
    border: none;
    color: #fff;
    font-size: 25px;
    line-height: 1;
    font-weight: 600;
}

#all_wrap .l-wrapper .pageContents .content h4,
#all_wrap .l-wrapper .postContents .content h4 {
    margin-bottom: 20px;
    padding: 0 0 0 20px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5em;
    background: none;
    border:none;
    border-left: solid 10px #7db4e6;
    color: #364e96;
    margin-top: 3rem;
    position: relative;
}

#all_wrap .l-wrapper .pageContents .content h5,
#all_wrap .l-wrapper .postContents .content h5 {
    margin-bottom: 20px;
    padding: 0;
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1.4em;
    background: none;
    border: none;
    color: #364E96;
}

h5:before {
    content: "●";
    color: #7DB4E6;
    margin-right: 0.5em;
}


#all_wrap .l-wrapper .pageContents .content h2:first-of-type,
#all_wrap .l-wrapper .postContents .content h2:first-of-type {
    margin-top: 0;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap .l-wrapper .pageContents .content h2,
    #all_wrap .l-wrapper .postContents .content h2 {
        font-family: ten-mincho, serif;
        font-style: normal;
        font-weight: 400;
        color: #262626;
        font-size: 20px;
        line-height: 1.4em;
        letter-spacing: 0.05em;
        padding: 0 0 15px;
        margin: 0 auto 25px;
        text-align: center;
        position: relative;
    }
    #all_wrap .l-wrapper .pageContents .content h2::before,
    #all_wrap .l-wrapper .postContents .content h2::before {
        content: '';
        display: block;
        width: 30%;
        height: 1px;
        background: #272727;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%,0);
        -webkit-transform: translate(-50%,0);
    }
    #all_wrap .l-wrapper .pageContents .content h2::after,
    #all_wrap .l-wrapper .postContents .content h2::after {
        content: '';
        display: block;
        width: 1px;
        height: 5px;
        background: #272727;
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translate(-50%,0);
        -webkit-transform: translate(-50%,0);
    }

    #all_wrap .l-wrapper .pageContents .content h2.singleTitle,
    #all_wrap .l-wrapper .postContents .content h2.singleTitle {
        font-family: ten-mincho, serif;
        font-style: normal;
        font-weight: 400;
        color: #262626;
        font-size: 16px;
        line-height: 1.4em;
        letter-spacing: 0.05em;
        padding: 0 0 10px;
        margin: 0 auto 10px;
        text-align: left;
        position: relative;
    }
    #all_wrap .l-wrapper .pageContents .content h2.singleTitle::before,
    #all_wrap .l-wrapper .postContents .content h2.singleTitle::before {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%,0);
        -webkit-transform: translate(-50%,0);
        background: linear-gradient(to right,#1b81ca 0%,#004E86 100%);
    }
    #all_wrap .l-wrapper .pageContents .content h2.singleTitle::after,
    #all_wrap .l-wrapper .postContents .content h2.singleTitle::after {
        display: none;
    }
    #all_wrap .l-wrapper h2.blue,
    #all_wrap .l-wrapper h2.blue {
        padding: 10px;
        margin: 0 auto 20px;
        text-align: center;
        background: #005491;
        border: none;
        color: #fff;
        font-size: 15px;
        line-height: 1;
        font-weight: 600;
    }

    #all_wrap .l-wrapper .pageContents .content h3,
    #all_wrap .l-wrapper .postContents .content h3 {
        margin-bottom: 20px;
        padding: 0 0 10px;
        font-size: 17px;
        font-weight: 600;
        line-height: 1.4em;
        background-color: none;
        border-radius: 0;
        border-bottom: dashed 2px #6594e0;
        color: #364e96;
        margin-top: 2rem;
        position: relative;
    }
    #all_wrap .l-wrapper h3.product_contact_title {
        margin-bottom: 20px;
        padding: 0 0 10px;
        font-size: 17px;
        font-weight: 600;
        line-height: 1.4em;
        background-color: none;
        border-radius: 0;
        border-bottom: dashed 2px #6594e0;
        color: #364e96;
        margin-top: 2rem;
        position: relative;
    }
    #all_wrap .l-wrapper .pageContents .content h3.blue,
    #all_wrap .l-wrapper .postContents .content h3.blue {
        padding: 10px;
        margin: 0;
        text-align: center;
        background: #005491;
        border: none;
        color: #fff;
        font-size: 17px;
        line-height: 1;
        font-weight: 600;
    }

    #all_wrap .l-wrapper .pageContents .content h4,
    #all_wrap .l-wrapper .postContents .content h4 {
        margin-bottom: 10px;
        padding: 0 0 0 10px;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.5em;
        background: none;
        border:none;
        border-left: solid 5px #7db4e6;
        color: #364e96;
        margin-top: 1.5rem;
        position: relative;
    }

    #all_wrap .l-wrapper .pageContents .content h5,
    #all_wrap .l-wrapper .postContents .content h5 {
        margin-bottom: 3%;
        padding: 0;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.4em;
        background: none;
        border: none;
    }

    #all_wrap .l-wrapper .pageContents .content h2:first-of-type,
    #all_wrap .l-wrapper .postContents .content h2:first-of-type {
        margin-top: 0;
    }
}


#all_wrap .l-wrapper .pageContents .content h2.designMidashi,
#all_wrap .l-wrapper .postContents .content h2.designMidashi {
    width: 100%;
    max-width: 1000px;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    font-family: 'Urbanist', sans-serif;
    font-size: 35px;
    line-height: 1;
    font-weight: 700;
    color: #272727;
    text-align: left;
    padding: 0;
    margin: 0 auto 30px;
    border: none;
}
#all_wrap .l-wrapper .pageContents .content h2.designMidashi > span,
#all_wrap .l-wrapper .postContents .content h2.designMidashi > span {
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    color: #272727;
    padding: 0;
    margin: 0 0 0 20px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap .l-wrapper .pageContents .content h2.designMidashi,
    #all_wrap .l-wrapper .postContents .content h2.designMidashi {
        width: 90%;
        max-width: 90%;
        display: -webkit-flex;
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
        font-family: 'Urbanist', sans-serif;
        font-size: 30px;
        line-height: 1;
        font-weight: 700;
        color: #272727;
        text-align: left;
        padding: 0;
        margin: 0 auto 20px;
        border: none;
    }
    #all_wrap .l-wrapper .pageContents .content h2.designMidashi > span,
    #all_wrap .l-wrapper .postContents .content h2.designMidashi > span {
        display: block;
        width: 100%;
        font-size: 14px;
        font-weight: 400;
        line-height: 1;
        color: #272727;
        padding: 0;
        margin: 5px 0 0;
        text-align: center;
    }
}


/************************************************************/
/*　ページネーション
/************************************************************/
.pager {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}
.pager > li {
    line-height: 1;
    padding: 0;
    margin: 0 5px 0 0;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-feature-settings: "palt";
    color: #272727;
    border: 1px solid #272727;
}
.pager > li:hover {
    border: 1px solid #005491;
    background: none;
}
.pager > li.pager__item-current {
    padding: 5px;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #005491;
    border: 1px solid #005491;
    color: #fff;
}
.pager > li.pager__item-next,
.pager > li.pager__item-prev {
    background: none;
    border-radius: 0;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-feature-settings: "palt";
}
.pager > li a {
    text-align: center;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-weight: normal;
    font-feature-settings: "palt";
    transition: ease 0.2s;
    line-height: 1;
    background: none;
}
.pager > li a:hover {
    background: #005491;
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-weight: normal;
    font-feature-settings: "palt";
    transition: ease 0.2s;
    line-height: 1;
}

/************************************************************/
/*　パンくず
/************************************************************/
/*パンくず*/
.breadcrumb {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    background: none;
    border: none;
    position: relative;
    z-index: 100;
}
.breadcrumb > ul {
    width: calc(100% - 90px);
    padding: 30px;
    margin: 0 0 0 auto;
    font-size: 12px;
    color: #fff;
    background: linear-gradient(to right,#1b81ca 0%,#004E86 100%);
}
.breadcrumb a {
    font-size: 12px;
    line-height: 1;
    padding: 0;
    margin: 0;
    text-decoration: none;
    transition: ease 0.2s;
    color: #fff;
}
.breadcrumb a:hover {
    text-decoration: none;
    transition: ease 0.2s;
    color: #fff;
    opacity: 0.8;
}
.breadcrumb__list {
    padding: 0;
}
.breadcrumb__item {
    position: relative;
    display: table-cell;
    white-space: nowrap;
    padding-right: 15px;
    padding-left: 15px;
    font-size: 12px;
    line-height: 1;
    color: #fff;
}
.breadcrumb__item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -2px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*パンくず*/
    .breadcrumb {
        width: 95%;
        padding: 0;
        margin: 0 0 0 auto;
        background: none;
        border: none;
        font-size: 0.9em;
        line-height: 1.2em;
        position: relative;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
        -ms-overflow-style: none;
        scrollbar-width: none;
        overflow: auto;
        white-space: nowrap;
        background: linear-gradient(to right,#1b81ca 0%,#004E86 100%);
    }
    .breadcrumb::-webkit-scrollbar {
        display: none;
    }
    .breadcrumb::before {
        display: none;
    }
    .breadcrumb > ul {
        width: 100%;
        padding: 15px 20px;
        margin: 0;
        font-size: 10px;
        color: #fff;
        background: none;
    }
    .breadcrumb a {
        font-size: 10px;
        line-height: 1;
        padding: 0;
        margin: 0;
        text-decoration: none;
        transition: ease 0.2s;
        color: #fff;
    }
    .breadcrumb a:hover {
        text-decoration: none;
        transition: ease 0.2s;
        color: #fff;
        opacity: 0.8;
    }
    .breadcrumb__list {
        padding: 0;
        display: block;
    }
    .breadcrumb__item {
        position: relative;
        display: table-cell;
        white-space: nowrap;
        padding-right: 15px;
        padding-left: 15px;
        font-size: 10px;
        line-height: 1;
        color: #fff;
    }
    .breadcrumb__item::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -2px;
        width: 5px;
        height: 5px;
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
    }
}


/************************************************************/
/*　フォントサイズ
/************************************************************/
.content table {
	font-size: 15px;
    color: #fff;
}


/************************************************************/
/*　グローバルメニュー　＆　ヘッダー
/************************************************************/
#header {
    width: calc(100% - 80px);
    padding: 0;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    background: none;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
    z-index: 200;
    transition: all 0.5s ease;
}
#header::before {
    content: '';
    display: block;
    width: 100vw;
    height: 100%;
    padding: 0;
    margin: 0;
    background: linear-gradient(to bottom,rgba(9,32,49,0.7) 0%,rgba(9,32,49,0) 100%);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
    z-index: 99;
    opacity: 0;
    transition: all 0.5s ease;
}
#header.fixed::before {
    content: '';
    display: block;
    width: 100vw;
    height: 100%;
    padding: 0;
    margin: 0;
    background: linear-gradient(to bottom,rgba(9,32,49,0.7) 0%,rgba(9,32,49,0) 100%);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
    z-index: 99;
    opacity: 0.8;
    transition: all 0.5s ease;
}
#header > #logo {
    width: 25%;
    max-width: 300px;
    padding: 20px;
    margin: 0;
    background: #fff;
    border-radius: 0 0 10px 10px;
    text-align: center;
    position: relative;
    z-index: 300;
    transition: all 0.5s ease;
}
#header > #logo img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0 auto;
    position: relative;
    z-index: 100;
}

#header > #headerNav {
    width: 70%;
    padding: 0;
    margin: 0;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-end;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    position: relative;
    z-index: 100;
}
#header > #headerNav > ul {
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-end;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
}
#header > #headerNav > ul > li {
    height: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    position: relative;
    transition: all 0.5s ease;
}
#header > #headerNav > ul > li::after {
    content: '';
    display: block;
    width: 1px;
    height: 50%;
    padding: 0;
    margin: 0;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
}
#header > #headerNav > ul > li:last-child::after {
    display: none;
}
#header > #headerNav > ul > li a {
    display: block;
    padding: 12px 25px;
    margin: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    transition: all 0.5s ease;
}
#header > #headerNav > ul > li a:hover {
    color: #d60000;
    transition: all 0.5s ease;
}
#header > #headerNav > ul > li a span {
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    color: #fff;
    font-size: 10px;
    line-height: 1em;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0 auto 5px;
    text-align: center;
    transition: all 0.5s ease;
}
#header > #headerNav > ul > li a:hover span {
    color: #d60000;
    transition: all 0.5s ease;
}

/*子ページ*/
#header > #headerNav > ul > li > .navChild {
    opacity: 0;
    visibility: hidden;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    width: 100vw;
    padding: 0 45px;
    margin: 0;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
    z-index: -1;
    transition: cubic-bezier(0.8,0,0.07,1) .6s;
    background: #000;
}
#header > #headerNav > ul > li > .navChild.showdown {
    opacity: 1;
    visibility: visible;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    width: 100vw;
    padding: 88px 45px 0;
    margin: 0;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
    z-index: -1;
    transition: cubic-bezier(0.8,0,0.07,1) .6s;
    background: #000;
}
#header > #headerNav > ul > li > .navChild::before {
    content: '';
    display: block;
    width: 100vw;
    height: 100%;
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}
#header > #headerNav > ul > li > .navChild > h2 {
    width: 25%;
    max-width: 300px;
    padding: 30px;
    margin: 0 100px 0 0;
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    color: #fff;
    font-size: 25px;
    line-height: 1em;
    letter-spacing: 0.1em;
    text-align: right;
    position: relative;
}
#header > #headerNav > ul > li > .navChild > h2::after {
    content: '';
    display: block;
    width: 1px;
    height: calc(100% - 60px);
    background: #fff;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
}
#header > #headerNav > ul > li > .navChild > h2 span {
    display: block;
    padding: 0 3px 0 0;
    margin: 5px 0 0;
    font-style: normal;
    font-weight: 400;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    line-height: 1em;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-align: right;
}
#header > #headerNav > ul > li > .navChild > ul {
    width: 80%;
    padding: 15px 0 0;
    margin: 0;
    list-style: none;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
    background: #000;
}
#header > #headerNav > ul > li > .navChild > ul > li {
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    padding: 0 0 0 15px;
    margin: 0 50px 20px 0;
    position: relative;
    text-align: left;
}
#header > #headerNav > ul > li > .navChild > ul > li::before,
#header > #headerNav > ul > li > .navChild > ul > li::after {
    display: none;
}
#header > #headerNav > ul > li > .navChild > ul > li::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background: none;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%) rotate(45deg);
    -webkit-transform: translate(0,-50%) rotate(45deg);
}
#header > #headerNav > ul > li > .navChild > ul > li a {
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    padding: 0;
    margin: 0;
}

/*お問い合わせ*/
.headContact > a {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0 0 0 25px;
    margin: auto;
    background: #D60000;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    position: relative;
    z-index: 0;
    transition: all 0.5s ease;
}
.headContact > a::before {
    content: '';
    display: block;
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    background: #B40000;
    transition: all 0.5s ease;
}
.headContact > a:hover::before {
    width: 100%;
    transition: all 0.5s ease;
}
.headContact > a > span {
    display: block;
    padding: 25px;
    margin: 0 0 0 25px;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    position: relative;
    background: #B40000;
}
.headContact > a > span::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transition: all 0.5s ease;
}
.headContact > a > span::after {
    content: '';
    display: block;
    width: 2px;
    height: 10px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
    -webkit-transform: translate(-50%,-50%) rotate(45deg);
    transition: all 0.5s ease;
}
.headContact > a:hover > span::before {
    transform: translate(-50%,-50%) rotate(45deg);
    -webkit-transform: translate(-50%,-50%) rotate(45deg);
    transition: all 0.5s ease;
}
.headContact > a:hover > span::after {
    transform: translate(-50%,-50%) rotate(90deg);
    -webkit-transform: translate(-50%,-50%) rotate(90deg);
    transition: all 0.5s ease;
}

/*言語*/
.headLang {
	width: 100%;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-end;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	padding: 0;
	margin: 0 auto 5px;
}
.headLang a {
	display: inline-block;
	padding: 0;
	margin: 0 0 0 5px;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #header {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        display: -webkit-flex;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        background: none;
        position: fixed;
        top: 0;
        left: 50%;
        transform: translate(-50%,0);
        -webkit-transform: translate(-50%,0);
        z-index: 200;
        transition: all 0.5s ease;
    }
    #header::before {
        content: '';
        display: block;
        width: 100vw;
        height: 120%;
        padding: 0;
        margin: 0;
        background: linear-gradient(to bottom,rgba(9,32,49,0.7) 0%,rgba(9,32,49,0) 100%);
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%,0);
        -webkit-transform: translate(-50%,0);
        z-index: 99;
        opacity: 0;
        transition: all 0.5s ease;
    }
    #header.fixed::before {
        content: '';
        display: block;
        width: 100vw;
        height: 120%;
        padding: 0;
        margin: 0;
        background: linear-gradient(to bottom,rgba(9,32,49,0.7) 0%,rgba(9,32,49,0) 100%);
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%,0);
        -webkit-transform: translate(-50%,0);
        z-index: 99;
        opacity: 0.8;
        transition: all 0.5s ease;
    }
    #header > #logo {
        width: 40%;
        max-width: 100%;
        max-height: 40px;
        padding: 10px;
        margin: 0 0 0 10px;
        background: #fff;
        border-radius: 0 0 5px 5px;
        text-align: center;
        position: relative;
        z-index: 300;
        transition: all 0.5s ease;
    }
    #header > #logo img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0 auto;
        position: relative;
        z-index: 100;
    }

    #header > #headerNav {
        width: 45%;
        padding: 0;
        margin: 0;
        display: -webkit-flex;
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: nowrap;
        position: relative;
        z-index: 100;
    }
    #header > #headerNav > ul {
        display: none;
    }
    

    /*お問い合わせ*/
    .headContact > a {
        display: flex;
        display: -webkit-flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: nowrap;
        padding: 0 0 0 25px;
        margin: auto;
        background: #D60000;
        color: #fff;
        font-size: 15px;
        font-weight: 500;
        line-height: 1;
        position: relative;
        z-index: 0;
        transition: all 0.5s ease;
    }
    .headContact > a::before {
        content: '';
        display: block;
        width: 0;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;
        background: #B40000;
        transition: all 0.5s ease;
    }
    .headContact > a:hover::before {
        width: 100%;
        transition: all 0.5s ease;
    }
    .headContact > a > span {
        display: block;
        padding: 25px;
        margin: 0 0 0 25px;
        display: flex;
        display: -webkit-flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: nowrap;
        position: relative;
        background: #B40000;
    }
    .headContact > a > span::before {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
        transition: all 0.5s ease;
    }
    .headContact > a > span::after {
        content: '';
        display: block;
        width: 2px;
        height: 10px;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        border: none;
        background: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%) rotate(45deg);
        -webkit-transform: translate(-50%,-50%) rotate(45deg);
        transition: all 0.5s ease;
    }
    .headContact > a:hover > span::before {
        transform: translate(-50%,-50%) rotate(45deg);
        -webkit-transform: translate(-50%,-50%) rotate(45deg);
        transition: all 0.5s ease;
    }
    .headContact > a:hover > span::after {
        transform: translate(-50%,-50%) rotate(90deg);
        -webkit-transform: translate(-50%,-50%) rotate(90deg);
        transition: all 0.5s ease;
    }
    .headTel {
        position: relative;
        z-index: 1000;
        color: #fff;
    }
    .headTel > a {
        font-size: 17px;
        line-height: 1;
        padding: 0;
        margin: 0;
        font-weight: 500;
        color: #fff;
    }
	/*言語*/
	.headLang {
		width: 100%;
		display: flex;
		display: -webkit-flex;
		justify-content: flex-end;
		align-content: center;
		align-items: center;
		flex-wrap: nowrap;
		padding: 0;
		margin: 0;
	}
	.headLang a {
		display: inline-block;
		padding: 0;
		margin: 0 0 0 5px;
	}
	.headLang a img {
		width: auto;
		height: 22px;
	}
}


/* ドロワーメニュー */
.humburger span {
    width: 20px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s; /*真ん中の線がゆっくり消えるように*/
}
.humburger span:nth-of-type(1) {
    transform: translate(-50%, -7px);
}
.humburger span:nth-of-type(3) {
    width: 20px;
    transform: translate(-50%, 5px);
}

#navTgl:checked + .open .humburger span:nth-of-type(1) {
    transform: rotate(45deg) translate(-50%, 0);
    transform-origin: 0% 50%;
    background-color: #fff;
    margin-top: -2px;
    margin-left: -1px;
}
#navTgl:checked + .open .humburger span:nth-of-type(2) {
    opacity: 0;
}
#navTgl:checked + .open .humburger span:nth-of-type(3) {
    width: 20px;
    transform: rotate(-45deg) translate(-50%, 0);
    transform-origin: 0% 50%;
    background-color: #fff;
    margin-top: -2px;
    margin-left: -1px;
}

#navTgl {
    display: none;
}
label.open,
label.close {
    cursor: pointer;
    position: fixed;
    top: 35px;
    right: 20px;
    z-index: 10000;
}
.open {
    display: none;
    z-index: 10000;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #005491;
    color: white;
    background: none;
    font-size: 3em;
    text-align: center;
    -webkit-transition: background-color .6s, -webkit-transform .4s;
    transition: background-color .6s, transform .4s;
}
#navTgl:checked + .open {
    background-color: rgba(0, 0, 0, 0);
}
.close {
    pointer-events: none;
    z-index: 1;
    width: 100%;
    height: 100%;
    transition: background-color .4s;
}
#navTgl:checked ~ .close {
    border: 1px solid #fff;
    pointer-events: auto;
    background-color: rgba(0,0,0,.3);
}


#menu.menu {
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,84,145,0.9) 0, rgba(0,78,134,0.9) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform .4s;
    transition: transform .4s;
    overflow-y: scroll;
}
#navTgl:checked ~ .menu {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

#menuNavBox {
    width: 80%;
    height: 80%;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}
#menuNavBox ul {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    border: none;
    background: none;
    display: flex;
    display: -webkit-flex;
    justify-content: space-around;
    flex-wrap: wrap;
    position: relative;
}
#menuNavBox ul::before,
#menuNavBox ul::after {
    content: '';
    width: 25%;
    display: block;
}
#menuNavBox ul::before {
    order: 1;
}
#menuNavBox ul.menu > li {
    width: 25%;
    padding: 10px 0 10px 15px;
    margin: 0 0 20px;
    background: none;
    border: none;
    position: relative;
}
#menuNavBox ul.menu > li::before {
    content: '';
    display: block;
    width: 5px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
}
#menuNavBox ul.menu > li a {
    display: inline;
    padding: 0;
    margin: 0;
    font-size: 20px;
    line-height: 1;
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    background: none;
    border: none;
    text-align: left;
    transition: all 0.3s ease;
}
#menuNavBox ul.menu > li a::before {
    display: none;
}
#menuNavBox ul.menu > li a:hover {
    opacity: 0.8;
    transition: all 0.3s ease;
}

#menuNavBox .widget-menu h2.heading.heading-widget {
    width: 100%;
    padding: 0 0 20px;
    margin: 0 auto 30px;
    font-size: 20px;
    line-height: 1;
    color: #fff;
    font-weight: bold;
    border: none;
    border-bottom: 1px solid #fff;
    background: none;
    border-radius: 0;
}
#menuNavBox .widget-menu h2.heading.heading-widget > strong {
    display: block;
    width: 100%;
    max-width: 100%;
    position: relative;
    padding: 10px 0 0;
    margin: 0 auto 5px;
    font-family: 'Urbanist', sans-serif;
    font-size: 50px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
}
#menuNavBox .widget-menu h2.heading.heading-widget > strong::before {
    content: '';
    display: block;
    width: 30px;
    height: 4px;
    border-radius: 20px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
}
#menuNavBox .widget-menu h2.heading.heading-widget > strong::after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 20px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 35px;
}


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    label.open,
    label.close {
        cursor: pointer;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 10000;
    }
    .open {
        display: block;
        z-index: 10000;
        width: 40px;
        height: 40px;
        border: none;
        color: white;
        border-radius: 0;
        background: #005491;
        font-size: 3em;
        text-align: center;
        -webkit-transition: background-color .6s, -webkit-transform .4s;
        transition: background-color .6s, transform .4s;
    }
    #navTgl:checked + .open {
        background-color: rgba(0, 0, 0, 0);
    }
    .close {
        pointer-events: none;
        z-index: 1;
        width: 100%;
        height: 100%;
        transition: background-color .4s;
    }
    #navTgl:checked ~ .close {
        border: 1px solid #fff;
        pointer-events: auto;
        background-color: rgba(0,0,0,.3);
    }
    #menu.menu {
        z-index: 9999;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(0,84,145,0.9) 0, rgba(0,78,134,0.9) 100%);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: -webkit-transform .4s;
        transition: transform .4s;
        overflow-y: scroll;
    }
    #menuNavBox {
        width: 100%;
        height: 100%;
        padding: 30px;
        margin: auto;
        position: static;
        top: unset;
        left: unset;
        transform: translate(0,0);
        -webkit-transform: translate(0,0);
    }
    #menuNavBox ul.menu {
        width: 100%;
        padding: 0 0 30px;
        margin: 0 auto;
        list-style: none;
        border: none;
        background: none;
        display: flex;
        display: -webkit-flex;
        justify-content: space-around;
        flex-wrap: wrap;
        position: relative;
    }
    #menuNavBox ul::before,
    #menuNavBox ul::after {
        content: '';
        width: 25%;
        display: block;
    }
    #menuNavBox ul::before {
        order: 1;
    }
    #menuNavBox ul.menu > li {
        width: 100%;
        padding: 0;
        margin: 0;
        background: none;
        border: none;
        position: relative;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    #menuNavBox ul.menu > li > a {
        display: block;
        padding: 15px 0 15px 10px;
        margin: 0;
        font-size: 14px;
        line-height: 1.2em;
        color: #fff;
        font-family: 'Urbanist', sans-serif;
        font-weight: 500;
        background: none;
        border: none;
        text-align: left;
        transition: all 0.3s ease;
    }
    #menuNavBox ul.menu > li > a::before {
        display: none;
    }
    #menuNavBox ul.menu > li > a:hover {
        opacity: 0.8;
        transition: all 0.3s ease;
    }
    #menuNavBox ul.menu > li > ul > li {
        width: 100%;
        padding: 0;
        margin: 0;
        background: none;
        border: none;
        position: relative;
        border-top: 1px solid rgba(255,255,255,0.2);
    }
    #menuNavBox ul.menu > li > ul > li > a {
        display: block;
        padding: 15px 0 15px 25px;
        margin: 0;
        font-size: 12px;
        line-height: 1.2em;
        color: #fff;
        font-family: 'Urbanist', sans-serif;
        font-weight: 500;
        background: none;
        border: none;
        text-align: left;
        transition: all 0.3s ease;
    }
    #menuNavBox ul.menu > li::before,
    #menuNavBox ul.menu > li::after {
        display: none;
    }
    #menuNavBox ul.menu > li > ul > li::before {
        content: '';
        display: block;
        width: 5px;
        height: 1px;
        background: #fff;
        position: absolute;
        top: 50%;
        left: 10px;
        transform: translate(0,-50%);
        -webkit-transform: translate(0,-50%);
    }
    #menuNavBox ul.menu > li > ul > li > a:hover {
        opacity: 0.8;
        transition: all 0.3s ease;
    }

    #menuNavBox .widget-menu h2.heading.heading-widget {
        font-family: ten-mincho, serif;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 1;
        padding: 0 0 20px;
        margin: 0 auto 20px;
        border: none;
        background: none;
        color: #fff;
        position: relative;
        text-align: center;
    }
    #menuNavBox .widget-menu h2.heading.heading-widget span {
        display: inline-block;
        width: 50px;
        height: 1px;
        padding: 0;
        margin: 0;
        background: #fff;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%,0);
        -webkit-transform: translate(-50%,0);
    }
    #menuNavBox .widget-menu h2.heading.heading-widget span::before {
        content: '';
        display: block;
        width: 4px;
        height: 4px;
        padding: 0;
        margin: 0;
        background: #fff;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(0,-50%);
        -webkit-transform: translate(0,-50%);
    }
    #menuNavBox .widget-menu h2.heading.heading-widget span::after {
        content: '';
        display: block;
        width: 4px;
        height: 4px;
        padding: 0;
        margin: 0;
        background: #fff;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translate(0,-50%);
        -webkit-transform: translate(0,-50%);
    }
    
}

/************************************************************/
/*　メインビジュアル
/************************************************************/
#mainVisual {
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
div.g-inner {
    position: relative;
    width: 100%;
    height: 655px;
    margin: 0 0 0 auto;
}
#view {
    position: absolute;
    width: 100%;
    height: 655px;
    top: 0;
    right: 0;
    overflow: hidden;
}
#view p {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    padding: 0;
    margin: 0 auto;
}
#view p::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    background: rgba(0,0,0,0.3);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    filter: brightness(100%);
    overflow: hidden;
    transition: 0.5s;
}
#view p img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}
#caption {
    list-style: none;
    padding: 0;
    margin: 0;
}
#caption > li {
    padding: 0;
    margin: 0;
}
#thumbBtn {
    width: calc(100%);
    position: absolute;
    bottom: 20px;
    left: 0;
    background: none;
    padding: 0;
    margin: 0;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    z-index: 1000;
}
#thumbBtn li {
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    margin: 0 5px;
    cursor: pointer;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 50%;
    border: none;
    transition: 1s;
}
#thumbBtn li.active {
    background: #D60000;
    transition: 1s;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 1350px){
    #view p {
        position: absolute;
        width: auto;
        height: 100%;
        top: 0;
        left: 50%;
        transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        padding: 0;
        margin: 0 auto;
    }
    #view p img {
        width: auto;
        height: 100%;
        padding: 0;
        margin: 0;
    }
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #mainVisual {
        padding: 0;
        margin: 0;
        position: relative;
        z-index: 0;
        overflow: hidden;
    }
    div.g-inner {
        position: relative;
        width: 100%;
        height: 450px;
        margin: 0 0 0 auto;
    }
    #view {
        position: absolute;
        width: 100%;
        height: 450px;
        top: 0;
        right: 0;
        overflow: hidden;
    }
    #view p {
        position: absolute;
        width: auto;
        height: 100%;
        top: 0;
        left: 50%;
        transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        padding: 0;
        margin: 0 auto;
    }
    #view p::before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        background: rgba(0,0,0,0.3);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        backdrop-filter: blur(7px);
        -webkit-backdrop-filter: blur(7px);
        filter: brightness(100%);
        overflow: hidden;
        transition: 0.5s;
    }
    #view p img {
        width: auto;
        height: 100%;
        padding: 0;
        margin: 0;
    }
    #caption {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    #caption > li {
        padding: 0;
        margin: 0;
    }
    #thumbBtn {
        width: calc(100%);
        position: absolute;
        bottom: 20px;
        left: 0;
        background: none;
        padding: 0;
        margin: 0;
        display: -webkit-flex;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        z-index: 1000;
    }
    #thumbBtn li {
        display: block;
        width: 8px;
        height: 8px;
        padding: 0;
        margin: 0 5px;
        cursor: pointer;
        display: -webkit-flex;
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
        background: #fff;
        border-radius: 50%;
        border: none;
        transition: 1s;
    }
    #thumbBtn li.active {
        background: #D60000;
        transition: 1s;
    }
}

/*テキスト*/
#mainVisualTxt {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 50;
}
#mainVisualTxt > h2 {
    width: 100%;
    padding: 40px 0;
    margin: 0 auto 40px;
    text-align: center;
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    color: #fff;
    font-size: 37px;
    line-height: 1.5em;
    letter-spacing: 0.1em;
    position: relative;
}
#mainVisualTxt > h2 > span:first-of-type {
    display: inline-block;
    width: 120px;
    height: 1px;
    padding: 0;
    margin: 0;
    background: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
}
#mainVisualTxt > h2 > span:first-of-type::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    padding: 0;
    margin: 0;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
}
#mainVisualTxt > h2 > span:first-of-type::after {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    padding: 0;
    margin: 0;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
}
#mainVisualTxt > h2 > span:last-of-type {
    display: inline-block;
    width: 120px;
    height: 1px;
    padding: 0;
    margin: 0;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
}
#mainVisualTxt > h2 > span:last-of-type::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    padding: 0;
    margin: 0;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
}
#mainVisualTxt > h2 > span:last-of-type::after {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    padding: 0;
    margin: 0;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
}
#mainVisualTxt > p {
    padding: 0;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*テキスト*/
    #mainVisualTxt {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        text-align: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        z-index: 50;
    }
    #mainVisualTxt > h2 {
        width: 90%;
        padding: 20px 0;
        margin: 0 auto 20px;
        text-align: center;
        font-family: ten-mincho, serif;
        font-style: normal;
        font-weight: 400;
        color: #fff;
        font-size: 18px;
        line-height: 1.4em;
        letter-spacing: 0.1em;
        position: relative;
    }
    #mainVisualTxt > h2 > span:first-of-type {
        display: inline-block;
        width: 60px;
        height: 1px;
        padding: 0;
        margin: 0;
        background: #fff;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%,0);
        -webkit-transform: translate(-50%,0);
    }
    #mainVisualTxt > h2 > span:first-of-type::before {
        content: '';
        display: block;
        width: 5px;
        height: 5px;
        padding: 0;
        margin: 0;
        background: #fff;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(0,-50%);
        -webkit-transform: translate(0,-50%);
    }
    #mainVisualTxt > h2 > span:first-of-type::after {
        content: '';
        display: block;
        width: 5px;
        height: 5px;
        padding: 0;
        margin: 0;
        background: #fff;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translate(0,-50%);
        -webkit-transform: translate(0,-50%);
    }
    #mainVisualTxt > h2 > span:last-of-type {
        display: inline-block;
        width: 60px;
        height: 1px;
        padding: 0;
        margin: 0;
        background: #fff;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%,0);
        -webkit-transform: translate(-50%,0);
    }
    #mainVisualTxt > h2 > span:last-of-type::before {
        content: '';
        display: block;
        width: 5px;
        height: 5px;
        padding: 0;
        margin: 0;
        background: #fff;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(0,-50%);
        -webkit-transform: translate(0,-50%);
    }
    #mainVisualTxt > h2 > span:last-of-type::after {
        content: '';
        display: block;
        width: 5px;
        height: 5px;
        padding: 0;
        margin: 0;
        background: #fff;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translate(0,-50%);
        -webkit-transform: translate(0,-50%);
    }
    #mainVisualTxt > p {
        width: 90%;
        padding: 0;
        margin: 0 auto;
        text-align: center;
        font-size: 12px;
        color: #fff;
    }
}

/*ECOSERT*/
#mainVisual .ecosert {
    width: 17%;
    padding: 5px;
    margin: 0;
    background: #fff;
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 5;
}
#mainVisual .ecosert h3 {
    padding: 10px;
    margin: 0;
    text-align: center;
    background: #005491;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
}
#mainVisual .ecosert figure {
    padding: 15px;
    margin: 0 auto;
    text-align: center;
}
#mainVisual .ecosert figure img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0 auto;
}
#mainVisual .ecosert p {
    font-size: 13px;
    line-height: 1.4em;
    padding: 0 15px 15px;
    margin: 0;
    text-align: justify;
    text-justify: inter-ideograph;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*ECOSERT*/
    #mainVisual .ecosert {
        display: none;
    }
    #all_wrap .ecosert {
        width: 100%;
        padding: 20px;
        margin: 0;
        background: #fff;
        position: static;
        bottom: unset;
        right: unset;
        z-index: 5;
    }
    #all_wrap .ecosert h3 {
        padding: 10px;
        margin: 0 auto 10px;
        text-align: center;
        background: #005491;
        color: #fff;
        font-size: 14px;
        line-height: 1;
        font-weight: 600;
    }
    #all_wrap .ecosert figure {
        padding: 0;
        margin: 0 auto 10px;
        text-align: center;
    }
    #all_wrap .ecosert figure img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0 auto;
    }
    #all_wrap .ecosert p {
        font-size: 14px;
        line-height: 1.4em;
        padding: 0;
        margin: 0;
        text-align: justify;
        text-justify: inter-ideograph;
    }
}

/*装飾*/
.mainVisualObj01 {
    width: 30%;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.mainVisualObj01::before {
    content: '';
    display: block;
    background: rgba(31,111,74,0.5);
    width: 100%;
    height: 60%;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.mainVisualObj01::after {
    content: '';
    display: block;
    background: rgba(31,111,74,0.4);
    width: calc(100% + 70px);
    height: calc(60% + 50px);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.mainVisualObj01 > img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}
.mainVisualObj02 {
    width: 30%;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}
.mainVisualObj02::before {
    content: '';
    display: block;
    background: rgba(9,32,49,0.5);
    width: 90%;
    height: 60%;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
.mainVisualObj02::after {
    content: '';
    display: block;
    background: rgba(9,32,49,0.17);
    width: calc(90% + 60px);
    height: calc(60% + 40px);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
.mainVisualObj02 > img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    margin-top: 50px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*装飾*/
    .mainVisualObj01 {
        width: 30%;
        padding: 0;
        margin: 0;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 2;
    }
    .mainVisualObj01::before {
        content: '';
        display: block;
        background: rgba(31,111,74,0.5);
        width: 100%;
        height: 60%;
        clip-path: polygon(0 0, 100% 100%, 0 100%);
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: -1;
    }
    .mainVisualObj01::after {
        content: '';
        display: block;
        background: rgba(31,111,74,0.4);
        width: calc(100% + 70px);
        height: calc(60% + 50px);
        clip-path: polygon(0 0, 100% 100%, 0 100%);
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: -1;
    }
    .mainVisualObj01 > img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
    }
    .mainVisualObj02 {
        width: 30%;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 2;
    }
    .mainVisualObj02::before {
        content: '';
        display: block;
        background: rgba(9,32,49,0.5);
        width: 90%;
        height: 60%;
        clip-path: polygon(0 0, 100% 0, 100% 100%);
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;
    }
    .mainVisualObj02::after {
        content: '';
        display: block;
        background: rgba(9,32,49,0.17);
        width: calc(90% + 60px);
        height: calc(60% + 40px);
        clip-path: polygon(0 0, 100% 0, 100% 100%);
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;
    }
    .mainVisualObj02 > img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        margin-top: 30px;
    }
}


/*ニュースティッカー*/
#news_ticker {
    width: 100%;
    padding: 0;
    margin: 0;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
}
#news_ticker > strong {
    width: auto;
    padding: 0;
    margin: 0;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
}
#news_ticker > strong > a {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    padding: 20px 50px;
    margin: 0;
    background: #005491;
    color: #fff;
    font-size: 14px;
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .2em;
    position: relative;
    z-index: 0;
}
#news_ticker > strong > a::before {
    content: '';
    display: block;
    width: 0;
    height: 100%;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    background: #004E86;
    transition: all 0.5s ease;
    z-index: -1;
}
#news_ticker > strong > a:hover::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    background: #004E86;
    transition: all 0.5s ease;
    z-index: -1;
}
#news_ticker > #ticker {
    width: 100%;
    padding: 0;
    margin: 0;
}
#news_ticker > #ticker > ul {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}
#news_ticker > #ticker > ul li {
    padding: 0;
    margin: 0;
}
#news_ticker > #ticker > ul li > a {
    display: inline-block;
    padding: 0 30px 0 0;
    margin: 0;
    position: relative;
    transition: all 0.5s ease;
}
#news_ticker > #ticker > ul li > a:hover {
    color: #D60000;
    transition: all 0.5s ease;
}
#news_ticker > #ticker > ul li span {
    display: inline-block;
    padding: 0;
    margin: 0 20px 0 0;
}
#news_ticker > #ticker > ul li > a::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border-top: 1px solid #222;
    border-right: 1px solid #222;
    position: absolute;
    top: 55%;
    right: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    transition: all 0.5s ease;
}
#news_ticker > #ticker > ul li > a::after {
    content: '';
    display: block;
    width: 1px;
    height: 10px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    background: #222;
    position: absolute;
    top: 55%;
    right: 3px;
    transform: translate(0,-50%) rotate(45deg);
    -webkit-transform: translate(0,-50%) rotate(45deg);
    transition: all 0.5s ease;
}
#news_ticker > #ticker > ul li > a:hover::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border-top: 1px solid #D60000;
    border-right: 1px solid #D60000;
    position: absolute;
    top: 55%;
    right: 0;
    transform: translate(0,-50%) rotate(45deg);
    -webkit-transform: translate(0,-50%) rotate(45deg);
    transition: all 0.5s ease;
}
#news_ticker > #ticker > ul li > a:hover::after {
    content: '';
    display: block;
    width: 1px;
    height: 10px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    background: #D60000;
    position: absolute;
    top: 55%;
    right: 3px;
    transform: translate(0,-50%) rotate(90deg);
    -webkit-transform: translate(0,-50%) rotate(90deg);
    transition: all 0.5s ease;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*ニュースティッカー*/
    #news_ticker {
        width: 100%;
        padding: 0;
        margin: 0;
        display: -webkit-flex;
        display: flex;
        flex-wrap: nowrap;
    }
    #news_ticker > strong {
        width: auto;
        padding: 0;
        margin: 0;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-content: center;
        align-items: center;
        flex-wrap: nowrap;
    }
    #news_ticker > strong > a {
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-content: center;
        align-items: center;
        flex-wrap: nowrap;
        padding: 10px 10px;
        height: 100%;
        margin: 0;
        background: #005491;
        color: #fff;
        font-size: 12px;
        font-family: ten-mincho, serif;
        font-style: normal;
        font-weight: 400;
        line-height: 1;
        letter-spacing: .2em;
        position: relative;
        z-index: 0;
    }
    #news_ticker > strong > a::before {
        content: '';
        display: block;
        width: 0;
        height: 100%;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 0;
        left: 0;
        background: #004E86;
        transition: all 0.5s ease;
        z-index: -1;
    }
    #news_ticker > strong > a:hover::before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 0;
        left: 0;
        background: #004E86;
        transition: all 0.5s ease;
        z-index: -1;
    }
    #news_ticker > #ticker {
        width: 100%;
        padding: 0;
        margin: 0;
        background: #fafafa;
    }
    #news_ticker > #ticker > ul {
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    #news_ticker > #ticker > ul li {
        padding: 0;
        margin: 0;
        display: flex;
        display: -webkit-flex;
        justify-content: flex-start;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    #news_ticker > #ticker > ul li > a {
        width: 100%;
        display: block;
        padding: 0 30px 0 0;
        margin: 0;
        position: relative;
        transition: all 0.5s ease;
        line-height: 1.2em;
    }
    #news_ticker > #ticker > ul li > a:hover {
        color: #D60000;
        transition: all 0.5s ease;
    }
    #news_ticker > #ticker > ul li span {
        display: inline-block;
        padding: 0;
        margin: 0 0 5px;
        font-size: 10px;
        color: #aaa;
    }
    #news_ticker > #ticker > ul li > a::before {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        border-top: 1px solid #222;
        border-right: 1px solid #222;
        position: absolute;
        top: 55%;
        right: 0;
        transform: translate(0,-50%);
        -webkit-transform: translate(0,-50%);
        transition: all 0.5s ease;
    }
    #news_ticker > #ticker > ul li > a::after {
        content: '';
        display: block;
        width: 1px;
        height: 10px;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        border: none;
        background: #222;
        position: absolute;
        top: 55%;
        right: 3px;
        transform: translate(0,-50%) rotate(45deg);
        -webkit-transform: translate(0,-50%) rotate(45deg);
        transition: all 0.5s ease;
    }
    #news_ticker > #ticker > ul li > a:hover::before {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        border-top: 1px solid #D60000;
        border-right: 1px solid #D60000;
        position: absolute;
        top: 55%;
        right: 0;
        transform: translate(0,-50%) rotate(45deg);
        -webkit-transform: translate(0,-50%) rotate(45deg);
        transition: all 0.5s ease;
    }
    #news_ticker > #ticker > ul li > a:hover::after {
        content: '';
        display: block;
        width: 1px;
        height: 10px;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        border: none;
        background: #D60000;
        position: absolute;
        top: 55%;
        right: 3px;
        transform: translate(0,-50%) rotate(90deg);
        -webkit-transform: translate(0,-50%) rotate(90deg);
        transition: all 0.5s ease;
    }
}

/************************************************************/
/*　サイドバー
/************************************************************/
.l-sidebar > aside {
    padding: 30px;
    margin: 0 auto 30px;
    background: #F7F7F7;
    border: 1px solid #fff;
}
.l-sidebar h2.heading.heading-widget,
.l-sidebar .pageContents_side h2 {
    width: 100%;
    padding: 0;
    margin: 0 auto 10px;
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    color: #222;
    font-weight: bold;
    border: none;
    background: none;
}
.l-sidebar h2.heading.heading-widget > strong,
.l-sidebar .pageContents_side h2 > strong {
    display: block;
    width: 100%;
    position: relative;
    padding: 0;
    margin: 0 auto 5px;
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: #1b81ca;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    .l-sidebar h2.heading.heading-widget,
    .topContentSid h2.heading-widget {
        width: 100%;
        display: -webkit-flex;
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
        font-family: 'Urbanist', sans-serif;
        font-size: 30px;
        line-height: 1;
        font-weight: 700;
        background: none;
        color: #272727;
        text-align: left;
        padding: 0;
        margin: 0 auto 20px;
    }
    h2.heading-widget > span {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 14px;
        font-weight: 400;
        line-height: 1;
        color: #272727;
        padding: 0;
        margin: 5px auto 0;
    }
}

.l-sidebar .widget.widget_nav_menu ul.menu,
.l-sidebar .pageContents_side ul {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    border: none;
}
.l-sidebar .widget.widget_nav_menu ul.menu > li,
.l-sidebar .pageContents_side ul > li {
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
}
.l-sidebar .widget.widget_nav_menu ul.menu > li a,
.l-sidebar .pageContents_side ul > li a {
    display: block;
    padding: 12px 10px 12px 25px;
    margin: 0;
    font-size: 12px;
    line-height: 1.4em;
    color: #222;
    font-weight: 400;
    text-decoration: none;
    border: none;
    border-bottom: 1px dotted rgba(0,0,0,0.2);
    background: none;
    transition: all 0.3s ease;
    position: relative;
}
.l-sidebar .widget.widget_nav_menu ul.menu > li a::before,
.l-sidebar .widget.widget_nav_menu ul.menu > li a::after,
.l-sidebar .pageContents_side ul > li a::before,
.l-sidebar .pageContents_side ul > li a::after {
    display: none;
}
.l-sidebar .widget.widget_nav_menu ul.menu > li a::before,
.l-sidebar .pageContents_side ul > li a::before {
    content: '';
    display: block;
    width: 5px;
    height: 2px;
    background: #005491;
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
}
.l-sidebar .widget.widget_nav_menu ul.menu > li a:hover,
.l-sidebar .pageContents_side ul > li a:hover {
    color: #005491;
    background: none;
    font-weight: 400;
    transition: all 0.3s ease;
}

/*子ページ*/
.l-sidebar .pageContents_side ul > li > ul > li a {
    display: block;
    padding: 8px 10px 8px 35px;
    margin: 0;
    font-size: 12px;
    line-height: 1.4em;
    color: #222;
    font-weight: 400;
    text-decoration: none;
    border: none;
    border-bottom: 1px dotted rgba(0,0,0,0.2);
    background: none;
    transition: all 0.3s ease;
    position: relative;
}
.l-sidebar .pageContents_side ul > li > ul > li a::before,
.l-sidebar .pageContents_side ul > li > ul > li a::after {
    display: none;
}
.l-sidebar .pageContents_side ul > li > ul > li a::before {
    content: '';
    display: block;
    width: 5px;
    height: 1px;
    background: #005491;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
}
.l-sidebar .pageContents_side ul > li > ul > li a:hover {
    color: #005491;
    background: none;
    font-weight: 400;
    transition: all 0.3s ease;
}


/************************************************************/
/*　フッター
/************************************************************/
#footerArea {
    width: 100%;
    padding: 80px 0;
    margin: 0 auto;
    background: #F4F4F4;
    color: #272727;
}
#footerArea > .footerBox {
    width: calc(100% - 200px);
    padding: 0;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}
#footerArea > .footerBox .footerBoxLeft {
    width: 48%;
    padding: 0;
    margin: 0;
}
#footerArea > .footerBox .footerBoxRight {
    width: 48%;
    padding: 0;
    margin: 0;
    position: relative;
}
#footerArea > .footerBox .footerBoxLeft h2 {
    width: 100%;
    padding: 0;
    margin: 0 auto 20px;
    text-align: left;
    border: none;
    background: none;
}

.f_alpha {
    position: absolute;
    bottom: 0;
    right: 0;
}

#footerArea > .footerBox .footerBoxLeft h2 img {
    max-width: 300px;
    height: auto;
    padding: 0;
    margin: 0;
}
#footerArea > .footerBox .footerBoxLeft h3 {
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    padding: 0;
    margin: 0 auto 20px;
    border: none;
    background: none;
}
#footerArea > .footerBox .footerBoxLeft p {
    padding: 0;
    margin: 0 auto 20px;
    font-size: 15px;
    line-height: 1.7em;
}
.f_ecocert img {
    max-width: 300px;
}
.linkTxt a {
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    padding: 0 40px 0 0;
    margin: 0 20px 0 0;
    background: url('https://alpha0702.xsrv.jp/wp-content/themes/yuhangren/img/svg/icon_link.svg') no-repeat;
    background-size: auto 12px;
    background-position: right 20px center;
    position: relative;
    transition: all 0.5s ease;
}
.linkTxt a:hover {
    color: #D60000;
    transition: all 0.5s ease;
    text-decoration: underline;
}
.linkTxt a::after {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background: #272727;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
}
.linkTxt a img {
    width: auto;
    height: 12px;
    padding: 0;
    margin: 0 0 0 10px;
}
.linkIcon a {
    display: inline-block;
    padding: 0;
    margin: 0;
}
.linkIcon img {
    width: auto;
    height: 12px;
    padding: 0;
    margin: 0;
}

/*フッター検索*/
#footerArea > .footerBox .footerBoxRight .widget_search {
    width: 50%;
    padding: 0;
    margin: 0;
}

#footerArea > .footerBox .footerBoxRight h2 {
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 1;
    padding: 0 0 20px;
    margin: 0 auto 30px;
    border: none;
    background: none;
    color: #272727;
    position: relative;
    text-align: center;
}
#footerArea > .footerBox .footerBoxRight .widget_search h2 {
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    padding: 0;
    margin: 0 auto 10px;
    border: none;
    background: none;
    color: #272727;
    position: relative;
    text-align: left;
}
#footerArea > .footerBox .footerBoxRight h2 span {
    display: inline-block;
    width: 50px;
    height: 1px;
    padding: 0;
    margin: 0;
    background: #272727;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
}
#footerArea > .footerBox .footerBoxRight h2 span::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    padding: 0;
    margin: 0;
    background: #272727;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
}
#footerArea > .footerBox .footerBoxRight h2 span::after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    padding: 0;
    margin: 0;
    background: #272727;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
}
#footerArea > .footerBox .footerBoxRight .widget_nav_menu ul.menu {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#footerArea > .footerBox .footerBoxRight .widget_nav_menu ul.menu > li {
    width: 48%;
    padding: 0;
    margin: 0 0 20px;
}
#footerArea > .footerBox .footerBoxRight .widget_nav_menu ul.menu > li a {
    display: inline-block;
    padding: 0 0 0 20px;
    margin: 0;
    font-size: 14px;
    line-height: 1.2em;
    font-weight: 400;
    color: #272727;
    position: relative;
}
#footerArea > .footerBox .footerBoxRight .widget_nav_menu ul.menu > li a::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border-top: 1px solid #222;
    border-right: 1px solid #222;
    position: absolute;
    top: 55%;
    left: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    transition: all 0.5s ease;
}
#footerArea > .footerBox .footerBoxRight .widget_nav_menu ul.menu > li a::after {
    content: '';
    display: block;
    width: 1px;
    height: 10px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    background: #222;
    position: absolute;
    top: 55%;
    left: 3px;
    transform: translate(0,-50%) rotate(45deg);
    -webkit-transform: translate(0,-50%) rotate(45deg);
    transition: all 0.5s ease;
}
#footerArea > .footerBox .footerBoxRight .widget_nav_menu ul.menu > li a:hover {
    font-size: 14px;
    line-height: 1.2em;
    font-weight: 400;
    color: #D60000;
    transition: all 0.5s ease;
}
#footerArea > .footerBox .footerBoxRight .widget_nav_menu ul.menu > li a:hover::before {
    transform: translate(0,-50%) rotate(45deg);
    -webkit-transform: translate(0,-50%) rotate(45deg);
    transition: all 0.5s ease;
    border-top: 1px solid #D60000;
    border-right: 1px solid #D60000;
}
#footerArea > .footerBox .footerBoxRight .widget_nav_menu ul.menu > li a:hover::after {
    transform: translate(0,-50%) rotate(90deg);
    -webkit-transform: translate(0,-50%) rotate(90deg);
    transition: all 0.5s ease;
    background: #D60000;
}

#footerArea > .footerBox .footerBoxRight .widget {
    margin-bottom: 20px;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #footerArea {
        width: 100%;
        padding: 40px 0;
        margin: 0 auto;
        background: #F4F4F4;
        color: #272727;
    }
    #footerArea > .footerBox {
        width: 90%;
        padding: 0;
        margin: 0 auto;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    #footerArea > .footerBox .footerBoxLeft {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    #footerArea > .footerBox .footerBoxRight {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    /*フッター検索*/
    #footerArea > .footerBox .footerBoxRight .widget_search {
        width: 100%;
        padding: 0;
        margin: 0 auto 20px;
    }
    #footerArea > .footerBox .footerBoxLeft h2 {
        width: 100%;
        padding: 0;
        margin: 0 auto 10px;
        text-align: center;
        border: none;
        background: none;
    }
    #footerArea > .footerBox .footerBoxLeft h2 img {
        max-width: 80%;
        height: auto;
        padding: 0;
        margin: 0 auto;
    }
    #footerArea > .footerBox .footerBoxLeft h3 {
        font-family: ten-mincho, serif;
        font-style: normal;
        font-weight: 400;
        font-size: 15px;
        line-height: 1;
        padding: 0;
        margin: 0 auto 10px;
        border: none;
        background: none;
        text-align: center;
    }
    #footerArea > .footerBox .footerBoxLeft p {
        padding: 0;
        margin: 0 auto 20px;
        font-size: 14px;
        line-height: 1.7em;
        text-align: center;
    }
    .f_ecocert img {
        max-width: 300px;
    }
    .linkTxt a {
        display: inline-block;
        font-size: 14px;
        line-height: 1;
        padding: 0 40px 0 0;
        margin: 0 20px 0 0;
        background: url('https://alpha0702.xsrv.jp/wp-content/themes/yuhangren/img/svg/icon_link.svg') no-repeat;
        background-size: auto 12px;
        background-position: right 20px center;
        position: relative;
        transition: all 0.5s ease;
    }
    .linkTxt a:hover {
        color: #D60000;
        transition: all 0.5s ease;
        text-decoration: underline;
    }
    .linkTxt a::after {
        content: '';
        display: block;
        width: 1px;
        height: 100%;
        background: #272727;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translate(0,-50%);
        -webkit-transform: translate(0,-50%);
    }
    .linkTxt a img {
        width: auto;
        height: 12px;
        padding: 0;
        margin: 0 0 0 10px;
    }
    .linkIcon a {
        display: inline-block;
        padding: 0;
        margin: 0;
    }
    .linkIcon img {
        width: auto;
        height: 12px;
        padding: 0;
        margin: 0;
    }

    #footerArea > .footerBox .footerBoxRight h2 {
        font-family: ten-mincho, serif;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 1;
        padding: 0 0 20px;
        margin: 0 auto 20px;
        border: none;
        background: none;
        color: #272727;
        position: relative;
        text-align: center;
    }
    #footerArea > .footerBox .footerBoxRight h2 span {
        display: inline-block;
        width: 50px;
        height: 1px;
        padding: 0;
        margin: 0;
        background: #272727;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%,0);
        -webkit-transform: translate(-50%,0);
    }
    #footerArea > .footerBox .footerBoxRight h2 span::before {
        content: '';
        display: block;
        width: 4px;
        height: 4px;
        padding: 0;
        margin: 0;
        background: #272727;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(0,-50%);
        -webkit-transform: translate(0,-50%);
    }
    #footerArea > .footerBox .footerBoxRight h2 span::after {
        content: '';
        display: block;
        width: 4px;
        height: 4px;
        padding: 0;
        margin: 0;
        background: #272727;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translate(0,-50%);
        -webkit-transform: translate(0,-50%);
    }
    #footerArea > .footerBox .footerBoxRight .widget_nav_menu ul.menu {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        list-style: none;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    #footerArea > .footerBox .footerBoxRight .widget_nav_menu ul.menu > li {
        width: 46%;
        padding: 0;
        margin: 0 0 10px;
    }
    #footerArea > .footerBox .footerBoxRight .widget_nav_menu ul.menu > li a {
        display: inline-block;
        padding: 0 0 0 20px;
        margin: 5px 0;
        font-size: 14px;
        line-height: 1.2em;
        font-weight: 400;
        color: #272727;
        position: relative;
    }
    #footerArea > .footerBox .footerBoxRight .widget_nav_menu ul.menu > li a::before {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        border-top: 1px solid #222;
        border-right: 1px solid #222;
        position: absolute;
        top: 55%;
        left: 0;
        transform: translate(0,-50%);
        -webkit-transform: translate(0,-50%);
        transition: all 0.5s ease;
    }
    #footerArea > .footerBox .footerBoxRight .widget_nav_menu ul.menu > li a::after {
        content: '';
        display: block;
        width: 1px;
        height: 10px;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        border: none;
        background: #222;
        position: absolute;
        top: 55%;
        left: 3px;
        transform: translate(0,-50%) rotate(45deg);
        -webkit-transform: translate(0,-50%) rotate(45deg);
        transition: all 0.5s ease;
    }
    #footerArea > .footerBox .footerBoxRight .widget_nav_menu ul.menu > li a:hover {
        font-size: 12px;
        line-height: 1.2em;
        font-weight: 400;
        color: #D60000;
        transition: all 0.5s ease;
    }
    #footerArea > .footerBox .footerBoxRight .widget_nav_menu ul.menu > li a:hover::before {
        transform: translate(0,-50%) rotate(45deg);
        -webkit-transform: translate(0,-50%) rotate(45deg);
        transition: all 0.5s ease;
        border-top: 1px solid #D60000;
        border-right: 1px solid #D60000;
    }
    #footerArea > .footerBox .footerBoxRight .widget_nav_menu ul.menu > li a:hover::after {
        transform: translate(0,-50%) rotate(90deg);
        -webkit-transform: translate(0,-50%) rotate(90deg);
        transition: all 0.5s ease;
        background: #D60000;
    }
}

/*サイトマップ*/
#footerArea .widget_nav_menu ul.menu {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    border: none;
    background: none;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
#footerArea .widget_nav_menu ul.menu > li {
    display: inline-block;
    padding: 0 10px 0 0;
    margin: 0 10px 10px 0;
    font-size: 12px;
    line-height: 1;
    color: #fff;
    position: relative;
    border: none;
    background: none;
}
#footerArea .widget_nav_menu ul.menu > li::after {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    padding: 0;
    margin: 0;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    opacity: 0.5;
}
#footerArea .widget_nav_menu ul.menu > li a {
    font-size: 12px;
    line-height: 1;
    color: #fff;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
}
#footerArea .widget_nav_menu ul.menu > li a::before,
#footerArea .widget_nav_menu ul.menu > li a::after {
    display: none;
}
#footerArea .widget_nav_menu ul.menu > li a:hover {
    color: #005491;
    transition: all 0.3s ease;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*サイトマップ*/
    #footerArea .widget_nav_menu ul.menu {
        width: 95%;
        padding: 0;
        margin: 0 auto;
        list-style: none;
        border: none;
        background: none;
        display: flex;
        display: -webkit-flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    #footerArea .widget_nav_menu ul.menu > li {
        display: inline-block;
        padding: 0 10px 0 0;
        margin: 0 10px 10px 0;
        font-size: 12px;
        line-height: 1;
        color: #fff;
        position: relative;
        border: none;
        background: none;
    }
}

/*コピーライト*/
#footer_btm_area {
    background: #626F77;
}
#footer_btm_area h2 {
    width: 100%;
    text-align: center;
    padding: 50px 0 40px;
    margin: 0 auto;
}
#footer_btm_area h2 img {
    width: 100%;
    max-width: 230px;
    height: auto;
    padding: 0;
    margin: 0;
}

.copyright {
    display: block;
    font-size: 8px;
    line-height: 1;
    font-style: normal;
    color: #222;
    padding: 0;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){

    /*コピーライト*/
   .bottomFooter__copyright {
        width: 100%;
        padding: 10px 0 10px;
        text-align: center;
        margin: 0 auto;
        color: #fff;
        position: static;
        bottom: unset;
        left: unset;
        transform: none;
        -webkit-transform: none;
        background: #1F1F1F;
    }
    .bottomFooter__copyright,
    .bottomFooter__copyright a.bottomFooter__link {
        font-size: 10px;
        color: #fff;
        opacity: 1;
    }
    .bottomFooter__copyright a.bottomFooter__link:hover {
        text-decoration: none;
        opacity: 1;
        color: #fff;
    }
    .f_alpha {
        display: block;
        width: 25%;
        position: static;
        text-align: center;
        padding: 0;
        margin: 20px auto 0;
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
    }
    .f_alpha img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
    }
}



/************************************************************/
/*　アーカイブ　リスト
/************************************************************/

/************************************************************/
/*　リスト
/************************************************************/
#all_wrap .l-wrapper .pageContents .content ul,
#all_wrap .l-wrapper .postContents .content ul {
    list-style: none;
    padding: 0;
    margin: 5px auto 10px;
}
#all_wrap .l-wrapper .pageContents .content ul li,
#all_wrap .l-wrapper .postContents .content ul li {
    padding: 0 0 0 15px;
    margin: 0 0 10px;
    list-style: none;
    border: none;
    background: none;
    position: relative;
    line-height: 1.5em;
}
#all_wrap .l-wrapper .pageContents .content ul li:before,
#all_wrap .l-wrapper .postContents .content ul li:before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    padding: 0;
    margin: 0;
    background: #272727;
    position: absolute;
    top: 0.7em;
    left: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    border-radius: 50%;
}

#all_wrap .l-wrapper .pageContents .content ol,
#all_wrap .l-wrapper .postContents .content ol {
    list-style: none;
    padding: 0;
    margin: 5px auto 10px;
}
#all_wrap .l-wrapper .pageContents .content ol li,
#all_wrap .l-wrapper .postContents .content ol li {
    padding: 0 0 0 30px;
    margin: 0 0 5px;
    list-style: none;
    border: none;
    background: none;
    position: relative;
}
#all_wrap .l-wrapper .pageContents .content ol li:before,
#all_wrap .l-wrapper .postContents .content ol li:before {
    counter-increment: number;
    content: counter(number);
    background: #fff;
    border: 1px solid #272727;
    color: #272727;
    width: 2.2rem;
    height: 2.2rem;
    line-height: 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    top: 1.4em;
    left: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    border-radius: 50%;
}

/*=== 【追加】OEM用 <前へ 次へ> ===*/
#all_wrap .content .oemnav {
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    margin-bottom: 98px;
}

#all_wrap .content .oemnav p {
    margin: 0;
    position: relative;
}

#all_wrap .content .oemnav a {
    color: #242424 !important;
    font-size: 14px;
    border-bottom: 1px solid #242424;
    padding-bottom: 3px;
}

#all_wrap .content .oemnav a:hover {
    text-decoration: none;
    color: #005491 !important;
    border-bottom: 1px solid #005491 !important;
}

#all_wrap .content .oemnav .oemnav-prev {
    padding-left: 25px;
}

#all_wrap .content .oemnav .oemnav-next {
    padding-right: 25px;
}

#all_wrap .content .oemnav .oemnav-prev::before,
#all_wrap .content .oemnav .oemnav-next::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1px solid #272727;
    border-right: 1px solid #272727;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

#all_wrap .content .oemnav .oemnav-prev::before {
    left: 0;
    -webkit-transform: rotate(-135deg);
       -moz-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
         -o-transform: rotate(-135deg);
            transform: rotate(-135deg);
}

#all_wrap .content .oemnav .oemnav-next::after {
    right: 0;
    -webkit-transform: rotate(45deg);
       -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
         -o-transform: rotate(45deg);
            transform: rotate(45deg);
}

/*=== 【追加】OEM用メニューリスト ===*/
#all_wrap .content .menu-list {
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    max-width: 810px;
}

#all_wrap .content .menu-list li {
    background-color: #005491 !important;
    border: 1px solid #005491 !important;
    line-height: 1.3em;
    padding: 0 !important;
    margin-bottom: 30px !important;
    max-width: 250px;
    width: 31%;
}

#all_wrap .content .menu-list li::before {
    background: none !important;
    border: 1px solid #fff !important;
    color: #fff !important;
    left: 20px !important;
    top: 24px !important;
}

#all_wrap .content .menu-list li::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
       -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
         -o-transform: rotate(45deg);
            transform: rotate(45deg);
    position: absolute;
    right: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
}

#all_wrap .content .menu-list li:hover {
    background-color: #7DB4E6 !important;
    border: 1px solid #7DB4E6 !important;
}

#all_wrap .content .menu-list .on-page {
    background-color: #fff !important;
    color: #005491;
    padding: 13px 10px 13px 53px !important;
}

#all_wrap .content .menu-list .on-page:hover {
    background-color: #fff !important;
    border: 1px solid #005491 !important;
}

#all_wrap .content .menu-list .on-page::before {
     border: 1px solid #005491 !important;
    color: #005491 !important;
}

#all_wrap .content .menu-list .on-page::after {
    border-top: 1px solid #005491;
    border-right: 1px solid #005491;
}

#all_wrap .content .menu-list li a {
    color: #FFF;
    display: block;
    padding: 13px 10px 13px 53px;
    max-width: 250px;
    text-decoration: none;
    transition: 0.3s;
}

@media only screen and (max-width: 768px){
    /*=== 【SP追加】OEM用 <前へ 次へ> ===*/
    #all_wrap .content .oemnav {
        margin-bottom: 15%;
    }

    #all_wrap .content .oemnav a {
        font-size: 13px;
        padding-bottom: 0.2rem;
    }

    #all_wrap .content .oemnav .oemnav-prev {
        padding-left: 3.5%;
    }

    #all_wrap .content .oemnav .oemnav-next {
        padding-right: 3.5%;
    }

    #all_wrap .content .oemnav .oemnav-prev::before,
    #all_wrap .content .oemnav .oemnav-next::after {
        width: 7px;
        height: 7px;
    }

    /*=== 【SP追加】OEM用メニューリスト ===*/
    #all_wrap .content .menu-list li {
        font-size: 14px;
        padding: 0 !important;
        margin-bottom: 2.5% !important;
        max-width: 338px;
        width: 49%;
    }

    #all_wrap .content .menu-list li::before {
        left: 6% !important;
        top: 50% !important;
    }

    #all_wrap .content .menu-list li::after {
        width: 7px;
        height: 7px;
        right: 6%;
    }

    #all_wrap .content .menu-list .on-page {
        padding: 3% 5% 3% 8.5% !important;
    }

    #all_wrap .content .menu-list li a {
        max-width: 338px;
        padding: 7% 10% 7% 18% !important;
    }
}

@media only screen and (max-width: 454px) {
    #all_wrap .content .menu-list .on-page {
        padding: 7% 10% 7% 18% !important;
    }

    #all_wrap .content .menu-list li,
    #all_wrap .content .menu-list li a {
        max-width: none;
        width: 100%;
    }
}


/************************************************************/
/*　お問い合わせ&テーブル
/************************************************************/

/*プライバシーポリシー*/
#all_wrap .content .privacy_table {
    width: 100%;
    padding: 0;
    margin: 0;
    border-top: 1px solid #ccc !important;
    border-left: none !important;
    background: none !important;
    box-sizing: border-box !important;
}
#all_wrap .content .privacy_table tbody {
    padding: 0;
    margin: 0;
    border: none !important;
    background: none !important;
    box-sizing: border-box !important;
}
#all_wrap .content .privacy_table tr {
    padding: 0;
    margin: 0;
    border: none !important;
    background: none !important;
    box-sizing: border-box !important;
}
#all_wrap .content .privacy_table th {
    padding: 20px;
    margin: 0;
    border-right: none !important;
    border-bottom: 1px solid #ccc !important;
    background: #fff !important;
    box-sizing: border-box !important;
    font-weight: 600;
    vertical-align: middle;
    color: #222;
    font-size: 16px;
    line-height: 1.2em;
}
#all_wrap .content .privacy_table td {
    padding: 20px;
    margin: 0;
    border-right: none !important;
    border-bottom: 1px solid #ccc !important;
    border-width: 1px;
    background: none !important;
    box-sizing: border-box !important;
    color: #555;
    font-size: 14px;
    line-height: 1.4em;
    font-weight: 400;
}
#all_wrap .content .privacy_table tr:nth-child(odd) td {
    padding: 20px;
    margin: 0;
    border: none !important;
    border-right: none !important;
    border-bottom: 1px solid #ccc !important;
    border-width: 1px;
    background: none !important;
    box-sizing: border-box !important;
}
#all_wrap .content .privacy_table tr:nth-child(even) td {
    padding: 20px;
    margin: 0;
    border: none !important;
    border-right: none !important;
    border-bottom: 1px solid #ccc !important;
    border-width: 1px;
    background: none !important;
    box-sizing: border-box !important;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*プライバシーポリシー*/
    #all_wrap .content .privacy_table {
        width: 100%;
        padding: 0;
        margin: 0;
        border-top: 1px solid #ccc !important;
        border-left: none !important;
        background: none !important;
        box-sizing: border-box !important;
    }
    #all_wrap .content .privacy_table tbody {
        padding: 0;
        margin: 0;
        border: none !important;
        background: none !important;
        box-sizing: border-box !important;
    }
    #all_wrap .content .privacy_table tr {
        padding: 0;
        margin: 0;
        border: none !important;
        background: none !important;
        box-sizing: border-box !important;
    }
    #all_wrap .content .privacy_table th {
        padding: 10px 0 10px 10px;
        margin: 0;
        border-right: none !important;
        border-bottom: 1px solid #ccc !important;
        background: #fff !important;
        box-sizing: border-box !important;
        font-weight: 600;
        vertical-align: middle;
        color: #222;
        font-size: 14px;
        line-height: 1.2em;
    }
    #all_wrap .content .privacy_table td {
        padding: 10px;
        margin: 0;
        border-right: none !important;
        border-bottom: 1px solid #ccc !important;
        border-width: 1px;
        background: none !important;
        box-sizing: border-box !important;
        color: #555;
        font-size: 14px;
        line-height: 1.4em;
        font-weight: 400;
    }
    #all_wrap .content .privacy_table tr:nth-child(odd) td {
        padding: 10px;
        margin: 0;
        border: none !important;
        border-right: none !important;
        border-bottom: 1px solid #ccc !important;
        border-width: 1px;
        background: none !important;
        box-sizing: border-box !important;
    }
    #all_wrap .content .privacy_table tr:nth-child(even) td {
        padding: 20px;
        margin: 0;
        border: none !important;
        border-right: none !important;
        border-bottom: 1px solid #ccc !important;
        border-width: 1px;
        background: none !important;
        box-sizing: border-box !important;
    }
}

/*採用情報*/
#all_wrap .content .recruit_table {
    width: 100%;
    padding: 0;
    margin: 0;
    border-top: 1px solid #ccc !important;
    border-left: none !important;
    background: none !important;
    box-sizing: border-box !important;
}
#all_wrap .content .recruit_table tbody {
    padding: 0;
    margin: 0;
    border: none !important;
    background: none !important;
    box-sizing: border-box !important;
}
#all_wrap .content .recruit_table tr {
    padding: 0;
    margin: 0;
    border: none !important;
    background: none !important;
    box-sizing: border-box !important;
}
#all_wrap .content .recruit_table th {
    padding: 20px;
    margin: 0;
    border-right: none !important;
    border-bottom: 1px solid #ccc !important;
    background: #fff !important;
    box-sizing: border-box !important;
    font-weight: 600;
    vertical-align: middle;
    color: #222;
    font-size: 16px;
    line-height: 1.2em;
}
#all_wrap .content .recruit_table td {
    padding: 20px;
    margin: 0;
    border-right: none !important;
    border-bottom: 1px solid #ccc !important;
    border-width: 1px;
    background: none !important;
    box-sizing: border-box !important;
    color: #555;
    font-size: 14px;
    line-height: 1.4em;
    font-weight: 400;
}
#all_wrap .content .recruit_table tr:nth-child(odd) td {
    padding: 20px;
    margin: 0;
    border: none !important;
    border-right: none !important;
    border-bottom: 1px solid #ccc !important;
    border-width: 1px;
    background: none !important;
    box-sizing: border-box !important;
}
#all_wrap .content .recruit_table tr:nth-child(even) td {
    padding: 20px;
    margin: 0;
    border: none !important;
    border-right: none !important;
    border-bottom: 1px solid #ccc !important;
    border-width: 1px;
    background: none !important;
    box-sizing: border-box !important;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*採用情報*/
    #all_wrap .content .recruit_table {
        width: 100%;
        padding: 0;
        margin: 0;
        border-top: 1px solid #ccc !important;
        border-left: none !important;
        background: none !important;
        box-sizing: border-box !important;
    }
    #all_wrap .content .recruit_table tbody {
        padding: 0;
        margin: 0;
        border: none !important;
        background: none !important;
        box-sizing: border-box !important;
    }
    #all_wrap .content .recruit_table tr {
        padding: 0;
        margin: 0;
        border: none !important;
        background: none !important;
        box-sizing: border-box !important;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    #all_wrap .content .recruit_table th {
        width: 100%;
        padding: 10px;
        margin: 0;
        border-right: none !important;
        border-bottom: 1px solid #ccc !important;
        background: #fafafa !important;
        box-sizing: border-box !important;
        font-weight: bold;
        vertical-align: middle;
        color: #222;
        font-size: 14px;
        line-height: 1.2em;
        white-space: nowrap;
    }
    #all_wrap .content .recruit_table td {
        width: 100%;
        padding: 10px 10px 20px;
        margin: 0;
        border-right: none !important;
        border-bottom: 1px solid #ccc !important;
        border-width: 1px;
        background: none !important;
        box-sizing: border-box !important;
        color: #555;
        font-size: 14px;
        line-height: 1.4em;
        font-weight: 400;
    }
    #all_wrap .content .recruit_table tr:nth-child(odd) td {
        width: 100%;
        padding: 10px 10px 20px;
        margin: 0;
        border: none !important;
        border-right: none !important;
        border-bottom: 1px solid #ccc !important;
        border-width: 1px;
        background: none !important;
        box-sizing: border-box !important;
    }
    #all_wrap .content .recruit_table tr:nth-child(even) td {
        width: 100%;
        padding: 10px 10px 20px;
        margin: 0;
        border: none !important;
        border-right: none !important;
        border-bottom: 1px solid #ccc !important;
        border-width: 1px;
        background: none !important;
        box-sizing: border-box !important;
    }
}

/*検査結果*/
#all_wrap .content .report_table {
    width: 100%;
    padding: 0;
    margin: 10px auto 0;
    border-top: 1px solid rgba(0,0,0,0.1) !important;
    border-left: none !important;
    background: none !important;
    box-sizing: border-box !important;
}
#all_wrap .content .report_table tbody {
    padding: 0;
    margin: 0;
    border: none !important;
    background: none !important;
    box-sizing: border-box !important;
}
#all_wrap .content .report_table tr {
    padding: 0;
    margin: 0;
    border: none !important;
    background: none !important;
    box-sizing: border-box !important;
    flex-wrap: nowrap;
}
#all_wrap .content .report_table th {
    width: 20%;
    padding: 20px;
    margin: 0;
    border-right: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.1) !important;
    background: #fafafa !important;
    box-sizing: border-box !important;
    font-weight: 600;
    vertical-align: middle;
    color: #222;
    font-size: 16px;
    line-height: 1.2em;
    text-align: center;
}
#all_wrap .content .report_table td {
    padding: 20px;
    margin: 0;
    border-right: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.1) !important;
    border-width: 1px;
    background: none !important;
    box-sizing: border-box !important;
    color: #555;
    font-size: 14px;
    line-height: 1.4em;
    font-weight: 400;
}
#all_wrap .content .report_table tr:nth-child(odd) td {
    padding: 20px;
    margin: 0;
    border: none !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.1) !important;
    border-width: 1px;
    background: none !important;
    box-sizing: border-box !important;
}
#all_wrap .content .report_table tr:nth-child(even) td {
    padding: 20px;
    margin: 0;
    border: none !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.1) !important;
    border-width: 1px;
    background: none !important;
    box-sizing: border-box !important;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*検査結果*/
    #all_wrap .content .report_table {
        width: 100%;
        padding: 0;
        margin: 10px auto 0;
        border-top: 1px solid rgba(0,0,0,0.1) !important;
        border-left: none !important;
        background: none !important;
        box-sizing: border-box !important;
    }
    #all_wrap .content .report_table tbody {
        padding: 0;
        margin: 0;
        border: none !important;
        background: none !important;
        box-sizing: border-box !important;
    }
    #all_wrap .content .report_table tr {
        padding: 0;
        margin: 0;
        border: none !important;
        background: none !important;
        box-sizing: border-box !important;
        flex-wrap: nowrap;
    }
    #all_wrap .content .report_table th {
        padding: 15px;
        margin: 0;
        border-right: none !important;
        border-bottom: 1px solid rgba(0,0,0,0.1) !important;
        background: #fafafa !important;
        box-sizing: border-box !important;
        font-weight: 600;
        vertical-align: middle;
        color: #222;
        font-size: 12px;
        line-height: 1.2em;
        text-align: center;
    }
    #all_wrap .content .report_table td {
        padding: 15px;
        margin: 0;
        border-right: none !important;
        border-bottom: 1px solid rgba(0,0,0,0.1) !important;
        border-width: 1px;
        background: none !important;
        box-sizing: border-box !important;
        color: #555;
        font-size: 12px;
        line-height: 1.4em;
        font-weight: 400;
    }
    #all_wrap .content .report_table tr:nth-child(odd) td {
        padding: 15px;
        margin: 0;
        border: none !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(0,0,0,0.1) !important;
        border-width: 1px;
        background: none !important;
        box-sizing: border-box !important;
    }
    #all_wrap .content .report_table tr:nth-child(even) td {
        padding: 15px;
        margin: 0;
        border: none !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(0,0,0,0.1) !important;
        border-width: 1px;
        background: none !important;
        box-sizing: border-box !important;
    }
}

/*TablePress*/
#all_wrap .content .tablepress {
    width: 100%;
    padding: 0;
    margin: 0;
    border-top: 1px solid #ccc !important;
    border-left: 1px solid #ccc !important;
    background: none !important;
    box-sizing: border-box !important;
}
#all_wrap .content .tablepress tbody {
    padding: 0;
    margin: 0;
    border: none !important;
    background: none !important;
    box-sizing: border-box !important;
}
#all_wrap .content .tablepress tr {
    padding: 0;
    margin: 0;
    border: none !important;
    background: none !important;
    box-sizing: border-box !important;
}
#all_wrap .content .tablepress th {
    padding: 8px;
    margin: 0;
    border-right: 1px solid #ccc !important;
    border-bottom: 1px solid #ccc !important;
    background: #d9edf7 !important;
    box-sizing: border-box !important;
    font-weight: 500;
    vertical-align: middle;
    color: #222;
    font-size: 14px;
    line-height: 1.2em;
}
#all_wrap .content .tablepress td {
    padding: 8px;
    margin: 0;
    border-right: 1px solid #ccc !important;
    border-bottom: 1px solid #ccc !important;
    border-width: 1px;
    background: none !important;
    box-sizing: border-box !important;
    color: #555;
    font-size: 14px;
    line-height: 1.2em;
    font-weight: 400;
}
#all_wrap .content .tablepress tr:nth-child(odd) td {
    padding: 8px;
    margin: 0;
    border: none !important;
    border-right: 1px solid #ccc !important;
    border-bottom: 1px solid #ccc !important;
    border-width: 1px;
    background: none !important;
    box-sizing: border-box !important;
}
#all_wrap .content .tablepress tr:nth-child(even) td {
    padding: 8px;
    margin: 0;
    border: none !important;
    border-right: 1px solid #ccc !important;
    border-bottom: 1px solid #ccc !important;
    border-width: 1px;
    background: #f9f9f9 !important;
    box-sizing: border-box !important;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    .tablepress_wrap{
        overflow: auto;
        white-space: nowrap;
        margin-bottom: 20px;
    }
    .tablepress_wrap::-webkit-scrollbar{
        height: 5px;
    }
    .tablepress_wrap::-webkit-scrollbar-track{
        background: #F1F1F1;
    }
    .tablepress_wrap::-webkit-scrollbar-thumb {
        background: #BCBCBC;
    }
    /*TablePress*/
    #all_wrap .content .tablepress {
        width: 100%;
        padding: 0;
        margin: 0;
        border-top: 1px solid #ccc !important;
        border-left: 1px solid #ccc !important;
        background: none !important;
        box-sizing: border-box !important;
    }
    #all_wrap .content .tablepress tbody {
        padding: 0;
        margin: 0;
        border: none !important;
        background: none !important;
        box-sizing: border-box !important;
    }
    #all_wrap .content .tablepress tr {
        padding: 0;
        margin: 0;
        border: none !important;
        background: none !important;
        box-sizing: border-box !important;
    }
    #all_wrap .content .tablepress th {
        padding: 8px;
        margin: 0;
        border-right: 1px solid #ccc !important;
        border-bottom: 1px solid #ccc !important;
        background: #d9edf7 !important;
        box-sizing: border-box !important;
        font-weight: 500;
        vertical-align: middle;
        color: #222;
        font-size: 14px;
        line-height: 1.2em;
    }
    #all_wrap .content .tablepress td {
        padding: 8px;
        margin: 0;
        border-right: 1px solid #ccc !important;
        border-bottom: 1px solid #ccc !important;
        border-width: 1px;
        background: none !important;
        box-sizing: border-box !important;
        color: #555;
        font-size: 14px;
        line-height: 1.2em;
        font-weight: 400;
    }
    #all_wrap .content .tablepress tr:nth-child(odd) td {
        padding: 8px;
        margin: 0;
        border: none !important;
        border-right: 1px solid #ccc !important;
        border-bottom: 1px solid #ccc !important;
        border-width: 1px;
        background: none !important;
        box-sizing: border-box !important;
    }
    #all_wrap .content .tablepress tr:nth-child(even) td {
        padding: 8px;
        margin: 0;
        border: none !important;
        border-right: 1px solid #ccc !important;
        border-bottom: 1px solid #ccc !important;
        border-width: 1px;
        background: #f9f9f9 !important;
        box-sizing: border-box !important;
    }
}


/*お問い合わせフォーム*/
#all_wrap .l-wrapper #contactPage p.center {
    text-align: center;
    width: 90%;
    margin: 0 auto;
}
#all_wrap .l-wrapper table.table-contactform7 {
    border: none;
    background: none;
    padding: 0;
    margin: 0 auto 50px;
    width: 100%;
    max-width: 100%;
    border-top: 1px solid rgba(0,0,0,0.1);
}
#all_wrap .l-wrapper-full table.table-contactform7 {
    border: none;
    background: none;
    padding: 0;
    margin: 0 auto 50px;
    width: 100%;
    max-width: 1000px;
    border-top: 1px solid rgba(0,0,0,0.1);
}
#all_wrap .l-wrapper table.table-contactform7 tr,
#all_wrap .l-wrapper table.table-contactform7 tr:nth-of-type(odd),
#all_wrap .l-wrapper table.table-contactform7 tr:nth-of-type(even),
#all_wrap .l-wrapper-full table.table-contactform7 tr,
#all_wrap .l-wrapper-full table.table-contactform7 tr:nth-of-type(odd),
#all_wrap .l-wrapper-full table.table-contactform7 tr:nth-of-type(even){
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
}
#all_wrap .l-wrapper table.table-contactform7 th,
#all_wrap .l-wrapper-full table.table-contactform7 th {
    border: none;
    background: #fafafa;
    padding: 20px 20px;
    margin: 0;
    color: #222;
    font-size: 16px;
    line-height: 1.4em;
    font-style: normal;
    font-feature-settings: "palt";
    width: 35%;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-family: 'Noto Sans Japanese', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-feature-settings: "palt";
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
}
#all_wrap .l-wrapper table.table-contactform7 td,
#all_wrap .l-wrapper-full table.table-contactform7 td {
    width: 65%;
    border: none;
    background: none;
    padding: 20px 20px;
    margin: 0;
    color: #222;
    font-size: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
#all_wrap .l-wrapper table.table-contactform7 td small,
#all_wrap .l-wrapper-full table.table-contactform7 td small {
    display: block;
    width: 100%;
    padding: 0;
    margin: 5px auto 0;
    text-align: left;
    font-size: 0.7em;
    color: #555;
}
#all_wrap .l-wrapper table.table-contactform7 th .att,
#all_wrap .l-wrapper .att,
#all_wrap .l-wrapper-full .att {
    display: inline-block;
    padding: 5px 10px;
    margin: 0;
    background: #DE5D50;
    border-radius: 0;
    font-size: 12px;
    line-height: 1;
    color: #fff;
}
#all_wrap .l-wrapper table.table-contactform7 .cf7-harf,
#all_wrap .l-wrapper-full table.table-contactform7 .cf7-harf {
    border-right: 1px solid #fff;
}
#all_wrap .l-wrapper table.table-contactform7 input,
#all_wrap .l-wrapper-full table.table-contactform7 input {
    border-radius: 5px;
    border: 1px solid #c8c8c8;
    box-shadow: none;
    font-size: 1em;
    padding: 15px;
}
#all_wrap .l-wrapper table.table-contactform7 td.add span:first-of-type input,
#all_wrap .l-wrapper-full table.table-contactform7 td.add span:first-of-type input {
    margin: 0 0 10px;
}
#all_wrap .l-wrapper table.table-contactform7 input.wpcf7-text,
#all_wrap .l-wrapper-full table.table-contactform7 input.wpcf7-text {
    width: 70%;
    padding: 15px;
    margin: 0;
    border-radius: 5px;
    border: 1px solid #c8c8c8;
    box-shadow: none;
    font-family: 'Noto Sans Japanese', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-feature-settings: "palt";
    font-size: 0.8em;
    line-height: 1;
    background: #fff;
}
#all_wrap .l-wrapper table.table-contactform7 input.wpcf7-date,
#all_wrap .l-wrapper-full table.table-contactform7 input.wpcf7-date {
    padding: 9px;
    margin: 0;
    margin-right: 10px;
    font-size: 0.8em;
    background: #fafafa;
}
#all_wrap .l-wrapper table.table-contactform7 select.wpcf7-form-control.wpcf7-select,
#all_wrap .l-wrapper-full table.table-contactform7 select.wpcf7-form-control.wpcf7-select {
    width: 150px;
    height: 40px;
    line-height: 40px;
    padding: 10px;
    margin: 0;
    border-radius: 5px;
    border: 1px solid #c8c8c8;
    box-shadow: none;
    font-size: 0.8em;
    background: #fafafa;
}
#all_wrap .l-wrapper table.table-contactform7 input.your-naiyou,
#all_wrap .l-wrapper-full table.table-contactform7 input.your-naiyou {
    display: inline;
    width: auto;
}
#all_wrap .l-wrapper table.table-contactform7 label,
#all_wrap .l-wrapper-full table.table-contactform7 label {
    font-size: 0.8em;
    line-height: 1.2em;
}
#all_wrap .l-wrapper table.table-contactform7 .required-contactform7,
#all_wrap .l-wrapper-full table.table-contactform7 .required-contactform7 {
    background: #f44336;
    padding: 5px 10px;
    margin: 0 0 0 10px;
    border-radius: 0;
    display: inline-block;
    color: #fff;
    font-size: 10px;
    line-height: 1;
}
#all_wrap .l-wrapper table.table-contactform7 .wpcf7-list-item,
#all_wrap .l-wrapper-full table.table-contactform7 .wpcf7-list-item {
    padding: 15px;
    margin: 0 10px 10px 0;
    border: dashed 1px #CCCCCC;
    vertical-align: middle;
    line-height: 1;
    font-weight: 500;
    background: #fff;
}
#all_wrap .l-wrapper table.table-contactform7 .wpcf7-list-item input[type='radio'],
#all_wrap .l-wrapper-full table.table-contactform7 .wpcf7-list-item input[type='radio'] {
    top: 2px;
    position: relative;
}
#all_wrap .l-wrapper table.table-contactform7 .wpcf7-list-item input[type='checkbox'],
#all_wrap .l-wrapper-full table.table-contactform7 .wpcf7-list-item input[type='checkbox'] {
    top: 2px;
    position: relative;
    width: 14px;
    height: 14px;
    padding: 0;
}
#all_wrap .l-wrapper table.table-contactform7 textarea,
#all_wrap .l-wrapper-full table.table-contactform7 textarea {
    width: 100%;
    padding: 15px;
    margin: 0;
    border-radius: 5px;
    border: 1px solid #c8c8c8;
    box-shadow: none;
    font-size: 0.8em;
    line-height: 1;
    background: #fff;
}
#all_wrap .l-wrapper .txt_cent,
#all_wrap .l-wrapper-full .txt_cent {
    text-align: center;
}
#all_wrap .l-wrapper .txt_cent input[type="submit"],
#all_wrap .l-wrapper-full .txt_cent input[type="submit"] {
    -webkit-appearance: none;
}
#all_wrap .l-wrapper .txt_cent input,
#all_wrap .l-wrapper-full .txt_cent input {
    padding: 20px 100px;
    margin: 0 auto;
    display: inline-block;
    background: #D60000;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: 0.5s;
}
#all_wrap .l-wrapper .txt_cent input:hover,
#all_wrap .l-wrapper-full .txt_cent input:hover {
    transition: 0.5s;
    opacity: 0.8;
}

#all_wrap .wpcf7 .ajax-loader {
    display: none;
}

.privacy_txt {
    text-align: center;
    padding: 0;
    margin: 0 auto 40px;
}

#all_wrap #confirm {
    width: 100%;
    max-width: 1000px;
    padding: 50px 0;
    margin: 0 auto;
}
#all_wrap #confirm h3 {
    text-align: center;
    width: 100%;
    margin: 0 auto 10px;
}
#all_wrap #confirm .confirm_box {
    padding: 20px 30px;
    margin: 0;
    background: #fafafa;
    border-radius: 10px;
    border: 1px solid #f5f5f5;
}
#all_wrap #confirm input[type=checkbox] {
    transform: scale(1.5);
    margin-right: 10px;
}
#all_wrap .l-wrapper .txt_cent input[type="submit"]:disabled {
    background: #c8c8c8;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*お問い合わせフォーム*/
    #all_wrap .l-wrapper table.table-contactform7,
    #all_wrap .l-wrapper-full table.table-contactform7 {
        border: none;
        background: none;
        padding: 0;
        margin: 0 auto 20px;
        width: 100%;
        max-width: 100%;
    }
    #all_wrap .l-wrapper table.table-contactform7 tr,
    #all_wrap .l-wrapper table.table-contactform7 tr:nth-of-type(odd),
    #all_wrap .l-wrapper table.table-contactform7 tr:nth-of-type(even),
    #all_wrap .l-wrapper-full table.table-contactform7 tr,
    #all_wrap .l-wrapper-full table.table-contactform7 tr:nth-of-type(odd),
    #all_wrap .l-wrapper-full table.table-contactform7 tr:nth-of-type(even) {
        border: none;
        background: none;
        padding: 0;
        margin: 0;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    #all_wrap .l-wrapper table.table-contactform7 th,
    #all_wrap .l-wrapper-full table.table-contactform7 th {
        border-bottom: 1px solid rgba(0,0,0,0.05);
        box-shadow: none;
        background: #fafafa;
        padding: 15px 10px;
        margin: 0;
        color: #222;
        font-size: 14px;
        font-style: normal;
        font-feature-settings: "palt";
        width: 100%;
        min-width: 100%;
    }
    #all_wrap .l-wrapper table.table-contactform7 td,
    #all_wrap .l-wrapper-full table.table-contactform7 td {
        border-bottom: 1px solid rgba(0,0,0,0.05);
        box-shadow: 0 1px 0 rgba(255,255,255,1);
        background: #fff;
        padding: 15px 10px 30px;
        margin: 0;
        color: #222;
        font-size: 14px;
        width: 100%;
        min-width: 100%;
    }
    #all_wrap .l-wrapper table.table-contactform7 td.att,
    #all_wrap .l-wrapper-full table.table-contactform7 td.att {
        border-bottom: 1px dashed rgba(0,0,0,0.05);
        box-shadow: none;
        background: #fafafa;
        padding: 15px 10px;
        margin: 0;
        color: #222;
        font-size: 14px;
        font-style: normal;
        font-feature-settings: "palt";
        width: 30%;
        min-width: 30%;
        text-align: right;
    }
    #all_wrap .l-wrapper table.table-contactform7 input,
    #all_wrap .l-wrapper-full table.table-contactform7 input {
        border-radius: 3px;
        border: 1px solid #c8c8c8;
        box-shadow: none;
        font-size: 1em;
    }
    #all_wrap .l-wrapper table.table-contactform7 input.wpcf7-text,
    #all_wrap .l-wrapper-full table.table-contactform7 input.wpcf7-text {
        width: 100%;
        padding: 10px;
        margin: 0;
        border-radius: 3px;
        border: 1px solid #c8c8c8;
        box-shadow: none;
        font-size: 0.8em;
        line-height: 1;
        background: #fff;
        font-family: 'Noto Sans Japanese', sans-serif;
    }
    #all_wrap .l-wrapper table.table-contactform7 input.wpcf7-date,
    #all_wrap .l-wrapper-full table.table-contactform7 input.wpcf7-date {
        padding: 5px;
        margin: 0;
        margin-right: 10px;
        font-size: 0.8em;
        background: #fafafa;
        height: 38px;
        border-radius: 3px;
        border: 1px solid #c8c8c8;
        box-shadow: none;
        transform: translateY(-3px);
        -webkit-transform: translateY(-3px);
    }
    #all_wrap .l-wrapper table.table-contactform7 select.wpcf7-form-control.wpcf7-select,
    #all_wrap .l-wrapper-full table.table-contactform7 select.wpcf7-form-control.wpcf7-select {
        width: 150px;
        height: 40px;
        line-height: 40px;
        padding: 5px;
        margin: 0;
        border-radius: 3px;
        border: 1px solid #c8c8c8;
        box-shadow: none;
        font-size: 0.8em;
        background: #fff;
    }
    #all_wrap .l-wrapper table.table-contactform7 input.your-naiyou,
    #all_wrap .l-wrapper-full table.table-contactform7 input.your-naiyou {
        display: inline;
        width: auto;
    }
    #all_wrap .l-wrapper table.table-contactform7 label,
    #all_wrap .l-wrapper-full table.table-contactform7 label {
        font-size: 0.8em;
        line-height: 1.2em;
    }
    #all_wrap .l-wrapper table.table-contactform7 .required-contactform7,
    #all_wrap .l-wrapper-full table.table-contactform7 .required-contactform7 {
        border-radius: 0;
        background: #f44336;
        padding: 5px 5px;
        margin: 0 5px 0 0;
        display: inline-block;
        color: #fff;
        font-size: 0.7em;
        line-height: 1;
    }
    #all_wrap .l-wrapper table.table-contactform7 .wpcf7-list-item,
    #all_wrap .l-wrapper-full table.table-contactform7 .wpcf7-list-item {
        padding: 10px;
        margin: 0 10px 10px 0;
        border: dashed 1px #CCCCCC;
        vertical-align: middle;
        line-height: 1;
        background: #fff;
    }
    #all_wrap .l-wrapper table.table-contactform7 .wpcf7-list-item input[type='radio'],
    #all_wrap .l-wrapper-full table.table-contactform7 .wpcf7-list-item input[type='radio'] {
        top: 2px;
        position: relative;
    }
    #all_wrap .l-wrapper table.table-contactform7 textarea,
    #all_wrap .l-wrapper-full table.table-contactform7 textarea {
        width: 100%;
        padding: 10px;
        margin: 0;
        border-radius: 3px;
        border: 1px solid #c8c8c8;
        box-shadow: none;
        font-size: 0.8em;
        line-height: 1;
        background: #fff;
    }
    #all_wrap .l-wrapper .txt_cent,
    #all_wrap .l-wrapper-full .txt_cent {
        text-align: center;
    }
    #all_wrap .l-wrapper .txt_cent input[type="submit"],
    #all_wrap .l-wrapper-full .txt_cent input[type="submit"] {
        -webkit-appearance: none;
        border-radius: 5px;
    }
    #all_wrap .l-wrapper .txt_cent input,
    #all_wrap .l-wrapper-full .txt_cent input {
        padding: 20px 100px;
        margin: 0 auto;
        display: inline-block;
        border-radius: 5px;
        background: #D60000;
        border: none;
        color: #fff;
        cursor: pointer;
        transition: 0.5s;
    }
    #all_wrap .l-wrapper .txt_cent input:hover,
    #all_wrap .l-wrapper-full .txt_cent input:hover {
        transition: 0.5s;
        opacity: 0.8;
    }
    #all_wrap #confirm {
        width: 100%;
        max-width: 100%;
        padding: 20px 0;
        margin: 0 auto;
    }
    #all_wrap .wpcf7 .ajax-loader {
        display: none;
    }
}

/*表削除*/
#all_wrap .pageContents .content .tablenone,
#all_wrap .postContents .content .tablenone {
    padding: 0;
    margin: 0;
    border-top: none;
    border-bottom: none;
    border-left: none;
    border-right: none;
    border-radius: none;
    background: none;
    color: #222;
}
#all_wrap .pageContents .content .tablenone tbody,
#all_wrap .pageContents .content .tablenone th,
#all_wrap .pageContents .content .tablenone td,
#all_wrap .pageContents .content .tablenone tr,
#all_wrap .pageContents .content .tablenone tr:nth-child(odd) td,
#all_wrap .pageContents .content .tablenone tr:nth-child(even) td {
    padding: 0;
    margin: 0;
    border-top: none;
    border-bottom: none;
    border-left: none;
    border-right: none;
    border-radius: none;
    background: none;
    color: #222;
}
#all_wrap .postContents .content .tablenone tbody,
#all_wrap .postContents .content .tablenone th,
#all_wrap .postContents .content .tablenone td,
#all_wrap .postContents .content .tablenone tr,
#all_wrap .postContents .content .tablenone tr:nth-child(odd) td,
#all_wrap .postContents .content .tablenone tr:nth-child(even) td {
    padding: 0;
    margin: 0;
    border-top: none;
    border-bottom: none;
    border-left: none;
    border-right: none;
    border-radius: none;
    background: none;
    color: #222;
}


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    
}



/************************************************************/
/*　お問い合わせ&テーブル
/************************************************************/

/*表*/
#all_wrap .l-wrapper-single .pageContents table,
#all_wrap .l-wrapper-single .postContents table{
    overflow: hidden;
    table-layout: fixed;
    border: none;
    background: #fff;
    padding: 50px;
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
}
#all_wrap .l-wrapper-single .pageContents table tbody tr:nth-of-type(odd),
#all_wrap .l-wrapper-single .pageContents table tbody tr,
#all_wrap .l-wrapper-single .content table tr:nth-child(odd) td,
#all_wrap .l-wrapper-single .postContents table tbody tr:nth-of-type(odd),
#all_wrap .l-wrapper-single .postContents table tbody tr {
    background: #ffffff;
}
#all_wrap .l-wrapper-single .pageContents table th,
#all_wrap .l-wrapper-single .postContents table th {
    font-style: normal;
    font-feature-settings: "palt";
    border: none;
    border-bottom: none;
    vertical-align: inherit;
    background: #fff;
    color: #222;
    padding: 20px;
    margin: 0;
    border-bottom: 1px dashed rgba(0,0,0,0.2);
    box-shadow: 0 1px 0 rgba(255,255,255,1);
    width: 20%;
    font-size: 16px;
}
#all_wrap .l-wrapper-single .pageContents table td,
#all_wrap .l-wrapper-single .postContents table td {
    border: none;
    background: #fff;
    vertical-align: inherit;
    border-bottom: none;
    padding: 20px;
    margin: 0;
    border-bottom: 1px dashed rgba(0,0,0,0.2);
    box-shadow: 0 1px 0 rgba(255,255,255,1);
    font-size: 16px;
}


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*表*/
    #all_wrap .l-wrapper-single .pageContents table,
    #all_wrap .l-wrapper-single .postContents table{
        overflow: hidden;
        table-layout: fixed;
        border: none;
        background: #fff;
        padding: 0;
        width: 90%;
        max-width: 90%;
        margin: 0 auto;
    }
    #all_wrap .l-wrapper-single .pageContents table tbody tr:nth-of-type(odd),
    #all_wrap .l-wrapper-single .pageContents table tbody tr,
    #all_wrap .l-wrapper-single .content table tr:nth-child(odd) td,
    #all_wrap .l-wrapper-single .postContents table tbody tr:nth-of-type(odd),
    #all_wrap .l-wrapper-single .postContents table tbody tr {
        background: #ffffff;
    }
    #all_wrap .l-wrapper-single .pageContents table th,
    #all_wrap .l-wrapper-single .postContents table th {
        font-style: normal;
        font-feature-settings: "palt";
        border: none;
        border-bottom: none;
        vertical-align: inherit;
        background: #fafafa;
        color: #222;
        padding: 10px;
        margin: 0;
        border-bottom: 1px dashed rgba(0,0,0,0.2);
        box-shadow: 0 1px 0 rgba(255,255,255,1);
        width: 100%;
        min-width: 100%;
        font-size: 14px;
        display: block;
    }
    #all_wrap .l-wrapper-single .pageContents table td,
    #all_wrap .l-wrapper-single .postContents table td {
        border: none;
        background: #fff;
        vertical-align: inherit;
        border-bottom: none;
        padding: 20px 10px;
        margin: 0;
        border-bottom: 1px dashed rgba(0,0,0,0.2);
        box-shadow: 0 1px 0 rgba(255,255,255,1);
        font-size: 14px;
        width: 100%;
        min-width: 100%;
        display: block;
    }
}


/************************************************************/
/*　Google Map
/************************************************************/
.google-maps {
    position: relative;
    padding-bottom: 30%;
    height: 0;
    overflow: hidden;
}
.google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}
.access_info p {
    font-size: 1.1em;
    line-height: 2em;
    margin-bottom: 20px;
    text-align: center;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    .access_info p {
        width: 90%;
        padding: 0;
        margin: 0 auto;
        font-size: 1.1em;
        line-height: 2em;
        margin-bottom: 20px;
        text-align: center;
    }
    .top_gmap iframe {
        height: 200px;
    }
}



/************************************************************/
/*　全体
/************************************************************/


/************************************************************/
/*　サイトマップ
/************************************************************/
.l-wrapper .sitemap ul {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
}
.l-wrapper .sitemap ul li {
    width: 100%;
    padding: 0;
    margin: 0;
    background: none;
    list-style: none;
}
.l-wrapper .sitemap ul li:nth-child(2n){
    background: none;
}
.l-wrapper .sitemap ul li:hover {
    background: none;
}
.l-wrapper .sitemap ul li:before,
.l-wrapper .sitemap ul li:after {
    display: none;
}
.l-wrapper .sitemap ul li a {
    display: block;
    padding: 20px 20px 20px 20px;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    position: relative;
    transition: 0.5s;
    color: #272727;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.l-wrapper .sitemap ul li a:hover {
    transition: 0.5s;
    color: #272727;
}
.l-wrapper .sitemap ul li a::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -3px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #272727;
    border-right: 1px solid #272727;
    transform: rotate(45deg);
    transition: ease 0.2s;
}
.l-wrapper .sitemap ul li a::after {
    display: block;
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: #272727;
    opacity: 0;
    overflow: hidden;
}
.l-wrapper .sitemap ul li a:hover::after {
    display: block;
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #272727;
    opacity: 1;
    transition: 0.2s cubic-bezier(0.55, 0.05, 0.22, 0.99);
    transform-origin: left;
}
.l-wrapper .sitemap ul li:hover a::before {
    border-top: 1px solid #272727;
    border-right: 1px solid #272727;
    right: 15px;
}
.l-wrapper .sitemap ul li ul.children {
    width: 100%;
    padding: 5px 0;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
}
.l-wrapper .sitemap ul li ul.sub-menu li {
    width: 100%;
    padding: 0 0 0 20px;
    margin: 0;
    margin-bottom: 0;
    background: none;
    border-bottom: none;
    list-style: none;
}
.l-wrapper .sitemap ul li ul.sub-menu li a {
    display: block;
    padding: 10px 0;
    margin: 0;
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    position: relative;
    transition: 0.5s;
}
.l-wrapper .sitemap ul li ul.sub-menu li a:hover {
    background: none;
    transition: 0.5s;
    color: #272727;
}
.l-wrapper .sitemap ul li ul.sub-menu li a::before {
    content: '-';
    display: inline-block;
    position: static;
    padding: 0;
    margin: 0 10px 0 0;
    border: none;
    transform: rotate(0deg);
}


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    .l-wrapper-full .sitemap ul {
        width: 90%;
        max-width: 90%;
        padding: 0;
        margin: 0 auto 50px;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        list-style: none;
    }
    .sitemap {
        width: 100%;
        padding: 0;
        margin: 0 auto;
    }
    .sitemap ul {
        width: 90%;
        padding: 0;
        margin: 0 auto;
    }
    .sitemap ul li {
        width:100%;
    }
    .l-wrapper .sitemap ul li a {
        font-size: 14px;
        padding: 10px;
    }
}

/*スマホ改行
------------------------------------------------------------*/
	
.pc { display:block; }
.sp { display:none; }
@media screen and (max-width: 768px){   
  .pc { display:none; }
  .sp { display:block; }
}


/************************************************************/
/*　本文ギャラリー
/************************************************************/
#all_wrap .content .gallery {
    width: 80%;
    padding: 0;
    margin: 0 auto 100px;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#all_wrap .content .gallery dl {
    width: 31%;
    padding: 0;
    margin: 0 0 30px;
}
#all_wrap .content .gallery dt {
    padding: 5px 0;
    margin: 0;
    text-align: center;
}
#all_wrap .content .gallery dd {
    padding: 0;
    margin: 0;
    text-align: center;
}
#all_wrap .content .gallery dl img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap .content .gallery {
        width: 100%;
        padding: 0;
        margin: 0 auto 50px;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    #all_wrap .content .gallery dl {
        width: 48%;
        padding: 0;
        margin: 0 0 20px;
    }
    #all_wrap .content .gallery dt {
        padding: 5px 0;
        margin: 0;
        text-align: center;
    }
    #all_wrap .content .gallery dd {
        padding: 0;
        margin: 0;
        text-align: center;
    }
    #all_wrap .content .gallery dl img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
    }
}

/************************************************************/
/*　Youtube
/************************************************************/
#all_wrap .l-wrapper .youtubeBox {
    width:860px;              /*横幅いっぱいにwidthを指定*/
    padding-bottom: 56.25%;  /*高さをpaddingで指定(16:9)*/
    height:0px;              /*高さはpaddingで指定するためheightは0に*/
    position: relative;
    margin: 0 auto;
}
#all_wrap .l-wrapper .youtubeBox > iframe {
    position: static;
    top: auto;
    left: auto;
    width: 860px;
    height: 500px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap .l-wrapper .youtubeBox {
        width:100%;              /*横幅いっぱいにwidthを指定*/
        padding-bottom: 56.25%;  /*高さをpaddingで指定(16:9)*/
        height:0px;              /*高さはpaddingで指定するためheightは0に*/
        position: relative;
    }
    #all_wrap .l-wrapper .youtubeBox > iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

/************************************************************/
/*　記事詳細
/************************************************************/

/*タグ*/
#all_wrap .singleTags {
    width: 100%;
    padding: 0 0 20px;
    margin: 0 auto 50px;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
#all_wrap .singleTags > span {
    display: inline-block;
    padding: 0;
    margin: 0 5px 5px 0;
}
#all_wrap .singleTags > span a {
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    font-size: 11px !important;
    line-height: 1em !important;
    color: #272727;
    padding: 5px 10px;
    margin: 0;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 20px;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt" 1;
    transition: all 0.5s ease;
}
#all_wrap .singleTags > span a::before {
    content: '';
    display: block;
    width: 11px;
    height: 11px;
    padding: 0;
    margin: 0 5px 0 0 ;
    background: url('https://homepage.simple-alpha.com/wp-content/themes/homepage/img/svg/tag.svg') no-repeat;
    background-size: 11px;
    background-position: top;
}
#all_wrap .singleTags > span a:hover {
    color: #005491;
    background: #FFE2C6;
    border: 1px solid #005491;
    transition: all 0.5s ease;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap .singleTags {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        display: -webkit-flex;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

/*日付*/
#all_wrap span.singleDate {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0 auto 10px;
    background: none;
    color: #626F77;
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    line-height: 1;
}

/*目次*/
#all_wrap .l-wrapper .pageContents .content .toc p,
#all_wrap .l-wrapper .postContents .content .toc p {
    padding: 0;
    margin: 0;
}
.toc {
    position: relative;
    background: #f7f7f7;
    padding: 20px 30px 20px;
    word-break: break-all;
    word-wrap: break-word;
    border: 1px solid #ececec;
    border-radius: 10px;
    transition: all 0.5s ease;
}
#all_wrap .l-wrapper .pageContents .content .toc-title,
#all_wrap .l-wrapper .postContents .content .toc-title {
    text-align: center;
    font-size: 18px;
    margin: 0 auto;
    font-weight: bold;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
}
#all_wrap .l-wrapper .content .toc-title span.dot {
    position: relative;
    width: 9px;
    height: 3px;
    padding: 0;
    margin: 0 10px;
}
#all_wrap .l-wrapper .content .toc-title span.dot::before {
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #FBCB00;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
}
#all_wrap .l-wrapper .content .toc-title span.dot::after {
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #005491;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
}
#all_wrap .l-wrapper .pageContents .content .toc-toggle,
#all_wrap .l-wrapper .postContents .content .toc-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    margin: 0 auto;
}
#all_wrap .l-wrapper .pageContents .content .toc-toggle a,
#all_wrap .l-wrapper .postContents .content .toc-toggle a {
    padding: 5px 10px;
    border: 1px solid #ececec;
    background: #fff;
    border-radius: 20px;
    font-size: 11px;
    line-height: 1;
    font-weight: 400;
    color: #272727;
}
#all_wrap .l-wrapper .pageContents .content ul.toc-list,
#all_wrap .l-wrapper .postContents .content ul.toc-list {
    margin-top: 20px;
    padding: 0;
    list-style: none;
    line-height: 1.7;
    transition: all 0.5s ease;
}
#all_wrap .l-wrapper .pageContents .content ul.toc-list li,
#all_wrap .l-wrapper .postContents .content ul.toc-list li {
    padding: 0;
    margin: 0 auto 30px;
}
#all_wrap .l-wrapper .pageContents .content ul.toc-list li::before,
#all_wrap .l-wrapper .postContents .content ul.toc-list li::before {
    display: none;
}
#all_wrap .l-wrapper .pageContents .content ul.toc-list li:last-child,
#all_wrap .l-wrapper .postContents .content ul.toc-list li:last-child {
    padding: 0;
    margin: 0 auto;
}
#all_wrap .toc-list li::before {
    display: none;
}
.toc-list ul {
    list-style: none;
}
#all_wrap .l-wrapper .pageContents .content ul.toc-list li a,
#all_wrap .l-wrapper .postContents .content ul.toc-list li a {
    font-size: 12px;
    line-height: 1.2em;
    font-weight: 400;
    font-style: normal;
    color: #272727;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    transition: all 0.5s ease;
}
#all_wrap .l-wrapper .pageContents .content ul.toc-list > li > a,
#all_wrap .l-wrapper .postContents .content ul.toc-list > li > a {
    font-size: 15px;
    line-height: 1.2em;
    font-weight: 600;
    font-style: normal;
    color: #272727;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    transition: all 0.5s ease;
}
#all_wrap .l-wrapper .pageContents .content ul.toc-list li a:hover,
#all_wrap .l-wrapper .postContents .content ul.toc-list li a:hover {
    color: #005491;
    transition: all 0.5s ease;
}
.contentstable-number {
    display: inline-block;
    padding: 5px;
    margin: 0;
    margin-right: 5px;
    border: 1px solid #ececec;
    background: #fff;
    color: #272727;
    white-space: nowrap;
}
#all_wrap .l-wrapper .pageContents .content ul.toc-list li ul,
#all_wrap .l-wrapper .postContents .content ul.toc-list li ul {
    margin: 10px 0 0 10px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    .toc {
        position: relative;
        background: #f7f7f7;
        padding: 20px 30px 20px;
        word-break: break-all;
        word-wrap: break-word;
        border: 1px solid #ececec;
        border-radius: 5px;
        transition: all 0.5s ease;
    }
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    .social-bottom {
        width: 90%;
        margin: 0 auto;
    }
}

/*関連記事*/
#all_wrap .related__list {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
#all_wrap .related__list li.related__item {
    width: 49%;
    border: 1px solid rgba(0,0,0,.1);
    padding: 20px;
    margin: 0 0 20px;
}
#all_wrap .related__list li.related__item .eyecatch {
    margin: 0;
}
#all_wrap .related__list li.related__item .dateList {
    margin: 0 auto 10px;
}
#all_wrap .related__list li.related__item h3.heading-secondary {
    font-size: 1em;
}
#all_wrap .related__list li.related__item h3.heading-secondary a {
    transition: 0.5s;
}
#all_wrap .related__list li.related__item h3.heading-secondary a:hover {
    transition: 0.5s;
    color: #165e83;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap .related > h2 {
        width: 90%;
        margin: 0 auto 10px;
    }
    #all_wrap .related > p.related__contents {
        width: 90%;
        margin: 0 auto;
    }
    #all_wrap .related__list li.related__item {
        width: 100%;
        border: 1px solid rgba(0,0,0,.1);
        padding: 20px;
        margin: 0 0 10px;
    }
}

/************************************************************/
/*　ブログ　詳細＆サイドバー 
/************************************************************/


/*前後の記事*/
#all_wrap .prevNext {
    width: 100%;
    padding: 0;
    margin: 0 auto;
}
#all_wrap .prevNext__pop {
    background-color: #005491;
}
#all_wrap .eyecatch {
    background: #000;
}
#all_wrap .heading-secondary {
    color: #fff;
}
#all_wrap .prevNext__text {
    padding: 0;
    margin: 0;
    color: #fff;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*前後の記事*/
    #all_wrap .prevNext {
        width: 90%;
        padding: 0;
        margin: 0 auto;
    }
}

/*プロフィール*/
#all_wrap .profile {
    border: none;
    margin-top: 0;
    padding: 20px;
    background: #000;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}
#all_wrap .profile__text {
    background: none;
    font-size: 16px;
    padding: 0 0 0 13px;
    margin-bottom: 15px;
    margin-top: 40px;
    border-left: 2px solid #d3c8a8;
    font-style: italic;
    text-align: left;
    color: #d3c8a8;
}
#all_wrap .profile__contents {
    width: 80%;
    padding: 0;
    margin: 0;
}
#all_wrap .profile__name {
    color: #d3c8a8;
    font-size: 19px;
    line-height: 1.4em;
    font-style: italic;
    padding: 0 0 10px;
    margin: 0 auto 10px;
    border-bottom: 1px solid #d3c8a8;
}
#all_wrap .profile__author {
    width: 15%;
    text-align: left;
    padding: 0;
    margin: 0 20px 0 0;
}
#all_wrap .profile__author img {
    width: 100%;
    height: auto;
    margin: 0;
}
#all_wrap .profile__list {
    display: none;
}
#all_wrap .profile__description {
    padding: 0;
    margin: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*プロフィール*/
    #all_wrap .profile {
        border: none;
        margin-top: 0;
        padding: 20px;
        background: #000;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    #all_wrap .profile__text {
        background: none;
        font-size: 16px;
        padding: 0 0 0 13px;
        margin-bottom: 15px;
        margin-top: 40px;
        border-left: 2px solid #d3c8a8;
        font-style: italic;
        text-align: left;
        color: #d3c8a8;
    }
    #all_wrap .profile__contents {
        width: 80%;
        padding: 0;
        margin: 0;
    }
    #all_wrap .profile__name {
        color: #d3c8a8;
        font-size: 19px;
        line-height: 1.4em;
        font-style: italic;
        padding: 0 0 10px;
        margin: 0 auto 10px;
        border-bottom: 1px solid #d3c8a8;
    }
    #all_wrap .profile__author {
        width: 15%;
        text-align: left;
        padding: 0;
        margin: 0 0 0 0;
    }
    #all_wrap .profile__author img {
        width: 100%;
        height: auto;
        margin: 0;
    }
    #all_wrap .profile__list {
        display: none;
    }
    #all_wrap .profile__description {
        padding: 0;
        margin: 0;
    }
}


/************************************************************/
/*　ページ形成
/************************************************************/



/************************************************************/
/*　トップページ ミッション
/************************************************************/
#topMission {
    width: 100%;
    padding: 80px 0;
    margin: 0 auto;
    background: url('https://alpha0702.xsrv.jp/img/bg01.png');
    background-size: 100%;
    background-position: top center;
    position: relative;
}
.topMissionWrap {
    width: 100%;
    max-width: calc(100% - 200px);
    padding: 0;
    margin: 0 auto 130px;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}
#topMission .topMissionWrap > .obj {
    width: 20%;
    max-width: 250px;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: -30px;
    right: 40%;
    z-index: 2;
}
#topMission .topMissionWrap > .obj img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}
#topMission .topMissionWrap > figure {
    width: 48%;
    max-width: 600px;
    padding: 0;
    margin: 0;
    text-align: center;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    order: 0;
}
#topMission .topMissionWrap > figure::before {
    content: '';
    display: block;
    padding-top: 90%;
}
#topMission .topMissionWrap > figure img {
    width: auto;
    height: 100%;
    padding: 0;
    margin: 0;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}
#topMission .topMissionWrap > .topMissionInfo {
    width: 48%;
    padding: 0;
    margin: 0;
    order: 1;
}
#topMission .topMissionWrap > .topMissionInfo > strong {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0 auto 30px;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    color: #005491;
    font-size: 17px;
    line-height: 1em;
    white-space: nowrap;
}
#topMission .topMissionWrap > .topMissionInfo > strong::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    padding: 0;
    margin: 0 0 0 20px;
    background: linear-gradient(to right, rgba(0,84,145,1) 0, rgba(0,84,145,0) 50%);
}
#all_wrap #topMission .topMissionWrap > .topMissionInfo > h2 {
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    color: #262626;
    font-size: 30px;
    line-height: 1.4em;
    padding: 0;
    margin: 0 auto 30px;
}
#all_wrap #topMission .topMissionWrap > .topMissionInfo > p {
    padding: 0;
    margin: 0 auto 30px;
    text-align: justify;
    text-justify: inter-ideograph;
}
#all_wrap .tagList {
    width: 100%;
    padding: 0;
    margin: 0 auto 20px;
    list-style: none;
}
#all_wrap .tagList > li {
    display: inline-block;
    padding: 0;
    margin: 0 5px 10px 0;
}
#all_wrap .tagList > li a {
    display: block;
    padding: 9px 20px 10px;
    margin: 0;
    background: #F2F5F7;
    border: 1px solid #005491;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    color: #005491;
    text-align: center;
    transition: all 0.5s ease;
}
#all_wrap .tagList > li a:hover {
    background: #005491;
    color: #fff;
    transition: all 0.5s ease;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #topMission {
        width: 100%;
        padding: 40px 0;
        margin: 0 auto;
        background: url('https://alpha0702.xsrv.jp/img/bg01.png');
        background-size: 100%;
        background-position: top center;
        position: relative;
        overflow: hidden;
    }
    .topMissionWrap {
        width: 90%;
        max-width: 90%;
        padding: 0;
        margin: 0 auto 80px;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: wrap;
        position: relative;
    }
    #topMission .topMissionWrap > .obj {
        width: 50%;
        max-width: 50%;
        padding: 0;
        margin: 0;
        position: absolute;
        bottom: -30px;
        right: unset;
        left: -30px;
        z-index: 2;
    }
    #topMission .topMissionWrap > .obj img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
    }
    #topMission .topMissionWrap > figure {
        width: 100%;
        max-width: 100;
        padding: 0;
        margin: 0 auto 20px;
        text-align: center;
        overflow: hidden;
        position: relative;
        border-radius: 10px;
        order: 0;
    }
    #topMission .topMissionWrap > figure::before {
        content: '';
        display: block;
        padding-top: 90%;
    }
    #topMission .topMissionWrap > figure img {
        width: auto;
        height: 100%;
        padding: 0;
        margin: 0;
        object-fit: cover;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
    }
    #topMission .topMissionWrap > .topMissionInfo {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        order: 1;
    }
    #topMission .topMissionWrap > .topMissionInfo > strong {
        display: block;
        width: 100%;
        padding: 0;
        margin: 0 auto 10px;
        display: flex;
        display: -webkit-flex;
        justify-content: flex-start;
        align-content: center;
        align-items: center;
        flex-wrap: nowrap;
        font-family: ten-mincho, serif;
        font-style: normal;
        font-weight: 400;
        color: #005491;
        font-size: 14px;
        line-height: 1em;
        white-space: nowrap;
    }
    #topMission .topMissionWrap > .topMissionInfo > strong::after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        padding: 0;
        margin: 0 0 0 10px;
        background: linear-gradient(to right, rgba(0,84,145,1) 0, rgba(0,84,145,0) 50%);
    }
    #all_wrap #topMission .topMissionWrap > .topMissionInfo > h2 {
        font-family: ten-mincho, serif;
        font-style: normal;
        font-weight: 400;
        color: #262626;
        font-size: 18px;
        line-height: 1.4em;
        padding: 0;
        margin: 0 auto 20px;
    }
    #all_wrap #topMission .topMissionWrap > .topMissionInfo > p {
        padding: 0;
        margin: 0 auto 20px;
        text-align: justify;
        text-justify: inter-ideograph;
    }
    #all_wrap .tagList {
        width: 100%;
        padding: 0;
        margin: 0 auto 10px;
        list-style: none;
    }
    #all_wrap .tagList > li {
        display: inline-block;
        padding: 0;
        margin: 0 5px 10px 0;
    }
    #all_wrap .tagList > li a {
        display: block;
        padding: 9px 10px 10px;
        margin: 0;
        background: #F2F5F7;
        border: 1px solid #005491;
        border-radius: 20px;
        font-size: 10px;
        font-weight: 400;
        line-height: 1;
        color: #005491;
        text-align: center;
        transition: all 0.5s ease;
    }
    #all_wrap .tagList > li a:hover {
        background: #005491;
        color: #fff;
        transition: all 0.5s ease;
    }
}


/************************************************************/
/*　トップページ プロダクト
/************************************************************/
.topProductWrap {
    width: 100%;
    max-width: calc(100% - 200px);
    padding: 0;
    margin: 0 auto;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}
#topMission .topProductWrap > .obj {
    width: 20%;
    max-width: 250px;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: -30px;
    right: 40%;
    z-index: 2;
}
#topMission .topProductWrap > .obj img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}
#topMission .topProductWrap > figure {
    width: 48%;
    max-width: 600px;
    padding: 0;
    margin: 0;
    text-align: center;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    order: 1;
}
#topMission .topProductWrap > figure::before {
    content: '';
    display: block;
    padding-top: 90%;
}
#topMission .topProductWrap > figure img {
    width: auto;
    height: 100%;
    padding: 0;
    margin: 0;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}
#topMission .topProductWrap > .topProductInfo {
    width: 48%;
    padding: 0;
    margin: 0;
    order: 0;
}
#topMission .topProductWrap > .topProductInfo > strong {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0 auto 30px;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    color: #005491;
    font-size: 17px;
    line-height: 1em;
    white-space: nowrap;
}
#topMission .topProductWrap > .topProductInfo > strong::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    padding: 0;
    margin: 0 0 0 20px;
    background: linear-gradient(to right, rgba(0,84,145,1) 0, rgba(0,84,145,0) 50%);
}
#all_wrap .topProductWrap > .topProductInfo > h2 {
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    color: #262626;
    font-size: 30px;
    line-height: 1.4em;
    padding: 0;
    margin: 0 auto 30px;
}
#all_wrap .topProductWrap > .topProductInfo > p {
    padding: 0;
    margin: 0 auto 30px;
    text-align: justify;
    text-justify: inter-ideograph;
}
#all_wrap .tagList {
    width: 100%;
    padding: 0;
    margin: 0 auto 20px;
    list-style: none;
}
#all_wrap .tagList > li {
    display: inline-block;
    padding: 0;
    margin: 0 5px 10px 0;
}
#all_wrap .tagList > li a {
    display: block;
    padding: 9px 20px 10px;
    margin: 0;
    background: #F2F5F7;
    border: 1px solid #005491;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    color: #005491;
    text-align: center;
    transition: all 0.5s ease;
}
#all_wrap .tagList > li a:hover {
    background: #005491;
    color: #fff;
    transition: all 0.5s ease;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    .topProductWrap {
        width: 90%;
        max-width: 90%;
        padding: 0;
        margin: 0 auto;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: wrap;
        position: relative;
    }
    #topMission .topProductWrap > .obj {
        width: 50%;
        max-width: 50%;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 260px;
        bottom: unset;
        right: -30px;
        left: unset;
        z-index: 2;
    }
    #topMission .topProductWrap > .obj img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
    }
    #topMission .topProductWrap > figure {
        width: 100%;
        max-width: 100;
        padding: 0;
        margin: 0 auto 20px;
        text-align: center;
        overflow: hidden;
        position: relative;
        border-radius: 10px;
        order: 0;
    }
    #topMission .topProductWrap > figure::before {
        content: '';
        display: block;
        padding-top: 90%;
    }
    #topMission .topProductWrap > figure img {
        width: auto;
        height: 100%;
        padding: 0;
        margin: 0;
        object-fit: cover;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
    }
    #topMission .topProductWrap > .topProductInfo {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        order: 1;
    }
    #topMission .topProductWrap > .topProductInfo > strong {
        display: block;
        width: 100%;
        padding: 0;
        margin: 0 auto 10px;
        display: flex;
        display: -webkit-flex;
        justify-content: flex-start;
        align-content: center;
        align-items: center;
        flex-wrap: nowrap;
        font-family: ten-mincho, serif;
        font-style: normal;
        font-weight: 400;
        color: #005491;
        font-size: 14px;
        line-height: 1em;
        white-space: nowrap;
    }
    #topMission .topProductWrap > .topProductInfo > strong::after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        padding: 0;
        margin: 0 0 0 10px;
        background: linear-gradient(to right, rgba(0,84,145,1) 0, rgba(0,84,145,0) 50%);
    }
    #all_wrap .topProductWrap > .topProductInfo > h2 {
        font-family: ten-mincho, serif;
        font-style: normal;
        font-weight: 400;
        color: #262626;
        font-size: 18px;
        line-height: 1.4em;
        padding: 0;
        margin: 0 auto 20px;
    }
    #all_wrap .topProductWrap > .topProductInfo > p {
        padding: 0;
        margin: 0 auto 20px;
        text-align: justify;
        text-justify: inter-ideograph;
    }
    #all_wrap .tagList {
        width: 100%;
        padding: 0;
        margin: 0 auto 10px;
        list-style: none;
    }
    #all_wrap .tagList > li {
        display: inline-block;
        padding: 0;
        margin: 0 5px 10px 0;
    }
    #all_wrap .tagList > li a {
        display: block;
        padding: 9px 10px 10px;
        margin: 0;
        background: #F2F5F7;
        border: 1px solid #005491;
        border-radius: 20px;
        font-size: 10px;
        font-weight: 400;
        line-height: 1;
        color: #005491;
        text-align: center;
        transition: all 0.5s ease;
    }
    #all_wrap .tagList > li a:hover {
        background: #005491;
        color: #fff;
        transition: all 0.5s ease;
    }
}

/************************************************************/
/*　トップページ コンテンツ
/************************************************************/
#topContents {
    width: 100%;
    padding: 80px 0 0;
    margin: 0 auto;
    background: #fff;
    position: relative;
}
#topContents > strong {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0 auto 5px;
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    color: #005491;
    font-size: 17px;
    line-height: 1em;
    white-space: nowrap;
}
#topContents > h2 {
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    color: #262626;
    font-size: 30px;
    line-height: 1.4em;
    letter-spacing: 0.2em;
    padding: 0;
    margin: 0 auto 30px;
    text-align: center;
}
#topContents > .topContentsList {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#topContents > .topContentsList > li {
    width: calc(100% / 3);
    padding: 0;
    margin: 0 0 2px;
    position: relative;
    box-sizing: border-box;
}
#topContents > .topContentsList > li:nth-child(2),
#topContents > .topContentsList > li:nth-child(5),
#topContents > .topContentsList > li:nth-child(8),
#topContents > .topContentsList > li:nth-child(11) {
    width: calc(100% / 3);
    padding: 0;
    margin: 0 0 2px;
    position: relative;
    box-sizing: border-box;
}
#topContents > .topContentsList > li::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #001F36;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    transition: all 0.5s ease;
}
#topContents > .topContentsList > li:hover::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #001F36;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    transition: all 0.5s ease;
}
#topContents > .topContentsList > li::after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    padding: 0;
    margin: 0;
    background: linear-gradient(90deg,#005491 0%,#005491 50%,#D60000 50%,#D60000 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 12;
}
#topContents > .topContentsList > li > a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 11;
}
#topContents > .topContentsList > li:nth-child(2)::after,
#topContents > .topContentsList > li:nth-child(5)::after,
#topContents > .topContentsList > li:nth-child(8)::after,
#topContents > .topContentsList > li:nth-child(11)::after {
    content: '';
    display: block;
    width: calc(100% - 6px);
    height: 4px;
    padding: 0;
    margin: 0;
    background: linear-gradient(90deg,#005491 0%,#005491 50%,#D60000 50%,#D60000 100%);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
    z-index: 12;
}
#topContents > .topContentsList > li:nth-child(2) > a::before,
#topContents > .topContentsList > li:nth-child(5) > a::before,
#topContents > .topContentsList > li:nth-child(8) > a::before,
#topContents > .topContentsList > li:nth-child(11) > a::before {
    content: '';
    display: block;
    width: 2px;
    height: 100%;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 30;
    background: #fff;
}
#topContents > .topContentsList > li:nth-child(2) > a::after,
#topContents > .topContentsList > li:nth-child(5) > a::after,
#topContents > .topContentsList > li:nth-child(8) > a::after,
#topContents > .topContentsList > li:nth-child(11) > a::after {
    content: '';
    display: block;
    width: 2px;
    height: 100%;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 30;
    background: #fff;
}
#topContents > .topContentsList > li > figure {
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 0;
}
#topContents > .topContentsList > li > figure::before {
    content: '';
    display: block;
    padding-top: 60%;
}
#topContents > .topContentsList > li > figure > img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    z-index: -1;
}
#topContents > .topContentsList > li > .topContentsBox {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    z-index: 10;
}
#topContents > .topContentsList > li > .topContentsBox > strong {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0 auto 5px;
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    color: #fff;
    font-size: 17px;
    line-height: 1em;
    white-space: nowrap;
}
#topContents > .topContentsList > li > .topContentsBox > h3 {
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    color: #fff;
    font-size: 30px;
    line-height: 1.4em;
    letter-spacing: 0.2em;
    padding: 0 0 20px;
    margin: 0 auto 30px;
    text-align: center;
    position: relative;
}
#topContents > .topContentsList > li > .topContentsBox > h3 span {
    display: inline-block;
    width: 50px;
    height: 1px;
    padding: 0;
    margin: 0;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
}
#topContents > .topContentsList > li > .topContentsBox > h3 span::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    padding: 0;
    margin: 0;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
}
#topContents > .topContentsList > li > .topContentsBox > h3 span::after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    padding: 0;
    margin: 0;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #topContents {
        width: 100%;
        padding: 40px 0 0;
        margin: 0 auto;
        background: #fff;
        position: relative;
    }
    #topContents > strong {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0;
        margin: 0 auto 5px;
        font-family: ten-mincho, serif;
        font-style: normal;
        font-weight: 400;
        color: #005491;
        font-size: 14px;
        line-height: 1em;
        white-space: nowrap;
    }
    #topContents > h2 {
        font-family: ten-mincho, serif;
        font-style: normal;
        font-weight: 400;
        color: #262626;
        font-size: 18px;
        line-height: 1.4em;
        letter-spacing: 0.2em;
        padding: 0;
        margin: 0 auto 20px;
        text-align: center;
    }
    #topContents > .topContentsList {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        list-style: none;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    #topContents > .topContentsList > li {
        width: 100%;
        padding: 0;
        margin: 0 0 2px;
        position: relative;
        box-sizing: border-box;
    }
    #topContents > .topContentsList > li:nth-child(2),
    #topContents > .topContentsList > li:nth-child(5),
    #topContents > .topContentsList > li:nth-child(8),
    #topContents > .topContentsList > li:nth-child(11) {
        width: 100%;
        padding: 0;
        margin: 0 0 2px;
        position: relative;
        box-sizing: border-box;
    }
    #topContents > .topContentsList > li::before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background: #001F36;
        opacity: 0.5;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 4;
        transition: all 0.5s ease;
    }
    #topContents > .topContentsList > li:hover::before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background: #001F36;
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 4;
        transition: all 0.5s ease;
    }
    #topContents > .topContentsList > li::after {
        content: '';
        display: block;
        width: 100%;
        height: 4px;
        padding: 0;
        margin: 0;
        background: linear-gradient(90deg,#005491 0%,#005491 50%,#D60000 50%,#D60000 100%);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 12;
    }
    #topContents > .topContentsList > li > a {
        display: block;
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 11;
    }
    #topContents > .topContentsList > li:nth-child(2)::after,
    #topContents > .topContentsList > li:nth-child(5)::after,
    #topContents > .topContentsList > li:nth-child(8)::after,
    #topContents > .topContentsList > li:nth-child(11)::after {
        content: '';
        display: block;
        width: calc(100%);
        height: 4px;
        padding: 0;
        margin: 0;
        background: linear-gradient(90deg,#005491 0%,#005491 50%,#D60000 50%,#D60000 100%);
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%,0);
        -webkit-transform: translate(-50%,0);
        z-index: 12;
    }
    #topContents > .topContentsList > li:nth-child(2) > a::before,
    #topContents > .topContentsList > li:nth-child(5) > a::before,
    #topContents > .topContentsList > li:nth-child(8) > a::before,
    #topContents > .topContentsList > li:nth-child(11) > a::before {
        display: none;
    }
    #topContents > .topContentsList > li:nth-child(2) > a::after,
    #topContents > .topContentsList > li:nth-child(5) > a::after,
    #topContents > .topContentsList > li:nth-child(8) > a::after,
    #topContents > .topContentsList > li:nth-child(11) > a::after {
        display: none;
    }
    #topContents > .topContentsList > li > figure {
        width: 100%;
        padding: 0;
        margin: 0;
        text-align: center;
        overflow: hidden;
        position: relative;
        z-index: 0;
    }
    #topContents > .topContentsList > li > figure::before {
        content: '';
        display: block;
        padding-top: 60%;
    }
    #topContents > .topContentsList > li > figure > img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        object-fit: cover;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
        z-index: -1;
    }
    #topContents > .topContentsList > li > .topContentsBox {
        width: 100%;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
        z-index: 10;
    }
    #topContents > .topContentsList > li > .topContentsBox > strong {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0;
        margin: 0 auto 5px;
        font-family: ten-mincho, serif;
        font-style: normal;
        font-weight: 400;
        color: #fff;
        font-size: 12px;
        line-height: 1em;
        white-space: nowrap;
    }
    #topContents > .topContentsList > li > .topContentsBox > h3 {
        font-family: ten-mincho, serif;
        font-style: normal;
        font-weight: 400;
        color: #fff;
        font-size: 18px;
        line-height: 1.4em;
        letter-spacing: 0.2em;
        padding: 0 0 20px;
        margin: 0 auto 30px;
        text-align: center;
        position: relative;
    }
    #topContents > .topContentsList > li > .topContentsBox > h3 span {
        display: inline-block;
        width: 50px;
        height: 1px;
        padding: 0;
        margin: 0;
        background: #fff;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%,0);
        -webkit-transform: translate(-50%,0);
    }
    #topContents > .topContentsList > li > .topContentsBox > h3 span::before {
        content: '';
        display: block;
        width: 4px;
        height: 4px;
        padding: 0;
        margin: 0;
        background: #fff;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(0,-50%);
        -webkit-transform: translate(0,-50%);
    }
    #topContents > .topContentsList > li > .topContentsBox > h3 span::after {
        content: '';
        display: block;
        width: 4px;
        height: 4px;
        padding: 0;
        margin: 0;
        background: #fff;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translate(0,-50%);
        -webkit-transform: translate(0,-50%);
    }
}
    
/*ボタン*/
.topContentsBtn {
    display: block;
    text-align: center;
}
.topContentsBtn > a {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0;
    margin: auto;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.2em;
    position: relative;
    z-index: 0;
    transition: all 0.5s ease;
}
.topContentsBtn > a > span {
    display: block;
    padding: 0;
    margin: 0 0 0 15px;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    position: relative;
}
.topContentsBtn > a > span::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: calc(50% + 1px);
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transition: all 0.5s ease;
}
.topContentsBtn > a > span::after {
    content: '';
    display: block;
    width: 2px;
    height: 10px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    background: #fff;
    position: absolute;
    top: calc(50% + 1px);
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
    -webkit-transform: translate(-50%,-50%) rotate(45deg);
    transition: all 0.5s ease;
}
#topContents > .topContentsList > li:hover > .topContentsBox > .topContentsBtn > a > span::before {
    transform: translate(-50%,-50%) rotate(45deg);
    -webkit-transform: translate(-50%,-50%) rotate(45deg);
    transition: all 0.5s ease;
}
#topContents > .topContentsList > li:hover > .topContentsBox > .topContentsBtn > a > span::after {
    transform: translate(-50%,-50%) rotate(90deg);
    -webkit-transform: translate(-50%,-50%) rotate(90deg);
    transition: all 0.5s ease;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*ボタン*/
    .topContentsBtn {
        display: block;
        text-align: center;
    }
    .topContentsBtn > a {
        display: flex;
        display: -webkit-flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: nowrap;
        padding: 0;
        margin: auto;
        color: #fff;
        font-size: 12px;
        font-weight: 500;
        line-height: 1;
        letter-spacing: 0.2em;
        position: relative;
        z-index: 0;
        transition: all 0.5s ease;
    }
}

/************************************************************/
/*　トップページ OEM
/************************************************************/
#topPosts {
    width: 100%;
    padding: 80px 0;
    margin: 0 auto;
    position: relative;
    z-index: 0;
}
#topOem {
    width: 100%;
    padding: 0;
    margin: 0 auto 50px;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-end;
    align-content: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
    position: relative;
}
#topOem::before {
    content: '';
    display: block;
    width: 100%;
    height: 40px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
#topOem > figure {
    width: 48.5%;
    padding: 0;
    margin: 0;
    text-align: center;
    overflow: hidden;
    position: relative;
    border-radius: 10px 0 0 10px;
}
#topOem > figure::before {
    content: '';
    display: block;
    padding-top: 80%;
}
#topOem > figure img {
    width: auto;
    height: 100%;
    padding: 0;
    margin: 0;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}
#topOem > .topOemInfo {
    width: 41%;
    padding: 80px 0 0;
    margin: 0;
    margin-right: 80px;
}
#topOem > .topOemInfo > strong {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0 auto 30px;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    color: #fff;
    font-size: 17px;
    line-height: 1em;
    white-space: nowrap;
    text-shadow: 0 2px 5px rgba(0, 0, 0, .5);
}
#topOem > .topOemInfo > strong::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    padding: 0;
    margin: 0 0 0 20px;
    background: linear-gradient(to right, rgba(255,255,255,1) 0, rgba(255,255,255,0) 50%);
    box-shadow: 0px 3px 15px rgba(0,0,0,0.05);
}
#all_wrap #topOem > .topOemInfo > h2 {
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    color: #fff;
    font-size: 30px;
    line-height: 1.4em;
    padding: 0;
    margin: 0 auto 30px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, .5);
}
#all_wrap #topOem > .topOemInfo > p {
    padding: 0;
    margin: 0 auto 20px;
    text-align: justify;
    text-justify: inter-ideograph;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, .5);
}
#topOem > span.topPostsBg {
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
#topOem > span.topPostsBg::before {
    content: '';
    display: block;
    padding-top: 56.25%;
}
#topOem > span.topPostsBg::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    background: #0F0F0F;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}
#topOem > span.topPostsBg > img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    z-index: -1;
    opacity: 0.1;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #topPosts {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        position: relative;
        z-index: 0;
    }
    #topOem {
        width: 100%;
        padding: 0;
        margin: 0 auto 40px;
        display: flex;
        display: -webkit-flex;
        justify-content: flex-end;
        align-content: flex-end;
        align-items: flex-end;
        flex-wrap: wrap;
        position: relative;
    }
    #topOem::before {
        display: none;
    }
    #topOem > figure {
        width: 90%;
        padding: 0;
        margin: 0 0 0 auto;
        text-align: center;
        overflow: hidden;
        position: relative;
        border-radius: 10px 0 0 10px;
    }
    #topOem > figure::before {
        content: '';
        display: block;
        padding-top: 50%;
    }
    #topOem > figure img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        object-fit: cover;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
    }
    #topOem > .topOemInfo {
        width: 100%;
        padding: 40px 20px;
        margin: 0;
        margin-right: 0;
    }
    #topOem > .topOemInfo > strong {
        display: block;
        width: 100%;
        padding: 0;
        margin: 0 auto 20px;
        display: flex;
        display: -webkit-flex;
        justify-content: flex-start;
        align-content: center;
        align-items: center;
        flex-wrap: nowrap;
        font-family: ten-mincho, serif;
        font-style: normal;
        font-weight: 400;
        color: #fff;
        font-size: 14px;
        line-height: 1em;
        white-space: nowrap;
        text-shadow: 0 2px 5px rgba(0, 0, 0, .5);
    }
    #topOem > .topOemInfo > strong::after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        padding: 0;
        margin: 0 0 0 10px;
        background: linear-gradient(to right, rgba(255,255,255,1) 0, rgba(255,255,255,0) 50%);
        box-shadow: 0px 3px 15px rgba(0,0,0,0.05);
    }
    #all_wrap #topOem > .topOemInfo > h2 {
        font-family: ten-mincho, serif;
        font-style: normal;
        font-weight: 400;
        color: #fff;
        font-size: 18px;
        line-height: 1.4em;
        padding: 0;
        margin: 0 auto 20px;
        text-shadow: 0 2px 5px rgba(0, 0, 0, .5);
    }
    #all_wrap #topOem > .topOemInfo > p {
        padding: 0;
        margin: 0 auto 30px;
        text-align: justify;
        text-justify: inter-ideograph;
        color: #fff;
        text-shadow: 0 2px 5px rgba(0, 0, 0, .5);
    }
    #topOem > span.topPostsBg {
        width: 100%;
        padding: 0;
        margin: 0;
        text-align: center;
        overflow: hidden;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #topOem > span.topPostsBg::before {
        content: '';
        display: block;
        padding-top: 200%;
    }
    #topOem > span.topPostsBg::after {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        background: #0F0F0F;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -2;
    }
    #topOem > span.topPostsBg > img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        object-fit: cover;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
        z-index: -1;
        opacity: 0.1;
    }
    /*赤ボタン*/
    #all_wrap #topOem .BtnRed {
        display: inline-block;
    }
    #all_wrap #topOem .BtnRed a {
        display: flex;
        display: -webkit-flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: nowrap;
        padding: 0 0 0 25px;
        margin: auto;
        background: #D60000;
        color: #fff;
        font-size: 12px;
        font-weight: 500;
        line-height: 1;
        position: relative;
        z-index: 0;
        transition: all 0.5s ease;
    }
    #all_wrap #topOem a::before {
        content: '';
        display: block;
        width: 0;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;
        background: #B40000;
        transition: all 0.5s ease;
    }
    #all_wrap #topOem a:hover::before {
        width: 100%;
        transition: all 0.5s ease;
    }
    #all_wrap #topOem a:hover {
        text-decoration: none;
    }
    #all_wrap #topOem a > span {
        display: block;
        padding: 15px;
        margin: 0 0 0 15px;
        display: flex;
        display: -webkit-flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: nowrap;
        position: relative;
        background: #B40000;
    }
    #all_wrap #topOem a > span::before {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
        transition: all 0.5s ease;
    }
    #all_wrap #topOem a > span::after {
        content: '';
        display: block;
        width: 2px;
        height: 10px;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        border: none;
        background: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%) rotate(45deg);
        -webkit-transform: translate(-50%,-50%) rotate(45deg);
        transition: all 0.5s ease;
    }
    #all_wrap #topOem a:hover > span::before {
        transform: translate(-50%,-50%) rotate(45deg);
        -webkit-transform: translate(-50%,-50%) rotate(45deg);
        transition: all 0.5s ease;
    }
    #all_wrap #topOem a:hover > span::after {
        transform: translate(-50%,-50%) rotate(90deg);
        -webkit-transform: translate(-50%,-50%) rotate(90deg);
        transition: all 0.5s ease;
    }
}

/************************************************************/
/*　トップページ 新着情報・検査結果
/************************************************************/
#topNewsWrap {
    width: 90%;
    padding: 0;
    margin: 0 auto;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}
#topNewsWrap > #topNews {
    width: 48.5%;
    padding: 50px;
    margin: 0;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.05);
    position: relative;
}
#topNewsWrap > #topReport {
    width: 48.5%;
    padding: 50px;
    margin: 0;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: nowrap;
}
#topNewsWrap strong {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0 auto 10px;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    color: #005491;
    font-size: 17px;
    line-height: 1em;
    white-space: nowrap;
}
#topNewsWrap strong::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    padding: 0;
    margin: 0 0 0 20px;
    background: linear-gradient(to right, rgba(0,84,145,1) 0, rgba(0,84,145,0) 50%);
}
#all_wrap #topNewsWrap h2 {
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    color: #262626;
    font-size: 30px;
    line-height: 1.4em;
    letter-spacing: 0.05em;
    padding: 0;
    margin: 0 0 20px;
}
#all_wrap .newsList {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    list-style: none;
}
#all_wrap.sub_page .newsList {
    width: 100%;
    padding: 0;
    margin: 0 auto 50px;
    list-style: none;
}
#all_wrap .newsList > li {
    padding: 20px 0;
    margin: 0 auto;
    border-bottom: 1px dotted #707070;
}
#all_wrap .newsList > li:first-child {
    padding: 0 0 20px;
    margin: 0 auto;
    border-bottom: 1px dotted #707070;
}
.tags {
    padding: 0;
    margin: 0 auto 5px;
}
.tags > span {
    display: inline-block;
    padding: 5px 8px;
    margin: 0 3px 5px 0;
    background: #D60000;
    color: #fff;
    font-size: 11px;
    line-height: 1;
}
/*重要なお知らせ*/
.tags > span.important{background: #D60000;}
/*トピックス*/
.tags > span.topics{background: #00238C;}
/*お知らせ*/
.tags > span.news{background: #FF7F00;}
/*イベント*/
.tags > span.event{background: #006600;}
/*卸販売対応商品*/
.tags > span.wholesale{background: #000;}
/*OEM商品例*/
.tags > span.example{background: #000;}
/*PB商品*/
.tags > span.pb{background: #000;}

.tags > span.newsListDate {
    display: inline-block;
    padding: 5px 0;
    margin: 0 3px 5px 0;
    background: none;
    color: #272727;
    font-size: 12px;
    line-height: 1;
}
#all_wrap .newsList > li h3 a {
    display: block;
    padding: 0 30px 0 0;
    margin: 0;
    position: relative;
    transition: all 0.5s ease;
    z-index: 10;
    line-height: 1.2em;
}
#all_wrap .newsList > li h3 a:hover {
    color: #D60000;
    transition: all 0.5s ease;
}
#all_wrap .newsList > li h3 a::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border-top: 1px solid #222;
    border-right: 1px solid #222;
    position: absolute;
    top: 55%;
    right: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    transition: all 0.5s ease;
}
#all_wrap .newsList > li h3 a::after {
    content: '';
    display: block;
    width: 1px;
    height: 10px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    background: #222;
    position: absolute;
    top: 55%;
    right: 3px;
    transform: translate(0,-50%) rotate(45deg);
    -webkit-transform: translate(0,-50%) rotate(45deg);
    transition: all 0.5s ease;
}
#all_wrap .newsList > li h3 a:hover::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border-top: 1px solid #D60000;
    border-right: 1px solid #D60000;
    position: absolute;
    top: 55%;
    right: 0;
    transform: translate(0,-50%) rotate(45deg);
    -webkit-transform: translate(0,-50%) rotate(45deg);
    transition: all 0.5s ease;
}
#all_wrap .newsList > li h3 a:hover::after {
    content: '';
    display: block;
    width: 1px;
    height: 10px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    background: #D60000;
    position: absolute;
    top: 55%;
    right: 3px;
    transform: translate(0,-50%) rotate(90deg);
    -webkit-transform: translate(0,-50%) rotate(90deg);
    transition: all 0.5s ease;
}
.topNewsBtn {
    position: absolute;
    top: 100px;
    right: 50px;
    z-index: 10;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #topNewsWrap {
        width: 90%;
        padding: 0;
        margin: 0 auto;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: wrap;
        position: relative;
    }
    #topNewsWrap > #topNews {
        width: 100%;
        padding: 30px;
        margin: 0 auto 30px;
        border-radius: 10px;
        background: #fff;
        box-shadow: 0px 3px 15px rgba(0,0,0,0.05);
        position: relative;
    }
    #topNewsWrap > #topReport {
        width: 100%;
        padding: 30px;
        margin: 0 auto 30px;
        border-radius: 10px;
        background: #fff;
        box-shadow: 0px 3px 15px rgba(0,0,0,0.05);
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }
    #topNewsWrap strong {
        display: block;
        width: 100%;
        padding: 0;
        margin: 0 auto 10px;
        display: flex;
        display: -webkit-flex;
        justify-content: flex-start;
        align-content: center;
        align-items: center;
        flex-wrap: nowrap;
        font-family: ten-mincho, serif;
        font-style: normal;
        font-weight: 400;
        color: #005491;
        font-size: 14px;
        line-height: 1em;
        white-space: nowrap;
    }
    #topNewsWrap strong::after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        padding: 0;
        margin: 0 0 0 10px;
        background: linear-gradient(to right, rgba(0,84,145,1) 0, rgba(0,84,145,0) 50%);
    }
    #all_wrap #topNewsWrap h2 {
        font-family: ten-mincho, serif;
        font-style: normal;
        font-weight: 400;
        color: #262626;
        font-size: 18px;
        line-height: 1.4em;
        letter-spacing: 0.05em;
        padding: 0;
        margin: 0 0 20px;
    }
    #all_wrap .newsList {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        list-style: none;
    }
    #all_wrap.sub_page .newsList {
        width: 100%;
        padding: 0;
        margin: 0 auto 20px;
        list-style: none;
    }
    #all_wrap .newsList > li {
        padding: 10px 0;
        margin: 0 auto;
        border-bottom: 1px dotted #707070;
    }
    #all_wrap .newsList > li:first-child {
        padding: 0 0 10px;
        margin: 0 auto;
        border-bottom: 1px dotted #707070;
    }
    .tags {
        padding: 0;
        margin: 0 auto 5px;
    }
    .tags > span {
        display: inline-block;
        padding: 5px 8px;
        margin: 0 3px 5px 0;
        background: #D60000;
        color: #fff;
        font-size: 9px;
        line-height: 1;
    }
    .tags > span.newsListDate {
        display: inline-block;
        padding: 5px 0;
        margin: 0 3px 5px 0;
        background: none;
        color: #272727;
        font-size: 12px;
        line-height: 1;
    }
    #all_wrap .newsList > li h3 a {
        display: block;
        padding: 0 30px 0 0;
        margin: 0;
        position: relative;
        transition: all 0.5s ease;
        z-index: 10;
        line-height: 1.2em;
    }
    #all_wrap .newsList > li h3 a:hover {
        color: #D60000;
        transition: all 0.5s ease;
    }
    #all_wrap .newsList > li h3 a::before {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        border-top: 1px solid #222;
        border-right: 1px solid #222;
        position: absolute;
        top: 55%;
        right: 0;
        transform: translate(0,-50%);
        -webkit-transform: translate(0,-50%);
        transition: all 0.5s ease;
    }
    #all_wrap .newsList > li h3 a::after {
        content: '';
        display: block;
        width: 1px;
        height: 10px;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        border: none;
        background: #222;
        position: absolute;
        top: 55%;
        right: 3px;
        transform: translate(0,-50%) rotate(45deg);
        -webkit-transform: translate(0,-50%) rotate(45deg);
        transition: all 0.5s ease;
    }
    #all_wrap .newsList > li h3 a:hover::before {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        border-top: 1px solid #D60000;
        border-right: 1px solid #D60000;
        position: absolute;
        top: 55%;
        right: 0;
        transform: translate(0,-50%) rotate(45deg);
        -webkit-transform: translate(0,-50%) rotate(45deg);
        transition: all 0.5s ease;
    }
    #all_wrap .newsList > li h3 a:hover::after {
        content: '';
        display: block;
        width: 1px;
        height: 10px;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        border: none;
        background: #D60000;
        position: absolute;
        top: 55%;
        right: 3px;
        transform: translate(0,-50%) rotate(90deg);
        -webkit-transform: translate(0,-50%) rotate(90deg);
        transition: all 0.5s ease;
    }
    .topNewsBtn {
        position: absolute;
        top: 60px;
        right: 30px;
        z-index: 10;
    }
}

/*検査結果*/
#all_wrap.main_page .reportList {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: auto auto 0;
    list-style: none;
}
#all_wrap.main_page .reportList > li {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0 auto;
}
#all_wrap.main_page .reportList > li > figure {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
    position: relative;
}
#all_wrap.main_page .reportList > li > figure::before {
    content: '';
    display: block;
}
#all_wrap.main_page .reportList > li > figure img {
    width: auto;
    height: 100%;
    padding: 0;
    margin: 0;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    border: 1px solid rgba(0,0,0,0.1);
}
#all_wrap.main_page .reportList > li h3 a {
    display: block;
    padding: 0 30px 0 0;
    margin: 0;
    position: relative;
    transition: all 0.5s ease;
    z-index: 10;
}
#all_wrap.main_page .reportList > li h3 a:hover {
    color: #D60000;
    transition: all 0.5s ease;
}
#all_wrap.main_page .reportList > li h3 a::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border-top: 1px solid #222;
    border-right: 1px solid #222;
    position: absolute;
    top: 55%;
    right: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    transition: all 0.5s ease;
}
#all_wrap.main_page .reportList > li h3 a::after {
    content: '';
    display: block;
    width: 1px;
    height: 10px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    background: #222;
    position: absolute;
    top: 55%;
    right: 3px;
    transform: translate(0,-50%) rotate(45deg);
    -webkit-transform: translate(0,-50%) rotate(45deg);
    transition: all 0.5s ease;
}
#all_wrap.main_page .reportList > li h3 a:hover::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border-top: 1px solid #D60000;
    border-right: 1px solid #D60000;
    position: absolute;
    top: 55%;
    right: 0;
    transform: translate(0,-50%) rotate(45deg);
    -webkit-transform: translate(0,-50%) rotate(45deg);
    transition: all 0.5s ease;
}
#all_wrap.main_page .reportList > li h3 a:hover::after {
    content: '';
    display: block;
    width: 1px;
    height: 10px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    background: #D60000;
    position: absolute;
    top: 55%;
    right: 3px;
    transform: translate(0,-50%) rotate(90deg);
    -webkit-transform: translate(0,-50%) rotate(90deg);
    transition: all 0.5s ease;
}

/*検査結果一覧*/
#all_wrap.sub_page .reportList {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}
#all_wrap.sub_page .reportList::after {
    content: '';
    display: block;
    width: 31%;
}
#all_wrap.sub_page .reportList > li {
    width: 31%;
    padding: 30px;
    margin: 0 0 50px;
    background: #F7F7F7;
    position: relative;
    z-index: 0;
    opacity: 0;
}
#all_wrap.sub_page .reportList > li::before {
    content: '';
    display: block;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    padding: 0;
    margin: 0;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    box-shadow: 0px 2px 8px rgb(0 0 0 / 2%);
}
#all_wrap.sub_page .reportList > li > figure {
    width: 100%;
    padding: 0;
    margin: 0 auto 10px;
    text-align: center;
    overflow: hidden;
    position: relative;
}
#all_wrap.sub_page .reportList > li > figure img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}
#all_wrap.sub_page .reportList > li h3 a {
    display: block;
    padding: 0;
    margin: 0;
    position: relative;
    transition: all 0.5s ease;
    z-index: 10;
    line-height: 1.4em;
}
#all_wrap.sub_page .reportList > li h3 a:hover {
    color: #D60000;
    transition: all 0.5s ease;
}
#all_wrap.sub_page .reportList > li span.reportListDate {
    display: inline-block;
    padding: 0;
    margin: 0 0 5px 0;
    background: none;
    color: #272727;
    font-size: 12px;
    line-height: 1;
    position: relative;
    z-index: 5;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*検査結果*/
    #all_wrap.main_page .reportList {
        width: 100%;
        height: 100%;
        padding: 0;
        margin: auto auto 0;
        list-style: none;
    }
    #all_wrap.main_page .reportList > li {
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0 auto;
    }
    #all_wrap.main_page .reportList > li > figure {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0 auto;
        text-align: center;
        overflow: hidden;
        position: relative;
    }
    #all_wrap.main_page .reportList > li > figure::before {
        content: '';
        display: block;
        padding-top: 100%;
    }
    #all_wrap.main_page .reportList > li > figure img {
        width: auto;
        height: 100%;
        padding: 0;
        margin: 0;
        object-fit: cover;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
        border: 1px solid rgba(0,0,0,0.1);
    }
    #all_wrap.main_page .reportList > li h3 a {
        display: block;
        padding: 0 30px 0 0;
        margin: 0;
        position: relative;
        transition: all 0.5s ease;
        z-index: 10;
    }
    #all_wrap.main_page .reportList > li h3 a:hover {
        color: #D60000;
        transition: all 0.5s ease;
    }
    #all_wrap.main_page .reportList > li h3 a::before {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        border-top: 1px solid #222;
        border-right: 1px solid #222;
        position: absolute;
        top: 55%;
        right: 0;
        transform: translate(0,-50%);
        -webkit-transform: translate(0,-50%);
        transition: all 0.5s ease;
    }
    #all_wrap.main_page .reportList > li h3 a::after {
        content: '';
        display: block;
        width: 1px;
        height: 10px;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        border: none;
        background: #222;
        position: absolute;
        top: 55%;
        right: 3px;
        transform: translate(0,-50%) rotate(45deg);
        -webkit-transform: translate(0,-50%) rotate(45deg);
        transition: all 0.5s ease;
    }
    #all_wrap.main_page .reportList > li h3 a:hover::before {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        border-top: 1px solid #D60000;
        border-right: 1px solid #D60000;
        position: absolute;
        top: 55%;
        right: 0;
        transform: translate(0,-50%) rotate(45deg);
        -webkit-transform: translate(0,-50%) rotate(45deg);
        transition: all 0.5s ease;
    }
    #all_wrap.main_page .reportList > li h3 a:hover::after {
        content: '';
        display: block;
        width: 1px;
        height: 10px;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        border: none;
        background: #D60000;
        position: absolute;
        top: 55%;
        right: 3px;
        transform: translate(0,-50%) rotate(90deg);
        -webkit-transform: translate(0,-50%) rotate(90deg);
        transition: all 0.5s ease;
    }

    /*検査結果一覧*/
    #all_wrap.sub_page .reportList {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        list-style: none;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: wrap;
        position: relative;
    }
    #all_wrap.sub_page .reportList::after {
        content: '';
        display: block;
        width: 31%;
    }
    #all_wrap.sub_page .reportList > li {
        width: 31%;
        padding: 30px;
        margin: 0 0 50px;
        background: #F7F7F7;
        position: relative;
        z-index: 0;
        opacity: 0;
    }
    #all_wrap.sub_page .reportList > li::before {
        content: '';
        display: block;
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        padding: 0;
        margin: 0;
        background: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
        box-shadow: 0px 2px 8px rgb(0 0 0 / 2%);
    }
    #all_wrap.sub_page .reportList > li > figure {
        width: 100%;
        padding: 0;
        margin: 0 auto 10px;
        text-align: center;
        overflow: hidden;
        position: relative;
    }
    #all_wrap.sub_page .reportList > li > figure img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
    }
    #all_wrap.sub_page .reportList > li h3 a {
        display: block;
        padding: 0;
        margin: 0;
        position: relative;
        transition: all 0.5s ease;
        z-index: 10;
        line-height: 1.4em;
    }
    #all_wrap.sub_page .reportList > li h3 a:hover {
        color: #D60000;
        transition: all 0.5s ease;
    }
    #all_wrap.sub_page .reportList > li span.reportListDate {
        display: inline-block;
        padding: 0;
        margin: 0 0 5px 0;
        background: none;
        color: #272727;
        font-size: 12px;
        line-height: 1;
        position: relative;
        z-index: 5;
    }
}


/*ブログ一覧*/
#all_wrap .blogList {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}
#all_wrap .blogList::after {
    content: '';
    display: block;
    width: 48%;
}
#all_wrap .blogList > li {
    width: 48%;
    padding: 30px;
    margin: 0 0 50px;
    background: #F7F7F7;
    position: relative;
    z-index: 0;
    opacity: 0;
}
#all_wrap .blogList > li::before {
    content: '';
    display: block;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    padding: 0;
    margin: 0;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    box-shadow: 0px 2px 8px rgb(0 0 0 / 2%);
}
#all_wrap .blogList > li > figure {
    width: 100%;
    padding: 0;
    margin: 0 auto 10px;
    text-align: center;
    overflow: hidden;
    position: relative;
}
#all_wrap .blogList > li > figure::before {
    content: '';
    display: block;
    padding-top: 75%;
}
#all_wrap .blogList > li > figure img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}
#all_wrap .blogList > li h3 a {
    display: block;
    padding: 0;
    margin: 0;
    position: relative;
    transition: all 0.5s ease;
    z-index: 10;
    line-height: 1.4em;
}
#all_wrap .blogList > li h3 a:hover {
    color: #D60000;
    transition: all 0.5s ease;
}
#all_wrap .blogList > li span.reportListDate {
    display: inline-block;
    padding: 0;
    margin: 0 0 5px 0;
    background: none;
    color: #272727;
    font-size: 12px;
    line-height: 1;
    position: relative;
    z-index: 5;
}

/************************************************************/
/*　フッター　お問い合わせ
/************************************************************/
#contactArea {
    width: 100%;
    padding: 80px 0;
    margin: 0 auto;
    position: relative;
    background: url('https://alpha0702.xsrv.jp/img/contactBg.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}
/*装飾*/
#contactArea > span:first-of-type {
    width: 270px;
    height: 150px;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 5;
}
#contactArea > span:first-of-type::before {
    content: '';
    display: block;
    background: #D60000;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
#contactArea > span:first-of-type::after {
    content: '';
    display: block;
    background: #D60000;
    opacity: 0.4;
    width: 80%;
    height: 80%;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
#contactArea > span:last-of-type {
    width: 270px;
    height: 150px;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
}
#contactArea > span:last-of-type::before {
    content: '';
    display: block;
    background: #D60000;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
#contactArea > span:last-of-type::after {
    content: '';
    display: block;
    background: #D60000;
    opacity: 0.4;
    width: 80%;
    height: 80%;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
#contactArea::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    background: rgba(0,0,0,0.3);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    filter: brightness(100%);
    overflow: hidden;
    z-index: -1;
}
.contactAreaWrap {
    width: 100%;
    max-width: 1000px;
    padding: 0;
    margin: 0 auto;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
}
.contactAreaWrap > .contactAreaLeft {
    width: 45%;
    padding: 0;
    margin: 0;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}
.contactAreaWrap > .contactAreaRight {
    width: 45%;
    padding: 40px;
    margin: 0;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    border-radius: 5px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}
.contactAreaWrap > .contactAreaLeft strong {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0 auto 30px;
    text-align: center;
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    color: #fff;
    font-size: 40px;
    line-height: 1em;
}
#all_wrap .contactAreaWrap > .contactAreaLeft h2 {
    padding: 0;
    margin: 0 auto 30px;
    text-align: center;
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    color: #fff;
    font-size: 18px;
    line-height: 1em;
}
#all_wrap .contactAreaWrap > .contactAreaRight h2 {
    padding: 0;
    margin: 0 auto 20px;
    text-align: center;
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    color: #fff;
    font-size: 18px;
    line-height: 1em;
}
#all_wrap .contactAreaWrap > .contactAreaRight tel {
    display: block;
    text-align: center;
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    color: #fff;
    font-size: 30px;
    line-height: 1em;
    padding: 0;
    margin: 0 auto 10px;
}
#all_wrap .contactAreaWrap > .contactAreaRight small {
    display: block;
    text-align: center;
    padding: 0;
    margin: 0 auto;
    font-size: 12px;
    line-height: 1;
    color: #fff;
}


/************************************************************/
/*　OEMについて
/************************************************************/

/*ビジュアル*/
.oemVisual {
    width: 100%;
    padding: 100px 0;
    margin: 0 auto;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.oemVisual::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    background: rgba(255,255,255,0.2);
    z-index: 0;
}
.oemVisual > figure {
    width: 100%;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    z-index: -1;
    overflow: hidden;
    text-align: center;
}
.oemVisual > figure img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    object-fit: cover;
}
#all_wrap .oemVisual > strong {
    display: block;
    font-size: 25px;
    line-height: 1.4em;
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    color: #222;
    text-align: center;
    padding: 0;
    margin: 0 auto 10px;
    position: relative;
    z-index: 1;
    text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
        -1px 1px 0 #FFF, 1px -1px 0 #FFF,
        0px 1px 0 #FFF,  0-1px 0 #FFF,
        -1px 0 0 #FFF, 1px 0 0 #FFF;
}
#all_wrap .l-wrapper-full .oemVisual > h2 {
    display: block;
    font-size: 40px;
    line-height: 1.4em;
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    color: #222;
    text-align: center;
    padding: 0;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
        -1px 1px 0 #FFF, 1px -1px 0 #FFF,
        0px 1px 0 #FFF,  0-1px 0 #FFF,
        -1px 0 0 #FFF, 1px 0 0 #FFF;
}
#all_wrap .l-wrapper-full .oemVisual > ul {
    width: 100%;
    max-width: 1000px;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}
#all_wrap .l-wrapper-full .oemVisual > ul > li {
    width: 23%;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}
#all_wrap .l-wrapper-full .oemVisual > ul > li::before {
    content: '';
    display: block;
    padding: 50%;
    position: static;
}
#all_wrap .l-wrapper-full .oemVisual > ul > li::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(214,0,0,0.7);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    z-index: 0;
}
#all_wrap .l-wrapper-full .oemVisual > ul > li p {
    width: 100%;
    text-align: center;
    font-size: 20px;
    line-height: 1.4em;
    font-weight: 600;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    z-index: 5;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #oemPage {
        width: 100%;
        padding: 0;
        margin: 0 auto;
    }
    /*ビジュアル*/
    .oemVisual {
        width: 100%;
        padding: 30px 0 20px;
        margin: 0 auto;
        position: relative;
        z-index: 0;
        overflow: hidden;
    }
    .oemVisual::before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
        background: rgba(255,255,255,0.2);
        z-index: 0;
    }
    .oemVisual > figure {
        width: 100%;
        height: 100%;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
        z-index: -1;
        overflow: hidden;
        text-align: center;
    }
    .oemVisual > figure img {
        width: auto;
        height: 100%;
        padding: 0;
        margin: 0;
        object-fit: cover;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
    }
    #all_wrap .oemVisual > strong {
        display: block;
        font-size: 12px;
        line-height: 1.4em;
        font-family: ten-mincho, serif;
        font-style: normal;
        font-weight: 400;
        color: #222;
        text-align: center;
        padding: 0;
        margin: 0 auto 10px;
        position: relative;
        z-index: 1;
        text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
            -1px 1px 0 #FFF, 1px -1px 0 #FFF,
            0px 1px 0 #FFF,  0-1px 0 #FFF,
            -1px 0 0 #FFF, 1px 0 0 #FFF;
    }
    #all_wrap .l-wrapper-full .oemVisual > h2 {
        display: block;
        font-size: 15px;
        line-height: 1.4em;
        font-family: ten-mincho, serif;
        font-style: normal;
        font-weight: 400;
        color: #222;
        text-align: center;
        padding: 0;
        margin: 0 auto 10px;
        position: relative;
        z-index: 1;
        text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
            -1px 1px 0 #FFF, 1px -1px 0 #FFF,
            0px 1px 0 #FFF,  0-1px 0 #FFF,
            -1px 0 0 #FFF, 1px 0 0 #FFF;
    }
    #all_wrap .l-wrapper-full .oemVisual > ul {
        width: 90%;
        max-width: 90%;
        padding: 0;
        margin: 0 auto;
        list-style: none;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    #all_wrap .l-wrapper-full .oemVisual > ul > li {
        width: 48%;
        padding: 8px;
        margin: 0 0 10px;
        display: flex;
        display: -webkit-flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
        position: relative;
        background: rgba(214,0,0,0.7);
        border-radius: 100%;
    }
    #all_wrap .l-wrapper-full .oemVisual > ul > li::before {
        display: none;
    }
    #all_wrap .l-wrapper-full .oemVisual > ul > li::after {
        display: none;
    }
    #all_wrap .l-wrapper-full .oemVisual > ul > li p {
        width: 100%;
        padding: 0;
        margin: 0;
        text-align: center;
        font-size: 12px !important;
        line-height: 1.2em;
        font-weight: 600;
        color: #fff;
        position: static;
        top: unset;
        left: unset;
        transform: translate(0,0);
        -webkit-transform: translate(0,0);
        z-index: 5;
    }
}

/*リンク*/
.oemLink {
    width: 100%;
    padding: 50px 0;
    margin: 0 auto;
}
.oemLink > ul {
    width: 100%;
    max-width: 1000px;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.oemLink > ul > li {
    width: 31%;
    padding: 0;
    margin: 0;
}
.oemLink > ul > li::before,
.oemLink > ul > li::after {
    display: none;
}
#all_wrap .l-wrapper-full .oemLink > ul > li a {
    display: block;
    padding: 20px 40px 20px 20px;
    margin: 0;
    background-image: linear-gradient(to bottom, #f9a624, #f1880e);
    font-size: 18px;
    line-height: 1.4em;
    font-weight: bold;
    color: #fff;
    border-radius: 8px;
    position: relative;
    transition: all 0.5s ease;
}
#all_wrap .l-wrapper-full .oemLink > ul > li a:hover {
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.5s ease;
}
.oemLink > ul > li a::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    background: none;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0,-50%) rotate(45deg);
    -webkit-transform: translate(0,-50%) rotate(45deg);
    transition: all 0.2s ease;
}
.oemLink > ul > li a:hover::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    background: none;
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translate(0,-50%) rotate(45deg);
    -webkit-transform: translate(0,-50%) rotate(45deg);
    transition: all 0.2s ease;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*リンク*/
    .oemLink {
        width: 100%;
        padding: 20px 0;
        margin: 0 auto;
    }
    .oemLink > ul {
        width: 90%;
        max-width: 90%;
        padding: 0;
        margin: 0 auto;
        list-style: none;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .oemLink > ul > li {
        width: 100%;
        padding: 0;
        margin: 0 auto 10px;
    }
    .oemLink > ul > li:last-child {
        margin-bottom: 0;
    }
    .oemLink > ul > li::before,
    .oemLink > ul > li::after {
        display: none;
    }
    #all_wrap .l-wrapper-full .oemLink > ul > li a {
        display: block;
        padding: 10px 30px 10px 10px;
        margin: 0;
        background-image: linear-gradient(to bottom, #f9a624, #f1880e);
        font-size: 12px;
        line-height: 1.4em;
        font-weight: bold;
        color: #fff;
        border-radius: 8px;
        position: relative;
        transition: all 0.5s ease;
    }
    #all_wrap .l-wrapper-full .oemLink > ul > li a br {
        display: none;
    }    
    #all_wrap .l-wrapper-full .oemLink > ul > li a:hover {
        text-decoration: none;
        opacity: 0.8;
        transition: all 0.5s ease;
    }
    .oemLink > ul > li a::before {
        content: '';
        display: block;
        width: 10px;
        height: 10px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        background: none;
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translate(0,-50%) rotate(45deg);
        -webkit-transform: translate(0,-50%) rotate(45deg);
        transition: all 0.2s ease;
    }
    .oemLink > ul > li a:hover::before {
        content: '';
        display: block;
        width: 10px;
        height: 10px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        background: none;
        position: absolute;
        top: 50%;
        right: 8px;
        transform: translate(0,-50%) rotate(45deg);
        -webkit-transform: translate(0,-50%) rotate(45deg);
        transition: all 0.2s ease;
    }
}

/*お悩みはございませんか*/
.oemTroubles {
    width: 100%;
    padding: 100px 0;
    margin: 0 auto;
    background: linear-gradient(-10deg,#fff 0%,#fafafa 50%,transparent 50%,transparent 100%) fixed #fff!important;
    position: relative;
}
#all_wrap .l-wrapper-full .oemTroubles > h2 {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    text-align: center;
    padding: 0;
    margin: 0 auto 40px;
    font-size: 30px;
    line-height: 1.4em;
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    color: #262626;
    white-space: nowrap;
    position: relative;
}
#all_wrap .l-wrapper-full .oemTroubles > h2::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    padding: 0;
    margin: 0 20px 0 0;
    background: linear-gradient(to left, rgba(0,84,145,1) 0, rgba(0,84,145,0) 80%);
}
#all_wrap .l-wrapper-full .oemTroubles > h2::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    padding: 0;
    margin: 0 0 0 20px;
    background: linear-gradient(to right, rgba(0,84,145,1) 0, rgba(0,84,145,0) 80%);
}
.oemTroublesWrap {
    width: 100%;
    padding: 0 50px;
    margin: 0 auto 50px;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.oemTroublesWrap > .oemTroublesInfo {
    width: 45%;
    padding: 0;
    margin: 0;
    display: flex;
    display: -webkit-flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.oemTroublesWrap > figure {
    width: 45%;
    padding: 0;
    margin: 0;
    text-align: center;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}
.oemTroublesWrap > figure::before {
    content: '';
    display: block;
    padding-top: 75%;
}
.oemTroublesWrap > figure > img {
    width: auto;
    height: 100%;
    padding: 0;
    margin: 0;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}
/*チェックリスト*/
#all_wrap .l-wrapper-full .checkList {
    padding: 0;
    margin: 0;
    list-style: none;
}
#all_wrap .l-wrapper-full .checkList > li {
    padding: 0 0 0 40px;
    margin: 0 0 20px;
    position: relative;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4em;
}
#all_wrap .l-wrapper-full .checkList > li::before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    border: 1px solid #262626;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
#all_wrap .l-wrapper-full .checkList > li::after {
    content: '';
    display: block;
    width: 25px;
    height: 10px;
    border-left: 2px solid #D60000;
    border-bottom: 2px solid #D60000;
    background: none;
    position: absolute;
    top: 5px;
    left: 6px;
    transform: rotate(-35deg);
    -webkit-transform: rotate(-35deg);
    z-index: 0;
}
#all_wrap .l-wrapper-full .oemTroubles > h3 {
    width: 100%;
    font-size: 30px;
    line-height: 1.4em;
    font-weight: bold;
    color: #005491;
    padding: 0;
    margin: 0 auto 10px;
    text-align: center;
}
#all_wrap .l-wrapper-full .oemTroubles > strong {
    display: block;
    font-size: 20px;
    line-height: 1.4em;
    font-weight: bold;
    color: #262626;
    padding: 0;
    margin: 0 auto 10px;
    text-align: center;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*お悩みはございませんか*/
    .oemTroubles {
        width: 100%;
        padding: 40px 0;
        margin: 0 auto;
        background: linear-gradient(-10deg,#fff 0%,#fafafa 50%,transparent 50%,transparent 100%) fixed #fff!important;
        position: relative;
    }
    #all_wrap .l-wrapper-full .oemTroubles > h2 {
        width: 90%;
        display: flex;
        display: -webkit-flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: nowrap;
        text-align: center;
        padding: 0;
        margin: 0 auto 20px;
        font-size: 18px;
        line-height: 1.4em;
        font-family: ten-mincho, serif;
        font-style: normal;
        font-weight: 400;
        color: #262626;
        white-space: nowrap;
        position: relative;
    }
    #all_wrap .l-wrapper-full .oemTroubles > h2::before {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        padding: 0;
        margin: 0 10px 0 0;
        background: linear-gradient(to left, rgba(0,84,145,1) 0, rgba(0,84,145,0) 80%);
    }
    #all_wrap .l-wrapper-full .oemTroubles > h2::after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        padding: 0;
        margin: 0 0 0 10px;
        background: linear-gradient(to right, rgba(0,84,145,1) 0, rgba(0,84,145,0) 80%);
    }
    .oemTroublesWrap {
        width: 90%;
        padding: 0;
        margin: 0 auto 20px;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .oemTroublesWrap > .oemTroublesInfo {
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        display: -webkit-flex;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
        order: 1;
    }
    .oemTroublesWrap > figure {
        width: 100%;
        padding: 0;
        margin: 0 auto 20px;
        text-align: center;
        overflow: hidden;
        position: relative;
        border-radius: 10px;
    }
    .oemTroublesWrap > figure::before {
        content: '';
        display: block;
        padding-top: 56.25%;
    }
    .oemTroublesWrap > figure > img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        object-fit: cover;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
    }
    /*チェックリスト*/
    #all_wrap .l-wrapper-full .checkList {
        padding: 0;
        margin: 0;
        list-style: none;
    }
    #all_wrap .l-wrapper-full .checkList > li {
        padding: 0 0 0 30px;
        margin: 0 0 20px;
        position: relative;
        font-size: 15px;
        font-weight: bold;
        line-height: 1.4em;
    }
    #all_wrap .l-wrapper-full .checkList > li::before {
        content: '';
        display: block;
        width: 20px;
        height: 20px;
        border: 1px solid #262626;
        background: #fff;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
    }
    #all_wrap .l-wrapper-full .checkList > li::after {
        content: '';
        display: block;
        width: 15px;
        height: 8px;
        border-left: 2px solid #D60000;
        border-bottom: 2px solid #D60000;
        background: none;
        position: absolute;
        top: 3px;
        left: 6px;
        transform: rotate(-35deg);
        -webkit-transform: rotate(-35deg);
        z-index: 0;
    }
    #all_wrap .l-wrapper-full .oemTroubles > h3 {
        width: 90%;
        font-size: 20px;
        line-height: 1.4em;
        font-weight: bold;
        color: #005491;
        padding: 0;
        margin: 0 auto 10px;
        text-align: center;
    }
    #all_wrap .l-wrapper-full .oemTroubles > strong {
        width: 90%;
        display: block;
        font-size: 15px;
        line-height: 1.4em;
        font-weight: bold;
        color: #262626;
        padding: 0;
        margin: 0 auto 10px;
        text-align: center;
    }
}

/*主な原料*/
.oemMaterial {
    width: 100%;
    padding: 100px 0 70px;
    margin: 0 auto;
    position: relative;
    background: url(https://alpha0702.xsrv.jp/img/bg01.png);
    background-size: 100%;
    background-position: top center;
}
#all_wrap .l-wrapper-full .oemMaterial > h2 {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    text-align: center;
    padding: 0;
    margin: 0 auto 40px;
    font-size: 30px;
    line-height: 1.4em;
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    color: #262626;
    white-space: nowrap;
    position: relative;
}
#all_wrap .l-wrapper-full .oemMaterial > h2::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    padding: 0;
    margin: 0 20px 0 0;
    background: linear-gradient(to left, rgba(0,84,145,1) 0, rgba(0,84,145,0) 80%);
}
#all_wrap .l-wrapper-full .oemMaterial > h2::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    padding: 0;
    margin: 0 0 0 20px;
    background: linear-gradient(to right, rgba(0,84,145,1) 0, rgba(0,84,145,0) 80%);
}
#all_wrap .oemMaterial .materialList {
    width: 100%;
    padding: 0 50px;
    margin: 0 auto;
    list-style: none;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#all_wrap .oemMaterial .materialList::before,
#all_wrap .oemMaterial .materialList::after {
    content: '';
    display: block;
    width: 23%;
}
#all_wrap .oemMaterial .materialList::before {
    order: 1;
}
#all_wrap .oemMaterial .materialList > li {
    width: 23%;
    padding: 0;
    margin: 0 0 30px;
    border-radius: 10px;
    background: #fff;
}
#all_wrap .oemMaterial .materialList > li::before,
#all_wrap .oemMaterial .materialList > li::after {
    display: none;
}
#all_wrap .oemMaterial .materialList > li > figure {
    width: 100%;
    padding: 0;
    margin: 0 auto 20px;
    text-align: center;
    overflow: hidden;
    position: relative;
    border-radius: 10px 10px 0 0;
}
#all_wrap .oemMaterial .materialList > li > figure::before {
    content: '';
    display: block;
    padding-top: 65%;
}
#all_wrap .oemMaterial .materialList > li > figure img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}
#all_wrap .l-wrapper-full .oemMaterial h3 {
    width: 90%;
    font-size: 18px;
    line-height: 1.4em;
    padding: 0;
    margin: 0 auto 20px;
    text-align: center;
    color: #262626;
    font-weight: 500;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*主な原料*/
    .oemMaterial {
        width: 100%;
        padding: 40px 0 20px;
        margin: 0 auto;
        position: relative;
        background: url(https://alpha0702.xsrv.jp/img/bg01.png);
        background-size: 100%;
        background-position: top center;
    }
    #all_wrap .l-wrapper-full .oemMaterial > h2 {
        width: 90%;
        display: flex;
        display: -webkit-flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: nowrap;
        text-align: center;
        padding: 0;
        margin: 0 auto 20px;
        font-size: 18px;
        line-height: 1.4em;
        font-family: ten-mincho, serif;
        font-style: normal;
        font-weight: 400;
        color: #262626;
        white-space: nowrap;
        position: relative;
    }
    #all_wrap .l-wrapper-full .oemMaterial > h2::before {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        padding: 0;
        margin: 0 10px 0 0;
        background: linear-gradient(to left, rgba(0,84,145,1) 0, rgba(0,84,145,0) 80%);
    }
    #all_wrap .l-wrapper-full .oemMaterial > h2::after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        padding: 0;
        margin: 0 0 0 10px;
        background: linear-gradient(to right, rgba(0,84,145,1) 0, rgba(0,84,145,0) 80%);
    }
    #all_wrap .oemMaterial .materialList {
        width: 90%;
        padding: 0;
        margin: 0 auto;
        list-style: none;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    #all_wrap .oemMaterial .materialList::before,
    #all_wrap .oemMaterial .materialList::after {
        content: '';
        display: none;
        width: 23%;
    }
    #all_wrap .oemMaterial .materialList::before {
        order: 1;
    }
    #all_wrap .oemMaterial .materialList > li {
        width: 47%;
        padding: 0;
        margin: 0 0 20px;
        border-radius: 5px;
        background: #fff;
    }
    #all_wrap .oemMaterial .materialList > li::before,
    #all_wrap .oemMaterial .materialList > li::after {
        display: none;
    }
    #all_wrap .oemMaterial .materialList > li > figure {
        width: 100%;
        padding: 0;
        margin: 0 auto 10px;
        text-align: center;
        overflow: hidden;
        position: relative;
        border-radius: 5px 5px 0 0;
    }
    #all_wrap .oemMaterial .materialList > li > figure::before {
        content: '';
        display: block;
        padding-top: 65%;
    }
    #all_wrap .oemMaterial .materialList > li > figure img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        object-fit: cover;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
    }
    #all_wrap .l-wrapper-full .oemMaterial h3 {
        font-size: 12px;
        line-height: 1.4em;
        padding: 0;
        margin: 0 auto 10px;
        text-align: center;
        color: #262626;
        font-weight: 600;
    }
}

/*こんな商品を手がけています*/
.oemItem {
    width: 100%;
    padding: 100px 0 70px;
    margin: 0 auto;
    position: relative;
    background: #F4F4F4;
}
#all_wrap .l-wrapper-full .oemItem > h2 {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    text-align: center;
    padding: 0;
    margin: 0 auto 40px;
    font-size: 30px;
    line-height: 1.4em;
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    color: #262626;
    white-space: nowrap;
    position: relative;
}
#all_wrap .l-wrapper-full .oemItem > h2::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    padding: 0;
    margin: 0 20px 0 0;
    background: linear-gradient(to left, rgba(0,84,145,1) 0, rgba(0,84,145,0) 80%);
}
#all_wrap .l-wrapper-full .oemItem > h2::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    padding: 0;
    margin: 0 0 0 20px;
    background: linear-gradient(to right, rgba(0,84,145,1) 0, rgba(0,84,145,0) 80%);
}
#all_wrap .oemItem .materialList {
    width: 100%;
    padding: 0 50px;
    margin: 0 auto;
    list-style: none;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#all_wrap .oemItem .materialList::before,
#all_wrap .oemItem .materialList::after {
    content: '';
    display: block;
    width: 23%;
}
#all_wrap .oemItem .materialList::before {
    order: 1;
}
#all_wrap .oemItem .materialList > li {
    width: 23%;
    padding: 0;
    margin: 0 0 30px;
    border-radius: 10px;
    background: #fff;
}
#all_wrap .oemItem .materialList > li::before,
#all_wrap .oemItem .materialList > li::after {
    display: none;
}
#all_wrap .oemItem .materialList > li > figure {
    width: 100%;
    padding: 0;
    margin: 0 auto 20px;
    text-align: center;
    overflow: hidden;
    position: relative;
    border-radius: 10px 10px 0 0;
}
#all_wrap .oemItem .materialList > li > figure::before {
    content: '';
    display: block;
    padding-top: 65%;
}
#all_wrap .oemItem .materialList > li > figure img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}
#all_wrap .l-wrapper-full .oemItem h3 {
    font-size: 18px;
    line-height: 1.4em;
    padding: 0;
    margin: 0 auto 20px;
    text-align: center;
    color: #262626;
    font-weight: 500;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*こんな商品を手がけています*/
    .oemItem {
        width: 100%;
        padding: 40px 0 20px;
        margin: 0 auto;
        position: relative;
        background: #F4F4F4;
    }
    #all_wrap .l-wrapper-full .oemItem > h2 {
        width: 90%;
        display: flex;
        display: -webkit-flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: nowrap;
        text-align: center;
        padding: 0;
        margin: 0 auto 20px;
        font-size: 18px;
        line-height: 1.4em;
        font-family: ten-mincho, serif;
        font-style: normal;
        font-weight: 400;
        color: #262626;
        white-space: nowrap;
        position: relative;
    }
    #all_wrap .l-wrapper-full .oemItem > h2::before {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        padding: 0;
        margin: 0 10px 0 0;
        background: linear-gradient(to left, rgba(0,84,145,1) 0, rgba(0,84,145,0) 80%);
    }
    #all_wrap .l-wrapper-full .oemItem > h2::after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        padding: 0;
        margin: 0 0 0 10px;
        background: linear-gradient(to right, rgba(0,84,145,1) 0, rgba(0,84,145,0) 80%);
    }
    #all_wrap .oemItem .materialList {
        width: 90%;
        padding: 0;
        margin: 0 auto;
        list-style: none;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    #all_wrap .oemItem .materialList::before,
    #all_wrap .oemItem .materialList::after {
        content: '';
        display: none;
        width: 23%;
    }
    #all_wrap .oemItem .materialList::before {
        order: 1;
    }
    #all_wrap .oemItem .materialList > li {
        width: 47%;
        padding: 0;
        margin: 0 0 20px;
        border-radius: 5px;
        background: #fff;
    }
    #all_wrap .oemItem .materialList > li::before,
    #all_wrap .oemItem .materialList > li::after {
        display: none;
    }
    #all_wrap .oemItem .materialList > li > figure {
        width: 100%;
        padding: 0;
        margin: 0 auto 10px;
        text-align: center;
        overflow: hidden;
        position: relative;
        border-radius: 5px 5px 0 0;
    }
    #all_wrap .oemItem .materialList > li > figure::before {
        content: '';
        display: block;
        padding-top: 65%;
    }
    #all_wrap .oemItem .materialList > li > figure img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        object-fit: cover;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
    }
    #all_wrap .l-wrapper-full .oemItem h3 {
        font-size: 12px;
        line-height: 1.4em;
        padding: 0;
        margin: 0 auto 10px;
        text-align: center;
        color: #262626;
        font-weight: 600;
    }
}

/*選ばれる6つの理由*/
.oemReason {
    width: 100%;
    padding: 100px 0 0;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(-10deg,#fff 0%,#fafafa 50%,transparent 50%,transparent 100%) fixed #fff!important;
}
#all_wrap .l-wrapper-full .oemReason > h2 {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    text-align: center;
    padding: 0;
    margin: 0 auto 40px;
    font-size: 30px;
    line-height: 1.4em;
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    color: #262626;
    white-space: nowrap;
    position: relative;
}
#all_wrap .l-wrapper-full .oemReason > h2::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    padding: 0;
    margin: 0 20px 0 0;
    background: linear-gradient(to left, rgba(0,84,145,1) 0, rgba(0,84,145,0) 80%);
}
#all_wrap .l-wrapper-full .oemReason > h2::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    padding: 0;
    margin: 0 0 0 20px;
    background: linear-gradient(to right, rgba(0,84,145,1) 0, rgba(0,84,145,0) 80%);
}

.oemReason > ul {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    list-style: none;
}
.oemReason > ul > li:nth-child(odd) {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.oemReason > ul > li:nth-child(even) {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.oemReason > ul > li::before,
.oemReason > ul > li::after {
    display: none;
}
.oemReason > ul > li:nth-child(odd) > .oemReasonInfo {
    width: 42%;
    padding: 50px 50px 50px 0;
    margin: 0;
    display: flex;
    display: -webkit-flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.oemReason > ul > li:nth-child(even) > .oemReasonInfo {
    width: 42%;
    padding: 50px 0 50px 50px;
    margin: 0;
    order: 1;
    display: flex;
    display: -webkit-flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.oemReason > ul > li > figure {
    width: 50%;
    padding: 0;
    margin: 0;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.oemReason > ul > li > figure::before {
    content: '';
    display: block;
    padding-top: 56.25%;
}
.oemReason > ul > li > figure img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}
#all_wrap .l-wrapper-full .oemReason h3 {
    padding: 0 0 0 90px;
    margin: 0 0 20px;
    position: relative;
}
#all_wrap .l-wrapper-full .oemReason h3 > span {
    display: block;
    width: 75px;
    line-height: 0;
    font-weight: 500;
    color: #005491;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
}
#all_wrap .l-wrapper-full .oemReason h3 > span img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*選ばれる6つの理由*/
    .oemReason {
        width: 100%;
        padding: 40px 0 0;
        margin: 0 auto;
        position: relative;
        background: linear-gradient(-10deg,#fff 0%,#fafafa 50%,transparent 50%,transparent 100%) fixed #fff!important;
    }
    #all_wrap .l-wrapper-full .oemReason > h2 {
        width: 90%;
        display: flex;
        display: -webkit-flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: nowrap;
        text-align: center;
        padding: 0;
        margin: 0 auto 20px;
        font-size: 18px;
        line-height: 1.4em;
        font-family: ten-mincho, serif;
        font-style: normal;
        font-weight: 400;
        color: #262626;
        white-space: nowrap;
        position: relative;
    }
    #all_wrap .l-wrapper-full .oemReason > h2::before {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        padding: 0;
        margin: 0 10px 0 0;
        background: linear-gradient(to left, rgba(0,84,145,1) 0, rgba(0,84,145,0) 80%);
    }
    #all_wrap .l-wrapper-full .oemReason > h2::after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        padding: 0;
        margin: 0 0 0 10px;
        background: linear-gradient(to right, rgba(0,84,145,1) 0, rgba(0,84,145,0) 80%);
    }

    .oemReason > ul {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        list-style: none;
    }
    .oemReason > ul > li:nth-child(odd) {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        display: flex;
        display: -webkit-flex;
        justify-content: flex-end;
        flex-wrap: wrap;
    }
    .oemReason > ul > li:nth-child(even) {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        display: flex;
        display: -webkit-flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .oemReason > ul > li::before,
    .oemReason > ul > li::after {
        display: none;
    }
    .oemReason > ul > li:nth-child(odd) > .oemReasonInfo {
        width: 100%;
        padding: 30px;
        margin: 0;
        display: flex;
        display: -webkit-flex;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
        order: 1;
    }
    .oemReason > ul > li:nth-child(even) > .oemReasonInfo {
        width: 100%;
        padding: 30px;
        margin: 0;
        order: 1;
        display: flex;
        display: -webkit-flex;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
        order: 1;
    }
    .oemReason > ul > li > figure {
        width: 90%;
        padding: 0;
        margin: 0;
        text-align: center;
        overflow: hidden;
        position: relative;
    }
    .oemReason > ul > li > figure::before {
        content: '';
        display: block;
        padding-top: 56.25%;
    }
    .oemReason > ul > li > figure img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        object-fit: cover;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
    }
    #all_wrap .l-wrapper-full .oemReason h3 {
        padding: 0 0 0 50px;
        margin: 0 0 20px;
        font-size: 16px;
        line-height: 1.2em;
        position: relative;
    }
    #all_wrap .l-wrapper-full .oemReason h3 > span {
        display: block;
        width: 35px;
        line-height: 0;
        font-weight: 500;
        color: #005491;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(0,-50%);
        -webkit-transform: translate(0,-50%);
    }
}

/*よくある質問*/
.oemFaq {
    width: 100%;
    padding: 100px 0 100px;
    margin: 0 auto;
    position: relative;
    background: #fff;
}
#all_wrap .l-wrapper-full .oemFaq > h2 {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    text-align: center;
    padding: 0;
    margin: 0 auto 40px;
    font-size: 30px;
    line-height: 1.4em;
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    color: #262626;
    white-space: nowrap;
    position: relative;
}
#all_wrap .l-wrapper-full .oemFaq > h2::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    padding: 0;
    margin: 0 20px 0 0;
    background: linear-gradient(to left, rgba(0,84,145,1) 0, rgba(0,84,145,0) 80%);
}
#all_wrap .l-wrapper-full .oemFaq > h2::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    padding: 0;
    margin: 0 0 0 20px;
    background: linear-gradient(to right, rgba(0,84,145,1) 0, rgba(0,84,145,0) 80%);
}

.oemFaq .faqList {
    width: 100%;
    max-width: 1000px;
    padding: 0;
    margin: 0 auto;
}
.oemFaq .faqList dl {
    width: 100%;
    padding: 0;
    margin: 0 auto 10px;
}
.oemFaq .faqList dl dt {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    background: #F4F4F4;
    position: relative;
    padding: 0;
    margin: 0;
    cursor: pointer;
}
.oemFaq .faqList dl dt::before {
    content: 'Q';
    display: block;
    width: auto;
    height: 100%;
    padding: 15px 20px 20px;
    margin: 0 20px 0 0;
    font-size: 30px;
    line-height: 1;
    color: #fff;
    background: #005491;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    border-right: 1px solid #fff;
}
.oemFaq .faqList dl dt span::before,
.oemFaq .faqList dl dt span::after {
    content: '';
    display: block;
    width: 12px;
    height: 2px;
    border-radius: 5px;
    background: #005491;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.oemFaq .faqList dl dt span::after {
    background: #005491;
    transform: translateY(-50%) rotate(90deg);
    transition: 0.5s;
}
#all_wrap .faqList .active dt span::after {
    transform: rotate(0);
    transition: 0.5s;
}
.oemFaq .faqList dl dd {
    padding: 30px;
    margin: 0;
    background: #fafafa;
}
#all_wrap .l-wrapper-full .content .oemFaq .faqList dl dd p:last-of-type {
    margin-bottom: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*よくある質問*/
    .oemFaq {
        width: 100%;
        padding: 40px 0 40px;
        margin: 0 auto;
        position: relative;
        background: #fff;
    }
    #all_wrap .l-wrapper-full .oemFaq > h2 {
        width: 90%;
        display: flex;
        display: -webkit-flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: nowrap;
        text-align: center;
        padding: 0;
        margin: 0 auto 20px;
        font-size: 18px;
        line-height: 1.4em;
        font-family: ten-mincho, serif;
        font-style: normal;
        font-weight: 400;
        color: #262626;
        white-space: nowrap;
        position: relative;
    }
    #all_wrap .l-wrapper-full .oemFaq > h2::before {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        padding: 0;
        margin: 0 10px 0 0;
        background: linear-gradient(to left, rgba(0,84,145,1) 0, rgba(0,84,145,0) 80%);
    }
    #all_wrap .l-wrapper-full .oemFaq > h2::after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        padding: 0;
        margin: 0 0 0 10px;
        background: linear-gradient(to right, rgba(0,84,145,1) 0, rgba(0,84,145,0) 80%);
    }

    .oemFaq .faqList {
        width: 90%;
        max-width: 90%;
        padding: 0;
        margin: 0 auto;
    }
    .oemFaq .faqList dl {
        width: 100%;
        padding: 0;
        margin: 0 auto 10px;
    }
    .oemFaq .faqList dl dt {
        width: 100%;
        display: flex;
        display: -webkit-flex;
        justify-content: flex-start;
        align-content: center;
        align-items: center;
        flex-wrap: nowrap;
        background: #F4F4F4;
        position: relative;
        padding: 10px 40px 10px 10px;
        margin: 0;
        cursor: pointer;
        font-size: 12px;
        line-height: 1.2em;
    }
    .oemFaq .faqList dl dt::before {
        content: 'Q';
        display: block;
        width: auto;
        height: 100%;
        padding: 10px 15px 15px;
        margin: 0 10px 0 0;
        font-size: 20px;
        line-height: 1;
        color: #fff;
        background: #005491;
        display: flex;
        display: -webkit-flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: nowrap;
        border-right: 1px solid #fff;
    }
    .oemFaq .faqList dl dt span::before,
    .oemFaq .faqList dl dt span::after {
        content: '';
        display: block;
        width: 12px;
        height: 2px;
        border-radius: 5px;
        background: #005491;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    .oemFaq .faqList dl dt span::after {
        background: #005491;
        transform: translateY(-50%) rotate(90deg);
        transition: 0.5s;
    }
    #all_wrap .faqList .active dt span::after {
        transform: rotate(0);
        transition: 0.5s;
    }
    .oemFaq .faqList dl dd {
        padding: 20px;
        margin: 0;
        background: #fafafa;
    }
    #all_wrap .l-wrapper-full .content .oemFaq .faqList dl dd p:last-of-type {
        margin-bottom: 0;
    }
    .oemForm {
        width: 90%;
        padding: 0;
        margin: 0 auto;
    }
}

/*お問い合わせ*/
.oemContact {
    width: 100%;
    padding: 100px 0 100px;
    margin: 0 auto;
    position: relative;
    background: #fff;
}
#all_wrap .l-wrapper-full .oemContact > h2 {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    text-align: center;
    padding: 0;
    margin: 0 auto 40px;
    font-size: 30px;
    line-height: 1.4em;
    font-family: ten-mincho, serif;
    font-style: normal;
    font-weight: 400;
    color: #262626;
    white-space: nowrap;
    position: relative;
}
#all_wrap .l-wrapper-full .oemContact > h2::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    padding: 0;
    margin: 0 20px 0 0;
    background: linear-gradient(to left, rgba(0,84,145,1) 0, rgba(0,84,145,0) 80%);
}
#all_wrap .l-wrapper-full .oemContact > h2::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    padding: 0;
    margin: 0 0 0 20px;
    background: linear-gradient(to right, rgba(0,84,145,1) 0, rgba(0,84,145,0) 80%);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*お問い合わせ*/
    .oemContact {
        width: 100%;
        padding: 40px 0 40px;
        margin: 0 auto;
        position: relative;
        background: #fff;
    }
    #all_wrap .l-wrapper-full .oemContact > h2 {
        width: 90%;
        display: flex;
        display: -webkit-flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: nowrap;
        text-align: center;
        padding: 0;
        margin: 0 auto 20px;
        font-size: 18px;
        line-height: 1.4em;
        font-family: ten-mincho, serif;
        font-style: normal;
        font-weight: 400;
        color: #262626;
        white-space: nowrap;
        position: relative;
    }
    #all_wrap .l-wrapper-full .oemContact > h2::before {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        padding: 0;
        margin: 0 10px 0 0;
        background: linear-gradient(to left, rgba(0,84,145,1) 0, rgba(0,84,145,0) 80%);
    }
    #all_wrap .l-wrapper-full .oemContact > h2::after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        padding: 0;
        margin: 0 0 0 10px;
        background: linear-gradient(to right, rgba(0,84,145,1) 0, rgba(0,84,145,0) 80%);
    }
}


/************************************************************/
/*　国際証明書
/************************************************************/
/*メニュー*/
#all_wrap #certificateMenu {
    width: 100%;
    padding: 0;
    margin: 0 auto 100px;
}
#all_wrap #certificateMenu > ul {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    flex-wrap: nowrap;
}
#all_wrap #certificateMenu > ul > li {
    width: 25%;
    padding: 0;
    margin: 0 10px;
}
#all_wrap #certificateMenu > ul > li a {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 20px;
    margin: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 1em;
    color: #fff;
    background: #B40000;
    border-radius: 40px;
    transition: all 0.5s ease;
}
#all_wrap #certificateMenu > ul > li a:hover {
    background: #D60000;
    transition: all 0.5s ease;
}
#all_wrap .catDescription {
    padding: 0;
    margin: 0 auto 20px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*メニュー*/
    #all_wrap #certificateMenu {
        width: 100%;
        padding: 0;
        margin: 0 auto 50px;
    }
    #all_wrap #certificateMenu > ul {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        list-style: none;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    #all_wrap #certificateMenu > ul > li {
        width: 31%;
        padding: 0;
        margin: 0;
    }
    #all_wrap #certificateMenu > ul > li a {
        display: flex;
        display: -webkit-flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
        padding: 10px 10px;
        margin: 0;
        text-align: center;
        font-size: 14px;
        font-weight: 400;
        line-height: 1em;
        color: #fff;
        background: #B40000;
        border-radius: 30px;
        transition: all 0.5s ease;
    }
    #all_wrap #certificateMenu > ul > li a:hover {
        background: #D60000;
        transition: all 0.5s ease;
    }
    #all_wrap .catDescription {
        padding: 0;
        margin: 0 auto 20px;
    }
}

/*リスト*/
#all_wrap .certificateList {
    width: 100%;
    padding: 0;
    margin: 0 auto 100px;
    list-style: none;
}
#all_wrap .certificateList > li {
    width: 100%;
    padding: 30px;
    margin: 0 auto 30px;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #fafafa;
}
#all_wrap .certificateList > li > h3 {
    width: 100%;
    padding: 0 0 0 20px;
    margin: 0 auto 20px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5em;
    background: none;
    border: none;
    border-left: solid 10px #7db4e6;
    color: #364e96;
    position: relative;
}
#all_wrap .certificateList > li figure {
    width: 25%;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: #fff;
}
#all_wrap .certificateList > li figure::before {
    content: '';
    display: block;
    padding-top: 75%;
}
#all_wrap .certificateList > li figure img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}
#all_wrap .certificateList > li .certificateListInfo {
    width: 75%;
    padding: 0 0 0 40px;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    display: -webkit-flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
}
#all_wrap .certificateList > li .certificateListInfo p {
    padding: 0;
    margin: 0 auto 10px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*リスト*/
    #all_wrap .certificateList {
        width: 100%;
        padding: 0;
        margin: 0 auto 30px;
        list-style: none;
    }
    #all_wrap .certificateList > li {
        width: 100%;
        padding: 20px;
        margin: 0 auto 20px;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: wrap;
        background: #fafafa;
    }
    #all_wrap .certificateList > li > h3 {
        width: 100%;
        padding: 0 0 0 15px;
        margin: 0 auto 15px;
        font-size: 17px;
        font-weight: 400;
        line-height: 1.4em;
        background: none;
        border: none;
        border-left: solid 5px #7db4e6;
        color: #364e96;
        position: relative;
    }
    #all_wrap .certificateList > li figure {
        width: 100%;
        padding: 0;
        margin: 0 auto 15px;
        position: relative;
        overflow: hidden;
        text-align: center;
    }
    #all_wrap .certificateList > li figure::before {
        content: '';
        display: block;
        padding-top: 75%;
    }
    #all_wrap .certificateList > li figure img {
        width: auto;
        height: 100%;
        padding: 0;
        margin: 0;
        object-fit: cover;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
    }
    #all_wrap .certificateList > li .certificateListInfo {
        width: 100%;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        display: flex;
        display: -webkit-flex;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    #all_wrap .certificateList > li .certificateListInfo p {
        padding: 0;
        margin: 0 auto 10px;
    }
}

/************************************************************/
/*　フレックステーブル
/************************************************************/
/*表*/
#all_wrap .l-wrapper .pageContents table.flexTable,
#all_wrap .l-wrapper .postContents table.flexTable{
    overflow: hidden;
    table-layout: fixed;
    border: none;
}
#all_wrap .l-wrapper .pageContents table.flexTable th,
#all_wrap .l-wrapper .postContents table.flexTable th {
    font-weight:bold;
    border: none;
    border-bottom: none;
    vertical-align: inherit;
    background: #fff;
    color: #000;
    padding: 10px;
    margin: 0;
    margin-bottom: 10px;
    border-bottom: 10px solid #fff;
    width: 20%;
}
#all_wrap .l-wrapper .pageContents table.flexTable td,
#all_wrap .l-wrapper .postContents table.flexTable td {
    border: none;
    vertical-align: inherit;
    border-bottom: none;
    padding: 10px;
    margin: 0;
    background: #fff;
    margin-bottom: 10px;
    border-bottom: 10px solid #fff;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap .l-wrapper .pageContents table.flexTable tr,
    #all_wrap .l-wrapper .postContents table.flexTable tr {
        display: flex;
        display: -webkit-flex;
        flex-wrap: wrap;
        width: 100%;
    }
    #all_wrap .l-wrapper .pageContents table.flexTable th,
    #all_wrap .l-wrapper .postContents table.flexTable th {
        font-weight:bold;
        border: none;
        border-bottom: none;
        vertical-align: inherit;
        background: #d1dcdd;
        color: #000;
        padding: 20px;
        margin: 0;
        margin-bottom: 0;
        border-bottom: none;
        font-size: 0.8em;
        line-height: 1.5em;
        width: 100% !important;
    }
    #all_wrap .l-wrapper .pageContents table.flexTable td,
    #all_wrap .l-wrapper .postContents table.flexTable td {
        border: none;
        background: #fff;
        vertical-align: inherit;
        border-bottom: none;
        padding: 20px;
        margin: 0;
        background: #fafafa;
        margin-bottom: 0;
        border-bottom: none;
        font-size: 0.9em;
        line-height: 1.5em;
        width: 100% !important;
    }
    #all_wrap .l-wrapper .pageContents table.flexTable td:last-of-type,
    #all_wrap .l-wrapper .postContents table.flexTable td:last-of-type {
        padding: 0 20px;
    }
    #all_wrap .l-wrapper .pageContents table.flexTable td p:first-of-type,
    #all_wrap .l-wrapper .postContents table.flexTable td p:first-of-type {
        padding-top: 0;
        margin-top: 0;
    }
    #all_wrap .l-wrapper .pageContents table.flexTable th,
    #all_wrap .l-wrapper .pageContents table.flexTable td,
    #all_wrap .l-wrapper .pageContents table.flexTable tr,
    #all_wrap .l-wrapper .pageContents table.flexTable tbody,
    #all_wrap .l-wrapper .pageContents table.flexTable {
        display: block;
        width: 100%;
    }
}



/************************************************************/
/*　検査結果テーブル
/************************************************************/
/*表1*/
#all_wrap .l-wrapper .pageContents table.reportTable,
#all_wrap .l-wrapper .postContents table.reportTable {
    overflow: hidden;
    table-layout: fixed;
    border: none;
    margin: 0 auto 100px;
    border-bottom: 1px solid #f1f1f1;
}
#all_wrap .l-wrapper .pageContents table.reportTable tr,
#all_wrap .l-wrapper .postContents table.reportTable tr {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}
#all_wrap .l-wrapper .pageContents table.reportTable th,
#all_wrap .l-wrapper .postContents table.reportTable th {
    font-weight:bold;
    border: none;
    vertical-align: inherit;
    background: #dfebf6;
    color: #477ab9;
    padding: 10px;
    margin: 0;
    border-bottom: 1px solid #477ab9;
}
#all_wrap .l-wrapper .pageContents table.reportTable tr:nth-child(odd) td,
#all_wrap .l-wrapper .postContents table.reportTable tr:nth-child(odd) td {
    border: none;
    vertical-align: inherit;
    padding: 10px 15px;
    margin: 0;
    background: #dfebf6;
    color: #242424;
}
#all_wrap .l-wrapper .pageContents table.reportTable tr:nth-child(even) td,
#all_wrap .l-wrapper .postContents table.reportTable tr:nth-child(even) td {
    border: none;
    vertical-align: inherit;
    padding: 10px 15px;
    margin: 0;
    background: #fff;
    color: #242424;
}
#all_wrap .l-wrapper .pageContents table.reportTable tr th:first-of-type,
#all_wrap .l-wrapper .postContents table.reportTable tr th:first-of-type,
#all_wrap .l-wrapper .pageContents table.reportTable tr td:first-of-type,
#all_wrap .l-wrapper .postContents table.reportTable tr td:first-of-type {
    border-right: 1px solid #f1f1f1;
    width: 20% !important;
    max-width: 120px;
    text-align: center;
}
#all_wrap .l-wrapper .pageContents table.reportTable tr:nth-child(odd) th:first-of-type,
#all_wrap .l-wrapper .postContents table.reportTable tr:nth-child(odd) th:first-of-type,
#all_wrap .l-wrapper .pageContents table.reportTable tr:nth-child(odd) td:first-of-type,
#all_wrap .l-wrapper .postContents table.reportTable tr:nth-child(odd) td:first-of-type {
    border-right: 1px solid #fff;
    width: 20% !important;
    max-width: 120px;
    text-align: center;
}
#all_wrap .l-wrapper .pageContents table.reportTable tr th:last-of-type,
#all_wrap .l-wrapper .postContents table.reportTable tr th:last-of-type,
#all_wrap .l-wrapper .pageContents table.reportTable tr td:last-of-type,
#all_wrap .l-wrapper .postContents table.reportTable tr td:last-of-type {
    width: 100% !important;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*表1*/
    #all_wrap .l-wrapper .pageContents table.reportTable,
    #all_wrap .l-wrapper .postContents table.reportTable {
        overflow: hidden;
        table-layout: fixed;
        border: none;
        margin: 0 auto 50px;
        border-bottom: 1px solid #f1f1f1;
    }
    #all_wrap .l-wrapper .pageContents table.reportTable tr,
    #all_wrap .l-wrapper .postContents table.reportTable tr {
        width: 100%;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    #all_wrap .l-wrapper .pageContents table.reportTable th,
    #all_wrap .l-wrapper .postContents table.reportTable th {
        font-weight:bold;
        border: none;
        vertical-align: inherit;
        background: #dfebf6;
        color: #477ab9;
        padding: 10px;
        margin: 0;
        border-bottom: 1px solid #477ab9;
        font-size: 14px;
        line-height: 1.2em;
    }
    #all_wrap .l-wrapper .pageContents table.reportTable tr:nth-child(odd) td,
    #all_wrap .l-wrapper .postContents table.reportTable tr:nth-child(odd) td {
        border: none;
        vertical-align: inherit;
        padding: 10px 10px;
        margin: 0;
        background: #dfebf6;
        color: #242424;
        font-size: 14px;
        line-height: 1.2em;
    }
    #all_wrap .l-wrapper .pageContents table.reportTable tr:nth-child(even) td,
    #all_wrap .l-wrapper .postContents table.reportTable tr:nth-child(even) td {
        border: none;
        vertical-align: inherit;
        padding: 10px 10px;
        margin: 0;
        background: #fff;
        color: #242424;
        font-size: 14px;
        line-height: 1.2em;
    }
    #all_wrap .l-wrapper .pageContents table.reportTable tr th:first-of-type,
    #all_wrap .l-wrapper .postContents table.reportTable tr th:first-of-type,
    #all_wrap .l-wrapper .pageContents table.reportTable tr td:first-of-type,
    #all_wrap .l-wrapper .postContents table.reportTable tr td:first-of-type {
        border-right: 1px solid #f1f1f1;
        width: 25% !important;
        max-width: 25%;
        text-align: center;
        font-size: 14px;
        line-height: 1.2em;
    }
    #all_wrap .l-wrapper .pageContents table.reportTable tr:nth-child(odd) th:first-of-type,
    #all_wrap .l-wrapper .postContents table.reportTable tr:nth-child(odd) th:first-of-type,
    #all_wrap .l-wrapper .pageContents table.reportTable tr:nth-child(odd) td:first-of-type,
    #all_wrap .l-wrapper .postContents table.reportTable tr:nth-child(odd) td:first-of-type {
        border-right: 1px solid #fff;
        width: 25% !important;
        max-width: 25%;
        text-align: center;
        font-size: 14px;
        line-height: 1.2em;
    }
    #all_wrap .l-wrapper .pageContents table.reportTable tr th:last-of-type,
    #all_wrap .l-wrapper .postContents table.reportTable tr th:last-of-type,
    #all_wrap .l-wrapper .pageContents table.reportTable tr td:last-of-type,
    #all_wrap .l-wrapper .postContents table.reportTable tr td:last-of-type {
        width: 100% !important;
    }
}


/*表2*/
#all_wrap .l-wrapper .pageContents table.resultTable,
#all_wrap .l-wrapper .postContents table.resultTable {
    overflow: hidden;
    table-layout: fixed;
    border: none;
    padding: 0;
    margin: 0 auto 100px;
    border-bottom: 1px solid #f1f1f1;
}
#all_wrap .l-wrapper .pageContents table.resultTable tr,
#all_wrap .l-wrapper .postContents table.resultTable tr {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}
#all_wrap .l-wrapper .pageContents table.resultTable th,
#all_wrap .l-wrapper .postContents table.resultTable th {
    font-weight:bold;
    border: none;
    vertical-align: inherit;
    background: #e4eedc;
    color: #8ba46c;
    padding: 10px;
    margin: 0;
    border-bottom: 1px solid #8ba46c;
}
#all_wrap .l-wrapper .pageContents table.resultTable tr:nth-child(odd) td,
#all_wrap .l-wrapper .postContents table.resultTable tr:nth-child(odd) td {
    border: none;
    vertical-align: inherit;
    padding: 10px 15px;
    margin: 0;
    background: #e4eedc;
    color: #242424;
}
#all_wrap .l-wrapper .pageContents table.resultTable tr:nth-child(even) td,
#all_wrap .l-wrapper .postContents table.resultTable tr:nth-child(even) td {
    border: none;
    vertical-align: inherit;
    padding: 10px 15px;
    margin: 0;
    background: #fff;
    color: #242424;
}
#all_wrap .l-wrapper .pageContents table.resultTable tr th:first-of-type,
#all_wrap .l-wrapper .postContents table.resultTable tr th:first-of-type,
#all_wrap .l-wrapper .pageContents table.resultTable tr td:first-of-type,
#all_wrap .l-wrapper .postContents table.resultTable tr td:first-of-type {
    border-right: 1px solid #f1f1f1;
    width: 20% !important;
    max-width: 120px;
    text-align: center;
}
#all_wrap .l-wrapper .pageContents table.resultTable tr:nth-child(odd) th:first-of-type,
#all_wrap .l-wrapper .postContents table.resultTable tr:nth-child(odd) th:first-of-type,
#all_wrap .l-wrapper .pageContents table.resultTable tr:nth-child(odd) td:first-of-type,
#all_wrap .l-wrapper .postContents table.resultTable tr:nth-child(odd) td:first-of-type {
    border-right: 1px solid #fff;
    width: 20% !important;
    max-width: 120px;
    text-align: center;
}
#all_wrap .l-wrapper .pageContents table.resultTable tr th:last-of-type,
#all_wrap .l-wrapper .postContents table.resultTable tr th:last-of-type,
#all_wrap .l-wrapper .pageContents table.resultTable tr td:last-of-type,
#all_wrap .l-wrapper .postContents table.resultTable tr td:last-of-type {
    width: 100% !important;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*表2*/
    #all_wrap .l-wrapper .pageContents table.resultTable,
    #all_wrap .l-wrapper .postContents table.resultTable {
        overflow: hidden;
        table-layout: fixed;
        border: none;
        padding: 0;
        margin: 0 auto 50px;
        border-bottom: 1px solid #f1f1f1;
    }
    #all_wrap .l-wrapper .pageContents table.resultTable tr,
    #all_wrap .l-wrapper .postContents table.resultTable tr {
        width: 100%;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    #all_wrap .l-wrapper .pageContents table.resultTable th,
    #all_wrap .l-wrapper .postContents table.resultTable th {
        font-weight:bold;
        border: none;
        vertical-align: inherit;
        background: #e4eedc;
        color: #8ba46c;
        padding: 10px;
        margin: 0;
        border-bottom: 1px solid #8ba46c;
        font-size: 14px;
        line-height: 1.2em;
    }
    #all_wrap .l-wrapper .pageContents table.resultTable tr:nth-child(odd) td,
    #all_wrap .l-wrapper .postContents table.resultTable tr:nth-child(odd) td {
        border: none;
        vertical-align: inherit;
        padding: 10px 10px;
        margin: 0;
        background: #e4eedc;
        color: #242424;
        font-size: 14px;
        line-height: 1.2em;
    }
    #all_wrap .l-wrapper .pageContents table.resultTable tr:nth-child(even) td,
    #all_wrap .l-wrapper .postContents table.resultTable tr:nth-child(even) td {
        border: none;
        vertical-align: inherit;
        padding: 10px 10px;
        margin: 0;
        background: #fff;
        color: #242424;
        font-size: 14px;
        line-height: 1.2em;
    }
    #all_wrap .l-wrapper .pageContents table.resultTable tr th:first-of-type,
    #all_wrap .l-wrapper .postContents table.resultTable tr th:first-of-type,
    #all_wrap .l-wrapper .pageContents table.resultTable tr td:first-of-type,
    #all_wrap .l-wrapper .postContents table.resultTable tr td:first-of-type {
        border-right: 1px solid #f1f1f1;
        width: 50% !important;
        max-width: 50%;
        text-align: center;
        font-size: 14px;
        line-height: 1.2em;
    }
    #all_wrap .l-wrapper .pageContents table.resultTable tr:nth-child(odd) th:first-of-type,
    #all_wrap .l-wrapper .postContents table.resultTable tr:nth-child(odd) th:first-of-type,
    #all_wrap .l-wrapper .pageContents table.resultTable tr:nth-child(odd) td:first-of-type,
    #all_wrap .l-wrapper .postContents table.resultTable tr:nth-child(odd) td:first-of-type {
        border-right: 1px solid #fff;
        width: 50% !important;
        max-width: 50%;
        text-align: center;
        font-size: 14px;
        line-height: 1.2em;
    }
    #all_wrap .l-wrapper .pageContents table.resultTable tr th:last-of-type,
    #all_wrap .l-wrapper .postContents table.resultTable tr th:last-of-type,
    #all_wrap .l-wrapper .pageContents table.resultTable tr td:last-of-type,
    #all_wrap .l-wrapper .postContents table.resultTable tr td:last-of-type {
        width: 100% !important;
        font-size: 14px;
        line-height: 1.2em;
    }
}


/************************************************************/
/*　アーカイブリスト
/************************************************************/
#all_wrap .archiveList {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#all_wrap .archiveList > li {
    width: 31%;
    padding: 15px;
    margin: 0 0 30px;
    background: #fafafa;
}
#all_wrap .archiveList > li::before,
#all_wrap .archiveList > li::after {
    display: none;
}
#all_wrap .archiveList > li figure {
    width: 100%;
    padding: 0;
    margin: 0 auto 10px;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: #fff;
}
#all_wrap .archiveList > li figure::before {
    content: '';
    display: block;
    padding-top: 75%;
}
#all_wrap .archiveList > li figure img {
    width: auto;
    height: 100%;
    padding: 0;
    margin: 0;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}
#all_wrap .archiveList > li .archiveListDate {
    display: inline-block;
    padding: 5px 0;
    margin: 0 0 5px;
    background: none;
    color: #272727;
    font-size: 12px;
    line-height: 1;
}
#all_wrap .archiveList > li h3 {
    padding: 0;
    margin: 0;
    border: none;
    background: none;
}
#all_wrap .archiveList > li h3 a {
    transition: all 0.5s ease;
    line-height: 1.4em;
}
#all_wrap .archiveList > li h3 a:hover {
    color: #005491;
    transition: all 0.5s ease;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap .archiveList {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        list-style: none;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    #all_wrap .archiveList > li {
        width: 100%;
        padding: 15px;
        margin: 0 0 20px;
        background: #fafafa;
    }
    #all_wrap .archiveList > li::before,
    #all_wrap .archiveList > li::after {
        display: none;
    }
    #all_wrap .archiveList > li figure {
        width: 100%;
        padding: 0;
        margin: 0 auto 10px;
        position: relative;
        overflow: hidden;
        text-align: center;
        background: #fff;
    }
    #all_wrap .archiveList > li figure::before {
        content: '';
        display: block;
        padding-top: 75%;
    }
    #all_wrap .archiveList > li figure img {
        width: auto;
        height: 100%;
        padding: 0;
        margin: 0;
        object-fit: cover;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
    }
    #all_wrap .archiveList > li .archiveListDate {
        display: inline-block;
        padding: 5px 0;
        margin: 0 0 5px;
        background: none;
        color: #272727;
        font-size: 12px;
        line-height: 1;
    }
    #all_wrap .archiveList > li h3 {
        padding: 0;
        margin: 0;
        border: none;
        background: none;
    }
    #all_wrap .archiveList > li h3 a {
        transition: all 0.5s ease;
        line-height: 1.4em;
    }
    #all_wrap .archiveList > li h3 a:hover {
        color: #005491;
        transition: all 0.5s ease;
    }
}


/************************************************************/
/*　アーカイブリスト
/************************************************************/
#all_wrap .csrList {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#all_wrap .csrList > li {
    width: 100%;
    padding: 30px;
    margin: 0 0 30px;
    background: #fafafa;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#all_wrap .csrList > li::before,
#all_wrap .csrList > li::after {
    display: none;
}
#all_wrap .csrList > li figure {
    width: 30%;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: #fff;
}
#all_wrap .csrList > li figure::before {
    content: '';
    display: block;
    padding-top: 75%;
}
#all_wrap .csrList > li figure img {
    width: auto;
    height: 100%;
    padding: 0;
    margin: 0;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}
#all_wrap .csrList > li .csrListInfo {
    width: 70%;
    padding: 0 0 0 30px;
    margin: 0;
    box-sizing: border-box;
}
#all_wrap .csrList > li h3 {
    padding: 0 0 0 15px;
    margin: 0 auto 10px;
    border: none;
    background: none;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5em;
    background: none;
    border: none;
    border-left: solid 5px #7db4e6;
}
#all_wrap .csrList > li h3 a {
    color: #364e96;
    transition: all 0.5s ease;
}
#all_wrap .csrList > li h3 a:hover {
    color: #D60000;
    transition: all 0.5s ease;
}
#all_wrap .csrList > li p {
    font-size: 14px;
    line-height: 1.7em;
    padding: 0;
    margin: 0 auto 20px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap .csrList {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        list-style: none;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    #all_wrap .csrList > li {
        width: 100%;
        padding: 20px;
        margin: 0 0 20px;
        background: #fafafa;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    #all_wrap .csrList > li::before,
    #all_wrap .csrList > li::after {
        display: none;
    }
    #all_wrap .csrList > li figure {
        width: 100%;
        padding: 0;
        margin: 0 auto 15px;
        position: relative;
        overflow: hidden;
        text-align: center;
        background: #fff;
    }
    #all_wrap .csrList > li figure::before {
        content: '';
        display: block;
        padding-top: 75%;
    }
    #all_wrap .csrList > li figure img {
        width: auto;
        height: 100%;
        padding: 0;
        margin: 0;
        object-fit: cover;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
    }
    #all_wrap .csrList > li .csrListInfo {
        width: 100%;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }
    #all_wrap .csrList > li h3 {
        padding: 0 0 0 15px;
        margin: 0 auto 10px;
        border: none;
        background: none;
        font-size: 17px;
        font-weight: 500;
        line-height: 1.5em;
        background: none;
        border: none;
        border-left: solid 5px #7db4e6;
    }
    #all_wrap .csrList > li h3 a {
        color: #364e96;
        transition: all 0.5s ease;
    }
    #all_wrap .csrList > li h3 a:hover {
        color: #D60000;
        transition: all 0.5s ease;
    }
    #all_wrap .csrList > li p {
        font-size: 14px;
        line-height: 1.7em;
        padding: 0;
        margin: 0 auto 15px;
    }
}


/************************************************************/
/*　製造から納期までの流れ
/************************************************************/
#all_wrap .l-wrapper .pageContents .content .flowBox > h3 {
    padding: 0;
    margin: 0 auto 10px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4em;
    background-color: none;
    border-radius: 0;
    border: none;
    color: #364e96;
    text-align: center;
    position: relative;
}
#all_wrap .l-wrapper .pageContents .content .flowBox > strong {
    display: block;
    padding: 0;
    margin: 0 auto 30px;
    color: #262626;
    text-align: center;
}
#all_wrap .l-wrapper .pageContents .content .flowBox > ul {
    width: 100%;
    padding: 0;
    margin: 0 auto 20px;
    list-style: none;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    flex-wrap: wrap;
}
#all_wrap .l-wrapper .pageContents .content .flowBox > ul > li {
    width: auto;
    padding: 0;
    margin: 0 20px;
    border: 1px solid #f0ad4e;
}
#all_wrap .l-wrapper .pageContents .content .flowBox > ul > li::before,
#all_wrap .l-wrapper .pageContents .content .flowBox > ul > li::after {
    display: none;
}
#all_wrap .l-wrapper .pageContents .content .flowBox > ul > li::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 10px solid #f0ad4e;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-radius: 0;
    background: none;
    position: absolute;
    top: 50%;
    left: unset;
    right: -25px;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    z-index: 2;
}
#all_wrap .l-wrapper .pageContents .content .flowBox > ul:last-of-type > li:last-child::before {
    display: none;
}
#all_wrap .l-wrapper .pageContents .content .flowBox > ul > li > span {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 0;
    background: #f0ad4e;
    color: #fff;
    text-align: center;
    font-size: 18px;
    line-height: 1;
}
#all_wrap .l-wrapper .pageContents .content .flowBox > ul > li > p {
    padding: 10px;
    margin: 0;
    background: #fff;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap .l-wrapper .pageContents .content .flowBox > h3 {
        padding: 0;
        margin: 0 auto 10px;
        font-size: 17px;
        font-weight: 600;
        line-height: 1.4em;
        background-color: none;
        border-radius: 0;
        border: none;
        color: #364e96;
        text-align: center;
        position: relative;
    }
    #all_wrap .l-wrapper .pageContents .content .flowBox > strong {
        display: block;
        padding: 0;
        margin: 0 auto 20px;
        color: #262626;
        text-align: center;
        line-height: 1.4em;
    }
    #all_wrap .l-wrapper .pageContents .content .flowBox > ul {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        list-style: none;
        display: flex;
        display: -webkit-flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    #all_wrap .l-wrapper .pageContents .content .flowBox > ul > li {
        width: 100%;
        padding: 0;
        margin: 0 auto 20px;
        border: 1px solid #f0ad4e;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    #all_wrap .l-wrapper .pageContents .content .flowBox > ul > li::before,
    #all_wrap .l-wrapper .pageContents .content .flowBox > ul > li::after,
    #all_wrap .l-wrapper .pageContents .content .flowBox > ul > li br {
        display: none;
    }
    #all_wrap .l-wrapper .pageContents .content .flowBox > ul > li::before {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #f0ad4e;
        border-bottom: none;
        border-radius: 0;
        background: none;
        position: absolute;
        top: unset;
        bottom: -10px;
        left: 50%;
        right: unset;
        transform: translate(-50%,0);
        -webkit-transform: translate(-50%,0);
        z-index: 2;
    }
    #all_wrap .l-wrapper .pageContents .content .flowBox > ul:last-of-type > li:last-child::before {
        display: none;
    }
    #all_wrap .l-wrapper .pageContents .content .flowBox > ul > li > span {
        display: flex;
        display: -webkit-flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: nowrap;
        width: auto;
        min-width: 43px;
        padding: 10px;
        margin: 0;
        background: #f0ad4e;
        color: #fff;
        text-align: center;
        font-size: 14px;
        line-height: 1;
    }
    #all_wrap .l-wrapper .pageContents .content .flowBox > ul > li > p {
        width: 100%;
        padding: 10px;
        margin: 0;
        background: #fff;
        writing-mode: horizontal-tb;
    }
}

/************************************************************/
/*　PB商品リスト
/************************************************************/
#all_wrap h3.pbTitle {
    padding: 15px 0;
    margin: 0 auto 30px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4em;
    background-color: none;
    border-radius: 0;
    border-bottom: dashed 2px #6594e0;
    color: #364e96;
    position: relative;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #all_wrap h3.pbTitle {
        padding: 10px 0;
        margin: 0 auto 20px;
        font-size: 17px;
        font-weight: 600;
        line-height: 1.4em;
        background-color: none;
        border-radius: 0;
        border-bottom: dashed 2px #6594e0;
        color: #364e96;
        position: relative;
    }
}

/*PBリスト*/
#all_wrap .pbList {
    width: 100%;
    padding: 0;
    margin: 0 auto 50px;
    list-style: none;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#all_wrap .pbList > li {
    width: 48%;
    padding: 20px;
    margin: 0 0 40px;
    background: url(https://alpha0702.xsrv.jp/img/bg01.png);
    background-size: 150%;
    background-position: top center;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}
#all_wrap #pbSingle .pbList > li {
    width: 100%;
    padding: 20px;
    margin: 0 0 40px;
    background: url(https://alpha0702.xsrv.jp/img/bg01.png);
    background-size: 150%;
    background-position: top center;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}
#all_wrap .pbList > li .pbListImages {
    width: 100%;
    padding: 0;
    margin: 0 auto 15px;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}
#all_wrap .pbList > li .pbListImages figure {
    width: 31%;
    padding: 0;
    margin: 0;
    position: relative;
    text-align: center;
    overflow: hidden;
    border-radius: 5px;
}
#all_wrap .pbList > li .pbListImages figure::before {
    content: '';
    display: block;
    padding: 50%;
}
#all_wrap .pbList > li .pbListImages figure img {
    width: auto;
    height: 100%;
    padding: 0;
    margin: 0;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}
#all_wrap .pbList > li > dl {
    width: 100%;
    padding: 0;
    margin: 0 auto 10px;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
}
#all_wrap .pbList > li > dl dt {
    width: 15%;
    padding: 5px 5px;
    margin: 0;
    white-space: nowrap;
    font-size: 12px;
    line-height: 1em;
    font-weight: 400;
    color: #fff;
    background: #364e96;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
}
#all_wrap .pbList > li > dl dd {
    width: 82%;
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 1.7em;
    font-weight: 400;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*PBリスト*/
    #all_wrap .pbList {
        width: 100%;
        padding: 0;
        margin: 0 auto 40px;
        list-style: none;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    #all_wrap .pbList > li {
        width: 100%;
        padding: 20px;
        margin: 0 0 20px;
        background: url(https://alpha0702.xsrv.jp/img/bg01.png);
        background-size: 150%;
        background-position: top center;
        border-radius: 10px;
        border: 1px solid rgba(0,0,0,0.05);
        position: relative;
    }
    #all_wrap #pbSingle .pbList > li {
        width: 100%;
        padding: 20px;
        margin: 0 0 20px;
        background: url(https://alpha0702.xsrv.jp/img/bg01.png);
        background-size: 150%;
        background-position: top center;
        border-radius: 10px;
        border: 1px solid rgba(0,0,0,0.05);
        position: relative;
    }
    #all_wrap .pbList > li .pbListImages {
        width: 100%;
        padding: 0;
        margin: 0 auto 15px;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    #all_wrap .pbList > li .pbListImages figure {
        width: 31%;
        padding: 0;
        margin: 0;
        position: relative;
        text-align: center;
        overflow: hidden;
        border-radius: 5px;
    }
    #all_wrap .pbList > li .pbListImages figure::before {
        content: '';
        display: block;
        padding: 50%;
    }
    #all_wrap .pbList > li .pbListImages figure img {
        width: auto;
        height: 100%;
        padding: 0;
        margin: 0;
        object-fit: cover;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
    }
    #all_wrap .pbList > li > dl {
        width: 100%;
        padding: 0;
        margin: 0 auto 10px;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: nowrap;
    }
    #all_wrap .pbList > li > dl dt {
        width: 20%;
        padding: 5px 5px;
        margin: 0;
        white-space: nowrap;
        font-size: 12px;
        line-height: 1em;
        font-weight: 400;
        color: #fff;
        background: #364e96;
        display: flex;
        display: -webkit-flex;
        justify-content: center;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: nowrap;
    }
    #all_wrap .pbList > li > dl dd {
        width: 76%;
        padding: 0;
        margin: 0;
        font-size: 12px;
        line-height: 1.7em;
        font-weight: 400;
    }
    #all_wrap .pbList > li > dl.owner {
        width: 100%;
        padding: 0;
        margin: 0 auto 10px;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    #all_wrap .pbList > li dl.owner dt {
        width: 100%;
        padding: 5px;
        margin: 0 auto 5px;
    }
    #all_wrap .pbList > li dl.owner dt br {
        display: none;
    }
    #all_wrap .pbList > li dl.owner dd {
        width: 100%;
        padding: 0;
        margin: 0 auto;
    }
}

/*商品リスト*/
#all_wrap .exampleList {
    width: 100%;
    padding: 0;
    margin: 0 auto 50px;
    list-style: none;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#all_wrap .exampleList > li {
    width: 32%;
    padding: 15px;
    margin: 0 0 20px;
    background: url(https://alpha0702.xsrv.jp/img/bg01.png);
    background-size: 150%;
    background-position: top center;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}
#all_wrap .exampleList > li .exampleListInfo {
    width: 100%;
    padding: 0;
    margin: 0 auto 15px;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}
#all_wrap .exampleList > li .exampleListInfo figure {
    width: 31%;
    padding: 0;
    margin: 0;
    position: relative;
    text-align: center;
    overflow: hidden;
    border-radius: 5px;
}
#all_wrap .exampleList > li .exampleListInfo figure::before {
    content: '';
    display: block;
    padding: 50%;
}
#all_wrap .exampleList > li .exampleListInfo figure img {
    width: auto;
    height: 100%;
    padding: 0;
    margin: 0;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}
#all_wrap .exampleList > li .exampleListInfo dl {
    width: 65%;
    padding: 0;
    margin: 0;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#all_wrap .exampleList > li .exampleListInfo dl dt {
    width: 32%;
    padding: 0;
    margin: 0 0 3px;
    font-size: 12px;
    line-height: 1.4em;
    font-weight: 500;
    color: #364e96;
    background: none;
    white-space: nowrap;
}
#all_wrap .exampleList > li .exampleListInfo dl dd {
    width: 65%;
    padding: 0;
    margin: 0 0 3px;
    font-size: 12px;
    line-height: 1.4em;
    font-weight: 400;
}
.exampleListCmt {
    padding: 0;
    margin: 0 auto;
}
#all_wrap .exampleList > li .exampleListCmt h4 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    margin: 0 auto 5px;
}
#all_wrap .exampleList > li .exampleListCmt p {
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 1.7em;
    font-weight: 400;
    text-align: justify;
    text-justify: inter-ideograph;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*商品リスト*/
    #all_wrap .exampleList {
        width: 100%;
        padding: 0;
        margin: 0 auto 50px;
        list-style: none;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    #all_wrap .exampleList > li {
        width: 100%;
        padding: 20px;
        margin: 0 0 20px;
        background: url(https://alpha0702.xsrv.jp/img/bg01.png);
        background-size: 150%;
        background-position: top center;
        border-radius: 10px;
        border: 1px solid rgba(0,0,0,0.05);
        position: relative;
    }
    #all_wrap .exampleList > li .exampleListInfo {
        width: 100%;
        padding: 0;
        margin: 0 auto 15px;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    #all_wrap .exampleList > li .exampleListInfo figure {
        width: 31%;
        padding: 0;
        margin: 0;
        position: relative;
        text-align: center;
        overflow: hidden;
        border-radius: 5px;
    }
    #all_wrap .exampleList > li .exampleListInfo figure::before {
        content: '';
        display: block;
        padding: 50%;
    }
    #all_wrap .exampleList > li .exampleListInfo figure img {
        width: auto;
        height: 100%;
        padding: 0;
        margin: 0;
        object-fit: cover;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
    }
    #all_wrap .exampleList > li .exampleListInfo dl {
        width: 65%;
        padding: 0;
        margin: 0;
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    #all_wrap .exampleList > li .exampleListInfo dl dt {
        width: 32%;
        padding: 0;
        margin: 0 0 3px;
        font-size: 12px;
        line-height: 1.4em;
        font-weight: 500;
        color: #364e96;
        background: none;
        white-space: nowrap;
    }
    #all_wrap .exampleList > li .exampleListInfo dl dd {
        width: 65%;
        padding: 0;
        margin: 0 0 3px;
        font-size: 12px;
        line-height: 1.4em;
        font-weight: 400;
    }
    .exampleListCmt {
        padding: 0;
        margin: 0 auto;
    }
    #all_wrap .exampleList > li .exampleListCmt h4 {
        font-size: 14px;
        font-weight: 500;
        padding: 0;
        margin: 0 auto 5px;
    }
    #all_wrap .exampleList > li .exampleListCmt p {
        padding: 0;
        margin: 0;
        font-size: 12px;
        line-height: 1.7em;
        font-weight: 400;
        text-align: justify;
        text-justify: inter-ideograph;
    }
}
h2#fh2{display:none;}