@media screen and (min-width:1024px) {

/* commmon */

*,
*:before,
*:after {
    box-sizing: border-box;
}

body {
	font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', Helvetica, 'メイリオ', 'ＭＳ Ｐゴシック', sans-serif, sans-serif;
    font-size: 16px;
	line-height: 180%;
	color: #454545;
	background: #ffffff;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
}

body {
    overflow-x: hidden !important;
}

.forsp {
    display: none;
}
.alpha a:hover img {
    opacity: 0.7;
    filter: alpha(opacity=50);
    -ms-filter: "alpha(opacity=70)";
}
a {
width: 100%;
height: 100%;
color: unset;
text-decoration: none;
}

/* footer  */

footer {
    width:100%;
    margin: 0 auto;
    margin-top: 100px;
    text-align: center;
    background-color: #18B5B5;
    color: #fff;
    padding: 20px;
    font-size: 90%;
}
.footer_contact_btn {
    position: relative;
    display: none;

}
.footer_contact_btn a {
    background-color: #ED4082;
    display: block;
    padding: 22px 200px 22px 200px;
    font-size: 18px;
    transition: all  0.3s ease;
    color: #fff;
    margin: 0 auto;
}
.footer_contact_btn a:hover {
    background-color: #FF79AC;
}
.footer_contact_btn a::after {
    content: '';
    display: inline-block;
    width: 60px;
    height: 30px;
    background-image: url(../images/arrow_type03.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 20px;
}
.footer_blk {
    display: flex;
    text-align: left;
    margin-top: 0px;
    margin-bottom: 22px;
    justify-content: space-between;
}
.footer_blk .footer_logo {
    display: none;
    width: 444px;
    height: 95px;
    background-image: url(../images/logo_full.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    text-indent: -9999px;
    font-size: 0px;
}
.footer_blk .footer_txt {
    font-size: 14px;
    line-height: 160%;
    margin: 34px 0;
}
.footer_blk .fooet_menu {
    font-size: 16px;
    margin: 22px 0;
    display: flex;
}
.footer_blk .fooet_menu ul {
    display: block;
    margin-right: 12px;
}
.footer_blk .fooet_menu ul li {
    display: block;
    margin-left: 20px;
    margin-top: 12px;
}
.footer_blk .fooet_menu ul li ul li {
    font-size: 14px;
}
.footer_blk .fooet_menu ul li a {
    display: block;
}
.footer_blk .fooet_menu ul li a:hover {
    text-decoration: underline;
}

.footer_bottom {
    text-align: center;
    border-top: 1px solid #fff;
    padding: 12px 40px 70px 40px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.pagetop {
    width: 83px;
    height: 83px;
    position: fixed;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all  0.6s ease;
}
.pagetop.scroll {
    opacity: 1;
}

.gray_btn {
    position: relative;
    display: inline-block;
}
.gray_btn a {
    background-color: #E8E8E8;
    display: block;
    padding: 18px 100px 18px 25px;
    font-size: 18px;
    border-radius: 100px;
}
.gray_btn a:hover {
    background-color: #D5D5D5;
}
.gray_btn a::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(../images/arrow_type01.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 20px;
}

/* header */

header {
    width: 100%;
    height: 88px;
    position: fixed;
    z-index: 100;
    background-color: rgba(255,255,255,0);
    display: flex;
    font-size: 18px;
    transition: 0.5s;
}
header#second {
    background-color: rgba(255,255,255,0.7);
}
header.scroll-nav {
    background-color: rgba(255,255,255,0.8);
}
header.scroll-nav .company_logo {
    background-image: url(../images/logo_full.png);
}
.company_logo2 {
    display: none;
}
header .company_logo {
    width: 27%;
    max-width: 379px;
    height: 52px;
    background-image: url(../images/logo_full_w.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center left;
    font-size: 0px;
    text-indent: -9999px;
    margin: 1.2vw 2vw;
    transition: 0.5s;
}
header#second .company_logo {
    background-image: url(../images/logo_full.png);
}

header .gmenu {
    width: 80%;
    margin: 6px;
    display: flex;
    justify-content: flex-end;
}
header .gmenu ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}
header .gmenu ul li {
    margin-top: 14px;
    position: relative;
}
header .gmenu ul li ul {
    display: block;
    position: absolute;
    left:0;
    top: 57px;
    z-index: 4;
    /*はじめは非表示*/
    visibility: hidden;
    opacity: 0;
    /*アニメーション設定*/
    transition: all .3s;
}
header#second .gmenu ul li ul {
    top: 67px;
}
header .gmenu ul li ul.hm_business {
    width: 200px;
}
header .gmenu ul li ul.hm_home {
    width: 260px;
}
header .gmenu ul li ul.hm_company {
    width: 160px;
}
header .gmenu ul li ul li {
    margin-top: 1px;
    font-size: 90%;
}

/*hoverしたら表示*/
header .gmenu ul li:hover > ul {
    visibility: visible;
    opacity: 1;
}
header .gmenu ul li a {
    width: 100%;
    height: auto;
    padding: 20px 16px 22px 16px;
    display: block;
    color: #fff;
    font-weight: 300;
    line-height: 80%;
    text-decoration: none;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all  0.6s ease;
}
header .gmenu ul li ul li a,header#second .gmenu ul li a {
    color: #434343;
}
header.scroll-nav .gmenu ul li a {
    color: #434343;
}
header .gmenu ul li ul li a {
    background-color: rgba(255,255,255,0.8);
}
header .gmenu ul li a:hover,header#second .gmenu ul li a:hover {
    background-color: #C3DEFF;
}
header .haeder_contact {
        color: #fff;
        text-align: center;
        margin: 12px;
}
header .haeder_contact a {
        width: 100%;
        height: auto;
        padding: 20px 2vw;
        background-color: #18B5B5;
        display: block;
        color: unset;
        line-height: 100%;
        text-decoration: none;
        border-radius: 50px;
        border-right: solid 1px #999;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all  0.3s ease;
        
}
header .haeder_contact a:hover {
        background-color: #75C5C5;
}

/* top page  */
.kv_blk {
    width: 100%;
    height: 100vh;
    position: relative;
}
.kv_blk .slide_blk {
    width: 100%;
    height: 100%;
}
.kv_blk .slide_blk .slide_cont {
    width: 100%;
    height: 100%;
}
.kv_blk .slide_blk .slide01 {
    background-image: url(../images/kv_image.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.kv_blk h2 {
    height: 70%;
    max-width: 138px;
    max-height: 600px;
    background-image: url(../images/kv_copy.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-indent: -9999px;
    font-size: 0px;
}
.kv_scroll {
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.top_cat_business .top_cat_ttl {
    width: 100%;
    position: relative;
}
.top_cat_ttl_sub {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #8B8B8B;
}
.top_cat_ttl h2 {
    font-size: 50px;
    font-weight: 600;
}
.top_cat_ttl_line {
    width: 2000px;
    height: 4px;
    background-color: #18B5B5;
    margin: 10px 0 20px 0;
}
.top_cat_business .top_cat_ttl_line {
    margin-left: -1790px;
}
.top_cat_business {
    width: 83%;
    margin: 0 auto;
    padding-top: 130px;
}
.top_business_menu {
    display: flex;
    flex-wrap: wrap;
}
.top_business_menu .menu_blk {
    width: 32.8%;
    margin-right: 0.4%;
    margin-bottom: 4px;
    background-color: #E8E8E8;
    position: relative;
}
.top_business_menu .menu_blk .menu_blk_image {
    width: 100%;
    height: 248px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.top_business_menu .menu_blk h3 {
    width: 100%;
    padding: 30px 40px;
    font-size: 18px;
}
.top_business_menu .menu_blk a {
    background-color: rgba(255,255,255,0);
    transition: all  0.6s ease;
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    font-size: 0px;
}
.top_business_menu .menu_blk a:hover {
    background-color: rgba(255,255,255,0.3);
    transition: all  0.3s ease;
}
.top_business_menu .menu_blk_image01 {
    background-image: url(../images/top_bis_ph01.jpg);
}
.top_business_menu .menu_blk_image02 {
    background-image: url(../images/top_bis_ph02.jpg);
}
.top_business_menu .menu_blk_image03 {
    background-image: url(../images/top_bis_ph03.jpg);
}
.top_business_menu .menu_blk_image04 {
    background-image: url(../images/top_bis_ph04.jpg);
}
.top_business_menu .menu_blk_image05 {
    background-image: url(../images/top_bis_ph05.jpg);
}
.top_cat_homemed {
    width: 100%;
    margin: 0 auto;
    padding-top: 130px;
    display: flex;
}
.top_cat_homemed_img {
    width: 50%;
    height: auto;
    background-image: url(../images/top_homemed.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.top_cat_homemed_body {
    width: 50%;
    height: auto;
    padding: 30px 0 50px 80px;
}
.top_cat_homemed_body p {
    margin: 30px 0;
    max-width: 510px;
}
.top_cat_gas {
    width: 100%;
    margin: 0 auto;
    margin-top: 130px;
    padding: 55px 9%;
    background-color: #18B5B5;
    color: #fff;
    display: flex;
}
.top_cat_gas .top_cat_ttl_sub {
    color: #fff;
}
.top_cat_gas .top_cat_ttl h2 {
    color: #fff;
}
.top_cat_gas .top_cat_ttl_line {
    background-color: #E8E8E8;
    margin-left: -1460px;
}
.top_cat_gas_body {
    width: 50%;
}
.top_cat_gas_body p {
    margin: 50px 0 20px 0;
    max-width: 490px;
}
.top_cat_gas_link {
    width: 50%;
    margin: 100px 0 100px 60px;
    position: relative;
}
.top_cat_gas_link a {
    background-color: #fff;
    display: block;
    padding: 60px;
    font-size: 30px;
    color: #434343;
}
.top_cat_gas_link a:hover {
    background-color: #EDEDED;
}
.top_cat_gas_link a::after {
    content: '';
    display: inline-block;
    width: 128px;
    height: 20px;
    background-image: url(../images/arrow_type02.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 20px;
}
.top_cat_company {
    width: 83%;
    margin: 0 auto;
    padding-top: 130px;
    display: flex;
    justify-content: space-between;
}
.top_cat_company div {
    width: 49%;
    position: relative;
}
.top_cat_company .top_company {
    background-image: url(../images/top_comapny_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 210px 48px 40px 48px;
}
.top_cat_company .top_recruit {
    background-image: url(../images/top_recruit_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 210px 48px 40px 48px;
}
.top_cat_company .top_cat_ttl_sub {
    color: #fff;
}
.top_cat_company .top_cat_ttl h2 {
    color: #fff;
}
.top_cat_company .top_cat_arrow {
    width: 128px;
    height: 20px;
    background-image: url(../images/arrow_type03.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 50px;
    bottom: 50px;
}
.top_cat_company a {
    background-color: rgba(255,255,255,0);
    transition: all  0.6s ease;
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    font-size: 0px;
}
.top_cat_company a:hover {
    background-color: rgba(255,255,255,0.3);
    transition: all  0.3s ease;
}
.top_cat_news {
    width: 100%;
    margin: 0 auto;
    margin-top: 130px;
    padding: 55px 9%;
    background-color: #F2F2F2;
    display: flex;
}
.top_cat_news_body {
    width: 30%;
}
.top_cat_news .top_cat_ttl_line {
    margin-left: -1790px;
}
.newslist_btn {
    position: relative;
    display: inline-block;
    margin: 20px 0 0 70px;
}
.newslist_btn a {
    display: block;
    padding: 10px 20px 10px 20px;
    font-size: 16px;
    border-radius: 100px;
    border: 1px solid #18B5B5;
}
.newslist_btn a:hover {
    background-color: #D5D5D5;
}
.top_cat_news_list {
    width: 70%;
}
.top_cat_news_list dl {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px dotted #8E8E8E;
    padding: 33px 0;
}
.top_cat_news_list dl dt {
    width: 160px;
    color: #ED4082;
}
.top_cat_news_list a {
    text-decoration: underline;
}
/* top page end  */

/* second  */
.contents2 {
    padding-top: 80px;
}
.contents2 .ttl_blk {
    width: 100%;
}
.contents2 .breadcrum {
    width: 100%;
    padding: 10px 30px;
}
.contents2 .breadcrum ul {
    display: flex;
    font-size: 14px;
}
.contents2 .breadcrum ul li {
    padding-right: 20px;
    position: relative;
}
.contents2 .breadcrum ul li::after {
    content: ">";
    position: absolute;
    right: 5px;
    top: 0;
}
.contents2 .breadcrum ul li:last-child::after {
    content: none;
}
.contents2 .breadcrum ul li a:hover {
    text-decoration: underline;
}
.contents2 .breadcrum ul li.active {
    color: #1A9432;
}
.contents2 .ttl_set {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.contents2 .ttl_set .ttl_set_left {
    width: 49%;
    background-color: #18B5B5;
    position: relative;
}
.contents2 .ttl_set .ttl_set_left .ttl_group {
    margin: 20% 8%;
}
.contents2 .ttl_set .ttl_set_left .ttl_group h2 {
    font-size: 56px;
    color: #fff;
    font-weight: 400;
}
.contents2 .ttl_set .ttl_set_left .ttl_group p {
    font-size: 16px;
    color: #434343;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    margin-top: 12px;
}
.contents2 .ttl_set .ttl_set_right {
    width: 49%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.contents2 .cont_inner {
    width: 83%;
    margin: 0 auto;
    padding: 130px 0;
}
.contents2 .cont_inner2 {
    width: 100%;
    display: flex;
    margin: 0 auto;
    padding: 40px 0;
}
.contents2 .cont_inner2 .contents_menu {
    width: 22%;
    margin: 0;
    padding: 70px 20px;
    background-color: #F7F7F7;
    position: relative;
}
.contents2 .cont_inner2 .contents_menu .side_menu {
    display: block;
    position: sticky;
    top: 120px;
}
.contents2 .contents_menu h3 {
    font-size: 22px;
    color: #1B9F9F;
    border-bottom: 3px solid #BFBFBF;
    padding-bottom: 10px;
}
.contents2 .contents_menu ul li {
    font-size: 16px;
    border-bottom: 3px solid #BFBFBF;
    padding: 10px 0 10px 18px;
}
.contents2 .contents_menu ul li a {
    display: block;
    width: 100%;
    height: 100%;
    color: #5A5A5A;
}
.contents2 .contents_menu ul li a:hover {
    color: #1B9F9F;
}
.contents2 .contents_menu ul li.active {
    border-bottom: 3px solid #1B9F9F;
    color: #434343;
    font-weight: 600;
}
.contents2 .cont_inner2 .contents_body {
    width: 78%;
    margin: 30px 80px;
}
.bottom_space130 {
    margin-bottom: 130px;
}
.contents2 .contents_body_blk {
    margin-bottom: 130px;
}
.contents2 .contents_body_blk h3 {
    color: #1B9F9F;
    font-size: 44px;
    padding-left: 70px;
    margin-bottom: 20px;
    background-image: url(../images/ttl_head.svg);
    background-size: 40px;
    background-repeat: no-repeat;
    background-position: left top 26px;
    font-weight: 400;
}
.contents2 .contents_body_blk h3 span {
    font-size: 30px;
}
.contents2 .contents_body_blk h4 {
    color: #1B9F9F;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 12px;
}
.contents2 .image_blk {
    width: 100%;
    margin: 40px auto;
    text-align: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.contents2.business_grp .contents_body_blk ul {
    width: 100%;
    margin: 10px auto;
    display: flex;
    flex-wrap: wrap;
}
.contents2.business_grp .contents_body_blk ul li {
    margin-right: 12px;
}
.contents2.business_grp .contents_body_blk ul li::before {
    content: "●";
    color: #1B9F9F;
}
.contents2 .col_blk {
    display: flex;
    flex-wrap: wrap;
}
.contents2 .product_box3 {
    width: 31%;
    margin-right: 3.5%;
}
.contents2 .product_box3:nth-of-type(3){
    margin-right:0;
}
.contents2 .product_box2 {
    width: 48%;
    margin-right: 2%;
}
.contents2 .product_box2:nth-of-type(2) {
    width: 48%;
    margin-right:0;
}
.contents2 .col_blk h4 {
    color: #1B9F9F;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 12px;
}
.contents2 .col_blk p {
    margin-bottom: 12px;
}
.contents2 .cont_type01 {
    display: flex;
    justify-content: space-between;
}
.contents2 .cont_type01 P {
    width: 55%;
}
.contents2 .cont_type01 .image_blk {
    width: 39%;
    margin: 0;
}
.margin-bottom30 {
    margin-bottom: 30px;
}

/* business  */
.contents2.cat_business .ttl_set .ttl_set_right {
    background-image: url(../images/business_title_img.jpg);
}
.contents2.cat_business01 .ttl_set .ttl_set_right {
    background-image: url(../images/business_gas_ttl_img.jpg);
}
.contents2.cat_business02 .ttl_set .ttl_set_right {
    background-image: url(../images/business_home_ttl_img.jpg);
}
.contents2.cat_business03 .ttl_set .ttl_set_right {
    background-image: url(../images/business_device_ttl_img.jpg);
}
.contents2.cat_business04 .ttl_set .ttl_set_right {
    background-image: url(../images/business_inside_ttl_img.jpg);
}
.contents2.cat_business05 .ttl_set .ttl_set_right {
    background-image: url(../images/business_welfare_ttl_img.jpg);
}
.biz_index_box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 130px;
}
.biz_index_box:last-of-type {
    margin-bottom: 0px;
}
.biz_index_box.biz02_home,.biz_index_box.biz04_inside {
    flex-direction: row-reverse;
}
.biz_index_box .biz_index_box_body {
    width: 40%;
}
.biz_index_box .biz_index_box_body .biz_index_box_ttl {
    display: flex;
    margin-bottom: 50px;
}
.biz_index_box .biz_index_box_body .biz_index_box_num {
    font-size: 80px;
    color: #7C7C7C;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    border-bottom: #18B5B5 10px solid;
    display: inline-block;
    padding: 20px 0 50px 0;
}
.biz_index_box .biz_index_box_body h3 {
    font-size: 30px;
    font-weight: 300;
    margin: 12px 0 0 22px;
}
.biz_index_box p {
    margin-bottom: 50px;
}
.biz_index_box .biz_index_box_image {
    width: 45%;
    min-height: 570px;
    font-size: 20px;
    line-height: 44px;
}
.biz_index_box_image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.biz01_gas .biz_index_box_image {
    background-image: url(../images/business_index_img01.jpg);
}
.biz02_home .biz_index_box_image {
    background-image: url(../images/business_index_img02.jpg);
}
.biz03_device .biz_index_box_image {
    background-image: url(../images/business_index_img03.jpg);
}
.biz04_inside .biz_index_box_image {
    background-image: url(../images/business_index_img04.jpg);
}
.biz05_welfare .biz_index_box_image {
    background-image: url(../images/business_index_img05.jpg);
}
.image_blk.image_biz01_01 {
    height: 360px;
    background-image: url(../images/business_gas_img01.jpg);
}
.image_blk.image_biz01_02 {
    height: 254px;
    background-image: url(../images/business_gas_img02.jpg);
}
.image_blk.image_biz01_03 {
    height: 606px;
    background-image: url(../images/business_gas_img03.jpg);
}
.image_blk.image_biz01_05 {
    height: 386px;
    background-image: url(../images/business_gas_img05.jpg);
}
.image_blk.image_biz01_06 {
    height: 231px;
    background-image: url(../images/business_gas_img06.jpg);
}
.image_blk.image_biz03_01 {
    height: 281px;
    background-image: url(../images/business_device_img01.jpg);
}
.image_blk.image_biz03_02 {
    height: 486px;
    background-image: url(../images/business_device_img02.jpg);
}
.image_blk.image_biz03_03 {
    height: 266px;
    background-image: url(../images/business_device_img03.jpg);
}
.image_blk.image_biz03_04 {
    height: 697px;
    background-image: url(../images/business_device_img04.jpg);
}
.image_blk.image_biz03_05 {
    height: 540px;
    background-image: url(../images/business_device_img05.jpg);
}
.image_blk.image_biz04_01 {
    height: 318px;
    background-image: url(../images/business_inside_img01.jpg);
}
.image_blk.image_biz04_02 {
    height: 318px;
    background-image: url(../images/business_inside_img02.jpg);
}
.image_blk.image_biz04_03 {
    height: 408px;
    background-image: url(../images/business_inside_img03.jpg);
}
.image_blk.image_biz04_04 {
    height: 257px;
    background-image: url(../images/business_inside_img04.jpg);
}
.image_blk.image_biz04_05 {
    height: 240px;
    background-image: url(../images/business_inside_img05.jpg);
}
.image_blk.image_biz04_06 {
    height: 300px;
    background-image: url(../images/business_inside_img06.jpg);
}
.image_blk.image_biz05_01 {
    height: 427px;
    background-image: url(../images/business_welfare_img01.jpg);
}
.image_blk.image_biz05_02 {
    height: 279px;
    background-image: url(../images/business_welfare_img02.jpg);
}
.image_blk.image_biz05_03 {
    display: flex;
    justify-content: space-between;
}
.image_blk.image_biz05_03 img {
    width: 33%
}
.image_blk.image_biz05_04 {
    height: 236px;
    background-image: url(../images/business_welfare_img04.jpg);
}
.image_blk.image_biz05_05 {
    height: 241px;
    background-image: url(../images/business_welfare_img05.jpg);
}
.biz_home_indexblk {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.biz_home_indexblk .contents_body_blk {
    width: 47%;
}
.biz_home_indexblk .contents_body_blk h3 {
    font-size: 44px;
}
.biz_home_indexblk .contents_body_blk .home_middle_txt {
    font-size: 18px;
    color: #1B9F9F;
    font-weight: 600;
    margin-bottom: 14px;
}
.biz_home_indexblk .gray_btn {
    margin: 30px;
}
.center_sort {
    text-align: center;
}

/* homemedical  */
.contents2.cat_homemedical .ttl_set .ttl_set_right {
    background-image: url(../images/homemedical_ttl_img.jpg);
}
.home_index_box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 130px;
}
.home_index_box:last-of-type {
    margin-bottom: 0px;
}
.home_index_box .home_index_box_body {
    width: 65%;
}
.home_index_box .home_index_box_body .home_index_box_ttl {
    display: flex;
}
.home_index_box .home_index_box_body .home_index_box_num {
    font-size: 80px;
    color: #7C7C7C;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    border-bottom: #18B5B5 10px solid;
    display: inline-block;
    padding: 20px 0 50px 0;
}
.home_index_box .home_index_box_body h3 {
    font-size: 40px;
    font-weight: 300;
    margin: 12px 0 0 32px;
}
.home_index_box p {
    margin: -20px 0 50px 132px;
}
.home_index_box .gray_btn {
    margin-left: 132px;
}
.home_index_box .home_index_box_image {
    width: 33%;
    min-height: 300px;
}
.home_index_box_image {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.home01_hot .home_index_box_image {
    background-image: url(../images/home_index_img01.jpg);
}
.home02_cpap .home_index_box_image {
    background-image: url(../images/home_index_img02.jpg);
}
.home03_hmv .home_index_box_image {
    background-image: url(../images/home_index_img03.jpg);
}
.home04_hft .home_index_box_image {
    background-image: url(../images/home_index_img04.jpg);
}
.home05_hit .home_index_box_image {
    background-image: url(../images/home_index_img05.jpg);
}
.cat_homemedical .contents_body_blk .home_middle_txt {
    font-size: 22px;
    color: #1B9F9F;
    font-weight: 600;
    margin-bottom: 14px;
}
.hot_producs .product_box3 img {
    height: 320px;
    margin: 0 auto;
}
/* add 240722 */
.hot_producs .product_box3 {
    display: flex;
    flex-direction: column;
}
.hot_producs .product_box3 div {
    margin-top: auto;
}
.hot_producs .product_box3 p {
    height: auto;
}
/* /add 240722 */
.cpap_producs .product_box3 img {
    height: 280px;
    margin: 0 auto;
}
.cpap_producs .product_box3 p {
    height: 8em;
}
.hmv_producs .product_box3 img {
    width: 80%;
    margin: 0 auto;
}
.hmv_producs .product_box3 p {
    height: 8em;
}
.hit_producs .product_box3 img {
    width: 70%;
    margin: 0 auto;
}
.hit_producs .product_box3 h4 {
    height: 3em;
}
.hit_producs .product_box3 p {
    height: 8em;
}
.home_flow_blk {
    width: 100%;
    background-color: #F4F4F4;
    padding: 45px;
}
.home_flow_blk h4 {
    width: 100%;
    text-align: center;
    font-size: 34px;
    color: #1B9F9F;
    margin-bottom: 1em;
}
.home_flow_blk .home_flow_box {
    width: 100%;
    background-color: #fff;
    margin-top: 24px;
}
.home_flow_blk .home_flow_box .flow_ttl_set {
    width: 100%;
    background-color: #18B5B5;
    color: #fff;
    font-weight: 600;
    display: flex;
}
.home_flow_blk .home_flow_box .flow_ttl_set .flow_num {
    background-color: #168888;
    font-family: 'Roboto', sans-serif;
    font-size: 40px;
    padding: 16px 18px;
}
.home_flow_blk .home_flow_box .flow_ttl_set .flow_ttl_txt {
    font-size: 28px;
    padding: 16px 18px;
}
.home_flow_blk .home_flow_box .flow_body {
    padding: 30px;
    display: flex;
    justify-content: space-between;
}
.home_flow_blk .home_flow_box .flow_body .flow_image {
    width: 42%;
    height: 217px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.flow_arrow {
    width: 100%;
    height: 49px;
    background-image: url(../images/home_flow_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 20px auto;
}
.home_flow_blk .home_flow_box .flow_body .flow_text {
    width: 55%;
}
.home_flow_blk .hot_flow01 .flow_image {
    background-image: url(../images/home_hot_img01.jpg);
}
.home_flow_blk .hot_flow02 .flow_image {
    background-image: url(../images/home_hot_img02.jpg);
}
.home_flow_blk .hot_flow03 .flow_image {
    background-image: url(../images/home_hot_img03.jpg);
}
.home_flow_blk .hot_flow04 .flow_image {
    background-image: url(../images/home_hot_img04.jpg);
}
.home_flow_blk .cpap_flow01 .flow_image {
    background-image: url(../images/home_cpap_img01.jpg);
}
.home_flow_blk .cpap_flow02 .flow_image {
    background-image: url(../images/home_cpap_img02.jpg);
}
.home_flow_blk .cpap_flow03 .flow_image {
    background-image: url(../images/home_cpap_img03.jpg);
}
.home_flow_blk .cpap_flow04 .flow_image {
    background-image: url(../images/home_cpap_img04.jpg);
}
.home_flow_blk .hmv_flow01 .flow_image {
    background-image: url(../images/home_hmv_img01.jpg);
}
.home_flow_blk .hmv_flow02 .flow_image {
    background-image: url(../images/home_hmv_img02.jpg);
}
.home_flow_blk .hmv_flow03 .flow_image {
    background-image: url(../images/home_hmv_img03.jpg);
}
.home_flow_blk .hmv_flow04 .flow_image {
    background-image: url(../images/home_hmv_img04.jpg);
}
.home_flow_blk .hit_flow01 .flow_image {
    background-image: url(../images/home_hit_img01.jpg);
}
.home_flow_blk .hit_flow02 .flow_image {
    background-image: url(../images/home_hit_img02.jpg);
}
.home_flow_blk .hit_flow03 .flow_image {
    background-image: url(../images/home_hit_img03.jpg);
}
.home_flow_blk .hit_flow04 .flow_image {
    background-image: url(../images/home_hit_img04.jpg);
}
.home_flow_blk .home_flow_box .flow_body .flow_text {
    width: 55%;
}
.hft_hiflow_box {
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
    border-bottom: 1px solid #7C7C7C;
}
.hft_hiflow_box:last-of-type {
    border-bottom: none;
}
.hft_hiflow_box .text_blk {
    width: 50%;
}
.hft_hiflow_box .image_blk {
    width: 200px;
    margin: 0;
    text-align: right;
}
.hft_hiflow_box span {
    display: block;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 12px;
}

/* madicalgas  */
.contents2.cat_madicalgas .ttl_set .ttl_set_right {
    background-image: url(../images/medicalgas_ttl_img.jpg);
}
.gas_type {
    width: 100%;
}
.gas_type th {
    background-color: #75C5C5;
    padding: 20px;
    color: #fff;
}
.gas_type th,.gas_type td {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    margin: 0;
}
.gas_type td {
    background-color: #EAEAEA;
    padding: 20px;
}
.gas_type td.tdh {
    background-color: #A2D8D8;
    width: 16em;
    vertical-align: text-top;
}
.cat_madicalgas .cont_type01 {
    margin: 40px auto;
    height: 240px;
    display: flex;
}
.cat_madicalgas .cont_type01 span {
    display: block;
    font-size: 20px;
    color: #1B9F9F;
    font-weight: 600;
}
.cat_madicalgas .image_medicalgas01 {
    background-image: url(../images/med_gas_img01.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.cat_madicalgas .image_medicalgas02 {
    background-image: url(../images/med_gas_img02.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.cat_madicalgas .image_medicalgas03 {
    background-image: url(../images/med_gas_img03.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* company  */
.contents2.cat_company .ttl_set .ttl_set_right {
    background-image: url(../images/company_title_img.jpg);
}
.contents2.cat_company .ttl_set .ttl_set_right.sdgs {
    background-image: url(../images/sdgs_title_img.jpg);
}
.company_index {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.company_index .com_idx_btn {
    width: 48%;
    height: 200px;
    border-top: 3px solid #C9C9C9;
    border-left: 3px solid #C9C9C9;
    margin-bottom: 30px;
    position: relative;
    background-image: url(../images/circle_arrow.svg);
    background-size: 60px;
    background-repeat: no-repeat;
    background-position: center right 40px;
}
.company_index .com_idx_btn h3 {
    font-size: 30px;
    font-weight: 400;
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
}
.company_index .com_idx_btn .com_idx_line {
    width: 100%;
    height: 200px;
    border-bottom: 3px solid #2FB4B6;
    border-right: 3px solid #2FB4B6;
    position: absolute;
    top: 6px;
    left: 6px;
}
.company_index .com_idx_btn a {
    width: 100%;
    height: 100%;
    display: block;
    z-index: 10;
    position: relative;
    background-color: rgba(255,255,255,0);
    transition: all  0.3s ease;
}
.company_index .com_idx_btn a:hover {
    background-color: rgba(255,255,255,0.5);
    transition: all  0.3s ease;
}
.greeting_blk {
    background-image: url(../images/company_greeting_img.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    text-align: center;
}
.greeting_blk h2 {
    font-size: 40px;
    color: #18B5B5;
    padding: 80px 0;
}
.greeting_blk p {
    font-size: 20px;
    line-height: 56px;
    padding-bottom: 500px;
}
.philosophy_blk {
    text-align: center;
    margin: 100px 0 200px 0;
}
.philosophy_blk h3 {
    color: #1B9F9F;
    font-size: 44px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    background-image: url(../images/ttl_head.svg);
    background-size: 40px;
    background-repeat: no-repeat;
    background-position: center bottom;
    font-weight: 400;
}
.philosophy_blk p {
    margin-bottom: 100px;
}
.image_philosophy {
    height: 230px;
    background-image: url(../images/company_philosophy_img.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
dl.abput_table {
    max-width: 864px;
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
dl.abput_table dt {
    border-bottom: 2px solid #18B5B5;
    width: 14%;
    padding: 10px;
}
dl.abput_table dd {
    border-bottom: 2px solid #C1C1C1;
    width: 85%;
    padding: 10px;
}
dl.abput_table dd a {
    height: auto;
}
dl.abput_table dd a:hover {
    text-decoration: underline;
}
dl.history_table {
    max-width: 864px;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #EAEAEA;
    border-bottom: 2px solid #fff;
    padding: 14px;
}
dl.history_table dt {
    width: 15%;
    padding: 0 14px;
}
dl.history_table dd {
    border-left: 2px solid #18B5B5;
    width: 85%;
    padding: 0 14px;
}
.access_map {
    width: 100%;
    height: 540px;
    margin: 20px 0 120px 0;
}
.office_group {
    margin: 30px 0;
}
.office_group h4 {
    font-size: 20px;
    color: #1B9F9F;
    margin-bottom: 5px;
}
.office_group .ofice_box {
    background-color: #EAEAEA;
    padding: 20px;
    border-bottom: 2px solid #fff;
    position: relative;
}
.office_group .ofice_box .office_data span{
    font-weight: 600;
    display: block;
}
.map_btn {
    height: 56px;
    position: absolute;
    display: inline-block;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
}
.map_btn a {
    background-color: #fff;
    display: block;
    padding: 10px 80px 10px 25px;
    font-size: 18px;
    border-radius: 100px;
}
.map_btn a:hover {
    background-color: #D4FAFA;
}
.map_btn a::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(../images/arrow_type01.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 20px;
}
.policy_index {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.policy_index .policy_box {
    width: 48%;
    text-align: center;
    border: 1px solid #707070;
    border-radius: 20px;
    padding: 30px;
    display: table;
    margin-bottom: 40px;
}
.policy_index .policy_box .policy_box_txt {
    width: 100%;
    height: 8em;
    display: table-row;
    margin-bottom: 20px;
}
.policy_index .policy_box .policy_box_txt h3 {
    color: #1B9F9F;
    font-weight: 400;
    font-size: 28px;
    vertical-align: middle;
}
.policies h4 {
    margin-top: 2em;
    margin-bottom: 1em;
}
.policies h5 {
    margin-top: 2em;
    margin-bottom: 0.5em;
    font-size: 18px;
}
.policies table {
    width: 100%;
    border-top: solid 1px #999;
    border-left: solid 1px #999;
    margin: 20px 0;
    padding: 0;
    border-spacing: 0px;
}
.policies table th,.policies table td {
    border-bottom: solid 1px #999;
    border-right: solid 1px #999;
    margin: 0;
    padding: 10px;
    text-align: right;
}
.policies table td:nth-of-type(1) {
    text-align: left;
    width: 60%;
}
.policies table th {
    text-align: center;
    background-color: #f2f2f2;
}
.policies_pdf_list {
    margin: 1em 0;
}
.policies_pdf_list li a{
    color: #1B9F9F;
    text-decoration: underline;
}
.sdgs_logo {
    width: 604px;
    text-align: center;
    margin: 0 auto 6em auto;
}
.sdgs_blk {
    border: solid 1px #707070;
    padding: 50px;
    margin-bottom: 3em;
}
.contents2 .contents_body_blk .sdgs_blk h4 {
    font-size: 44px;
    color: #1B9F9F;
    font-weight: 400;
    margin-bottom: 1em;
}
.contents2 .contents_body_blk .sdgs_blk p {
    font-size: 22px;
    line-height: 36px;
}
.contents2 .contents_body_blk .sdgs_blk .sdgs_icon {
    display: flex;
    margin: 30px 0;
}
.contents2 .contents_body_blk .sdgs_blk .sdgs_icon img {
    width: 19%;
    max-width: 180px;
    margin-right: 10px;
}
.contents2 .contents_body_blk .sdgs_blk h5 {
    font-size: 20px;
    color: #1B9F9F;
    font-weight: 400;
    margin-bottom: 0.5em;
}
.contents2 .contents_body_blk .sdgs_blk ul {
    list-style-type: disc;
    margin-left: 2em;
}




/* recruit  */
.contents2.cat_recruit .ttl_set .ttl_set_right {
    background-image: url(../images/recruit_title_img.jpg);
}
.recruit_part01 {
    max-width: 800px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto 40px auto;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid #1B9F9F;
}
.contents2 .contents_body_blk .recruit_part01 ul li::before {
    content: none;
}
.recruit_part01 div a {
    display: inline-block;
    width: auto;
    height: auto;
    text-decoration: underline;
}
.cat_recruit .recruit_requirements p {
    margin-left: 80px;
}
.recruit_requirements dl {
    margin: 30px auto 40px 80px;
    display: flex;
    flex-wrap: wrap;
}
.recruit_requirements dl dt {
    font-size: 20px;
    color: #1B9F9F;
    width: 5%;
    margin-bottom: 20px;
    text-align: center;
}
.recruit_requirements dl dd {
    width: 95%;
    margin-bottom: 30px;
}
.cat_recruit .rec_faq {
    margin-left: 80px;
    text-align: left;
}
.cat_recruit .recruit_requirements .rec_faq dl {
    display: block;
    background-color: #EAEAEA;
    padding: 30px;
    margin: 0 auto 40px auto;
}
.cat_recruit .recruit_requirements .rec_faq dl dt {
    width: 100%;
    text-align: left;
}
.cat_recruit .recruit_requirements .rec_faq dl dt::before {
    content: "Q";
    margin-right: 12px;
    font-weight: 600;
}
.cat_recruit .recruit_requirements .rec_faq dl dd {
    width: 100%;
    text-align: left;
    padding-bottom: 20px;
    border-bottom: 2px solid #fff;
    padding-left: 28px;
    text-indent: -24px;
}
.cat_recruit .recruit_requirements .rec_faq dl dd::before {
    content: "A";
    margin-right: 12px;
    font-weight: 600;
}
.recruit_requirements dl.abput_table {
    max-width: 864px;
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.recruit_requirements dl.abput_table dt {
    border-bottom: 2px solid #18B5B5;
    font-size: 16px;
    width: 14%;
    padding: 10px;
    margin-bottom: 10px;
}
.recruit_requirements dl.abput_table dd {
    border-bottom: 2px solid #C1C1C1;
    font-size: 16px;
    width: 85%;
    padding: 10px;
    margin-bottom: 10px;
}
.recruit_requirements dl.abput_table dd li {
    list-style-type: disc;
    margin-left: 1.5em;
}
.recruit_requirements p {
    margin-bottom: 2em;
}
.cat_recruit .contents_body .rec_title {
    color: #18B5B5;
    font-size: 30px;
    text-align: center;
    margin-bottom: 100px;
}




/* contact  */
.contents2.cat_contact .ttl_set .ttl_set_right {
    background-image: url(../images/contact_title_img.jpg);
}
.cat_contact p {
    margin-bottom: 1em;
}
.cat_contact .contact_cylinder {
    margin: 40px auto;
    padding: 30px 40px;
    border: 1px solid #999999;
}
.cat_contact strong {
    font-weight: 600;
}
.contact-table {
    width: 100%;
    margin-bottom: 20px;
}
.contact-item,
.contact-body {
    padding: 20px;
    border: 1px solid #ccc;
}

.contact-item {
  text-align: left; /* テキスト左寄せ */
  width: 30%; /* 横幅30%指定（グレーの背景色部分） */
  background-color: #eee; /* グレーの背景色 */
}

.contact-body {
  width: 70%; /* 横幅70%指定（白背景色部分） */
}
.form-text {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    max-width: 400px;
}
.contact-select {
    display: block;
}

.contact-select-txt {
    margin-left: 5px;
}
.caution {
    color: #f00;
}
.form-textarea {
    width: 100%;
    padding: 10px;
    height: 200px;
    border-radius: 5px;
    border: 1px solid #ccc;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.contact-submit {
    width: 350px; /* 横幅指定 */
    background-color: #E8E8E8; /* 背景色 */
    color: #333; /* 文字色 */
    font-weight: bold; /* 文字の太さ */
    display: block; /* インライン要素をブロック要素に変更 */
    margin: 0 auto; /* 中央寄せ */
    font-size: 16px; /* 文字の大きさ */
    padding: 15px; /* 内側の余白 */
    border-radius: 100vh; /* 角丸指定 */
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}
.contact-submit:hover {
    background-color: #AAA; /* 背景色 */
    color: #fff; /* 文字色 */
    transition: all 0.4s ease-in-out;
}

/* sitemap  */
.contents2.cat_sitemap .ttl_set .ttl_set_right {
    background-image: url(../images/business_title_img.jpg);
}
.sitemap_blk {
    display: flex;
    justify-content: space-between;
}
.sitemap_blk a {
    text-decoration: none;
}
.sitemap_blk a:hover {
    text-decoration: underline;
}
.sitemap_blk ul {
    width: 50%;
    display: block;
}
.sitemap_blk ul li {
    display: block;
    font-size: 24px;
    margin: 20px 0;
    color: #18B5B5;
    font-weight: 600;
}
.sitemap_blk ul li ul {
    display: block;
    margin-left: 50px;
    margin-bottom: 60px;
}
.sitemap_blk ul li ul li {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #454545;
    border-bottom: 1px solid #18B5B5;
}

/* news  */
.news_list {
    width: 100%;
}
.news_list dl {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.news_list dl dt {
    border-bottom: 2px solid #18B5B5;
    width: 17%;
    padding: 20px;
    font-weight: 600;
}
.news_list a {
    text-decoration: underline;
}
.news_list dl dd {
    border-bottom: 2px solid #C1C1C1;
    width: 82%;
    padding: 20px;
}

/* privacypolicy  */
.contents2.cat_policy  .ttl_set .ttl_set_right {
    background-image: url(../images/company_title_img.jpg);
}
.cat_policy p {
    margin-bottom: 2em;
}
.privacy_blk {
    margin-bottom: 6em;
}
.privacy_blk p {
    margin-bottom: 0.5em;
    margin-left: 2em;
}
.privacy_blk h2 {
    font-size: 36px;
    margin-bottom: 1em;
    text-align: center;
}
.privacy_blk h3 {
    font-size: 26px;
    color: #18B5B5;
    margin-top: 2em;
    margin-bottom: 0.5em;
}
.privacy_blk h4 {
    font-weight: 600;
    margin-bottom: 0.5em;
}
.privacy_blk ol {
    margin-left: 4em;
    list-style-type: decimal;
    margin-bottom: 1em;
}
.privacy_blk .end_text {
    text-align: right;
}
.privacy_blk ol li ol {
    margin-left: 2em;
    list-style-type: decimal;
    margin-bottom: 1em;
}
.privacy_blk ul li {
    margin-bottom: 0.5em;
}
.privacy_blk ul {
    margin-left: 1.5em;
}
.privacy_blk ul li {
    list-style-type: disc;
}
.privacy_blk dl dd a {
    color: #18B5B5;
    text-decoration: underline;
    font-weight: 600;
}
.privacy_blk dl {
    display: flex;
    flex-wrap: wrap;
    margin-left: 1em;
}
.privacy_blk dl dt {
    width: 3em;
}
.privacy_blk dl dd {
    width: calc(100% - 3em);
    margin-bottom: 0.2em;
}
.privacy_blk dl dl{
    margin-left: 0em;
}
.privacy_blk dl dl dt {
    width: 1.5em;
}
.privacy_blk dl dl dd {
    width: calc(100% - 1.5em);
}

}
/* pc end  */




@media screen and (max-width:1023px) {

/* commmon */

*,
*:before,
*:after {
    box-sizing: border-box;
}

body {
	font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', Helvetica, 'メイリオ', 'ＭＳ Ｐゴシック', sans-serif, sans-serif;
    font-size: 3.4vw;
	line-height: 180%;
	color: #454545;
	background: #ffffff;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
}

body {
    overflow-x: hidden !important;
}

.forpc {
    display: none;
}
.alpha a:hover img {
    opacity: 0.7;
    filter: alpha(opacity=50);
    -ms-filter: "alpha(opacity=70)";
}
a {
width: 100%;
height: 100%;
color: unset;
text-decoration: none;
}
img {
    width: 100%;
}

/* footer  */

footer {
    width: 100%;
    margin: 0 auto;
    margin-top: 13.333vw;
    text-align: center;
    background-color: #18B5B5;
    color: #fff;
}
.footer_contact_btn {
    position: relative;
    display: none;
}
.footer_contact_btn a {
    background-color: #ED4082;
    display: block;
    padding: 4vw 28vw 4vw 28vw;
    font-size: 3.4vw;
    transition: all  0.3s ease;
    color: #fff;
    margin: 0 auto;
}
.footer_contact_btn a:hover {
    background-color: #FF79AC;
}
.footer_contact_btn a::after {
    content: '';
    display: inline-block;
    width: 12vw;
    height: 6vw;
    background-image: url(../images/arrow_type03.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 2.667vw;
}
.footer_blk {
    margin-top: 13.333vw;
    justify-content: space-between;
}
.footer_blk .footer_logo {
    display: none;
    width: 66vw;
    height: 16vw;
    background-image: url(../images/logo_full.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    text-indent: -9999px;
    font-size: 0px;
}
.footer_blk .footer_txt {
    font-size: 2.6vw;
    line-height: 160%;
    padding: 7vw 0;
}
.footer_bottom {
    width: 96vw;
    text-align: left;
    border-top: 1px solid #fff;
    display: flex;
    justify-content: space-between;
    padding: 1.6vw 0 18vw 0;
    font-size: 2.6vw;
    margin: 4vw auto;
}
.footer_blk .fooet_menu {
    width: 80%;
    font-size: 3.8vw;
    margin: 0 auto;
}
.footer_blk .fooet_menu ul li {
    margin-bottom: 6vw;
    border-top: 1px solid #fff;
    padding-top: 6vw;
}
.footer_blk .fooet_menu ul li ul {
    display: none;
}

.pagetop {
    width: 17vw;
    height: 17vw;
    position: fixed;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all  0.6s ease;
}
.pagetop.scroll {
    opacity: 1;
}
.set_center {
    width: 100%;
    text-align: center;
}

.gray_btn {
    position: relative;
    display: inline-block;
}
.gray_btn a {
    background-color: #E8E8E8;
    display: block;
    padding: 4vw 35vw 4vw 8vw;
    font-size: 3.4vw;
    border-radius: 13.333vw;
}
.gray_btn a:hover {
    background-color: #D5D5D5;
}
.gray_btn a::after {
    content: '';
    display: inline-block;
    width: 5vw;
    height: 5vw;
    background-image: url(../images/arrow_type01.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 5vw;
}


/* header */

header {
    width: 100%;
    height: 12vw;
    position: fixed;
    z-index: 100;
    background-color: rgba(255,255,255,0);
    display: flex;
    font-size: 4vw;
    transition: 0.5s;
}
header#second {
    background-color: rgba(255,255,255,0.7);
}
header.scroll-nav {
    background-color: rgba(255,255,255,0.8);
}
header.scroll-nav .company_logo {
    background-image: url(../images/logo_full.png);
}
.company_logo2 {
    width: 49%;
    max-width: 50.533vw;
    height: 10vw;
    background-image: url(../images/logo_full.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 0px;
    text-indent: -9999px;
    margin: 1vw 3vw;
    transition: 0.5s;
}
header .company_logo {
    width: 49%;
    max-width: 50.533vw;
    height: 10vw;
    background-image: url(../images/logo_full_w.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 0px;
    text-indent: -9999px;
    margin: 1vw 3vw;
    transition: 0.5s;
}
header#second .company_logo {
    background-image: url(../images/logo_full.png);
}

header .gmenu {
    margin: 0;
    justify-content: flex-end;
}
header .gmenu ul {
    margin: 10vw 0;
    padding: 0;
}
header .gmenu ul li {
    list-style: none;
    margin: 2.933vw 1.6vw;
}
header .gmenu ul li ul {
    display: none;
}
header .gmenu ul li a {
    width: 100%;
    height: auto;
    padding: 5vw;
    display: block;
    font-weight: 300;
    line-height: 80%;
    text-decoration: none;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all  0.6s ease;
}
header#second .gmenu ul li a {
    color: #434343;
}
header.scroll-nav .gmenu ul li a {
        color: #434343;
}
header .gmenu ul li a:hover {
        background-color: #C3DEFF;
}
header .haeder_contact {
        color: #fff;
        text-align: center;
        margin: 1.6vw;
}
header .haeder_contact a {
        width: 100%;
        height: auto;
        padding: 6vw 2vw;
        background-color: #ED4082;
        display: block;
        color: unset;
        line-height: 100%;
        text-decoration: none;
        border-radius: 10vw;
        border-right: solid 1px #999;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all  0.3s ease;
        
}
header .haeder_contact a:hover {
        background-color: #FF79AC;
}


/* top page  */
.kv_blk {
    width: 100%;
    height: 100vh;
    position: relative;
}
.kv_blk .slide_blk {
    width: 100%;
    height: 100%;
}
.kv_blk .slide_blk .slide_cont {
    width: 100%;
    height: 100%;
}
.kv_blk .slide_blk .slide01 {
    background-image: url(../images/kv_image.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.kv_blk h2 {
    width: 22vw;
    height: 80vw;
    background-image: url(../images/kv_copy.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    position: absolute;
    top: 30vw;
    left: 0;
    right: 0;
    margin: auto;
    text-indent: -9999px;
    font-size: 0px;
}
.kv_scroll {
    width: 12vw;
    height: 22vw;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.top_cat_business .top_cat_ttl {
    width: 100%;
    position: relative;
}
.top_cat_ttl_sub {
    font-family: 'Roboto', sans-serif;
    font-size: 3vw;
    font-weight: 600;
    color: #8B8B8B;
}
.top_cat_ttl h2 {
    font-size: 7vw;
    font-weight: 600;
}
.top_cat_ttl_line {
    width: 100%;
    height: 0.533vw;
    background-color: #18B5B5;
    margin: 1.333vw 0 4vw 0;
}
.top_cat_business .top_cat_ttl_line {
    margin-left: -53vw;
}
.top_cat_business {
    width: 92%;
    margin: 0 auto;
    padding-top: 17.333vw;
}
.top_business_menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.top_business_menu .menu_blk {
    width: 49.5%;
    margin-bottom: 0.533vw;
    background-color: #E8E8E8;
    position: relative;
}
.top_business_menu .menu_blk .menu_blk_image {
    width: 100%;
    height: 33.067vw;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.top_business_menu .menu_blk h3 {
    width: 100%;
    padding: 4vw 5.333vw;
    font-size: 3.6vw;
}
.top_business_menu .menu_blk a {
    background-color: rgba(255,255,255,0);
    transition: all  0.6s ease;
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    font-size: 0px;
}
.top_business_menu .menu_blk_image01 {
    background-image: url(../images/top_bis_ph01.jpg);
}
.top_business_menu .menu_blk_image02 {
    background-image: url(../images/top_bis_ph02.jpg);
}
.top_business_menu .menu_blk_image03 {
    background-image: url(../images/top_bis_ph03.jpg);
}
.top_business_menu .menu_blk_image04 {
    background-image: url(../images/top_bis_ph04.jpg);
}
.top_business_menu .menu_blk_image05 {
    background-image: url(../images/top_bis_ph05.jpg);
}


.top_cat_homemed {
    width: 100%;
    margin: 0 auto;
    padding-top: 17.333vw;
}
.top_cat_homemed_img {
    width: 100%;
    height: 36.933vw;
    background-image: url(../images/top_homemed.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.top_cat_homemed_body {
    width: 92%;
    height: auto;
    padding: 4vw 0 6.667vw 0;
    margin: 0 auto;
}
.top_cat_homemed .top_cat_ttl_line {
    margin-left: -33vw;
}
.top_cat_homemed_body p {
    margin: 4vw auto;
    width: 75vw;
}
.top_cat_gas {
    width: 100%;
    margin: 0 auto;
    margin-top: 17.333vw;
    padding: 7.333vw 4vw;
    background-color: #18B5B5;
    color: #fff;
}
.top_cat_gas .top_cat_ttl_sub {
    color: #fff;
}
.top_cat_gas .top_cat_ttl h2 {
    color: #fff;
}
.top_cat_gas .top_cat_ttl_line {
    background-color: #fff;
    margin-left: -33vw;
}
.top_cat_gas_body {
    width: 100%;
}
.top_cat_gas_body p {
    margin: 4vw auto;
    width: 75vw;
}
.top_cat_gas_link {
    width: 75vw;
    margin: 6vw 0 6vw 8vw;
    position: relative;
}
.top_cat_gas_link a {
    background-color: #fff;
    display: block;
    padding: 8vw;
    font-size: 4vw;
    color: #434343;
}
.top_cat_gas_link a::after {
    content: '';
    display: inline-block;
    width: 17.067vw;
    height: 2.667vw;
    background-image: url(../images/arrow_type02.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 3vw;
}
.top_cat_company {
    width: 92%;
    margin: 0 auto;
    padding-top: 17.333vw;
}
.top_cat_company div {
    width: 100%;
    position: relative;
}
.top_cat_company .top_company {
    background-image: url(../images/top_comapny_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 28vw 6.4vw 5.333vw 6.4vw;
    margin-bottom: 4vw;
}
.top_cat_company .top_recruit {
    background-image: url(../images/top_recruit_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 28vw 6.4vw 5.333vw 6.4vw;
}
.top_cat_company .top_cat_ttl_sub {
    color: #fff;
}
.top_cat_company .top_cat_ttl h2 {
    color: #fff;
}
.top_cat_company .top_cat_arrow {
    width: 17.067vw;
    height: 2.667vw;
    background-image: url(../images/arrow_type03.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 6.667vw;
    bottom: 6.667vw;
}
.top_cat_company a {
    background-color: rgba(255,255,255,0);
    transition: all  0.6s ease;
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    font-size: 0px;
}

.top_cat_news {
    width: 100%;
    margin: 0 auto;
    margin-top: 17.333vw;
    padding: 7.333vw 4vw;
    background-color: #F2F2F2;
}
.top_cat_news_body {
    width: 100%;
}
.top_cat_news .top_cat_ttl {
    float: left;
    width: 40vw;
}
.top_cat_news .top_cat_ttl_line {
    margin-left: -10vw;
    margin-top: 10vw;
}
.newslist_btn {
    position: relative;
    display: inline-block;
    margin: 4vw 0 0 10vw;
}
.newslist_btn a {
    display: block;
    padding: 1.333vw 2.667vw 1.333vw 2.667vw;
    font-size: 3vw;
    border-radius: 13.333vw;
    border: 1px solid #18B5B5;
}
.newslist_btn a:hover {
    background-color: #D5D5D5;
}
.top_cat_news_list {
    width: 90%;
    clear: both;
    margin: 0 auto;
}
.top_cat_news_list dl {
    width: 100%;
    border-bottom: 1px dotted #8E8E8E;
    padding: 4.4vw 0;
}
.top_cat_news_list dl dt {
    width: 100%;
    color: #ED4082;
}
.top_cat_news_list dl dd {
    width: 100%;
}
.top_cat_news_list a {
    text-decoration: underline;
}
/* top page end  */

/* second  */
.contents2 {
    padding-top: 14vw;
}
.contents2 .ttl_blk {
    width: 100%;
}
.contents2 .breadcrum {
    width: 100%;
    padding: 1.333vw 4vw;
}
.contents2 .breadcrum ul {
    display: flex;
    font-size: 3vw;
}
.contents2 .breadcrum ul li {
    padding-right: 4vw;
    position: relative;
}
.contents2 .breadcrum ul li::after {
    content: ">";
    position: absolute;
    right: 0.667vw;
    top: 0;
}
.contents2 .breadcrum ul li:last-child::after {
    content: none;
}
.contents2 .breadcrum ul li a:hover {
    text-decoration: underline;
}
.contents2 .breadcrum ul li.active {
    color: #1A9432;
}
.contents2 .ttl_set {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.contents2 .ttl_set .ttl_set_left {
    width: 49.5%;
    background-color: #18B5B5;
    position: relative;
}
.contents2 .ttl_set .ttl_set_left .ttl_group {
    margin: 20% 0 20% 8%;
}
.contents2 .ttl_set .ttl_set_left .ttl_group h2 {
    font-size: 5vw;
    color: #fff;
    font-weight: 400;
}
.contents2 .ttl_set .ttl_set_left .ttl_group p {
    font-size: 2.133vw;
    color: #434343;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    margin-top: 1.6vw;
    line-height: 110%;
}
.contents2 .ttl_set .ttl_set_right {
    width: 49.5%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.contents2 .cont_inner {
    width: 92%;
    margin: 0 auto;
    padding: 16vw 0;
}
.contents2 .cont_inner2 {
    width: 100%;
    margin: 0 auto;
    padding: 5.333vw 0;
}
.contents2 .cont_inner2 .contents_menu {
    display: none;
}
.contents2 .cont_inner2 .contents_body {
    width: 92%;
    margin: 4vw auto;
}
.bottom_space130 {
    margin-bottom: 17.333vw;
}
.contents2 .contents_body_blk {
    margin-bottom: 17.333vw;
}
.contents2 .contents_body_blk h3 {
    color: #1B9F9F;
    font-size: 5.867vw;
    padding-left: 9.333vw;
    margin-bottom: 2.667vw;
    background-image: url(../images/ttl_head.svg);
    background-size: 5.333vw;
    background-repeat: no-repeat;
    background-position: left top 4vw;
    font-weight: 400;
}
.contents2 .contents_body_blk h3 span {
    font-size: 4vw;
}
.contents2 .image_blk {
    width: 100%;
    margin: 40px auto;
    text-align: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.contents2 .contents_body_blk h4 {
    color: #1B9F9F;
    font-weight: 600;
    font-size: 3.5vw;
    margin-bottom: 1.6vw;
}
.contents2.business_grp .contents_body_blk ul {
    width: 100%;
    margin: 10px auto;
    display: flex;
    flex-wrap: wrap;
}
.contents2.business_grp .contents_body_blk ul li {
    margin-right: 1.6vw;
}
.contents2.business_grp .contents_body_blk ul li::before {
    content: "●";
    color: #1B9F9F;
}
.contents2 .col_blk {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contents2 .product_box3 {
    width: 48%;
}
.contents2 .product_box2 {
    width: 48%;
}
.contents2 .col_blk h4 {
    color: #1B9F9F;
    font-weight: 600;
    font-size: 3.5vw;
    margin-bottom: 1.6vw;
}
.contents2 .col_blk p {
    margin-bottom: 1.6vw;
}
.contents2 .cont_type01 P {
    width:100%;
}
.contents2 .cont_type01 .image_blk {
    width: 100%;
    margin: 4vw auto;
}
.margin-bottom30 {
    margin-bottom: 6vw;
}

/* business  */
.contents2.cat_business .ttl_set .ttl_set_right {
    background-image: url(../images/business_title_img.jpg);
}
.contents2.cat_business01 .ttl_set .ttl_set_right {
    background-image: url(../images/business_gas_ttl_img.jpg);
}
.contents2.cat_business02 .ttl_set .ttl_set_right {
    background-image: url(../images/business_home_ttl_img.jpg);
}
.contents2.cat_business03 .ttl_set .ttl_set_right {
    background-image: url(../images/business_device_ttl_img.jpg);
}
.contents2.cat_business04 .ttl_set .ttl_set_right {
    background-image: url(../images/business_inside_ttl_img.jpg);
}
.contents2.cat_business05 .ttl_set .ttl_set_right {
    background-image: url(../images/business_welfare_ttl_img.jpg);
}
.biz_index_box {
    margin-bottom: 17.333vw;
}
.biz_index_box:last-of-type {
    margin-bottom: 0px;
}
.biz_index_box.biz02_home,.biz_index_box.biz04_inside {
    flex-direction: row-reverse;
}
.biz_index_box .biz_index_box_body {
    width: 100%;
    text-align: center;
}
.biz_index_box .biz_index_box_body .biz_index_box_ttl {
    display: flex;
    margin-bottom: 6.667vw;
    text-align: left;
}
.biz_index_box .biz_index_box_body .biz_index_box_num {
    font-size: 12vw;
    color: #7C7C7C;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    border-bottom: #18B5B5 10px solid;
    display: inline-block;
    padding: 2.667vw 0 6.667vw 0;
}
.biz_index_box .biz_index_box_body h3 {
    font-size: 5.2vw;
    font-weight: 300;
    margin: 1.6vw 0 0 2.933vw;
}
.biz_index_box p {
    margin-bottom: 6.667vw;
    text-align: left;
}
.biz_index_box .biz_index_box_image {
    width: 70%;
    min-height: 70vw;
    margin: 10vw auto;
}
.biz_index_box_image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.biz01_gas .biz_index_box_image {
    background-image: url(../images/business_index_img01.jpg);
}
.biz02_home .biz_index_box_image {
    background-image: url(../images/business_index_img02.jpg);
}
.biz03_device .biz_index_box_image {
    background-image: url(../images/business_index_img03.jpg);
}
.biz04_inside .biz_index_box_image {
    background-image: url(../images/business_index_img04.jpg);
}
.biz05_welfare .biz_index_box_image {
    background-image: url(../images/business_index_img05.jpg);
}
.image_blk.image_biz01_01 {
    height: 48vw;
    background-image: url(../images/sp_business_gas_img01.jpg);
}
.image_blk.image_biz01_02 {
    height: 33.867vw;
    background-image: url(../images/business_gas_img02.jpg);
}
.image_blk.image_biz01_03 {
    height: 56vw;
    background-image: url(../images/business_gas_img03.jpg);
}
.image_blk.image_biz01_05 {
    height: 51.467vw;
    background-image: url(../images/business_gas_img05.jpg);
}
.image_blk.image_biz01_06 {
    height: 30.8vw;
    background-image: url(../images/business_gas_img06.jpg);
}
.image_blk.image_biz03_01 {
    height: 37.467vw;
    background-image: url(../images/business_device_img01.jpg);
}
.image_blk.image_biz03_02 {
    height: 64.8vw;
    background-image: url(../images/business_device_img02.jpg);
}
.image_blk.image_biz03_03 {
    height: 35.467vw;
    background-image: url(../images/business_device_img03.jpg);
}
.image_blk.image_biz03_04 {
    height: 92.933vw;
    background-image: url(../images/business_device_img04.jpg);
}
.image_blk.image_biz03_05 {
    height: 72vw;
    background-image: url(../images/business_device_img05.jpg);
}
.image_blk.image_biz04_01 {
    height: 42.4vw;
    background-image: url(../images/sp_business_inside_img01.jpg);
}
.image_blk.image_biz04_02 {
    height: 42.4vw;
    background-image: url(../images/sp_business_inside_img02.jpg);
}
.image_blk.image_biz04_03 {
    height: 54.4vw;
    background-image: url(../images/sp_business_inside_img03.jpg);
}
.image_blk.image_biz04_04 {
    height: 94.267vw;
    background-image: url(../images/sp_business_inside_img04.jpg);
}
.image_blk.image_biz04_05 {
    height: 32vw;
    background-image: url(../images/business_inside_img05.jpg);
}
.image_blk.image_biz04_06 {
    height: 40vw;
    background-image: url(../images/business_inside_img06.jpg);
}
.image_blk.image_biz05_01 {
    height: 46.933vw;
    background-image: url(../images/business_welfare_img01.jpg);
}
.image_blk.image_biz05_02 {
    height: 37.2vw;
    background-image: url(../images/business_welfare_img02.jpg);
}
.image_blk.image_biz05_03 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.image_blk.image_biz05_03 img {
    width: 49%;
    margin-bottom: 2vw;
}
.image_blk.image_biz05_04 {
    height: 31.467vw;
    background-image: url(../images/business_welfare_img04.jpg);
}
.image_blk.image_biz05_05 {
    height: 32.133vw;
    background-image: url(../images/business_welfare_img05.jpg);
}
.biz_home_indexblk .contents_body_blk {
    width: 100%;
}
.biz_home_indexblk .contents_body_blk h3 {
    font-size: 5.867vw;
}
.biz_home_indexblk .contents_body_blk .home_middle_txt {
    font-size: 2.4vw;
    color: #1B9F9F;
    font-weight: 600;
    margin-bottom: 1.867vw;
}
.biz_home_indexblk .gray_btn {
    margin: 4vw;
}
.center_sort {
    text-align: center;
}

/* homemedical  */
.contents2.cat_homemedical .ttl_set .ttl_set_right {
    background-image: url(../images/homemedical_ttl_img.jpg);
}
.home_index_box {
    margin-bottom: 17.333vw;
}
.home_index_box:last-of-type {
    margin-bottom: 0px;
}
.home_index_box .home_index_box_body {
    width: 100%;
    text-align: center;
}
.home_index_box .home_index_box_body .home_index_box_ttl {
    display: flex;
    text-align: left;
}
.home_index_box .home_index_box_body .home_index_box_num {
    font-size: 10.667vw;
    color: #7C7C7C;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    border-bottom: #18B5B5 10px solid;
    display: inline-block;
    padding: 2.667vw 0 6.667vw 0;
}
.home_index_box .home_index_box_body h3 {
    font-size: 5.333vw;
    font-weight: 300;
    margin: 1.6vw 0 0 4.267vw;
}
.home_index_box p {
    margin: -2.667vw 0 6.667vw 17.6vw;
    text-align: left;
}
.home_index_box .home_index_box_image {
    width: 100%;
    min-height: 50vw;
    margin: 10vw auto;
}
.home_index_box_image {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.home01_hot .home_index_box_image {
    background-image: url(../images/home_index_img01.jpg);
}
.home02_cpap .home_index_box_image {
    background-image: url(../images/home_index_img02.jpg);
}
.home03_hmv .home_index_box_image {
    background-image: url(../images/home_index_img03.jpg);
}
.home04_hft .home_index_box_image {
    background-image: url(../images/home_index_img04.jpg);
}
.home05_hit .home_index_box_image {
    background-image: url(../images/home_index_img05.jpg);
}
.cat_homemedical .contents_body_blk .home_middle_txt {
    font-size: 3.4vw;
    color: #1B9F9F;
    font-weight: 600;
    margin-bottom: 1.867vw;
}
.hot_producs .product_box3 img {
    width: auto;
    height: 42.667vw;
    margin: 4vw auto 10vw auto;
}
/* add 240722 */
.hot_producs .product_box3 {
    display: flex;
    flex-direction: column;
}
.hot_producs .product_box3 div {
    margin-top: auto;
}
.hot_producs .product_box3 p {
    height: auto;
}
/* /add 240722 */
.cpap_producs .product_box3 img {
    width: auto;
    height: 37.333vw;
    margin: 4vw auto 10vw auto;
}
.cpap_producs .product_box3 p {
    height: 12em;
}
.hmv_producs .product_box3 img {
    width: 80%;
    margin: 4vw auto 10vw auto;
}
.hmv_producs .product_box3 p {
    height: 8em;
}
.hit_producs .product_box3 img {
    width: 70%;
    margin: 4vw auto 10vw auto;
}
.hit_producs .product_box3 h4 {
    height: 3em;
}
.hit_producs .product_box3 p {
    height: 8em;
}
.home_flow_blk {
    width: 100%;
    background-color: #F4F4F4;
    padding: 6vw;
}
.home_flow_blk h4 {
    width: 100%;
    text-align: center;
    font-size: 4.533vw;
    color: #1B9F9F;
    margin-bottom: 1em;
}
.home_flow_blk .home_flow_box {
    width: 100%;
    background-color: #fff;
    margin-top: 3.2vw;
}
.home_flow_blk .home_flow_box .flow_ttl_set {
    width: 100%;
    background-color: #18B5B5;
    color: #fff;
    font-weight: 600;
    display: flex;
}
.home_flow_blk .home_flow_box .flow_ttl_set .flow_num {
    background-color: #168888;
    font-family: 'Roboto', sans-serif;
    font-size: 5.333vw;
    padding: 2.133vw 2.4vw;
}
.home_flow_blk .home_flow_box .flow_ttl_set .flow_ttl_txt {
    font-size: 3.733vw;
    padding: 2.133vw 2.4vw;
}
.home_flow_blk .home_flow_box .flow_body {
    padding: 4vw;
}
.home_flow_blk .home_flow_box .flow_body .flow_image {
    width: 100%;
    height: 28.933vw;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 4vw;
}
.flow_arrow {
    width: 100%;
    height: 6.533vw;
    background-image: url(../images/home_flow_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 20px auto;
}
.home_flow_blk .home_flow_box .flow_body .flow_text {
    width: 55%;
}
.home_flow_blk .hot_flow01 .flow_image {
    background-image: url(../images/home_hot_img01.jpg);
}
.home_flow_blk .hot_flow02 .flow_image {
    background-image: url(../images/home_hot_img02.jpg);
}
.home_flow_blk .hot_flow03 .flow_image {
    background-image: url(../images/home_hot_img03.jpg);
}
.home_flow_blk .hot_flow04 .flow_image {
    background-image: url(../images/home_hot_img04.jpg);
}
.home_flow_blk .cpap_flow01 .flow_image {
    background-image: url(../images/home_cpap_img01.jpg);
}
.home_flow_blk .cpap_flow02 .flow_image {
    background-image: url(../images/home_cpap_img02.jpg);
}
.home_flow_blk .cpap_flow03 .flow_image {
    background-image: url(../images/home_cpap_img03.jpg);
}
.home_flow_blk .cpap_flow04 .flow_image {
    background-image: url(../images/home_cpap_img04.jpg);
}
.home_flow_blk .hmv_flow01 .flow_image {
    background-image: url(../images/home_hmv_img01.jpg);
}
.home_flow_blk .hmv_flow02 .flow_image {
    background-image: url(../images/home_hmv_img02.jpg);
}
.home_flow_blk .hmv_flow03 .flow_image {
    background-image: url(../images/home_hmv_img03.jpg);
}
.home_flow_blk .hmv_flow04 .flow_image {
    background-image: url(../images/home_hmv_img04.jpg);
}
.home_flow_blk .hit_flow01 .flow_image {
    background-image: url(../images/home_hit_img01.jpg);
}
.home_flow_blk .hit_flow02 .flow_image {
    background-image: url(../images/home_hit_img02.jpg);
}
.home_flow_blk .hit_flow03 .flow_image {
    background-image: url(../images/home_hit_img03.jpg);
}
.home_flow_blk .hit_flow04 .flow_image {
    background-image: url(../images/home_hit_img04.jpg);
}
.home_flow_blk .home_flow_box .flow_body .flow_text {
    width: 100%;
}
.hft_hiflow_box {
    display: flex;
    justify-content: space-between;
    padding: 5.333vw 0;
    border-bottom: 1px solid #7C7C7C;
}
.hft_hiflow_box:last-of-type {
    border-bottom: none;
}
.hft_hiflow_box .text_blk {
    width: 50%;
}
.hft_hiflow_box .image_blk {
    width: 26.667vw;
    margin: 0;
    text-align: right;
}
.hft_hiflow_box span {
    display: block;
    font-weight: 600;
    font-size: 2.933vw;
    margin-bottom: 1.6vw;
}

/* madicalgas  */
.contents2.cat_madicalgas .ttl_set .ttl_set_right {
    background-image: url(../images/medicalgas_ttl_img.jpg);
}
.gas_type {
    width: 100%;
}
.gas_type th {
    background-color: #75C5C5;
    padding: 2.667vw;
    color: #fff;
}
.gas_type th,.gas_type td {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    margin: 0;
}
.gas_type td {
    background-color: #EAEAEA;
    padding: 2.667vw;
}
.gas_type td.tdh {
    background-color: #A2D8D8;
    width: 34%;
    vertical-align: text-top;
}
.cat_madicalgas .cont_type01 {
    margin-bottom: 13.333vw;
}
.cat_madicalgas .cont_type01 span {
    display: block;
    font-size: 4vw;
    color: #1B9F9F;
    font-weight: 600;
    margin-bottom: 2vw;
}
.cat_madicalgas .image_blk {
    height: 50vw;
}
.cat_madicalgas .image_medicalgas01 {
    background-image: url(../images/med_gas_img01.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.cat_madicalgas .image_medicalgas02 {
    background-image: url(../images/med_gas_img02.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.cat_madicalgas .image_medicalgas03 {
    background-image: url(../images/med_gas_img03.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* company  */
.contents2.cat_company .ttl_set .ttl_set_right {
    background-image: url(../images/company_title_img.jpg);
}
.company_index {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.company_index .com_idx_btn {
    width: 48%;
    height: 16vw;
    border-top: 2px solid #C9C9C9;
    border-left: 2px solid #C9C9C9;
    margin-bottom: 4vw;
    position: relative;
    background-image: url(../images/circle_arrow.svg);
    background-size: 5vw;
    background-repeat: no-repeat;
    background-position: center right 10px;
}
.company_index .com_idx_btn h3 {
    font-size: 4vw;
    font-weight: 400;
    position: absolute;
    top: 50%;
    left: 3vw;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
}
.company_index .com_idx_btn .com_idx_line {
    width: 100%;
    height: 16vw;
    border-bottom: 2px solid #2FB4B6;
    border-right: 2px solid #2FB4B6;
    position: absolute;
    top: 0.8vw;
    left: 0.8vw;
}
.company_index .com_idx_btn a {
    width: 100%;
    height: 100%;
    display: block;
    z-index: 10;
    position: relative;
    background-color: rgba(255,255,255,0);
    transition: all  0.3s ease;
}
.company_index .com_idx_btn a:hover {
    background-color: rgba(255,255,255,0.5);
    transition: all  0.3s ease;
}
.greeting_blk {
    background-image: url(../images/company_greeting_img.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    text-align: center;
}
.greeting_blk h2 {
    font-size: 5.333vw;
    color: #18B5B5;
    padding: 10.667vw 0;
}
.greeting_blk p {
    font-size: 3.2vw;
    line-height: 7.467vw;
    padding-bottom: 66.667vw;
}
.philosophy_blk {
    text-align: center;
    margin: 13.333vw 0 26.667vw 0;
}
.philosophy_blk h3 {
    color: #1B9F9F;
    font-size: 5.867vw;
    padding-bottom: 5.333vw;
    margin-bottom: 5.333vw;
    background-image: url(../images/ttl_head.svg);
    background-size: 5.333vw;
    background-repeat: no-repeat;
    background-position: center bottom;
    font-weight: 400;
}
.philosophy_blk p {
    margin-bottom: 13.333vw;
}
.image_philosophy {
    height: 36vw;
    background-image: url(../images/sp_company_philosophy_img.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
dl.abput_table {
    width: 100%;
    margin: 12vw auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
dl.abput_table dt {
    border-bottom: 2px solid #18B5B5;
    width: 22%;
    padding: 1.333vw;
}
dl.abput_table dd {
    border-bottom: 2px solid #C1C1C1;
    width: 76%;
    padding: 1.333vw;
}
dl.abput_table dd a {
    height: auto;
    text-decoration: underline;
}
dl.history_table {
    width: 100%;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #EAEAEA;
    border-bottom: 2px solid #fff;
    padding: 1.867vw;
}
dl.history_table dt {
    width: 20%;
    padding: 0 1.867vw;
}
dl.history_table dd {
    border-left: 2px solid #18B5B5;
    width: 80%;
    padding: 0 1.867vw;
}
.access_map {
    width: 100%;
    height: 72vw;
    margin: 2.667vw 0 16vw 0;
}
.office_group {
    margin: 4vw 0;
}
.office_group h4 {
    font-size: 3.2vw;
    color: #1B9F9F;
    margin-bottom: 0.667vw;
}
.office_group .ofice_box {
    background-color: #EAEAEA;
    padding: 2.667vw;
    border-bottom: 2px solid #fff;
    position: relative;
    text-align: center;
}
.office_group .ofice_box .office_data {
    font-size: 3vw;
    letter-spacing: 0;
    text-align: left;
    margin-bottom: 2vw;
}
.office_group .ofice_box .office_data span{
    font-weight: 600;
    display: block;
}
.map_btn {
    position: relative;
    display: inline-block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.map_btn a {
    background-color: #fff;
    display: block;
    padding: 1.333vw 12vw 1.333vw 3.333vw;
    font-size: 3vw;
    border-radius: 13.333vw;
}
.map_btn a:hover {
    background-color: #D4FAFA;
}
.map_btn a::after {
    content: '';
    display: inline-block;
    width: 5vw;
    height: 5vw;
    background-image: url(../images/arrow_type01.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top 0.6vw;
    position: absolute;
    right: 2.667vw;
}
.policy_index {
    display: block;
}
.policy_index .policy_box {
    width: 100%;
    text-align: center;
    border: 1px solid #707070;
    border-radius: 2.667vw;
    padding: 4vw;
    display: table;
    margin-bottom: 4vw;
}
.policy_index .policy_box .policy_box_txt {
    width: 100%;
    display: table-row;
    margin-bottom: 2.667vw;
}
.policy_index .policy_box .policy_box_txt h3 {
    color: #1B9F9F;
    font-weight: 400;
    font-size: 4.4vw;
    margin-bottom: 8vw;
}

.policies h4 {
    margin-top: 2em;
    margin-bottom: 1em;
    font-size: 5vw;
}
.policies h5 {
    margin-top: 2em;
    margin-bottom: 0.5em;
    font-size: 4vw;
}
.policies table {
    width: 100%;
    border-top: solid 1px #999;
    border-left: solid 1px #999;
    margin: 20px 0;
    padding: 0;
    border-spacing: 0px;
}
.policies table th,.policies table td {
    border-bottom: solid 1px #999;
    border-right: solid 1px #999;
    margin: 0;
    padding: 10px;
    text-align: right;
}
.policies table td:nth-of-type(1) {
    text-align: left;
    width: 50%;
}
.policies table th {
    text-align: center;
    background-color: #f2f2f2;
}
.policies_pdf_list {
    margin: 1em 0;
}
.policies_pdf_list li a{
    color: #1B9F9F;
    text-decoration: underline;
}

.sdgs_logo {
    width: 90vw;
    text-align: center;
    margin: 0 auto 3em auto;
}
.sdgs_blk {
    border: solid 1px #707070;
    padding: 8vw 4vw;
    margin-bottom: 3em;
}
.contents2 .contents_body_blk .sdgs_blk h4 {
    font-size: 6vw;
    color: #1B9F9F;
    font-weight: 400;
    margin-bottom: 1em;
}
.contents2 .contents_body_blk .sdgs_blk p {
    font-size: 4vw;
    line-height: 6vw;
}
.contents2 .contents_body_blk .sdgs_blk .sdgs_icon {
    display: flex;
    margin: 4vw 0;
}
.contents2 .contents_body_blk .sdgs_blk .sdgs_icon img {
    width: 19%;
    margin-right: 1vw;
}
.contents2 .contents_body_blk .sdgs_blk h5 {
    font-size: 4vw;
    color: #1B9F9F;
    font-weight: 400;
    margin-bottom: 0.5em;
}
.contents2 .contents_body_blk .sdgs_blk ul {
    list-style-type: disc;
    margin-left: 2em;
}



/* recruit  */
.contents2.cat_recruit .ttl_set .ttl_set_right {
    background-image: url(../images/recruit_title_img.jpg);
}
.recruit_part01 {
    display: flex;
    justify-content: space-between;
}
.contents2 .contents_body_blk .recruit_part01 ul li::before {
    content: none;
}
.recruit_part01 div a {
    display: inline-block;
    width: auto;
    height: auto;
    text-decoration: underline;
}
.recruit_requirements {
    position: inherit;
}
.recruit_requirements dl {
    width: 90%;
    margin: 3vw auto 5vw auto;
    display: flex;
    flex-wrap: wrap;
}
.recruit_requirements dl dt {
    font-size: 2.667vw;
    color: #1B9F9F;
    width: 1.6em;
    margin-bottom: 2.667vw;
}
.recruit_requirements dl dd {
    width: 92%;
    margin-bottom: 4vw;
}
.cat_recruit .rec_faq {
    text-align: left;
}
.cat_recruit .recruit_requirements .rec_faq dl {
    display: block;
    background-color: #EAEAEA;
    padding: 4vw;
    margin: 0 auto 40px auto;
}
.cat_recruit .recruit_requirements .rec_faq dl dt {
    font-size: 3.5vw;
    width: 100%;
    text-align: left;
    padding-left: 3.733vw;
    text-indent: -3.8vw;
}
.cat_recruit .recruit_requirements .rec_faq dl dt::before {
    content: "Q";
    margin-right: 1.6vw;
    font-weight: 600;
}
.cat_recruit .recruit_requirements .rec_faq dl dd {
    width: 100%;
    text-align: left;
    padding-bottom: 2.667vw;
    border-bottom: 2px solid #fff;
    padding-left: 3.733vw;
    text-indent: -3vw;
}
.cat_recruit .recruit_requirements .rec_faq dl dd::before {
    content: "A";
    margin-right: 1.6vw;
    font-weight: 600;
}
.cat_recruit .recruit_requirements .rec_faq dl dd a {
    width: 70%;
    margin: 5vw auto;
}
.cat_recruit dl.abput_table {
    width: 100%;
    margin: 0 auto 12vw auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.cat_recruit dl.abput_table dt {
    border-bottom: 2px solid #18B5B5;
    width: 22%;
    padding: 1.333vw;
    margin-bottom: 0;
    font-size: 3.4vw;
}
.cat_recruit dl.abput_table dd {
    border-bottom: 2px solid #C1C1C1;
    width: 76%;
    padding: 1.333vw;
    margin-bottom: 0;
}
.recruit_requirements dl.abput_table dd li {
    list-style-type: disc;
    margin-left: 1.5em;
}
.recruit_requirements p {
    margin-bottom: 2em;
}
.cat_recruit .contents_body .rec_title {
    color: #18B5B5;
    font-size: 6vw;
    text-align: center;
    margin-bottom: 10vw;
}


/* contact  */
.contents2.cat_contact .ttl_set .ttl_set_right {
    background-image: url(../images/contact_title_img.jpg);
}
.cat_contact p {
    margin-bottom: 1em;
}
.cat_contact .contact_cylinder {
    margin: 40px auto;
    padding: 4vw 5.333vw;
    border: 1px solid #999999;
}
.cat_contact strong {
    font-weight: 600;
}
.contents2.cat_contact .gray_btn {
    margin-left: 12vw;

}
.contact-table {
    width: 100%;
    margin-bottom: 2.667vw;
}
.contact-item,
.contact-body {
    padding: 2.667vw;
    border: 1px solid #ccc;
}

.contact-item {
  text-align: left; /* テキスト左寄せ */
  width: 30%; /* 横幅30%指定（グレーの背景色部分） */
  background-color: #eee; /* グレーの背景色 */
}

.contact-body {
  width: 70%; /* 横幅70%指定（白背景色部分） */
}
.form-text {
    width: 100%;
    padding: 1.333vw;
    border-radius: 0.667vw;
    border: 1px solid #ccc;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    max-width: 53.333vw;
}
.contact-select {
    display: block;
}

.contact-select-txt {
    margin-left: 0.667vw;
}
.caution {
    color: #f00;
}
.form-textarea {
    width: 100%;
    padding: 1.333vw;
    height: 26.667vw;
    border-radius: 0.667vw;
    border: 1px solid #ccc;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.contact-submit {
    width: 60vw; /* 横幅指定 */
    background-color: #E8E8E8; /* 背景色 */
    color: #333; /* 文字色 */
    font-weight: bold; /* 文字の太さ */
    display: block; /* インライン要素をブロック要素に変更 */
    margin: 0 auto; /* 中央寄せ */
    font-size: 3.5vw; /* 文字の大きさ */
    padding: 4vw; /* 内側の余白 */
    border-radius: 100vh; /* 角丸指定 */
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}
/* sitemap  */
.contents2.cat_sitemap .ttl_set .ttl_set_right {
    background-image: url(../images/business_title_img.jpg);
}
.sitemap_blk {
    display: block;
}
.sitemap_blk a {
    text-decoration: none;
}
.sitemap_blk a:hover {
    text-decoration: underline;
}
.sitemap_blk ul {
    width: 90%;
    margin: 0 auto;
    display: block;
}
.sitemap_blk ul li {
    display: block;
    font-size: 6vw;
    padding: 4vw;
    color: #18B5B5;
    font-weight: 600;
}
.sitemap_blk ul li ul {
    display: block;
    margin-top: 3vw;
    margin-left: 6.667vw;
    margin-bottom: 8vw;
}
.sitemap_blk ul li ul li {
    display: block;
    font-size: 4vw;
    padding: 4vw 0;
    font-weight: 600;
    color: #454545;
    border-bottom: 1px solid #18B5B5;
}

/* news  */
.news_list {
    width: 100%;
}
.news_list dl {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.news_list dl dt {
    border-bottom: 2px solid #18B5B5;
    width: 35%;
    padding: 3vw 1vw;
    font-weight: 600;
}
.news_list a {
    text-decoration: underline;
}
.news_list dl dd {
    border-bottom: 2px solid #C1C1C1;
    width: 64%;
    padding: 3vw 1vw;
}


/* privacypolicy  */
.contents2.cat_policy  .ttl_set .ttl_set_right {
    background-image: url(../images/company_title_img.jpg);
}
.cat_policy p {
    margin-bottom: 2em;
}
.privacy_blk {
    margin-bottom: 6em;
}
.privacy_blk p {
    margin-bottom: 0.5em;
}
.privacy_blk h2 {
    font-size: 5vw;
    margin-bottom: 1em;
    text-align: center;
}
.privacy_blk h3 {
    font-size: 5vw;
    color: #18B5B5;
    margin-top: 2em;
    margin-bottom: 0.5em;
}
.privacy_blk h4 {
    font-weight: 600;
    margin-bottom: 0.5em;
}
.privacy_blk ol {
    margin-left: 2em;
    list-style-type: decimal;
    margin-bottom: 1em;
}
.privacy_blk .end_text {
    text-align: right;
}
.privacy_blk ol li ol {
    margin-left: 1em;
    list-style-type: decimal;
    margin-bottom: 1em;
}
.privacy_blk ol li ol li {
    margin-bottom: 0.5em;
}
.privacy_blk ol li ul {
    margin-left: 1em;
}
.privacy_blk ol li ul li {
    list-style-type: disc;
}
.privacy_blk ol li a {
    color: #18B5B5;
    text-decoration: underline;
    font-weight: 600;
}
.privacy_blk ul li {
    margin-bottom: 0.5em;
}
.privacy_blk ul {
    margin-left: 1.5em;
}
.privacy_blk ul li {
    list-style-type: disc;
}
.privacy_blk dl dd a {
    color: #18B5B5;
    text-decoration: underline;
    font-weight: 600;
}
.privacy_blk dl {
    display: flex;
    flex-wrap: wrap;
    margin-left: 1em;
}
.privacy_blk dl dt {
    width: 3em;
}
.privacy_blk dl dd {
    width: calc(100% - 3em);
    margin-bottom: 0.2em;
}
.privacy_blk dl dl{
    margin-left: 0em;
}
.privacy_blk dl dl dt {
    width: 1.5em;
}
.privacy_blk dl dl dd {
    width: calc(100% - 1.5em);
}



/* 位置を右上に固定 */
#toggle {
    position: fixed;
    top:  0;
    right:  0;
}
/* ハンバーガーメニューの大きさ指定 */
#toggle-box {
    position: relative;
    width:  12vw;
    height: 12vw;
    cursor: pointer;
    background: #18B5B5;
}
#toggle-box > span {
    width: 5vw;
    height: 0.5vw;
    left: 0;
    right: 0;
    top: 5vw;
    bottom: 5vw;
    margin: auto;
    display: block;
    background: #fff;
    position: absolute;
    transition: transform .6s ease-in-out;
}
#toggle-box > span:nth-child(1) {
    top: 0;
}
#toggle-box > span:nth-child(2) {
    top: 50%;
    transform: translatey(-50%);
}
#toggle-box > span:nth-child(3) {
    bottom: 0;
}

/* ハンバーガーメニュークリックで、「×」マークにアニメーション */
.is-open #toggle-box > span {
    background: #fff;
}
.is-open #toggle-box > span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg) translatey(-50%);
}
.is-open #toggle-box > span:nth-child(2) {
    width: 0;
}
.is-open #toggle-box > span:nth-child(3) {
    top: 9%;
    left: 6%;
    transform: rotate(-45deg) translatey(-50%);
}

/* 重なり順指定 */
#toggle {
    z-index: 1000;
}
#main {
    position: relative;
    z-index: 990;
}

/* 中身メニュー、初期は非表示 */
#nav-content {
    z-index: 900;
    overflow: auto;
    width: 100%;
    height: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    opacity: 0;
    transition: opacity .6s ease, visibility .6s ease;
    display: none;
}

/* is-openクラスが追加されると、メニューが表示される */
.is-open {
    overflow: hidden;
}
.is-open #nav-content {
    z-index: 999;
    visibility: visible;
    opacity: 1;
    display: block;
}
.is-open #nav-content a {
    pointer-events: auto;
}
}
/* sp end  */

/* animate  */
.animation {
    opacity : 0.0;
    transform : translate(0, 50px);
    transition : all 1000ms;
    }

.animation.scrollin {
    opacity : 1;
    transform : translate(0, 0);
    }
.animation.scrollin:nth-of-type(2) {
	transition-delay: 0.3s;
}
.animation.scrollin:nth-of-type(3) {
	transition-delay: 0.5s;
}
.animation.scrollin:nth-of-type(4) {
	transition-delay: 0.8s;
}


.animate {
    opacity : 0.0;
    transform : translate(0, 0);
    transition : all 1200ms 1.2s;
    }
.animate.scrollin {
    opacity : 1;
    transform : translate(0, 0);
	transition-delay: 0.8s;
}

/* 2025.04 sct-law */

.list-sq{
    padding-left: 20px;
}
.list-sq li{
    list-style: disc;
}

/* 20260512 add */

.transfer-banner {
    width: 83%;
    background-color: #f8f9fa; 
    border-left: 6px solid #18B5B5; 
    padding: 1.6rem;
    margin: 6rem auto 0;
    font-size: 1rem;
}
.transfer-banner strong {
    font-size: 1.1rem; 
}

.transfer-banner.--black {
    background-color: white;
    border: 5px solid #18B5B5;
    padding: 1.4rem;
    font-size: 1.6rem; 
    text-align: center;
}
.transfer-banner.--black strong {
    display: inline-block;
    font-size: 1.8rem;
    padding-bottom: 1.4rem; 
}

@media screen and (max-width: 1023px) {
    .transfer-banner {
        width: 92%;
        margin: 3rem auto 0;
    }
}