@charset "utf-8";

html,
body{
	font-family:var(--default-font);
	font-feature-settings:"palt";
	width:100%;
	font-size:1em;
	line-height:1.8;
	font-weight:500;
	letter-spacing:0.08em;
	color:var(--base-color);
	text-align:center;
	min-width:1280px;
	-webkit-text-size-adjust:100%;
  background-color:var(--bg-color);
	overflow-wrap:break-word !important;
	word-wrap:break-word !important;
}

h1,h2,h3,h4,strong{
	font-weight:700;
}
strong{
	font-size:1.05em;
}
.mincho{
	font-family:'Zen Maru Gothic', sans-serif;
/*
	font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "ＭＳ 明朝", serif !important;
*/
}
.eng{
	font-family:var(--eng-font) !important;
}
.small{
	font-size:0.85em;
}
.size120{font-size:1.2em; line-height:1.8;}
.size110{font-size:1.1em; line-height:1.8;}
.size95{font-size:0.95em; line-height:1.8;}
.size90{font-size:0.9em; line-height:1.8;}
.size85{font-size:0.85em; line-height:1.8;}
.size80{font-size:0.8em; line-height:1.8;}

.mt0{margin-top:0px !important;}
.mt5{margin-top:5px !important;}
.mt10{margin-top:10px !important;}
.mt15{margin-top:15px !important;}
.mt20{margin-top:20px !important;}
.mt25{margin-top:25px !important;}
.mt30{margin-top:30px !important;}
.mt35{margin-top:35px !important;}
.mt40{margin-top:40px !important;}
.mt45{margin-top:45px !important;}
.mt50{margin-top:50px !important;}

.mb0{margin-bottom:0px !important;}
.mb5{margin-bottom:5px !important;}
.mb10{margin-bottom:10px !important;}
.mb15{margin-bottom:15px !important;}
.mb20{margin-bottom:20px !important;}
.mb25{margin-bottom:25px !important;}
.mb30{margin-bottom:30px !important;}
.mb35{margin-bottom:35px !important;}
.mb40{margin-bottom:40px !important;}
.mb45{margin-bottom:45px !important;}
.mb50{margin-bottom:50px !important;}

ul.li-mb0 > li,
ol.li-mb0 > li{margin-bottom:0px !important;}
ul.li-mb5 > li,
ol.li-mb5 > li{margin-bottom:5px !important;}
ul.li-mb10 > li,
ol.li-mb10 > li{margin-bottom:10px !important;}
ul.li-mb15 > li,
ol.li-mb15 > li{margin-bottom:15px !important;}
ul.li-mb20 > li,
ol.li-mb20 > li{margin-bottom:20px !important;}
ul.li-mb25 > li,
ol.li-mb25 > li{margin-bottom:25px !important;}
ul.li-mb30 > li,
ol.li-mb30 > li{margin-bottom:30px !important;}
ul.li-mb35 > li,
ol.li-mb35 > li{margin-bottom:35px !important;}
ul.li-mb40 > li,
ol.li-mb40 > li{margin-bottom:40px !important;}
ul.li-mb45 > li,
ol.li-mb45 > li{margin-bottom:45px !important;}
ul.li-mb50 > li,
ol.li-mb50 > li{margin-bottom:50px !important;}

ul.li-mb0 > li:last-child,
ol.li-mb0 > li:last-child,
ul.li-mb5 > li:last-child,
ol.li-mb5 > li:last-child,
ul.li-mb10 > li:last-child,
ol.li-mb10 > li:last-child,
ul.li-mb15 > li:last-child,
ol.li-mb15 > li:last-child,
ul.li-mb20 > li:last-child,
ol.li-mb20 > li:last-child,
ul.li-mb25 > li:last-child,
ol.li-mb25 > li:last-child,
ul.li-mb30 > li:last-child,
ol.li-mb30 > li:last-child,
ul.li-mb35 > li:last-child,
ol.li-mb35 > li:last-child,
ul.li-mb40 > li:last-child,
ol.li-mb40 > li:last-child,
ul.li-mb45 > li:last-child,
ol.li-mb45 > li:last-child,
ul.li-mb50 > li:last-child,
ol.li-mb50 > li:last-child{margin-bottom:0px !important;}

a{
	color:var(--link-color);
	text-decoration:none;
}
a:hover{
	text-decoration:underline;
}

a.tel-link{
	color:var(--base-color);
	text-decoration:none;
	pointer-events:none;
}
a.pdf-link::after,
a.excel-link::after,
a.word-link::after,
a.zip-link::after{
	content:"";
	width:18px; height:18px;
	background-repeat:no-repeat;
	background-position:center center;
	background-size:contain;
	display:inline-block;
	margin:0 0 0 4px;
	position:relative;
	top:3px;
}
a.pdf-link::after{
	background-image:url(../../img/svg/icon_pdf.svg);
}
a.excel-link::after{
	background-image:url(../../img/svg/icon_xls.svg);
}
a.word-link::after{
	background-image:url(../../img/svg/icon_doc.svg);
}
a.zip-link::after{
	background-image:url(../../img/svg/icon_zip.svg);
}
a.website-link::after{
	content:"";
	background:url(../../img/svg/link.svg) no-repeat center center;
	background-size:contain;
	display:inline-block;
	margin:0 0 0 0.2em;
	width:18px; height:18px;
	position:relative;
	top:0.2em;
}

.left{
	float:left;
}
.right{
	float:right;
}
.alignleft{
	display:inline-block;
	text-align:left;
}
.alignright{
	display:inline-block;
	float:right;
}
.aligncenter{
	margin:0 auto !important;
	text-align:center !important;
}

.flex{display:flex;}
.flex-between{justify-content:space-between;}
.flex-center{justify-content:center !important;}
.flex-wrap{flex-wrap:wrap;}
.flex-reverse{flex-direction:row-reverse;}
.flex > .text-box{flex:1;}

.hissu{color:#FF0000 !important;}
.pc-block{display:block !important;}
.pc-none{display:none !important;}
.schema-data{display:none !important;}
.red{color:#dd0000 !important;}

.no-pointer{pointer-events:none;}

.w180{width:180px;}
.w200{width:200px;}
.w240{width:240px;}
.w260{width:260px;}
.w280{width:280px;}
.w300{width:300px;}
.w320{width:320px;}
.w340{width:340px;}
.w360{width:360px;}
.w380{width:380px;}
.w400{width:400px;}
.w420{width:420px;}
.w440{width:440px;}
.w460{width:460px;}
.w480{width:480px;}
.w500{width:500px;}
.w520{width:520px;}
.w540{width:540px;}
.w560{width:560px;}
.w580{width:580px;}
.w600{width:600px;}

.w40{width:40% !important;}
.w42{width:42% !important;}
.w44{width:44% !important;}
.w45{width:45% !important;}
.w46{width:46% !important;}
.w47{width:47% !important;}
.w48{width:48% !important;}
.w49{width:49% !important;}
.w50{width:50% !important;}
.w52{width:52% !important;}
.w54{width:54% !important;}
.w55{width:55% !important;}
.w56{width:56% !important;}
.w58{width:58% !important;}
.w60{width:60% !important;}

/* form reset
++++++++++++++++++++++++++++++*/
input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="submit"],
input[type="button"],
input[type="reset"],
button,
select,
textarea{
	box-sizing:border-box;
	margin:0; padding:0;
	outline:none;
	-webkit-appearance:none;
	appearance:none;
	border-radius:3px;
	outline:none;
	background:#fcfcfc;
	border:1px solid #CCC;
	width:100%;
	font-size:1em; line-height:1.8;
	color:var(--base-color);
}
input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
select{
	height:40px;
	text-indent:1.0em;
}
select::-ms-expand{
  display:none;
}
select:-moz-focusring{
  color:transparent;
  text-shadow:0 0 0 #828c9a;
}
textarea{
	height:200px;
	margin:0;
	padding:1em;
}
input[type="submit"],
input[type="button"],
input[type="reset"]{
	display:block;
	margin:0 auto;
	width:300px; height:40px;
	border-color:var(--main-color);
	border-radius:24px;
	cursor:pointer;
	transition:0.3s;
}
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover{
	color:#FFF;
	background-color:var(--main-color);
	transition:0.3s;
}
input[type="submit"]:disabled{
	border-color:#ccc;
	color:#666;
	background:#ccc;
	cursor:not-allowed;
	transition:0.3s;
}

.select-wrapper{
	box-sizing:border-box;
	height:40px;
	overflow:hidden;
	background:#fcfcfc;
	border:1px solid #CCC;
	border-radius:3px;
	position:relative;
}
.select-wrapper select{
	width:110%;
	border:none;
	background:transparent;
	position:relative; z-index:2;
}
.select-wrapper::before{
	content:"";
	border-top:6px solid var(--main-color);
	border-left:6px solid transparent;
	border-right:6px solid transparent;
	position:absolute;
	top:50%; right:10px;
	transform:translateY(-50%);
}
input::placeholder{
	font-size:0.95em;
	color:#999 !important;
}

input:focus::-webkit-input-placeholder{color:transparent !important;}
input:focus::-moz-placeholder{color:transparent !important;}
input:focus::-ms-input-placeholder{color:transparent !important;}
input:focus::placeholder{color:transparent !important;}

/* initialize
++++++++++++++++++++++++++++++*/
*{margin:0; padding:0; font-style:normal;}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section{
	display: block;
}

img{border:none; display:block;}

.align-left{text-align:left;}
.align-right{text-align:right;}
.align-center{text-align:center;}

.clear{clear:both; display:block;}

li{list-style:none;}


/* clearfix
++++++++++++++++++++++++++++++*/
.clearfix:after{
	content:" ";
	display:block;
	clear:both;
	height:0;
	visibility:hidden;
}

.clearfix{display:inline-block;}

/* Hides from IE-mac */
* html .clearfix{height:1%;}
.clearfix{display:block;}
/* End hides from IE-mac */


/* slick reset
++++++++++++++++++++++++++++++*/
.slick-slider{
	margin-bottom:0 !important;
}
.slick-container .slick-dots li{
	position:relative;
	display:inline-block;
	width:20px; height:20px;
	margin:0;
	padding:0;
	cursor:pointer;
}
.slick-container .slick-dots li button{
	font-size:0em; line-height:0;
	color:transparent;
	display:block;
	width:20px; height:20px;
	padding:0;
	cursor:pointer;
	border:0;
	outline:none;
	background:transparent;
	position:relative;
}
.slick-container .slick-dots li button::before{
	content:'';
	font-family:var(--default-font);
	font-size:0.38em; line-height:20px;
	color:black;
	text-align:center;
	position:absolute;
	top:50%; left:50%;
	transform:translate(-50%,-50%);
	width:10px; height:10px;
	background:#fff;
	border-radius:100%;
	opacity:0.25;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
}
.slick-container .slick-dots li.slick-active button::before{
  opacity:0.75;
	color:black;
}

/* image cover effect
++++++++++++++++++++++++++++++*/
.cover-item{
	position:relative;
}
.cover-item::after{
	content:"";
	display:block;
	width:0; height:100%;
	background:#fff;
	position:absolute;
	top:0; left:0;
	transition:width 1s cubic-bezier(0.7,0,0.3,1);
}
.cover-item.effect::after{
	width:100%;
}

/* scroll up
++++++++++++++++++++++++++++++*/
#scrollUp{
	bottom:20px; right:20px;
	width:48px; height:48px;
	text-indent:-9999px;
	background:rgba(18,120,175,0.6);
	border-radius:100%;
	position:relative;
}
#scrollUp::before{
	content:"";
	width:48px; height:48px;
	background-image:url(../../img/common/arrow-up.svg);
	background-repeat:no-repeat;
	background-position:center center;
	background-size:24px auto;
	position:absolute;
	top:0; left:0;
}
a#scrollUp:hover{border:none;}

/* pagenavi style
++++++++++++++++++++++++++++++*/
.pagenavi-box .wp-pagenavi{
	padding:0 !important;
	display:flex !important;
	flex-wrap:wrap;
	font-size:0.8rem !important;
	float:none !important;
}
.pagenavi-box .wp-pagenavi a,
.pagenavi-box .wp-pagenavi span.pages,
.pagenavi-box .wp-pagenavi span.extend,
.pagenavi-box .wp-pagenavi span.current{
	font-size:0.8rem !important;
	line-height:1.0;
	padding:0.6em 0.8em !important;
}

/* floating
++++++++++++++++++++++++++++++*/
#floating-box{
	position:fixed;
	bottom:25px; right:25px; z-index:8888;
	opacity:0;
	transition:opacity 0.2s ease-in;
}
.scrolling #floating-box{
	opacity:1;
	transition:opacity 0.2s ease-in;
}
#floating-box .join{
}
#floating-box .join a{
	display:block;
	text-decoration:none;
	font-size:0.8rem; line-height:1; font-weight:700;
	color:var(--base-color);
	background:#fff;
	padding:1.25em 2.25em;
	padding-left:4.5em;
	border-radius:9999px;
	box-shadow:1px 1px 2px #999;
	position:relative;
	transition:0.2s;
}
#floating-box .join a:hover{
	color:#fff;
	background:var(--key-color02);
	transition:0.2s;
}
#floating-box .join a::before{
	content:"";
	width:auto; height:90%;
	aspect-ratio:1/1;
	border-radius:9999px;
//	background-color:var(--main-color);
//	background-image:url(../../img/common/hand_white.svg);
//	background-image:url(../../img/common/mark.png);
	background-image:url(../../img/common/logo02.gif);
	background-repeat:no-repeat;
	background-position:center center;
	background-size:auto 68%;
	background-size:auto 68%;
	position:absolute;
	top:5%; left:1.0%;
	left:6%;
	transition:0.2s;
}
#floating-box .join a:hover::before{
	background-size:auto 88%;
	background-size:auto 68%;
	transition:0.2s;
}
#floating-box .join a span{
	position:relative;
	z-index:1;
}

/* 自動翻訳 ヘッダー Google */
.skiptranslate iframe{
	display:none;
}
