@charset "Shift_JIS";

/* 要素リセット */
body{
    margin: 0;
    padding: 0;
    font-family: 'メイリオ' ,Meiryo, 'ヒラギノ角ゴ Pro W3' , 'Hiragino Kaku Gothic Pro' , 'ＭＳ Ｐゴシック' , 'Osaka' ,sans-serif;
    background-color: #f8f8f8;
}

*{
    margin: 0;
    padding: 0;
}

/* Safari用ハック 文字サイズ調整 */
/*\*/
html:first-child body{
    font-size: 70%;
}
/* end */

a{
  text-decoration: none;
　color: #232323;
}

ul{
    list-style: none;
}

/* ここからメニュー共通部分 */
.hamburger{
    margin: auto 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: #ffffff;
}

.logo{
    font-size: 40px;
    font-weight: 700;
}

.hamburger .btn-gNav{
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 24px;
    z-index: 12;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}

.hamburger .btn-gNav span{
    position: absolute;
    width: 100%;
    height: 4px;
    background: #232323;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}

.hamburger .btn-gNav span:nth-child(1){
    top: 0;
}

.hamburger .btn-gNav span:nth-child(2){
    top: 10px;
}

.hamburger .btn-gNav span:nth-child(3){
    top: 20px;
}

.hamburger .btn-gNav.open span:nth-child(1){
    background: #ffffff;
    top: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.hamburger .btn-gNav.open span:nth-child(2),
.hamburger .btn-gNav.open span:nth-child(3){
    top: 6px;
    background: #ffffff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}


.btn-gNav{
    display: none;
}

.gNav .gNav-menu{
    display: flex;
    justify-content: space-between;
    gap: 15px;
    font-size: 16px;
    font-weight: bold;
    margin-right:20px;
    margin-top:20px;
}

.gNav .gNav-menu li{
    margin: 0 auto;
    padding: 0 5px;
}

.header01-item a{
    color: #232323;
}

/* ここからパソコン用メニュー */
@media screen and (min-width:600px) {
    /*　画面サイズが768pxから1024pxまではここを読み込む　*/
.header01-item a{
    position: relative;
    transition: 0.3s;
}

.header01-item a:hover{
    color: #232323;
}

.header01-item a::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 3px;
	background: #2589d0;
	transition: 0.3s;
}

.header01-item a:hover::before{
	width: 100%;
}

.header01-item--language{
  background-color: #2589d0;
  padding: 20px;
  border-radius: 6px;
}

.header01-item--language a{
    color: #ffffff;
}
}

/* ここからスマホ用メニュー */
@media screen and (max-width: 600px) {
.hamburger{
    margin: auto 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: #ffffff;
}

    .btn-gNav{
        display: block;
    }

    .gNav{
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background-color:rgba(255,255,255,0.9);
        font-size: 16px;
        box-sizing: border-box;
        z-index: 1;
        padding-top: 50px;
        transition: .3s;
    }

    .gNav.open{
        right: 0;
    }

    .gNav .gNav-menu{
        padding: 0;
        width: 100%;
        height: 100%;
        display: block;
        flex-direction: column;
        text-align: center;
        /*justify-content: center;*/
    }

    .gNav .gNav-menu li{
        width: 86%;
        padding: 15px;
        border-bottom: #525252 1px solid;
    }

.header01-item--language{
  background-color: #2589d0;
}

.header01-item--language a{
    color: #ffffff;
}
}

/* トップに戻る */
html {
    scroll-behavior: smooth;
}
.pagetop{
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 150px;
    background: #19449A;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    opacity: 0.5;
}

.pagetop__arrow{
    height: 10px;
    width: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: translateY(20%) rotate(-45deg);
}

@media screen and (max-width:480px) {
.pagetop{
    right: 10px;
    bottom: 10px;
}
}

/* フッター */

.footer-001 {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 15px 10px 10px;
    background-color: #19449A;
}

.footer-001__list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap:wrap;
    gap: 0 1.5em;
    list-style-type: none;
    margin: 0 0 .5em;
    padding: .5em;
}

.footer-001__link {
    color: #fff;
    font-weight: 200;
    text-decoration: none;
    font-size:16px;
}

.footer-001__list li:not(:last-of-type) .footer-001__link::after {
    margin-left: 1em;
    content: "/";
}

.footer-001__copyright {
    margin: 0;
    margin-bottom:20px;
    color: #ffffffb3;
    font-weight: 200;
    font-size: 14px;
}

/* 各ページ共通 */
.heading09{
    font-size: 26px;
}

.heading09::before{
    content: attr(data-en);
    display: block;
    color: #498ee0;
    font-size: 18px;
}

.heading09::after{
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: #498ee0;
}

@media screen and (max-width:480px) {
.heading09{
    font-size: 22px;
}

.heading09::before{
    font-size: 16px;
}
}

.page-titol{
    color: #498ee0;
    font-size: 24px;
    text-align: center
    font-weight: bold;
}

.contents{
    width: 80%;
    margin:0 auto;
}

p{
    font-size: 14px;
}

@media screen and (max-width:480px) {
.contents{
    width: 90%;
}
}

/* ここからが製品一覧のCSS */

.category-frame{
    width: 30%;
    background-color: #ffffff;
    padding: 5px;
}

.category-name-arrow{
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight:bold
    color: #232323;
}

.category-name-arrow::after{
    content: '';
    width: 8px;
    height: 8px;
    margin-top: -5px;
    border-top: solid 2px #2589d0;   /* 好みで色を変えてください */  
    border-right: solid 2px #2589d0;   /* 好みで色を変えてください */  
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: -20px;
}

.service-inner{
    width: 80%;
    margin: 0 auto;
    padding: 50px 0 50px;
}

.category-line {
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between
}

@media screen and (max-width:480px) {
.category-frame{
    width: 90%;
    margin-bottom:20px;
}
}
