html {
	font-size: 62.5%;
	/* sets the base font to 10px for easier math */
	-webkit-font-smoothing: antialiased;
}

body {
	position: relative;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	line-height: 1;
	font-size: 16px;
	color: #000;
	-webkit-text-size-adjust: 100%;
	word-wrap: break-word;
	overflow-wrap: break-word;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
@media (min-width: 769px) {
	body {
		font-size: 16px;
	}
}
@media (max-width: 360px) {
	body {
		font-size: 12px;
	}
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* -------------------------------------
common
----------------------------------------*/
a {
	color: inherit;
}

.cf:after {
	content: "";
	clear: both;
	display: block;
}

.ib {
	display: inline-block;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

strong {
	font-weight: 600;
}

.mode_pc,
.mode_pc_ib {
	display: none;
}

.mode_sp {
	display: block;
}

.mode_sp_ib {
	display: inline-block;
}

.tel a, .mail a {
	pointer-events: auto;
	cursor: pointer;
}

.bgImage {
	width: 100%;
	max-width: auto;
	max-width: inherit;
}

.mover {
	transition: opacity 0.2s ease-out;
	backface-visibility: hidden;
	zoom: 1;
}
.mover:hover {
	opacity: 0.7;
}

.inner,
.inner02,
.spInner {
	padding: 0 4%;
}
.inner .inner02,
.inner .inner03,
.inner02 .inner02,
.inner02 .inner03,
.spInner .inner02,
.spInner .inner03 {
	padding: 0;
}

.contentWrap .textBase {
	line-height: 1.8;
	font-size: 16px;
}

.anchor {
	margin-top: -100px;
	padding-top: 100px;
}

@media (min-width: 768px) {
	.tel a, .mail a {
		pointer-events: none;
	}

	.pcInner,
.inner {
		width: 90%;
		max-width: 1376px;
		margin: auto;
		padding: 0;
	}

	.pcInner02,
.inner02 {
		width: 90%;
		max-width: 1430px;
		margin: auto;
		padding: 0;
	}

	.spInner {
		padding: auto;
	}

	.anchor {
		margin-top: -80px;
		padding-top: 80px;
	}

	.mode_pc {
		display: block;
	}

	.mode_pc_ib {
		display: inline-block;
	}

	.mode_sp,
.mode_sp_ib {
		display: none;
	}

	.contentWrap .textBase {
		line-height: 2;
	}
}
/*
header
---------------------------*/
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	font-family: "Noto Serif JP", sans-serif;
	text-align: center;
	font-size: 14px;
	padding: 8px 2% 0;
	z-index: 20;
	transition: 0.5s ease;
	background-color: #fff;
	/*
	#contentNav
	---------------------------*/
}
header.is-fixed {
	transition: all 1000ms;
	transform: translate(0, -2px);
	background-color: rgba(255, 255, 255, 0.9);
}
header .siteNameBox {
	display: flex;
	align-items: center;
}
header .siteNameBox > div {
	width: 100px;
}
header .siteNameBox > div + div {
	width: 150px;
	margin-left: 20px;
}
header.open {
	height: 100%;
}
header #contentNav {
	display: flex;
	align-items: center;
	justify-content: center;
}
header #contentNav p {
	width: 50%;
	line-height: 1.2;
}
header #contentNav p a {
	display: block;
	padding: 10px 0;
	transition: opacity 0.2s ease-out;
}
header #contentNav p a:hover {
	color: #D01125;
}
@media (min-width: 768px) {
	header {
		padding: 20px 20px;
	}
	header #headerInner {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	header #headerInner .siteNameBox {
		width: 25%;
		padding-left: 30px;
	}
	header #headerInner .siteNameBox > div {
		width: 150px;
	}
	header #headerInner .siteNameBox > div + div {
		width: 240px;
		margin-left: 20px;
	}
	header #headerInner #contentNav {
		width: 75%;
	}
	header.is-fixed {
		transform: translate(0, -5px);
	}
	header.is-fixed #contentNav {
		top: 0;
	}
	header #contentNav p {
		width: auto;
	}
	header #contentNav p + p {
		padding-left: 4%;
	}
}
@media (min-width: 1000px) {
	header {
		font-size: 18px;
	}
}
@media (min-width: 1000px) {
	header #contentNav p {
		width: auto;
	}
	header #contentNav p + p {
		padding-left: 6%;
	}
}

/*
#mainVisual
---------------------------*/
#mainVisual {
	text-align: center;
	color: #fff;
	background: url("../img/mv-bg.webp") center center/cover no-repeat;
	padding: 30px 0 510px;
	margin-bottom: 50px;
}
#mainVisual h1 {
	font-size: 24px;
	line-height: 1.4;
	padding-bottom: 20px;
}
#mainVisual h2 {
	font-size: 34px;
	line-height: 1.5;
	font-weight: 700;
}
#mainVisual h2 span {
	font-size: 64px;
	font-weight: 700;
}
@media (min-width: 769px) {
	#mainVisual {
		padding: 135px 0 710px;
		margin-bottom: 100px;
	}
	#mainVisual h1 {
		font-size: 24px;
		line-height: 1.4;
		padding-bottom: 50px;
	}
	#mainVisual h2 {
		font-size: 54px;
		line-height: 1.4;
		font-weight: 700;
	}
	#mainVisual h2 span {
		font-size: 84px;
	}
}
@media (max-width: 360px) {
	#mainVisual h2 {
		font-size: 30px;
	}
}

/*
#main
---------------------------*/
#main {
	position: relative;
	background-color: rgba(189, 218, 137, 0.5);
}
#main .mainImageBox {
	display: flex;
}
#main .mainImageBox>div {
	position: relative;
}
#main .mainImageBox div .name {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(255, 255, 255, 0.9);
	text-align: center;
	font-size: 14px;
	margin: auto;
	padding: 10px 0;
}
#main .mainTextBox {
	position: relative;
	text-align: center;
	padding: 65px 2%;
}
#main .mainTextBox .mainBoxInner {
	position: relative;
	z-index: 1;
}
#main .mainTextBox h3 {
	font-size: 28px;
	line-height: 1.5;
	padding: 46px 0 50px;
}
#main .mainTextBox .mainLogo {
	width: 300px;
}
#main .mainTextBox .decoration {
	position: absolute;
	z-index: 0;
}
#main .mainTextBox .decoration01 {
	width: 118px;
	top: 0;
	left: 0;
}
#main .mainTextBox .decoration02 {
	width: 170px;
	bottom: 0;
	right: 0;
}
#main .mainText {
	line-height: 2;
	font-size: 18px;
	padding-bottom: 45px;
}
@media (min-width: 768px) {
	#main .mainText {
		font-size: 16px;
	}
}
	
@media (min-width: 1000px) {
	#main {
		display: flex;
		justify-content: space-between;
	}
	#main .mainImageBox {
		display: block;
		width: 25%;
	}
	
	#main .mainImageBox div {
		height: 50%;
		background: url("../img/main-image01.jpg") center center/cover no-repeat;
	}
	#main .mainImageBox div.mainImage02 {
		background: url("../img/main-image02.jpg") center center/cover no-repeat;
	}
	#main .mainImageBox div.mainImage03 {
		background: url("../img/main-image03.jpg") center center/cover no-repeat;
	}
	#main .mainImageBox div.mainImage04 {
		background: url("../img/main-image04.jpg") center center/cover no-repeat;
	}
	#main .mainImageBox div img {
		display: none;
	}
	#main .mainTextBox {
		width: 50%;
		padding: 87px 20px 89px;
	}
	#main .mainTextBox h3 {
		padding: 80px 0 58px;
	}
	#main .mainTextBox .mainLogo {
		width: 600px;
	}
	#main .mainTextBox .decoration01,
#main .mainTextBox .decoration02 {
		width: auto;
	}
	#main .mainText {
		line-height: 2.4;
		padding-bottom: 120px;
	}
	#main .mainImageBox div .name {
		min-width: 216px;
		left: auto;
		right: 0;
		padding: 10px;
	}
	#main .mainImageBox div.mainImage03 .name,
	#main .mainImageBox div.mainImage04 .name {
		left: 0;
		right: auto;
	}
}
@media (min-width: 1400px) {
	#main .mainTextBox h3 {
		font-size: 42px;
	}
	#main .mainText {
		font-size: 18px;
	}
}
@media (min-width: 1800px) {
	#main .mainTextBox {
		padding: 87px 50px 89px;
	}
	#main .mainTextBox h3 {
		font-size: 48px;
	}
}
@media (max-width: 360px) {
	#main h3 {
		font-size: 24px;
	}
	#main .mainText {
		font-size: 16px;
	}
}

/*
#concept
---------------------------*/
#concept .verticalTextWrap {
	display: flex;
	padding: 30px 0 20px;
}
#concept .verticalText {
	font-size: 44px;
	line-height: 1.2;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	white-space: nowrap;
}
#concept .conceptContent.type02 .verticalTextWrap {
	justify-content: flex-end;
}
#concept .conceptContent .conceptImage {
	position: relative;
	z-index: 2;
}

#concept .conceptContent .conceptImage .name {
	position: absolute;
	width:20%;
	top: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	text-align: center;
	margin: auto;
	padding: 10px 0;
}

#concept .conceptContent .conceptImage .namer {
	position: absolute;
	width:20%;
	top: 0;
	right: 0;
	background-color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	text-align: center;
	margin: auto;
	padding: 10px 0;
}

#concept .conceptContent + .conceptContent {
	padding-top: 100px;
}
#concept .conceptContent .conceptDetail {
	position: relative;
	padding: 0 4%;
}
#concept .conceptContent .conceptDetailInner {
	position: relative;
	z-index: 1;
}
#concept .conceptContent .decorationPc {
	display: none;
}
#concept .conceptContent .decoration {
	position: absolute;
	z-index: 0;
}
#concept .conceptContent .decoration01 {
	top: -150px;
	right: 0;
}
#concept .conceptContent .decoration02 {
	top: -150px;
	left: 0;
}
#concept .conceptContent .decoration03 {
	top: -150px;
	right: 0;
}
#concept .conceptContent .decoration04 {
	top: -150px;
	left: 0;
}
@media (min-width: 768px) {
	#concept .verticalTextWrap {
		justify-content: center;
		padding: 0;
	}
	#concept .conceptContent {
		padding: 0;
	}
	#concept .conceptContent.type02 .verticalTextWrap {
		justify-content: center;
	}
	#concept .conceptContent + .conceptContent {
		padding-top: 0;
	}
	#concept .conceptContent .conceptDetail {
		padding: 40px 0;
	}
	#concept .conceptContent .conceptDetailInner {
		display: flex;
		align-items: flex-end;
	}
	#concept .conceptContent .conceptDetailInner > div {
		width: 50%;
	}
	#concept .conceptContent .conceptDetailInner > div + div {
		padding-right: 5%;
	}
}
@media (min-width: 1000px) {
	#concept .verticalTextWrap {
		justify-content: flex-start;
		padding-bottom: 50px;
	}
	#concept .conceptContent {
		display: flex;
	}
	#concept .conceptContent + .conceptContent {
		padding-top: 100px;
	}
	#concept .conceptContent .conceptImage {
		width: 60%;
	}
	#concept .conceptContent .conceptDetail {
		width: 40%;
		padding: 0 90px;
	}
	#concept .conceptContent .conceptDetailInner {
		display: block;
	}
	#concept .conceptContent .conceptDetailInner > div {
		width: 100%;
	}
	#concept .conceptContent .conceptDetailInner > div + div {
		padding: 15px 0 0 10px;
	}
	#concept .conceptContent.type02 .conceptImage {
		order: 2;
	}
	#concept .conceptContent.type02 .conceptDetail {
		order: 1;
	}
	#concept .conceptContent.type02 .verticalTextWrap {
		justify-content: flex-end;
	}
	#concept .conceptContent .decorationSp {
		display: none;
	}
	#concept .conceptContent .decorationPc {
		display: block;
	}
	#concept .conceptContent .decoration01 {
		top: auto;
		bottom: 60px;
		right: auto;
		left: -250px;
	}
	#concept .conceptContent .decoration02 {
		top: auto;
		bottom: 200px;
		left: auto;
		right: -160px;
	}
	#concept .conceptContent .decoration03 {
		top: auto;
		bottom: 100px;
		right: auto;
		left: -150px;
	}
	#concept .conceptContent .decoration04 {
		top: auto;
		bottom: 80px;
		left: auto;
		right: -100px;
	}
}
@media (min-width: 1400px) {
	#concept .verticalText {
		font-size: 64px;
	}
}

/*
#movie
---------------------------*/
#movie {
	background: url("../img/movie-bg.jpg") center center/cover no-repeat;
	padding-bottom: 102px;
	margin-top: 20px;
}
#movie .movieInner {
	position: relative;
	cursor: pointer;
}
@media (min-width: 1000px) {
	#movie {
		margin-top: 200px;
		padding-bottom: 216px;
	}
}

#swedenhouse {
	display: flex;
	flex-wrap: wrap;
}
#swedenhouse > div {
	width: 100%;
	width: 100%;
}
#swedenhouse .swedenhouseDetail {
	text-align: center;
	padding: 100px 4% 50px;
}
#swedenhouse .logo {
	width: 250px;
	padding-bottom: 50px;
}
#swedenhouse .detailTitle {
	font-size: 32px;
	line-height: 1.2;
	padding-bottom: 50px;
}
#swedenhouse .detailText {
	font-size: 18px;
	line-height: 2;
	padding-bottom: 50px;
}
@media (min-width: 1000px) {
	#swedenhouse {
		padding-top: 200px;
	}
	#swedenhouse > div {
		width: 50%;
	}
	#swedenhouse .logo {
		width: auto;
		padding-bottom: 120px;
	}
	#swedenhouse .swedenhouseImage {
		order: 1;
	}
	#swedenhouse .swedenhouseDetail {
		padding: 150px 40px 50px;
		order: 2;
	}
	#swedenhouse .detailTitle {
		font-size: 48px;
		padding-bottom: 86px;
	}
	#swedenhouse .detailText {
		padding-bottom: 150px;
	}
}
@media (min-width: 1400px) {
	#swedenhouse .detailTitle {
		font-size: 42px;
	}
	#swedenhouse .detailText {
		font-size: 22px;
	}
}
@media (min-width: 1800px) {
	#swedenhouse .detailTitle {
		font-size: 48px;
	}
}
@media (max-width: 360px) {
	#swedenhouse .detailTitle {
		font-size: 28px;
	}
	#swedenhouse .detailText {
		font-size: 16px;
	}
}

/*
#location
---------------------------*/
#location {
	position: relative;
}
#location .locationImageBox {
	display: flex;
}
#location .locationImage {
	position: relative;
}
#location .locationImage .name {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	text-align: center;
	margin: auto;
	padding: 10px 0;
}
#location .locationTextBox {
	position: relative;
	padding: 40px 4%;
}
#location .locationTextBox .locationBoxInner {
	position: relative;
	z-index: 1;
}
#location .locationTextBox .locationBoxInner p {
	line-height: 2;
}
#location .locationTextBox .verticalTextWrap {
	display: flex;
	justify-content: center;
	padding-bottom: 45px;
}
#location .locationTextBox .verticalText {
	font-size: 44px;
	line-height: 1.2;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	white-space: nowrap;
}
#location .locationTextBox .textWrap {
	text-align: left;
}
#location .locationTextBox .decoration {
	max-width: 350px;
	position: absolute;
	top: 150px;
	left: 0;
	right: 0;
	margin: auto;
}
#location #map {
	padding: 100px 0 0;
}
#location #map iframe {
	width: 100%;
	height: 350px;
}
#location #map .accessDetail {
	padding-top: 15px;
}
#location #map .accessDetail > div {
	text-align: center;
}
#location #map .accessDetail > div + div {
	padding-top: 20px;
}
@media (min-width: 768px) {
	#location .locationTextBox {
		padding: 50px 0;
	}
	#location .locationTextBox .locationBoxInner {
		display: flex;
		align-items: center;
	}
	#location .locationTextBox .locationBoxInner > div {
		width: 50%;
	}
	#location .locationTextBox .locationBoxInner > div + div {
		padding: 0 5% 0 0;
	}
	#location #map .accessDetail {
		display: flex;
		padding-top: 50px;
	}
	#location #map .accessDetail > div {
		width: 50%;
	}
	#location #map .accessDetail > div + div {
		padding-top: 0;
	}
}
@media (min-width: 1000px) {
	#location .locationInner {
		display: flex;
		justify-content: space-between;
	}
	#location .locationImageBox {
		display: block;
		width: 25%;
	}
	#location .locationImageBox div {
		height: 50%;
		background: url("../img/location-image01.jpg") center center/cover no-repeat;
	}
	#location .locationImageBox div.locationImage02 {
		background: url("../img/location-image02.jpg") center center/cover no-repeat;
	}
	#location .locationImageBox div.locationImage03 {
		background: url("../img/location-image03.jpg") center center/cover no-repeat;
	}
	#location .locationImageBox div.locationImage04 {
		background: url("../img/location-image04.jpg") center center/cover no-repeat;
	}
	#location .locationImageBox div img {
		display: none;
	}
	#location .locationImage {
		position: relative;
	}
	#location .locationImage .name {
		min-width: 216px;
		position: absolute;
		bottom: 0;
		left: auto;
		right: 0;
		background-color: rgba(255, 255, 255, 0.9);
		margin: auto;
		padding: 10px;
	}
	#location .locationImage03 .name,
#location .locationImage04 .name {
		right: auto;
		left: 0;
	}
	#location .locationTextBox {
		width: 50%;
		padding: 0 5%;
	}
	#location .locationTextBox .verticalTextWrap {
		padding-bottom: 100px;
	}
	#location .locationTextBox .verticalText {
		font-size: 64px;
	}
	#location .locationTextBox .locationBoxInner {
		display: block;
	}
	#location .locationTextBox .locationBoxInner > div {
		width: 100%;
	}
	#location .locationTextBox .locationBoxInner > div + div {
		padding-right: 0;
	}
	#location .locationTextBox .decoration {
		max-width: auto;
		top: auto;
		bottom: 100px;
	}
	#location #map {
		padding: 140px 0 0;
	}
	#location #map iframe {
		height: 600px;
	}
}
@media (max-width: 360px) {
	#location .locationImage .name {
		font-size: 12px;
	}
}

#thought {
	padding-bottom: 100px;
}
#thought .thoughtBox {
	position: relative;
	text-align: center;
}
#thought .thoughtBox + .thoughtBox {
	margin-top: 10px;
}
#thought .thoughtBox:first-of-type .thoughtBtn a {
	background-color: rgba(189, 218, 137, 0.9);
}
#thought .thoughtBox:nth-of-type(2) .thoughtBtn a {
	background-color: rgba(187, 211, 238, 0.9);
}
#thought .thoughtBox:nth-of-type(3) .thoughtBtn a {
	background-color: rgba(244, 175, 171, 0.9);
}
#thought .thoughtBtn a {
	display: block;
	position: relative;
	padding: 22px 0;
	font-size: 28px;
	line-height: 1.4;
	font-weight: 700;
}
#thought .thoughtBtn a span {
	font-size: 22px;
	font-family: "Noto Serif JP", sans-serif;
	display: block;
	padding-bottom: 8px;
}
#thought .thoughtBtn a:before {
	position: absolute;
	right: 20px;
	top: 0;
	bottom: 0;
	content: "";
	display: block;
	width: 30px;
	height: 15px;
	background: url("../img/arrow.svg") center center/contain no-repeat;
	margin: auto;
}
@media (min-width: 768px) {
	#thought {
		padding-top: 32px;
		padding-bottom: 200px;
	}
	#thought .thoughtBoxWrap {
		display: flex;
	}
	#thought .thoughtBox {
		width: 100%;
		margin: 0 5px;
	}
	#thought .thoughtBox + .thoughtBox {
		margin-top: 0;
	}
	#thought .thoughtBtn {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		margin: auto;
	}
	#thought .thoughtBtn a {
		font-size: 18px;
	}
	#thought .thoughtBtn a span {
		font-size: 16px;
	}
	#thought .thoughtBtn a:before {
		right: 5px;
		width: 20px;
		height: 10px;
	}
}
@media (min-width: 769px) {
	#thought .thoughtBox {
		margin: 0 10px;
	}
}
@media (min-width: 1400px) {
	#thought .thoughtBtn a {
		font-size: 24px;
	}
	#thought .thoughtBtn a span {
		font-size: 20px;
	}
	#thought .thoughtBtn a:before {
		right: 20px;
		width: 30px;
		height: 15px;
		background: url("../img/arrow.svg") center center/contain no-repeat;
	}
	#thought .thoughtBtn {
		width: 80%;
	}
}
@media (min-width: 1800px) {
	#thought .thoughtBtn {
		width: 80%;
	}
}
@media (max-width: 360px) {
	#thought .thoughtBtn a {
		font-size: 24px;
		line-height: 1.2;
		font-weight: 700;
	}
	#thought .thoughtBtn a span {
		font-size: 20px;
	}
}

.contentTitleWrap {
	text-align: center;
	padding: 100px 0;
}
.contentTitleWrap.type02 {
	padding-bottom: 40px;
}
.contentTitleWrap.type02 > div + div {
	text-align: left;
	padding-top: 40px;
}
.contentTitleWrap .contentTitle {
	font-family: "Quattrocento", serif;
	font-size: 50px;
}
.contentTitleWrap .contentTitle span {
	display: block;
	font-size: 20px;
	color: #666;
	font-family: "Noto Sans JP", sans-serif;
	padding-top: 25px;
}
@media (min-width: 1000px) {
	.contentTitleWrap {
		padding: 200px 0 220px;
	}
	.contentTitleWrap.type02 {
		text-align: left;
		display: flex;
		align-items: center;
		padding: 110px 0 85px;
	}
	.contentTitleWrap.type02 > div + div {
		padding: 0 0 0 60px;
	}
	.contentTitleWrap.type02 .contentTitle {
		font-size: 80px;
	}
	.contentTitleWrap .contentTitle {
		font-size: 90px;
	}
	.contentTitleWrap .contentTitle span {
		font-size: 24px;
		padding-top: 20px;
	}
}
@media (max-width: 360px) {
	.contentTitleWrap .contentTitle {
		font-size: 48px;
	}
}

.btn {
	width: 95%;
	display: inline-block;
	background-color: #fff;
	border: 1px solid #D01125;
	transition: all 0.3s ease;
}
.btn.type02 {
	border: 1px solid #000;
}
.btn.type02:hover {
	color: #fff;
	background-color: #999;
}
.btn:hover {
	color: #fff;
	background-color: #D01125;
}
.btn a {
	display: block;
	font-size: 16px;
	padding: 15px 10px 16px;
}
@media (min-width: 769px) {
	.btn {
		width: 480px;
	}
	.btn a {
		font-size: 20px;
		padding: 20px 10px;
	}
}
@media (max-width: 360px) {
	.btn a {
		font-size: 14px;
	}
}

video {
	max-width: 100%;
}

.iziModal {
	width: 88%;
	background-color: #fff !important;
	margin: auto;
}

.iziModal .close {
	display: block;
	position: absolute;
	right: 0;
	top: -30px;
	width: 50px;
	height: 50px;
	cursor: pointer;
	z-index: 10;
	padding: 0;
}

.iziModal .close > a {
	display: block;
	width: 50px;
	height: 50px;
	padding: 0;
}

.iziModal .close > a {
	position: relative;
}

.iziModal .close > a:before,
.iziModal .close > a:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 2px;
	background-color: #fff;
	-webkit-transform: translateY(10px) rotate(-45deg);
	transform: translateY(12px) rotate(-45deg);
}

.iziModal .close > a:before {
	top: 24px;
	-webkit-transform: translateY(-10px) rotate(45deg);
	transform: translateY(-12px) rotate(45deg);
}

.iziModal-navigate-caption {
	display: none !important;
}

@media (min-width: 1000px) {
	.iziModal .close {
		top: -40px;
	}

	.iziModal .close > a:before,
.iziModal .close > a:after {
		width: 40px;
	}
}
/*
footer
---------------------------*/
footer {
	position: relative;
}
footer .footerInner {
	position: relative;
	padding: 35px 4% 140px;
	background-color: #213D6A;
	color: #fff;
}
footer .footerInner:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 73px;
	background-color: #375079;
}
footer .inner {
	max-width: 688px;
}
footer .copy {
	text-align: center;
	font-size: 16px;
	padding: 10px 0 30px;
}
footer .companyDetail {
	padding-bottom: 60px;
}
footer .companyDetail .companyName {
	font-weight: 700;
	font-size: 26px;
	line-height: 1.4;
	padding-bottom: 20px;
}
footer .companyDetail .address,
footer .companyDetail .tel {
	font-size: 20px;
	line-height: 1.8;
}
footer .bnrBox {
	text-align: center;
}
footer .bnrBox + .bnrBox {
	padding-top: 15px;
}
footer .bnrBox p {
	font-size: 14px;
	padding-top: 8px;
}
footer .bnrBox img {
	width: 280px;
}
@media (min-width: 768px) {
	footer .footerInner {
		padding: 100px 50px 180px;
	}
	footer .bnrBoxInner {
		display: flex;
		justify-content: space-between;
		/*align-items: center;*/
	}
	footer .companyDetail .companyName {
		font-size: 24px;
	}
	footer .companyDetail .address,
footer .companyDetail .tel {
		font-size: 18px;
	}
	footer .bnrBox {
		text-align: center;
	}
	footer .bnrBox.bnrBox {
		padding: 0 0 0 20px;
	}
	footer .bnrBox p {
		font-size: 12px;
	}
}
@media (min-width: 1000px) {
	footer .footerInner {
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
	}
	footer .companyDetail {
		padding-bottom: 0;
	}
	footer .companyDetail .tel {
		padding-bottom: 2em;
	}
	footer .bnrBox p {
		font-size: 14px;
	}
}
@media (max-width: 360px) {
	footer .copy {
		font-size: 11px;
	}
	footer .companyDetail .companyName {
		font-size: 22px;
	}
	footer .companyDetail .address,
footer .companyDetail .tel {
		font-size: 18px;
	}
	footer .bnrBox p {
		font-size: 12px;
	}
}

.pagetop {
	display: none;
	position: fixed;
	z-index: 10;
	bottom: 0;
	right: 0;
}
.pagetop img {
	width: 50px;
}
.pagetop.stop {
	position: absolute;
	bottom: auto;
	top: -70px;
}
@media (min-width: 768px) {
	.pagetop {
		bottom: 20px;
		right: 34px;
	}
	.pagetop.stop {
		position: absolute;
		top: -100px;
	}
}

/*
contentBox
---------------------------*/
.contentBox {
	padding: 0 0 60px;
}
@media (min-width: 1000px) {
	.contentBox {
		padding: 0 0 100px;
	}
}

.bgBox {
	background-color: #EBE9DB;
}

.contentWrap {
	overflow: hidden;
	padding-top: 102px;
}
@media (min-width: 768px) {
	.contentWrap {
		padding-top: 70px;
	}
}
@media (min-width: 1000px) {
	.contentWrap {
		padding-top: 100px;
	}
}

/*
inview style
---------------------------*/
.bottom_to_top {
	transform: translate3d(0, 50px, 0);
	opacity: 0;
}

.bottom_to_top_fadeIn {
	transform: translate3d(0, 0, 0);
	transition: 0.8s ease-in-out 0.5s;
	opacity: 1;
}

.zoom {
	transform: scale(0.8);
	opacity: 0;
}

.zoom_fadeIn {
	transform: scale(1);
	transition: 0.5s ease-out 0.5s;
	opacity: 1;
	overflow: hidden;
}

.zoomBnr {
	transform: scale(0.8);
	opacity: 0;
}

.zoomBnr_fadeIn {
	transform: scale(1);
	transition: 0.5s ease-out 0.5s;
	opacity: 1;
	overflow: hidden;
}

.zoomImageWrap {
	display: block;
	overflow: hidden;
}

.zoomImageWrap .zoomImage {
	transition: all 0.5s ease;
}

.zoomImageWrap:hover .zoomImage {
	transition: 0.5s;
	transform: scale(1.05);
}

/*# sourceMappingURL=style.css.map */