/*top.css*/

/*
html {
    font-size: clamp(60%, 0.833vw, 62.5%);
}
*/

/*
div, p, a, ul, li, dt, dd, span {
    font-size: clamp(1.4rem, 1.25vw, 1.6rem);
}
*/

main {
    margin-top: 128px;
}

/*----------------
Title
------------------*/

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    position: relative;
    margin-bottom: 24px;
}

h2:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 4px;
    height: 27px;
    background-color: var(--cloud40);
    margin-right: 16px;
    margin-top: -4px;
/*
    position: absolute;
    top: 10px;
    left: 0;
*/
}

/*----------------
Button
------------------*/

.link_btn01 {
    display: block;
    padding: 14px 32px 14px 32px;
    background-color: var(--blue40);
    border: 1px solid var(--blue40);
    border-radius: 6px;
    color: #fff;
    font-weight: 500;
    text-align: center;
    width: fit-content;
    min-width: 256px;
    box-shadow: var(--shadow15-small);
    position: relative;
    overflow: hidden;
}

.link_btn01 span {
    color: #fff;
    font-size: 1.6rem;
    text-align: center;
    font-weight: 500;
    position: relative;
}

/*
.link_btn01 span::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 12px;
    height: 12px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    margin-left: 8px;
    margin-top: -4px;
}
*/

.link_btn01.center {
    margin: 0 auto;
}

.link_btn01:hover,
.link_btn01:focus-visible {
    background-color: #fff;
    box-shadow: var(--shadow30-mid);
}

.link_btn01:hover span,
.link_btn01:focus-visible span {
    color: var(--blue40);
}

.link_btn01:hover span::after,
.link_btn01:focus-visible span::after {
    border-top: solid 2px var(--blue40);
    border-right: solid 2px var(--blue40);
}

.link_btn01::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #fff;
    z-index: 0;
    transition: all 0.4s ease-out;
}

.link_btn01:hover::before {
    width: 100%;
}

/*----------------
SOLUTION
------------------*/

.sol_wrap {
    margin-top: 72px;
}

ul.sol {
    display: flex;
    justify-content: space-between;
    column-gap: 3%;
    margin-bottom: 52px;
}

ul.sol li {
    width: 376px;
    max-width: 31.333333%;
}

ul.sol li > a {
    display: block;
    height: 100%;
    border: 1px solid var(--cloud20);
    box-shadow: var(--shadow30-small);
}

ul.sol li > a:hover,
ul.sol li > a:focus-visible {
    border: 1px solid var(--blue40);
    outline: 1px solid var(--blue40);
    outline-offset: 0;
    box-shadow: var(--shadow30-mid);
}

ul.sol li .sol_img {
    overflow: hidden;
}

ul.sol li .sol_img img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition-duration: .6s;
}

ul.sol li > a:hover .sol_img img,
ul.sol li > a:focus-visible .sol_img img {
    transform: scale(1.2);
}

ul.sol li .sol_text {
    padding: 20px 30px 32px 20px;
}

ul.sol li .sol_text > span {
    display: block;
    position: relative;
    font-size: 1.4rem;
    color: var(--cloud40);
    font-size: clamp(1.2rem, 1vw, 1.4rem);
    font-weight: 700;
    margin-bottom: 5px;
    padding-left: 15px;
}

ul.sol li .sol_text > span:before {
    content: '';
    display: inline-block;
    width: 2px;
    height: 13px;
    background-color: var(--cloud40);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
}

ul.sol li .sol_text h3 {
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.25;
    font-weight: 500;
}

ul.sol li a:hover h3,
ul.sol li a:focus-visible h3,
ul.sol li a:hover p,
ul.sol li a:focus-visible p,
ul.sol li a:hover span,
ul.sol li a:focus-visible span {
    color: var(--blue40);
}

ul.sol li a :hover.sol_text > span:before,
ul.sol li a :focus-visible.sol_text > span:before {
    background-color: var(--blue40);
}

/*----------------
PRODUCT
------------------*/

.prod_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px 3.0%;
}

.prod_list::before{
    content: "";
    display: block;
    width: 22.75%;
    order:1;
}

.prod_list::after{
    content: "";
    display: block;
    width: 22.75%;
}

.prod_list li {
/*
    width: 170px;
    max-width: 14.17%;
*/
    width: 273px;
    max-width: 22.75%;
}

.prod_list li a.prod_list_item h3 {
    font-weight: 500;
    margin-top: 12px;
    padding-right: 20px;
    position: relative;
    transition: 0.3s;
}

.prod_list li a.prod_list_item h3:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    border: 0;
    border-top: solid 2px;
    border-right: solid 2px;
    border-color: var(--blue40);
    transform: rotate(45deg);
    margin-left: 8px;
    position: absolute;
    top: 8px;
    right: 0;
    margin: auto;
}

.prod_list li a.prod_list_item p {
    font-size: 1.4rem;
    transition: 0.3s;
}

.prod_list_img {
    cursor: pointer;
    max-width: 100%;
    overflow: hidden;
    width: 100%;
}

.prod_list_img img {
    height: auto;
    transition: transform .6s ease;
}

.prod_list li a:hover .prod_list_img img,
.prod_list li a:focus-visible .prod_list_img img {
    transform: scale(1.1);
}

.prod_list li a.prod_list_item h3 span {
    display: block;
    width: fit-content;
    font-weight: 500;
    position: relative;
}

.prod_list li a:hover h3 span,
.prod_list li a:focus-visible h3 span,
.prod_list li a:hover p,
.prod_list li a:focus-visible p {
    color: var(--blue40);
}

.prod_list li h3 span:before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: 1px;
  background-color: var(--blue40);
  transition: .3s;
}

.prod_list li a:hover span::before {
    width: 100%;
}

.prod_list li.btns {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.prod_list li.btns a.linkBtn03 {
    min-height: 72px;
    height: 72px;
    padding: 16px 32px 16px 24px;
}





.text_links {
    display: flex;
    column-gap: 33px;
}

.text_links li {
    margin: 7px 0;
}

.text_links li a {
    font-size: 1.4rem;
    position: relative;
}

.text_links li a:hover,
.text_links li a:focus-visible {
    color: var(--blue40);
}

.text_links li a:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 9px;
    height: 9px;
    border: 0;
    border-top: solid 2px;
    border-right: solid 2px;
    border-color: var(--blue40);
    transform: rotate(45deg);
    margin-left: 8px;
    
}

/*----------------
SPECIAL FEATURE
------------------*/

ul.special_fea {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 32px 3%;
}

ul.special_fea li {
    width: 582px;
    max-width: 48.5%;
    height: auto;
    max-height: 184px;
}

ul.special_fea li a {
    width: 100%;
    height: 100%;
    border: 1px solid var(--cloud20);
    display: flex;
    box-shadow: var(--shadow30-small);
}

ul.special_fea li a:hover,
ul.special_fea li a:focus-visible {
    border: 1px solid var(--blue40);
    box-shadow: var(--shadow30-mid);
    outline: 1px solid var(--blue40);
    outline-offset: 0;
}

.special_fea_cont {
    width: 53.09%;
    padding: clamp(12px, 1.6vw, 32px);
}

.special_fea_img {
    width: 46.91%;
    overflow: hidden;
}

.special_fea_img img {
    display: block;
    aspect-ratio: 16 / 9;
    height: 100%;
    object-fit: cover;
    transition-duration: .6s;
}

ul.special_fea li a:hover .special_fea_img img,
ul.special_fea li a:focus-visible .special_fea_img img {
    transform: scale(1.2);
}

.special_fea_cont h3 {
    font-size: 1.8rem;
    font-size: clamp(1.5rem, 1.25vw, 1.8rem);
    font-weight: 700;
    line-height: 1.25;
}

.special_fea_cont p {
    font-size: 1.4rem;
    font-size: clamp(1.2rem, 1vw, 1.4rem);
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: var(--cloud40);
}

.special_fea_cont p span {
    font-size: 1.2rem;
    color: var(--cloud40);
    font-family: "Inter", sans-serif;
    display: inline-block;
    letter-spacing: 0.05em;
}

ul.special_fea li a:hover h3,
ul.special_fea li a:focus-visible h3,
ul.special_fea li a:hover p,
ul.special_fea li a:focus-visible p,
ul.special_fea li a:hover span,
ul.special_fea li a:focus-visible span {
    color: var(--blue40);
}

/*----------------
Banner Links
------------------*/

ul.banlinks {
    margin: 80px auto 80px;
}

ul.banlinks a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 19px 60px 20px 30px;
    background-color: #fff;
    border: 1px solid var(--cloud20);
    box-shadow: var(--shadow30-mini);
    position: relative;
    transition: all 0.6s ease;
}

ul.banlinks a:hover {
    border: 1px solid var(--blue40);
    box-shadow: var(--shadow30-mid);
    outline: 1px solid var(--blue40);
    outline-offset: 0;
}

ul.banlinks a:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    border: 0;
    border-top: solid 2px;
    border-right: solid 2px;
    border-color: var(--blue40);
    transform: rotate(45deg);
    margin-left: 8px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 14px;
    margin: auto;
}

ul.banlinks a .ban_ic {
    display: block;
    width: 57px;
    margin-right: 16px;
}

ul.banlinks a:hover .ban_ic img {
    transition: all 0.6s ease;
}

ul.banlinks a .ban_ic img.hov {
    display: none;
    opacity: 0;
}

ul.banlinks a:hover .ban_ic img {
    display: none;
    opacity: 0;
}

ul.banlinks a:hover .ban_ic img.hov {
    display: block;
    opacity: 1;
}

ul.banlinks a .ban_text {
    width: calc(100% - 73px);
    font-size: 1.8rem;
    font-size: clamp(1.5rem, 1.25vw, 1.8rem);
    font-weight: 500;
    transition: color 0.6s ease;
}

ul.banlinks a:hover,
ul.banlinks a:focus-visible {
    box-shadow: var(--shadow30-mid);
}

ul.banlinks a:hover .ban_text,
ul.banlinks a:focus-visible .ban_text {
    color: var(--blue40);
}

/*----------------
MAIN SLIDER
------------------*/

.slider{
    height: 100%;
}

.slick-slider .slick-track, .slick-slider .slick-list {
    height: 100%;
}

.slider_cont {
    text-align: center;
    font-size: 50px;
    height: 100%;
    display: flex!important;
    flex-direction: column;
/*    height: 728px;*/
}

.slick-slide img {
    width: 100%;
    height: auto;
    max-height: 512px;
    aspect-ratio: 1148 / 512;
    object-fit: cover;
}

.slide_text_wrap {
    width: 100%;
    height: 100%;
/*    min-height: 200px;*/
    flex: 1 1 auto;
    background-image: url("/assets/img/top/main_bk.jpg");
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: left;
    padding: 48px 23vw 48px 64px;
}

.slide_text_wrap h2 {
/*    font-size: 2.2rem;*/
    font-size: clamp(1.8rem, 1vw + 1rem, 2.2rem);
    line-height: 1.5;
    letter-spacing: 1.1px;
    color: #fff;
    font-weight: 700;
    padding: 0;
    margin: 0;
}

.slide_text_wrap h2:before {
    content: none;
}

.slide_text_wrap .link_text {
    display: inline-block;
    color: #fff;
/*    font-size: 1.7rem;*/
    font-size: clamp(1.4rem, 0.75vw + 1rem, 1.7rem);
    letter-spacing: 0.85px;
    font-weight: 500;
    margin-top: 24px;
}

.slide_text_wrap .link_text:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 9px;
    height: 9px;
    border: 0;
    border-top: solid 2px;
    border-right: solid 2px;
    border-color: #fff;
    transform: rotate(45deg);
    margin-top: -3px;
    margin-left: 10px;
}


/* スライダー再生ボタン */
.slick_pause {
    width: 28px;
    height: 28px;
/*
    background-color: #fff;
    position: relative;
    cursor: pointer;
    border: solid 1px;
    border-color: var(--cloud40);
    border-left: none;
    border-right: none;
*/
    transition: all .3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 30px;
    z-index: 10;
}

.slick_pause span {
    transition: all 0.3s ease;
}

.slick_pause:hover {
    opacity: 0.8;
}

.prev-arrow:hover,
.next-arrow:hover {
    opacity: 0.8;
}

.slick_pause span.pause img,
.slick_pause span.play img{
    width: 28px;
    height: 28px;
}

.slick_pause span.play {
    display: none;
    visibility: hidden;
}

.slick_pause.playback span.pause {
    display: none;
    visibility: hidden;
}

.slick_pause.playback span.play {
    display: block;
    visibility: visible;
}

.play_button_wrap{
    text-align: center;
    position: absolute;
    width: 86px;
    height: 28px;
}

.slide_text_wrap {
  position: relative;
}

.play_button_wrap {
    position: absolute;
    top: 27vw;
    right: 3vw;
    right: 64px;
    z-index: 10;
}

.arrow_box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 28px;
    position: relative;
}

.prev-arrow img,
.next-arrow img {
/*
    background-color: #fff;
    border: solid 1px;
    border-color: var(--cloud40);
    background-size: contain;
*/
    vertical-align: middle;
    transition: all .3s ease;
    cursor: pointer;
    position:relative;
/*
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
*/
}

.prev-arrow,
.next-arrow {
    width: 28px;
    height: 28px;
    overflow: hidden;
    transition: all .3s ease;
}

.prev-arrow img,
.next-arrow img {
    display: block;
    width: 28px;
    height: 28px;
}

/*
.prev-arrow {
    transform: rotate(180deg);
}

.prev-arrow::before,
.next-arrow::before{
    position:absolute;
    content: "";
    width:12px;
    height:12px;
    border-right: 2px solid var(--cloud40);
    border-top: 2px solid var(--cloud40);
    top:0;
    bottom:0;
    left:0;
    right:0;
    margin:auto;
    transform:rotate(45deg);
}
*/

.main_view .dots-wrap {
    position: absolute;
    top: 23.5vw;
    left: 0;
    right: 0;
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.dots-wrap li {
    flex: 1;
    min-width: 0;
    height: 4px;
    margin: 0 5px;
    background: #fff;
    box-shadow: var(--shadow25-small);
    cursor: pointer;
    position: relative;
    border-radius: 2px;
}

.dots-wrap li::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
}

.dots-wrap li.slick-active::before {
    background-color: var(--blue30);
    animation: progressbar-anime 4.5s linear forwards;
    border-radius: 2px;
}

@keyframes progressbar-anime {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

.dots-wrap button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}



/*
.dots-wrap li:hover,
.dots-wrap li.slick-active {
    background-color: var(--blue30);
}

.dots-wrap li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}
*/

/*----------------
TOP MAIN
------------------*/

.top_main_wrap {
    width: 100%;
/*    height: 728px;*/
    display: flex;
}

.top_main_view {
/*
    width: 1148px;
    max-width: 59.8%;
*/
    width: 59%;
    position: relative;
}

.top_main_wrap .slider_wrap {
    height: 100%;
}

.top_main_view .slick-dotted.slick-slider {
    margin: 0;
}

.top_main_cont {
/*    width: 40.2%;*/
    width: 41%;
    background: linear-gradient(to right, #F1F1F1 0%, #E3E4E4 100%);
    padding: 32px 8.3% 32px 8.3%;
    padding-left: clamp(20px, 3.2vw, 62px);
    padding-right: clamp(20px, 3.2vw, 62px);
}

.top_main_cont h2 {
    font-size: clamp(2.2rem, 1.5vw, 2.8rem);
    margin-bottom: 20px;
}

ul.dl_list li {
    width: 100%;
    margin-top: 5px;
}

ul.dl_list li a {
    width: 100%;
    height: 80px;
/*    padding: 15px 25px 17px 25px;*/
    padding-left: clamp(12px, 1.8vw, 24px);
    padding-right: clamp(12px, 1.8vw, 24px);
    background-color: #fff;
    box-shadow: var(--shadow10-small);
    display: flex;
    align-items: center;
    column-gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid;
    border-color: #fff;
}

ul.dl_list li a:hover {
    box-shadow: var(--shadow30-mid-small);
    border-color: var(--hot30);
}

/*
ul.dl_list li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: transparent;
    border: 3px solid var(--hot30);
    z-index: 0;
    transition: all 0.4s ease-out;
    opacity: 0;
}

ul.dl_list li a:hover::before {
    width: 100%;
    opacity: 1;
}
*/

ul.dl_list li a .dl_list_ic {
    display: block;
    width: 42px;
}

ul.dl_list li a .dl_list_text {
    width: calc(100% - 62px);
}

ul.dl_list li a .dl_list_text p {
    font-size: clamp(1.3rem, 1.2vw, 1.5rem);
    line-height: 1.333;
    transition: all 0.3s ease;
}

ul.dl_list li a .dl_list_text p.tit {
    font-size: clamp(15px, 1.25vw + 9px, 18px);
    line-height: 1.333;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 3px;
}

/*
ul.dl_list li a:hover .dl_list_text p {
    color: var(--blue40);
}
*/

/*----------------
SEARCHBOX
------------------*/

.searchbox {
    border-bottom: 1px solid;
    border-color: var(--cloud30);
    padding-bottom: 32px;
    margin-bottom: 20px;
}

.searchbox_inner {
    width: 100%;
    height: 64px;
    display: flex;
    border: 1px solid;
    border-color: var(--cloud30);
    border-radius: 5px;
    overflow: hidden;
}

.searchbox_inner .input_txt {
    width: 77%;
    height: 100%;
    background-color: #fff;
    color: var(--cloud40);
    vertical-align: top;
    border: 0;
    padding: 10px 1.4vw 10px 1.4vw;
}

.btn_search {
    width: 23%;
    height: 100%;
    color: #FFF;
    font-size: 15px;
    padding: 0;
    background-color: var(--accent20);
    background-position: 10px 13px;
    background-repeat: no-repeat;
    display: inline;
    border: none;
    transition: all 0.6s ease;
    column-gap: 5%;
    border-left: 1px solid;
    border-color: var(--cloud30);
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn_search:hover,
.btn_search:focus-visible {
    background-color: #0190A8;
}

.btn_search span {
    font-size: clamp(1.6rem, 1.5vw, 2.4rem);
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
}

.btn_search span img {
    display: block;
    width: 24px;
    width: clamp(18px, 1.5vw, 24px);
}

/*製品・形式検索に生産中止製品を含める*/
.checkboxItem {
    display: flex;
    align-items: center;
    column-gap: 6px;
    width: fit-content;
    line-height: 1;
    cursor: pointer;
    margin-left: auto;
    margin-top: 16px;
}

.checkboxItem:not(:last-of-type) {
    margin-bottom: 16px;
}

.checkbox {
    appearance: none;
    position: relative;
    width: 18px;
    height: 18px;
    border: 1px solid;
    border-color: var(--cloud40);
    background-color: #fff;
    border-radius: 2px;
    cursor: pointer;
    box-sizing: border-box;
    margin-top: 2px;
}

.checkbox:checked {
    border-color: var(--blue30);
    background-color: var(--blue30);
}

.checkbox:checked::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 3px;
    width: 10px;
    height: 5px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(-45deg);
}
/*製品・形式検索に生産中止製品を含める*/


/*----------------
NOTICE
------------------*/

.notice_wrap {
    padding: 16px 0 16px 0;
    background-color: var(--cloud10);
}

dl.notice {
    width: 1400px;
    max-width: 90%;
/*    column-gap: 2.85%;*/
    margin: 0 auto;
    display: flex;
    background-color: rgba(226,5,5,0.05);
    border: 2px solid var(--hot40);
}

dl.notice dt,
dl.notice dd {
    font-size: clamp(1.5rem, 1.25vw, 1.8rem);
    padding-left: 24px;
    padding-right: 24px;
    min-height: 90px;
    display: flex;
    align-items: center;
    text-align: left;
}

dl.notice dt {
    width: 110px;
    min-width: 110px;
    padding-left: 10px;
    padding-right: 10px;
    color: #fff;
    text-align: center;
    justify-content: center;
    background-color: var(--hot40);
}

dl.notice dd.notie_date {
    width: 120px;
    min-width: 120px;
    text-align: center;
    justify-content: center;
}



