@charset "utf-8";
/* CSS Document */

html {
    overflow-y: scroll;
    background: #4a71d5;
}
body {
    color: #333;
    font-family: "Noto Sans Japanese",san-serif;
    background: #ffffff;
    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{
    font-size: 0;
}
.btns a{
    min-width: 200px;
    width: fit-content;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.025em;
    margin-left: 1em;
    padding: 1.25em 3.5em 1.25em 1.75em;
    background: #4a71d5;
    border-radius: 40px;
    position: relative;
}
.btns a:before{
    content: "";
    display: block;
    width: 10px;
    height: 16px;
    position: absolute;
    top: 50%;
    right: 1em;
    background: url(../images/common/cmn-ftr-arw.png) no-repeat center center;
    background-size: 100% auto;
    transform: translate(0, -50%);
}
.btns a:first-child{
    margin-left: 0;
}

/* ----- header ----- */

#header{
    padding-top: 20px;
    padding-bottom: 2px;
}
#header .inner{
    position: relative;
}
#header .contact{
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translate(0, -50%);
}
#header .contact a{
    width: 200px;
    text-align: center;
    border-radius: 50px;
    background: #4a71d5 !important;
}

@media screen and (min-width: 980px){
	#header h1{
	    width: calc(100% - 240px);
	    max-width: 420px;
	}
}
@media screen and (max-width: 979px){
	#header h1{
	    width: calc(100% - 240px);
	    max-width: 420px;
	}
}
.home #header.home{
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 500;
}
.home #header.home .inner{
    max-width: inherit;
    padding-left: 40px;
    padding-right: 40px;
}
.home #header.home .contact a{
    background: rgba(85,79,125,0.8);
}

/* ----- main navi ----- */

#globalnav{
    margin-top: 20px;
    background: #4a71d5;
}
#globalnav div>ul{
    width: 100%;
    border-left: solid 2px #FFFFFF;
}
#globalnav div>ul>li{
    border-right: solid 2px #ffffff;
    position: relative;
}
#globalnav div>ul>li>a{
    display: block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-align: center;
    text-decoration: none;
    padding: 0.8em 0;
}
@media screen and (min-width: 980px){
	#globalnav div>ul>li{
	    width: calc(100% / 5);
      float: left;
	}
}
@media screen and (max-width: 979px){
	#globalnav div>ul{
	    display: table;
	}
	#globalnav div>ul>li{
	    display: table-cell;
	    float: none;
	}
	#globalnav div>ul>li>a{
      padding: 0.8em 24px;
	}
}
#globalnav div>ul>li>a:hover{
    opacity: 0.5;
    color: #ffffff;
}
#globalnav ul.sub-menu{
    display: none;
    min-width: 240px;
    width: max-content;
    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: #fff;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    padding: 0.75em 1em;
    font-weight: 500;
    background: rgba(148,160,191,.95);
    text-shadow: 1px 1px 2px rgba(0,0,0,.4);
    box-shadow: 4px 4px 6px 0px rgba(0,0,0,.8);
}
#globalnav .sub-menu li a:hover{
    opacity: 1;
    background: rgba(148,160,191,.75);
}
.home #globalnav .sub-menu li a{
    color: #fff;
    font-weight: normal;
    background: rgba(0,0,0,0.7);
    box-shadow: 2px 2px 3px 0px rgba(115,115,115,.25);
}
.home #globalnav .sub-menu li a:hover{
    background: rgba(0,0,0,1);
}

.home #header.home #globalnav{
    background: transparent;
}
.home #header.home #globalnav div>ul{
    display: flex;
    width: fit-content;
    gap: 2em;
    padding-left: 1em;
    background: rgba(255,255,255,0.35);
    border: none;
    border-top: solid 1px #000000;
    border-bottom: solid 1px #000000;
}
.home #header.home #globalnav div>ul>li{
    width: fit-content;
    float: none;
    border: none;
}
.home #header.home #globalnav div>ul>li>a{
    color: #000000;
    padding: 0.75em 0;
    text-shadow: 0 0 4px rgba(255,255,255,1);
}

/* ----- footer ----- */

#footer{
    position: relative;
    z-index: 600;
}
#copyright{
    color: #ffffff;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 0.05em;
    padding: 3em 0;
    text-align: center;
    background: #4a71d5;
}

/* ----- pagetop ----- */

#pagetop{
    position: fixed;
    right: 12px;
    bottom: 10vh;
}
#pagetop a{
    display: block;
    width: 40px;
    height: 40px;
    text-indent: -9999px;
    text-align: center;
    background: #121212 url(../images/common/pagetop.png) no-repeat center center;
    background-size: 20px auto;
    position: relative;
    border-radius: 10px;
}
#pagetop a:hover{
    opacity: 0.3;
}

/* ----- commons ----- */

#page-header{
  width: 100%;
  height: 0;
  padding-top: 10.851648351%;
  background: #62a8ff url(../images/common/mainimg_cmn_bg.jpg) no-repeat top center;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 1480px){
  #page-header{
    padding-top: 7.05357142815%;
    background: #62a8ff url(../images/common/mainimg_cmn_bg.jpg) no-repeat top center;
    background-size: cover;
  }
}
#page-header .inner{
  width: 100%;
  height: 100%;
}
#page-header h2.pageTitle{
    width: calc(100% - 80px);
/*    margin: 0 auto;
    padding: 40px 0;
    text-align: center;*/
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/*
#page-header:before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;

    background-size: 100%;
}
*/
#page-header h2{
    color: #ffffff;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-shadow: 0 0 8px rgb(0 0 0 / 50%);
    text-align: center;
    position: relative;
    z-index: 10;
}

#breadcrumb{
    padding-top: 1.25em;
    padding-bottom: 3em;
}
#breadcrumb ol{
    font-size: 0;
    text-align: left;
}
#breadcrumb li{
    display: inline;
    font-size: 14px;
    font-weight: 300;
}
#breadcrumb li:after{
    content: ">";
    margin: 0 0.75em;
    color: #7f7e7f;
}
#breadcrumb li:last-child::after{
    content: none;
}
#breadcrumb li a{
    display: inline;
    color: #018ed7;
    text-decoration: underline;
}
#breadcrumb li a,
#breadcrumb li span,
#breadcrumb li strong{
    word-wrap: break-word;
    word-break: break-all;
}

#contents{
    padding-bottom: 4em;
}
#contents .inner,
#breadcrumb .inner{
    max-width: 880px;
}
section{
    position: relative;
    padding-bottom: 4em;
}
#contents .inner div>section:last-child{
    padding-bottom: 6em;
}
section>*:last-child{
    margin-bottom: 0 !important;
}
section h1{
    font-size: 28px;
    font-family: 'Noto Serif JP', sans-serif;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin-bottom: 1em;
}
section h2,
h3.cat_title,
#same-category-post h2{
    font-size: 19px;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1.5;
    padding: 0.3em 0.75em;
    margin-bottom: 0.75em;
    background: #4a71d5;
    border-radius: 2px;
}
section h3{
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.025em;
    padding-bottom: 0.3em;
    margin-bottom: 0.75em;
    border-bottom: solid 2px #cccccc;
}
section h4{
    color: #7795e0;
    margin-bottom: 1em;
}
section h5{
}
section p a,
section li a,
section table a,
section dl a{
    display: inline;
    color: #018ed7;
    text-decoration: underline;
}
section p,
section li,
section table,
section dl{
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.8;
}
section p,
section dl,
section ul,
section ol,
section table,
section .btns{
    margin-bottom: 1.25em;
}
section ul,
section ol{
    margin-left: 1.5em;
}
section ul.disc li{
    list-style-type: disc;
    line-height: 1.5;
    margin-top: 0.5em;
}
section.social ul.disc li{
  margin-left: -1em;
  list-style-type: none;
}
section.social ul.disc li ul{
  margin-left: 3.5em;
  padding-top: .5em;
}
section.social ul.disc li ul li{
  list-style-type: disc;
}
section.social ul.disc li b::before{
  content: '▶︎';
  display: inline-block;
  font-size: 11px;
  margin-right: .3em;
  vertical-align: .1em;
}
section ol.decimal li{
    list-style-type: decimal;
    margin-top: 0.75em;
}
section ul li:first-child,
section ol li:first-child{
    margin-top: 0;
}
section div.graybox{
    margin-bottom: 2em;
    padding: 1em 1.5em;
    background: #f2f2f2;
    border: solid 1px #d2d2d2;
}
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: 400;
    text-align: left;
    background: #e5e5e5;
}
#contents section table td{
     background: #ffffff;
}

section dl.tableDl{
}
section dl.tableDl dt,
section dl.tableDl dd{
    float: left;
    padding-top: 1em;
    padding-bottom: 1em;
    border-bottom: solid 1px #c8c8c8;
}
section dl.tableDl dt{
    clear: both;
    width: 200px;
    font-weight: 500;
}
section dl.tableDl dd{
    width: calc(100% - 200px);
}

/* ----- infolist ----- */

ul.infoList{
    margin-bottom: 2em;
    margin-left: 0;
}
ul.infoList li{
    border-bottom: solid 1px #c8c8c8;
}
ul.infoList li:first-child{
}
ul.infoList li a{
    display: block;
    text-decoration: none;
    padding: 12px 0;
}
ul.infoList li p.date{
    width: 140px;
    float: left;
    color: #666666;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.4;
    padding: 0.1em 0;
    margin-bottom: 0 !important;
}
ul.infoList li p.title{
    width: calc(100% - 140px);
    float: left;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0 !important;
}

/* ----- info Detail ----- */

article#infoDetail{
    margin-bottom: 2.5em;
    position: relative;
}
article#infoDetail #infoHeader{
    border-bottom: dashed 1px #cccccc;
    padding-bottom: 1.5em;
}
article#infoDetail #infoHeader h3{
    font-size: 24px;
    font-weight: 300;
    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 ----- */

#homeContents{
  position: relative;
  z-index: 600;
  background: #ffffff;
}
#mainimg{
  width: 100%;
  height: 0;
  padding-top: 56.698357821%;
  position: relative;
  background: url(../images/home/mainimg_bg.jpg) no-repeat center center;
  background-size: cover;
}
#mainimg .inner{
  width: 100%;
  height: 100%;
}
#mainimg p.cc{
    width: calc(100% - 80px);
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0,0,0,.4);
    padding: 40px 48px;
    position: absolute;
    top: calc(70px + 50%);
    left: 50%;
    transform: translate(-50%, -50%);
}
#homeContents section h3{
    font-size: 23px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-bottom: 0.75em;
}
#homeContents section h3 .en{
    color: #7795e0;
    font-size: 60%;
    font-weight: 900;
    letter-spacing: 0;
    margin-left: 0.5em;
}

/* ----- contact ----- */

section .contact{
}
section .contact dl{
    background: #e5e5e5;
    border: solid 1px #cccccc;
    border-top: none;
    margin-top: 1.25em;
    margin-bottom: 1.5em !important;
}
section .contact dl dt,
section .contact dl dd{
    float: left;
    font-size: 15px;
    line-height: 1.6;
    padding: 1em;
    border-top: solid 1px #cccccc;
}
section .contact dl dt{
    width: 200px;
    clear: both;
    font-weight: 900;
}
section .contact dl .req{
    color: #ff3300;
    font-size: 90%;
    margin-left: 0.5em;
}
section .contact dl dd{
    width: calc(100% - 200px);
    background: #ffffff;
    border-left: solid 1px #cccccc;
}
section .contact dl dd input,
section .contact dl dd textarea{
    font-size: 14px;
    line-height: 1.6;
    padding: 2px 0.5em;
    width: 100%;
}
section .contact dl dd.zipcode input{
  width: 20%;
}
section .contact dl dt p,
section .contact dl dd p{
  margin-bottom: 0;
}
section .contact .btns{
  width: 100%;
}
section .contact .btns p{
  width: 200px;
  margin: 0 auto;
}
section .contact .btns input{
    display: inline-block;
    width: 100%;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    font-family: "Noto Sans Japanese",san-serif;
    text-align: center;
    padding: 1em 1.75em;
    background: #121212;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}
section .contact .btns input:hover{
    opacity: 0.5;
}
section .contact+div.wpcf7-response-output{
    font-weight: 900;
    text-align: center;
    padding: 1em;
    border-radius: 40px;
}


/* sponsor */
section.sponsor h4{
  font-size: 18px;
}
section ul.sponterList{
    margin-bottom: 2em;
}
section ul.sponterList li{
}
section ul.sponterList li img{
    display: inline-block;
    margin-top: 0.75em;
    border: solid 2px #cccccc;
}
