/*
Theme Name: entaxjp
Author: 中西
Description: entax.jp用wpテーマ
Version: 1.0
*/
@charset "UTF-8";
/*基本*/
:root{
	/*color*/
	--clr-bg1:#ececec;
	--clr-bg2:#dddddd;
	--clr-bg3:#c5c5c5;
	--clr-bg4:#767676;
	--clr-txt1:#000000;
	--clr-txt2:#ffffff;
	--clr-txt3:#acacac;
	--clr-acsent1:#6cb3ff;
	--clr-acsent2:#ffad28;
	--clr-acsent3:#3b80c9;
	--clr-acsent4:#fef1e7;
	--clr-watermark1:rgba(80, 109, 110, 0.7);
	--clr-watermark2:rgba(0, 0, 0, 0.6);
	--clr-gr1:linear-gradient(to right, var(--acsent-col1), #4391e4 50%, #0e417a);
	/*font*/
}
html, body, div, h1, h2, h3, h4, h5, h6, p, blockquote, pre, address, ul, ol, li,dl, dt, dd, table, th, td, form, fieldset {
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-family: 'Noto Sans JP', sans-serif,"DM Serif Text", serif;
    line-height: 1.6em;
	color: var(--clr-txt1);
}
html{overflow-x: hidden;}
article,aside,canvas,details,figcaption,figure,header,footer,main,menu,nav,section,summary {display: block;}
body{background-color:var(--clr-bg2);overflow: hidden;}
p { 
	margin: 0; 
	padding:0; 
	text-align:justify; 
	line-height: 2.3;
	color:var(--clr-txt1);
	letter-spacing: 0.2em;
	font-weight: 400;
	font-feature-settings: 'palt' 1;
}
a {	text-decoration:none;color: var(--clr-txt1);}
h1,h2,h3,h4,h5,h6{text-align: center;}
h2{}
img { border: 0; }
caption{text-align: left;}
ul,ol{list-style: none;}
section{margin:200px 0;}
h1{font-size: 40px; 
	color: var(--clr-txt1);
	text-align: center;
	text-shadow: 4px 4px 8px var(--clr-watermark2);
	position: relative;
	margin-bottom: 40px;
	width: fit-content;
}
h1.has-text-align-center{
	margin: 40px auto;
}
h1::before{
	content: '';
	position: absolute;
	width: calc(100%);
	height: 30px;
	background-image: url(images/title-border.svg);
	background-size: contain;
	bottom: -20px;
    left: 0;
    z-index: -1;
    opacity: 1;
}
h2{
	font-size: 30px;
	font-weight: 700;
	position: relative;
    border-bottom: 2px solid #f4f4f4;
    padding-bottom: 5px;
    font-family: 'Noto Sans JP', sans-serif;
	width: fit-content;
	margin: 30px 0;
}
h2.has-text-align-center{margin: 30px auto;}
h2::before{
	content: '';
    width: 24.44px;
    height: 2px;
    background: var(--clr-acsent2);
    position: absolute;
    left: 0;
    bottom: -2px;
}
::selection {}
/*共通*/
.logo{width: 50px;height:50px;}
.title{border-bottom: double 6px var(--clr-acsent1); width: min-content;padding: 0 50px;margin:50px auto;}
.subTitle{font-size: 50%;display: flex;flex-direction: column;line-height: 50%;}
.subTitle::after{
	content: '';
	display: inline-block;
	width: 60px;
	height: 3px;
	background: var(--background-gr);
	margin-top: .15rem;
}
.left{float:left;}
.right{float:right;}
.center { margin:0 auto; text-align:center;}
.clear{ clear: both; }
.watermark{
	position: absolute;
	background-color: var(--clr-watermark1);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.strong{
	font-weight: 700;
}
.btn{
	position: relative;
	display: inline-block;
    padding: 8px 45px;
	padding-right: 70px;
    border-radius: 99px;
    background-color: var(--clr-acsent1);
    color: var(--clr-txt1);
    margin: 20px 0;
	box-shadow: 0 3px var(--clr-acsent3);
	top:-2px;
	color: var(--clr-txt2);
	font-family: Arial;
}
.btn:hover{
	background-color: var(--clr-acsent3);
	top:1px;
}
#contact .btn:after{display: none;}
.btn:after{
	content:'';
	position: absolute;
	background-image: url(./images/arrow.svg);
	background-repeat: no-repeat;
	width: 28px;
	height: 28px;
	top:50%;
	right: 0;
	transform: translate(-50%,-50%);
}