@charset "utf-8";
/* CSS Document */


/*フォント*/
body {
	font-family: "Spectral", "Times New Roman", serif;
	font-weight: 400;
	font-size: 19px;
}
@media only screen and (max-width: 600px) {
	body {
		font-size: 17px;
	}
}

a {
	text-decoration: none;
}
a.underline {
	text-decoration: underline;
	color: #000;
}
a.underline:hover {
	text-decoration: none;
}
ul {
	list-style: none;
}


/* Layout */
body { position: relative;}
body.is-lock { overflow: hidden;}




/*wrap関連*/
.wrap {
	max-width: 1100px;
	padding: 0 20px;
	margin: 0 auto;
}
.wrapM {
	max-width: 900px;
	padding: 0 20px;
	margin:0 auto;
}
.wrapS {
	max-width: 800px;
	padding: 0 20px;
	margin:0 auto;
}
/*PC→スマホ 表示・非表示*/
.pcBlock { display: block !important;}
.spBlock { display: none !important;}
.pcInline { display: inline !important;}
.spInline { display: none !important;}
@media only screen and (max-width: 600px) {
	.wrap .wrapM {
		padding: 0;
	}
	.wrap .wrapS {
		padding: 0;
	}
	/*PC→スマホ 表示・非表示*/
	.pcBlock { display: none !important;}
	.spBlock { display: block !important;}
	.pcInline { display: none !important;}
	.spInline { display: inline !important;}
}




/* =============================================================================
   gHead
   ========================================================================== */
#gHead {
	position: fixed;
	width: 100%;
	box-sizing: border-box;
	z-index: 1000;
	padding: 15px 30px;
}
#gHead .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#gHead .logo {
	display: none;
	width: 30%;
	max-width: 130px;
}
#gHead .lang {
	position: relative;
	margin-left: auto;
	margin-right: 30px;
}
#gHead .lang .btn {
	background: #000;
	color: #fff;
	font-size: 17px;
	padding: 5px 15px;
	border-radius: 3px;
	display: flex;
	align-items: center;
	cursor: pointer;
}
#gHead .lang .btn .ico {
	width: 17px;
}
#gHead .lang .btn em {
	font-style: normal;
	margin: 0 10px;
}
#gHead .lang .btn i.fa {
	font-size: 14px;
	transform: rotate(0);
	transition: transform .3s ease-in-out, top .3s ease-in-out;
}
#gHead .lang .btn.open {
	border-radius: 3px 3px 0 0;
}
#gHead .lang .btn.open i.fa {
	transform: rotate(-180deg);
}
#gHead .lang ul.list {
	display: none;
	position: absolute;
	width: 100%;
	background: #fff;
	text-align: center;
}
#gHead .lang ul.list li {
	border-bottom: 1px solid #EDEDED;
}
#gHead .lang ul.list li:last-child {
	border-bottom: none;
}
#gHead .lang ul.list li a {
	display: block;
	color: #000;
	background: #fff;
	font-size: 17px;
}
#gHead .lang ul.list li a:hover {
	background: #000;
	color: #fff;
}
#gHead .btnMenu {
	transition: 0.3s;
}
#gHead .btnMenu .hamburger {
	display: block;
	background: none;
}
#gHead .btnMenu .hamburger {
	padding: 0;
	border: none;
	margin: 0;
}
#gHead .btnMenu .hamburger div {
	height: 25px;
	width: 30px;
	position: relative;
}
#gHead .btnMenu .hamburger .gh-menu-bar {
	position: absolute;
	left: 0;
	display: block;
	width: 100%;
	height: 2px;
	background-color: #fff;
	transition: all .3s;
}
#gHead .btnMenu .hamburger .gh-menu-bar.mod-top {
	top: 0;
}
#gHead .btnMenu .hamburger .gh-menu-bar.mod-middle {
	top: 12px;
}
#gHead .btnMenu .hamburger .gh-menu-bar.mod-bottom {
	bottom: 0;
}
#gHead .btnMenu .hamburger.is-open .gh-menu-bar {
	background-color: #000;
}
#gHead .btnMenu .hamburger.is-open .gh-menu-bar.mod-top {
	top: 11px;
	transform: rotate(-45deg);
}
#gHead .btnMenu .hamburger.is-open .gh-menu-bar.mod-middle {
	background-color: transparent;
}
#gHead .btnMenu .hamburger.is-open .gh-menu-bar.mod-bottom {
	bottom: 11px;
	transform: rotate(-135deg);
}
@media screen and (max-width: 600px) {
	#gHead {
		padding: 15px 20px;
	}
	#gHead .lang {
		margin-right: 15px;
	}
	#gHead .lang .btn {
		font-size: 14px;
		padding: 5px 12px;
		border-radius: 2px;
	}
	#gHead .lang .btn .ico {
		width: 14px;
	}
	#gHead .lang .btn em {
		margin: 0 6px;
	}
	#gHead .lang .btn i.fa {
		font-size: 12px;
	}
	#gHead .lang ul.list li a {
		font-size: 14px;
	}
	#gHead .btnMenu .hamburger div {
		height: 20px;
		width: 26px;
	}
	#gHead .btnMenu .hamburger .gh-menu-bar.mod-middle {
		top: 9px;
	}
	#gHead .btnMenu .hamburger.is-open .gh-menu-bar.mod-top {
		top: 9px;
	}
	#gHead .btnMenu .hamburger.is-open .gh-menu-bar.mod-bottom {
		bottom: 9px;
	}
}
/*メインビジュアル過ぎたあと*/
#gHead.transform {
	background: #fff;
	border-bottom: 1px solid #EDEDED;
}
#gHead.transform .logo {
	display: block;
}
#gHead.transform .btnMenu .hamburger .gh-menu-bar {
	background-color: #000;
}




/* =============================================================================
   menu
   ========================================================================== */
#menu {
	display: flex;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 100;
	width: 70%;
	max-width: 600px;
	margin-left: auto;
	height: 100vh;
	background-color: #fff;
	opacity: 0;
	pointer-events: none !important;
	transition: all 0.4s;
}
#menu.is-open {
	opacity: 1;
	pointer-events: auto !important;
}
#menu .right {
	width: 100%;
	margin-left: auto;
	height: 100vh;
	box-sizing: border-box;
	padding-top: 80px;
	padding-bottom: 30px;
	/*overflow-y: scroll;*/
}
#menu .right .inner {
	padding: 0 20px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
#menu .right ul.list {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
#menu .right ul.list li {
	width: 100%;
	margin: 15px 0;
}
#menu .right ul.list li a {
	display: block;
	text-align: center;
	line-height: 1;
	color: #000;
	font-size: 20px;
}
#menu .right ul.list li a:hover {
	color: #777;
}
#menu .right .reservation {
	background: #EDEDED;
	padding: 30px 50px;
	width: 100%;
	box-sizing: border-box;
	margin-top: 30px;
	text-align: center;
}
#menu .right .reservation ul.btn {}
#menu .right .reservation ul.btn li {
	margin-top: 0.5em;
}
#menu .right .reservation ul.btn li a {
	display: block;
	position: relative;
	background: #000;
	color: #fff;
	text-align: center;
	font-size: 22px;
	border-radius: 50px;
	padding: 10px 0;
}
#menu .right .reservation ul.btn li.airbnb a {
	background: #E71F4E;
}
#menu .right .reservation ul.btn li.bookingcom a {
	background: #00348A;
}
#menu .right .reservation ul.btn li a:hover {
	background: #000;
}
#menu .right .reservation ul.btn li a .ico {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
}
@media only screen and (max-width: 600px) {
	#menu {
		width: 100%;
	}
	#menu .right .reservation {
		padding: 30px 30px;
		margin-top: 20px;
	}
}





/* =============================================================================
   gFoot
   ========================================================================== */
#gFoot {
	background: #000;
	color: #fff;
}
#gFoot .reservation {
	background: url("img/bg_gFoot-reservation.jpg") no-repeat center center;
	background-size: cover;
	padding: 80px 0;
	text-align: center;
}
#gFoot .reservation p {
	font-size: 22px;
}
#gFoot .reservation ul.btn {
	display: flex;
	justify-content: center;
}
#gFoot .reservation ul.btn li {
	width: 240px;
	margin-top: 0.5em;
	margin-right: 15px;
}
#gFoot .reservation ul.btn li:last-child {
	margin-right: 0;
}
#gFoot .reservation ul.btn li a {
	display: block;
	position: relative;
	background: #000;
	color: #fff;
	text-align: center;
	font-size: 22px;
	border-radius: 50px;
	padding: 10px 0;
}
#gFoot .reservation ul.btn li.airbnb a {
	background: #E71F4E;
}
#gFoot .reservation ul.btn li.bookingcom a {
	background: #00348A;
}
#gFoot .reservation ul.btn li a:hover {
	background: #000;
}
#gFoot .reservation ul.btn li a .ico {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
}
#gFoot .contact {
	padding: 50px 0;
	text-align: center;
}
#gFoot .contact .link a {
	color: #fff;
	text-decoration: underline;
}
#gFoot .contact .link a:hover {
	text-decoration: none;
}
#gFoot .contact ul.list {
	display: table;
	margin: 0 auto;
	margin-top: 30px;
	list-style: disc;
	text-align: left;
}
#gFoot .contact ul.list li a {
	color: #fff;
	text-decoration: underline;
	font-size: 16px;
}
#gFoot .contact ul.list li a:hover {
	text-decoration: none;
}
#gFoot .copy {
	text-align: center;
	padding: 1.0em 0;
	font-size: 12px;
}

@media only screen and (max-width: 600px) {
	#gFoot .reservation {
		padding: 60px 40px;
	}
	#gFoot .reservation p {
		font-size: 18px;
	}
	#gFoot .reservation ul.btn {
		flex-direction: column;
	}
	#gFoot .reservation ul.btn li {
		width: 100%;
		margin: 0;
		margin-top: 0.5em;
	}
	#gFoot .contact {
		padding: 40px 0;
	}
	#gFoot .contact ul.list {
		margin-top: 20px;
		font-size: 15px;
	}
}




/* =============================================================================
   reserveBtn
   ========================================================================== */
#reserveBtn {
	position: fixed;
	bottom: 15px;
	right: 15px;
	z-index: 90;
}
#reserveBtn a:hover {
	opacity: 0.4;
}
@media screen and (max-width: 600px) {
	#reserveBtn {
		bottom: 10px;
		right: 10px;
		max-width: 70px;
	}
}







/* =============================================================================
   mainVisual
   ========================================================================== */
#mainVisual {
	position: relative;
}
#mainVisual .slideText {
	color: #fff;
	text-align: center;
	width: 100%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
#mainVisual .slideText h1 {
	width: 60%;
	max-width: 300px;
	margin: 0 auto;
	margin-bottom: 30px;
}
#mainVisual .slideText p {
	font-size: 28px;
	line-height: 1.2;
}
#mainVisual .slideText ul.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 30px;
}
#mainVisual .slideText ul.list li {
	width: 27%;
	max-width: 150px;
	margin: 15px;
}
#mainVisual .fullSlide div.image {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100vh;
	margin: 0;
}
#mainVisual .fullSlide div.main01 {
	background-image: url("img/img_slide-01.jpg");
}
#mainVisual .fullSlide div.main02 {
	background-image: url("img/img_slide-02.jpg");
}
#mainVisual .fullSlide div.main03 {
	background-image: url("img/img_slide-03.jpg");
}
#mainVisual .fullSlide div.main04 {
	background-image: url("img/img_slide-04.jpg");
}
#mainVisual .fullSlide div.main05 {
	background-image: url("img/img_slide-05.jpg");
}
@media only screen and (max-width: 600px) {
	#mainVisual .slideText h1 {
		margin-bottom: 20px;
	}
	#mainVisual .slideText p {
		font-size: 18px;
	}
	#mainVisual .fullSlide div.image {
		height: 500px;
	}
	#mainVisual .slideText ul.list {
		margin-top: 15px;
	}
	#mainVisual .slideText ul.list li {
		margin: 5px;
	}
}





/*Lp汎用スタイル*/
#content .catchImage {}
#content .catchImage img {
	width: 100%;
	height: 24vw;
	max-height: 420px;
	object-fit: cover;
}
@media only screen and (max-width: 1300px) {
	#content .catchImage img {
		height: 30vw;
		max-height: 320px;
	}
}
@media only screen and (max-width: 600px) {
	#content .catchImage img {
		height: 220px;
	}
}


#content h1.title,
#content h2.title {
	position: relative;
	line-height: 1;
	font-weight: 400;
	font-size: calc(28px + (48 - 28) * (100vw - 600px) / (1100 - 600));
	text-align: center;
	padding-bottom: 0.5em;
	margin-bottom: 1.0em;
}
#content h1.title:before,
#content h2.title:before {
	display: inline-block;
	position: absolute;
	content: '';
	bottom: 0;
	left: 50%;
	width: 32px;
	height: 2px;
	transform: translate(-50%);
	background-color: #000;
}
@media (min-width: 1100px) {
	#content h1.title,
	#content h2.title {
		font-size: 42px;
	}
}
@media (max-width: 600px) {
	#content h1.title,
	#content h2.title {
		font-size: 26px;
	}
	#content h1.title:before,
	#content h2.title:before {
		width: 20px;
		height: 1px;
	}
}


#content h3.title {
	position: relative;
	line-height: 1;
	font-weight: 400;
	font-size: calc(20px + (30 - 20) * (100vw - 400px) / (800 - 400));
	text-align: center;
	margin-bottom: 1.0em;
	display: flex;
	align-items: center;
	justify-content: center;
}
#content h3.title span {
	padding: 0 20px;
}
#content h3.title::before,
#content h3.title::after {
	content: "";
	display: block;
	height: 1px;
	width: 20px;
	background: #000;
}
@media (min-width: 800px) {
	#content h3.title {
		font-size: 30px;
	}
}
@media (max-width: 400px) {
	#content h3.title {
		font-size: 20px;
	}
}


#content nav.btnLink {
	margin-top: 40px;
}
#content nav.btnLink a {
	display: block;
	max-width: 500px;
	margin: 0 auto;
	position: relative;
	background: #FAFAFA url("img/ico_arrow03.png") no-repeat right 15px center;
	background-size: 18px auto;
	border: 1px solid #707070;
	color: #000;
	text-align: center;
	font-size: 22px;
	border-radius: 50px;
	padding: 14px 0;
}
#content nav.btnLink a:hover {
	background: #707070 url("img/ico_arrow02.png") no-repeat right 15px center;
	background-size: 18px auto;
	color: #fff;
}
@media only screen and (max-width: 600px) {
	#content nav.btnLink {
		margin-top: 20px;
	}
	#content nav.btnLink a {
		padding: 10px 0;
	}
}


#content .slide .slick-slide {}
#content .slide .slick-slide p {
	font-size: 16px;
	text-align: center;
	margin-top: 5px;
	line-height: 1.4;
}
#content .slide .slick-dots {
	bottom: -30px;
}
#content .slide .slick-dots li {
	margin: 0;
}
#content .slide .slick-dots li button:before {
	font-size: 10px;
}
#content .slide .prev-arrow,
#content .slide .next-arrow {
    display: block;
    width: 42px;
    height: 42px;
    transition: all .3s ease;
    cursor: pointer;
    position:relative;
	position: absolute;
	top: 50%;
	z-index: 2;
}
#content .slide .prev-arrow {
	background: url("img/ico_prev2.png") no-repeat center center;
	background-size: cover;
	left: 0;
	transform: translate(20%,-50%);
}
#content .slide .next-arrow {
	background: url("img/ico_next2.png") no-repeat center center;
	background-size: cover;
	right: 0;
	transform: translate(-20%,-50%);
}
#content .slide .prev-arrow.slick-disabled,
#content .slide .next-arrow.slick-disabled,
#content .slide .prev-arrow:hover,
#content .slide .next-arrow:hover {
	opacity: 0.3;
}
@media (max-width: 767px) {
	#content .slide .slick-slide p {
		font-size: 15px;
	}
	#content .slide .slick-dots {
		bottom: -25px;
	}
}


#content .slideArea .slick-slide {
	margin: 0 !important;
}
#content .slideArea .prev-arrow,
#content .slideArea .next-arrow {
    display: block;
    width: 20px;
    height: 20px;
    transition: all .3s ease;
    cursor: pointer;
    position:relative;
	position: absolute;
	top: 50%;
	z-index: 2;
}
#content .slideArea .prev-arrow {
	background: url("img/ico_prev.png") no-repeat center center;
	background-size: cover;
	left: 3px;
	transform: translate(-100%,-50%);
}
#content .slideArea .next-arrow {
	background: url("img/ico_next.png") no-repeat center center;
	background-size: cover;
	right: 3px;
	transform: translate(100%,-50%);
}
#content .slideArea .prev-arrow.slick-disabled,
#content .slideArea .next-arrow.slick-disabled,
#content .slideArea .prev-arrow:hover,
#content .slideArea .next-arrow:hover {
	opacity: 0.5;
}







/*sec01*/
#content .sec01 {
	padding: 60px 0;
	padding-bottom: 100px;
	overflow: hidden;
}

#content .sec01 p {
 font-size: 18px;
 line-height: 2rem;
}

@media only screen and (max-width: 767px) {
	#content .sec01 {
		padding: 30px 0;
		padding-bottom: 50px;
	}

	#content .sec01 p {
     font-size: 0.9rem;
     line-height: 1.4rem;
	}	
}
#content .sec01 .col1 {
	display: flex;
	align-items: center;
}
#content .sec01 .col1 .text {
	flex: 1;
}
#content .sec01 .col1 figure {
	width: 63%;
	text-align: right;
	margin-left: 50px;
	margin-right: -120px;
}
@media only screen and (max-width: 1340px) {
	#content .sec01 .col1 figure {
		width: 54%;
		margin-left: 40px;
		margin-right: calc(50% - 50vw);
	}
}
@media only screen and (max-width: 900px) {
	#content .sec01 .col1 {
		margin-bottom: 40px;
	}
}
@media only screen and (max-width: 767px) {
	#content .sec01 .col1 {
		flex-direction: column;
		margin-bottom: 30px;
	}
	#content .sec01 .col1 .text {
		text-align: center;
	}
	#content .sec01 .col1 figure {
		width: auto;
		text-align: center;
		margin: 0 -20px;
		margin-top: 20px;
	}
}
#content .sec01 .col2 {
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
}
#content .sec01 .col2 .text {
	flex: 1;
	text-align: right;
}
#content .sec01 .col2 figure {
	width: 63%;
	text-align: left;
	margin-right: 50px;
	margin-left: -120px;
}
@media only screen and (max-width: 1340px) {
	#content .sec01 .col2 figure {
		width: 54%;
		margin-right: 40px;
		margin-left: calc(50% - 50vw);
	}
}
@media only screen and (max-width: 767px) {
	#content .sec01 .col2 {
		flex-direction: column;
	}
	#content .sec01 .col2 .text {
		text-align: center;
	}
	#content .sec01 .col2 figure {
		width: auto;
		text-align: center;
		margin: 0 -20px;
		margin-top: 20px;
	}
}
#content .sec01 .col3 {
	margin-top: 50px;
}
#content .sec01 .col3 p {
	text-align: center;
}
@media only screen and (max-width: 767px) {
	#content .sec01 .col3 {
		margin-top: 30px;
	}
}




/*sec02*/
#content .sec02 {
	background: url("img/bg_sec02.png") repeat center top;
	padding: 0;
	padding-bottom: 100px;
}
#content .sec02 .inner {
	padding-top: 60px;
}
@media only screen and (max-width: 767px) {
	#content .sec02 {
		padding-bottom: 50px;
	}
	#content .sec02 .inner {
		padding-top: 30px;
	}

	#content .sec02 p.catch {
     font-size: 0.9rem;
     line-height: 1.2rem;
	}

	#content .sec02 .owner .text p {
     font-size: 0.9rem;
     line-height: 1.2rem;
	}
}
#content .sec02 .floor {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 40px;
}
#content .sec02 .floor figure {
	width: 40%;
}
#content .sec02 .floor .details {
	width: 55%;
}
@media only screen and (max-width: 767px) {
	#content .sec02 .floor {
		flex-direction: column;
		margin-top: 20px;
	}
	#content .sec02 .floor figure {
		width: 90%;
		margin: 0 auto;
		margin-bottom: 10px;
	}
	#content .sec02 .floor .details {
		width: 90%;
		margin: 0 auto;
	}
}
@media only screen and (max-width: 600px) {
	#content .sec02 .floor figure {
		width: 100%;
	}
	#content .sec02 .floor .details {
		width: 100%;
	}
}

#content .sec02 .owner {
	position: relative;
	margin-top: 60px;
}
#content .sec02 .owner:before,
#content .sec02 .owner:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	border: 1px solid #ADADAD;
}
#content .sec02 .owner:before {
	top: -5px;
	left: -5px;
}
#content .sec02 .owner:after {
	bottom: -5px;
	right: -5px;
}
#content .sec02 .owner .inner {
	position: relative;
	z-index: 1;
	padding: 40px;
}
#content .sec02 .owner .flex {
	display: flex;
}
#content .sec02 .owner .flex figure {
	width: 33%;
	margin-right: 5%;
}
#content .sec02 .owner .flex .text {
	flex: 1;
}
@media only screen and (max-width: 800px) {
	#content .sec02 .wrapS {
		margin: 0 -10px;
	}
	#content .sec02 .owner {
		margin-top: 40px;
	}
	#content .sec02 .owner:before {
		top: -3px;
		left: -3px;
	}
	#content .sec02 .owner:after {
		bottom: -3px;
		right: -3px;
	}
	#content .sec02 .owner .inner {
		padding: 20px 15px;
	}
	#content .sec02 .owner .flex figure {
		width: 40%;
	}
	#content .sec02 .owner .flex .text {
		font-size: 15px;
	}
}
@media only screen and (max-width: 425px) {
	#content .sec02 .owner .flex {
		display: block;
	}
	#content .sec02 .owner .flex figure {
		float: left;
	}
}
#content .sec02 ul.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 30px;
}
#content .sec02 ul.list li {
	width: 40%;
	max-width: 280px;
	margin: 15px;
}
@media only screen and (max-width: 767px) {
	#content .sec02 ul.list {
		margin-top: 15px;
	}
	#content .sec02 ul.list li {
		margin: 10px;
	}
}




/*sec03*/
#content .sec03 {
	padding: 0;
	padding-bottom: 100px;
}
#content .sec03 .inner {
	padding-top: 60px;
}
@media only screen and (max-width: 767px) {
	#content .sec03 {
		padding-bottom: 50px;
	}
	#content .sec03 .inner {
		padding-top: 30px;
	}
}
#content .sec03 figure.map {
	text-align: center;
	margin-bottom: 60px;
}
#content .sec03 ul.list {
	display: flex;
	justify-content: space-between;
}
#content .sec03 ul.list li {
	width: 30%;
	display: flex;
	flex-direction: column;
}
#content .sec03 ul.list li .text {
	flex: 1;
}
#content .sec03 ul.list li .text h3 {
	text-align: center;
	font-weight: 400;
	font-size: 20px;
	margin: 10px 0;
}
#content .sec03 ul.list li .text p {
	font-size: 16px;
	text-align: center;
}
#content .sec03 ul.list li .text p.note {
	text-align: left;
	margin-top: 10px;
	line-height: 1.4;
}
#content .sec03 ul.list li .text p.note i.fa {
	margin-right: 5px;
}
@media only screen and (max-width: 1100px) {
	#content .sec03 ul.list {
		flex-direction: column;
	}
	#content .sec03 ul.list li {
		width: 100%;
		margin-top: 50px;
		flex-direction: row;
	}
	#content .sec03 ul.list li:nth-child(2) {
		flex-direction: row-reverse;
	}
	#content .sec03 ul.list li .images {
		width: 45%;
		margin-right: 5%;
	}
	#content .sec03 ul.list li:nth-child(2) .images {
		margin: 0;
		margin-left: 5%;
	}
	#content .sec03 ul.list li:first-child {
		margin-top: 0;
	}
	#content .sec03 ul.list li .text h3 {
		margin-top: 0;
	}
}
@media only screen and (max-width: 700px) {
	#content .sec03 figure.map {
		margin-bottom: 40px;
	}
	#content .sec03 ul.list li {
		margin-top: 40px;
		flex-direction: column;
	}
	#content .sec03 ul.list li:nth-child(2) {
		flex-direction: column;
	}
	#content .sec03 ul.list li .images {
		width: 100%;
		margin: 0;
		margin-bottom: 20px;
	}
	#content .sec03 ul.list li:nth-child(2) .images {
		margin: 0;
		margin-bottom: 20px;
	}
	#content .sec03 ul.list li .text p {
     font-size: 0.9rem;
     line-height: 1.2rem;
	}	
}




/*sec04*/
#content .sec04 {
	padding: 0;
	padding-bottom: 100px;
}
#content .sec04 .inner {
	padding-top: 60px;
}
@media only screen and (max-width: 767px) {
	#content .sec04 {
		padding-bottom: 50px;
	}
	#content .sec04 .inner {
		padding-top: 30px;
	}
}
#content .sec04 table {}
#content .sec04 table th {
	padding: 20px 0;
	padding-right: 30px;
	text-align: left;
	font-weight: 400;
	border-bottom: 1px solid #BEBEBE;
	white-space: nowrap;
}
#content .sec04 table td {
	padding: 20px 0;
	border-bottom: 1px solid #BEBEBE;
	font-size: 16px;
}
#content .sec04 table td i.fa {
	margin-right: 5px;
}
#content .sec04 .flex {
	display: flex;
	margin-top: 20px;
}
#content .sec04 .flex:first-child {
	margin-top: 0;
}
#content .sec04 .flex figure {
	width: 32%;
	margin-right: 3%;
}
#content .sec04 .flex .text {
	flex: 1;
}
#content .sec04 .flex .text ul {
	list-style: disc;
	list-style-position: outside;
	padding-left: 4%;
}
@media only screen and (max-width: 767px) {
	#content .sec04 table {
		font-size: 15px;
	}
	#content .sec04 table th {
		padding: 10px 0;
		padding-right: 20px;
		white-space: normal;
	}
	#content .sec04 table td {
		padding: 10px 0;
		border-bottom: 1px solid #BEBEBE;
	}
	#content .sec04 .flex {
		flex-direction: column;
	}
	#content .sec04 .flex figure {
		width: 100%;
		max-width: 400px;
		margin: 0;
	}
	#content .sec04 .flex .text {
		padding: 10px 15px;
		border-left: 1px solid #707070;
	}
	#content .sec04 .flex .text ul {
		padding-left: 8%;
	}
}










/* =============================================================================
   terms
   ========================================================================== */

#content .terms {
	padding-top: 100px;
	padding-bottom: 100px;
}
#content .terms nav.prev {
	text-align: center;
}
#content .terms nav.prev a {
	font-size: 17px;
	font-weight: 400;
	color: #000;
}
#content .terms nav.prev a:hover {
	color: #999;
}
#content .terms nav.prev a i.fa {
	margin-right: 10px;
	font-size: 17px;
}
@media only screen and (max-width: 767px) {
	#content .terms {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	#content .terms nav.prev a {
		font-size: 0.85rem;
	}
	#content .terms nav.prev a i.fa {
		margin-right: 7px;
		font-size: 13px;
	}
}

#content .termsSec {
	padding: 0;
	padding-bottom: 80px;
}
#content .termsSec h1 {
	font-size: 32px;
}
#content .termsSec h2 {
	font-size: 32px;
}
#content .termsSec h3 {
	font-size: 22px;
	font-weight: 400;
	border-bottom: 1px solid #000;
	margin-top: 40px;
	margin-bottom: 20px;
	padding-bottom: 10px;
}
#content .termsSec ol {
	list-style-position: outside;
	padding-left: 1.5em;
}
#content .termsSec ol li {
	padding: 7px 0;
}
#content .termsSec p {
	padding: 7px 0;
}
#content .termsSec p.note {
	margin-top: 30px;
	text-align: right;
}
#content .termsSec a {
	color: #000;
	text-decoration: underline;
}

@media only screen and (max-width: 767px) {
	#content .termsSec {
		padding: 0;
		padding-bottom: 60px;
	}
	#content .termsSec h1 {
		font-size: 24px;
	}
	#content .termsSec h2 {
		font-size: 24px;
	}
	#content .termsSec h3 {
		font-size: 19px;
		margin-top: 30px;
		margin-bottom: 10px;
	}
	#content .termsSec ol li {
		padding: 5px 0;
	}
	#content .termsSec p {
		padding: 5px 0;
	}
	#content .termsSec p.note {
		margin-top: 20px;
	}
}


