@charset "utf-8";

#top {
	position: relative;
}

/* -----------------------------
	h1-area
-------------------------------- */
.h1-area {
	position: absolute;
	z-index: 2;
	top: max(96vh,760px);
	left: 0;
	right: initial;
	width: 100%;
	min-width: 1200px;
	
}

.h1-area h1 {
	left: 7%;
	position: absolute;
	top: 0;
	color: #ccc;
}

@media screen and (min-width: 769px) and (max-width: 1800px){
	.h1-area h1 {
		left: 3%;
	}
}

@media screen and (max-width: 768px){
	.h1-area {
		top: 410px;
		left: 0;
		min-width: initial;
	}
	
	.h1-area h1 {
		left: 5%;
	}
}

/* -----------------------------
	mv-area
-------------------------------- */
.mv-area {
	position: relative;
	height: 100vh;
	min-height: 800px;
}

.mv-area .swiper {
	height: 100vh;
	min-height: 800px;
}

.mv-area .mv-txt-wrap {
	left: 7%;
	top: max(50vh,300px);
	width: 70%;
	position: absolute;
	color: var(--white02);
	z-index: 1;
}

.mv-area .mv-catch-en {
	font-size: 2.0rem;
	font-family: var(--en);
	line-height: 1.3;
	color: #D9D2B4;
	/*color: var(--white02);*/
	letter-spacing: .4rem;
	text-shadow: 0 0 8px rgba(0,0,0,.5);
}

.mv-area .mv-catch {
	font-size: 5.0rem;
	font-family: var(--mincho);
	line-height: 1.5;
	font-weight: 500;
	margin: 30px 0 20px;
	text-shadow: 0 0 5px rgba(0,0,0,.5);
}

.mv-area .mv-txt {
	line-height: 2.2;
	text-shadow: 0 0 5px rgba(0,0,0,.5);
}

.mv-area .swiper-slide img {
	-webkit-transition: 7s 1s ease-out;
	transition: 7s 1s ease-out;
}

.mv-area .swiper-slide-active img {
	transform: scale(1.05);
	transition-delay: 0s;
}

.mv-area .mv-txt-wrap {
	animation: mv-fadeIn 2s .5s cubic-bezier(.2, 1, .2, 1) both;
}

@keyframes mv-fadeIn {
  0% {
    transform: scale(.5);
    opacity: 0;
    filter: blur(300px);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
  }
}


@media screen and (min-width: 769px) and (max-width: 1800px){
	.mv-area .mv-txt-wrap {
		left: 3%;
		top: max(20vh,260px);
		width: 70%;
	}
}

@media screen and (max-width: 768px){
	.mv-area {
		height: 440px;
		min-height: initial;
		width: 100%;
	}
	
	.mv-area .mv-txt-wrap {
		left: 5%;
		top: 180px;
		width: 90%;
	}
	
	.mv-area .mv-catch-en {
		font-size: 1.6rem;
	}
	
	.mv-area .mv-catch {
		font-size: 3.2rem;
		margin: 20px 0 0;
	}
	
	.mv-area .mv-txt {
		display: none;
	}
	
	.mv-area .siwper {
		height: 440px;
	}
	
	.mv-area .swiper-slide {
		height: 440px;
	}
}

/* -----------------------------
	weather-area
-------------------------------- */
.weather-area {
	position: absolute;
	right: 3%;
	top: max(79vh,610px);
	z-index: 1;
	color: var(--white02);
	font-family: var(--mincho);
	min-width: 860px;
	text-align: right;
}

.weather-area .weather-block {
	background: rgba(0,0,0,.1);
	box-shadow: 0px 0px 40px 50px rgba(0,0,0,.1);
	display: inline-block;
}

.weather-area .weather-wrap {
	/*display: flex;*/
	align-items: flex-start;
	margin: 15px 0;
	display: none;
}

.weather-area .weather-wrap.show {
	display: flex;
	animation: fade 1.2s ease-in-out forwards;
}

.weather-area .tab-container {
	display: flex;
	position: absolute;
	top: 0;
	right: 0;
	border: 1px solid var(--white02);
	border-radius: 3px;
}

.weather-area .tab-container .tab {
	padding: 6px 20px;
	transition: all .4s;
	cursor: pointer;
}

.weather-area .tab-container .tab.active {
	background: var(--white02);
	color: #444;
}

.weather-area .tab-container .tab:first-child {
	border-radius: 1px 0 0 1px;
}

.weather-area .tab-container .tab:last-child {
	border-radius: 0 1px 1px 0;
}

/*.weather-area .content {
	display: none;
}

.weather-area .content.show {
	display: block;
}*/

/* パネル切り替えのアニメーション */
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.weather-area .date {
	width: 100%;
	font-size: 1.8rem;
	text-align: left;
}

.weather-area .weather-box {
}

.weather-area .weather-box:not(:first-child) {
	padding-left: 20px;
}

.weather-area .weather-box:not(:last-child) {
	padding-right: 20px;
	border-right: 1px solid var(--white02);
}

.weather-area .weather-box .airport-name {
	text-align: center;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.5;
	margin: 0 0 5px;
}

.weather-area .weather-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 0;
	flex: 1;
}

.weather-area .weather-box .weather-icon {
	width: 50px;
	height: 50px;
}

.weather-area .weather-box .weather-icon img {
	width: 100%;
	object-fit: cover;
}

.weather-area .weather-box .strong-wind {
	width: 18px;
	height: 18px;
}

.weather-area .attention {
	font-size: 1rem;
	text-align: right;
	font-family: var(--basefont);
	width: 100%;
}

.weather-area .temp-wind-wrap {
	margin: 5px 0 0 5px;
}

.weather-area .temp {
	font-size: 2.6rem;
	line-height: 1;
}

.weather-area .temp .min {
	font-size: 1.8rem;
}

.weather-area .wind-wrap {
	display: flex;
	align-items: center;
	gap: 0 5px;
	margin: 3px 0 0;
}

.weather-area .wind-direction {
	width: 14px;
	height: 14px;
	line-height: initial;
	margin-top: -2px;
}

.weather-area .wind-speed {
	font-size: 1.8rem;
	line-height: 1;
}

.weather-area .wind-speed .min {
	font-size: 1.5rem;
}

.weather-area .visibility {
	font-size: 1.3rem;
	line-height: 1;
	margin-top: 3px;
}

/*------------------------------
	風向き
------------------------------*/

/*北 / N / north*/
.weather-area .dir-n {
	transform: rotate(0);
}
/*北北東 / NNE / north-northeast*/
.weather-area .dir-nne {
	transform: rotate(22.5deg);
}

/*北東 / NE / northeast*/
.weather-area .dir-ne {
	transform: rotate(45deg);
}

/*東北東 / ENE / east-northeast*/
.weather-area .dir-ene {
	transform: rotate(67.5deg);
}

/*東 / E / east*/
.weather-area .dir-e {
	transform: rotate(90deg);
}

/*東南東 / ESE / east-southeast*/
.weather-area .dir-ese {
	transform: rotate(112.5deg);
}

/*南東 / SE / southeast*/
.weather-area .dir-se {
	transform: rotate(135deg);
}

/*南南東 / SSE / south-southeast*/
.weather-area .dir-sse {
	transform: rotate(157.5deg);
}

/*南 / S / south*/
.weather-area .dir-s {
	transform: rotate(180deg);
}

/*南南西 / SSW / south-southwest*/
.weather-area .dir-ssw {
	transform: rotate(-157.5deg);
}

/*南西 / SW / southwest*/
.weather-area .dir-sw {
	transform: rotate(-135deg);
}

/*西南西 / WSW / west-southwest*/
.weather-area .dir-wsw {
	transform: rotate(-112.5deg);
}

/*西 / W / west*/
.weather-area .dir-w {
	transform: rotate(-90deg);
}

/*西北西 / WNW / west-northwest*/
.weather-area .dir-wnw {
	transform: rotate(-67.5deg);
}

/*北西 / NW / northwest*/
.weather-area .dir-nw {
	transform: rotate(-45deg);
}

/*北北西 / NNW / north-northwest*/
.weather-area .dir-nnw {
	transform: rotate(-22.5deg);
}




/*------------------------------
	MVバナー
------------------------------*/

.mv-banner-area {
	position: absolute;
	right: 3%;
	top: max(55vh, 400px);
	z-index: 10;
}
/*天気無し
.mv-banner-area {
	position: absolute;
	right: 3%;
	top: max(75vh,610px);
	z-index: 10;
}*/

.mv-banner-area a {
	display: block;
	height: 180px;
}
.mv-banner-area a:hover {
	opacity: .7;
}
@media screen and (max-width: 768px){
	.bnr-wrap {
		padding: 30px 20px;
		background-color: #fff;
		position: relative;
		z-index: 5;
	}
	.mv-banner-area {
		position: relative;
		height: auto;
		width: 100%;
		max-width: 450px;
		right: auto;
		top: auto;
	}
	
	.mv-banner-area a {
		height: auto;
	}
}



/*------------------------------
	トグルボタンデザイン
------------------------------*/
.toggle_input {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	opacity: 0;
	cursor: pointer;
	margin: 0;
}

.toggle_label {
	width: 42px;
	height: 22px;
	background: transparent;
	border: 1px solid var(--white02);
	position: relative;
	display: inline-block;
	border-radius: 40px;
	transition: 0.4s;
	box-sizing: border-box;
}

.toggle_label:after {
	content: "";
	position: absolute;
	width: 14px;
	height: 14px;
	border-radius: 100%;
	left: 4px;
	top: 3px;
	z-index: 2;
	background: var(--white02);
	transition: 0.4s;
}

.toggle_input:checked + .toggle_label {
	background: var(--white02);
}

.toggle_input:checked + .toggle_label:after {
	left: 23px;
	background: #7A7A7A;
}

.toggle_button {
	position: absolute;
	/*width: 50px;
	height: 24px;*/
	margin: auto;
	top: 5px;
	right: 0;
	display: flex;
	align-items: center;
	gap: 0 10px;
}

@media screen and (max-width: 768px){
	.weather-area {
		position: relative;
		right: initial;
		top: initial;
		padding: 20px 10px;
		width: 100%;
		min-width: initial;
		background: var(--green);
	}
	
	.weather-area .weather-block {
		background: transparent;
		box-shadow: none;
		display: block;
	}
	
	.weather-area .weather-wrap {
		width: 100%;
	}
	.weather-area .weather-box {
		width: calc( 100% / 4 );
	}
	
	.weather-area .weather-box:not(:last-child) {
		padding-right: 0;
	}
	
	.weather-area .weather-box:not(:first-child) {
		padding-left: 0;
	}
	
	.weather-area .weather-box .airport-name {
		font-size: 1.5rem;
		margin: 0 0 5px;
		letter-spacing: 0;
	}
	
	.weather-area .weather-box .weather-icon {
		width: 36px;
		height: 36px;
	}
	
	.weather-area .date {
		width: 100%;
		font-size: 1.6rem;
		padding: 7px 0;
	}
	
	.weather-area .temp {
		font-size: 2.4rem;
		line-height: 1;
		text-align: center;
	}
	
	.weather-area #pro .temp {
		font-size: 2.1rem;
	}
	
	.weather-area .temp .min {
		font-size: 1.5rem;
	}
	
	.weather-area .temp-wind-wrap {
		margin: 0;
		width: 100%;
	}
	
	.weather-area .wind-wrap {
		flex-wrap: wrap;
		margin: 5px 0 0;
		justify-content: center;
		width: 100%;
	}
	
	.weather-area .visibility {
		font-size: 1.4rem;
		margin-top: 8px;
		width: 100%;
		text-align: center;
	}
	
	.weather-area .attention {
		font-size: 1.1rem;
		text-align: left;
	}
	
	.weather-area .tab-container {
		border-radius: 5px;
	}
	
	.weather-area .tab-container .tab {
		padding: 10px 12px;
		transition: all .4s;
		cursor: pointer;
	}
	
	.weather-area .tab-container .tab:first-child {
		border-radius: 3px 0 0 3px;
	}
	
	.weather-area .tab-container .tab:last-child {
		border-radius: 0 3px 3px 0;
	}
	
	.weather-area .tab-container .tab.active {
		color: var(--green);
	}

	
	
	.toggle_button {
		top: 0;
		right: 10px;
	}
	
	.toggle_input:checked + .toggle_label:after {
		background: var(--green);
	}
	
}


/* -----------------------------
	charter-area
-------------------------------- */
.charter-area {
	padding: 140px 0 330px;
	background: var(--beige);
	position: relative;
	z-index: 1;
}

.charter-area .marquee {
	position: absolute;
	top: 50px;
	left: 0;
	font-size: 18.0rem;
	overflow: hidden;
	white-space: nowrap;
	font-family: var(--en);
  	animation: marquee 240s linear infinite;
	letter-spacing: .8rem;
	color: #fff;
	display: inline-block;
	z-index: 1;
}

@keyframes marquee {
  0% {
    -moz-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -moz-transform: translateX(-75%);
    -webkit-transform: translateX(-75%);
    transform: translateX(-75%);
  }
}

.charter-area .inner {
	display: flex;
	width: 100%;
}

.charter-area .bg-wrap {
	width: 44%;
	height: auto;
	min-height: 626px;
	background: url("../img/bg-charter.png") left/cover, no-repeat;
	position: relative;
}

.charter-area .bg-wrap::before {
	content: "";
	display: inline-block;
	position: absolute;
	background: url("../img/bg-charter-white.png") left/cover, no-repeat;
	width: 120%;
	height: 596px;
	bottom: -120px;
	right: 0;
	z-index: -3;
}

.charter-area .txt-wrap {
	width: 56%;
	padding-left: calc( ( 100% - 1200px ) / 2 );
	padding-top: 40px;
	position: relative;
	z-index: 3;
}

.charter-area .sec-ttl.jp {
	font-size: 4.0rem;
	padding-bottom: 30px;
	position: relative;
}

.charter-area .sec-ttl.jp::before {
	content: "";
	display: inline-block;
	position: absolute;
	bottom: 0;
	width: 60px;
	height: 1px;
	background: var(--green);
}

.charter-area .img-list {
	display: flex;
	justify-content: flex-start;
	gap: 25px;
	margin: 60px 0 0;
}

.charter-area .img-list li {
	width: 200px;
	border: 1px solid #444;
	position: relative;
	padding: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.charter-area .img-list .num {
	position: absolute;
	background: var(--beige);
	display: inline-block;
	padding: 0 10px;
	font-size: 1.7rem;
	line-height: 1;
	font-family: var(--en);
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
}

.charter-area .img-list .img-wrap {
	width: 100%;
}

.charter-area .img-list .list-txt {
	line-height: 1.8;
	text-align: center;
}


@media screen and (max-width: 768px){
	.charter-area {
		padding: 40px 0 0;
	}

	.charter-area .marquee {
		top: 30px;
		left: 0;
		font-size: 8.0rem;
	}
	
	.charter-area .bg-wrap {
		display: none;
	}
	
	.charter-area .txt-wrap {
		width: 100%;
		padding-left: 0;
		padding-top: 20px;
	}
	
	.charter-area .sec-ttl.jp {
		font-size: 2.8rem;
		padding-bottom: 15px;
	}
	
	.charter-area .sec-ttl.jp::before {
		width: 30px;
	}
	
	.charter-area .img-list {
		gap: 20px;
		margin: 30px 0 0 -20px;
		flex-wrap: wrap;
	}
	
	.charter-area .img-list li {
		width: 100%;
		padding: 0;
		background: #fff;
		border: none;
		justify-content: flex-start;
		align-items: stretch;
		gap: 0;
	}
	
	.charter-area .img-list .num {
		padding: 0;
		font-size: 1.3rem;
		left: calc( 20vw + 20px );
		transform: none;
		top: -5px;
		background: transparent;
	}
	
	.charter-area .img-list .list-txt {
		text-align: left;
		padding: 20px;
		width: calc( 100% - 20vw );
	}
	
	.charter-area .img-list .img-wrap {
		width: 20vw;
		height: auto;
	}
}

/* -----------------------------
	about-area
-------------------------------- */
.about-area {
	padding: 80px 0 0;
	margin-top: -220px;
	position: relative;
	z-index: 2;
}

.about-area::before {
	content: "";
	display: block;
	width: 95%;
	min-width: 1500px;
	height: 600px;
	position: absolute;
	top: 0;
	right: 0;
	background: url("../img/bg-silk.png") center/cover, no-repeat, var(--green);
	background-blend-mode: multiply;
	z-index: -1;
}

.about-area .sec-ttl.en {
	font-size: 15.0rem;
	color: rgba(255,255,255,.1);
	margin-left: -30px;
	letter-spacing: .7rem;
}

.about-area .sec-ttl.jp {
	color: #fff;
	font-size: 2.8rem;
	margin-top: -50px;
	padding-bottom: 30px;
	position: relative;
}

.about-area .sec-ttl.jp::before {
	content: "";
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 1px;
	background: #fff;
}

.about-area .catch-l {
	color: #fff;
}

.about-area .lead-txt {
	color: #fff;
	line-height: 2.2;
	margin: 20px 0 0;
}

.about-area .feature-list {
	display: flex;
	gap: 30px;
	margin: 60px 0 0;
}

.about-area .feature-list li {
	width: calc( (100% - 60px ) / 3 );
}

.about-area .feature-list .img-wrap {
	width: 100%;
	height: 300px;
}

.about-area .feature-list .txt-wrap {
	position: relative;
	padding: 30px 0 0;
}

.about-area .feature-list .feature-num {
	color: #fff;
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	font-family: var(--en);
	font-size: 1.9rem;
	text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}

.about-area .feature-list .feature-catch {
	font-size: 2.8rem;
	line-height: 1.6;
	text-align: center;
	font-family: var(--mincho);
}

.about-area .feature-list .feature-txt {
	margin: 10px 0 0;
	line-height: 2.2;
}

.about-area .btn-more {
	padding: 0 0 0 20px;
}

@media screen and (max-width: 768px){
	.about-area {
		padding: 40px 0;
		margin-top: 30px;
	}
	
	.about-area::before {
		width: 100%;
		min-width: initial;
		height: 400px;
	}
	
	.about-area .sec-ttl.en {
		font-size: 6.0rem;
		margin-left: -10px;
		white-space: nowrap;
		letter-spacing: .3rem;
	}
	
	.about-area .sec-ttl.jp {
		font-size: 2.1rem;
		margin-top: -20px;
	}
	
	.about-area .lead-txt {
		display: none;
	}
	
	.about-area .feature-list {
		flex-wrap: wrap;
		gap: 20px;
		margin: 30px 0 0;
		padding: 40px 0 0;
		position: relative;
	}
	
	.about-area .feature-list::before {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 96%;
		height: 100%;
		background: #fff;
	}
	
	.about-area .feature-list li {
		width: 100%;
		display: flex;
	}
	
	.about-area .feature-list .img-wrap {
		width: 24vw;
		height: auto;
	}
	
	.about-area .feature-list .txt-wrap {
		width: calc( 100% - 24vw );
		padding: 0 0 0 20px;
	}
	
	.about-area .feature-list .feature-num {
		color: #444;
		position: relative;
		top: initial;
		left: initial;
		transform: none;
		font-size: 1.4rem;
		text-shadow: none;
	}
	
	.about-area .feature-list .feature-catch {
		font-size: 1.8rem;
		text-align: left;
		margin: 10px 0 0;
	}
	
	.about-area .feature-list .feature-txt {
		display: none;
	}
}


/* -----------------------------
	price-area
-------------------------------- */
.price-area {
	padding: 100px 0 0;
}

.price-area .price-box {
	width: 100%;
}

.price-area .price-box a {
	display: flex;
	border: 1px solid #444;
	position: relative;
}

.price-area .price-box .bg-wrap {
	position: relative;
	width: 500px;
	height: auto;
}

.price-area .price-box .bg-wrap::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: url("../img/bg-price.png") center/cover, no-repeat;
	width: 100%;
	height: 100%;
}

.price-area .price-box .txt-wrap {
	padding: 60px 40px;
}

@media (hover: hover) and (pointer: fine) {
	.price-area .price-box a:hover {
		transform: translateY(-10px);
		box-shadow: 3px 10px 40px rgba(0,0,0,.2);
	}
}


@media screen and (max-width: 768px){
	.price-area {
		padding: 0;
	}
	
	.price-area .price-box a {
		flex-wrap: wrap;
		border: 1px none;
	}
	
	.price-area .price-box .bg-wrap {
		width: 100%;
		height: 50vw;
	}
	
	.price-area .price-box .bg-wrap::before {
		background: url("../img/bg-price.png") top/cover, no-repeat;
	}
	
	.price-area .price-box .txt-wrap {
		padding: 30px 20px 0;
	}
}

/* -----------------------------
	.bg-area
-------------------------------- */
.bg-area {
	margin: 120px 0 0;
}

.bg-area .bg-wrap {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-wrap: wrap;
    height: 600px;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    background-image: url("../img/bg-lineup.jpg");
    padding: 100px 0;
}

@media screen and (max-width: 768px){
	.bg-area {
		margin: 0;
	}
	
	.bg-area .bg-wrap {
		height: 60vw;
		padding: 0;
		background-image: url("../img/bg-lineup-sp.jpg");
		background-attachment: initial;
	}
}

@media screen and (max-width: 768px){
	.lineup-area .basic-txt {
		display: none;
	}
}


/* -----------------------------
	corporate-area
-------------------------------- */
.corporate-area {
	display: flex;
	width: 100%;
	margin: 0;
}

.corporate-area .corporate-box {
	width: 50%;
	height: auto;
	min-height: 600px;
}

.corporate-area .corporate-box:first-child {
	border-right: 1px solid #fff;
}

.corporate-area .corporate-box a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	color: #fff;
	padding: 120px 30px;
	position: relative;
	overflow: hidden;
}

.corporate-area .corporate-box .block-bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition: all .6s;
}

.corporate-area .corporate-box.travel-agency .block-bg {
	background: url("../img/bg-corporate-travel-agency.jpg") center/cover, no-repeat;
}

.corporate-area .corporate-box.business .block-bg {
	background: url("../img/bg-corporate-business.jpg") center/cover, no-repeat;
}

.corporate-area .corporate-box .box-ttl-en {
	font-size: 2.4rem;
	font-family: var(--en);
	line-height: 1;
	white-space: nowrap;
	width: 100%;
	text-align: center;
	text-shadow: 0 0 5px rgba(0,0,0,.3);
}

.corporate-area .corporate-box .box-ttl {
	font-family: var(--mincho);
	line-height: 1.4;
	font-size: 2.4rem;
	width: 100%;
	text-align: center;
	padding-bottom: 30px;
	position: relative;
	text-shadow: 0 0 5px rgba(0,0,0,.3);
}

.corporate-area .corporate-box .box-ttl::before {
	content: "";
	display: inline-block;
	position: absolute;
	bottom: 0;
	width: 30px;
	height: 1px;
	background: #fff;
	left: 50%;
	transform: translateX(-50%);
	box-shadow: 0 0 5px rgba(0,0,0,.3);
}

.corporate-area .corporate-box .catch-m {
	width: 100%;
	text-align: center;
	margin: 20px 0 0;
	text-shadow: 0 0 5px rgba(0,0,0,.3);
}

.corporate-area .corporate-box .btn-more {
	width: 100%;
	margin: 40px 0 0;
}

@media (hover: hover) and (pointer: fine) {
	.corporate-area .corporate-box a:hover .block-bg {
		transform: scale(1.08);
	}
}
@media screen and (max-width: 768px){
	.corporate-area {
		flex-wrap: wrap;
	}
	
	.corporate-area .corporate-box {
		width: 100%;
		min-height: initial;
	}
	
	.corporate-area .corporate-box a {
		padding: 50px 20px;
	}
	
	.corporate-area .corporate-box .box-ttl-en {
		font-size: 1.8rem;
		padding-bottom: 10px;
	}
	
	.corporate-area .corporate-box .box-ttl {
		font-size: 2.4rem;
		padding-bottom: 20px;
	}
	
	.corporate-area .corporate-box .btn-more {
		margin: 20px 0 0;
		text-align: center;
	}
}

/* -----------------------------
	purchase-area
-------------------------------- */
.purchase-area {
	padding: 120px 0;
	display: flex;
	align-items: center;
	position: relative;
}

.purchase-area::before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	width: 560px;
	height: 470px;
	background: var(--beige);
}

.purchase-area .bg-wrap {
	width: 50%;
	padding-right: 5%;
}

.purchase-area .txt-wrap {
	width: 50%;
	padding: 0 5% 0 calc( ( 100% - 1200px ) / 2 );
}

.purchase-area .txt-wrap .btn-more {
	text-align: left;
}

@media screen and (max-width: 768px){
	.purchase-area {
		padding: 40px 0;
		flex-direction: column-reverse;
	}
	
	.purchase-area::before {
		display: none;
	}
	
	.purchase-area .txt-wrap {
		width: 100%;
		padding: 30px 20px 0;
	}
	
	.purchase-area .bg-wrap {
		width: 96%;
		height: 60vw;
		margin: 0 0 0 auto;
		padding-right: 0;
	}
}

/* -----------------------------
	company-area
-------------------------------- */
.company-area {
	padding: 0 0 120px;
	display: flex;
	align-items: center;
	position: relative;
}

.company-area::before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 560px;
	height: 470px;
	background: var(--beige);
}

.company-area .bg-wrap {
	width: 50%;
	position: relative;
	padding-left: 5%;
}

.company-area .txt-wrap {
	width: 50%;
	padding: 0 calc( ( 100% - 1200px ) / 2 ) 0 5%;
}

.company-area .txt-wrap .btn-more {
	text-align: left;
}


@media screen and (max-width: 768px){
	.company-area {
		padding: 40px 0;
		flex-wrap: wrap;
	}
	
	.company-area::before {
		display: none;
	}
	
	.company-area .bg-wrap {
		width: 96%;
		height: 60vw;
		margin: 0 0 0 auto;
		padding: 0;
	}
	
	.company-area .txt-wrap {
		width: 100%;
		padding: 30px 20px 0;
	}
}


/* -----------------------------
	news-area
-------------------------------- */
.news-area {
	padding: 100px 0;
}

.news-area .inner {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 0 120px;
}

.news-area .ttl-block {
	flex-shrink: 0;
}

.news-area .news-more {
	margin: 20px 0 0;
}

.news-area .news-more a {
	display: inline-block;
	font-size: 1.5rem;
}

.news-area .news-more i {
	display: inline-block;
	margin-right: 5px;
}

.news-area .date {
	display: inline-block;
	flex-shrink: 0;
	line-height: 1.8;
}

.news-area .news-list {
	margin: 0;
}

.news-area .news-list li:first-child a {
	padding-top: 0;
}

.news-area .news-list a {
	padding: 10px 0;
	display: flex;
	gap: 0 20px;
	line-height: 1.5;
	align-items: flex-start;
}

.news-area .news-list .news-txt {
	
}

@media screen and (max-width: 768px){
	.news-area {
		padding: 40px 0 30px;
		background: var(--beige);
	}
	
	.news-area .inner {
		flex-wrap: wrap;
		gap: 20px;
	}
	
	.news-area .ttl-block {
		position: relative;
		width: 100%;
	}
	
	.news-area .news-more {
		margin: 0;
		position: absolute;
		bottom: 0;
		right: 0;
	}
	
	.news-area .news-list {
		width: 100%;
	}
	
	.news-area .news-list a {
		gap: 0;
		flex-wrap: wrap;
	}
	
	.news-area .news-list .news-txt {
		line-height: 1.8;
	}
	
	.news-area .news-list li:first-child a {
		border-bottom: 1px solid #ccc;
	}
	
	.news-area .news-list li:nth-child(n+3) {
		display: none;
	}
	
	.news-area .date {
		width: 100%;
	}
}

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


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

}