<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

body {
    margin: auto;
    width: 100%;
/*    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN","HG明朝E","MS Ｐ明朝","MS 明朝",serif;*/
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}





/* ここからTOP header CSS */
.header {
    background-color: #f8f8f8de;
    display: flex;
    padding-top: 0.5vw;
    padding-bottom: 0.5vw;
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;

    justify-content: center;
    margin:0;
}

/* .logo {
    margin-left: 10vw;
} */

.logo img{
    width: 100%;
    max-width: 10vw;
    padding-top: 0.5vw;
}

.navi{
    padding-left: 1.5vw;
}

.navi ul {
    display: flex;
    align-items: center;
    list-style: none;
    font-size: 1.5vw;
    color: #015AA0;
}
.navi li {
    list-style: none;
    /* padding-left: 5vw; */
    position: relative;
    display: inline-block;
    text-align: center;
    width: 15vw;
}
.navi a {
    color: inherit;
    text-decoration: none;
}

.navi a::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    content: '';
    width: 0;
    height: 1px;
    background-color: #aa9a9a;
    transition: .3s;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.navi a:hover::after {
    width: 100%;
    
}



.list {
    display: flex;
    position: relative;
    color: #015AA0;
    font-size: 1.5vw;
    list-style: none;

    /* border: 1px solid; */
}
/* .list li :before {
    position: absolute;
    top: 1vw;
    content: "/";
    display: block;
    transform: translate(-50%, -50%);
    color: #015AA0;
    padding-right: 4vw;
} */
.list-item-link {
    text-decoration: none;
    color: inherit;
}


/* ここからドロップダウンメニュー */

.list &gt; li &gt; ul {
    
    padding:0;
	margin:0;
    display: block;
    position: absolute;

    width: 19vw;
    line-height:3.5vw;/*ここで高さ指定することで、liタグのテキストが上下中央になる*/
    
    transform: scaleY(0);/*デフォルトでは非表示の状態にしておく (0)は0倍という意味*/
    transform-origin: center top;/*変形を適応する基準をtopとする*/
    transition: all .3s;/*表示の変化を0.3秒に指定*/

    box-shadow: 0 5px 15px rgba(0,0,0,.2);/*ドロップシャドウ*/    
}

.list &gt; li:hover ul{/*.listの下のliにホバーしたら*/
	top:100%;
	left:0;
	list-style-type:none;
    transform: scaleY(1);/*ナビメニューにホバーしたら表示 (1)は1倍という意味*/
}


.dropdown_lists &gt; li {
    width: 100%;
    height: 100%;
    white-space: nowrap;
    
    text-align: left;
    font-size: 1.3vw;
    background-color: #fff;
    /* background-color: rgba(255, 255, 255, 0.8); */
    
}

.dropdown_list + li { /*.dropdown_listの次にくるliにだけborder-topを指定*/
    border-top: #f6f6f6de solid 1px;
}

.dropdown_list &gt; a {
    display: block;
    padding-left: 1vw;
}

.dropdown_list a:hover {
    background-color: #001fb9;
    background: linear-gradient(to right, #0023d0 0%,#3ed7d0 100%);
    color: #fff;
    
}

/* ここまでドロップダウンメニュー */

/* ここまで */





/* ここからTOP main CSS */
/* 画像のスライド */






.out{
    position: relative;
}
.in img{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: .5s;
    z-index: 0;
}

.slide_show {
    margin-top: 5vw;
    margin-left: 20vw;
}
.slide_show img{
    display: block;
    width: 62vw;
    height: 33vw;
}
input{
    display: none;
}
.in{
    display: flex;
    justify-content: center;
    margin-right: 15vw;
}
label span{
    display: block;
    width: 0.7vw;
    height: 0.7vw;
    padding: 0.5vw;
    border-radius: 100%;
    cursor: pointer;
    position: relative;
    z-index: 2;
}
label span::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #4287f5;
    opacity: 0.5;
    border-radius: 100%;
}            
input:nth-of-type(1):checked ~ .in label:nth-of-type(1) span::before,
input:nth-of-type(2):checked ~ .in label:nth-of-type(2) span::before,
input:nth-of-type(3):checked ~ .in label:nth-of-type(3) span::before,
input:nth-of-type(4):checked ~ .in label:nth-of-type(4) span::before,
input:nth-of-type(5):checked ~ .in label:nth-of-type(5) span::before {
    
    
    opacity: 1;
}
label span::before{
    animation: slidebutton 17s infinite;
}
@keyframes slidebutton{
    0%{opacity: 0.5;background: #4287f5;}
    10.5%{opacity: 1;background: #4b42f5;}/* b÷x×100=y */
    20%{opacity: 1;background: #4b42f5;}/* 100÷c=z */
    30.5%{opacity: 0.5;background: #4b42f5;}/* y+z */
}

label:nth-of-type(2) span::before,label:nth-of-type(2) img{
    animation-delay: 3.5s;
}            
label:nth-of-type(3) span::before,label:nth-of-type(3) img{
    animation-delay: 7s;
}            
label:nth-of-type(4) span::before,label:nth-of-type(4) img{
    animation-delay: 10.5s;
}
label:nth-of-type(5) span::before,label:nth-of-type(5) img{
    animation-delay: 13s;
}
input:nth-of-type(1):checked ~ .in label:nth-of-type(1) img,
input:nth-of-type(2):checked ~ .in label:nth-of-type(2) img,
input:nth-of-type(3):checked ~ .in label:nth-of-type(3) img,
input:nth-of-type(4):checked ~ .in label:nth-of-type(4) img,
input:nth-of-type(5):checked ~ .in label:nth-of-type(5) img{
    opacity: 1;
    z-index: 1;
}
.in img{
    animation: slide 17s infinite;/* (a+b)×c=x */
    opacity: 0;
}
@keyframes slide{
    0%{opacity: 0;}
    5.5%{opacity: 1;z-index: 1;}/* b÷x×100=y */
    28%{opacity: 1;}/* 100÷c=z */
    30.5%{opacity: 0;z-index: 0;}/* y+z */
}








/* ニュース */


/*1.フェードインアニメーションの指定*/
.scrollanime {opacity: 0;} /*一瞬表示されるのを防ぐ*/
.fadeInDown {
    animation-name: fadeInDown;
    animation-duration: 3s;
    animation-fill-mode: forwards;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;         
    }
    100% {
    opacity: 1;
    transform: translate(0);
    }
}


/*2.上下の動きを指定*/
.updown {transform: translateY(-100px);}
.downup {transform: translateY(100px);}

.news {
    background-image: url("../img/top_img/back_2.png");
	background-position: 0px 20px;
    background-size:100%;
	max-width: 100vw;
    min-height: 25vw;
    text-align: center;
    margin-top: 10vw;
    padding-top: 3vw;
	padding-bottom: 3vw;
	
	
}

.news_white {
	background-color: #fff;
	width:70vw;
	margin:0 auto;
	/* padding: 1vw 0 2vw; */
	position: relative;
	
}

.topimg {
	position: absolute;
	top:-6vw;
	left:-2vw;
	width: 12vw;
}

.news_white h2 {
    color: #015AA0;
    
    margin-bottom: -1vw;
    font-size: 2vw;
    /* margin-left: 1vw; */
    white-space:nowrap;
	
}
.news_white p {
    margin-top: 1vw;
    font-size: 0.8vw;
    margin-bottom: 2vw;
    color: #015AA0;
    border-bottom: 1px solid #679133;
    width: 3vw;
    margin: 2vw auto;
    white-space:nowrap;
		
}
.news_white ul li {
    list-style: none;
    font-family: Arial, Helvetica, sans-serif;
    color: #015AA0;
    margin: 0 auto;
    margin-bottom: 1.1vw;
    padding-bottom: 0.9vw;
    border-bottom: 2px solid #D4D5D5;
    width: 50vw;
    text-align: left;
    /* white-space:nowrap; */
}

ul .list_news {
	display: flex;
}



.date {
    font-size: 1vw;
    margin-right: 2vw;
    font-size: 1vw;
    margin-bottom: 2vw;
    white-space:nowrap
}
.category_1,
.category_2,
.category_3,
.category_4,
.category_5 {
	height: 1.3em;
	
	margin-right: 3vw;
    padding: 0.4vw 1vw;
    border-radius: 0.4vw;
    color: white;
    font-size: 1vw;
    white-space:nowrap
}

.category_1 {
    background-color: #1ebc85;
}
.category_2 {
    background-color: #F5BA5B;
}
.category_3 {
    background-color: #907bb4;
}
.category_4 {
    background-color: #f55b5b;
}
.category_5 {
    background-color: #5bd9f5;
}

.title a {
    font-size: 1vw;
    text-decoration: none;
    color: #015AA0;
    /* white-space:nowrap */
}
.title a:hover{
    color: rgb(38, 41, 255);
}



.title {
    /* width: 5vw; */
    font-size: 1vw;
    /* white-space:nowrap */
}
.news_view_more {
    display: flex;
	justify-content: flex-end;
	padding: 0 10vw;
/*    margin-left: 65vw;*/
    white-space:nowrap;
	
}
.news_view_more a {
    color: #015AA0;
    text-decoration: none;
    font-size: 1.2vw;
}
.news_view_more img {
    margin-left: 1vw;
    margin-top: 0.4vw;
    width: 1.1vw;
    height: 1.1vw;
}














/* 製品・サービス、企業情報、株主さまへ */
.item {
    display: flex;
    margin-top: 15vw;
    justify-content: center;
    padding: 0 4vw;
}
.label_item img {
    width: 20vw;
    height: 20vw;
}
.label_item {
    /* margin-left: 10vw; */
    margin: auto;
    position: relative;
    text-align: center;
}
.label_item p {
    font-size: 1.5vw;
}

.label_item::before {
    background-color: #679133;
    border-radius: 15vw;
    bottom: 2.5vw;
    content: "";
    height: 0.1vw;
    left: 10vw;
    position: absolute;
    transform: translateX(-50%);
    width: 7vw;
}

.label_item_p  {
    text-align: center;
    border: 0.1vw solid  #015AA0;
    margin-top: -0.8vw;
    padding-top: 1.3vw;
    padding-bottom: 1.5vw;
}
.label_item a {
    text-decoration: none;
    color: #015AA0;
    font-size: 28px;
}

.label_item a:hover{
    opacity:0.5;
	transition:0.3s;
}

.person_2 img {
    width: 10vw;
    height: 10vw;
    position: absolute;
    left: -3vw;
    top: -5.7vw;
}




/* 歴史 */
.histry {
    background-image: url("../img/top_img/top_background_.png");
    background-size:100%;
    max-width: 100vw;
    height: 30vw;
    text-align: left;
    margin-top: 10vw;
    padding-top: 13vw;
    margin-bottom: 10vw;
}
.histry_item {
    display: flex;
    color: #015AA0;
    padding-left: 15vw;
}
.histry_item_img  img{
    width: 35vw;
    height: 25vw;
}
.histry_item_text p {
    writing-mode: vertical-rl;
    font-size: 1vw;
    padding-left: 5vw;
    line-height: 2.5vw;
    margin-top: 1vw;
    text-align: left;
}

.histry_view_more a {
    color: #015AA0;
    text-decoration: none;
    font-size: 1.2vw;
}

.histry_item_title h1 {
    writing-mode: vertical-rl;
    font-size: 3vw;
    margin-top: 2vw;
}



@-moz-document url-prefix(){
    .histry_item_title h1 {
        writing-mode: vertical-rl;
        font-size: 3vw;
        margin-top: 2vw;
        margin-left: 27vw;
    }

    .histry_view_more {
        margin-left: 25vw;
    }


}


_::-webkit-full-page-media, _:future, :root .histry_item_title h1{
    margin-left: 25vw;
}

_::-webkit-full-page-media, _:future, :root .histry_view_more{
    margin-left: 25vw;
}

.histry_view_more {
    display: flex;
    margin-top: 3vw;
}
.histry_view_more img {
    margin-left: 1vw;
    margin-top: 0.4vw;
    width: 1.1vw;
    height: 1.1vw;
}



/* トップページ デジタルカタログとamazonのバナー用設定 */
.ncal-cat-top img {
    width: 25vw;
    min-width: 260px;
}

.ncal-cat-top p {
    font-size: 0.7rem;
}

.top_banner {
    margin-bottom: 20px;
    margin: 4%;

    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.top_banner img:hover {
    opacity: 0.7;
}

.amazon{
    font-size: 1vw;
}
/* ここまで トップページ デジタルカタログとamazonのバナー用設定 */





/* footer CSS */

.footer {
    background: url(../img/common_img/footer_pic_.jpg);
    -moz-appearance: none;
	appearance: none;
    background-size: 105%;
    background-repeat: no-repeat;
    position: relative;
    max-width: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 100vw;
    height: 60vw;
    white-space:nowrap;

    background-color: #e8e8e8;
    background-position: bottom;
}

.column {
    margin: 0 auto;
    text-align: left;
    margin-top: 4vw;
    font-size: 1vw;
    white-space:nowrap;
}

.column td{
    vertical-align: top;
    /* border: solid 1px; */
}



.column ul li {
    font-size: 1vw;
    list-style: none;
    padding-right: 3vw;
    white-space:nowrap;

    line-height: 1.7;
}


.column a {
    font-size: 1vw;
    text-decoration: none;
    color: #181311;
    white-space:nowrap
}


.footer_menu {/*フッターのメニューのli部分*/
    margin-bottom: 1.5em;
}




.footer_bottom {
    position: absolute;
    white-space:nowrap
}

.footer_left {
    text-align: left;
    display: flex;
    margin-top: -9vw;
    white-space:nowrap;
}


.column_5 img {
    width: 4vw;
}

.column_5 table  {
    margin-left: -3vw;
}
.column_5 table tr th {
    padding-right: 0.7vw;
}

.main_office {
    font-size: 1.8vw;
    margin-left: 5vw;
    
}
dd {
    font-size: 1vw;
    margin-left: 5vw;
}

.footer_right {
    margin-left: 80vw;
    margin-top: -8vw;
}

.footer_right tr td {
    padding-left: 1vw;
}

.youtube_icon img {
    width: 3vw;
    height: 2vw;
    margin-top: 2vw;
}

.insta_icon img {
    width: 2.5vw;
    height: 2.5vw;
    margin-top: 2vw;
}
.copyright {
    font-size: 0.8vw;
    margin-left: 78vw;
    margin-top: -0.1vw;
    white-space:nowrap
}

/* ここまでTOP CSS */









html {
    scroll-behavior: smooth;
}
.pagetop {
    height: 3vw;
    width: 3vw;
    position: fixed;
    right: 3vw;
    bottom: 3vw;
    border: solid 0.2vw #015AA0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 1vw;
    width: 1vw;
    border-top: 0.2vw solid #015AA0;
    border-right: 0.2vw solid #015AA0;
    transform: translateY(20%) rotate(-45deg);
}














@media screen and (min-width:900px) and ( max-width:1000px) {
    /*　画面サイズが900pxから1000pxまではここを読み込む　*/

/*
	.news ul li {
        list-style: none;
        font-family: Arial, Helvetica, sans-serif;
        color: #015AA0;
        margin-left: 24vw;
        margin-bottom: 1.1vw;
        padding-bottom: 0.5vw;
        border-bottom: 0.19vw solid #D4D5D5;
        width: 44vw;
        text-align: left;
        white-space: nowrap;
    }
    .news_view_more {
        margin-top: -3vw;
        display: flex;
        margin-left: 75vw;
        white-space: nowrap;
    }

    .news p {
        margin-top: 1vw;
        font-size: 0.8vw;
        margin-bottom: -1vw;
        color: #015AA0;
        border-bottom: 1px solid #679133;
        width: 3vw;
        margin-left: 49vw;
        white-space: nowrap;
    }
*/



    .label_item img {
        width: 20vw;
        height: 20vw;
        margin-bottom: -0.5vw;
    }
    .person_2 img {
        width: 10vw;
        height: 10vw;
        position: absolute;
        left: -3vw;
        top: -5.7vw;
    }
    


    .histry_item_text p {
        writing-mode: vertical-rl;
        font-size: 1vw;
        padding-left: 5vw;
        line-height: 2.5vw;
        margin-top: 1vw;
        text-align: left;
        white-space: nowrap;
    }







    .column {
        margin: 0 auto;
        text-align: left;
        margin-left: 5vw;
        margin-top: 3vw;
        font-size: 1vw;
        white-space: nowrap;
    }


    .column_1,.column_2,.column_3,.column_4,.column_5 {
        margin-right: -6vw;
    }


    .title a {
        font-size: 1vw;
        text-decoration: none;
        color: #015AA0;
        /* white-space: nowrap; */
    }


    dd {
        font-size: 1vw;
        margin-left: 5vw;
    }

    .main_office {
    font-size: 1.8vw;
    margin-left: 5vw;
    }

    .footer_left {
        text-align: left;
        margin-top: -10vw;
        white-space: nowrap;
    }

    .footer_right {
        margin-left: 78vw;
        margin-top: -8vw;
    }
    
    .footer_right tr td {
        padding-left: 1vw;
    }
    
    .youtube_icon img {
        width: 3vw;
        height: 2vw;
        margin-top: -2vw;
    }
    
    .insta_icon img {
        width: 2vw;
        height: 2vw;
        margin-top: 2vw;
        margin-top: -2vw;
    }
    .copyright {
        font-size: 0.8vw;
        margin-left: 75vw;
        margin-top: -0.05vw;
        white-space:nowrap
    }

    .pagetop {
    height: 3vw;
    width: 3vw;
    position: fixed;
    right: 7vw;
    bottom: 7vw;
    border: solid 0.2vw #015AA0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    }

    .pagetop__arrow {
        height: 1vw;
        width: 1vw;
        border-top: 0.2vw solid #015AA0;
        border-right: 0.2vw solid #015AA0;
        transform: translateY(20%) rotate(-45deg);
        }
}






@media screen and (min-width:700px) and ( max-width:900px){

    /*　画面サイズが700pxから900pxまではここを読み込む　*/


/*
    .news ul li {
        list-style: none;
        font-family: Arial, Helvetica, sans-serif;
        color: #015AA0;
        margin-left: 24vw;
        margin-bottom: 1.1vw;
        padding-bottom: 0.5vw;
        border-bottom: 0.19vw solid #D4D5D5;
        width: 44vw;
        text-align: left;
        white-space: nowrap;
    }
    .news_view_more {
        margin-top: -3vw;
        display: flex;
        margin-left: 75vw;
        white-space: nowrap;
    }

    .news p {
        margin-top: 1vw;
        font-size: 0.8vw;
        margin-bottom: -1vw;
        color: #015AA0;
        border-bottom: 1px solid #679133;
        width: 3vw;
        margin-left: 49vw;
        white-space: nowrap;
    }
*/



    .label_item img {
        width: 20vw;
        height: 20vw;
        margin-bottom: -0.5vw;
    }
    .person_2 img {
        width: 10vw;
        height: 10vw;
        position: absolute;
        left: -3vw;
        top: -5.7vw;
    }
    


    .histry_item_text p {
        writing-mode: vertical-rl;
        font-size: 1vw;
        padding-left: 5vw;
        line-height: 2.5vw;
        margin-top: 1vw;
        text-align: left;
        white-space: nowrap;
    }







    .column {
        margin: 0 auto;
        text-align: left;
        margin-left: 5vw;
        margin-top: 3vw;
        font-size: 1vw;
        white-space: nowrap;
    }


    .column_1,.column_2,.column_3,.column_4,.column_5 {
        margin-right: -6vw;
    }

    .news_white {
        background-color: #fff;
        width:90vw;
    /*	margin:0 auto;*/
    /*	padding: 1vw 0 2vw;*/
        position: relative;
    
    }
    
    
    .ul_list_news {
        width: 70vw;
    
        margin: 0 auto;
    }
    
    .news_white ul li {
        width: 70vw;
        margin-left: -1em;
    }	
    
    
    .news_white h2 {
        font-size: 16px;	
    }
        
    .news_white p {
        font-size: 10px;
        margin-bottom: 2vw;
        width: 4em;
    }
    
    .news_view_more a {
        font-size: 12px;
    }

    .title a {
        font-size: 12px;
        text-decoration: none;
        color: #015AA0;
        /* white-space: nowrap; */
    }

    .date,
	.title,
	.category_1,
	.category_2,
	.category_3,
	.category_4,
	.category_5 {
		font-size: 12px;
	}
    dd {
        font-size: 1vw;
        margin-left: 5vw;
    }

    .main_office {
    font-size: 1.8vw;
    margin-left: 5vw;
    }

    .footer_left {
        text-align: left;
        margin-top: -11vw;
        white-space: nowrap;
    }

    .footer_right {
        margin-left: 77vw;
        margin-top: -8vw;
    }
    
    .footer_right tr td {
        padding-left: 1vw;
    }
    
    .youtube_icon img {
        width: 3vw;
        height: 2vw;
        margin-top: -2vw;
    }
    
    .insta_icon img {
        width: 2vw;
        height: 2vw;
        margin-top: 2vw;
        margin-top: -2vw;
    }
    .copyright {
        font-size: 0.8vw;
        margin-left: 75vw;
        margin-top: -0.05vw;
        white-space:nowrap
    }

    .pagetop {
    height: 3vw;
    width: 3vw;
    position: fixed;
    right: 7vw;
    bottom: 7vw;
    border: solid 0.2vw #015AA0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    }

    .pagetop__arrow {
        height: 1vw;
        width: 1vw;
        border-top: 0.2vw solid #015AA0;
        border-right: 0.2vw solid #015AA0;
        transform: translateY(20%) rotate(-45deg);
        }
    }








@media screen and (min-width:600px) and ( max-width:704px){

    /*　画面サイズが768pxから1024pxまではここを読み込む　*/

    .news_white {
        background-color: #fff;
        width:90vw;
    /*	margin:0 auto;*/
    /*	padding: 1vw 0 2vw;*/
        position: relative;
    
    }
    
    
    .ul_list_news {
        width: 80vw;
        
        margin: 0 auto;
    }
    
    .news_white ul li {
        width: 80vw;
        margin-left: -1em;
    }	
        
        
    .news_white h2 {
        font-size: 14px;	
    }
        
    .news_white p {
        font-size: 10px;
        margin-bottom: 2vw;
        width: 4em;
    }
    
    .news_view_more a {
        font-size: 10px;
    }

    .title a {
        text-decoration: none;
        color: #015AA0;
        /* white-space: nowrap; */
    }

    .title a,
	.date,
	.category_1,
	.category_2,
	.category_3,
	.category_4,
	.category_5 {
		font-size: 12px;
	}

    .column {
        margin: 0 auto;
        text-align: left;
        margin-left: 1vw;
        margin-top: 3vw;
        font-size: 0.3vw;
        white-space: nowrap;
    }


.column ul li {
    font-size: 1vw;
    list-style: none;
    padding-right: 3vw;
    white-space:nowrap
}


.column a {
	font-size: 1vw;
    text-decoration: none;
    color: #181311;
    white-space:nowrap
}


    .column_1,.column_2,.column_3,.column_4,.column_5 {
        margin-right: -8vw;

    }



    dd {
        font-size: 1vw;
        margin-left: 5vw;
    }

    .main_office {
    font-size: 1.5vw;
    margin-left: 5vw;
    }

    .footer_left {
        font-size: 1vw;
        text-align: left;
        display: flex;
        margin-top: -11vw;
        white-space: nowrap;
    }
	
	.footer_right {
		margin-left: 77vw;
	}
	

    .copyright {
        font-size: 1vw;
        margin-left: 75vw;
        margin-top: -1.5vw;
        white-space: nowrap;
    }



    .pagetop {
        height: 3vw;
        width: 3vw;
        position: fixed;
        right: 7vw;
        bottom: 7vw;
        border: solid 0.2vw #015AA0;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2;
        }

        .pagetop__arrow {
            height: 1vw;
            width: 1vw;
            border-top: 0.2vw solid #015AA0;
            border-right: 0.2vw solid #015AA0;
            transform: translateY(20%) rotate(-45deg);
            }

}






@media screen and (max-width:599px)  {

    .news_white {
        background-color: #fff;
        width:90vw;
    /*	margin:0 auto;*/
    /*	padding: 1vw 0 2vw;*/
        position: relative;
    
    }
    
    
    .ul_list_news {
        width: 85vw;
        margin: 0 auto;
    }
    
    .news_white ul li {
        width: 80vw;
        margin-left: -0.8em;
    }	
        
    .news_white h2 {
        font-size: 12px;	
    }
        
    .news_white p {
        font-size: 8px;
        margin-bottom: 2vw;
        width: 4em;
    }
    
    .news_view_more a {
        font-size: 8px;
    }

    .title a {
        font-size: 10px;
        text-decoration: none;
        color: #015AA0;
        /* white-space: nowrap; */
    }
    
    .date {
        font-size: 10px;
        margin-right: 2vw;
        margin-bottom: 2vw;
        white-space:nowrap
    }
    .category_1,
	.category_2,
	.category_3,
	.category_4,
	.category_5 {
        font-size: 10px;
	}


    .column {
        margin: 0 auto;
        text-align: left;
        margin-left: 3vw;
        margin-top: 3vw;
        font-size: 0.3vw;
        white-space: nowrap;
    }


    .column_1,.column_2,.column_3,.column_4,.column_5 {
        margin-right: -6vw;

    }





    .main_office {
    font-size: 1.5vw;
    margin-left: 5vw;
    }
    dd {
        font-size: 1vw;
        margin-left: 5vw;
    }

    .footer_left {
        text-align: left;
        display: flex;
        margin-top: -11vw;
        white-space: nowrap;
    }



    .footer_right {
        margin-left: 74vw;
        margin-top: -10vw;
/*	border: solid 1px;*/
    }

    .footer_right tr td {
        padding-left: 1vw;
    }

    .youtube_icon img {
        width: 4vw;
        height: 3vw;
    }

    .insta_icon img {
        width: 3vw;
        height: 3vw;
    }





    .copyright {
        font-size: 1.2vw;
        margin-left: 75vw;
        margin-top: -1.5vw;
        white-space: nowrap;
    }



    .pagetop {
        height: 3vw;
        width: 3vw;
        position: fixed;
        right: 7vw;
        bottom: 7vw;
        border: solid 0.2vw #015AA0;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2;
        }

        .pagetop__arrow {
            height: 1vw;
            width: 1vw;
            border-top: 0.2vw solid #015AA0;
            border-right: 0.2vw solid #015AA0;
            transform: translateY(20%) rotate(-45deg);
            }

}










@media screen and (max-width:450px)  {

    .label_item_p  {
        text-align: center;
        border: 0.1vw solid  #015AA0;
        margin-top: -2.6vw;
        padding-top: 2vw;
        padding-bottom: 1vw;
    }

    .news_white h2 {
        font-size: 12px;	
    }
        
    .news_white p {
        font-size: 8px;
        margin-bottom: 2vw;
        width: 4em;
    }
    
    .news_view_more a {
        font-size: 8px;
    }
    
    
    
        .ul_list_news {
        width: 80vw;
        
        margin: 0 auto;
            
    }
    
    .news_white ul li {
        width: 80vw;
        margin-left: -1em;
        flex-wrap: wrap;
    }	


    .title a {
        font-size: 10px;
        text-decoration: none;
        color: #015AA0;
    }
    
    .date {
        font-size: 10px;
        margin-right: 2vw;
        margin-bottom: 2vw;
        white-space:nowrap
    }
    .category_1,
	.category_2,
	.category_3,
	.category_4,
	.category_5 {
		font-size: 10px;
	}


    .column {
        margin: 0 auto;
        text-align: left;
        margin-left: 3vw;
        margin-top: 3vw;
        font-size: 0.3vw;
        white-space: nowrap;
    }


    .column_1,.column_2,.column_3,.column_4,.column_5 {
        margin-right: -10vw;

    }




    .histry_item_title h1 {
        writing-mode: vertical-rl;
        font-size: 3vw;
        margin-top: 2vw;
/*        margin-left: 25vw;*/
        }





        .main_office {
            font-size: 1.5vw;
            margin-left: 5vw;
            }
            dd {
                font-size: 1vw;
                margin-left: 5vw;
            }

            .footer_left {
                text-align: left;
                display: flex;
                margin-top: -12.5vw;
                white-space: nowrap;
            }



            .footer_right {
                margin-left: 70vw;
                margin-top: -13vw;
/*		border: solid 1px;*/
            }

            .footer_right tr td {
                padding-left: 1vw;
            }

            .youtube_icon img {
                width: 4vw;
                height: 3vw;
            }

            .insta_icon img {
                width: 3vw;
                height: 3vw;
            }


            .copyright {
                font-size: 1.2vw;
                margin-left: 68vw;
                margin-top: -1vw;
                white-space: nowrap;
            }


            .pagetop {
                height: 3vw;
                width: 3vw;
                position: fixed;
                right: 7vw;
                bottom: 7vw;
                border: solid 0.2vw #015AA0;
                border-radius: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
                z-index: 2;
                }

                .pagetop__arrow {
                    height: 1vw;
                    width: 1vw;
                    border-top: 0.2vw solid #015AA0;
                    border-right: 0.2vw solid #015AA0;
                    transform: translateY(20%) rotate(-45deg);
                    }

    }





</pre></body></html>