@charset "utf-8";
/* CSS Document */

html {
    overflow-y: scroll;
    background: #fff;
}
body {
    color: #4a4a4a;
    font-size: 14px;
    font-family: "Noto Sans Japanese",san-serif;
    background: #fff;
    overflow-x: hidden;
}
.inner {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
}
@media screen and (max-width:1280px){
    .inner {
	padding-left: 40px;
	padding-right: 40px;
    }
}
input[type="submit"]{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
a {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: all ease .3s;
}
a[href^="tel:"] {
    color: inherit;
}
a:hover {
    opacity: 0.5;
}
.pcNone{
    display: none;
}

/* ----- commons ----- */

.btns{
    display: flex;
    gap: 1em;
}
.btns a{
    min-width: 160px;
    color: #6DA3E3;
    font-size: 108%;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 1.25em 1.75em;
    background: transparent;
    border: solid 1px #6DA3E3;
    border-radius: 1px;
    position: relative;
}
.btns a:after{
    content: "\f054";
    color: currentColor;
    font-size: 80%;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    line-height: 1;
    vertical-align: middle;
    margin-left: 1em;
}

/* ----- header ----- */

#header{
    color: #ffffff;
    padding: 1em 0;
    background: #6DA3E3;
}
#header .inner{
    position: relative;
}
#header h1{
    width: calc(100% - 240px);
    max-width: 320px;
}
#header .contact{
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translate(0, -50%);
}
#header .contact a{
    color: #dee1e5;
    font-weight: 400;
    background: #003366;
    border: 1px solid #fff;
}


/* ----- main navi ----- */

#globalnav{
    padding-top: .25em;
    padding-bottom: .4em;
    background: #2c2c2c;
}
#globalnav div>ul{
    display: flex;
    width: 100%;
    justify-content: left;
    gap: 0.3em 2em;
}
#globalnav div>ul>li{
    position: relative;
}
#globalnav div>ul>li>a{
    display: block;
    color: #dee1e5;
    font-size: 100%;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.075em;
    text-align: center;
    text-decoration: none;
    padding: 0.5em 0;
}
#globalnav ul.sub-menu {
    display: none;
    width: 220px;
    position: absolute;
    top: 100%;
    left: -1px;
    z-index: 500;
}
#globalnav div>ul li:hover ul.sub-menu{
    display: block;
}
#globalnav .sub-menu li{
    padding-top: 2px;
}
#globalnav .sub-menu li a{
    display: block;
    color: #ffffff;
    font-size: 14px;
    text-align: left;
    padding: 1em 1.5em;
    background: rgba(0,0,0,0.5);
}
#globalnav .sub-menu li a:hover{
    background: rgba(0,0,0,0.7);
}

/* ----- footer ----- */

#footer{
    margin-top: 64px;
    padding-bottom: 80px;
}
#copyright{
    color: #6d7482;
    font-size: 85%;
    font-weight: 400;
    text-align: center;
}
#copyright .inner{
    padding-top: 48px;
    border-top: 1px dotted #9c9c9c;
}


/* ----- pagetop ----- */

#pagetop{
    position: fixed;
    right: 12px;
    bottom: 10vh;
}
#pagetop a{
    display: block;
    width: 40px;
    height: 40px;
    text-indent: -9999px;
    text-align: center;
    background: #003366 url(../images/common/pagetop.png) no-repeat center center;
    background-size: 20px auto;
    position: relative;
    border-radius: 10px;
}
#pagetop a:hover{
    background: #ababab url(../images/common/pagetop.png) no-repeat center center;
    background-size: 20px auto;
}

/* ----- commons ----- */

#page-header{
    width: 100%;
/*    width: calc(100% - 40px);*/
    padding: 64px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}
#page-header .filter{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, .5);
}
#page-header .filter .inner{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
#page-header:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.75;
    background: url(../images/home/mainimg_bg.jpg) no-repeat center center;
    background-size: cover;
}
#page-header h2{
    color: #ffffff;
    font-size: 200%;
    font-family: 'Noto Serif JP', sans-serif;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.25em;
    text-align: center;
    text-shadow: 0 0 4px rgb(0 0 0 / 75%);
    position: relative;
    z-index: 10;
}
#breadcrumb{
    padding-top: 1.25em;
    padding-bottom: 64px;
    font-size: 95%;
    font-weight: 400;
}
#breadcrumb a{
    display: inline;
    color: #4a4a4a;
    text-decoration: underline;
}
#breadcrumb span a,
#breadcrumb span span,
#breadcrumb span strong{
    word-wrap: break-word;
    word-break: break-all;
}
.aioseo-breadcrumb-separator{
  color: #a4a4a4;
  margin: 0 .4em;
  font-size: 18px;
  vertical-align: -.02em;
}

#contents{
    padding-bottom: 4em;
}
#contents .inner,
#breadcrumb .inner{
}
#contents section{
    position: relative;
    padding-bottom: 2.5em;
}
#contents .inner div>section:first-child{
}
#contents .inner div>section:last-child{
    padding-bottom: 6em;
}
#contents section>*:last-child{
    margin-bottom: 0 !important;
}
#contents section h1{
    color: #6DA3E3;
    font-size: 240%;
    font-family: 'Noto Serif JP', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 48px;
}
#contents section h2,
#contents h3.cat_title,
#same-category-post h2{
    color: #ffffff;
    font-size: 115%;
    font-family: 'Noto Serif JP', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.05em;
    padding: 0.5em 1em;
    margin-bottom: 0.75em;
    background: #3c3c3c;
}
#contents section h3{
    color: #000;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Noto Serif JP', sans-serif;
    letter-spacing: 0.025em;
    line-height: 1.5;
    padding-left: 0.1em;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    position: relative;
}
#contents section h4{
    color: #068001;
    margin-bottom: 0.75em;
}
#contents section h3+h4{
    margin-top: 2em;
}
#contents section h5{
}
#contents section p a,
#contents section li a,
#contents section table a,
#contents section dl a{
    display: inline;
    color: #333333;
    text-decoration: underline;
}
#contents section p,
#contents section li,
#contents section table,
#contents section dl{
    font-size: 100%;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.8;
}
#contents section p,
#contents section dl,
#contents section ul,
#contents section ol,
#contents section table,
#contents section .btns{
    margin-bottom: 1.25em;
}
#contents section ul,
#contents section ol{
    margin-left: 1.5em;
}
#contents section ul.disc li{
    list-style-type: disc;
    line-height: 1.8;
    margin-top: 1em;
}
#contents section ol.decimal li{
    list-style-type: decimal;
    margin-top: 0.75em;
}
#contents section ul li:first-child,
#contents section ol li:first-child{
    margin-top: 0;
}
#contents section div.graybox{
    margin-bottom: 2em;
    padding: 1em 1.5em;
    background: #f2f2f2;
    border: solid 1px #d2d2d2;
}
#contents section div.graybox>*:last-child{
    margin-bottom: 0;
}

/* ----- .table ----- */

#contents section table{
    width: 100%;
    background: #cccccc;
    border-collapse: separate;
    border-spacing: 1px;
}
#contents section table th,
#contents section table td{
    padding: 0.75em 1em;
}
#contents section table th{
    font-weight: 500;
    text-align: left;
    background: #f6f6f6;
}
#contents section table td{
     background: #ffffff;
}

#contents section dl.tableDl{
    border-bottom: solid 1px #c8c8c8;
}
#contents section dl.tableDl dt,
#contents section dl.tableDl dd{
    float: left;
    padding-top: 1em;
    padding-bottom: 1em;
    border-top: solid 1px #c8c8c8;
}
#contents section dl.tableDl dt{
    clear: both;
    color: #b94047;
    width: 160px;
    font-weight: 500;
}
#contents section dl.tableDl dd{
    width: calc(100% - 160px);
}

/* ----- infolist ----- */

ul.infoList{
    display: grid;
    margin-bottom: 2em;
    border-bottom: 1px dotted #9c9c9c;
}
ul.infoList li{
    font-size: 108%;
    border-top: 1px dotted #9c9c9c;
}
ul.infoList li a{
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 1em 0;
}
ul.infoList li p.date{
    color: #6d7482;
    font-size: 90%;
    font-weight: 400;
    line-height: 1.4;
    width: 9em;
}
ul.infoList li p.title{
    width: calc(100% - 9em);
    font-weight: 500;
    line-height: 1.4;
}

/* ----- info Detail ----- */

article#infoDetail{
    padding-top: 1.5em;
    margin-bottom: 2.5em;
}
article#infoDetail #infoHeader{
    border-bottom: dashed 1px #cccccc;
    padding-bottom: 1.5em;
}
article#infoDetail #infoHeader h3{
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin-bottom: 0.25em;
}
article#infoDetail #infoHeader p.date{
    color: #666666;
    font-size: 14px;
    font-weight: 200;
    text-align: right;
}
article#infoDetail .letterbody{
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.8;
    padding-top: 2em;
    padding-bottom: 2em;
}
article#infoDetail .letterbody p{
    margin-bottom: 2em;
}

nav.post-navigation{
    background: url(../images/common/line.gif) repeat-y center center;
    border-top: solid 1px #cccccc;
    border-bottom: solid 1px #cccccc;
}
nav.post-navigation div{
    width: 50%;
}
nav.post-navigation div.prev-post{
    float: right;
    text-align: right;
}
nav.post-navigation div.next-post{
    float: left;
    text-align: left;
}
nav.post-navigation div a{
    display: block;
    color: #231815;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    padding: 2em 0.5em;
    text-decoration: none;
}
nav.post-navigation div a:hover{
}

#same-category-post{
}

/*
Default style for WP-PageNavi plugin

http://wordpress.org/extend/plugins/wp-pagenavi/
*/

.wp-pagenavi {
    clear: both;
    margin-top: 2em;
    margin-bottom: 2em;
    text-align: center;
}
.wp-pagenavi a, .wp-pagenavi span {
    display: inline-block;
    text-decoration: none;
    padding: 3px 5px;
    margin: 2px;
    border: 1px solid #BFBFBF;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
    border-color: #000;
}
.wp-pagenavi span.current {
    font-weight: bold;
}

/* ----- 404 ----- */

#page404{
    text-align: center;
    padding: 64px 0 !important;
}
#page404 .text404{
	color: #cccccc;
	font-size: 200px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
}
#page404 .title{
	color: #cccccc;
	font-size: 64px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0 0 24px;
}
#page404 .toptext p{
	color: #999999;
	font-size: 24px;
	font-weight: bold;
	margin: 0 0 40px;
}
#page404 .subtext{
	margin: 40px 0;
}
#page404 .subtext p{
	font-size: 16px;
	font-weight: bold;
	line-height: 1.5;
	margin: 0 0 24px;
}
#page404 p.ask{
	font-size: 20px;
	font-weight: normal;
	margin: 0 0 16px;
}
#page404 p.ask+p{
	font-size: 14px;
	line-height: 1.5;
	line-height: 1.5;
	margin: 0 0 24px;
}

/* ----- home ----- */

#mainimg{
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #000000;
}
#mainimg:before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/home/mainimg_bg.jpg) no-repeat center top 15%;
    background-size: cover;
    transform: translate(-50%, 0%);
    position: absolute;
    top: 0;
    left: 50%;
}
#mainimg .inner{
}
#mainimg p.cc{
    width: 680px;
    background: rgba(0,0,0,0.7);
    padding: 20px 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media screen and (min-width: 500px){
	#mainimg{
           height: 50vh;
	}
}
@media screen and (max-width: 499px){
	#mainimg{
	    height: 30vh;
	}
	#mainimg p.cc{
	    width: 100%;
	    padding: 0 16px;
	}
}

#homeContents{
    padding-bottom: 4em;
}
#homeContents .inner,
#contents .inner{
}
.sidebar{
    width: 240px;
    float: left;
}
.main{
    width: calc(100% - 240px - 40px);
    width: calc(100% - 240px - 40px);
    float: right;
/*
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
*/
}
#homeContents .sidebar,
#homeContents .main{
    padding-top: 64px;
}
#homeContents #information{
    padding-bottom: 64px;
}
#homeContents #information h3,
#homeContents section h3{
    /*color: #3e7a78;*/
    color: #6DA3E3;
    font-size: 240%;
    font-family: 'Noto Serif JP', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1em;
}

/* Ads Bnr area */

#ads_bnrArea{
}
#ads_bnrArea p{
    font-size: 80%;
    line-height: 1.5;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}
#ads_bnrArea aside{
    margin-top: 16px;
}
#ads_bnrArea aside:first-child{
    margin-top: 0;
}
#ads_bnrArea aside a{
    display: block;
}
#ads_bnrArea aside a:hover{
    opacity: 0.5;
}
#ads_bnrArea aside h3{
    display: none;
}
#ads_bnrArea aside img{
    width: 100%;
    border: solid 2px #cccccc;
}


#homeContents section{
    padding-bottom: 4em;
}
#homeContents section.bgGray{
    background: #f2f2f2;
}
#homeContents section>*:last-child{
    margin-bottom: 0 !important;
}
#homeContents section h4{
    color: #000;
    font-size: 125%;
    line-height: 1.6;
    letter-spacing: 0.01em;
    margin-bottom: 0.5em;
}
#homeContents section p{
    font-size: 108%;
    line-height: 1.8;
    letter-spacing: 0.01em;
    margin-bottom: 1.5em;
}
#homeContents section ul.members{
    display: flex;
    flex-wrap: wrap;
    gap: 0.3em 1em;
    font-size: 108%;
    margin-bottom: 1.5em;
}
#homeContents section ul.members li{
    width: calc((100% - 1em) / 2);
    line-height: 1.6;
    letter-spacing: 0.01em;
}
#homeContents section dl{
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em 1em;
}
#homeContents section dl dt,
#homeContents section dl dd{
    font-size: 108%;
    line-height: 1.6;
    letter-spacing: 0.01em;
}
#homeContents section dl dt{
    width: 160px;
    font-weight: 500;
}
#homeContents section dl dd{
    width: calc(100% - 160px - 1em);
}

/* ----- advertising ----- */
#contents #advertising section h2{
  margin-bottom: 1.25em;
}
#advertising h2 span{
  font-size: 80%;
}
#advertising .lists ul{
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
#advertising .lists ul li{
  width: 32%;
  margin-right: 2%;
  margin-bottom: 1em;
  list-style: none;
}
#advertising .lists ul li a{
  text-decoration: none;
  text-align: center;
}
#advertising .lists ul li:nth-child(3n){
  margin-right: 0;
}
#advertising .lists ul li img{
  border: 1px solid #bcbcc0;
}
#advertising .lists ul li span{
  display: block;
  line-height: 1.4;
  padding: .5em 0;
}
