@charset "utf-8";
.sitetop_sitetitle {
    position: absolute;
    top: 380px;
    left: calc(50% - 360px);
    z-index: 99;
    text-shadow: 1px 1px 10px black, 0 0 10px black, -1px -1px 10px black;
    color: white;
    font-size: 2em;
}
@media screen and (max-width: 1024px) {
    .sitetop_sitetitle {
        top: 340px;
        left: calc(50% - 200px);
        font-size: 1.2em;
    }
}
@media screen and (max-width: 599px) {
    .sitetop_sitetitle {
        top: 260px;
        left: calc(50% - 160px);
        font-size: 0.8em;
    }
}
/* --------------------------------------------------
	重要なお知らせのためのcss
-------------------------------------------------- */
.sitetop_important_title{
	font-size:1.2em;
	color:#dc143c;
	font-weight:bold;
}
.sitetop_important{
	margin-bottom: 50px;
	margin: 0 15px;
}
.sitetop_important P{
	margin-bottom: 5px;
}
@media screen and (max-width: 599px) {
.sitetop_important{
	text-align: left;
}
.sitetop_important_title{
	text-align: center;
	margin-top: 20px;
	}
.sitetop_important_date{
	text-align: center;		
	}
}

/* --------------------------------------------------
	トップステージスライショーのためのcss
-------------------------------------------------- */
.topstage_slideshow {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    z-index: 0;
    position: relative;
}
.topstage_slideshow div {
    margin: 0 auto;
}
/* スタイル設定　*/
.slider_innner {
    position: relative;
    /* 表示するスライダーの高さを設定 */
    height: calc(500/1920*100vw) !important;
    margin: 0 auto;
    padding: 0 auto;
    text-align: center;
    overflow: hidden;
}
.slider_innner ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.slider_innner ul img {
    /* スライドさせる画像の幅を設定 */
    width: 100%;
    margin: 0 auto;
    padding: 0 auto;
    object-fit: cover;
    object-position: bottom;
}
.slider_innner ul li {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation-iteration-count: infinite;
    /* アニメーションの周期は26秒 */
    animation-duration: 21s;
}
/* -------------------------------------------------- */
/* アニメーション開始時間の設定 */
.slider_innner ul li:nth-child(1) {
    animation-name: slider_innner;
    /* 1秒前からスタート */
    animation-delay: -1s;
}
.slider_innner ul li:nth-child(2) {
    animation-name: slider_innner;
    animation-delay: 6s;
    opacity: 0;
}
.slider_innner ul li:nth-child(3) {
    animation-name: slider_innner;
    animation-delay: 13s;
    opacity: 0;
}
/* -------------------------------------------------- */
/* フェードイン・フェードアウトの設定 */
@keyframes slider_innner {
    /* 非表示（不透明度0%）状態からフェードインを始める  */
    0% {
        opacity: 0;
    }
    /* ここまでにフェードインを完了し、完全表示（不透明度100%）にする */
    4.76% {
        opacity: 1;
    }
    /* ここまで完全表示（不透明度100%）の状態を維持したらフェードアウトを始める */
    33.33% {
        opacity: 1;
    }
    /* ここまでにフェードアウトを完了し、非表示（不透明度0%）にする */
    42.85% {
        opacity: 0;
    }
    /* 非表示（不透明度0%）状態を維持したまま終わる */
    100% {
        opacity: 0;
    }
}


/*==================================================
スライダーのためのcss
===================================*/
.slider { /*横幅94%で左右に余白を持たせて中央寄せ*/
    width: 100%;
    margin: 0 auto;
}
.slider img {
    width: 30vw; /*スライダー内の画像を60vwにしてレスポンシブ化*/
    height: auto;
    background: #fff;
    box-shadow: 5px 5px 10px #c6d7d7, -5px -5px 10px #f2ffff;
}
.slider .slick-slide {
    transform: scale(0.7); /*左右の画像のサイズを80%に*/
    transition: all .5s; /*拡大や透過のアニメーションを0.5秒で行う*/
    background: #fff;
}
.slider .slick-slide.slick-center {
    transform: scale(1); /*中央の画像のサイズだけ等倍に*/
    opacity: 1; /*透過なし*/
}
.slick-dots {
    bottom: -30px !important;
    top: auto !important;
}
/*矢印の設定*/
.slick-arrow {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    padding: 0;
    width: 20px;
    height: 38px;
    color: transparent;
    z-index: 1;
    transition: opacity 0.5s;
    z-index: 1;
}
.slick-arrow:hover {
    opacity: 0.7;
}
/* 共通設定 */
.slick-next::before, .slick-next::after, .slick-prev::before, .slick-prev::after {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}
.slick-next::after, .slick-prev::after {
    width: 26px;
    height: 26px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
}
/* next */
.slick-next {
    top: 0 !important;
    right: 30px !important;
}
.slick-prev:before, .slick-next:before {
    content: none !important;
}
.slick-next::after {
    right: 4px;
    transform: rotate(45deg);
}
/* prev */
.slick-prev {
    top: 0 !important;
    left: 30px !important;
}
.slick-prev::after {
    left: 4px;
    transform: rotate(-135deg);
}
@media screen and (max-width: 767px) {
    .slider img {
        width: 90vw; /*スライダー内の画像を60vwにしてレスポンシブ化*/
    }
    .slick-next::after, .slick-prev::after {
        width: 10px;
        height: 10px;
    }
    .slick-next {
        right: 8px;
    }
    .slick-prev {
        left: 8px;
    }
    .slick-next::after {
        right: 2px;
    }
}
.slider > li {
    position: relative;
}
/* 採用情報 */
.recruit {
    display: flex;
    justify-content: center;
    background-color: #fff;
    padding-bottom: 10px;
    height: auto;
    margin-top: 0;
    text-align: center;
    padding: 50px 0;
}
.recruit img {
    background-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 10px 0 rgb(0, 0, 0, 30%);
    max-width: 600px;
    margin: 10px 15px;
}
@media (max-width: 1200px) {
.recruit {
  display: block;
  }  
.recruit img {
  width: calc(100% - 20px);
  }
}
/* 続きを読む */
#hotnews span {
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #FFFFFF;
    font-weight: normal;
    font-size: .9em;
    background: #005bab;
    padding: .1em 1em;
    color: #fff;
}
#hotnews ul.l_aboutus_btnlist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
}
/*ボタン*/
#hotnews ul.bpts_btn_neumorphism {
    margin: 50px 0;
}
#hotnews ul.bpts_btn_neumorphism li {
    width: 180px;
    height: 60px;
    font-size: 1.3em;
    margin: 8px;
}
/*ボタン-Neumorphism*/
#hotnews ul.bpts_btn_neumorphism li a {
    display: block;
    padding: 5px;
    height: 100%;
    width: 100%;
    border-radius: 10px;
    background: #fff;
    box-shadow: 5px 5px 10px #c6d7d7, -5px -5px 10px #f2ffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #313637;
    font-weight: bold;
}
#hotnews ul.bpts_btn_neumorphism li a:hover {
    background: #fff;
    box-shadow: inset 5px 5px 10px #c6d7d7, inset -5px -5px 10px #f2ffff;
}
/*Hot news==============*/
.bg_pattern_hotnews {
    height: auto;
    text-align: center;
    margin-top: 0;
    padding-top: 40px;
    background-image: url("../image/sitetop/bg-hotnews.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 150px;
}
@media (max-width: 1024px) {
    /*Hot news==============*/
    .bg_pattern_hotnews {
        padding-top: 0;
    }
}
/* --------------------------------------------------
	Contents
-------------------------------------------------- */
.bg_pattern_contents {
    height: auto;
    margin-top: 0;
    text-align: center;
    padding: 80px 0;
    /*background: url("../image/sitetop/bg-customer.jpg"), linear-gradient(to right, gray, black);
		background-blend-mode: screen;
		background-position: right;
		background-repeat-y: no-repeat;
		background-size: cover;*/
}
/* お客様別ソリューション上部余白調整 */
#solution.bg_pattern_contents {
    background: url("../image/sitetop/bg-customer.jpg"), linear-gradient(to right, gray, black);
    background-blend-mode: screen;
    background-position: right;
    background-repeat-y: no-repeat;
    background-size: cover;
    margin-top: 0;
}
#solution.bg_pattern_contents:nth-of-type(2) {
    /*		margin-top: 150px;*/
}
/* 会社案内背景 */
#about.bg_pattern_contents {
    background-color: #fff;
    padding-bottom: 10px;
}
/* 選び方ナビ背景 */
#navi.bg_pattern_contents {
    /*	background: #fff!important;*/
    padding-bottom: 30px;
}
/* サプライ背景 */
#supply.bg_pattern_contents {
    background-color: #fff;
    padding-bottom: 0;
}
/* お役立ち情報背景 */
#useful.bg_pattern_contents {
    background: url("../image/sitetop/bg-useful.jpg");
}
div.bg_pattern_blue div img {
    display: block;
    width: 70px;
    height: 70px;
    margin: 0 auto 1em auto;
}
/* --------------------------------------------------
	選び方ナビ
-------------------------------------------------- */
.accordion_box {
    background: #f3f7fb;
    margin: 0;
    padding: 50px 60px;
    width: calc(100% - 120px);
}
.accordion_box p {
    font-size: 2em;
    font-weight: bold;
}
.accordion_box div {
    margin-bottom: 40px;
}
/*エリアの表示非表示と形状*/
.area {
    display: none; /*はじめは非表示*/
    opacity: 0; /*透過0*/
    background: #fff;
    padding: 50px 20px;
    border: 1px solid #ededed;
    /*	border-top:none;
*/ width: calc(100% - 47px);
    margin-left: 2px;
    margin-right: 0;
}
.area li {
    padding: 0;
}
.bpts_accordion_area li {
    margin: 0;
}
.accordion_title {
    text-align: left;
}
.accordion_title {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0;
}
.accordion_title p {
    width: 80%;
    padding-top: 28px;
}
.accordion_title img {
    width: 150px;
    height: auto;
}
#category img {
    width: 100%;
    max-width: 1000px;
}
#print img {
    width: 100%;
    max-width: 690px;
}
@media (max-width: 599px) {
    .accordion_box {
        padding: 20px 30px;
        width: calc(100% - 60px);
    }
    .accordion_box p {
        font-size: 1em;
        font-weight: bold;
        margin-bottom: 20px;
    }
    .accordion_box div {
        margin-bottom: 20px;
    }
    .accordion_box div img {
        width: 70%;
    }
    .area {
        width: 100%;
        margin: 0;
        padding: 20px 0;
    }
    .area li {
        padding: 0;
    }
    .bpts_accordion_area li {
        margin: 0;
    }
    .accordion_title {
        display: block;
        padding: 10px 0 10px 50px;
        text-align: center
    }
    .accordion_title p {
        width: 100%;
        padding-top: 18px;
        text-align: left;
        font-size: 0.8em;
    }
    .accordion_title img {
        height: auto;
        width: 50%;
    }
}
/* --------------------------------------------------
	サプライ
-------------------------------------------------- */
/* 3列余白無 */
.contents_wrapper4 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
    justify-content: center;
    margin: 0 auto;
}
.contents_wrapper4 a {
    width: 33.3%;
    height: 200px;
    color: #111;
    background-position: center;
    background-size: cover;
    border-radius: 0;
    margin: 0;
}
.contents_wrapper4 a:first-of-type {
    background-image: url("../image/sitetop/img-contents-01.jpg");
}
.contents_wrapper4 a:nth-of-type(2) {
    background-image: url("../image/sitetop/img-contents-02.jpg");
}
.contents_wrapper4 a:nth-of-type(3) {
    background-image: url("../image/sitetop/img-contents-03.jpg");
}
.contents_wrapper4 a:nth-of-type(4) {
    background-image: url("../image/sitetop/img-contents-04.jpg");
}
.contents_wrapper4 a:nth-of-type(5) {
    background-image: url("../image/sitetop/img-contents-05.jpg");
}
.contents_wrapper4 a:nth-of-type(6) {
    background-image: url("../image/sitetop/img-contents-06.jpg");
}
.contents_wrapper4 a:hover div {
    color: #111;
    background-color: rgba(255, 255, 255, 0.1);
    /*    backdrop-filter: blur(3px);
    border: 1px solid rgb(255, 255, 255, 10%);
*/ box-shadow: 0 8px 10px 0 rgb(255, 255, 255, 30%);
    transition: 1s;
}
.contents_wrapper4 a:hover div {
    color: #111;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 10px 0 rgb(255, 255, 255, 30%);
    transition: 1s;
}
.contents_wrapper4 a:active {
    color: #111;
}
.contents_wrapper4 a:visited {
    color: #111;
}
.contents_wrapper4 div {
    position: relative;
    font-size: 24px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    background-color: rgba(0, 91, 171, 0.3);
    /*    border: 1px solid rgb(0,0,0, 10%);
*/ box-shadow: 0 8px 10px 0 rgb(0, 91, 171, 30%);
    font-weight: 400;
    height: 200px;
}
.contents_wrapper4 div div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-end;
    text-align: left;
}
.contents_wrapper4 div div p {
    margin: 0 20px 10px 20px;
    width: calc(100% - 40px);
    color: #fff;
    text-shadow: 1px 1px 5px darkgray, 0 0 5px black, -1px -1px 5px black;
    letter-spacing: 0.1em;
}
.contents_wrapper4 div div p span {
    display: block;
    font-size: 0.5em;
    letter-spacing: 0.2em;
}
.contents_wrapper4 div div p span:nth-of-type(2) {
    display: block;
    border-top: 1px solid #fff;
    padding-top: 10px;
}
@media (max-width: 1024px) {
    /* 3列パネル余白無し */
    .contents_wrapper4 {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        margin-top: 10px;
        flex-direction: column;
    }
    .contents_wrapper4 a {
        width: 100%;
        margin: 10px 0;
    }
    .contents_wrapper4 a::after {
        content: url(https://icongr.am/feather/chevron-right.svg?size=28&color=000000);
        position: relative;
        top: -62px;
        left: 35%;
    }
    .contents_wrapper4 div {
        width: 100%;
        top: 0;
        font-size: 21px;
        padding: 0;
        margin: 0 auto;
    }
    .contents_wrapper4 a:hover div {
        box-shadow: none;
    }
}
/* --------------------------------------------------
	インフォメーション
-------------------------------------------------- */
div.s_news {
    padding: 80px 0;
    background-image: url("../image/sitetop/bg-info.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}
/*ブログ・ニュースの枠*/
div.s_news div {
    width: calc(100% - 60px);
    max-width: 1300px;
    margin: 10px;
    padding: 30px 0;
}
div.s_news div:last-of-type {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 10px 0 rgb(255, 255, 255, 30%);
    backdrop-filter: blur(4px);
    /*    border: 1px solid rgb(255, 255, 255, 30%);
*/ margin-top: 50px;
}
/*div.s_news div:last-of-type {
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 8px 10px 0 rgb(0, 0, 0, 30%);
    backdrop-filter: blur(4px);
    border: 1px solid rgb(0, 0, 0, 30%);
}
*/ div.s_news div h3 {
    color: #005bab;
    font-size: 2.5em;
    letter-spacing: 0.05em;
    position: relative;
    font-weight: bold;
}
#l_info h3 {
    color: #fff;
}
#l_info ul li {
    color: #fff;
}
/*スクロール可動域*/
div.s_news div ul {
    width: 100%;
    text-align: left;
    font-size: .9em;
    margin: 2em auto 1em;
    height: 340px;
/*    overflow-y: auto;
*/	overflow-y: hidden;
}
div.s_news div ul li {
    border-top: 1px dashed #aaa;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    color: #111;
    display: block;
    width: calc(100% - 20px);
    padding: 10px;
    line-height: 1.7;
    letter-spacing: 0.02em;
}
div.s_news div ul li a {
    color: #111;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
div.s_news div#l_info ul li a {
    color: #f6b468;
}
div.s_news div ul li:hover {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
}
/*アイコン（お知らせ）*/
span.oshirase {
    padding: 0;
    margin: 0;
    letter-spacing: .02em;
    display: inline-block;
    font-size: .7em;
    text-align: center;
    background: #005bab;
    width: 80px;
    color: #fff;
}
/*アイコン（展示会）*/
span.tenjikai {
    padding: 0;
    margin: 0;
    letter-spacing: .02em;
    display: inline-block;
    font-size: .7em;
    text-align: center;
    background: #946525;
    width: 80px;
    color: #fff;
}
/*アイコン（新発売）*/
span.start {
    padding: 0;
    margin: 0;
    letter-spacing: .02em;
    display: inline-block;
    font-size: .7em;
    text-align: center;
    background: #dc143c;
    width: 80px;
    color: #fff;
}
/*アイコン（販売終了）*/
span.end {
    padding: 0;
    margin: 0 .7em;
    letter-spacing: .02em;
    display: inline-block;
    font-size: .7em;
    text-align: center;
    background: #666;
    width: 120px;
    color: #fff;
}
/*アイコン（NEW）*/
span.new {
    padding: 0;
    margin: 0 .7em;
    letter-spacing: .02em;
    display: inline-block;
    font-size: .7em;
    text-align: center;
    background: #dc143c;
    color: #fff;
    width: 4em;
}
div.s_news div ul li ul {
    margin-top: 0;
}
div.s_news div ul li ul li {
    border-top: none;
    background-color: none;
}
div.s_news div ul li ul li:hover {
    background: none;
}
div.s_news div ul li span:first-of-type {
    width: 90px;
    display: inline-block;
    font-weight: 600;
}
div.s_news div ul li a {
    color: #005bab;
    font-weight: bold;
}
/*--------------------------
　　　　　　3列パネル
----------------------------*/
#useful .contents_wrapper2 a:first-of-type {
    background-image: url("../image/sitetop/img-tenjikai.jpg");
}
#useful .contents_wrapper2 a:nth-of-type(2) {
    background-image: url("../image/sitetop/img-oyakudachi.jpg");
}
/* sitemap==============*/
.bg_pattern_sitemap {
    height: auto;
    text-align: center;
    margin-top: 0;
    font-size: .7em;
    width: 50px;
    color: #fff;
    background: #946525;
}
/*詳細はこちら*/
span.detail {
    margin: 0 .7em;
    letter-spacing: .02em;
    padding: 0 10px 2px;
    font-size: .7em;
    display: inline-block;
    text-align: center;
    ground: #fff;
    color: #005bab;
    border: 1px solid #005bab;
    font-weight: bold;
    border-radius: 5px;
}
span.detail::after {
    content: url(https://icongr.am/feather/chevron-right.svg?size=14&color=004EA2);
    position: relative;
    top: 3px;
    padding-left: 2px;
}
@media (max-width: 1024px) {
    /*ブログ・ニュースの枠*/
    div.s_news div {
        margin: 0 auto 20px auto !important;
        width: calc(100% - 40px);
    }
}
#admission {
    text-align: center;
    padding-bottom: 4em;
}
/* ============================
		Other
============================== */
.bg_pattern_contents.misc {
    margin-top: 0;
}
/* ============================
		zone.cssとかぶるcss
============================== */
#zone_middle_floor {
    /*    background-color: #f1f1f1;
*/
}
@media (max-width: 1024px) {
    #zone_body {}
}
@media (max-width: 599px) {
    #zone_body {
        padding-top: 0;
        margin-top: 0;
    }
}
/* 基本　*/
#zone_middle_floor {
    margin: 0 auto;
}
@media (max-width: 1024px) {
    /* 基本　*/
    /*    #zone_middle_floor {
        margin-top: 5px;
    }
}*/
    #zone_bottom_floor {
        margin: 0;
    }
}
@media (max-width: 599px) {
    /* 基本　*/
    #zone_middle_floor {
        margin: 40px auto 0;
    }
}
.sitetop_arrow::after {
    content: url("https://icongr.am/fontawesome/arrow-circle-right.svg?size=24&color=ffffff");
    /*絶対配置で矢印の位置を決める*/
    top: 13px;
    right: 15px;
    transition: all .3s;
    display: inline-block;
    width: 16px;
    height: 10px;
}