@charset "UTF-8";

/* ----------------------------------------------------------------------------------------------------
*  reset
* --------------------------------------------------------------------------------------------------*/
/*====================================
RESET
======================================*/
html {
	overflow-y: scroll;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

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

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

blockquote,
q {
	quotes: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
	font-weight: normal;
	display: block;
	font-size: 100%;
}

ul,
li {
	list-style: none;
	padding: 0;
	margin: 0;
}

dl,
dt,
dd {
	padding: 0;
	margin: 0;
}

table,
tr,
td {
	border: 0;
	padding: 0;
	margin: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

a {
	text-decoration: none;
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

a:focus {
	outline: none;
	cursor: pointer;
}

a:hover {
	cursor: pointer;
}

input,
textarea,
select {
	vertical-align: middle;
}

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}

img {
	vertical-align: bottom;
	border: 0;
	padding: 0;
	margin: 0;
	line-height: 0;
}

div {
	margin: 0;
	padding: 0;
}

caption,
th {
	font-weight: normal;
}


input,
select,
button,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	border: none;
	border-radius: 0;
	padding: 0;
	/*font-family:inherit;*/
	font-size: inherit;
	font-weight: inherit;
}

*,
*:after,
*:before {
	box-sizing: border-box;
}



/* ----------------------------------------------------------------------------------------------------
*  基本
* --------------------------------------------------------------------------------------------------*/
html,
body {
	height: 100%;
	width: 100%;
}

html {
	font-size: 62.5%;
	overflow-y: scroll;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
form {
	text-align: left;
}

ul {
	letter-spacing: -0.4em;
}

.android ul {
	letter-spacing: -1em;
}

ul li {
	letter-spacing: normal;
}


body a {
	text-decoration: none;
	color: inherit;
}

body {
	-webkit-text-size-adjust: 100%;
	width: 100%;
	font-size: 1.3rem;
	line-height: 1.8;
	font-family: 'A1ゴシック M', sans-serif;
	font-feature-settings: "palt" 1;
	font-weight: normal;
	color: #000;
	background: #F2F2F2;
	word-wrap: break-word;
}

.font_normal {
	font-family: 'A1ゴシック M', sans-serif;
}

.font_bold {
	font-family: 'A1ゴシック B', sans-serif;
}

.font_light {
	font-family: 'A1ゴシック R', sans-serif;
}

img {
	width: auto;
	max-width: 100%;
	height: auto;
}

@media screen and (min-width: 769px) {

	html,
	body {}

	body {
		padding-top: 136px;
	}
}

@media screen and (max-width: 768px) {
	html {
		-webkit-overflow-scrolling: touch;
	}

	body {
		font-size: 3.2vw;
		padding-top: 24.9vw;
	}

}



a,
a img,
.fade,
.pull_btn {
	transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

a:hover,
a:hover img,
.fade:hover,
.pull_btn:hover {
	opacity: 0.8;
}

table {
	width: 100%;
}


/*--読み込み時にtransitionが動作する問題--*/
.preload * {
	-webkit-transition: none !important;
	-moz-transition: none !important;
	-ms-transition: none !important;
	-o-transition: none !important;
	transition: none !important;
}

/* ----------------------------------------------------------------------------------------------------
*  box
* --------------------------------------------------------------------------------------------------*/
.wrap {
	width: 100%;
	margin: 0 auto;
	position: relative;
}

.wrap2 {
	width: 100%;
	margin: 0 auto;
	position: relative;
}

@media screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}

	.wrap {
		max-width: 1300px;
		padding: 0 10px;
	}

	.wrap2 {
		max-width: 1044px;
		padding: 0 10px;
	}

	.wrap3 {
		max-width: 1100px;
		padding: 0 10px;
	}
}

@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}

	body {
		min-width: 100%;
	}

	main {
		width: 100%;
		overflow: hidden;
	}

	.wrap {
		width: 85.4%;
	}

	.wrap2 {
		width: 80.9%;
	}

	.sp100w {
		width: 100vw;
		margin-left: -5vw;
	}
}





/* ----------------------------------------------------------------------------------------------------
*  汎用
* --------------------------------------------------------------------------------------------------*/


/* ------------------------------
    clearfix
------------------------------ */
.cf:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}

.cf {
	display: inline-block;
}

/* Hides from IE Mac */
* html .cf {
	height: 1%;
}

.cf {
	display: block;
}

/* End Hack */

/* ------------------------------
   float
------------------------------ */
.aligncenter {
	display: block;
	margin: 0 auto;
}

.alignright {
	float: right;
}

.alignleft {
	float: left;
}

/* ------------------------------
   flex
------------------------------ */
.flex {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}

.flex_wrap {
	flex-wrap: wrap;
}

.jc_start {
	justify-content: start !important;
}

.jc_center {
	justify-content: center !important;
}

.item_center {
	align-items: center;
}

.item_end {
	align-items: flex-end;
}

.flex_prev {
	flex-flow: row-reverse;
}

@media screen and (min-width: 769px) {
	.flex_pc {
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
	}

}

@media screen and (max-width: 768px) {
	.flex_sp {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
}

/* ------------------------------
   text
------------------------------ */
.taC {
	text-align: center !important;
}

.taR {
	text-align: right !important;
}

.taL {
	text-align: left !important;
}

.nowrap {
	display: inline-block;
	text-indent: 0;
}

.fsMS {
	font-size: 1.5rem !important;
}

.fsS {
	font-size: 1.2rem !important;
}

@media screen and (max-width: 768px) {
	.fsMS {
		font-size: 1.2rem !important;
	}

	.fsMSS {
		font-size: 1rem !important;
	}

	.fsS {
		font-size: 1rem !important;
	}
}


/* ------------------------------
   見出し-pagettl
------------------------------ */
.pttlbox {
	padding-top: 0;
	z-index: -1;
	height: 564px;
	position: relative;
	margin-bottom: 154px;
}

.pttlbox .txt {
	background: #000;
	color: #fff;
	padding: 90px 50px 0 76px;
}

.pttlbox .pttl {
	font-size: 2.6rem;
	line-height: 1;
	margin-bottom: 27px;
}

.pttlbox p {
	font-size: 1.4rem;
	line-height: 2.1;
}

.pttlbox .ph {
	position: fixed;
	top: 140px;
	z-index: -2;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.pttlafter {
	background: #f2f2f2;
}

@media screen and (min-width: 769px) {
	.pttlbox .txt {
		position: absolute;
		top: 324px;
		left: 0;
		width: 560px;
		height: 313px;
	}

	.pttlbox .ph {
		width: 100%;
		height: 564px;
	}

	.pttlbox:after {
		content: "";
		display: block;
		position: absolute;
		left: 0;
		bottom: -154px;
		width: 100%;
		height: 154px;
		background: #f2f2f2;
		z-index: -1;
	}
}

@media screen and (max-width: 768px) {
	.pttlbox {
		margin-bottom: 0;
		height: auto;
	}

	.pttlbox .txt {
		min-height: 43.9vw;
		padding: 6.75vw 12.8vw 3vw 10.5vw;
		margin-top: 61.4vw;
	}

	.pttlbox .pttl {
		font-size: 4.5vw;
		line-height: 1;
		margin-bottom: 6vw;
	}

	.pttlbox p {
		font-size: 2.8vw;
		line-height: 2.1;
	}

	.pttlbox .ph {
		width: 100%;
		height: 61.4vw;
		top: 24.9vw;
	}

	.pttlafter {
		padding-top: 17vw;
	}
}

/* ------------------------------
   見出し-ttl1
------------------------------ */
.ttl1 {
	padding-top: 0;
	position: relative;
	z-index: 2;
	margin-bottom: 87px;
	text-align: center;
}

.ttl1 img {
	display: block;
	margin: 0 auto;
	/*width:504px;*/
}

.ttl1 span {
	display: block;
	font-size: 1.6rem;
	margin-top: -0.12em;
	line-height: 1;
}



@media screen and (min-width: 769px) {}

@media screen and (max-width: 768px) {
	.ttl1 {
		margin-bottom: 12.8vw;
	}

	.ttl1 img {
		width: 76vw;
	}

	.ttl1 span {
		font-size: 2.8vw;
		margin-top: 0.25em;
	}

}

/* ------------------------------
   見出し-pttl2
------------------------------ */
.pwrap_w {
	background: #fff;
	border-radius: 10px;
	padding: 70px 0 140px;
	margin-bottom: 89px;
	margin-top: 50px;
}

.pwrap_inner {}

.pttl2 {
	text-align: center;
	font-size: 4.5rem;
	line-height: 1;
	margin-bottom: 130px;
}

@media screen and (min-width: 769px) {}

@media screen and (max-width: 768px) {
	.pwrap_w {
		padding: 8vw 0 10vw;
		margin-bottom: 8vw;
		margin-top: 4vw;
	}

	.pwrap_inner {
		width: 100%;
		padding: 0 6.8vw;
	}

	.pttl2 {
		font-size: 5.4vw;
		margin-bottom: 6vw;
	}
}

/* ------------------------------
    字下げ
------------------------------ */
.hang1,
.hangli1 li {
	padding-left: 1em !important;
	text-indent: -1em !important;
}

.hang1h,
.hangli1h li {
	padding-left: 1.5em !important;
	text-indent: -1.5em !important;
}

.kakko {
	display: inline-block;
	text-indent: -0.5em !important;
}

/* ------------------------------
    余白
------------------------------ */
/* -------------
    margin
---------------- */
.mB_1 {
	margin-bottom: 30px !important;
}

.mB_2 {
	margin-bottom: 20px !important;
}

.mB_3 {
	margin-bottom: 10px !important;
}

@media screen and (max-width: 768px) {
	.mB_1 {
		margin-bottom: 20px !important;
	}

	.mB_2 {
		margin-bottom: 14px !important;
	}

	.mB_3 {
		margin-bottom: 6px !important;
	}

}


/* ------------------------------
    padding
------------------------------ */
.pB_1 {
	padding-bottom: 30px !important;
}

.pB_2 {
	padding-bottom: 20px !important;
}

.pB_3 {
	padding-bottom: 10px !important;
}

.pT_1 {
	padding-top: 30px !important;
}

.pT_2 {
	padding-top: 20px !important;
}

.pT_3 {
	padding-top: 10px !important;
}

@media screen and (min-width: 769px) {}

@media screen and (max-width: 768px) {
	.pB_1 {
		padding-bottom: 20px !important;
	}

	.pB_2 {
		padding-bottom: 14px !important;
	}

	.pB_3 {
		padding-bottom: 6px !important;
	}

	.pT_1 {
		padding-top: 20px !important;
	}

	.pT_2 {
		padding-top: 14px !important;
	}

	.pT_3 {
		padding-top: 6px !important;
	}
}

/* ------------------------------
    btn
------------------------------ */
.btn {
	display: inline-block;
	font-size: 1.4rem;
	position: relative;
	line-height: 60px;
	padding: 3px 14px 0 40px;
	text-align: left;
}

.btn.en {
	font-weight: 500;
}

.btn_arrow {
	display: inline-block;
	position: relative;
	vertical-align: middle;
	height: 100%;
	width: 78px;
	margin-top: -3px;
}

.btn_arrow:before,
.btn_arrow:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	transition: .3s;
}

.btn_arrow:before {
	width: 35px;
	height: 1px;
	background: #fff;
	right: 0;
	margin-right: 3px;
}

.btn_arrow:after {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 0 3px 11px;
	border-color: transparent transparent transparent #fff;
	right: 0;
	margin-top: -3px;
}

@media screen and (min-width: 769px) {

	.btn:hover .btn_arrow:before,
	.btn:hover .btn_arrow:after {
		right: -5px;
	}
}

@media screen and (max-width: 768px) {
	.btn {
		font-size: 1.1rem;
		line-height: 50px;
		padding: 0 10px 0 26px;
	}

	.btn_arrow {
		width: 60px;
	}

	.btn_arrow:before {
		width: 28px;
	}
}

/*----btn blue--------------------*/
.btn_bl {
	background: #0A1D44;
	overflow: hidden;
	color: #fff;
	z-index: 1;
	transition: 0.3s;
}

.btn.en .more {
	font-weight: 400;
}

.btn_bl:after {
	content: "";
	display: block;
	position: absolute;
	width: calc(100% + 6px);
	height: 12px;
	background: #0D63A0;
	bottom: -7px;
	left: -3px;
	transform: rotate(3deg);
	transition: 0.3s;
	z-index: -1;
}

@media screen and (min-width: 769px) {

	.btn_bl:hover,
	.btn_bl:hover span {
		opacity: 1;
	}

	.btn_bl:hover:after {
		height: calc(100% + 14px);
	}

	.ie .btn_bl:after,
	.edge .btn_bl:after {
		height: 12px;
		bottom: -6px;
	}

	.ie .btn_bl:hover,
	.edge .btn_bl:hover {
		opacity: 0.6;
	}

	/*--small--*/
	.btn_s {}
}

@media screen and (max-width: 768px) {
	.btn_bl {
		line-height: 42px;
	}

	.btn_bl:after {
		bottom: -8px;
	}
}


/*--small--*/
.btn_bls {
	padding: 0 8px 0 18px;
	line-height: 43px;
	font-size: 1.3rem;
}

.btn_bls .btn_arrow:before {
	width: 23px;
}

.btn_bls .btn_arrow {
	width: 56px;
}

@media screen and (max-width: 768px) {
	.btn_bls {
		padding: 0 6px 0 10px;
		line-height: 32px;
		font-size: 1rem;
	}

	.btn_bls .btn_arrow:before {
		width: 18px;
	}

	.btn_bls .btn_arrow {
		width: 30px;
	}
}


/* ----------------------------------------------------------------------------------------------------
*  header
* --------------------------------------------------------------------------------------------------*/

header {
	width: 100%;
	height: 100px;
	position: fixed;
	background: #F2F2F2;
	padding-top: 38px;
	z-index: 999;
	top: 0;
	transition: .3s;
}

header .inner {
	display: flex;
	align-items: center;
	/*max-width: 1440px;*/
	padding: 0 30px;
}

@media screen and (min-width: 769px) and (max-width: 1430px) {
	header .inner {
		padding: 0 2%;
	}
}

@media screen and (min-width: 769px) {
	header {
		transition: 0.7s;
	}

	header.fixed {
		padding-top: 28px;
	}

}

@media screen and (max-width: 768px) {
	header {
		height: 24.9vw;
		padding-top: 8.9vw;
	}
}




/*----logo------------------------------*/
header .logo {
	width: 220px;
}

header .logo img {
	display: inline-block;
	width: 220px;
	margin-top: 0;
	margin-right: 20px;
}

header .logo img.logo_w {
	display: none;
}

@media screen and (max-width: 768px) {
	header .logo {
		position: relative;
		width: 100%;
		text-align: center;
		z-index: 999;
	}

	header .logo img {
		width: 50vw;
		margin-right: 0;
		fill: #fff;
	}
}

/*----nav------------------------------*/
header ul {}

header ul li {}

@media screen and (min-width: 769px) {
	.menu_opn {
		display: block !important;
		width: calc(100% - 220px);
	}

	header .gnav {
		display: flex;
		justify-content: flex-end;

	}

	header .gnav li {}

	header .gnav li+li {
		margin-left: 18px;
	}

	header .gnav li a {
		color: #fff;
		background: #000;
		font-size: 1.2rem;
		line-height: 1;
		padding: 6px 18px 3px;
		white-space: nowrap;
		display: block;
		text-align: center;
	}

	.ie header .gnav li a {
		padding-bottom: 2px;
	}

	header .gnav li a:hover {
		opacity: 1;
		color: #000;
		background: #fff;
	}
}

@media screen and (min-width: 769px) and (max-width: 1430px) {
	header .gnav li a {
		font-size: 1.1rem;
		padding-top: 6px;
		padding-bottom: 6px;
	}

	header .gnav li+li {
		margin-left: 5px;
	}
}

@media screen and (min-width: 769px) and (max-width: 1270px) {
	header .gnav {
		flex-wrap: wrap;
		max-width: 750px;
		margin-left: 15px;
	}

	header .gnav li {
		width: 32%;
	}

	header .gnav li:nth-of-type(n+5) {
		margin-top: 3px;
	}

	header .gnav li a {
		padding-left: 0;
		padding-right: 0;
	}
}

@media screen and (min-width: 769px) and (max-width: 1000px) {}

@media screen and (max-width: 768px) {
	.is_gnavOpen header .logo img.logo_w {
		display: inline-block;
	}

	.is_gnavOpen header .logo img.logo_b {
		display: none;
	}

	.menu_opn {
		width: 100%;
		height: 100%;
		position: fixed;
		left: 0;
		top: 0;
		z-index: 10;
		overflow-y: hidden;
		display: none;
	}

	.menu_opn:before {
		content: "";
		display: block;
		position: absolute;
		width: 100%;
		left: 0;
		top: 0;
		height: 24vw;
		background: #000;
		opacity: 0.8;
	}

	.menu_opn.on {
		display: block;
		width: 100%;
		height: 100%;
	}

	.menu_opn.off {
		display: none;
	}

	.menu_bg {
		background-color: #000;
		position: fixed;
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		z-index: -1;
		display: block;
	}

	.menu_opn .menu_inner {
		width: 100%;
		height: 100%;
		padding: 32vw 11% 18vw;
		overflow-y: scroll;
	}

	header .gnav {
		padding: 0 0 15vw;
		display: block;
	}

	header .gnav li {
		font-size: 4.4vw;
		line-height: 1;
		display: block;
		font-family: 'A1ゴシック M', sans-serif;
	}

	header .gnav li+li {
		margin-top: 2em;
	}

	header .gnav li a {
		text-align: left;
		color: #fff;
	}

	.head_sns {
		display: flex;
		margin-bottom: 8.9vw;
	}

	.head_sns li {
		width: 8.9vw;
	}

	.head_sns li+li {
		margin-left: 3.3vw;
	}

	.head_snav {}

	.head_snav li {
		line-height: 1;
	}

	.head_snav li a {
		color: #fff;
		font-size: 3.7vw;
	}

	.head_snav li+li {
		margin-top: 3.9vw;
	}
}



/*------------
sp ハンバーガー
------------*/
.is_gnavOpen {
	width: 100%;
	height: 100%;
	position: fixed;
}

/* gnav背景 */
.js_gnavLayer {
	display: none;
}

@media screen and (min-width: 769px) {
	header .bl_navTrigger {
		display: none;
	}
}

@media screen and (max-width: 768px) {

	header .bl_navTrigger,
	header .bl_navTrigger span {
		display: inline-block;
		transition: all .4s;
	}

	header .bl_navTrigger {
		position: fixed;
		top: 7vw;
		right: 5.8vw;
		width: 13.3vw;
		height: 13.3vw;
		background: #000;
		border-radius: 50%;
		z-index: 999;
	}

	.is_gnavOpen header .bl_navTrigger {
		background: #fff;
	}

	header .bl_navTrigger span {
		width: 6.3vw;
		height: 0.6vw;
		position: absolute;
		left: 3.5vw;
		top: 50%;
		background-color: #fff;
	}

	.is_gnavOpen header .bl_navTrigger span {
		background-color: #000;
	}

	header .bl_navTrigger span:nth-of-type(1) {
		margin-top: -1.4vw;
	}

	header .bl_navTrigger span:nth-of-type(2) {
		margin-top: 1.4vw;
	}

	header .bl_navTrigger.active span:nth-of-type(1) {
		transform: translateY(1.4vw) rotate(-45deg);
	}

	header .bl_navTrigger.active span:nth-of-type(2) {
		transform: translateY(-1.4vw) rotate(45deg);
	}

	/* ハンバーガーメニューボタンアニメーション */
	@-webkit-keyframes active_menu_bar {
		100% {
			height: 0;
		}
	}

	@keyframes active_menu_bar {
		100% {
			height: 0;
		}
	}

}

/* ----------------------------------------------------------------------------------------------------
*  footer
* --------------------------------------------------------------------------------------------------*/

/* footer {
	width: 100%;
	position: relative;
	padding: 41px 0 28px;
	background: #000;
	color: #fff;
}

.foot1 {
	text-align: center;
	margin-bottom: 34px;
}

.foot_logo {
	width: 205px;
	display: inline-block;
	margin-bottom: 12px;
}

.foot1_name {
	text-align: center;
	font-size: 1.1rem;
	line-height: 1;
	margin-bottom: 12px;
	letter-spacing: 0.2em;
}

.foot1_add {
	text-align: center;
	font-size: 1.1rem;
	letter-spacing: 0.1em;
}

.foot_snav {
	text-align: center;
	margin-bottom: 50px;
}

.foot_snav li {
	display: inline-block;
	width: 95px;
	line-height: 1;
}

.foot_snav li+li {
	margin-left: 20px;
}

.foot_snav a {
	display: block;
	background: #fff;
	color: #000;
	text-align: center;
	font-size: 1rem;
	padding: 6px 0 4px;
}

.foot_sns {
	text-align: center;
	margin-bottom: 35px;
}

.foot_sns li {
	display: inline-block;
	width: 27px;
}

.foot_sns li+li {
	margin-left: 11px;
}

.copyright {
	text-align: center;
	line-height: 1;
	font-size: 1rem;
	letter-spacing: 0.1em;
}

@media screen and (min-width: 769px) {
	.foot_snav a {
		border: 1px solid #fff;
	}

	.foot_snav a:hover {
		background: #000;
		color: #fff;
		opacity: 1;
	}
}

@media screen and (max-width: 768px) {
	footer {
		padding: 8vw 0 8.9vw;
	}

	.foot1 {
		margin-bottom: 5.3vw;
	}

	.foot_logo {
		width: 40vw;
		margin-bottom: 2.5vw;
	}

	.foot1_name {
		font-size: 2.1vw;
		margin-bottom: 0;
	}

	.copyright {
		text-align: center;
		line-height: 1.2;
		font-size: 1.9vw;
		letter-spacing: 0.1em;
	}
} */
#contact_area {
	padding: 50px 0 82px;
	background: #fff;
}

#contact_area .wrap {
	max-width: 1192px;
}

#contact_area .title02 {
	margin-bottom: 16px;
	font-size: 32px;
}

#contact_area p {
	font-size: 15px;
	line-height: calc(30/15);
}

#contact_area .btn_area {
	display: flex;
	justify-content: space-between;
	margin-top: 26px;
}

#contact_area .btn_area div {
	width: calc((100% - (86px * 2)) / 3);
}

#contact_area .btn_area div a {
	display: block;
}

@media (min-width: 768px) {
	a[href*="tel:"] {
		text-decoration: none;
		cursor: default;
		pointer-events: none;
	}
}

@media screen and (max-width: 768px) {
	#contact_area {
		padding: 8.928571428571429vw 0 11.160714285714286vw;
	}

	#contact_area .wrap {
		width: 80.35714285714286vw;
	}

	#contact_area .title02 {
		margin-bottom: 3.571428571428571vw;
		font-size: 6.758401785714287vw;
	}

	#contact_area p {
		font-size: 3.1719910714285713vw;
		line-height: calc(71.0526/35.5263);
	}

	#contact_area .btn_area {
		flex-wrap: wrap;
		gap: 8.035714285714286vw;
		margin-top: 8.035714285714286vw;
	}

	#contact_area .btn_area div {
		width: 100%;
	}
}

footer {
	padding: 40px 0 30px;
	background: #000;
}

footer .wrap {
	flex-direction: row-reverse;
	justify-content: space-between;
	max-width: 1192px;
}

footer .foot1 {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

footer .foot1 .foot_logo {
	display: block;
	width: 206px;
	margin-bottom: 12px;
}

footer .foot1 p {
	font-size: 13px;
	color: #fff;
	line-height: 2;
}

footer .foot1 .foot_sns {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 110px 0 30px;
}

footer .foot1 .foot_sns li {
	width: 27px;
}

footer .foot1 .foot_sns li a {
	display: block;
}

footer .foot1 .copyright {
	font-size: 10px;
}

footer .footer_nav {
	display: flex;
	gap: 68px;
}

footer .footer_nav li a {
	font-size: 15px;
	color: #fff;
	line-height: 2;
	letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
	footer {
		padding: 8.035714285714286vw 0 7.678571428571429vw;
	}

	footer .wrap {
		display: block;
		width: 80.35714285714286vw;
	}

	footer .foot1 .foot_logo {
		width: 42.97935714285715vw;
		margin-bottom: 2.5vw;
	}

	footer .foot1 p {
		font-size: 2.7178035714285715vw;
	}

	footer .foot1 .copyright {
		margin-top: 5.803571428571429vw;
		font-size: 1.9738392857142857vw;
		text-align: center;
	}

	footer .footer_nav {
		justify-content: space-between;
		gap: 0;
		margin-bottom: 18.75vw;
	}

	footer .footer_nav li a {
		font-size: 3.125vw;
	}
}