/*------------------------------------------------------------------------------
    ヘッダー関連変数
------------------------------------------------------------------------------*/
:root{
    // ヘッダー背景色
    --headerBackgroundColor : #fff;
    
    // ヘッダー会社ロゴ パス
    --headerLogo : url('../img/iwt-logo.svg');
    // ヘッダー会社ロゴ 幅
    --headerLogoWidth : 48px;
    // ヘッダー会社ロゴ 高さ
    --headerLogoHeight : 42px;
    
    // ヘッダー会社名 文字色
    --headerNameColor : #000;
    
    // ヘッダメニューにマウスを乗せた時の下線色
    --headerHoverUnderLineColor : #023f7d;

    // フッター会社ロゴ パス
    --footerLogo = var(--headerLogo);
    // フッター会社ロゴ 幅
    --footerLogoWidth : 36px;
    // フッター会社ロゴ 高さ
    --footerLogoHeight : 31px;
    
    // 全体イメージカラー
    --imageColor : #8B9B6F;
}
/*------------------------------------------------------------------------------
    アイキャッチ関連変数
------------------------------------------------------------------------------*/

*{}/*このダミーを挟まないと1つ目のスタイルが効かない（原因不明）*/
*{
    font-family: "メイリオ","Hiragino Kaku Gothic Pro W3","Hiragino Kaku Gothic ProN",Meiryo,sans-serif;
    box-sizing: border-box;
    border-collapse: collapse;
    transition-duration: 300ms;
}

body{
    font-family: "メイリオ","Hiragino Kaku Gothic Pro W3","Hiragino Kaku Gothic ProN",Meiryo,sans-serif;
    opacity: 0;
    margin: 0;
    padding: 0;
    transition-duration: 300ms;
}
body.appear{
    opacity: 1;
}

p,h1,h2,h3,h4,h5,h6{
    font-weight: normal;
    font-size: 1em;
    line-height: 1.4em;
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
    color: #023f7d;
}

li{
    list-style: none;
}

.sep8{
    height: 8px;
}
.sep16{
    height: 16px;
}
.sep32{
    height: 32px;
}
.sep64{
    height: 64px;
}

.table{
    display: table;
}

/*優先順位高*/
.spno{
    display: none !important;
}
.breadCrumbs{
    display: inline-block !important;
}
.relative{
    position: relative !important;
}
.absolute{
    position: absolute !important;
}
.fixed{
    position: fixed !important;
}

.mincho{
    font-family: 'ＭＳ 明朝', 'ＭＳ 明朝', 'ヒラギノ明朝', 'HG明朝E',  serif;
}

.hidden{
    display: none;
}

.mainSection{
    padding-bottom: 32px;
    min-height: calc(100vh) !important;
}

.fontSize16{
    font-size: 16px !important;
}
.fontSize14{
    font-size: 14px !important;
}
.fontSize12{
    font-size: 12px !important;
}

.inner{
    position: relative;
}

/*------------------------------------------------------------------------------
    ヘッダー
------------------------------------------------------------------------------*/
.headerFlex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.headerLeft{
    display: flex;
    align-items: center;
}
.headerRight{
    display: flex;
    padding-right: 12px;
}

.headerCompanyName > .inner{
    position: absolute;
    bottom: 0;
    left: 8px;
    white-space: nowrap;
}

.headerRightMenu{
    height: 48px;
    max-height: 48px;
    display: flex;
    align-items: center;
}
.header.fixed .headerRightMenu{
    max-height: 32px;
}

.headerRightMenuItem{
    display: table-cell;
    vertical-align: bottom;
    padding: 0 16px;
    position: relative;
}
.headerRightMenuItem:hover::after{
    max-width: 100%;
    left: 0;
    right: 0;
    transition-duration: 100ms;
}

/*------------------------------------------------------------------------------
    Eyecatch
------------------------------------------------------------------------------*/
.eyeCatch{
    width: 100%;
    height: 50vh;
    background-color: #000;
}
.eyeCatch > .inner{
    width: 100%;
    height: 100%;
}
.eyeCatch .eyecatchBG{
    width: 100%;
    height: 100%;
    background-image: url('../img/eyecatchBG.jpg');
    background-size: cover;
    background-position-x: center;
    background-position-y: top;
}
.eyeCatch .eyecatchBG > .inner{
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*
.eyeCatch .eyecatchBG > .inner > .eyecatchBox{
    width: 96%;
    height: 300px;
    border: #000 2px solid;
    border-radius: 16px;
    padding-top: 32px;
}

.eyeCatch .companyName{
    width: 80%;
    font-size: 56px;
    font-weight: 600;
    padding-bottom: 16px;
    border-bottom: #000 2px solid;
    margin: 0 auto;
    text-align: center;
}
*/

.eyeCatch .eyecatchBG > .inner > .eyecatchBox{
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 900;
    padding-top: 32px;
}

.eyeCatch .companyName{
    width: 80%;
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 16px;
    color: #000;
    border-bottom: #000 2px solid;
    margin: 0 auto;
    text-align: center;
}

.eyeCatch .recruitCaption{
    text-align: center;
    padding-top: 32px;
    color: #000;
    font-size: 24px;
    font-weight: 600;
}

.eyeCatch .toRecruit{
    display: block;
    width: 240px;
    margin: 0 auto;
    margin-top: 32px;
    padding: 8px 16px;
    border: #000 4px double;
    color: #000;
    text-align: center;
    font-size: 20px;
}

/*-----------------------------------------------------------------------------
    CornerArea
-----------------------------------------------------------------------------*/
.cornerArea{
    padding-top: 32px;
    padding-bottom: 64px;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
}
.cornerArea:nth-child(even){
    background-color: rgba(255,255,255,0.9);
    background-blend-mode:lighten;
}
.cornerArea > .inner{
    max-width: 96%;
    margin: 0 auto;
}

.cornerTitleEn{
    font-family: futura-pt, sans-serif;
    text-align: center;
    font-size: 48px;
    font-weight: 800;
}
.cornerTitleJp{
    font-family: futura-pt, sans-serif;
    text-align: center;
    font-size: 24px;
    margin-bottom: 32px;
}

/*------------------------------------------------------------------------------
    Works
------------------------------------------------------------------------------*/
.worksArea{
    background-image: url('../img/worksBG.jpg');
}

.worksContent{
    background-image: url('../img/worksBG.jpg');
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    padding: 64px;
    background-color: rgba(0,0,0,0.05);
    background-blend-mode:multiply;
}
.worksContent > p{
    width: 96%;
    margin: 0 auto;
    color: #FFF;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.8em;
    text-shadow: 1px 1px 8px #036, -1px -1px 8px #036,
                -1px 1px 8px #036, 1px -1px 8px #036;
}

/*------------------------------------------------------------------------------
    CompanyArea
------------------------------------------------------------------------------*/
.companyArea{
    background-image: url('../img/companyBG.jpg');
}
.companyContent{
    padding: 32px;
    background-image: url('../img/companyContentBG.jpg');
    background-color: rgba(0,0,0,0.1);
    background-blend-mode:multiply;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
}
.companyTable{
    margin: 0 auto;
    border-collapse: collapse;
}
.companyTable > .tr{
    border-bottom: 1px #7994a8 solid;
}
.companyTable > .tr > .td{
    padding: 8px;
    
}
.companyTable > .tr > .td1{
    background-color: rgba(20,100,130,0.5);
    color: #fff;
    font-weight: 800;
}
.companyTable > .tr > .td2{
    background-color: rgba(255,255,255,0.5);
    padding-left: 16px;
    color: #333;
}

/*------------------------------------------------------------------------------
    RecruitArea
------------------------------------------------------------------------------*/
.recruityArea{
    background-image: url('../img/recruitContentBG.jpg');
    background-color: rgba(255,255,255,1);
    background-blend-mode:lighten;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
}
.recruitTable{
    margin: 0 auto;
    border-collapse: collapse;
}
.recruitTable > .tr{
    border-bottom: 1px #023f7d dashed;
}
.recruitTable > .tr > .td{
    padding: 8px;
    
}
.recruitTable > .tr > .td1{
    padding-right: 16px;
    background-color: rgba(20,100,130,0.7);
    color: #fff;
    font-weight: 800;
}
.recruitTable > .tr > .td2{
    background-color: rgba(255,255,255,0.7);
    padding-left: 16px;
    color: #666;
}

.recruitContent{
    padding: 32px;
    background-image: url('../img/recruitContentBG.jpg');
    background-color: rgba(255,255,255,0.2);
    background-blend-mode:lighten;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
}

/*------------------------------------------------------------------------------
    ContacttArea
------------------------------------------------------------------------------*/
.contactArea{
    background-image: url('../img/contactBG.jpg');
}
.contactContent{
    padding: 32px;
    background-image: url('../img/contactBG.jpg');
    background-color: rgba(255,255,255,0.4);
    background-blend-mode:lighten;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
}
.contactTable{
    margin: 0 auto;
    border-collapse: collapse;
}
.contactTable > .tr{
    border-bottom: 1px #023f7d dashed;
}
.contactTable > .tr > .td{
    padding: 8px;
    vertical-align: middle;
}
.contactTable > .tr > .td1{
    padding-right: 16px;
    background-color: rgba(20,100,130,0.8);
    color: #fff;
    font-weight: 800;
    text-align: center;
}
.contactTable > .tr > .td2{
    background-color: rgba(255,255,255,0.8);
    padding-left: 16px;
    color: #666;
    text-align: center;
}

.contactTable input{
    padding: 8px;
}

.contactTable textarea{
    padding: 8px;
    width: 100%;
    height: 100px;
}

.contactTable input[name='NAME'],
.contactTable input[name='KANA']{
    width: 50%;
}

.contactTable input[name='ADDRESS']{
    width: 100%;
}

.contactTable input[name='EMAIL'],
.contactTable input[name='TEL']{
    width: 50%;
}

.contactTable ::placeholder{
    color: #aab;
}

.contactTable label{
    font-weight: 600;
    cursor: pointer;
}

/*------------------------------------------------------------------------------
    AccessArea
------------------------------------------------------------------------------*/
.accessArea > .inner{
    width: 96%;
    margin: 0 auto;
    text-align: center;
}

.accessArea iframe{
    width: 96% !important;
    margin: 0 auto;
}

/*------------------------------------------------------------------------------
    フッター
------------------------------------------------------------------------------*/
footer{
    padding: 64px;
    background-color: #023f7d;
    color: #fff;
}

footer > .inner{
    width: 96%;
    margin: 0 auto;
}

footer .footerFlex{
    display: flex;
    justify-content: space-between;
}

footer .companyNameArea{
    display: flex;
    justify-content: flex-start;
    margin-bottom: 16px;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 12px;
    background-color: var(--headerBackgroundColor);
    transition-duration: 300ms;
    z-index: 999;
}
.header.fixed{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    align-items: center;
}

.headerLogo{
    width: var(--headerLogoWidth);
    height: var(--headerLogoHeight);
    max-height: var(--headerLogoHeight);
    background-image: var(--headerLogo);
    background-size: cover;
    transition-duration: 300ms;
}
.header.fixed .headerLogo{
    max-height: 32px;
    max-width: calc((32 / var(--headerLogoHeight) * var(--headerLogoWidth));
    
}

.headerCompanyName{
    position: relative;
    height: var(--headerLogoHeight);
    max-height: var(--headerLogoHeight);
    font-size: calc(var(--headerLogoHeight) - 10px);
    line-height: 1;
    overflow: visible;
    color: var(--headerNameColor);
    transition-duration: 300ms;
}
.header.fixed .headerCompanyName{
    height: 32px;
    max-height: 32px;
    font-size: 24px;
}

.headerCompanyClass{
    font-size: calc(var(--headerLogoHeight) - 10px - 10px);
    padding: 0 4px;
    transition-duration: 300ms;
}
.header.fixed .headerCompanyClass{
    font-size: 12px; 
}
.headerRightMenuItem::after{
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    max-width: 0;
    height: 1px;
    background-color: var(--headerHoverUnderLineColor);
}

.headerMargin{
    height: calc(var(--headerLogoHeight) + 24px);
}

footer{
    background-color: var(--imageColor);
}

footer .companyLogo{
    border: 0;
    height: var(--footerLogoHeight);
    width: var(--footerLogoWidth);
    background-image: var(--footerLogo);
    background-size: cover;
    vertical-align: bottom;
    margin-right: 16px;
}

footer .companyName{
    font-size: 24px;
    font-weight: 400;
}

.cornerArea:nth-child(odd){
    background-color: var(--imageColor);
    background-blend-mode:screen;
}

