﻿/*----------------------------------------------------------
   
-----------------------------------------------------------*/
@charset "utf-8";

/*----------------------------------------------------------
   共通
-----------------------------------------------------------*/

html { 
} 

*{
  box-sizing: border-box;
}

::-webkit-scrollbar{
  width: 10px;
}
::-webkit-scrollbar-track{
  background: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: inset 0 0 2px #777; 
}
::-webkit-scrollbar-thumb{
  background: #ccc;
  border-radius: 10px;
  box-shadow: none;
}

body {
/*  font-family: "游ゴシック", Yu Gothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; */
    font-family: "Noto Sans", "Noto Sans CJK JP", "Noto Sans CJK JP Subset", "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo";

    word-break: normal;
    overflow-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #333;
    background: #fafcff;
} 

img{
    -webkit-backface-visibility: hidden;
}

nav{
    display: flex;
    background: linear-gradient(70deg, #0992D2, #15356C);
    justify-content: center;
    align-items: center;
}
nav a{
  color: white !important;
  text-decoration: none !important;
  font-weight: bold;
  margin: 5px 20px;
}
nav a:before {
    content: '\f0da';
    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;
    padding-right: 0.2em;
    font-weight: bold;
    color: #fff;
}

.box_common {
    padding: 15px 15px 15px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background-color: #f2fffB;
    border: solid 1px #ddd;
}

.box_common2 {
    padding: 1.5em 2em;
    background: -webkit-repeating-linear-gradient(-45deg, #F8FFFA, #F8FFFA 3px,#e4faf0 3px, #e4faf0 7px);
    background: repeating-linear-gradient(-45deg, #F8FFFA, #F8FFFA 3px,#e4faf0 3px, #e4faf0 7px);
}

.box_common3 {
    position: relative;
    padding: 1.5em 2em;
    top: 0;
    background: #fff;
}
.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 #0992D2;
    border-top: dotted 2px #0992D2;
    border-bottom: dotted 2px #0992D2;
    left: 0;
}
.box_common3:after{
    border-top: dotted 2px #0992D2;
    border-right: dotted 2px #0992D2;
    border-bottom: dotted 2px #0992D2;
    right: 0;
}
.box_common4 {
    padding: 1.5em 2em;
    border: double 5px #0992D2;
    background: #f2fffB;
}
span.update{
  font-size: 12px;
  color: #999;
  padding-left: 10px;
}

.bold{
font-weight: bold;
}

a{
    outline: none;
}

.mm-panel{
  background: #070707 !important;
}
.mm-title{
  color: #ccc !important;
  font-weight: bold !important;
}


#wrapper{
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.inner{
    width: 100%;
    max-width: 1000px;
  margin: 0 auto;
}

.wrap_common1 {
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
}

.wrap_common2 {
    margin-bottom: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
    background: #333;
    width: 100%;
    color: white;
}
.wrap_common3 {
    margin-bottom: 40px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: solid 1px #1a1a1a;
    border-bottom: solid 1px #1a1a1a;
    background: #1a1a1a;
    width: 100%;
    color: white;
}

.bg_header_grd{
    width: 100%;
    height: 100px;
    background: url(/img/common/bg_header.jpg) center top no-repeat;
    background-size: cover;
}


.section_line{
  margin: 20px auto;
  height: 0;
  width: 100%;
  border-top: 1px dotted #dddfff;
}

#btn_menu{
  background: linear-gradient(70deg, #0992D2, #15356C);
    color: white;
    width: 150px;
    text-align: center;
    padding: 10px;
    border-radius: 10px 10px 10px 10px;
}
#btn_menu i{
  margin-right:  5px;
}

.button{
  background: linear-gradient(70deg, #0992D2, #15356C);
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 10px 10px 10px 10px;
}


i, svg{
}

.flex{
  display: flex;
  align-items: center;
  justify-content: space-between;
}



.flexTop{
  display: flex; /* Safari */
  align-items:         flex-start;
  justify-content: space-between;
}

header{
  position: fixed;
  z-index: 105;
  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;
}

#header_logo{
    display: flex;
    align-items: center;
}


#gnavi{
    background: #3a3a3a;
    color: white;
}

main a { 
  outline: none;
/*  display: inline-block; */
  transition: .3s;
}


a:link {
  color: #1a1a1a;
  text-decoration: none;
}
a:visited {
  color: #1a1a1a;
  text-decoration: none;
}
a:active {
  text-decoration: none;
  color: #1a1a1a;
}
a:hover {
  color: #1a1a1a;
  text-decoration: none;
  text-decoration: transparent;
}

a{
  transition: 0.5s ease-in-out;
}
a:hover{
  opacity: 0.8;
}

.mm-panel{
      background: linear-gradient( 70deg , #0992D2, #15356C) !important;
}
main a:focus, *:focus { outline:none; }

main a:link {
  color: #15356C;
  text-decoration: underline;
}
main a:visited {
  color: #15356C;
  text-decoration: underline;
}
main a:active {
  text-decoration: underline;
  color: #15356C;
}
main a:hover {
  color: #0992D2;
  text-decoration: underline;
}

.underline {
    background: linear-gradient(transparent 70%, #c0efff 20%);
}

footer{
  margin: 0 auto;
  padding: 40px;
  background: linear-gradient(70deg, #0992D2, #15356C);
  font-size: 12px;
  text-align: center;
}

#svg_logomark_footer{height: 24px;}

.svg_logomark_footer{fill:#1a1a1a;}



footer nav a{
  margin: 0px 10px;
}
footer nav a:not(.button){
  color: #222220;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: .3s;
}
footer nav a:not(.button):hover{
  color: #9a9a9a;
}
footer nav a:not(.button)::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: 1px;
  background-color: #9a9a9a;
  transition: .3s;
}
footer nav a:not(.button):hover::after {
  width: 100%;
}


#footer_logo{
    display: flex;
    align-items: center;
    width: 300px;
    margin: 0 auto;
}
#footer_logo img{
  width: 100%;
}

footer #copyright{
  margin: 20px auto 0;
  text-align: center;
  color: white;
}

h1{
    font-size: 40px;
    line-height: 48px;
    font-weight: bold;
    color: #1a1a1a;
    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: #3a3a3a;
    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: #9a9a9a;
  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: #9a9a9a;
}

  ul{
  margin: 0;
}
ul.common > li {
  margin-bottom: 8px;
    margin-bottom: 8px;
    padding-left: 2em;
    text-indent: -10px;
}
ul.common li:before {
    content: '\f0da';
      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;
    padding-right: 0.2em;
    font-weight: bold;
    color: #0992D2;
}
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: #0992D2;
}



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;
    text-align: center;
    color: #1a1a1a;
}

.notice{
  font-weight: bold;
  color:  #cc0022;
  text-emphasis: underline;
}

h3.common{
    position: relative;
    padding: 5px 0 5px 10px;
    margin: 50px auto 20px;
    font-size: 24px;
    border-bottom: #eee dotted 1px;
    font-weight: bold;
    background: white;
    text-align: center;
    color: #0F619D;
    background: -webkit-linear-gradient(0deg, #0992D2, #15356C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
h3.common:first-letter{
}
section h3.common:first-child{
    margin: 0px auto 20px;
}

h4.common {
  position: relative;
  padding-left: 0px;
  font-size:20px;
  color: #001C4E;
  font-weight: bold;
}
h4.common:before {
    content: '\f35a';
      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;
  padding-right: 0.2em;
  font-weight: bold;
    padding-right: 4px;
    font-weight: normal;
}


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 #1a1a1a;
}

.button,input[type="button"],input[type="submit"],button.common {
    display: inline-block;
    max-width: 300px;
    width: 100%;
    padding: 15px 15px;
    text-align: center;
    text-decoration: none;
    outline: none;
    position: relative;
    top: -1px;
    background-color: #1a1a1a;
    border-radius: 4px;
    color: #fff !important;
    transition: none;
    text-shadow: 1px 1px 1px #3a3a3a;
    font-weight: bold;
    box-sizing: border-box;
    transition: all .3s;
    border: none;
    font-size: 14px;
}

.button.col1,input[type="button"].col1,input[type="submit"].col1,button.common.col1 {
  background-color: #1a1a1a;
  box-shadow: 0 3px 0 #3a3a3a;
  text-shadow: 1px 1px 1px #3a3a3a;  
}


.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: '';
  box-sizing: border-box;
  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: 14px;
}
li{
list-style: none;
}
table, table td, table th{
border: 0;
}


p{
  padding: 0;
  margin: 0;
  font-size: 13px;
  line-height: 26px;
      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;
}



dl{
}
dt{
}
dd{
margin: 0 0 10px 0;
}


/* table
-----------------*/
td,th{
border: 0 white;
}
table.common{
  border-bottom: 1px solid #ddd;
  margin: 0px auto 0px;
  background: white;
  width: 100%;
  font-size: 14px;
  border-collapse: separate;
  border-spacing: 0px 0px;
}
table.common tr{
}
table.common th, table.common td{
  vertical-align: middle;
  padding: 8px 10px;
  border: 0.5px solid #eee;
}
table.common th{
  font-weight: normal;
  background: #efefef;
  font-weight: bold;
  border: 0.5px solid #ddd;
}
table.common td{
}

table.common td i{
  color: #9a9a9a;
}
table.common td svg path{
  fill: #9a9a9a;
}


table.common thead tr{
      background: -webkit-linear-gradient(0deg, #0992D2, #15356C);
}
table.common thead tr th{
  background: initial;
  color: white;
}

/* 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 !important;
}
.ta_r{
text-align: right !important;
}
.ta_l{
text-align: left !important;
}


.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_0{
margin-bottom: 0px !important;
}
.mb_5{
margin-bottom: 5px !important;
}
.mb_10{
margin-bottom: 10px !important;
}
.mb_20{
margin-bottom: 20px !important;
}
.mb_30{
margin-bottom: 30px !important;
}
.mb_50{
margin-bottom: 50px !important;
}
.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 !important;
}
.mt_10{
margin-top: 10px !important;
}
.mt_15{
margin-top: 15px !important;
}
.mt_20{
margin-top: 20px !important;
}
.mt_30{
margin-top: 30px !important;
}
.mt_50{
margin-top: 50px !important;
}

.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%, #3a3a3a 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: 300px;
    clip-path: circle(150px at top);
    -webkit-clip-path: circle(150px at top);
    position: absolute;
    top: -35px;
    right: -100px;
}

.bnArea.col1 a div:first-child span:first-letter{
    font-size: 1.5em;
    color: #9a9a9a;
}

.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 #9a9a9a;
}

.bnArea.col2 a:hover{
    border: 1px solid #151648;
}

.bnArea.col3 a:hover{
    border: 1px solid #52931C;
}

.bnArea.col4 a:hover{
    border: 1px solid #9A8A35;
}
.bnArea.col5 a:hover{
    border: 1px solid #007C96;
}
.bnArea.col6 a:hover{
    border: 1px 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) {
    -webkit-animation: fadeIn .7s ease 0s 1 normal;
            animation: fadeIn .7s ease 0s 1 normal;
}


.cardtype_article, .sidelong__article {
    -webkit-animation: fadeIn 1.1s ease 0s 1 normal;
            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: "Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  padding-right: 0.2em;
  font-weight: bold;
    padding-right: 4px;
    font-weight: normal;
}
.cardtype time.updated:before {
    content: '\f021';
      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;
  padding-left: 0.2em;
  font-weight: bold;
    padding-right: 4px;
    font-weight: normal;
}
.maplink{
  font-size: 0.8em;
  padding-left: 0.2em;
}
.maplink:after{
  content: '\f35d';
  font-family: "Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: bold;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  padding-left: 0.2em;
  font-weight: bold;
    padding-right: 0.2em;
    font-weight: bold;
}

.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;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-animation: animScale 3.5s ease-out;
            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: #3a3a3a;
    color: #555550;
}
.commentBox:before {
    content: "“";
    display: block;
    font-size: 4rem;
    margin-left: -1rem;
    font-family: serif;
    line-height: 0%;
    color: #3a3a3a;
}

.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;
}

.two_column{
  display: flex;
  margin: 30px auto;
}
.two_column > div:first-child{
  width: 25%;
  margin-right: 1%;
}
.two_column > div:last-child{
  width: 74%;
}

.two_column > div img{
  width: 100%;
  height: 250px;
  min-height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}

.mm-listview>li>a, .mm-listview>li>span {
    display: flex !important;
    align-items: center;
    font-weight: bold;
}
.mm-listview>li>a i{
  margin-right: 10px;
}
.mm-listview>li>a span{
  font-size: 11px;
  line-height: 14px;
      color: rgba(0,0,0,.5);
}
.mm-listview>li.mm-vertical>.mm-next, .mm-vertical .mm-listview>li>.mm-next {
    height: 60px !important;
}

.card_wrap{
      overflow: hidden;
    margin-top: 50px;
        max-width: 960px;
    margin: 30px auto 20px;
}
.cardtype,.sidelong {
 margin-bottom: 1em;
}
p.cardtype__img{
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cardtype__article {
 position: relative;
 width: 100%;
 margin: 0 0 25px;
 border-radius: 2px;
 background: #fff;
 box-shadow: 0 0 3px 0 rgba(0,0,0,.12), 0 2px 3px 0 rgba(0,0,0,.22);
 cursor: pointer;
 transition: .2s ease-in-out;
}
.cardtype__article:hover {
 box-shadow: 0 15px 30px -5px rgba(0,0,0,.15),0 0 5px rgba(0,0,0,.1);
 transform: translateY(-4px);
}
.cardtype__link {
 display: block;
 color: #555;
 text-decoration: none;
 cursor: pointer;
}
.cardtype__link:hover {
 color: #555;
 text-decoration: none;
}
.cardtype__img {
 margin: 0;
 overflow: hidden;
 position: relative;
 height: 0;
 padding-bottom: 57.7%;
}
.cardtype__img img {
  border-radius: 2px 2px 0 0;
    object-fit: cover;
    max-width: 100%;
    height: auto;
    border: 0;
    vertical-align: middle;
}
.cardtype__link {
 padding-bottom: 25px;
}
.cardtype__article-info h4 {
 margin: 8px 13px 0;
 padding: 0 10px;
 font-size: 17px;
}

.cardtype__article, .sidelong__article {
   animation: fadeIn 1.1s ease 0s 1 normal;
}
.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;
}

/* フロー */
.flow {
    margin: 0 auto 50px;
}

.flow .box {
    margin: 0 auto 33px;
    width: 80%;
    padding: 10px;
    border: 3px solid #326E93;
    background: #326E93;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    position: relative;
    font-size: 1.6em; /* テキストの指定 */
    font-weight: bold; /* テキストの指定 */
    line-height: 1.4; /* テキストの指定 */
}

.flow .box:after {
    border-top: 25px solid #9a9a9a;
    border-left: 70px solid transparent;
    border-right: 70px solid transparent;
    content: "";
    position: absolute;
    bottom: -28px; /* 三角形の高さ＋ボックスのボーダーをマイナスに */
    left: 50%;/* 中央寄せに使用 */
    margin-left: -70px; /* 中央寄せに使用 */
}

.flow .box:last-child:after {
    border: none; /* 最後のボックスだけ三角形を表示しない */
}
.flow dl {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    color: white;
}
.flow dl dt{
  margin-right: 20px;
  color: #9a9a9a;
}

.flow dl dd{
  margin: 0;
}

@media only screen and (min-width: 481px) {

  .cardtype {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -moz-box;
    display:  flex;
    flex-direction: row;
    -webkit-flex-direction: row;
    -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
  }
  .cardtype__article {
    float: left;
    width: 23%;
    margin: 0 1.0% 25px;
  }
  .three_card .cardtype__article {
    float: left;
    width: 31.3%;
    margin: 0 1.0% 25px;
  }
  .two_card .cardtype__article {
    float: left;
    width: 48%;
    margin: 0 1.0% 25px;
  }

  .cardtype__link {
    padding-bottom: 15px;
  }
  .cardtype__article h2 {
    margin: 8px 13px 0;
  }

  .cardtype__article time {
    margin: 13px 13px 8px;
  }
}

.su-posts{
  padding: 0 2%;
}


h2.common {
    font-family: "Oswald", sans-serif;
}


/*----------------------------------------------------------
   スマホ用　レスポンシブ指定　ここから
-----------------------------------------------------------*/
@media screen and (max-width:768px) {

  .pc_only{
    display: none;
  }
  
  .sp_only{
    display: block;
  }

  ul.common li{
      font-size: 10px;
  }
  #btn_menu {
    width: 30%;
    text-align: center;
    padding: 5px;
    border-radius: 5px 5px 5px 5px;
    font-size: 12px;
  }

  section p {
    font-size: 12px;
  }
  .inner{
    width: 94%;
    margin: 0 auto;
    padding: 0 1%;
  }

  section,article{
    width: 96%;
    padding: 0px 0% 10px;
    margin: 0 auto 40px;
  }
  section.wide,article.wide{
    width: 100%;
    margin: 0 auto;
  }
  section.old,article.old{
    width: 100%;
    padding: 15px 0%;
    margin: 0 auto;
  }
  section img{
    max-width: 100%;
  }

  header{
    height: 50px;
  }

  .wrap_common1 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  header #logo{
    display: block;
    width: auto;
    max-width: 160px;
    height: 30px;
  }
  header .flex{
    height: 100%;
  }
  header .flex .flex_item{
    display: flex;
    align-items: center;
    height: 100%;
  }
  header .flex .flex_item:nth-child(1){
    flex: 10;
  }
  header .flex .flex_item:nth-child(2){
    flex: 2;
  }
  header nav{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  header nav.sp_only{
    display: flex !important;
    width: 50px;
    margin: 0 0 0 auto;
    padding: 0;
  }
  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;
  }

  #header_logo {
      width: 60%;
  }
  #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;
  }

  footer {
    padding: 40px 10px;
  }
  footer #copyright {
    font-size: 9px;
  }

  .box_common {
  }
  .box_common2 {
  }
  .box_common3 {
  }

  .box_common4 {
      padding: 0.5em 0.5em !important;
  }

  .contactCommon {
    margin: 50px 0 0;
  }

  .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;
  }

  .catch{
    text-align: center;
  }
  .catch_up{
    text-align: center;
    display: inline-block;
      font-size: 20px;
      padding: 15px 15px 0;
      font-weight: bold;
  }
  .catch_bottom{
    text-align: center;
    color: #1a1a1a;
  }

  .bnArea{
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-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: 100px;
    line-height: 18px;
  }
.bnArea a:nth-child(1) {
  -ms-grid-column: 1;
}
.bnArea a:nth-child(2n) {
  -ms-grid-column: 3;
}

  .cardtype {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-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;
  }

  h2.common{
          display: block;
      width: 100%;
      max-width: 1450px;
      font-weight: bold;
      margin: 0px auto;
      text-align: center;
      color: #1a1a1a;
    text-align: center;
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
      display: inline;
      background: -webkit-linear-gradient(0deg, #0992D2, #15356C);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

  .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;
  }

  .catch{
    text-align: center;
  }
  .catch_up{
      padding: 0px 1em 0;
      letter-spacing: 0px;
      font-size: 10px;
      line-height: 24px;
      display: block;
      width: 100%;
      max-width: 1450px;
      font-weight: bold;
      margin: 0px auto;
      text-align: center;
  }
  .catch_bottom{
    text-align: center;
    color: #1a1a1a;
      font-size: 12px;
  }



  .contactCommon h3{
    margin: 0;
        font-size: 16px;
    line-height: 32px;
  }
  .contactCommon a.button{
  }



  table.common th{
  }

  .contactCommon .inner{
    max-width: 1050px;
  }
  .contactCommon .flex{
    display: block;
        text-align: center;
  }
  .contactCommon .btnWrap{
    margin-top: 10px;
  }

  .pc_two_column{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 10px;
  }

  .pc_two_column > div{
  }
  .pc_two_column > div img{
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    }

  .two_column > div:first-child{
    width: 40%;
    margin-right: 1%;
  }
  .two_column > div:last-child{
    width: 59%;
  }

  .pc_three_column{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }

  .pc_three_column > div{
  }
  .pc_three_column > div img{
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }




  #footer_logo {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      text-align: center;
      margin: 0 auto;
  }

  footer nav{
      width: 100%;
      margin-bottom: 20px;
  }

  footer nav a{
      margin: 0 5px 0 0;
  }

  #footer_logo img {
      width: 50%;
      max-width: 150px;
  }
  #header_logo img{
    width: 100%;
  }

  h3.common {
      font-size: 14px;  
  }
  table.common th, table.common td {
    padding: 3px 1px;
    font-size:  10px;
    word-break: break-all;
    letter-spacing: 0px;
    min-width:  30px;
    text-align: center;
  }
  .box_common3{
    padding: 1.0em 10px;
  }

  nav{
    font-size: 12px;
  }
  nav a {
    margin: 5px 10px;
  }
  #download_wrap{
    margin-top: 15px;
  }

}
/*----------------------------------------------------------
   スマホ用　レスポンシブ指定　ここまで
-----------------------------------------------------------*/




/*----------------------------------------------------------
   ＰＣ用　レスポンシブ指定　ここから
-----------------------------------------------------------*/
@media screen and (min-width:769px) {


  #header_logo img{
    width: 300px;
  }

  #header a{
    font-weight: bold;
    outline: none;
  }


  .pc_only{
    display: block;
  }
  
  .sp_only{
    display: none;
  }

  .inner{
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  }

  section,article{
    width: 100%;
    max-width: 1000px;
    margin: 50px auto 100px;
  }
  section.wide,article.wide{
    width: 100%;
    margin: 0 auto;
  }
  section.old,article.old{
  }

  header{
    height: 80px;
  }

  header #logo{
  }
  header .flex{
    height: 100%;
    flex-wrap: wrap;
  }
  header .flex .flex_item{
    display: flex;
    align-items: center;
    height: 100%;
  }
  header .flex .flex_item:nth-child(1){
  }
  header .flex .flex_item:nth-child(2){
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 2px;
  }
  header .pc_nav{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  header .pc_nav.pc_only{
    display: flex !important;
  }

  header .pc_nav li{
    position: relative;
    height: 100%;
  }

  header .pc_nav a{
    display: flex;
    align-items: center;
    text-align: left;
    height: 100%;
    font-size: 12px;
    padding: 0 20px;
    text-decoration: none;
  }

  header .up_menu .pc_nav a:hover{
    color: #9a9a9a !important;
    text-decoration: underline;
  }

  header .bottom_menu .pc_nav a:hover{
    background: #9a9a9a;
    color: white !important;
  }

  header .pc_nav a i{
    margin-right: 10px;
  } 
  header .pc_nav a div{
    line-height: 14px;
    font-weight: bold;
  } 
  header .pc_nav a div span{
        color: #d5d5b5;
        font-weight: normal;
    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 .pc_nav a .icon_cap{
    padding-top: 5px;
    font-size: 12px;
  }
  header .pc_nav a .icon_cap_sp{
    display: none;
  }
  header .pc_nav a i,header .pc_nav a svg{
  }


  .pc_nav li ul{
    opacity: 0;
    display: none;
    position: absolute;
    top: 98px;
    left: 0;
    background-color: #1a1a1a;
    padding: 0;
    width: 180px;
    transition: .3s ease-in-out;
  }
  .pc_nav li ul li{
    display: block;
    margin: 0px auto;
    border-bottom: 1px solid white;
  }
  .pc_nav li ul li:last-child{
    border-bottom: 0;
  }
  .pc_nav li ul li a{
    color: white;
    padding: 10px 10px;
    font-size: 14px;
    transition: .3s ease-in-out;
  }

  .pc_nav li:hover ul{
    display: block;
      opacity: 1;
      animation-duration: 0.5s;
      animation-name: fade-in;
      -moz-animation-duration: 0.5s;
      -moz-animation-name: fade-in;
      -webkit-animation-duration: 0.5s;
      -webkit-animation-name: fade-in;
  }

  .up_menu, .bottom_menu{
    margin-left: auto;
  }

  .up_menu{
    padding-top: 0px;
  }
  .up_menu a{
    text-decoration: underline !important;
  }

  .bottom_menu .pc_nav a{
    padding-top: 15px;
    padding-bottom: 15px;
  }

  @keyframes fade-in {
      0% {
        display: none;
        opacity: 0;
      }

      1% {
        display: block;
        opacity: 0;
      }

      100% {
        display: block;
        opacity: 1;
      }
    }

    @-webkit-keyframes fade-in {
      0% {
        display: none;
        opacity: 0;
      }

      1% {
        display: block;
        opacity: 0;
      }

      100% {
        display: block;
        opacity: 1;
      }
    }

  #pagetitle h1{
    width: 100%;
    max-width: 1450px;
  }

  #breadcrumb ul{
    width: 100%;
    max-width: 1450px;
  }

  main.contents{
    min-height: 600px;
    padding-top: 80px;
  }

  h2.common{
      color: #0992D2;
    text-align: center;
    display: inline-block;
    font-size: 50px;
    border-bottom: 1px solid #cccccc;
    font-weight: bold;
    margin: 0 auto 10px;
      background: -webkit-linear-gradient(0deg, #0992D2, #15356C);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }


  .catch{
    text-align: center;
  }
  .catch_up{
      display: block;
      width: 100%;
      max-width: 1450px;
      font-weight: bold;
      margin: 0px auto;
      text-align: center;
      color: #1a1a1a;
  }
  .catch_bottom{
    text-align: center;
    padding-top: 5px;
  }

  .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;
    overflow:   hidden;
  }

  .bnArea a{
    padding: 30px 10px;
    border: 1px solid #eee;
    background-color: white;
    display: flex;
    position: relative;
    overflow: hidden;
    height: 100px;
    line-height: 18px;
    margin-bottom: 10px;
  }
@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .bnArea a {
    /* IE11 にのみ適用される */
    display:  block;
    float:  left;
    width:  300px;
  }
}
_:-ms-lang(x)::-ms-backdrop, .bnArea a {
  /* IE11 のみ適用される */
    display:  block;
    float:  left;
    width:  450px;
    margin: 10px 10px;
}


  .cardtype {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-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: 22px;
    line-height: 24px;
  }

  .entry-content{
      background: white;
      padding: 30px 50px;
      width: 100%;
      min-height: 600px;
  }

  table.common th{
  }

  .contactCommon .inner{
    max-width: 1050px;
  }

  .pc_two_column{
    display: grid;
    grid-template-columns: 1fr 1fr;
     display: -ms-grid;
    -ms-grid-columns: 1fr 1fr;
    grid-gap: 30px;
  }
  _:-ms-lang(x)::-ms-backdrop, .pc_two_column {
      /* IE11 にのみ適用される */
      display: flex;
  }

  _:-ms-lang(x)::-ms-backdrop, .pc_two_column table {
      /* IE11 にのみ適用される */
      width: 480px;
      margin: 0 10px;
  }

  .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{
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    }

  .pc_three_column{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
     display: -ms-grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
  }
  _:-ms-lang(x)::-ms-backdrop, .pc_three_column {
      /* IE11 にのみ適用される */
      display: flex;
  }

  _:-ms-lang(x)::-ms-backdrop, .pc_three_column table {
      /* IE11 にのみ適用される */
      width: 480px;
      margin: 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 img{
width: auto;
    height: 100%;
    max-width: 260px;
    /* height: auto; */
    -o-object-fit: contain;
    object-fit: contain;
  }


  .pc_three_column > div img{
width: auto;
    height: 100%;
    max-width: 260px;
    /* height: auto; */
    -o-object-fit: contain;
    object-fit: contain;
    }

  footer nav{
      width: 100%;
      margin-bottom: 20px;
      text-align: center;
  }



}
/*----------------------------------------------------------
   ＰＣ用　レスポンシブ指定　ここまで
-----------------------------------------------------------*/
