@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@700&family=Zen+Kaku+Gothic+New:wght@500;700;900&display=swap');

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

	base

-----------------------------------*/
html {
    overflow-y: auto;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 62.5%;
	overflow-x: hidden;
}
body {
    font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 20px;
    font-size: 2.6em;
	color: #000000;
    line-height: 1;
	letter-spacing: 0;
	font-weight: 700;
	background: #ffffff;
	margin:0 !important;
	width: 100%;
	position: relative;
}
*, *:before, *:after {
	box-sizing: border-box;
}
.contents_inner{
	max-width: 1090px;
    width: 90%;
	margin: 0 auto;
}
img {
    max-width: 100%;
    height: auto;
}
a, a:link, a:visited {
	display: block;
	color: #000000;
	text-decoration:none;
    cursor: pointer;
	transition: all 0.5s;
}
a:hover {
	opacity: 0.6;
	text-decoration:none;
}
.tab{
	display: none;
}
.sp{
	display:none;
}
.pc{
	display:block;
}
@media screen and (max-width: 840px) {
	.pc{
		display:none;
	}	
	.sp{
		display:none;
	}
	.tab{
		display:block;
	}
}
@media screen and (max-width: 640px) {
	body {
		font-size: 13px;
		font-size: 1.3em;
	}
	.pc{
        display:none;
    }
	.tab{
        display:none;
	}
    .sp{
        display:block;
    }
}
/*-----------------------------------

	clearfix

-----------------------------------*/
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix {
    display: inline-block;
}
* html .clearfix {
    height: 1%;
}
.clearfix {
    display: block;
}
/*-----------------------------------

	header

-----------------------------------*/
header {
	position: fixed;
	width: 100%;
	background: #FFF;
	top: 0;
	left: 0;
	z-index: 999;
}
header .contents_inner {
	height: 100px;
	display:flex;
	justify-content: space-between;
	align-items: center;
	gap: 0 30px;
}
header #logo {
	width: 373px;
	line-height: 0;
}
header #nav_menu ul {
	display:flex;
	align-items: center;
	column-gap: 20px;
}
header #nav_menu > ul > li > a {
	font-size: 15px;
	padding: 5px 15px;
	white-space: nowrap;
	text-align: center;
}
header #nav_menu > ul > li.current > a {
	color: #FFF;
	opacity: 1;
	background: #000;
	border-radius: calc(1px/0);
}
header #nav_menu ul li.has-child {
	position: relative;
}
header #nav_menu ul li.has-child a span {
	font-weight: 900;
	color: #F8DD02;
	margin-left: 0.2em;
	-webkit-text-stroke: 1px #F8DD02;
}
header #nav_menu ul li.has-child ul {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px 0;
	position: absolute;
	left: 50%;
	top:25px;
	transform: translateX(-50%);
	z-index: 4;
	background:#FFF;
	width: max-content;
	padding: 20px 30px;
	border-radius: 20px;
	border: 1px solid #F5F3F0;
	visibility: hidden;
	opacity: 0;
	transition: all .3s;
}
header #nav_menu ul li.has-child:hover > ul,
header #nav_menu ul li.has-child:active > ul {
  visibility: visible;
  opacity: 1;
}
header #nav_menu ul li.has-child ul li a {
	display: block;
	width: max-content;
	font-size: 13px;
	font-weight: 500;
}
header .menu_btn_wrap {
    display: none;
}
@media screen and (max-width: 1100px) {
	header #nav_menu ul {
		column-gap: 10px;
	}
}
@media screen and (max-width: 840px) {
	header .contents_inner {
		height: 90px;
	}
	header #logo {
		width: 235px;
		position: relative;
		z-index: 999;
	}
	header .menu_btn_wrap {
        display: block;
		width: 70px;
		height: 90px;
		cursor:pointer;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 999;
	}
	header .menu_btn_wrap .menu_btn {
		width: 30px;
		height: 23px;
		display: block;
		position: absolute;
		top: calc(50% - 11.5px);
		left: calc(50% - 15px);
		transition: all 0.3s;
		z-index:999;
	}
	header .menu_btn_wrap .menu_btn .lineh,
	header .menu_btn_wrap .menu_btn .linem,
	header .menu_btn_wrap .menu_btn .lineb {
		position:absolute;
		left: 0;
		width: 30px;
		height: 2px;
		background: #000;
		transition:all 0.3s;
	}
	header .menu_btn_wrap .menu_btn .lineh {
		top:0;
	}
	header .menu_btn_wrap .menu_btn .linem {
		top: 50%;
		transform: translateY(-50%);
		opacity: 1;
	}
	header .menu_btn_wrap .menu_btn .lineb {
		bottom: 0;
	}
	header .menu_btn_wrap .menu_btn.active .lineh {
		transform:rotate(-135deg);
		top: 10.5px;
	}
	header .menu_btn_wrap .menu_btn.active .linem {
		opacity: 0;
	}
	header .menu_btn_wrap .menu_btn.active .lineb {
		transform:rotate(135deg);
		bottom: 10.5px;
	}	
	header #nav_menu {
		display: grid;
		place-content: center;
		width: 100%;
		height: 100vh;
		padding: 90px 0 0 0;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
		background: #FFF;
		position: fixed;
		top: 0;
		left: 0;
		visibility: hidden;
		opacity: 0;
		transition: all .5s;
		z-index: 998;
	}
	header #nav_menu.active {
		visibility: visible;
		opacity: 1;
	}
	header #nav_menu ul {
		display: block;
		width: fit-content;
	}
	header #nav_menu > ul > li:not(:last-child) {
		margin-bottom: 35px;
	}
	header #nav_menu > ul > li a {
		width: fit-content;
		margin: 0 auto;
	}
	header #nav_menu ul li.has-child ul {
		position: relative;
		left: auto;
		top: auto;
		transform: translateX(0);
		padding: 0;
		margin-top: 10px;
		border: none;
		background: none;
		visibility:visible;
		opacity:1;
		display: none;
		transition:none;
	}
	header #nav_menu ul li.has-child ul li:not(:last-child) {
		margin-bottom: 13px;
	}
}
/*-----------------------------------

	contents

-----------------------------------*/
#contents {
	padding-top: 100px;
}
@media screen and (max-width: 840px) {
	#contents {
		padding-top: 90px;
	}
}
/*-----------------------------------

	pagetop

-----------------------------------*/
#pagetop{
    position: fixed;
    right: 20px;
    bottom: 50px;
    cursor: pointer;
    z-index: 998;
    width: 40px;
    height: 40px;
	background: #000;
    border-radius: 50%;
    transition-duration: 0.3s;
}
#pagetop::after {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    position: absolute;
	top: 17px;
    left: 14px;
    transform: rotate(-45deg);
}
/*-----------------------------------

	headline

-----------------------------------*/
#headline {
	padding-top: 70px;
}


@media screen and (max-width: 900px) {
#headline {
	padding-top: 30px;
}
#headline .pc {
	display: block;
}
}

@media screen and (max-width: 640px) {
#headline {
	width: 100%;
	padding-top: 0px;
}
#headline .pc {
	display: none;
}

#headline .sp {
	width: 100%;
}

}


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

	footer

-----------------------------------*/
footer {
	background: #FFF;
	padding: 45px 0 55px;
}
footer #footer_wrap {
	display:flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}
footer #footer_wrap .f_left {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 40px;
}
footer #footer_wrap .f_left #footer_logo {
	width: 310px;
}
footer #footer_wrap .f_left #footer_logo a {
	display: block;
}
footer #footer_wrap .f_left .address {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.78;
	white-space: nowrap;
}
footer #footer_wrap .f_right ul {
	display: flex;
	gap: 0 20px;
}
footer #footer_wrap .f_right ul li {
	width: 66px;
}
footer #footer_wrap .f_right ul li img {
	display: block;
	width: 100%;
	height: 60px;
	object-fit: contain;
}
footer small {
	display: block;
	font-size: 12px;
	font-weight: 500;
	color: #818181;
}
@media screen and (max-width: 840px) {
	footer #footer_wrap {
		flex-direction: column;
		gap: 30px 0;
	}
	footer #footer_wrap .f_left {
		justify-content: center;
	}
	footer small {
		text-align: center;
	}
}
@media screen and (max-width: 640px) {
	footer {
		padding: 30px 0 40px;
	}
	footer #footer_wrap {
		margin-bottom: 30px;
	}
	footer #footer_wrap .f_left #footer_logo {
		width: 262px;
	}
	footer #footer_wrap .f_left .address {
		font-size: 12px;
		white-space: normal;
		width: 65%;
	}
	footer #footer_wrap .f_right ul {
		gap: 0 15px;
	}
}

/* WP Table Builderプラグイン */
.wptb-table-container,
.wptb-table-container table,
.wptb-table-container th,
.wptb-table-container td {
    all: unset;
}