﻿/*----------------------------------------------------------
   
-----------------------------------------------------------*/
@charset "utf-8";

/*----------------------------------------------------------
   共通
-----------------------------------------------------------*/

html { 
} 

*{
  box-sizing: border-box;
}


body { 
    word-break: normal;
    overflow-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #333;
    background: #fafcff;
    line-height: 2.0;
} 

img{
    -webkit-backface-visibility: hidden;
}

input[type="checkbox"], input[type="radio"] {
    margin: 0 3px 0 0;
    position: relative;
    top: 3px;
}

.bold{
font-weight: bold;
}


#wrapper{
	overflow: hidden;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.inner{
	width: 960px;
	margin: 0 auto;
}

.wrap_common1 {
    margin-bottom: 40px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: solid 1px #dddddd;
    border-bottom: solid 1px #dddddd;
    background: white;
    width: 100%;
}

.wrap_common2 {
    margin-bottom: 40px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: solid 1px #999;
    border-bottom: solid 1px #999;
    background: #00075F;
    width: 100%;
    color: white;
}
.wrap_common3 {
    margin-bottom: 40px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
    background: #06DEE9;
    width: 100%;
    color: white;
}


.section_line{
  margin: 20px auto;
  height: 0;
  width: 100%;
  border-top: 1px dotted #dddfff;
}


i, svg{
  margin: 0 2px;
}

.flex{
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}



.flexTop{
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start; /* Safari */
  align-items:         flex-start;
  justify-content: space-between;
}

header{
	position: fixed;
  z-index: 10;
  top: 0;
  width: 100%;
  background-color: rgba(255,255,255,0.8); 
  box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 1px 0px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 1px 0px;
  -moz-box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 1px 0px;
  height: 70px;
  background: white;
  z-index: 100;
}




#gnavi{
    background: #0264AD;
    color: white;
}

main a { 
  outline: none;
/*  display: inline-block; */
  transition: .3s;
}

main a:focus, *:focus { outline:none; }

main a:link {
  color: #00075F;
  text-decoration: underline;
}
main a:visited {
  color: #00075F;
  text-decoration: underline;
}
main a:active {
  text-decoration: underline;
  color: #00075F;
}
main a:hover {
}




footer{
  margin: 0 auto;
  padding: 40px;
  background: #F6F6F0;
}

footer nav{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}
footer nav a{
  margin: 0px 10px;
}
footer nav a:not(.button){
  color: #00075F;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: .3s;
}
footer nav a:not(.button):hover{
  color: #0086E4;
}
footer nav a:not(.button)::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: 1px;
  background-color: #0086E4;
  transition: .3s;
}
footer nav a:not(.button):hover::after {
  width: 100%;
}


footer #logo{
}
footer #copyright{
  margin: 20px auto 0;
  text-align: center;
}

h1{
    font-size: 40px;
    line-height: 48px;
    font-weight: bold;
    color: #0086E4;
    margin-top: 0;
    margin-bottom: 10px;	
}
#pagetitle {
    margin-bottom: 0px;
    padding-top: 40px;
    padding-bottom: 40px;
    border-top: solid 1px #e6dbce;
    border-bottom: solid 1px #e6dbce;
    background: #0264AD;
    width: 100%;
    color: white;
}
#pagetitle h1{
  display: flex;
  margin: 0 auto;
  font-weight: normal;
  color: white;
  align-items: center;
  font-size: 28px;
  font-weight: bold;
}

#pagetitle h1 i,#pagetitle h1 svg {
  color: #0086E4;
  margin-right: 10px;
}

#breadcrumb{
    margin-bottom: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: solid 1px #9ab;
    background: #bcd;
    width: 100%;
    color: white;
}
#breadcrumb ul{
    margin: 0 auto;
    /* display: flex; */
    align-items: center;
    overflow: hidden;
}
#breadcrumb ul li{
  float: left;
  display: flex;
  align-items: center;
}

#breadcrumb li:after{/* >を表示*/
  content: '>';
  padding: 0 4px 0 3px;
  color: #fff;
}

#breadcrumb li:last-child:after{
  content: '';
}

#breadcrumb li a {
    text-decoration: underline;
    color: white;
}

#breadcrumb li a:hover {
    text-decoration: underline;
    color: #0086E4;
}

.notice{
  color: #0264AD;
}

section h2.common{
    margin: 40px auto 15px;
    background: white;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}
h2.common i,h2.common svg {
  color: #AACE37;
  margin-right: 10px;
}
h2.common:before{
    content: '\f4d8';
      font-family: "Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  /*display: inline-block;*/
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  padding-right: 0.2em;
  font-weight: bold;
    color: #0264AD;
}

h2.common span{
    font-size: 12px;
    font-weight: normal;
    line-height: 14px;
}

header .fas, header .far{
  font-size: 22px;
    margin-right: 5px;
    color: #0264AD;
}
h3.common{
    position: relative;
    padding: 6px 15px 6px;
    margin: 50px auto 20px;
    font-size: 18px;
    border-bottom: #eee dotted 1px;
    font-weight: bold;
    color: #001C4E;
    background: white;
}
h3.common:first-child {
    margin-top: 0px;
}

.two_column{
display: -ms-grid;
display: grid;
-ms-grid-columns: 1fr 1fr;
grid-template-columns: 1fr 1fr;
grid-gap: 8px;
}


h4.common {
  position: relative;
  font-size:16px;
  margin-bottom: 5px;
  font-weight: bold;
}


.inline-block{
  display: inline-block;
}
.justify {
  display: flex;
  justify-content: space-between;
}

input[type="text"],input[type="tel"],input[type="email"],input[type="url"],select,textarea{
    padding: 10px 10px;
    border: 1px solid #bbb;
    width: 100%;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}
input[type="text"]:focus,input[type="tel"]:focus,input[type="email"]:focus,input[type="url"]:focus,select:focus,textarea:focus{
    border: 1px solid #0086E4;
}

.button,input[type="button"],input[type="submit"],button.common {
    display: inline-block;
    min-width: 200px;
    padding: 0px 15px;
    text-align: center;
    text-decoration: none;
    outline: none;
    position: relative;
    top: -1px;
    background-color: #0264AD;
    border-radius: 4px;
    color: #fff !important;
    line-height: 52px;
    -webkit-transition: none;
    transition: none;
    box-shadow: 0 7px 0 #024490;
    text-shadow: 1px 1px 1px #024490;
    font-weight: bold;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
    border: none;
    font-size: 15px;
    text-decoration: none !important;
    line-height: 16px;
    font-size: 14px;
    padding: 15px;
}

.button.col1,input[type="button"].col1,input[type="submit"].col1,button.common.col1 {
  background-color: #0264AD;
  box-shadow: 0 7px 0 #024490;
  text-shadow: 1px 1px 1px #024490;  
}


.button::before,.button::after,
input[type="button"]::before,input[type="button"]::after,
input[type="submit"]::before,input[type="submit"]::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}


.button:hover,input[type="button"]:hover,input[type="submit"]:hover{
  top: 1px;
}
.button:active,input[type="button"]:active,input[type="submit"]:active {
  top: 1px;
}

.button i, .button svg,
input[type="button"] i, input[type="button"] svg,
input[type="submit"] i, input[type="submit"] svg{
  color: white;
  margin-right: 10px;
}


/* form */


.contactCommon{
  margin: 120px 0 0;
}
.contactCommon i,.contactCommon svg {
  text-shadow: 1px 1px 1px rgba(0,0,0,0.15);
    margin-right: 5px;
}


img{ border: none; vertical-align: bottom; }

ul{
padding: 0;
font-size: 12px;
}
li{
list-style: none;
}
table, table td, table th{
}


p{
  padding: 0;
  margin: 0;
  font-size: 13px;
  letter-spacing: 1px;
      overflow: hidden;
}

.entry-content p{
  padding: 10px;
}

section p{
  padding: 0 10px;
  font-size: 14px;
}

.pre{
white-space: pre;
}

.block{
display: block;
margin: 0 auto;
}

.ofh{
overflow: hidden;
}

input, textarea{
font-size: 12px;
}

.error{
  color: #ff0005;
}

dl{
}
dt{
}
dd{
margin: 0 0 10px 0;
}

form label{
  cursor: pointer;
}

/* table
-----------------*/
td,th{
}
table.common{
  border-bottom: 1px solid #ddd;
  margin: 20px auto 30px;
  background: white;
  width: 100%;
  font-size: 15px;
  border: 2px solid #ccc;
}
table.common tr{
  border: 1px solid #eee;
}
table.common th, table.common td{
  vertical-align: middle;
  padding: 15px 8px;
  font-size: 12px;
}
table.common th{
  text-align: left;
  font-weight: normal;
  background: #efefef;
  color: #222;
  border: 1px solid #ddd;
}
table.common th:first-letter{
    font-size: 1.2em;
    color: #000;
}
table.common td{
  border: 1px solid #eee;
}

table.common td i{
  color: #06DEE9;
}
table.common td svg path{
  fill: #06DEE9;
}

.toggle_body{
  display: none;
}


/* width
-----------------*/

.w50px{
width: 50px;
}
.w100px{
width: 100px;
}
.w170px{
width: 170px;
}
.w200px{
width: 200px;
}
.w225px{
width: 225px;
}
.w230px{
width: 230px;
}
.w270px{
width: 270px;
}
.w300px{
width: 300px;
}
.w330px{
width: 330px;
}
.w380px{
width: 380px;
}
.w400px{
width: 400px;
}
.w500px{
width: 500px;
}
.w600px{
width: 600px;
}

.w10per{
width: 10%;
}
.w20per{
width: 20%;
}
.w25per{
width: 25%;
}
.w30per{
width: 30%;
}
.w33per{
width: 33%;
}
.w40per{
width: 40%;
}
.w50per{
width: 50%;
}
.w75per{
width: 75%;
}
.w100per{
width: 100%;
}


.center{
text-align: center;
margin: 0 auto;
}


.no_border{
border: 0 white;
}


.textalign_center{
text-align: center;
}
.textalign_right{
text-align: right;
}
.textalign_left{
text-align: left;
}
.ta_c{
text-align: center;
}
.ta_r{
text-align: right;
}
.ta_l{
text-align: left;
}


.clear{
clear: both;
}

strong{
font-weight: normal;
}

.small{
font-size: 10px;
}
.big{
font-size: 14px;
}

.fs_14{
font-size: 14px;
line-height: 18px;
}
.fs_16{
font-size: 16px;
line-height: 22px;
}
.fs_18{
font-size: 18px;
line-height: 24px;
}
.fs_20{
font-size: 20px;
line-height: 28px;
}
.fs_22{
font-size: 22px;
line-height: 32px;
}
.fs_24{
font-size: 24px;
line-height: 36px;
}



.float_left{
float: left;
}
.float_right{
float: right;
}



.mb_5{
margin-bottom: 5px;
}
.mb_10{
margin-bottom: 10px;
}
.mb_20{
margin-bottom: 20px;
}
.mb_30{
margin-bottom: 30px;
}
.mb_50{
margin-bottom: 50px;
}
.ml_5{
margin-left: 5px;
}
.ml_10{
margin-left: 10px;
}
.ml_20{
margin-left: 20px;
}
.ml_30{
margin-left: 30px;
}
.mr_5{
margin-right: 5px;
}
.mr_10{
margin-right: 10px;
}
.mr_20{
margin-right: 20px;
}
.mr_30{
margin-right: 30px;
}
.mb_10{
margin-bottom: 10px;
}
.mt_0{
margin-top: 0px !important;
}
.mt_5{
margin-top: 5px;
}
.mt_10{
margin-top: 10px;
}
.mt_15{
margin-top: 15px;
}
.mt_20{
margin-top: 20px;
}
.mt_30{
margin-top: 30px;
}
.mt_50{
margin-top: 50px;
}

.ps_10{
padding: 0 10px;
}
.ps_15{
padding: 0 15px;
}
.ps_20{
padding: 0 20px;
}
.ps_30{
padding: 0 30px;
}
.pl_10{
padding-left: 10px;
}
.pl_15{
padding-left: 15px;
}
.pl_20{
padding-left: 20px;
}
.pl_30{
padding-left: 30px;
}
.pr_10{
padding-right: 10px;
}
.pr_15{
padding-right: 15px;
}
.pr_20{
padding-right: 20px;
}
.pr_30{
padding-right: 30px;
}
.lh_30{
line-height: 30px;
}

span.line1 {
    background: linear-gradient(transparent 70%, #0264AD 70%);
}
span.line2 {
    background: linear-gradient(transparent 70%, #AACE37 70%);
}
span.line3 {
    background: linear-gradient(transparent 70%, #001C4E 70%);
}



.bnArea a:hover{
  color: #333;
}

.bnArea a div:first-child{
  z-index: 2;
  line-height: 18px;
  text-shadow: -1px -1px 0px #fff, 1px -1px 0px #fff, 1px 1px 0px #fff, -1px 1px 0px #fff;
  display: flex;
  align-items: center;
}
.bnArea a div:last-child{
  z-index: 1;
}
.bnArea a img{
    border: none;
    vertical-align: bottom;
    width: 480px;
    clip-path: circle(160px at top);
    -webkit-clip-path: circle(160px at top);
    position: absolute;
    top: 0px;
    right: -150px;
    height: auto;
    max-width: inherit;
}

.bnArea.col1 a div:first-child span:first-letter{
    font-size: 1.5em;
    color: #001C4E;
}

.bnArea.col2 a div:first-child span:first-letter{
    font-size: 1.5em;
    color: #151648;
}

.bnArea.col3 a div:first-child span:first-letter{
    font-size: 1.5em;
    color: #52931C;
}

.bnArea.col4 a div:first-child span:first-letter{
    font-size: 1.5em;
    color: #9A8A35;
}
.bnArea.col5 a div:first-child span:first-letter{
    font-size: 1.5em;
    color: #007C96;
}
.bnArea.col6 a div:first-child span:first-letter{
    font-size: 1.5em;
    color: #DD3C26;
}
.bnArea.col1 a:hover{
    border: 1px solid #001C4E;
}

.bnArea.col2 a:hover{
    border: 3px solid #151648;
}

.bnArea.col3 a:hover{
    border: 3px solid #52931C;
}

.bnArea.col4 a:hover{
    border: 3px solid #9A8A35;
}
.bnArea.col5 a:hover{
    border: 3px solid #007C96;
}
.bnArea.col6 a:hover{
    border: 3px solid #DD3C26;
}





.cardtype, .sidelong {
    margin-bottom: 1em;
}
.clearfix, .cf, .comment-respond {
    zoom: 1;
}

.cardtype_article:first-child, .cardtype_article:nth-child(2), .sidelong__article:first-child, .sidelong__article:nth-child(2) {
    animation: fadeIn .7s ease 0s 1 normal;
}


.cardtype_article, .sidelong__article {
    animation: fadeIn 1.1s ease 0s 1 normal;
}
.cardtype_article {
    overflow: hidden;
    position: relative;
    margin: 0 0 0px;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 0 2px 0 rgba(0,0,0,.12), 0 1px 2px 0 rgba(0,0,0,.22);
    cursor: pointer;
    transition: .2s ease-in-out;
}


.cardtype time {
    margin: 10px 0px 0px 13px;
    color: #b5b5b5;
    font-size: 13px;
}

.cardtype time:before {
    content: '\f133';
    font-family: FontAwesome;
    padding-right: 4px;
    font-weight: normal;
}
.cardtype time.updated:before {
    content: '\f021';
    font-family: FontAwesome;
    padding-right: 4px;
    font-weight: normal;
}

.accent-bc {
    background-color: #aF2160;
}
.newmark {
    display: inline-block;
    position: absolute;
    top: 13px;
    right: 10px;
    width: 37px;
    height: 37px;
    border-radius: 8px;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    line-height: 37px;
    transform-origin: 50% 50%;
    animation: animScale 3.5s ease-out;
}

#searchsubmit, #toc_container .toc_title:before, .cat-name, .pre_tag>span, .pagination .current, #submit, .withtag_list>span, .main-bc-before li:before {
    background-color: #AACE37;
}

main a.cat-name:visited {
    color: #fff;
}
main a.cat-name:link {
    color: #fff;
}


.commentBox {
    background-color: white;
    background-repeat: no-repeat;
    background-position: left top;
    padding-top: 3rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
    margin-top: 20px;
    margin-right: 0px;
    margin-bottom: 20px;
    border-left-width: 5px;
    border-left-style: solid;
    border-left-color: #0264AD;
    color: #555550;
}
.commentBox:before {
    content: "“";
    display: block;
    font-size: 4rem;
    margin-left: -1rem;
    font-family: serif;
    line-height: 0%;
    color: #0264AD;
}

.pagination {
    clear: both;
    padding: 20px 0;
    position: relative;
    font-size: 14px;
    line-height: 14px;
        text-align: center;
}
.pagination-box {
    display: inline-block;
}
.pagination span, .pagination a {
    display: block;
    float: left;
    margin: 2px 2px 2px 0;
    padding: 10px 15px 10px 15px;
    text-decoration: none;
    width: auto;
    color: #fff !important; /* 文字色 */
    background: #aa9; /* 背景色 */
}
.pagination a:hover{
    color: #fff; /* マウスホバー時の文字色 */
    background: #AACE37; /* マウスホバー時の背景色 */
}
.pagination .current{
    padding: 10px 15px 10px 15px;
    background: #AACE37; /* 現在のページの文字色 */
    color: #fff; /* 現在のページの背景色 */
}

.slick-slide{
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.slick-initialized .slick-slide{
  display: block;
}

.entry-content div{
  overflow: hidden;
}

.require {
    text-align: center;
    width: 40px;
    float: right;
    background: #FF7070;
    font-size: 11px;
    color: white;
    padding: 2px 0;
    position: relative;
    top: 3px;
}

div.products_abstract{
  background: white;
  padding: 20px;
}


ul.common{
  margin: 20px auto;
  padding: 0 10px;
}
ul.common li {
     margin-bottom: 1em;
}
ul.common li:last-child {
     margin-bottom: 0em;
}
ul.common > li {
  font-size: 16px;
padding-left: 20px;
    text-indent: -5px;
}
ul.common li:before {
    content: '\f055';
    font-family: "Font Awesome 5 Free";
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    position: relative;
    left: -8px;
    font-weight: bold;
    color: #001C4E;
    font-size: 10px;
    top: -2px;
}
ul.common li ul {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  margin-left: 20px;
}
ul.common li ul li {
  font-size: 12px;
  margin-left: 20px;
}
ul.common li ul li:before {
    content: '\f0da';
      font-family: "Font Awesome 5 Free";
        font-size: 12px;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
    padding-right: 0.2em;
    margin-left: 0.8em;
    font-weight: bold;
    color: #AAA;
}
ul.common.sitemapUl{
}
ul.common.sitemapUl li ul {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 16px;
  margin-left: 0px;
  overflow: hidden;
}
ul.common.sitemapUl li ul li {
  font-size: 16px;
  margin-bottom: 5px;
}
ul.common.sitemapUl li ul li ul li {
  float: left;
  min-width: 150px;
}



.box_common {
  margin-bottom: 20px !important;
    padding: 25px 15px 25px !important;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background-color: #f3f7ff;
    border: solid 1px #d9d9d9;
    font-size: 14px;
    padding: 20px;
}

.box_common2 {
    padding: 1.5em 1em !important;
    margin: 1em 0 2em  !important;
    background: -webkit-repeating-linear-gradient(-45deg, #f0f8ff, #f0f8ff 3px,#e9f4ff 3px, #e9f4ff 7px);
    background: repeating-linear-gradient(-45deg, #f0f8ff, #f0f8ff 3px,#e9f4ff 3px, #e9f4ff 7px);
    font-size: 14px;
}

.box_common3 {
    position: relative !important;
    margin: 1em 0 2em  !important;
    padding: 1.5em 2em !important;
    top: 0;
    background: #f5f5f7;
    font-size: 14px;
}
.box_common3:before, .box_common3:after{ 
    position: absolute;
    top: 0;
    content:'';
    width: 10px;
    height: 100%;
    display: inline-block;
    box-sizing: border-box;
}
.box_common3:before{
    border-left: dotted 2px #15adc1;
    border-top: dotted 2px #15adc1;
    border-bottom: dotted 2px #15adc1;
    left: 0;
}
.box_common3:after{
    border-top: dotted 2px #15adc1;
    border-right: dotted 2px #15adc1;
    border-bottom: dotted 2px #15adc1;
    right: 0;
}
.box_common4 {
    padding: 1.5em 1em !important;
    margin: 1em 0 2em  !important;
    border: double 5px #001C4E;
    background: #fbfbfa;
    font-size: 14px;
}


/*----------------------------------------------------------
   スマホ用　レスポンシブ指定　ここから
-----------------------------------------------------------*/
@media screen and (max-width:768px) {

  .pc_only{
    display: none;
  }
  
  .sp_only{
    display: block;
  }

  header nav a:first-child{
    background: #06DEE9;
  }
  header nav a:nth-child(2){
    background: #0264AD;
  }
  header nav a:last-child{
    background: #001C4E;
  }


  .inner{
    width: 100%;
    margin: 0 auto;
    padding: 0 2%;
  }

  section,article{
    width: 100%;
    padding: 0 2%;
    margin: 0 auto 60px;
  }
  section.wide,article.wide{
    width: 100%;
    margin: 0 auto;
  }
  section.old,article.old{
    width: 100%;
    padding: 0 2%;
    margin: 0 auto;
  }
  section img{
    max-width: 100%;
  }

  header{
    height: 50px;
  }


  header #logo{
    display: block;
    max-width: 240px;
    max-height: 48px;
    width: 100%;
    margin-left: 8px;
  }
  header .flex{
    height: 100%;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  header .flex .flex_item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: 100%;
  }
  header .flex .flex_item:nth-child(1){
    flex: 3;
    padding-right: 15%;
  }
  header .flex .flex_item:nth-child(2){
    flex: 1;
  }
  header nav{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  header .inner {
    padding: 0 0;
  }
  header nav.sp_only{
    display: flex !important;
  }
  header nav a{
    display: flex;
    flex: 1;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: white;
    font-weight: bold;
    text-align: center;
    height: 100%;
    padding: 0 10px;
    text-decoration: none;
    text-align: center;
    font-size: 11px;
  }
  header nav a .icon_cap{
    display: none;
  }
  header nav a i,header nav a svg{
    font-size: 11px;
  }

  #pagetitle h1{
    width: 100%;
    font-size: 18px;
    line-height: 24px;
    padding: 0 10px;
  }

  #breadcrumb ul{
    width: 100%;
    padding: 0 10px;
  }

  main.contents{
    min-height: 600px;
    padding-top: 50px;
  }

  .wrap_common1,.wrap_common2,.wrap_common3 {
      padding: 0 10px;
  }

  h2.common{
      display: block;
      width: 100%;
      padding: 0 1em;
      text-indent: -35px;
      letter-spacing: 0px;
      font-size: 16px;
      line-height: 22px;
      font-weight: bold;
          color: #001C4E;
  }
  h2.common:before {
      margin-left: 0.8em;
      padding-right: 0.2em;
  }



  .bnArea{
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px; /* 隙間 */
    font-weight: bold;
  }

  .bnArea a{
    padding: 30px 10px;
    border: 1px solid #eee;
    background-color: white;
    display: flex;
    position: relative;
    overflow: hidden;
    height: 150px;
    line-height: 18px;
    text-decoration: none !important;
  }

  .cardtype {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px; /* 隙間 */
  }

  .cardtype_article-info{
    line-height: 18px;
  }
  .cardtype h3{
    margin: 10px 13px 10px;
    font-size: 12px;
  }

  .cardtype_img {
      margin: 0 0 8px;
      overflow: hidden;
      position: relative;
      height: 170px;
      padding: 0;
  }

  .cardtype_img img {
    max-width: 100%;
    width: 100%;
    height: 170px;
    border: 0;
    vertical-align: middle;
    object-fit: cover;
    font-family: 'object-fit: cover;'; /*IE対策*/
  }

  time.updated{
    display: none;
  }

  a.cat-name {
    display: inline-block;
    overflow: hidden;
    position: absolute;
    top: 7px;
    left: 5px;
    text-align: center;
    max-width: 80%;
    margin: 0;
    padding: 5px 8px 3px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: bold;
    vertical-align: middle;
    line-height: 14px;
  }

  .contactCommon .flex{
    flex-flow: column nowrap;
  }

  .contactCommon h3{
    margin: 0;
    font-size: 24px;
  }
  .contactCommon .btnWrap{
    text-align: center;
  }
  .contactCommon .btnWrap .button{
    margin: 5px auto;
  }

  .entry-content{
      background: white;
      padding: 30px 15px 50px;
  }
  footer nav a:not(.button){
    font-size: 12px;
    line-height: 14px;
  }

  table.common{
    width: 100%;
    font-size: 12px;
    margin-bottom: 50px;
    table-layout: fixed;
    word-break: break-all;
    word-wrap: break-all;
  }
  table.common th{
  }
  table.common th,table.common td{
padding: 5px 8px;
    line-height: 15px;
     font-size: 11px;
  }

  footer nav {
    display: inherit !important;
  }
  .contactCommon .button{
    min-width: 150px;
  }
  
  #sub_main_image{
    height: 120px;
  }

  #sub_main_image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  
  .contactCommon{
    padding: 10px 0 15px;
  }

  .pc_two_column{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 8px;
  }

  .pc_two_column > div{
  }
  .pc_two_column > div img{
    width: 100%;
    height: auto;
       -o-object-fit: cover;
       object-fit: cover;
    }


  @media all and (-ms-high-contrast: none) {
    *::-ms-backdrop, .pc_two_column {
      /* IE11 にのみ適用される */
      display:  flex;
      width: 100%;
    }
  }
  _:-ms-lang(x)::-ms-backdrop, .pc_two_column {
    /* IE11 のみ適用される */
      display:  flex;
      width: 100%;
  }
  @media all and (-ms-high-contrast: none) {
    *::-ms-backdrop, .pc_two_column > div {
      /* IE11 にのみ適用される */
      width:  50%;
    }
  }
  _:-ms-lang(x)::-ms-backdrop, .pc_two_column > div {
    /* IE11 のみ適用される */
      width:  50%;
  }

  @media all and (-ms-high-contrast: none) {
    *::-ms-backdrop, .pc_two_column img{
      /* IE11 にのみ適用される */
      height: auto;
      max-width: 500px;
    }
  }
  _:-ms-lang(x)::-ms-backdrop, .pc_two_column img{
    /* IE11 のみ適用される */
      height: auto;
      max-width: 500px;
  }

  .pc_three_column{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 8px;
  }

  .pc_three_column > div{
  }
  .pc_three_column > div img{
    width: 100%;
    height: auto;
       -o-object-fit: cover;
       object-fit: cover;
    }


  @media all and (-ms-high-contrast: none) {
    *::-ms-backdrop, .pc_three_column {
      /* IE11 にのみ適用される */
      display:  flex;
      width: 100%;
    }
  }
  _:-ms-lang(x)::-ms-backdrop, .pc_three_column {
    /* IE11 のみ適用される */
      display:  flex;
      width: 100%;
  }
  @media all and (-ms-high-contrast: none) {
    *::-ms-backdrop, .pc_three_column > div {
      /* IE11 にのみ適用される */
      width:  50%;
    }
  }
  _:-ms-lang(x)::-ms-backdrop, .pc_three_column > div {
    /* IE11 のみ適用される */
      width:  50%;
  }

  @media all and (-ms-high-contrast: none) {
    *::-ms-backdrop, .pc_three_column img{
      /* IE11 にのみ適用される */
      height: auto;
      max-width: 500px;
    }
  }
  _:-ms-lang(x)::-ms-backdrop, .pc_three_column img{
    /* IE11 のみ適用される */
      height: auto;
      max-width: 500px;
  }



}
/*----------------------------------------------------------
   スマホ用　レスポンシブ指定　ここまで
-----------------------------------------------------------*/




/*----------------------------------------------------------
   ＰＣ用　レスポンシブ指定　ここから
-----------------------------------------------------------*/
@media screen and (min-width:769px) {


  a[href^="tel:"] {
      pointer-events: none;
  }

  .pc_only{
    display: block;
  }
  
  .sp_only{
    display: none;
  }

  .inner{
    width: 1060px;
    margin: 0 auto;
  }
  header .inner{
    width: 1120px;
    margin: 0 auto;
  }

  section,article{
    width: 960px;
    margin: 0 auto 60px;
  }
  section.wide,article.wide{
    width: 100%;
    margin: 0 auto;
  }
  section.old,article.old{
    width: 750px;
    margin: 0 auto;
  }

  header{
    height: 100px;
  }

  header #logo{
    position: relative;
    left: 0px;
  }
  header .flex{
    height: 100%;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  header .flex .flex_item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: 100%;
  }
  header .flex .flex_item:nth-child(1){
    width: 180px;
  }
  header .flex .flex_item:nth-child(2){
    flex: 1;
  }
  header nav{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  header nav.pc_only{
    display: flex !important;
  }
  header nav a{
    display: flex;
    align-items: center;
    color: #00075F;
    text-align: left;
    height: 100%;
    font-size: 12px;
    padding: 0 0 0 30px;
    text-decoration: none;
  }
  header nav a svg{
    margin-right: 10px;
  } 
  header nav a svg path{
    fill: #0264AD;
  } 
  header nav a div{
    line-height: 14px;
  } 
  header nav a div span{
    font-size: 11px;
    font-family: 'Lato', 'Noto Sans Japanese', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  } 
   
  header nav a .icon_cap{
    padding-top: 5px;
    font-size: 12px;
  }
  header nav a .icon_cap_sp{
    display: none;
  }
  header nav a i,header nav a svg{
    font-size: 30px;
  }

  #pagetitle h1{
    width: 960px;
  }

  #breadcrumb ul{
    width: 960px;
  }

  main.contents{
    padding-top: 100px;
    min-height: 600px;
  }

  h2.common{
    width: 960px;
    font-weight: bold;
    margin: 0px auto;
    color: #001C4E;
    font-size: 18px;
  }

  .entry-content h2.common{
    display: block;
    width: 100%;
    font-weight: bold;
    margin: 40px auto 10px;
    text-indent: -38px;
  }
  .entry-content h2.common:first-child{
    margin-top: 0;
  }

  .bnArea{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px; /* 隙間 */
    font-weight: bold;
  }

  .bnArea a{
    padding: 30px 10px;
    border: 1px solid #eee;
    background-color: white;
    display: flex;
    position: relative;
    overflow: hidden;
    height: 150px;
    line-height: 18px;
    text-decoration: none !important;
  }

  .cardtype {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px; /* 隙間 */
  }
  .cardtype h3{
      margin: 0px 13px 10px;
      font-size: 16px;
  }

  .cardtype_img {
      margin: 0 0 8px;
      overflow: hidden;
      position: relative;
      height: 170px;
      padding: 0;
  }
  .cardtype_img.goods_img {
      height: 306px;
  }
  .cardtype_img img {
      max-width: 100%;
      height: auto;
      border: 0;
      vertical-align: middle;
  }

  a.cat-name {
      display: inline-block;
      overflow: hidden;
      position: absolute;
      top: 13px;
      left: 13px;
      /* height: 26px; */
      margin: 0;
      padding: 5px 13px 3px;
      border-radius: 14px;
      font-size: 14px;
      font-weight: bold;
      vertical-align: middle;
      line-height: 18px;
  }

  .contactCommon h3{
    margin: 0;
    font-size: 24px;
    line-height: 28px;
  }

  .entry-content{
      background: white;
      padding: 30px 50px;
      width: 100%;
      min-height: 600px;
  }

  table.common th{
    width: 190px;
  }

  #sub_main_image{
    height: 180px;
  }
  #sub_main_image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .pc_notice_button{
    width: 80%;
    max-width: 800px;
  }

  .pc_two_column{
    display: grid;
    grid-template-columns: 1fr 1fr;
     display: -ms-grid;
    -ms-grid-columns: 1fr 1fr;
    grid-gap: 50px;
  }
  .pc_two_column > div{

  }

  .pc_two_column > div:nth-child(1) {
    -ms-grid-column: 1;
  }
  .pc_two_column > div:nth-child(2) {
    -ms-grid-column: 3;
  }


  .pc_two_column > div img{
    max-width: 100%;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }


  @media all and (-ms-high-contrast: none) {
    *::-ms-backdrop, .pc_two_column {
      /* IE11 にのみ適用される */
      display:  flex;
      width: 100%;
    }
  }
  _:-ms-lang(x)::-ms-backdrop, .pc_two_column {
    /* IE11 のみ適用される */
      display:  flex;
      width: 100%;
  }
  @media all and (-ms-high-contrast: none) {
    *::-ms-backdrop, .pc_two_column > div {
      /* IE11 にのみ適用される */
      width:  50%;
    }
  }
  _:-ms-lang(x)::-ms-backdrop, .pc_two_column > div {
    /* IE11 のみ適用される */
      width:  50%;
  }

  @media all and (-ms-high-contrast: none) {
    *::-ms-backdrop, .pc_two_column img{
      /* IE11 にのみ適用される */
      height: auto;
      max-width: 500px;
    }
  }
  _:-ms-lang(x)::-ms-backdrop, .pc_two_column img{
    /* IE11 のみ適用される */
      height: auto;
      max-width: 500px;
  }

  .pc_three_column{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
     display: -ms-grid;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-gap: 45px;
        padding: 0 10px;
  }
  .pc_three_column > div{

  }

  .pc_three_column > div:nth-child(1) {
    -ms-grid-column: 1;
  }
  .pc_three_column > div:nth-child(2) {
    -ms-grid-column: 3;
  }


  .pc_three_column > div img{
    max-width: 100%;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }


  @media all and (-ms-high-contrast: none) {
    *::-ms-backdrop, .pc_three_column {
      /* IE11 にのみ適用される */
      display:  flex;
      width: 100%;
    }
  }
  _:-ms-lang(x)::-ms-backdrop, .pc_three_column {
    /* IE11 のみ適用される */
      display:  flex;
      width: 100%;
  }
  @media all and (-ms-high-contrast: none) {
    *::-ms-backdrop, .pc_three_column > div {
      /* IE11 にのみ適用される */
      width:  50%;
    }
  }
  _:-ms-lang(x)::-ms-backdrop, .pc_three_column > div {
    /* IE11 のみ適用される */
      width:  50%;
  }

  @media all and (-ms-high-contrast: none) {
    *::-ms-backdrop, .pc_three_column img{
      /* IE11 にのみ適用される */
      height: auto;
      max-width: 500px;
    }
  }
  _:-ms-lang(x)::-ms-backdrop, .pc_three_column img{
    /* IE11 のみ適用される */
      height: auto;
      max-width: 500px;
  }


}
/*----------------------------------------------------------
   ＰＣ用　レスポンシブ指定　ここまで
-----------------------------------------------------------*/
