@charset "UTF-8";
/* 共通 */
html {
	font-size: 100%;
}
body {
	position: relative;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 500;
	color: #595757;
	font-size: 16px;
	background: #fffdf7;
	-webkit-font-smoothing: antialiased; /*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: 0.1em;
	line-height: 1.9;
	overflow: auto;
}
.hamopen {
	overflow: hidden;
	width: 100vw;
	height: 100vh;
}
a {
	text-decoration: none;
	transition: .4s;
}
/*=====ウェブアクセシビリティ=====*/
a:focus-visible {
	outline: 4px solid blue !important;
	outline-offset: -1px;
	box-shadow: 0 0 0 4px white;
}
button:focus-visible {
	outline: 4px solid blue !important;
	outline-offset: -1px;
	box-shadow: 0 0 0 4px white;
}
ul, ol {
	list-style: none;
	padding: 0;
}
main {
	display: block;
	position: relative;
	overflow: hidden;
}
main section {
	padding: 70px 0 135px;
	position: relative;
}
main section.stb {
	padding: 110px 0;
}
@media (max-width: 550px) {
	main section {
		padding: 35px 0 75px;
	}
	main section.stb {
		padding: 50px 0 80px;
	}
}
/* 画像 */
img {
	line-height: 1;
	vertical-align: top;
	max-width: 100%;
	transition: .4s;
}
.round img {
	border-radius: 10px;
}
/* テキスト */
p {
	margin-bottom: 10px;
}
.marker {
	text-decoration: underline;
	text-decoration-thickness: 0.45em;
	text-decoration-color: rgba(255, 239, 135, 0.55);
	text-underline-offset: -0.05em;
	text-decoration-skip-ink: none;
}
/*見出し01*/
.maintitle {
	margin-bottom: 60px;
	display: block;
	text-align: center;
	line-height: 1.65;
	position: relative;
	font-weight: 700;
	font-size: clamp(1.45rem, 0.7625rem + 2.2vw, 2rem);
}
.maintitle .mf {
	text-align: center;
	margin-bottom: 10px;
	text-transform: uppercase;
	position: relative;
	letter-spacing: 0.08em;
	font-size: 46%;
	color: #242f5c;
}
.maintitle.mtleft {
	text-align: left;
}
.txtmgb {
	margin-bottom: 33px !important;
}
.maintitle.mtleft .mf {
	position: relative;
	padding-left: 47px;
}
.maintitle.mtleft .mf::before {
	background-color: #242f5c;
	position: absolute;
	content: "";
	top: 0.7em;
	left: 0;
	width: 35px;
	height: 1px;
}
@media (max-width: 750px) {
	.maintitle.mtleft.spcenter .mf {
		padding-left: 0;
	}
	.maintitle.mtleft.spcenter .mf::before {
		content: none;
	}
}
@media (max-width: 550px) {
	.txtmgb {
		margin-bottom: 20px !important;
	}
	.maintitle {
		margin-bottom: 35px;
	}
}
/*見出し02*/
.mtitle {
	font-weight: 700;
	position: relative;
	margin-bottom: 15px;
	letter-spacing: 0.1em;
	font-size: clamp(1.07rem, 0.595rem + 1.52vw, 1.45rem);
	line-height: 1.7;
	background: #242f5c;
	color: #fff;
	padding: 7px 10px 10px 14px;
	border-radius: 5px;
}
.mtitle::after {
	content: '';
	width: 30px;
	height: 1px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background: #fffdf7;
	pointer-events: none;
}
@media (max-width: 550px) {
	.mtitle {
		margin-bottom: 13px;
		padding-left: 10px;
	}
}
/*見出し03*/
.stitle {
	font-weight: 700;
	position: relative;
	font-size: clamp(1.2rem, 0.8875rem + 1vw, 1.45rem);
	border-bottom: 1px solid #595757;
	margin-bottom: 17px;
	padding-bottom: 10px;
	padding-left: 2px;
	line-height: 1.75;
}
.stitle .en {
	font-size: 60%;
	color: #242f5c;
	margin-right: 11px;
	text-transform: uppercase;
	padding-left: 37px;
	position: relative;
}
.stitle .en::before {
	background-color: #595757;
	position: absolute;
	content: "";
	top: 0.9em;
	left: 0;
	width: 29px;
	height: 1px;
}
.stitle.dotted {
	border-bottom: 2px dotted #919eb8 !important;
}
@media (max-width: 750px) {
	.stitle {
		margin-bottom: 10px;
	}
}
/*ボタン*/
.mainbtn a {
	position: relative;
	vertical-align: middle;
	margin: 0 auto;
	padding: 12px;
	transition: .4s;
	display: inline-block;
	width: 240px;
	text-align: center;
	z-index: 1;
	overflow: hidden;
	border: 1px solid #082c72;
	color: #fff;
	background: #082c72;
	border-radius: 30px;
	font-size: 90%;
}
section .mainbtn a::before {
	position: absolute;
	top: 50%;
	right: 15px;
	font-family: "Font Awesome 6 Free";
	content: "\f105";
	font-weight: bold;
	line-height: 1;
	transform: translate(0, -50%);
	font-size: .75em;
}
.mainbtn a:hover {
	color: #082c72;
	background: #fff;
	transition: .4s;
}
@media (max-width: 450px) {
	.mainbtn {
		margin: auto;
	}
	.mainbtn a {
		width: 220px;
		padding: 10px;
	}
}
/*flex要素*/
.flexbox {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
@media (max-width: 750px) {
	.flexbox {
		display: block;
	}
	.flexbox img {
		width: 100%;
	}
	.flexbox .round {
		margin-bottom: 7px;
	}
	.flexbox div {
		width: 100%;
	}
}
.reverse {
	flex-direction: row-reverse;
}
/*幅*/
.inner {
	width: 89%;
	max-width: 1200px;
	margin: 0 auto;
}
.w80 {
	width: 80.5%;
}
.w65 {
	width: 65%;
}
.w52 {
	width: 52%;
}
.w48 {
	width: 48%;
}
.w44 {
	width: 44%;
}
.w32 {
	width: 31.5%;
}
.w17 {
	width: 17%;
}
/*background*/
.bg_gray {
	position: relative;
}
.bg_gray::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
	z-index: -100;
	opacity: 0.05;
}
/* bgillust */
.bgtb::after {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url(../img/bg01a.svg), url(../img/bg01b.svg);
	background-repeat: no-repeat;
	background-position: top left, bottom right;
	background-size: 30%;
	z-index: -1;
	opacity: 0.03;
}
.bgtl::after {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url(../img/bg01a.svg);
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 30%;
	z-index: -1;
	opacity: 0.03;
}
.bgbr::after {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url(../img/bg01b.svg);
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: 30%;
	z-index: -1;
	opacity: 0.03;
}
@media (max-width: 550px) {
	.bgtl::after, .bgtb::after, .bgtr::after, .bgbr::after {
		background-size: 200px;
	}
}
/* 反転 */
.bgx::before, .bgx::after {
	transform: scaleX(-1);
}
.bgy::before, .bgy::after {
	transform: scaleY(-1);
}
.bgxy::before, .bgxy::after {
	transform: scaleX(-1) scaleY(-1);
}
/*=== 共通部分ここまで ===*/
/* header */
.header_sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background-color: transparent;
	border-bottom: 1px solid transparent;
	transition: all .5s;
}
.change_color {
	background: #fffdf7;
	transition: .1s;
	box-shadow: 0px 4px 4px -5px rgba(0, 0, 0, 0.2);
}
.header {
	padding: 11px 0 0;
	width: 100%;
	position: relative;
}
.header_inner {
	max-width: 1900px;
	width: 96%;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header_title a {
	display: flex;
	align-items: center;
}
.header_logo {
	width: 335px;
	filter: brightness(0) invert(1);
}
.change_color .header_logo {
	filter: none;
}
.header h1 {
	transition: .3s;
	z-index: 110;
}
.header_title:hover h1 {
	opacity: 0.7;
	transition: .3s;
}
.header .inner {
	max-width: 1200px;
}
.header ul {
	display: flex;
	align-items: center;
}
.header ul li {
	width: fit-content;
	padding: 0 0 7px;
}
.header ul li a {
	display: block;
	width: 100%;
	transition: all .3s;
	position: relative;
	top: 0;
	padding: 6px;
	color: #fff;
	font-size: 1.1rem;
	margin-right: 25px;
	line-height: 1.7;
	font-weight: 700;
}
.change_color .header ul li a {
	color: #595757;
}
.header ul li:last-child a {
	margin-right: 0;
}
.header ul li a span {
	display: block;
	font-size: 63%;
	color: #fff;
	transition: all .3s;
	text-transform: uppercase;
	white-space: nowrap;
}
.header ul li a span::before {
	font-family: "Font Awesome 6 Free";
	content: "\f105";
	font-weight: bold;
	margin-right: 4px;
	font-size: 0.5rem;
	display: inline-block;
	transform: translateY(-2px);
}
.change_color .header ul li a {
	color: #595757;
}
.change_color .header ul li a span {
	color: #082c72;
}
.header ul li a:hover {
	opacity: 0.6;
}
.header_item {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 10px;
}
.header_item > div {
	margin: 0 8.5px;
}
.header_item .mainbtn a {
	width: 165px;
	line-height: 1;
	padding: 9.5px;
	font-size: 0.9rem;
	border: 1px solid #fff;
	color: #fff;
	background: transparent;
}
.header_item .mainbtn a:hover {
	color: #082c72;
	background: #fff !important;
	border: 1px solid #082c72 !important;
}
.change_color .header_item .mainbtn a {
	background: #082c72;
}
.tel a {
	color: #fff;
}
.change_color .tel a {
	color: #082c72;
}
.tel {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.3;
	transition: .3s;
}
.tel a:hover {
	opacity: 0.6;
	transition: .3s;
}
.tel i {
	font-size: 80%;
}
/* hamburger */
.header__inner {
	display: none;
}
.hamburger {
	position: fixed;
	display: block;
	height: 40px;
	top: 10px;
	right: 19px;
	z-index: 9999;
	width: 60px;
	border: none;
	background-color: transparent;
}
.hamburger.-active {
	filter: none;
}
.hamburger.-active .hamburger__line {
	background-color: transparent;
}
.hamburger.-active .hamburger__line::before {
	top: 0;
	transform: rotate(45deg);
	background: #082c72;
}
.hamburger.-active .hamburger__line::after {
	top: 0;
	transform: rotate(-45deg);
	background: #082c72;
}
/*
.hamburger.-active .hamburger__text::before {
	content: 'close';
}
*/
.hamburger__line {
	display: block;
	height: 2px;
	position: absolute;
	top: 23px;
	left: 50%;
	transform: translateX(-50%);
	width: 55px;
	background-color: #fff;
	transition: 0.4s;
}
.hamburger__line:before, .hamburger__line:after {
	content: "";
	display: block;
	height: 100%;
	position: absolute;
	width: 100%;
	background-color: #fff;
	transition: inherit;
}
.change_color .hamburger__line, .change_color .hamburger__line:before, .change_color .hamburger__line:after {
	background: #082c72;
}
.hamburger__line:before {
	top: -10px;
}
.hamburger__line:after {
	top: 10px;
}
.hamburger__text {
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
}
/*
.hamburger__text::before {
	content: "menu";
	text-align: center;
	color: #595757;
	font-size: 19px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
*/
.header {
	width: 100%;
}
.header__nav-area {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	height: 100vh;
	width: 100%;
	visibility: hidden;
	opacity: 0;
	overflow-y: scroll;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #f4f4ee;
}
.header__nav-area.-active {
	opacity: 1;
	visibility: visible;
}
.global-navigation {
	margin: auto;
	height: fit-content;
	width: 85%;
}
.global-navigation__list > li {
	margin: 3px 0;
	font-weight: 700;
	font-size: 1.05rem;
	transition: .35s;
	display: block;
	padding: 10px 5px 13px;
	border-bottom: 1px solid #d9d9d9;
}
.global-navigation__list > li a {
	color: #595757;
	display: inline-block;
	line-height: 2.2;
	width: 100%;
}
.global-navigation__list > li a span {
	display: block;
	font-size: 75%;
	color: #082c72;
	transition: all .3s;
	text-transform: uppercase;
	white-space: nowrap;
	position: relative;
}
.global-navigation__list > li a span::before {
	font-family: "Font Awesome 6 Free";
	content: "\f105";
	font-weight: bold;
	margin-right: 4px;
	font-size: 0.5rem;
	display: inline-block;
	transform: translateY(-2px);
}
.global-navigation__link.-active::after {
	transform: translateY(-50%) rotate(-90deg);
}
/*btn*/
.fax.mainbtn a {
	pointer-events: none !important;
	background: #031852 !important;
}
.fax.mainbtn a::before {
	content: none;
}
.beforenone::before {
	content: none !important;
}
.hambtns {
	display: flex;
	justify-content: space-between;
	max-width: 750px;
	width: 100%;
	margin: auto;
	margin-top: 30px;
}
.hambtns .mainbtn {
	width: 32%;
}
.hambtns .mainbtn a {
	font-size: 0.87rem;
	width: 100%;
}
@media (max-width: 635px) {
	.global-navigation {
		padding: 70px 0;
	}
	.global-navigation__list > li {
		font-size: 0.9rem;
		padding: 5px 5px 9px;
	}
	.hambtns {
		display: block;
		max-width: 250px;
	}
	.hambtns .mainbtn {
		width: 100%;
		margin-bottom: 7px;
	}
}
/*accordion menu*/
.accordion__list li {
	font-size: 1rem;
}
.accordion__list li + li {
	margin-top: 11px;
}
.accordion__list li a::before {
	display: inline-block;
	font-family: "Font Awesome 6 Free";
	content: "\f105";
	font-weight: bold;
	margin-right: 7px;
	font-size: 0.6rem;
	transform: translateY(-2px);
	color: #082c72;
}
.accordion__link {
	opacity: 0.85;
}
.accordion {
	height: 0;
	overflow: hidden;
	visibility: hidden;
	transition: 0.4s;
}
.accordion.-active {
	height: auto;
	padding-top: 17px;
	visibility: visible;
}
.global-navigation__link.-accordion {
	position: relative;
	background: none;
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	padding: 0;
	text-align: left;
	color: #082c72;
}
.global-navigation__link.-accordion::after {
	content: '';
	display: block;
	height: 12px;
	position: absolute;
	top: 50%;
	right: 5px;
	width: 2px;
	background-color: #082c72;
	transform: translateY(-50%);
	transition: transform 0.4s;
}
.global-navigation__link.-accordion::before {
	content: '';
	display: block;
	height: 2px;
	position: absolute;
	top: 50%;
	right: 0;
	width: 12px;
	background-color: #082c72;
	transform: translateY(-50%);
}
.global-navigation__link.-active::after {
	transform: translateY(-50%) rotate(-90deg);
}
@media (max-width: 1150px) {
	.border_b {
		border-top: none;
	}
	.header {
		padding: 13px 16px 8px;
	}
	.header__inner {
		display: block;
	}
	.header_nav {
		display: none;
	}
	.header .inner {
		display: none;
	}
	.header_inner {
		margin: 0 auto;
		padding: 0;
		width: 100%;
	}
	.header_logo {
		width: 300px;
	}
}
@media (max-width: 550px) {
	.global-navigation__list {
		margin-top: -30px;
	}
	.header {
		padding: 10px 8px;
	}
	.header_logo {
		width: 220px;
	}
	.hamburger {
		top: 2.5px;
		right: 8px;
	}
	.hamburger__line {
		width: 49px;
	}
	.hamburger__line::before {
		top: -9px;
	}
	.hamburger__line::after {
		top: 9px;
	}
	.menu_content .mainbtn {
		margin-right: auto !important;
		margin-left: auto !important;
		width: 220px !important;
	}
	.menu_content .mainbtn a {
		width: 100%;
		padding: 9.5px !important;
	}
	.menu_content ul li {
		margin: 4px 0;
	}
	.menu_content ul li a {
		padding: 7px 0;
	}
	.menu_content .mainbtn {
		margin: 0 15px;
		margin-bottom: 5px;
	}
}
/* footer */
footer .bg_gray::after {
	opacity: 0.1;
}
.footerwrap {
	padding: 50px 20px 40px;
}
.footerwrap .inner {
	max-width: 920px;
}
.fbox {
	margin-bottom: 35px;
}
.fbox p {
	font-size: 97%;
}
.spblock {
	display: none;
}
/*ロゴ*/
.flogo {
	width: 90%;
	max-width: 335px;
	margin: auto;
	margin-bottom: 10px;
}
@media (max-width: 550px) {
	.spblock {
		display: block;
	}
	.footerwrap {
		padding: 45px 20px 27px;
	}
	.flogo {
		max-width: 240px;
		margin-bottom: 5px;
	}
}
/**/
.fblex {
	display: flex;
	justify-content: space-between;
}
.fblex .mainbtn {
	width: 32%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.fblex .mainbtn a {
	width: 100%;
	box-shadow: none;
	white-space: nowrap;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	height: 100%;
	padding: 16px 0;
}
.mbfaxmini {
	width: 100%;
	font-size: 83%;
	margin-top: 1px;
}
@media (max-width: 990px) {
	.fblex .mainbtn a {
		font-size: 0.9rem;
	}
}
@media (max-width: 835px) {
	.fblex {
		display: block;
	}
	.fblex .mainbtn {
		width: 100%;
		margin: auto;
		max-width: 320px;
		margin-bottom: 7px;
	}
	.fblex .mainbtn:last-child {
		margin-bottom: 0 !important;
	}
	.fblex .mainbtn a {
		font-size: 100%;
	}
}
@media (max-width: 550px) {
	.fblex .mainbtn a {
		padding: 12px;
		font-size: 87%;
	}
}
/*copyright*/
.copyright {
	padding: 10px 5px 30px;
}
@media (max-width: 550px) {
	.copyright {
		font-size: 0.8rem;
		padding-bottom: 25px;
	}
}
/*ページ上に戻るボタン*/
.go_top {
	display: block;
	width: 65px;
	height: 65px;
	box-sizing: border-box;
	border: 1px solid transparent;
	background: #082c72;
	padding-top: 30px;
	text-align: center;
	letter-spacing: -1px;
	font-size: 85%;
	text-decoration: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 79;
	border-radius: 50px;
}
.go_top::before {
	font-family: "Font Awesome 6 Free";
	content: "\f077";
	font-weight: bold;
	color: #fff;
	font-size: 1.5rem;
	position: absolute;
	top: 49%;
	left: 49.5%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.go_top:hover {
	opacity: 0.6;
}
.tfade {
	position: relative;
	z-index: 79;
}
@media(max-width:550px) {
	.go_top {
		width: 52px;
		height: 52px;
		right: 15px;
		opacity: 1;
	}
	.go_top::before {
		font-size: 1.3rem;
	}
}
/* スライド */
.topslide {
	overflow: hidden;
	position: relative;
}
.topslide::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #000;
	z-index: 1;
	opacity: 0.2;
}
.slide_items {
	position: relative;
	width: 100%;
}
.slide_items img {
	width: 100%;
	height: 100vh;
	min-height: 520px;
	object-fit: cover;
}
/*スライドアニメーション*/
@keyframes fadezoom {
	0% {
		transform: scale(1.15);
	}
	100% {
		transform: scale(1);
	}
}
.slick-animation {
	animation: fadezoom 10s linear 0s normal both;
}
.slide_text {
	white-space: nowrap;
	position: absolute;
	top: 50%;
	left: 4%;
	transform: translateY(-50%);
	font-size: 2.4rem;
	letter-spacing: 0.08em;
	color: #fff;
	font-weight: 700;
	z-index: 2;
	line-height: 1.6;
	text-shadow: 0px 2.5px 3px rgb(0 0 0 / 10%), 0px -2.5px 3px rgb(0 0 0 / 5%);
}
.slide_text p {
	margin-bottom: 0;
}
.slide_text span {
	font-size: 50%;
	display: block;
	padding-left: 1%;
	text-transform: uppercase;
}
@media (max-width: 1170px) {
	.slide_text {
		top: 47%;
		font-size: 2rem;
	}
	.slide_items img {
		min-height: auto;
		height: 730px;
	}
}
@media (max-width: 750px) {
	.slide_text {
		font-size: 1.45rem;
	}
	.slide_items img {
		height: 510px;
	}
}
@media (max-width: 550px) {
	.slide_text {
		font-size: 5.1vw;
	}
	.slide_text span {
		font-size: 60%;
	}
}
/*============*/
.pdb {
	padding-bottom: 55px !important;
}
.pdb0 {
	padding-bottom: 1px !important;
}
@media (max-width: 550px) {
	.pdb {
		padding-bottom: 30px !important;
	}
}
.center {
	text-align: center;
}
@media (max-width:750px) {
	.spcenter {
		text-align: center !important;
	}
}
.fitc {
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
.tbtn {
	margin-top: 40px;
}
@media (max-width: 550px) {
	.tbtn {
		margin-top: 30px;
	}
}
.aic {
	align-items: center;
}
/*アニメーション*/
/*flowup*/
.flowup {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 2s, transform 1.5s;
	transition-delay: 0.35s;
}
.flowup.inview {
	opacity: 1;
	transform: translateY(0);
}
/*delay*/
.delay01 {
	transition-delay: 0.45s !important;
}
.delay02 {
	transition-delay: 0.55s !important;
}
@media (max-width:750px) {
	.flowup.delay01, .flowup.delay02 {
		transition-delay: 0.35s !important;
	}
}
/*illust*/
.illust {
	filter: invert(17%) sepia(73%) saturate(559%) hue-rotate(185deg) brightness(92%) contrast(90%);
}
.illust img {
	width: auto !important;
	height: 12.5vw !important;
}
@media (max-width:1250px) {
	.illust img {
		height: 170px !important;
	}
}
@media (max-width:1050px) {
	.illust img {
		height: 14vw !important;
	}
}
@media (max-width:550px) {
	.illust img {
		height: 100px !important;
	}
}
.righttop {
	position: absolute;
	top: 1%;
	right: 1%;
	z-index: 1;
	width: fit-content;
}
.leftbottom0 {
	position: absolute;
	bottom: 0;
	left: 1%;
	z-index: 1;
	width: fit-content;
}
.leftbottom {
	position: absolute;
	bottom: -30px;
	left: 1%;
	z-index: 1;
	width: fit-content;
}
.rightbottom {
	position: absolute;
	bottom: -30px;
	right: 1%;
	z-index: 1;
	width: fit-content;
}
/* 新着情報 ============*/
.news {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: #fdfdfa;
	width: 90%;
	max-width: 750px;
	padding: 25px 25px 30px;
	z-index: 5;
	border-radius: 10px;
}
.newsflex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.newstitle {
	border-right: 1px solid #bfbfbf;
	padding-right: 23px;
	margin-right: 10px;
	white-space: nowrap;
	font-size: 1.05rem;
	margin-bottom: 0;
	font-weight: 700;
}
#newsWrap {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#newsWrap ul#newsList {
	/*width: calc(100% - 120px) !important;*/
	width: 100%;
}
.newsbtn {
	font-size: 0.87rem;
	white-space: nowrap;
	color: #242f5c;
	padding: 2px 0 4px;
	border: 1px solid #242f5c;
	display: block;
	width: 105px;
	text-align: center;
}
.newsbtn:hover {
	color: #fff;
	background: #242f5c;
}
@media (max-width:750px) {
	.news {
		width: 93%;
		max-width: 100%;
		padding: 7px 11px 15px;
		bottom: 7px;
		right: 7px;
	}
	.newsflex, #newsWrap {
		display: block;
	}
	#newsWrap ul#newsList {
		width: 100% !important;
	}
	.newstitle {
		font-weight: 700;
		border-right: none;
		padding-right: 0;
		margin-right: 0;
		margin-bottom: 5px;
		padding-left: 10px;
		font-size: 1rem;
	}
	.newsbtn {
		font-size: 0.77rem;
		width: 90px;
		margin-left: auto;
		margin-top: 10px;
	}
}
/* ごあいさつ ============*/
.wtext {
	max-width: 1051px;
}
/*画像*/
.phflex {
	display: flex;
	justify-content: space-between;
	margin-top: 65px;
}
.phflex div {
	width: 49%;
	position: relative;
}
.phflex div:last-child {
	top: 20px;
}
@media(max-width:550px) {
	.phflex {
		margin-top: 45px;
	}
	.phflex div {
		width: 48%;
	}
	.phflex .round img {
		border-radius: 7px;
	}
	.phflex div:last-child {
		top: 10px;
	}
}
/* 事業紹介 ============*/
.services .inner {
	max-width: 1360px;
}
.services .flexbox {
	margin-bottom: 55px;
}
.services .flexbox:last-child {
	margin-bottom: 0 !important;
}
/* 選ばれる理由 ============*/
.reaflex {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.reabox {
	background: rgba(0, 0, 0, 0.05);
	width: 31%;
	margin: 0 1% 20px;
	border-radius: 10px;
	padding: 30px;
	border: 2px dotted #ddd;
}
.reabox .rnum {
	font-size: 115%;
	font-weight: 700;
	text-align: center;
	line-height: 1.7;
}
.reabox .rnum span {
	display: block;
	color: #242f5c;
}
/*illust*/
.reabox div {
	width: fit-content;
	margin: auto;
	margin-bottom: 13px;
}
.reabox div img {
	width: auto !important;
	height: 170px !important;
	margin-bottom: 0;
	filter: invert(17%) sepia(73%) saturate(559%) hue-rotate(185deg) brightness(92%) contrast(90%);
}
@media (max-width: 920px) {
	.reabox {
		padding: 17px;
	}
	.reabox .rnum {
		font-size: 107%;
		font-weight: 700;
	}
}
@media (max-width: 750px) {
	.reaflex {
		display: block;
	}
	.reabox {
		width: 100%;
		margin-bottom: 15px;
	}
	.reabox:last-child {
		margin-bottom: 0;
	}
}
@media(max-width:550px) {
	.reabox div img {
		height: 120px !important;
	}
}
/*施工実績============*/
.works .maintitle {
	margin-bottom: 70px;
}
.works .tbtn {
	margin-top: 60px;
}
@media (max-width: 550px) {
	.works .maintitle {
		margin-bottom: 40px;
	}
	.works .tbtn {
		margin-top: 35px;
	}
}
.p_slider ul .slick-slide {
	margin-left: 35px !important;
	transition: .3s ease;
}
.p_slider ul li {
	position: relative;
}
.p_slider ul li:nth-child(2n+1) {
	margin-top: 30px;
	margin-bottom: 30px;
}
.p_slider ul li::before {
	content: '';
	display: block;
	padding-top: 70%; /*高さの比率*/
}
.p_slider ul li img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.3s ease;
}
.p_slider ul li p {
	position: absolute;
	bottom: -40px;
	left: 0;
	z-index: 3;
	display: none;
}
@media (max-width: 750px) {
	.p_slider ul .slick-slide {
		margin-left: 15px !important;
	}
	.p_slider ul li:nth-child(2n+1) {
		margin-top: 15px;
	}
	.p_slider ul li img {
		border-radius: 7px;
	}
}
@media (max-width: 420px) {
	.p_slider ul li p {
		bottom: -35px;
		font-size: 0.77rem;
	}
}
/*対応エリア ======================*/
.area {
	padding: 85px 0;
}
.area .inner {
	max-width: 700px;
}
.area .maintitle {
	margin-bottom: 20px;
}
.areatext {
	font-size: 115%;
	margin-bottom: 12px;
}
.note {
	font-size: 87% !important;
}
@media (max-width: 750px) {
	.areaimg {
		width: 60% !important;
		margin: auto;
		margin-bottom: 8px;
	}
	.areatext {
		width: fit-content;
		margin-left: auto;
		margin-right: auto;
		font-size: 100%;
	}
}
@media (max-width: 550px) {
	.area {
		background-attachment: scroll;
		padding: 45px 0 85px;
	}
	.area .maintitle {
		margin-bottom: 16px;
	}
}
/*採用情報 ======================*/
.recruit .inner {
	max-width: 1390px;
}
.contents_slider .slick-list {
	border-radius: 10px;
}
.contents_slider li {
	position: relative;
}
.contents_slider li::before {
	content: '';
	display: block;
	padding-top: 75%;
}
.contents_slider li img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
/*ブログ ======================*/
.blog {
	padding: 60px 0 100px;
}
.blogtext {
	position: relative;
	max-width: 500px;
	text-align: center;
	margin: auto;
}
.blogtext::before, .blogtext::after {
	content: '';
	display: block;
	width: 1px;
	height: 3.3em;
	background: #595757;
	position: absolute;
	bottom: 0;
}
.blogtext::before {
	left: -1em;
	transform: rotate(-30deg);
}
.blogtext::after {
	right: -1em;
	transform: rotate(30deg);
}
.blogillust {
	display: flex;
	justify-content: space-between;
	max-width: 950px;
	filter: invert(17%) sepia(73%) saturate(559%) hue-rotate(185deg) brightness(92%) contrast(90%);
	margin: auto;
	margin-top: 55px;
}
@media(max-width:660px) {
	.blogtext {
		max-width: 100%;
		text-align: left;
	}
	.blogtext br {
		display: none;
	}
	.blogtext::before, .blogtext::after {
		content: none;
	}
}
@media(max-width:550px) {
	.blog {
		padding: 30px 0 60px;
	}
	.blogillust {
		margin-top: 35px;
	}
}
/* 下層ページトップ ===========================================================================================================*/
.fv {
	padding: 150px 0 70px;
	width: 100%;
	display: flex;
	align-items: center;
	background: url(../img/fv.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 25%;
	position: relative;
}
.fv .inner {
	width: 97%;
}
.fv::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #000;
	opacity: 0.6;
	z-index: 1;
}
.fv h2 {
	text-align: center;
	margin-bottom: 20px !important;
	font-size: clamp(1.45rem, 0.2625rem + 3.8vw, 2.4rem);
	font-weight: 500;
	line-height: 1;
	z-index: 1;
	position: relative;
	color: #fff;
	text-transform: capitalize;
}
@media(max-width:1150px) {
	.fv {
		padding: 100px 0 60px;
	}
}
@media(max-width:770px) {
	.fv {
		padding: 83px 0 40px;
	}
}
@media(max-width:550px) {
	.fv {
		padding: 65px 0 30px;
	}
	.fv h2 {
		margin-bottom: 15px !important;
	}
}
/* breadcrumb */
.binner {
	line-height: 1.6;
	width: 97%;
	font-size: 1.05rem;
	font-weight: 500;
	position: relative;
	color: #fff;
}
.breadcrumb {
	z-index: 1;
	background: transparent;
	position: relative;
	top: -6px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	text-align: center;
}
.breadcrumb.bloglong {
	top: -4px;
}
.breadcrumb li {
	display: inline;
	list-style: none;
}
.breadcrumb li:after {
	content: '>';
	padding: 0 0.2em;
	position: relative;
	top: -0.1em;
}
.breadcrumb li:last-child:after {
	content: '';
}
.breadcrumb li a {
	text-decoration: none;
	color: #fff;
}
.breadcrumb li:first-child a::before {
	font-family: "Font Awesome 6 Free";
	content: '\f015';
	font-weight: bold;
	font-size: 90%;
	position: relative;
	top: -0.05em;
}
@media(max-width:850px) {
	.binner {
		font-size: 0.9rem;
	}
}
@media(max-width:650px) {
	.binner {
		font-size: 0.75rem;
	}
	.breadcrumb.breadlong {
		top: -3.5px;
	}
}
/* 事業内容ページ ===========================================================================================================*/
.sertop {
	margin: auto;
	margin-bottom: 57px;
	max-width: 1000px;
}
@media(max-width:850px) {
	.sertop {
		margin-bottom: 37px;
	}
}
/*鉄骨工事 工種*/
.stfbox {
	margin-bottom: 50px;
}
.stfbox:last-child {
	margin-bottom: 0 !important;
}
/*製作の流れ*/
.fswrap {
	margin-top: 45px;
}
.fsbox {
	margin-bottom: 30px;
	border-radius: 10px;
	background: #fff;
	padding: 15px 20px;
	position: relative;
}
.fsbox::after {
	font-family: "Font Awesome 6 Free";
	content: "\f107";
	font-weight: bold;
	font-size: 1rem;
	color: #082c72;
	line-height: 1;
	position: absolute;
	bottom: -25px;
	left: 50%;
	transform: translateX(-50%);
}
.fsbox:last-child {
	margin-bottom: 0;
}
.fsbox:last-child::after {
	content: none;
}
.fsbox h3 {
	font-size: clamp(1.1rem, 0.9125rem + 0.6vw, 1.25rem);
	font-weight: 700;
	color: #242f5c;
	margin-bottom: 7px;
	line-height: 1.75;
}
.fsbox h3 span {
	margin-right: 7px;
	font-size: 120%;
	color: #082c72;
}
@media(max-width:550px) {
	.fswrap {
		margin-top: 30px;
	}
}
/*鉄骨製作のこだわり*/
.features .inner {
	max-width: 950px;
}
.fea {
	font-size: 90%;
}
/* 施工実績ページ ===========================================================================================================*/
.workspage .inner {
	max-width: 1300px;
}
.workspage .righttop {
	top: 3.5px;
}
.workspage .leftbottom {
	bottom: 0;
}
@media(max-width:1905px) {
	.workspage .leftbottom img, .workspage .righttop img {
		height: 8.5vw !important;
	}
}
@media(max-width:750px) {
	.workspage .leftbottom img, .workspage .righttop img {
		height: 14vw !important;
	}
}
@media(max-width:550px) {
	.workspage .righttop {
		top: auto;
		bottom: 0;
	}
	.workspage .leftbottom img, .workspage .righttop img {
		height: 72px !important;
	}
}
/*table*/
.c_table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.c_table tr {
	border: 2px solid #ccc;
}
.c_table th, .c_table td {
	padding: 15px 10px;
	text-align: left;
}
.c_table th {
	font-weight: 500;
	background: #f2f2f2;
	width: 30%;
	border-right: 2px solid #ccc;
}
.c_table td {
	background: #fff;
	width: 70%;
	border-right: 2px solid #ccc;
	border-left: 2px solid #ccc;
}
.consname {
	width: 620px !important;
}
.workstable {
	margin-bottom: 55px;
}
.workstable:last-child {
	margin-bottom: 0 !important;
}
/* table sp*/
.spsctext {
	display: none;
	font-size: 0.8rem;
}
@media (max-width:1060px) {
	.consname {
		width: 520px !important;
	}
}
@media (max-width:790px) {
	.workstable .mtitle {
		margin-bottom: 5px;
	}
	.spsctext {
		display: block;
	}
	.ct_wrap .c_table {
		width: 840px;
	}
	.ct_wrap {
		padding-bottom: 5px;
		overflow-x: scroll;
	}
	.spnone {
		display: none;
	}
}
@media (max-width:550px) {
	.spblock {
		display: block;
	}
	.c_table th, .c_table td {
		font-size: 90%;
	}
	.workstable {
		margin-bottom: 37px;
	}
	.ct_wrap .c_table {
		width: 620px;
	}
	.consname {
		width: 60% !important;
	}
}
/* ブログページ ===========================================================================================================*/
.blogillust {
	bottom: 0;
}
@media(max-width:1100px) {
	.blogillust.illust img {
		height: 11vw !important;
	}
}
@media(max-width:850px) {
	.blogillust.illust img {
		height: 120px !important;
	}
}
@media(max-width:550px) {
	.blogillust.illust img {
		height: 85px !important;
	}
}
/* 採用情報・会社概要ページ ===========================================================================================================*/
.rectop {
	margin-bottom: 45px;
}
.mgb {
	margin-bottom: 30px;
}
@media(max-width:550px) {
	.rectop {
		margin-bottom: 20px;
	}
	.mgb {
		margin-bottom: 22px;
	}
}
/*流れ*/
.oneday .tbtn {
	margin-top: 45px;
}
@media(max-width:550px) {
	.oneday .tbtn {
		margin-top: 33px;
	}
}
.flow {
	position: relative;
}
.flow::before {
	content: "";
	width: 16px;
	height: 100%;
	background-color: #082c72;
	opacity: 0.15;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
.ftitle {
	font-weight: 500;
	ont-size: clamp(1.1rem, 0.98rem + 0.4267vw, 1.3rem);
	position: relative;
	z-index: 2;
	padding-bottom: 8px;
	border-bottom: 2px dotted #919eb8;
	line-height: 1.5;
	margin-bottom: 3px;
}
.ftitle span {
	margin-right: 13px;
	position: relative;
	color: #242f5c;
	text-transform: uppercase;
	font-weight: 700;
}
.ftitle span.note {
	font-weight: 500;
	color: #595757;
	margin-right: 0;
	font-size: 75% !important;
}
.flow .fwrap {
	padding: 25px;
	background: #fff;
	border: 2px solid #ddd;
	border-radius: 10px;
}
.flow .flowd {
	margin-bottom: 25px;
}
.flow .flowd:last-child {
	margin-bottom: 0 !important;
}
.flow .fwrap .mainbtn a::after {
	content: none;
}
.flow .flowd::after, .flow .flowd::before {
	content: "";
	display: block;
	position: absolute;
	top: 57px;
}
.flow .flowd {
	padding-left: 80px;
	position: relative;
}
.flow .flowd::before {
	z-index: 1;
	width: 11px;
	height: 11px;
	margin-top: -5px;
	background: #242f5c;
	border-radius: 50%;
	left: 3px;
}
.flow .flowd::after {
	width: 63px;
	border-bottom: 2px dotted #242f5c;
	position: absolute;
	left: 13px;
}
.btns {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 15px;
}
.btns .mainbtn {
	width: 32.5%;
}
.btns .mainbtn a {
	font-size: 90%;
	width: 100%;
}
.flow .flexbox img {
	border-radius: 7px;
}
@media (max-width: 955px) {
	.fservices {
		padding-bottom: 0;
	}
	.flow .flowd {
		padding-left: 0;
	}
	.flow .flowd::before, .flow .flowd::after {
		content: none;
	}
	.flow::before {
		content: none;
	}
	.flow .fwrap .mainbtn a::after {
		content: none;
	}
	.flow .flowd {
		margin-bottom: 15px;
	}
	.ftitle span {
		margin-right: 8px;
	}
}
@media (max-width: 1300px) {
	.btns .mainbtn {
		width: 49.2%;
		margin-bottom: 7px;
	}
}
@media (max-width: 1100px) {
	.flow .flexbox {
		align-items: center;
	}
	.btns .mainbtn a {
		white-space: nowrap;
		font-size: 0.87rem;
	}
}
@media(max-width: 835px) {
	.btns .mainbtn a {
		font-size: 0.75rem;
	}
}
@media(max-width: 750px) {
	.flow .flowd {
		margin-bottom: 15px;
	}
	.btns .mainbtn a {
		font-size: 0.85rem;
	}
	.btns .mainbtn {
		margin-bottom: 5px;
	}
	.flow .fwrap .btns .mainbtn:last-child {
		margin-bottom: 0 !important;
	}
	.flow .fwrap .btns .mainbtn a {
		padding: 8px 0;
	}
	.flow .flexbox {
		display: block;
	}
	.flow .flexbox img {
		width: 100%;
	}
	.flow .flexbox div {
		width: 100%;
	}
	.flow .flowd .flexbox img {
		margin-bottom: 5px;
	}
	.flow .flex div {
		margin: 0 5px 8px;
	}
	.flowd .flimg img {
		object-fit: cover;
		width: 100%;
		height: 240px;
	}
	.ftitle {
		font-size: 1rem;
	}
}
@media(max-width: 600px) {
	.flow .flex {
		display: block;
	}
	.flow .flex img {
		width: 100%;
	}
	.flow .flex div {
		width: 100%;
		margin: 0 0 8px;
	}
	.flowd .flimg img {
		height: 100%;
	}
}
@media(max-width: 450px) {
	.flows .maintitle {
		margin-bottom: 40px;
	}
	.flow .fwrap {
		padding: 15px;
	}
	.ftitle {
		margin-bottom: 10px;
	}
	.btns {
		margin-top: 13px;
	}
}
/*list*/
.acheck li {
	padding-left: 20px;
	position: relative;
	border-bottom: 2px dotted #919eb8;
	padding-bottom: 3px;
	margin-bottom: 3px;
}
.acheck li::before {
	font-family: "Font Awesome 6 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #242f5c;
	font-size: .9em;
	position: absolute;
	top: 0.15em;
	left: 0;
}
/*代表挨拶*/
.grimg {
	height: auto !important;
	display: flex;
}
.grimg img {
	object-fit: cover;
}
.grbox {
	position: relative;
	padding: 40px 80px 60px;
	border-radius: 10px;
	background: #fffdf7;
}
.grbox .illust img {
	height: 160px !important;
}
.grbox .righttop {
	top: -8%;
	right: -4%;
}
.grbox .leftbottom {
	bottom: -70px;
	left: -5%;
}
.glast {
	text-align: right;
	margin-top: 23px;
}
@media(max-width:1000px) {
	.grbox {
		padding: 25px 60px 45px;
	}
	.grbox .illust img {
		height: 15vw !important;
	}
}
@media(max-width:750px) {
	.glast {
		margin-bottom: 25px;
	}
}
@media(max-width:715px) {
	.grbox {
		padding: 10px 20px 25px;
	}
	.grbox .illust img {
		height: 90px !important;
	}
	.grbox .righttop {
		top: -20px;
	}
	.grbox .leftbottom {
		bottom: -60px;
	}
}
/* table */
.info_table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	font-weight: normal;
}
.info_table tr {
	border-bottom: 2px dotted #919eb8;
}
.info_table th {
	background: transparent;
	width: 35%;
}
.info_table th, .info_table td {
	font-weight: 500;
	padding: 15px 0;
}
.info_table td {
	padding-left: 10px;
	padding-right: 10px;
	width: 65%;
	background: transparent;
}
.ib {
	display: inline-block;
}
@media(max-width: 750px) {
	.info_table {
		border-collapse: collapse;
	}
	.info_table tr {
		border-bottom: none;
	}
	.info_table td {
		border-bottom: 2px dotted #919eb8;
		margin-bottom: 0;
	}
	.info_table td, .info_table th {
		width: 100%;
		padding: 8px 8px 13px;
		display: block;
	}
	.info_table th {
		font-weight: 700;
		text-align: left;
		padding-bottom: 0;
	}
}
/*アクセス*/
@media(max-width:550px) {
	.map iframe {
		height: 280px;
	}
	.map {
		padding-bottom: 60px;
	}
}
/*駐車場のご案内*/
.parkingflow {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.parkingflow div {
	position: relative;
	width: 48%;
	margin-bottom: 3.5%;
}
.parkingflow div::after {
	font-family: "Font Awesome 6 Free";
	font-weight: bold;
	font-size: 1.3rem;
	color: #082c72;
	line-height: 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -6%;
}
.parkingflow div:nth-child(1)::after {
	content: "\f061";
}
.parkingflow div:nth-child(2)::after {
	content: "\f063";
	top: auto;
	bottom: -8%;
	right: auto;
	left: 50%;
	transform: translateX(-50%);
	transform: translateY(0);
}
.parkingflow div:nth-child(3)::after {
	content: "\f060";
}
.parkingflow div:last-child::after {
	content: none;
}
@media(max-width:1100px) {
	.parkingflow div::after {
		font-size: 1.1rem;
	}
}
@media(max-width:930px) {
	.parkingflow div::after {
		font-size: 0.8rem;
	}
}
@media(max-width:750px) {
	.parkingflow {
		flex-direction: column;
	}
	.parkingflow div {
		width: 100%;
		margin-bottom: 35px;
	}
	.parkingflow div::after {
		font-size: 1.1rem;
		content: "\f063" !important;
		top: auto !important;
		bottom: -25px !important;
		right: auto !important;
		left: 50% !important;
		transform: translateX(-50%) !important;
		transform: translateY(0) !important;
	}
	.parkingflow div:nth-child(3) {
		order: 4;
		margin-bottom: 0;
	}
	.parkingflow div:nth-child(3)::after {
		content: none !important;
	}
}
/**/
.parking .phflex {
	margin-top: 0;
}
@media(max-width:1840px) {
	.parking .leftbottom img {
		height: 10vw !important;
	}
}
@media(max-width:1070px) {
	.parking .leftbottom img {
		height: 14vw !important;
	}
}
@media(max-width:550px) {
	.parking .leftbottom img {
		height: 90px !important;
	}
}
/* お問い合わせページ ===========================================================================================================*/
#email {
	position: relative;
	top: -50px;
}
.contact_top_text {
	margin-top: 10px;
	margin-bottom: 70px;
	max-width: 694px;
}
@media(max-width:1190px) {
	.telillust {
		display: none;
	}
}
@media(max-width:550px) {
	.contact_top_text {
		font-size: 90%;
		margin-bottom: 35px;
	}
	.telillust img {
		/*height: 67px !important;*/
	}
}
.contactp {
	padding-bottom: 0;
}
.contactp .rtext {
	margin-bottom: 45px;
}
@media (max-width: 750px) {
	.contactp .rtext {
		margin-bottom: 30px;
	}
}
.contact_wrap {
	position: relative;
	background: #fff;
	border: 2px solid #ddd;
	border-radius: 10px;
	margin: auto;
	padding: 30px 10px;
}
.rcheck p::before {
	font-family: "Font Awesome 6 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #242f5c;
	margin-right: 0.4em;
	font-size: 0.93em;
	text-decoration: none;
}
.tel_contact {
	font-size: clamp(1.6rem, 0.7875rem + 2.6vw, 2.25rem);
	margin-bottom: 3px;
	white-space: nowrap;
	color: #242f5c;
	z-index: 1;
	position: relative;
	font-weight: 700;
}
.tel_contact:hover {
	color: #595757;
	opacity: 0.6;
}
.telflex {
	max-width: 1055px;
	margin: auto;
	align-items: flex-start;
}
.telflex .contact_wrap {
	margin: 0;
}
.tel_text {
	font-size: 0.83rem;
	margin-top: 7px;
	margin-bottom: 5px;
}
.te.tel_text {
	font-size: 100%;
	margin-top: 5px !important;
}
@media (max-width: 750px) {
	.te.tel_text {
		font-size: 0.83rem;
		margin-bottom: 30px;
	}
}
.faxlist {
	display: flex;
	justify-content: center;
}
.faxlist p {
	margin-right: 25px;
	font-size: 0.9rem;
	margin-bottom: 0;
	white-space: nowrap;
}
.faxlist p:last-child {
	margin-right: 0 !important;
}
@media (max-width: 760px) {
	.faxlist p {
		margin-right: 20px;
	}
}
.telmini {
	position: relative;
	margin-bottom: 12px;
	letter-spacing: 0.1em;
	font-size: clamp(1.1rem, 0.6625rem + 1.4vw, 1.45rem);
	line-height: 1.5;
	font-weight: 700;
}
.spb {
	margin-bottom: 60px;
}
@media (max-width: 1210px) {
	.tel_text {
		text-align: left;
	}
}
@media (max-width: 750px) {
	.faxlist p {
		margin-right: 30px;
	}
	.telflex .contact_wrap {
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 20px;
	}
	.contact_wrap.fax {
		margin-bottom: 0;
	}
}
@media (max-width: 570px) {
	.tel_text {
		margin-bottom: 2.5px;
	}
}
@media (max-width: 550px) {
	.spb {
		margin-bottom: 12px;
		font-size: 1.15rem;
	}
	.telmini {
		margin-bottom: 12px;
		font-size: 1.15rem;
	}
	.faxlist p {
		font-size: 85%;
	}
}
@media (max-width: 365px) {
	.tel_text {
		margin-bottom: 7px;
	}
	.faxlist {
		display: block;
		width: fit-content !important;
		margin-right: auto;
	}
	.faxlist p {
		margin-right: 0;
	}
}
.tmgb {
	margin-bottom: 25px;
}
.fpdt {
	padding-top: 60px;
}
@media (max-width: 950px) {
	.fpdt {
		padding-top: 20px;
	}
}
@media (max-width: 550px) {
	.fpdt {
		padding-top: 50px;
	}
}
.tl_text {
	margin-top: 13px;
	font-size: clamp(1rem, 0.94rem + 0.2133vw, 1.1rem);
}
@media (max-width: 450px) {
	.tmgb {
		margin-bottom: 15px;
	}
	.contact_wrap {
		max-width: 100%;
		padding: 20px 0;
	}
	.tl_text {
		margin-top: 7px;
	}
}
/* メール */
.mnote {
	max-width: 907px;
	margin: auto;
	margin-top: 60px;
}
.mpdb {
	padding-bottom: 70px !important;
	margin-bottom: 0 !important;
}
.mpdb .inner {
	max-width: 1100px;
}
.mpdb .mtitle {
	margin-bottom: 0;
}
@media(max-width:550px) {
	.mnote {
		margin-top: 40px;
	}
	.mpdb {
		padding-bottom: 30px !important;
	}
}
.formsel p:last-child {
	margin-bottom: 0;
}
.mailform {
	max-width: 1100px;
	margin: 13px auto 0;
}
@media (max-width: 850px) {
	.mailform {
		margin: 0 auto 0;
	}
}
@media (max-width: 450px) {
	.mailform {
		margin-top: 0;
	}
}
.mailform .row {
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last) {
	border-bottom: 0.9px dotted #595757;
}
.mailform .row div {
	text-align: left;
}
.mailform .row div:nth-child(1) {
	width: 28%;
	font-size: 0.9rem;
}
.mailform .row div:nth-child(2) {
	width: 70%;
	line-height: 1.5;
}
.mailform .row span {
	color: #fff;
	background: #242f5c;
	padding: 5px;
	margin-right: 5px;
	font-size: 11px;
}
.mailsp {
	background: #fff !important;
	border: 1px solid #242f5c;
	color: #242f5c !important;
}
.mailform .row small {
	display: block;
	margin-top: 3px;
}
.mailform label {
	color: #595757;
}
.mailform .box, .mailform textarea {
	border: 1px solid #ddd;
	padding: 5px;
	width: 100% !important;
	border-radius: 0;
	-webkit-appearance: none;
	margin-bottom: 5px;
	background: #fff;
}
/*郵便番号ボタン*/
.mailform .postal_btn {
	padding: 2px 10px;
	background: #242f5c;
	color: white;
	border-radius: 2px;
	margin-top: 5px;
	font-size: 90%;
}
@media (max-width: 450px) {
	.mailform .postal_btn {
		font-size: 80%;
	}
}
/*ラジオボタン*/
input[type=radio] {
	display: none;
}
input[type=radio] + label {
	cursor: pointer;
	padding-left: 23px;
	position: relative;
}
input[type=radio] + label::before {
	content: "";
	display: block;
	position: absolute;
	top: 53%;
	transform: translate(0, -50%);
	left: 0;
	width: 15px;
	height: 15px;
	background: #fff;
	border-radius: 100%;
	border: 1px solid #b4b4b4;
	cursor: pointer;
	text-align: center;
}
input[type=radio]:checked + label::before {
	background-color: #242f5c;
	box-shadow: inset 0 0 0 2px #f4f4f4;
}
input[type=radio]:focus + label::before {
	outline: none;
	border-color: #242f5c;
}
input[type=radio]:disabled + label::before {
	box-shadow: inset 0 0 0 2px #f4f4f4;
	border-color: #b4b4b4;
	background: #b4b4b4;
}
input[type=radio] + label:empty::before {
	margin-right: 0;
}
/* sp時 縦に並べる */
@media (max-width: 550px) {
	input[type=radio] + label {
		display: block;
		margin-bottom: 5px;
	}
}
/*チェックボックス*/
.mailform input[type=checkbox] {
	display: none;
}
.mailform input[type=checkbox] + label {
	display: inline-block;
	padding-left: 20px;
	position: relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
.mailform input[type=checkbox] + label::before {
	background: #fff;
	border: 1px solid #b5b5b5;
	content: '';
	display: block;
	position: absolute;
	top: 55%;
	transform: translate(0, -50%);
	left: 0;
	width: 15px;
	height: 15px;
	border-radius: 3px;
}
.mailform input[type=checkbox] + label::after {
	border-right: 3px solid #242f5c;
	border-bottom: 3px solid #242f5c;
	content: '';
	display: block;
	height: 13px;
	width: 7px;
	opacity: 0;
	position: absolute;
	top: 25%;
	left: 4px;
	transform: rotate(45deg);
	transition: .1s;
}
.mailform input[type=checkbox]:checked + label::after {
	opacity: 1;
}
@media (max-width: 550px) {
	.mailform input[type=checkbox] + label {
		display: block;
	}
}
.mailform button {
	display: block;
	text-align: center;
	font-size: 1rem;
	margin: 0 auto;
	white-space: nowrap;
	border: 1px solid transparent;
	color: #fff;
	background: #242f5c;
	padding: 1% 7%;
	transition: .4s;
	border-radius: 30px;
}
.mailform button:hover {
	background-color: #fff;
	color: #242f5c;
	border: 1px solid #242f5c;
	opacity: 1;
}
.mailform button::before {
	font-family: "Font Awesome 6 Free";
	content: "\f0e0";
	font-weight: bold;
	margin-right: 10px;
}
.formsel p {
	margin-bottom: 4px;
}
@media (max-width: 450px) {
	.mailform button {
		width: 65%;
		padding: 6px;
	}
	.formsel label, .selection small {
		font-size: 0.9rem;
	}
}
@media (max-width: 800px) {
	.mailform .row {
		padding: 20px 0;
		flex-direction: column;
	}
	.mailform .row div:nth-child(1) {
		width: 100%;
		margin-bottom: 20px;
	}
	.mailform .row div:nth-child(2) {
		width: 100%;
	}
}
/*個人情報の取り扱いについて*/
.privacy {
	padding-top: 0 !important;
}
.privacy_wrap {
	font-size: clamp(0.97rem, 0.495rem + 1.52vw, 1.35rem);
	color: #595757;
	margin: 0 auto;
	max-width: 1100px;
	border-bottom: 2px solid #ddd;
}
.privacy_item {
	position: relative;
	width: 100%;
	margin: 0 auto;
	cursor: pointer;
	padding: 0 10px;
}
.privacy_header {
	transition: ease-in-out 100ms;
	font-weight: 500;
}
.privacy_text {
	width: 100%;
	display: none;
	padding: 20px 35px 30px;
	line-height: 1.7;
	font-size: 0.95rem;
}
.privacy_text span {
	font-size: 103%;
}
@media(max-width:750px) {
	.privacy_text {
		padding: 20px 15px 30px;
	}
}
.privacy_text p {
	margin-bottom: 17px;
}
.arrow {
	transition: ease-in-out 300ms;
}
.rotate-fa {
	transform: rotate(180deg);
}
.privacy_header span {
	position: absolute;
	top: 50%;
	right: 3%;
	transform: translate(-50%, -50%);
}
.privacy_gold, .privacy_header .fa-lock {
	color: #242f5c;
}