/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments



--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

@media print, screen and (max-width:788px) { 

html {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 94%;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Box sizing
--------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #333333;
	font-family:inherit;
	line-height: 1.6;
	letter-spacing: 0.05em;
}
b,
strong {
	font-weight: bolder;
}

small {
	font-size: 80%;
}
blockquote {
	margin: 0 1.5em 1.6em;
	padding: 15px;
	border: 1px solid #e2e2e2;
	border-radius: 5px;
}
address {
	margin: 0 0 1.5em;
}
/* Elements
--------------------------------------------- */
body {
	background: #fff;
	overflow-x: hidden;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}
dt {
	font-weight: 700;
}
dd {
	margin: 0 1.5em 1.5em;
}
/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}
img {
	height: auto;
	max-width: 100%;
	vertical-align: bottom;
}
figure {
	margin: 1em 0;
}
table {
	margin: 0 0 1.5em;
	width: 100%;
}
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}
/*SP用の要素を非表示*/
.pc_show {
	display: none !important;
}

/*一時的に非表示*/
.displaynone {
	display: none;
}

span.ib {
	display: inline-block;
}

/* Links
--------------------------------------------- */
a {
	color: #0066c0;
}
a:visited {
	color: #649ACB;
}
a:hover,
a:focus,
a:active {
	color: #014786;
	text-decoration: none;
}
a:focus {
	outline: none;
}
a:hover,
a:active {
	outline: 0;
}
/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.2em .5em 0.6em;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}
button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: inherit;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}
select {
	border: 1px solid #ccc;
}
textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
main.contents_top {
	margin: 0 auto;
}

main .contents_page_inner {
	margin: 0 auto 50px;
	width: 92%;
}
main .contents_page_inner.page_2col {
}
main .contents_page_inner.page_2col article {
}
main .contents_page_inner.page_2col aside {
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* header
--------------------------------------------- */
.header {
	background: #fff;
}
.header_inner {
	display: flex;
	align-items: center;
	margin: 0 auto;
	padding: 14px 0 10px;
	width: 95%;
}
.site_title {
	width: 45%;
	max-width: 190px;
}
.site_title img {
	/*margin: 0 0 5px 3px;*/
}


@media print, screen and (max-width:1100px) { 

}

/* Navigation
--------------------------------------------- */

/*ボタン外側*/
.openbtn{
	position: fixed;
	top: 5px;
	right: 5px;
	background:none;
	background-size: contain;
	cursor: pointer;
    width: 50px;
    height:50px;
	z-index: 20;
	
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 10px;
    height: 2px;
    border-radius: 2px;
	background: #222;
  	width: 62%;
  }
.openbtn span:nth-of-type(1) {
	top:14px;	
}
.openbtn span:nth-of-type(2) {
	top:23px;
	left: 13px;
}
.openbtn span:nth-of-type(3) {
	top:32px;
}

.openbtn.active span:nth-of-type(1) {
    top: 15px;
    left: 11px;
    transform: translateY(6px) rotate(-40deg);
    width: 62%;
}
.openbtn.active span:nth-of-type(2) {
	transform: translateX(50px);
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 27px;
    left: 11px;
    transform: translateY(-6px) rotate(40deg);
    width: 62%;
}

/*ナビメニュー*/
.header_links {
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    z-index: 11;
    background-color: #fff;
    width: 100%;
    height: 100%;
	overflow-y: auto;
}
.header_links ul {
	margin: 40px auto;
	width: 72%;
	max-width: 550px;
	font-size: clamp(100%,4.5vw,140%);
}
.header_links ul li {
	margin-bottom: 5%;
}
.header_links ul li a {
	display: block;
	padding: 15px 20px 15px;
	color: #fff;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	background: #26376A url("images/headers/nav_arrow.svg")no-repeat;
	background-position: 96% 50%;
	border-radius: 80px;
}
.header_links ul li.link_apply a {
	background-color: #bb3141;
}

/*準備中*/
.header_links ul li a.pre {
	position: relative;
	padding: 5px 20px 25px;
	background-color: #dcdcdc;
	pointer-events: none;
}
.header_links ul li a.pre:before {
	content:"準備中";
	position: absolute;
	bottom: 5px;
	left: 0;
	display: inline-block;
	width: 100%;
	color: #222;
	font-size: 95%;
	text-align: center;
}




/* TOP　コンテンツ
--------------------------------------------- */
h2.h2top {
	margin-bottom: 35px;
	text-align: center;
}
h2.h2top span {
	display: inline-block;
	padding: 0 5px 25px;
	color: #16336C;
	font-size: clamp(160%,6.5vw,220%);
	font-weight: 900;
	line-height: 1.4;
	background: url("images/pages/h2top_line.svg")repeat-x;
	background-position: left bottom;
}
h3.h3top {
	margin: 40px 0 15px;
	padding: 10px 20px;
	font-size: 115%;
	font-weight: 800;
	background: #fff;
	line-height: 1.3;
}

.mv {
	position: relative;
	margin: 0 auto;
	padding: 10px 0 80px;
	width: 100%;
	/*height: 100vh;*/
	text-align: center;
	background: url("images/mv/mv_bg.svg")no-repeat;
	background-position: 50% 45%;
	background-size: cover;
}
.mv:before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,7db9e8+100&1+0,0+100 */
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,0.85) 5%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	width: 100%;
	height: 45%;
}
.mv .pic_box picture {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	width: 95%;
	height: 100%;
	z-index: 10;
}
.mv .pic_box picture img {
	width: 100%;
	max-width: 480px;
}


.schedule {
	margin: 0 auto;
	width: 94%;
}
.schedule ul {
	margin: 30px 0;
}
.schedule ul li {
	margin-bottom: 12px;
}
.schedule ul li.bosyu {
	text-align: center;
}

.schedule ul li.bosyu .innerwrap img.title {
	position: relative;
	bottom: -13px;
	width: 70%;
}
.schedule ul li.bosyu p.txt_s {
	display: inline-block;
	text-align: left;
	font-size: clamp(70%,2.2vw,90%);
	line-height: 1.4;
	padding: 5px 10px;
}

section.about_app {
	margin: 0 auto 60px;
	padding: 30px 4% 25px;
	width: 96%;
	height: auto;
	text-align: center;
	background: #004C80 url("images/pages/app_bg.png")no-repeat;
	background-size: cover;
}
section.about_app h2 {
	color: #fff;
	font-size: clamp(135%,6vw,220%);
	font-weight: 900;
}
section.about_app h2 > div {
	display: block;
	padding: 10px 0;
	text-align: center;
}
section.about_app h2 img {
	width: 100px;
}
section.about_app p {
	display: inline-block;
	margin: 0 0 10px;
	color: #fff;
	font-weight: 700;
	text-align: left;
}
section.about_app .btn_red {
	margin: 20px auto 15px;
	max-width: 350px;
}
section.about_app .btn_red a {
	display: inline-block;
	padding: .4em 2em .4em;
	color: #fff;
	font-size: 100%;
	font-weight: 700;
	text-decoration: none;
	background: #BB3141;
	border: 4px solid #fff;
	border-radius: 10px;
	transition: all .1s;
}
section.about_app .btn_red a:hover,
section.about_app .btn_red a:active {
	transition: all .2s;
	background: #F099A3;
	
}
section.gaiyou {
	/*font-size: clamp(90%,1.3vw,100%);*/
}

section.gaiyou .detail {
	margin: 0 auto 60px;
	padding: 40px 15px;
	width: 92%;
	max-width: 1200px;
	background: #EAF5F8;	
}
section.gaiyou .detail ul {

}
section.gaiyou .detail ul > li {
	padding: 1em 0 1em 5px;
	border-bottom: 1px solid #505050;
}
section.gaiyou .detail ul > li:first-child {
	border-top: 1px solid #505050;
}
section.gaiyou .detail ul> li h3 {
	margin-bottom: 10px;
	color: #16336C;
	font-weight: 700;
}
section.gaiyou .detail ul > li p {
	/*width: calc(100% - 14em);*/
	line-height: 1.4em;
}
section.gaiyou .detail ul > li p.haihu {
	width: 90%;
	height: auto;
	max-width: 320px;
}
section.gaiyou .detail ul > li > ol {
	margin-left: 2.5em;
}
section.gaiyou .detail ul > li > ol li {
	position: relative;
	list-style-type: none;
	line-height: 1.4em;
	margin-bottom: 8px;
}
section.gaiyou .detail ul > li > ol li:before {
	position: absolute;
	right: calc(100% + 0.5rem);  /* 0.5remは連番とテキストとの余白 */
	content: "(" counter(list-item) ")";
}

section.gaiyou .detail ol.ryuiten {
	list-style-type: none;
	margin-left: 2.5em;
}
section.gaiyou .detail ol.ryuiten li {
	position: relative;
}
section.gaiyou .detail ol.ryuiten li:before {
	content: "(ア)";
	position: absolute;
	right: calc(100% + 7px);
	top: 0;
}
section.gaiyou .detail ol.ryuiten li:nth-child(2):before {
	content: "(イ)";
}
section.gaiyou .detail ol.ryuiten li:nth-child(3):before {
	content: "(ウ)";
}
section.gaiyou .detail ol.ryuiten li:nth-child(4):before {
	content: "(エ)";
}
section.gaiyou .detail ol.ryuiten li:nth-child(5):before {
	content: "(オ)";
}

section.news {
	
}

.news_bluebox {
	margin: 0 auto;
	padding: 30px 15px 25px;
	width: 92%;
	background: #EAF5F8;		
}
ul.news_wrapper li.news_box {
	display: flex;
	flex-direction: column;
	margin-bottom: 18px;
}
ul.news_wrapper li.news_box time {
	width: 10em;
}
ul.news_wrapper li.news_box time span {
	display: inline-block;
	padding: 2px 0 3px;
	width: 100%;
	color: #fff;
	font-size: 84%;
	font-weight: 700;
	text-align: center;
	background: #255DCC;
	border-radius: 30px;
}
ul.news_wrapper li.news_box p.title {
	padding: 5px 0 0 8px;
	line-height: 1.4;
}
ul.news_wrapper li.news_box p.title a {
	color: #222;
	text-decoration: none;
}
ul.news_wrapper li.news_box p.title a:hover,
ul.news_wrapper li.news_box p.title a:active {
	text-decoration: underline;
}
img.mark_new {
	position: relative;
	top: -.2em;
	left: 3px;
}
.news_more {
	margin-top: 25px;
	text-align: center;
}
.news_more a {
	position: relative;
	display: inline-block;
	padding: 5px;
	width: 210px;
	color: #255DCC;
	font-size: 90%;
	font-weight: 700;
	text-decoration: none;
	background: #fff;
	border: 2px solid #255DCC;
}
.news_more a:before {
	content: "";
	position: absolute;
	top: 50%;
	right: -20px;
	transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	display: inline-block;
	width: 40px;
	height: 2px;
	background: #255DCC;
	transition: all .2s;
}
/*.news_more a:active:before {
	transition: all .2s;
	right: -30px;
}*/


/* Posts and pages
--------------------------------------------- */
.entry-content p {
	margin-bottom: 30px;
}
.entry-content ul,
.entry-content ol {
	margin: 0 0 1.5em 2em;
}

.entry-content ul {
	list-style: disc;
}

.entry-content ol {
	list-style: decimal;
}

.entry-content ul > li,
.entry-content ol > li {
	margin-bottom: 7px;
}

.entry-content li > ul,
.entry-content li > ol {
	margin-bottom: 0;
	margin-left: 1.2em;
}
.entry-content .entry_meta {
	margin: 0 10px 20px;
	text-align: right;
	font-size: 90%;
}

.sticky {
	display: block;
}

.post,
.page {
	margin: 0;
}

.updated:not(.published) {
	display: none;
}

/*.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}
*/
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}


/* Posts and pages（見出し）
--------------------------------------------- */
/* H1 */
h1.entry-title {
	margin: 0 auto 30px;
	padding: 1.2em 3%;
	width: 97%;
	color: #16336C;
	font-size:  clamp(135%,5.3vw,170%);
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.03em;
	line-height: 1.4;
	background: #D4EAEF url("images/pages/h2page_bg.png")no-repeat;
	background-size: cover;
	border-radius: 15px;
}
.single h1.entry-title {
	margin: 0 auto 30px;
	padding: 1.2em 3%;
	width: 97%;
	color: #16336C;
	font-size: clamp(120%,4vw,170%);
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.03em;
	line-height: 1.4;
	background: #D4EAEF url("images/pages/h2page_bg.png")no-repeat;
	background-size: cover;
	border-radius: 15px;
}

/* H2 */
.entry-content h2 {
	margin: 40px 0 20px;
	padding: 1.2em 1em;
	font-size: clamp(110%,5vw,130%);
	font-weight: 700;
	background: #D7EBF4;
	border-radius: 12px;
}
/* H3 */
.entry-content h3 {
	/*display: inline-block;*/
	margin: 35px 0 15px;
	padding: .7em 1.4em;
	font-size:  clamp(100%,4.5vw,120%);
	font-weight: 700;
	background: #E8EFD3;
	border-radius: 10px;
}

/* Posts and pages（ページナビ）
--------------------------------------------- */
#page .wp-pagenavi {
	margin: 25px 0 0;
	text-align: center;
	font-size: 90%;
}
#page .wp-pagenavi span,
#page .wp-pagenavi a {
	display: inline-block;
	padding: 4px 9px 5px;
	color: #222;
	border-radius: 5px;
	border: 1px solid #aaa;
}
#page .wp-pagenavi a 
,#page .wp-pagenavi a:visited {
	color: #222;
	background: #E4E4E4;
	border: 1px solid #eee;
}
#page .wp-pagenavi a:hover
,#page .wp-pagenavi a:active {
	background: #D2E7F1;
	border: 1px solid #D2E7F1;
	text-decoration: none;
	color: #222;
	border: 1px solid #aaa;
}

#page .wp-pagenavi span.pages {
	display: block;
	text-align: center;
	border: none;
}
#page .wp-pagenavi span.current {
	color: #fff;
	background: #255dcc;
	border: 1px solid;
	border-color: #255dcc !important;
}

#page .wp-pagenavi span.extend {
border: none;
}


/* Posts and pages（利用者の方）
--------------------------------------------- */
/*共通*/
.page .w90 {
	/*margin-inline: 5%;*/
}

/*見出し*/
.page-id-31 h3.order {
	position: relative;
	padding: .7em 10px .7em 55px;
}
.page-id-31 h3.order:before {
	content: "";
	display: inline-block;
	position: absolute;
	left: -8px;
	top: -8px;
/*	transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);*/
	width: 50px;
	height: 50px;
	background-size: contain;
}
.page-id-31 h3.order.step1:before {
	background: url("icon/icon01.svg")no-repeat;
}
.page-id-31 h3.order.step2:before {
	background: url("icon/icon02.svg")no-repeat;
}
.page-id-31 h3.order.step3:before {
	background: url("icon/icon03.svg")no-repeat;
}
.page-id-31 h3.order.step4:before {
	background: url("icon/icon04.svg")no-repeat;
}

/*準備*/
.get_ready {
	margin: 30px auto;
	padding: 15px 1.2em;
	border: 1px dashed #777;
}
.get_ready p.get_ready_title {
	margin-bottom: 20px;
	font-size: 1.4em;
	font-weight: 700;
}

.qr_wrap {
	margin: 0 auto;
	width: 100%;
}

/*申請*/
/*.step3_imgwrap {
	margin: 50px auto;
}*/

/*ブース*/
.supportdesk {
	margin: 0 auto;
}
.supportdesk table {
	border: 1px solid #878787;
	font-size: .9em;
}
.supportdesk table thead th {
	padding-block: 2px;
	color: #fff;
	border-bottom: 1px solid #878787;
	background: #16336c;
}
.supportdesk table tr td:nth-child(1) {
	min-width: 100px;
}
.supportdesk table tr td:nth-child(3) {
	min-width: 50px;
}
.supportdesk table tr:nth-child(even) td {
	background: #F4F1F1;
}
.supportdesk table td,
.supportdesk table th {
	border: 1px solid #878787;
}

/*au*/
.supportdesk_au {
	overflow-x: scroll;
}
.supportdesk_au table {
	width: 100%;
	min-width: 700px;
	border: 1px solid #878787;
	font-size: .95em;
}
.supportdesk_au table thead {
	border-bottom: 1px solid #878787;
}

.supportdesk_au table thead th {
	padding-block: 2px;
	color: #fff;
	background: #16336c;
}
.supportdesk_au table tr td:nth-child(1) {
	width: 20%;
	min-width: 150px;
}
.supportdesk_au table tr td:nth-child(3) {
	width: 18%;
	min-width: 120px;
	text-align: center;
}
.supportdesk_au table tr td:nth-child(4) {
	width: 11%;
	min-width: 115px;
	text-align: center;
}
.supportdesk_au table tr td:nth-child(5) {
	width: 18%;
	min-width: 130px;
}
.supportdesk_au table tr:nth-child(even) td {
	background: #F4F1F1;
}
.supportdesk_au table td,
.supportdesk_au table th {
	border: 1px solid #878787;
}
.supportdesk_au table td span {
	display: inline-block;
}

/*マニュアル*/
.manual_btn {
	text-align: center;
}
.manual_btn a[href$=".pdf"] {
	display: inline-block;
	padding: 15px 1em;
	color: #fff;
	font-size: 1.05em;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	background-color: #FC4E7A;
	background-image: none;
	border-radius: 100px;
}
.manual_btn a span {
	display: inline-block;
}
.manual_btn a:hover,
.manual_btn a:active {
	transition: all .1s;
	opacity: 0.78;
}


/* Posts and pages（お問い合わせ）
--------------------------------------------- */
/*.inquiry_list {
	margin: 25px auto 0;
	overflow: hidden;
}
.inquiry_list p {
	margin-bottom: 0;
}
.inquiry_list dl {
	padding: 0 0 20px;
	width:100%;
	overflow: hidden;
}
.inquiry_list dt {
	margin: 0 0 5px;
}
.inquiry_list dd {
	margin: 0 0 20px;
	width: 100%;
}
.inquiry_list input, .inquiry_list textarea, .inquiry_list select {
	margin: 0;
	padding: 5px 8px;

}
.inquiry_list .must {
	position: relative;
	top: -.15em;
	left: 8px;
	display: inline;
    padding: 0 6px 2px;
    font-size: 11px;
    color: #cf1d05;
	border: 1px solid #cf1d05;
	user-select: none;
}
.inquiry_list .span_text {
	display: inline-block;
	margin-left: 5px;
}
*/
/*名前*/
/*.con_name {
	margin: 0 10px 0 0;
	width: 100%;
}*/
/*ふりがな*/
/*.con_kana {
	margin: 0 10px 0 0;
	width: 100%;
}*/
/*メールアドレス*/
/*.con_address {
	margin: 0 10px 0 0;
	width: 100%;
    ime-mode:disabled;
}*/
/*TEL*/
/*.con_tel {
	width: 190px;
    ime-mode:disabled;
}*/
/*お問い合わせ内容*/
/*.con_inquiry {
	width: 100%;
	height: 170px;
}*/
/*ラジオボタン*/
/*.wpcf7-radio .wpcf7-list-item {
	margin: 0 1.5em 0 0;
	user-select: none;
}*/
/*チェックボックス*/
/*.wpcf7-checkbox .wpcf7-list-item {
	margin: 0 10px 0 0;
    display:block;
	user-select: none;
}*/

/*必須項目未入力の場合*/
/*.wpcf7 span.wpcf7-not-valid-tip {
	display: inline-block;
	padding-left: 8px;
	font-size: 80%;
}
.wpcf7-spinner {
	display: block;
	margin: 15px auto 0;
	width: 24px;
	height: 24px;
}*/

/*個人情報　取扱同意*/
/*.doui_txt {
	padding: 30px 20px 10px;
	background: rgb(249, 237, 223);
	border: 1px solid rgb(190, 170, 145);
	border-radius: 4px;
}
.doui_txt p span {
	display: block;
	text-align: center;
	font-weight: 600;
}
.doui p {
	margin: 75px 0 60px;
	font-size: 85%;
	font-weight: 600;
	text-align: center;
}
.doui .wpcf7-acceptance .wpcf7-list-item {
	margin-left: 0;
}
.doui .wpcf7-list-item label .wpcf7-list-item-label {
	padding-left: 10px;
}*/

/*店舗説明会入室前の名前入力*/
/*.con_entryname {
	margin: 0 10px 0 0;
	width: 100%;
}*/

/*フォームボタン*/
/*#btn_wrap {
	text-align: center;
}
#btn_wrap input[type="submit"] {
	width: 300px;
	padding: 1.5em 1em 1.6em;
	font-size: 115%;
	font-weight: 600;
    letter-spacing: 0.4em;
}*/

/* sidebar
--------------------------------------------- */
/* ▼side（これまでのお知らせ） */
aside.past_entry  {
	background: #fff;
	border: 1px solid #ccc;
}
.past_entry h2 {
	margin: 50px 0 15px;
	padding: 7px 10px;
	color: #fff;
	font-size: 95%;
	font-weight: 700;
	background: #255dcc;
}
ul.past_entry_list li {
	border-bottom: 1px dotted #999;
	margin: 0 0 12px;
	padding: 0 8px 12px;
	font-size: 94%;
}
ul.past_entry_list li time {
	display: inline-block;
	width: 100%;
	font-weight: 400;
}
ul.past_entry_list li a {
	color: #222;
}
.past_entry .more {
	text-align: right;
}
.past_entry .more a {
	display: inline-block;
	padding: 0 2em;
	color: #255dcc;
	font-size: 90%;
	border: 1px solid #255dcc;
	border-radius: 40px;
	text-decoration: none;
	transition: all .1s;
}
.past_entry .more a:hover,
.past_entry .more a:active {
	opacity: 0.7;
	transition: all .1s;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}


/* footer
--------------------------------------------- */
#site_footer {
	margin-top: 60px;
}

.footer_innerwrap {
	margin: 0 auto;
	padding: 30px 15px 30px;
	width: 100%;
	color: #fff;
	text-align: center;
	background: #3F6EB4;
}

p.footer_title {
	font-size: 180%;
	font-weight: 900;
}
p.footer_txtl {
	margin: 15px 0 25px;
	font-size: clamp(100%,4vw,130%);
	font-weight:700;
}
p.footer_info {
	margin-top: 10px;
	font-size: 95%;
}
p.footer_info img {
	width: 92%;
	max-width: 400px;
}
p.uketsuke {
	font-size: 90%;
}
p.footer_fax {
	margin: 20px 0;
}
p.footer_fax img {
	width: 78%;
	max-width: 320px;
}
.footer_contact {
	margin: 30px auto;
	width: 290px;
}
.footer_contact p {
	padding: 7px 10px 7px 55px;
	color: #16336C;
	font-size: 120%;
	text-align: center;
	line-height: 1;
	background: #fff url("images/footers/footer_mail.svg")no-repeat;
	background-position: left center;
	background-size: contain;
	border-radius: 50px;
	border: 2px solid #fff;
}
.footer_contact p span.txt_red {
	display: inline-block;
	font-size: 60%;
	color: #BB3141;
}
.footer_bluebox {
	display: inline-block;
	margin: 30px 0 10px;
	margin: 0 auto;
	text-align: left;
	background: #16336C;
	border: 2px solid #fff;
}
.footer_bluebox ul {
	margin: 10px 10px 10px 2.5em;
	font-size: 75%;
}
.footer_bluebox ul li {
	position: relative;
}
.footer_bluebox ul li:before {
	content: "※";
	position: absolute;
	left: -1.2em;
	top: 0;
}
p.about_op {
	margin: 10px 0 0;
	font-size: 85%;
}

/*コピーライト*/
#copyright {
	padding: 10px 0 55px;
	font-size: 55%;
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.1em;
	background: #fff;
}
#copyright a,
#copyright a:visited {
	color: #222;
	text-decoration: none;
}
#copyright a:hover,
#copyright a:active {
	text-decoration: underline;
}

/*下部固定メニュー*/
.footer_area {
	display: flex;
	justify-content: center;
	position: fixed;
	column-gap: 5px;
	padding: 5px 0 5px;
	bottom: 0;
	width: 100%;
	background-color: #fff;
	z-index: 10000;
}
.footer_area .footer_area_inner {
	width: 47.5%;
	
}
.footer_area .footer_area_inner:nth-child(1) {
	/*border-right: 1px solid #fff;*/
}
a.inquiry_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	padding: 10px 0;
	background: #BB3141;
}
/*準備中*/
a.inquiry_btn.pre {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	padding: 10px 0;
	background: #ccc;
	pointer-events: none;
}
a.inquiry_btn.pre:before {
	content:"準備中";
	position: absolute;
	bottom: 0px;
	left: 0;
	display: inline-block;
	width: 100%;
	color: #222;
	font-size: 95%;
	text-align: center;
}

a.inquiry_btn img.tel {
	width: 14px;
	height: 21px;
	margin-right: 6px;
}
a.inquiry_btn img.search {
	width: 15px;
    height: 21px;
	padding: 2px 0;
	margin-right: 6px;
}
a.inquiry_btn p {
	color: #fff;
	font-size: 83%;
	font-weight: 500;
	line-height: 1;
}

.page-top {
	display: none;
	position: fixed;
	bottom: 55px;
	right: 5px;
	z-index: 100;
}
.page-top img {
	width: 50px;
	height: auto;
}

body .mwai-timeless-theme.mwai-animation-zoom.mwai-window.mwai-bottom-right .mwai-trigger {
	right: 47px !important;
    bottom: 43px !important;
}

body .cky-revisit-bottom-left {
	bottom: 55px;
	left: 5px;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875em;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/*PDFアイコン*/
a[href $='.pdf'] {
    background:url(icon/ico_pdf.gif) no-repeat right 70%;
    padding:0 18px 0 0;
}
a[href $='.pdf'] a {
    text-decoration:none;
}

a[href $='.pdf'] a:hover {
    text-decoration:none;
}
}
