/*
Theme Name:SPIFLEX
Description: 新光産業株式会社SPIFLEX
Theme URI: http://shinko.org/
Author: 新光産業株式会社
Author URI: https://www.ube-shinko.co.jp/
Version: 202204
*/
@charset "UTF-8";
/* CSS Document */

html,body {
    font-size:62.5%;
	font-family: "Noto Sans JP","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
    font-feature-settings : "palt";
    position: relative;
}
body {
    background-color: #FFF;
    color: #333333;
}
a {
    color: #172A88;
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(255,255,255,0);
	outline: none;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
a:hover {
    opacity: 0.7;
}
img {
    max-width: 100%;
    height: auto;
}
.align-center {
    text-align: center;
}
input, select {
    vertical-align: middle;
}
input select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
i.fas {
    margin:0 10px;
}
.pcimg {
    display: none;
}
.lnbtn {
    margin-top: 60px;
    max-width: 340px;
    width: 100%;
}
.lnbtn a {
    display: block;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    border:1px solid #4B3421;
    font-size: 1.4rem;
    color: #4B3421;
}
.lnbtn a:hover {
    background-color: #FFF;
}
strong {
    color: #D7000F;
}

@media screen and (min-width:480px) {
   
}

@media screen and (min-width:768px) {
    .spimg {
        display: none;
    }
    .pcimg {
        display: block;
    }
       br.spbr {
        display: none;
    } 
}

/*はじめは透過0に*/
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUp {
    animation-name: fadeItUpAnime;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
    opacity:0;
}
    
@keyframes fadeItUpAnime{
    from {
    opacity: 0;
    transform: translateY(200px);
    }

    to {
    opacity: 1;
    transform: translateY(0);
    }
}

.fadeUpTrigger{
    opacity: 0;
}
.fade {
    animation-name: fadeAnime;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
    opacity:0;
}

@keyframes fadeAnime{
    from {
    opacity: 0;
    }

    to {
    opacity: 1;
    }
}

.fadeTrigger{
    opacity: 0;
}

/*========= アニメーションの指定 ===============*/

/* アニメーションの回数を決めるCSS*/
.count2{  
	animation-iteration-count: 2;/*この数字を必要回数分に変更*/
}
/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time05{  
	animation-delay: 0.5s;
}
.delay-time1{  
	animation-delay: 1s;
}
.delay-time15{  
	animation-delay: 1.5s;
}
.delay-time2{  
	animation-delay: 2s;
}
.delay-time25{  
	animation-delay: 2.5s;
}
.delay-time35{  
	animation-delay: 3.5s;
}
/* アニメーション自体が変化する時間を決めるCSS*/
.change-time{  
	animation-duration: 4.5s;/*この数字を変化させたい時間に変更*/
}

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999;
	background:#f8f8ee;
	text-align:center;
}
/* Loading画像中央配置　*/
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    text-align: center;
}
#site_logo {
	position: absolute;
	top: calc(50% - 35px);
	left: 50%;
	transform: translate(-50%, -50%);
    z-index: 100;
    text-align: center;
}
/* Loading アイコンの大きさ設定　*/
#splash_logo img, #site_logo img {
	width:240px;
    margin-bottom: 10px;
}
#site_msg {
	position: absolute;
	top: 20px;
	left: 50%; /*15px;*/   
    z-index: 100;
    max-width: 1104px;
    width: 100%;
    padding: 0 15px;
    transform: translateX(-50%);
    box-sizing: border-box;
}
#site_msg h2 {
	font-family: 'Shippori Mincho B1', serif;
    font-weight:400;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    line-height: 2;
    writing-mode:vertical-rl;
    text-align: left !important;
    color: #FFF;
    text-shadow: #000 1px 0 10px;
    text-align: center;
}

@media screen and (min-width:768px) {
    #splash_logo {
        position: absolute;
        top: calc(70px + 22.5vw);
        left: 50%;
        transform: translate(-50%, -132px);
        text-align: center;
        width: 100%;
    }
    #site_logo {
        position: absolute;
        top: 22.5vw;
        left: 50%;
        transform: translate(-50%, -132px);
        z-index: 100;
        text-align: center;
    }
    /* Loading アイコンの大きさ設定　*/
    #splash_logo img, #site_logo img {
        width:400px;
    } 
    #site_msg {
        position: absolute;
        top: 50px;
        z-index: 100;
    }
    #site_msg h2 {
        font-size: 2.4rem;
    }
}

/*--- ヘッダー ---*/

header {
    background-color: #FFF;
    width: 100%;
}
.header-container {
    max-width: 1200px;
    width: 100%;
    height: 80px;
    margin: 0 auto;
    padding: 20px 15px 20px 15px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-container h1 img {
    width: 200px;
    height: auto;
}
.header-container h1 a {
    display: flex;
    align-items: center;
}
.header-container h1 span {
    font-size: 1.6rem;
    font-weight: 700;
    color: #000;
    margin-left: 0.5em;
}
#globalnavi nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#globalnavi nav ul li {
    padding:15px;
}
#globalnavi nav ul li a {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 48px;
    color: #172A88;
}
#globalnavi nav ul li.btn-contact a {
    border: 2px solid #172A88; 
    border-radius: 24px;
    padding: 0px 24px;
    line-height: 44px;
    display: inline-block;
}
@media screen and (min-width:460px) {
    .header-container h1 img {
        width: 310px;
        height: auto;
    }
    .header-container h1 span {
        font-size: 2.4rem;
    }
}
@media screen and (min-width:768px) {
    .header-container {
        max-width: 1200px;
        width: 100%;
        height: 100px;
        margin: 0 auto;
        padding: 20px 15px 20px 15px;
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    #globalnavi button {
        display: none;
    }
    #globalnavi nav ul {
        justify-content: flex-end;
        flex-direction: row;
        padding-top: 0px;
    }
    #globalnavi nav ul li {
        padding: 0 8px;
    }
    #globalnavi nav ul li:last-of-type {
        padding: 0 0 0 40px;
    }
    #globalnavi nav ul li a {
        font-size: 1.6rem;
    }
}

/*--- トップページ ---*/

#heroimg {
    position: relative;
}
#heroimg .container {  
    padding-bottom: 300px;
}
#heroimg .container .mainimg {
    width: 100%;
    height: 90vw;
    background: url(images/homecoverimg-sp.jpg) bottom center no-repeat;
    background-size: cover;
}
#heroimg .container .mainimgpc {
    display: none;
}
#catchcopy {
    position: absolute;
    width: 100%;
    max-width: 300px;
    background-color: rgba(248,182,45,0.4);
    display: block;
    left: 50%;
    bottom: 130px;
    transform: translateX(-50%);
    padding: 30px;
    box-sizing: border-box;
}
#catchcopy h2 {
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
}
#catchcopy h2 img {
    max-width: 320px;
    width: 100%;
    margin-bottom: 15px;
}
#catchcopy h2 span {
    font-size: 1.7rem;
    font-weight: 700;
    color: #002076;
    text-align: center;
    display: block;
}
#catchcopy p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.785;
    letter-spacing: 0.05em;
    color: #000;
    margin: 0;
    text-align: center;
}
#catchcopy p br {
    display: none;
}

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

    #heroimg .container .mainimg {
        width: 100%;
        height: 40vw;
        background: url(images/homecoverimg-pc.jpg) center bottom no-repeat;
        background-size: cover;
    }
    #catchcopy {
        max-width: 420px;
        height: 380px;
        bottom: 90px;
    }
    #catchcopy h2 span {
        font-size: 2.4rem;
    }
    #catchcopy p {
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 2.1rem;
        font-weight: 500;
        line-height: 1.785;
        letter-spacing: 0.05em;
        color: #000;
        margin: 0;
        text-align: center;
    }
    #catchcopy p br {
        display: block;
    }
}

/*--- フッター ---*/

footer {
    background-color: #F5F5F5;
    padding: 0;
    margin: 0;
}
.footer-container {
    width: 100%;
    max-width: 1024px;
    padding: 60px 10px 50px 10px;
    margin: 0 auto;
    box-sizing: border-box;
}
.footer-container nav {
    margin-bottom: 50px;
}
.footer-container ul li {
    padding: 10px 15px;
    text-align: center;
}
.footer-container ul li a {
    font-size: 1.4rem;
    font-weight: 500;
}
.footer-container nav ul ul {
    margin-top: 10px;  
}
.footer-container ul ul li {
    padding: 10px 0px;
}
.footer-container ul ul li:last-of-type {
    padding-bottom: 0px;
}
.footer-container .ssl-badge {
    margin-top: 30px;
    text-align: center;
}
#admininfo .logo {
    width: 280px;
    margin: 0 auto 20px auto;
}
#admininfo .address {
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.785;
    margin-bottom: 0;
}
#admininfo .address h5 {
    font-size: 1.6rem;
    font-weight: 400;
}
#admininfo .maplink svg {
    display: inline-block;
    width: 14px;
    height: auto;
    margin-left: 0.5em;
}
.copyright {
    max-width: 1024px;
    padding: 10px;
    margin: 0 auto 30px auto;
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.5;
}
#pageTop {
    position: absolute;
    bottom: -15px;
    right: 15px;
    width: 50px;
    height: 50px;
}
#pageTop a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #172A88;
    color: #FFF;
}
#pageTop a i {
    color: #FFF;
    font-size: 2.1rem;
    margin: 0;
}

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

    .footer-container {
        width: 100%;
        max-width: 1024px;
        padding: 60px 10px 50px 10px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
    }
    .footer-container nav {
        margin-bottom: 0;
    }
    .footer-container nav ul {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .footer-container ul li {
        padding: 10px 15px;
        text-align: left;
        border-left: 1px solid #000;
    }
    .footer-container nav ul ul {
        display: block;  
    }
    .footer-container ul ul li {
        border-left: none;
    }
    .footer-container .ssl-badge {
        margin-top: 50px;
        text-align: left;
    }
    #admininfo .logo {
        width: 280px;
        margin: 0 0 20px 0;
    }
    #admininfo .address {
        text-align: left;
        font-size: 1.4rem;
        line-height: 1.785;
        margin-bottom: 0;
    }
    #admininfo .address h5 {
        font-size: 1.6rem;
        font-weight: 400;
    }
    #pageTop {
        position: absolute;
        bottom: 10px;
        right: 30px;
        width: 50px;
        height: 50px;
    }
}
.section-header {
    margin-bottom: 50px;
    padding: 0 10px;
    text-align: center;
}
.section-title {
    font-size: 3.2rem;
    font-family: 'Jost','Noto Sans JP', sans-serif;
    font-weight: 500;
    line-height: 1.275;
    color: #172A88;
}
#product-list {
    max-width: 1032px;
    width: 100%;
    margin: 0 auto 100px auto;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
#product-list .product {
    width: 238px;
    background-color:#172A88;
    margin: 0 10px 50px 10px;
    color: #FFF;
    text-align: center;
}
#product-list .product a {
    color: #FFF;
}
.product .product-img {
    width: 100%;
    height: 238px;
    background-color: #EFEFEF;
    margin-bottom: 25px;
}
.product .product-img img{
    width: 100%;
    height: 238px;
    object-fit: cover;
}
.product h3 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 5px;
}
.product p:last-of-type {
    font-size: 1.4rem;
    line-height: 1.5;
    padding: 15px 15px 20px 15px;
}

@media screen and (min-width:768px) {
    .product h3 {
        font-size: 1.9rem;
    }
}

#uselist {
    background: url(images/bg_home-feature.jpg) top center no-repeat;
    background-size: cover;
    width: 100%;
    padding: 60px 0 50px 0;
    color: #FFF;
    text-align: center;
}
#uselist .section-header {
    margin-bottom: 40px;
} 
#uselist .section-title {
    font-size: 2.1rem;
    color: #FFF;
    font-weight: 500;
}
.use-lists dt {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5em;
    line-height: 1.5;
}
.use-lists dd {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5em;
    line-height: 1.5;
    padding: 0 15px;
}

@media screen and (min-width:768px) {
    #uselist .section-title {
        font-size: 3.2rem;
    }
    .use-lists dt {
        font-size: 1.8rem;
    }
    .use-lists dd {
        font-size: 1.6rem;
    }
}

#topics {
    padding: 60px 0 100px 0;
}
#topics .lnbtn {
    line-height: 1.8;
    margin: 30px auto 0 auto;
    max-width: 200px;
}
#topics .lnbtn a {
    padding: 10px;
    font-size: 1.6rem;
}
#topics .section-content {
    width: 100%;
    max-width: 874px;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: border-box;
}
#topics .topics-lists {
    border-top: 2px solid #172A88;
}
#topics .topics-lists .topics-item {
    font-size: 1.4rem;
    padding: 12px 20px;
    border-bottom: 1px solid #CDD6DD;
}
#topics .topics-lists .topics-item dt {
    margin-bottom: 0.5em;
    line-height: 1.5;
    color: #707F89;
    font-weight: 400;
}
#topics .topics-lists .topics-item dd {
    font-size: 1.6rem;
    line-height: 1.5;
}
#topics .topics-lists .topics-item dd a {
    color: #4B3421;
}

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

    #topics .topics-lists .topics-item {
        display: flex;
        justify-content: flex-start;
        font-size: 1.8rem;
        padding: 18px 0;
        border-bottom: 1px solid #CDD6DD;
    }
    #topics .topics-lists .topics-item dt {
        width: 6em ;
        margin-right: 30px;
        margin-bottom: 0;
        padding-top: 0;
    }
    #topics .topics-lists .topics-item dd {
        flex: 1;
        font-size: 1.8rem;
    }
    #topics .topics-lists .topics-item dd a {
        color: #4B3421;
    }
}

#testequip {
    background-color: #fef0d5;
    padding: 80px 0 50px 0;
}
#testequip .section-header {
    margin-bottom: 40px;
} 
#testequip .section-title {
    color: #3B4043;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}
#testequip .section-header p {
    font-size: 1.8rem;
    line-height: 1.2;
}
#testequip .section-content {
    text-align: center;
    font-size: 1.4rem;
    padding: 0 10px;
}
#testequip .section-content p{
    line-height: 1.785;
    margin-bottom: 1.5em;
}
#testequip .section-content img {
    max-width: 324px;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
}

.equipments {
    width: 100%;
    max-width: 780px;
    margin: 50px auto 10px auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.equipments .equipment-item {
    width: 80%;
    margin: 0 20px 20px 20px;
    background-color: #FFF;
    box-sizing: border-box;
}
#testequip .section-content .equipment-item p {
    line-height: 2;
    margin: 10px 0;
}
#testequip .section-content .equipment-item p:first-child {
    font-size: 1.6rem;
    font-weight: 700;
    padding: 12px 0;
    margin: 0;
    line-height: 1.785;
}
.equipment-item h3 {
    background-color: #172A88;
    padding: 13px 0;
    color: #FFF;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
}

@media screen and (min-width:768px) {
    
    .equipments .equipment-item {
        width: 238px;
        margin: 0 10px 20px 10px;
        background-color: #FFF;
    }
    #testequip .section-title {
        font-size: 3.6rem;
        margin-bottom: 15px;
    }
    #testequip .section-header p {
        font-size: 2.1rem;
    }
    #testequip .section-content {
        font-size: 1.6rem;
    }
    #testequip .section-content .equipment-item p:first-child {
        font-size: 1.9rem;
    }
    .equipment-item h3 {
        font-size: 1.9rem;
    }
}

#contact {
    margin: 70px auto 100px auto;
}


/*------------------------------------------
ページ共通設定
------------------------------------------*/

.page .productinfo .section-title, .page .installation .section-title, .page .casestudy .section-title, .page .news .section-title, .page .contact .section-title {
    background: url(images/bg_pgheader.jpg) top center no-repeat;
    background-size: cover;
    height: 12.5vw;
    min-height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.productinfo .brand-logo {
    max-width: 100px;
    margin: 0 auto 10px auto;
}
.page-title {
    text-align: center;
    font-size: 2.1rem;
    font-weight: 900;
    color: #FFF;
}

@media screen and (min-width:768px) {
    .page .productinfo .section-title, .page .installation .section-title, .page .casestudy .section-title, .page .news .section-title, .page .contact .section-title {
        height: 12.5vw;
        min-height: 160px;
    }
    .productinfo .brand-logo {
        max-width: 140px;
        margin: 0 auto 20px auto;
    }
    .page-title {
        font-size: 3.6rem;
    }
}

.product-summary {
    background-color: #fef0d5;
    padding: 50px 0 50px 0;
}
.product-summary .container {
    max-width: 1038px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}
.product-summary .summary-leadtxt {
    font-size: 2.4rem;
    font-weight: 700;
    color: #172A88;
    margin-bottom: 40px;
    line-height: 1.2;
}
.summary-body .product-discription {
    max-width: 570px;
}
.summary-body .product-discription p{
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.785;
    margin-bottom: 2em;
}
.summary-body .product-image {
    display: block;
    width: 100%;
}
.summary-body .product-image img {
    width: 100%;
    height: auto;
}
@media screen and (min-width:768px) {
    .product-summary .summary-leadtxt {
        font-size: 3.6rem;
        margin-bottom: 40px;
    }
    .summary-body .product-discription p{
        font-size: 2.1rem;
    }
    .product-summary .summary-body {
        display: flex;
    }
    .summary-body .product-discription {
        width: 56.5%;
    }
    .summary-body .product-discription p{
        font-size: 2.1rem;
        margin-bottom: 0px;
    }
    .summary-body .product-image {
        display: block;
        width: 41%;
        max-width: 410px;
        margin-left: 30px;
    }
}

.product-content {
    padding: 90px 0 100px 0;
}
.product-content .container {
    max-width: 894px /*1038px*/;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
    font-size: 1.4rem;
    font-weight: 400;
}
.product-content .container h4 {
    font-size: 1.8rem;
    line-height: 1.275;
    color: #172A88;
    font-weight: 500;
    margin: 100px 0 30px 0;
}
.product-content .container h5 {
    font-size: 1.8rem;
    line-height: 1.275;
    color: #000;
    font-weight: 500;
    margin: 1em 0 0.5em 0;
}
.product-content .container p {
    line-height: 1.785;
    margin-bottom: 1.5em;
}
.product-content .container ul {
    margin-left: 2em;
}
.product-content .container li {
    margin-bottom: 0.5em;
    line-height: 1.275;
}
.product-content .container .fig-motionflow li {
    font-size: 1.6rem;
    font-weight: 700;
}
.product-content .container .feature h4 {
    margin: 0px 0 30px 0;
}
.product-content .container .example {
    margin-bottom: 30px;
}
.table-container {
    overflow-y: scroll;
}
.product-content .container table {
    table-layout: auto;
}
.product-content .container th,.product-content .container td {
    border: 1px solid #999;
    padding: 10px;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: 400;
    vertical-align: middle;
    word-wrap : break-word;
    overflow-wrap : break-word;
    white-space: nowrap;
}
.product-content .container th {
    font-weight: 700;
    background-color: #e7eaf3;  
}
.product-content .container .modelspec h5 {
    display: inline-block;
    background-color: #172A88;
    font-size: 1.8rem;
    color: #FFF;
    font-weight: 600;
    line-height: 1;
    margin: 30px 0 30px 0;
    padding: 15px 20px;
}
.modelspec .model-container {
    margin-bottom: 50px;
}
.modelspec .photos {
    margin-bottom: 30px;
}
.modelspec .photos img {
    max-height: 313px;
}
.modelspec .photos #photoST6-2 {
    margin: 0 auto;
    text-align: center;
}
.modelspec .model-container .table-container table {
    width: 100%;
}
.modelspec .model-container .table-container table th, .modelspec .model-container .table-container table td {
    text-align: left;
}
@media screen and (min-width:768px) {
    .product-content .container {
        font-size: 1.6rem;
    }
    .product-content .container h4 {
        font-size: 2.4rem;
        margin: 100px 0 30px 0;
    }
    .product-content .container h5 {
        font-size: 2.4rem;
        margin: 1em 0 0.5em 0;
    }
    .product-content .container .fig-motionflow li {
        font-size: 2.1rem;
    }
    .table-container {
        overflow-y: auto;
    }
    .product-content .container table {
        width: 100%;
    }
    .product-content .container th,.product-content .container td {
        padding: 20px 10px;
        font-size: 1.8rem;
        white-space:normal;
    }
    .modelspec .model-container {
        display: flex;
        justify-content: space-between;
    }
    .modelspec .model-container .photos, .modelspec .model-container .table-container {
        width: calc( 50% - 20px);
        box-sizing: border-box;
    }
}




#contactbtn {
    background: url(images/bg_section-contact.jpg) top center no-repeat;
    background-size: cover;
    height: 19.53vw;
    min-height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 60px;
}
.page-casestudy #contactbtn, .page-installation #contactbtn, .page-spiflex #contactbtn {
    margin-bottom: 0px;
}
#contactbtn .btn a {
    display: block;
    background-color: #FFF;
    max-width: 270px;
    font-size: 1.6rem;
    line-height: 1;
    padding: 16px 32px;
    border-radius: 24px;
    color: #172A88;
    font-weight: 500;
}

@media screen and (min-width:768px) {
    #contactbtn {
        min-height: 250px;
        margin-bottom: 60px;
    }   
}


.page #products #product-list {
    margin-bottom: 50px;
}

.feature ul.features-list li, ul.circle-list li {
    list-style-type: circle;
}
ul.features-list li, ul.circle-list li {
    font-size: 2.1rem;
}
div.features-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
div.features-list .feature-item {
    max-width: 360px;
    margin-bottom: 60px;
}
div.features-list .feature-item .imgcaption {
    text-align: right;
    font-size: 1.4rem;
}
div.features-list .feature-item img {
    display: block;
    border: 1px solid #999;
}
div.features-list .feature-item p {
    margin-bottom: 0;
}

div.technologies-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
div.technologies-list .tech-item {
    max-width: 240px;
    margin-bottom: 60px;
}
div.technologies-list .tech-item p {
    margin-bottom: 0;
}
.fig-motionflow p img {
    display: block;
    border: 1px solid #999; 
}

.imgbox {
    margin-top: 100px;
}

.logo-l2-tech {
    max-width: 240px;
}

.energy .col2container {
}
.energy .col2container .circle-list {
    margin-bottom: 60px;
}
.energy .col2container .fig {
    max-width: 410px;
}

.merit-list dt {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 1em;
}
.merit-list dd {
    margin-left: 1.5em;
}
.merit-list dd .merit-fig {
    max-width: 610px;
    margin: 30px 0 20px 0;
}

.summary-body .product-imagelist {
    display: flex;
    justify-content: space-between;
}
.page-process-engineering .summary-body .product-imagelist img {
    width: 33.33%;
}
.page-heatexchanger_w-st .summary-body .product-imagelist img {
    width: 25%;
}
.page-heatexchanger_c-st .summary-body .product-imagelist img {
    width: 50%;
}
.product-content .container .technology h4 {
    margin-top: 0px;

}
.flow .fig {
    max-width: 640px;
}

.maintenance .col2container {
    margin-top: 2em;
}

.product-pickup {
    background-color: #EFEFEF;
}
.product-pickup .container {
    max-width: 866px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 60px 0 20px 0;
}
.casestudy-content .container {
    max-width: 896px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 45px 0 20px 0;
}
.casestudy-content .container .casestudies {
}
.casestudies .case {
    width: 80%;
    max-width: 410px;
    margin: 25px auto;
}
.product-pickup .product-name, .case .product-name {
    text-align: center;
    font-size: 1.6rem;
    color: #172A88;
    line-height: 1.5;
    margin: 0.8em 0 0 0;
}

.installation .section-summary {
    background: url(images/bg_process-header.jpg) top center no-repeat;
    background-size: cover;
}
.installation .section-summary .container {
    box-sizing: border-box;
    margin: 0 auto;
    padding: 50px 15px 50px 15px;
    text-align: center;
}
.installation .section-summary .summary-leadtxt {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.278;
    margin-bottom: 1em;
} 
.installation .section-summary .summary-body p {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 0em;
}
.installation-flow {
    padding-top: 60px;
    padding-bottom: 50px;
    background: url(images/bgline-dot.png) 30px top repeat-y;
    background-size: 7px 30px;
}
.installation-flow .flow-item {
    margin-bottom: 70px;
}
.installation-flow .flow-item .step-image {
    margin-left: 70px;
}
.installation-flow .flow-item .step-discription {
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 15px;
}
.step-discription-container h4{
    font-size: 2.1rem;
    line-height: 40px;
}
.step-discription-container h4 .num {
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    color: #FFF;
    font-family: 'Jost','Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 2.1rem;
    background-color: #172A88;
    margin-right: 15px;
}
.step-discription-container h4 strong {
    font-size: 2.1rem;
    font-weight: 700;
    color: #172A88;
    margin-bottom: 0.75em;
}
.step-discription-container p{
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.785;
    margin-left: 55px;
    text-align: justify;
}

@media screen and (min-width:768px) {
    div.features-list {
        justify-content: space-between;
    }
    div.features-list .feature-item {
        width: 50%;
    }
    div.technologies-list {
        justify-content: flex-start;
    }
    div.technologies-list .tech-item {
        width: 33%;
        max-width: 240px;
        margin-right: 70px;
        margin-bottom: 0px;
    }

    .energy .col2container {
        display: flex;
        justify-content: space-between;
    }
    .energy .col2container .circle-list {
        width: 45%;
        max-width: 390px;
        margin-bottom: 0px;
    }
    .energy .col2container .fig {
        width: 50%;
    }

    .summary-body .product-imagelist {
        max-width: 1024px;
        margin: 0 -8px;
    }
    .page-process-engineering .summary-body .product-imagelist img {
        margin: 0 8px;
        width: calc(33% - 16px);
    }
    .page-heatexchanger_w-st .summary-body .product-imagelist img {
        margin: 0 8px;
        width: calc(25% - 16px);
    }
    .page-heatexchanger_c-st .summary-body .product-imagelist img {
        margin: 0 8px;
        width: calc(50% - 16px);
    }
    .maintenance .col2container {
        display: flex;
        justify-content: space-between;
        margin-top: 2em;
    }
    .maintenance .col2container p {
        width: 50%;
        padding: 8px;
    }
    .maintenance .col2container p:first-child {
        padding-left: 0px;
    }
    .maintenance .col2container p:last-child {
        padding-right: 0px;
    }

    .product-pickup .container {
        max-width: 866px;
        width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
        padding: 60px 0 20px 0;
    }
    .casestudy-content .container {
        max-width: 896px;
        width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
        padding: 45px 0 20px 0;
    }
    .casestudy-content .container .casestudies {
        display: flex;
        justify-content:space-between;
        flex-wrap: wrap;
    }
    .casestudies .case {
        width: 50%;
        max-width: 410px;
        margin: 25px 15px;
    }
    .product-pickup .product-name, .case .product-name {
        text-align: center;
        font-size: 1.8rem;
        color: #172A88;
        line-height: 1.5;
        margin: 0.8
    }

    .installation .section-summary {
        background: url(images/bg_process-header.jpg) top center no-repeat;
        background-size: cover;
    }
    .installation .section-summary .container {
        box-sizing: border-box;
        margin: 0 auto;
        padding: 50px 15px 50px 15px;
        text-align: center;
    }
    .installation .section-summary .summary-leadtxt {
        font-size: 3.6rem;
        font-weight: 700;
        line-height: 1.278;
        margin-bottom: 1em;
    } 
    .installation .section-summary .summary-body p {
        font-size: 2.1rem;
        font-weight: 700;
        line-height: 1.5;
        margin-bottom: 0em;
    }
    .installation-flow {
        padding-top: 125px;
        padding-bottom: 100px;
        background: url(images/bgline-dot.png) center top repeat-y;
        background-size: 7px 30px;
    }
    .installation-flow .flow-item {
        display: flex;
        justify-content: space-between;
        margin-bottom: 70px;
    }
    .installation-flow #step2.flow-item, .installation-flow #step4.flow-item {
        margin-bottom: 0px;
    }
    .installation-flow .flow-item:last-child {
        margin-bottom: 0px;
    }
    .installation-flow .flow-item:nth-child(odd) {
        flex-direction: row-reverse;
    }
    .installation-flow .flow-item .step-discription {
        width: calc(50% - 24px);
        display: flex;
        margin-left: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
    }
    .installation-flow #step3.flow-item .step-discription, .installation-flow #step5.flow-item .step-discription {
        display: flex;
        align-items: flex-end;
        margin-left: 24px;
    }
    .installation-flow .flow-item:nth-child(even) .step-discription {
        justify-content: flex-end;
    }
    .installation-flow .flow-item .step-image {
        width: calc(50% - 24px);
        margin-left: 0px;
    }
    .installation-flow #step2.flow-item .step-image img, .installation-flow #step3.flow-item .step-image img {
        width: 410px;
    }
    .installation-flow #step2.flow-item .step-image {
        padding-top: 60px;
    }
    .installation-flow #step3.flow-item .step-image  {
        text-align: right;
    }
    .step-discription-container {
        width: 410px;
    }
    .step-discription-container h4{
        font-size: 2.1rem;
        line-height: 40px;
        display: flex;
        justify-content: flex-start;
    }
    #step2 .step-discription-container h4, #step4 .step-discription-container h4{
        justify-content:space-between;
        flex-direction: row-reverse;
    }
    .step-discription-container h4 .num {
        display: inline-block;
        width: 40px;
        height: 40px;
        text-align: center;
        color: #FFF;
        font-family: 'Jost','Noto Sans JP', sans-serif;
        font-weight: 500;
        font-size: 2.1rem;
        background-color: #172A88;
        margin-right: 15px;
    }
    .step-discription-container h4 strong {
        font-size: 2.1rem;
        font-weight: 700;
        color: #172A88;
        margin-bottom: 0.75em;
    }
    .step-discription-container p{
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 1.785;
        margin-left: 0;
    }
}


/*------------------------------------------
　製品
------------------------------------------*/



/*------------------------------------------
　お問い合わせ
------------------------------------------*/

.contact-content h4 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #172A88;
    text-align: center;
    margin-top: 90px;
    margin-bottom: 60px;
}
.tel-numbers dl {
    width: 100%;
    max-width: 520px;
    margin: 0 auto 20px auto;
}
.tel-numbers dl dt {
    padding: 10px 0 10px 10px;
    box-sizing: border-box;
    font-size: 2.1rem;
    font-weight: 500;
    text-align: center;
}
.tel-numbers dl dd {
    padding: 10px 0 10px 10px;
    box-sizing: border-box;
    margin-bottom: 30px;
    font-size: 2.7rem;
    font-family: 'Jost','Noto Sans JP', sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
}
.tel-numbers dl dd i {
    margin-right: 5px;
}
.contact-tel p {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
}
.mail-form {
    margin: 0 auto 100px auto;
    padding: 60px 15px;
    max-width: 834px;
    width: 100%;
    box-sizing: border-box;
    background-color: #f3f4f9;
}
.mail-form .mw_wp_form dl {
}
.mail-form .mw_wp_form dt {
    padding: 25px 0 0 0;
    box-sizing: border-box;
    font-size: 1.6rem;
    font-weight: 700;
}
.mail-form .mw_wp_form dd {
    padding: 15px 0 30px 0;
    box-sizing: border-box;
    font-size: 1.6rem;
}
.mail-form .mw_wp_form dd input[type="text"],.mail-form .mw_wp_form dd input[type="email"] {
    padding: 10px;
    border: 1px solid #999;
    font-size: 1.6rem;
    width: 100%;
    box-sizing: border-box;
}
.mail-form .mw_wp_form dd textarea {
    padding: 10px;
    border: 1px solid #999;
    font-size: 1.6rem;
    width: 100%;
    height: 200px;
    box-sizing: border-box;
}

.mw_wp_form dd select {
    padding: 10px;
    border: 1px solid #999;
    font-size: 1.6rem;
    box-sizing: border-box;
}

.mwform-radio-field {
    display: block;
    margin-bottom: 1em;
}
.mwform-radio-field input[type=radio] {
    display: none;
}
.mwform-radio-field label span {
    position: relative;
    padding: 0 0 0 42px;
}
.mwform-radio-field label span:after, .mwform-radio-field label span:before {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
}
.mwform-radio-field label span::after {
    left: 15px;
    margin-top: -10px;
    width: 16px;
    height: 16px;
    border: 2px solid #999;
    border-radius: 50%;
    background-color: #FFF;
}
.mwform-radio-field label span::before {
    left: 20px;
    margin-top: -5px;
    width: 10px;
    height: 10px;
    background: #0171bd;
    border-radius: 50%;
    opacity: 0;
    z-index: 100;
}
.mwform-radio-field input[type=radio]:checked + span::before {
    opacity: 1;
}
label span:hover:after {
    border-color: #0171bd;
}

.mwform-checkbox-field input[type=checkbox] {
    display: none;
}
.mwform-checkbox-field label span {
    position: relative;
    padding: 0 0 0 42px;
}
.mwform-checkbox-field label span:hover:after {
    border-color: #0171bd;
}
.mwform-checkbox-field label span:after, .mwform-checkbox-field label span:before{
    position: absolute;
    content: "";
    display: block;
    top: 50%;
}
.mwform-checkbox-field label span:after {
    left: 15px;
    margin-top: -10px;
    width: 15px;
    height: 15px;
    border: 2px solid #999;
    background-color: #FFF;
}
.mwform-checkbox-field label span:before {
    left: 21px;
    margin-top: -7px;
    width: 5px;
    height: 9px;
    border-right: 3px solid #0171bd;
    border-bottom: 3px solid #0171bd;
    transform: rotate(45deg);
    opacity: 0;
    z-index: 100;
}
.mwform-checkbox-field label input[type=checkbox]:checked + span:before {
    opacity: 1;
}
.privacypolicy {
    padding-top: 0.25em;
    margin-left: 42px;
}
.sendbtn {
    text-align: center;
    padding-top: 40px;
}
.sendbtn input {
    width: 272px;
    height: 48px;
    border-radius: 24px;
    border:none;
    background-color: #172A88;
    font-size: 1.6rem;
    line-height: 48px;
    text-align: center;
    color: #FFF;
    margin: 0 auto;
    cursor: pointer;
}

@media screen and (min-width:768px) {
    .tel-numbers dl {
        width: 100%;
        max-width: 520px;
        margin: 0 auto 20px auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .tel-numbers dl dt {
        width: 50%;
        padding: 10px 10px 10px 0;
        margin-bottom: 30px;
        box-sizing: border-box;
        font-size: 2.1rem;
        font-weight: 500;
        text-align: left;
    }
    .tel-numbers dl dd {
        width: 50%;
        padding: 10px 0 10px 40px;
        box-sizing: border-box;
        margin-bottom: 30px;
        border-left: 1px solid #999;
        font-size: 2.7rem;
        font-family: 'Jost','Noto Sans JP', sans-serif;
        font-weight: 500;
        letter-spacing: 0.05em;
        text-align: left;
    }
    .mail-form {
        margin: 0 auto 100px auto;
        padding: 60px 85px;
        max-width: 834px;
        width: 100%;
        box-sizing: border-box;
        background-color: #f3f4f9;
    }
    .mail-form .mw_wp_form dl {
        display: flex;
        flex-wrap: wrap;
    }
    .mail-form .mw_wp_form dt {
        width: 33%;
        padding: 25px 15px 25px 0;
        box-sizing: border-box;
        font-size: 1.6rem;
        font-weight: 700;
    }
    .mail-form .mw_wp_form dd {
        width: 67%;
        padding: 15px 0 15px 0;
        box-sizing: border-box;
        font-size: 1.6rem;
    }
    .mwform-radio-field {
        display: inline-block;
    }
}


/*------------------------------------------
ニュース
------------------------------------------*/

.news .section-content {
    width: 100%;
    max-width: 874px;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: border-box;
}
.news .topics-lists {
    border-top: 2px solid #172A88;
}
.news .topics-lists .topics-item {
    font-size: 1.4rem;
    padding: 12px 20px;
    border-bottom: 1px solid #CDD6DD;
}
.news .topics-lists .topics-item dt {
    margin-bottom: 0.5em;
    line-height: 1.5;
    color: #707F89;
    font-weight: 400;
}
.news .topics-lists .topics-item dd {
    font-size: 1.6rem;
    line-height: 1.5;
}
.news .topics-lists .topics-item dd a {
    color: #4B3421;
}

.news .section-content article {
    font-size: 1.6rem;
}
.news .section-content .pub-title {
    font-size: 1.8rem;
    color: #707F89;
    font-weight: 400;
}
.news .section-content .pub-title {
    font-size: 2.4rem;
    margin: 30px 0 50px 0;
    padding-bottom: 30px;
    line-height: 1.275;
    color: #172A88;
    font-weight: 500;
    border-bottom: 2px solid #172A88;
}
.news .section-content .pub-body {
    line-height: 1.785;
}

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

    .news .topics-lists .topics-item {
        display: flex;
        justify-content: flex-start;
        font-size: 1.8rem;
        padding: 18px 0;
        border-bottom: 1px solid #CDD6DD;
    }
    .news .topics-lists .topics-item dt {
        width: 6em ;
        margin-right: 30px;
        margin-bottom: 0;
        padding-top: 0;
    }
    .news .topics-lists .topics-item dd {
        flex: 1;
        font-size: 1.8rem;
    }
    .news .topics-lists .topics-item dd a {
        color: #4B3421;
    }
}



.news-content .container {
    max-width: 896px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 70px 15px 100px 15px;
}

.page-navi ul {
    padding: 50px 15px;
    margin-bottom: 50px;
    border-top: 1px solid #4B3421;
    border-bottom: 1px solid #4B3421;
}
.page-navi ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.page-navi ul li {
    list-style-type: none;
    font-size: 1.4rem;
    line-height: 1.5;
    width: 50%;
}
.page-navi .previous-link {

}
.page-navi .next-link {
    text-align: right;
}

.archive-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.archive-menu .widget_block {
    width: 100%;
    max-width: 320px;
    padding: 0 50px;
    margin-bottom: 0px;
    box-sizing: border-box;
}
.archive-menu .widget_block h5 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1em;
}
.archive-menu .widget_block .wp-block-categories {
    font-size: 1.4rem;
    margin-bottom: 1em;
}
.archive-menu .widget_block label {
    display: none;
}
.archive-menu .widget_block .wp-block-categories li {

}
.archive-menu .widget_block .wp-block-archives-dropdown select {
    font-size: 1.4rem;
    margin-bottom: 1em;
    width: 100%;
}

.post-nav {
    width: 100%;
    margin: 50px auto 50px auto;
    padding: 0 15px;
    box-sizing: border-box;
} 
.post-nav ul {
    display: flex;
    justify-content:space-between;
    align-items: center;
    flex-direction: column;
}
.post-nav li {
    list-style-type: none;
    font-size: 1.6rem;
    font-weight: 500;
    box-sizing: border-box;
    margin-bottom: 30px;
}
.post-nav .lnbtn {
    margin-top: 0px;
    max-width: 170px;
    width: 100%;
    order: 2;
}
.pg-nav {
    width: 100%;
    padding: 50px 15px;
    box-sizing: border-box;
}
.wp-pagenavi {
    text-align: center;
    font-size: 1.4rem;
}
.wp-pagenavi a, .wp-pagenavi span {
    text-decoration: none;
    border: 1px solid #BFBFBF;
    padding: 3px 8px;
    margin: 3px;
}

.wp-pagenavi span.current {
    font-weight: bold;
    border: 1px solid #4B3421;
    background-color:#4B3421;
    color: #FFF;
}
.wp-pagenavi a:hover {
    border: 1px solid #4B3421;
    background-color:#4B3421;
    color: #FFF;
}

@media screen and (min-width:480px) {

    .post-nav {
        margin: 75px auto 50px auto;
    } 
    .post-nav ul {
        flex-direction: row;
    }
    .post-nav ul li {
        width: 33.33%;
        margin-bottom: 0px;
    }
    .post-nav ul .nextpost {
        text-align: right;
    }
    .post-nav .lnbtn {
        order: 0;
    }
    .page-navi ul li {
        width: auto;
    }
    .archive-menu {
        display: flex;
        justify-content: center;
        flex-direction: row;
    } 
    .archive-menu .widget_block {
        width: 50%;
        max-width: 320px;
        padding: 0 50px;
        margin-bottom: 30px;
        box-sizing: border-box;
        border-right: 1px solid #000;
    }
    .archive-menu .widget_block:first-of-type {
        border-left: 1px solid #000;
    }

}

