@charset "utf-8";

/* -----------------------------
	.intro-area
-------------------------------- */

.intro-area {
	margin: 250px 0 0;
	position: relative;
	padding: 0 0;
}
.intro-area::before{
	content: '';
	position: absolute;
	width: 1221px;
	height: 1041px;
	top: -500px;
	right: -500px;
	background: url("../img/bg-right.png")  no-repeat top right / contain;
	z-index: -1;
}
.intro-area > div{
	display: flex;
	align-items: center;
}

.intro-area .img-block{
	position: absolute;
	left: 0;
	width: 976px;
}
.intro-area .img-block > div{
	position: relative;
    display: flex;
    gap: 7px 9px;
    flex-wrap: wrap;
}
.intro-area .img-block > div::before{
	content: '';
	position: absolute;
	width: 976px;
	height: 144px;
	top: 0;
	right: 0;
	background: url("../img/curve-top01.svg") no-repeat top center / contain;
	z-index: 2;
}
.intro-area .img-block > div::after{
	content: '';
	position: absolute;
	width: 976px;
	height: 110px;
	bottom: 0;
	right: 0;
	background: url("../img/curve-bottom01.svg") no-repeat top center / contain;
	z-index: 2;
}

.intro-txt-block{
	width: 500px;
	margin: 0 0 0 auto;
	position: relative;
}
.intro-area .txt-block{
	padding: 30px 0 0;

}
.intro-area .basic-txt{
	padding: 30px 0 0;

}
.intro-area li{
	border-bottom: solid 3px var(--purple);
	padding: 20px 0 0;
	display: table;
}

.intro-area .btn-more{
	margin: 50px 0 0;
}

@media screen and (max-width: 1600px){
	.intro-area .img-block{
		left: -200px;
	}
	.intro-txt-block{
		margin: 0 230px 0 auto;
		width: 450px;
	}
}

@media screen and (max-width: 768px){
	.intro-area {
		padding: 0;
		margin: 40px 0 0;
	}
	.intro-area::before{
		width: 318px;
		height: 270px;
		top: 250px;
		right: -200px;
	}
	.intro-area > div{
		display: block;
	}

	.intro-area .img-block{
		width: calc(100% - 20px);
		position: inherit;
		margin:0 auto 0 0;
	}
	.intro-area .img-block > div{
		gap: 6px 7px;
	}
	.intro-area .img-block > div::before{
		width: 103%;
		right: -2px;
	}
	.intro-area .img-block > div::after{
		width: 100%;
		background-position: bottom center;
		bottom: -1px;
	}
	.intro-area .photoArea figure{
		height: 145px;
	}
	.intro-area .img-block figure:nth-child(2){
		width: 58%;
	}
	.intro-area .img-block figure:nth-child(3){
		width: 40%;
	}
	.intro-txt-block{
		width: 100%;

	}
	.intro-area .txt-block{
		padding: 0 0 0;
	}
	.intro-area .basic-txt{
		padding: 20px 0 0;
	}
	.intro-area li{
		padding: 10px 0 0;
	}
	
	.intro-area .btn-more{
		margin: 20px auto 0;
		display: inline-block;
	}
	

}

/* -----------------------------
	dormitory-area
-------------------------------- */
.dormitory-area{

	margin: 300px 0 100px;

}
.dormitory-area .inner{
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
}
.dormitory-txt-block{
	margin: 20px 0 0;
}
.dormitory-area .catch-l{
	margin: 20px 0 0;
}

.dormitory-area .txt-block{
	text-align: left;
	padding: 0 50px 0 0;
}

.dormitory-area .txt-block .basic-txt{
	padding: 30px 0 0;
}

.dormitory-area ul{
	margin: 50px 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.dormitory-area ul li{
	width: calc((100% / 5) - 8px);
	height: 144px;
}
.dormitory-area ul li img{
	width: 100%;
}

.dormitory-area ul li .photo-item{
	height: 144px;
}

.dormitory-area ul li .photo-item img{
	object-fit: cover;
	height: 100%;
}
@media screen and (max-width: 768px){
	.dormitory-area{
		margin: 50px 0;
	}
	.dormitory-area .inner{
		display: block;
	}
	.dormitory-area .txt-block{
		padding: 0;
	}
	.dormitory-area .txt-block .basic-txt{
		text-align: left;
	}
	.dormitory-area ul{
		margin: 20px 0 0;
	}
	.dormitory-area ul li{
		width: calc((100% / 2) - 8px);
		height: 136px;
	}
	
	.dormitory-area ul li .photo-item{
		height: 136px;
	}
	
	.dormitory-area ul li .photo-item img{
		object-fit: cover;
		height: 100%;
	}
}


/* tab */
.tabs{
	margin: 150px 0 0;
}
.tab-list {
  display: flex;
justify-content: space-between;
	flex-wrap: wrap;
}

.tab-item {
	font-weight: 500;
    font-size: 1.8rem;
    height: 60px;
    display: block;
    text-align: center;
    position: relative;
    top: 0;
    transition: all .2s;
    background:#ccc;
    color: #fff;
    border-radius: 5px;

    display: block;
    width: 100%;
    padding: 15px 0 0;
    line-height: 1.3;
	width: calc((100% / 4) - 10px);
	cursor: pointer;
}
.tab-item::before {
content: "\f107";
    position: absolute;
    font-size: 1.6rem;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    font-family: "FontAwesome";
    color: #fff;
}

.tab-item.active {
	background: var(--gradation);
	color: #fff;
}

.tab-content {
}

.tab-panel {
  display: none;
}

.tab-item.active {
}

.tab-panel.active {
  display: block;
}

@media screen and (max-width: 768px){
	/* tab */
	.tabs{
		margin: 50px 0 0;
	}
	.tab-list {
		gap: 10px;
	}

	.tab-item {
		width: calc((100% / 2) - 5px);
		font-size: 1.5rem;
		height: 55px;
		padding: 10px 0 0;
	}
	.tab-item::before {
	}

	.tab-item.active {
	}

	.tab-content {
	}

	.tab-panel {
	}

	.tab-item.active {
	}

	.tab-panel.active {
	}
}

/* -----------------------------
	.oneday-area
-------------------------------- */
.oneday-area{
	margin: 100px 0 0;
}
.oneday-area.last{
	margin: 250px 0 300px;
}
.oneday-area .ttl-l{
	text-align: center;
}
.oneday-area .txt-block{
	text-align: center;
	padding: 30px 0 0;
}

.oneday-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.oneday-block{
	margin: 30px 0 0;
	border: solid 1px #ddd;
	padding: 20px;
	width: 500px;
	position: relative;
}
.oneday-block:first-of-type{
	margin: 50px 0 0;
}
.oneday-block:nth-child(even){
	top: 100px;
}

.oneday-block::before{
	content: '';
	position: absolute;
	width: 117px;
	height: 125px;
	background: url("../img/arrow-r.svg") no-repeat top center / contain;
	z-index: 1;
}
.oneday-block:nth-child(even)::before{
	bottom: 0;
	left: -160px;
	background: url("../img/arrow-l.svg") no-repeat top center / contain;
}
.oneday-block:nth-child(odd)::before{
	bottom: 0px;
	right: -160px;
}
.oneday-block:last-of-type::before{
	display: none;	
}

.oneday-block .top-box{
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}

.oneday-block figure{
	height: auto;
	width: 220px;	
}
.oneday-block figure img{
	width: 100%;
	height: 100%;
}

.oneday-block .time{
	background: var(--gradation);
	color: #fff;

	padding: 10px 20px 5px;
	font: 500 2rem/1 var(--josefinsans);
	letter-spacing: 0.05em;
	margin: 0 10px 0 0;
}
.oneday-title{
	display: inline-block;
	font: 500 2rem/1.5 var(--notoserif);
	letter-spacing: 0.05em;
	padding: 10px 0 0;
}
.oneday-block .basic-txt{
	padding: 10px 10px 0 0;
}


@media screen and (max-width: 768px){
	.oneday-area{
		margin: 40px 0 0;
	}
	.oneday-area.last{
		margin: 40px 0 40px;
	}
	.oneday-area .ttl-l{
	}
	.oneday-area .txt-block{
	}

	.oneday-list{
		display: block;
	}

	.oneday-block{
		width: 100%;
		margin: 20px 0 0;
	}
	.oneday-block .top-box{
		display: block;
	}
	.oneday-block:first-of-type{
		margin: 20px 0 0;
	}
	.oneday-block:nth-child(even){
		top: auto;
	}

	.oneday-block::before{
	}
	.oneday-block:nth-child(even)::before{
	}
	.oneday-block:nth-child(odd)::before{
	}

	.oneday-block figure{
		height: 220px;
		width: 100%;

	}
	.oneday-block figure img{
		object-fit: cover;
	}

	.oneday-block .time{
		margin: 10px 0 0;
	}
	.oneday-title{
	}
	.oneday-block .basic-txt{
		padding: 5px 0 0;
	}
}

/* -----------------------------
	.holiday-area
-------------------------------- */
.holiday-area{
	margin: 80px 0;
}
.thailand .holiday-area{
	margin: 200px 0 80px;
}

.holiday-area.last{
	margin: 250px 0 300px;
}
.holiday-area .ttl-l{
	text-align: center;
}
.holiday-area .txt-block{
	text-align: center;
	padding: 30px 0 0;
}

.holiday-list{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 20px;
	margin: 30px 0 0;
}

.holiday-block{
	border: solid 1px #ddd;
	padding: 20px;
	width: 580px;
	position: relative;
}


.holiday-block .top-box{
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}

.holiday-block figure{

	width: 300px;
	
}
.holiday-block figure img{
	width: 100%;
}

.holiday-block .time{
	background: var(--gradation);
	color: #fff;

	padding: 10px 20px 5px;
	font: 500 2rem/1 var(--josefinsans);
	letter-spacing: 0.05em;
	margin: 0 10px 0 0;
}
.holiday-title{
	display: inline-block;
	font: 500 2rem/1.5 var(--notoserif);
	letter-spacing: 0.05em;
	padding: 10px 0 0;
}
.holiday-block .basic-txt{
	padding: 10px 10px 0 0;
}




@media screen and (max-width: 768px){
	.holiday-area{
		margin: 40px 0 0;
	}
	.thailand .holiday-area{
		margin: 40px 0 0;
	}
	.holiday-area.last{

	}
	.holiday-area .ttl-l{
	}
	.holiday-area .txt-block{
	}

	.holiday-list{
	}

	.holiday-block{
		width: 100%;
	}


	.holiday-block .top-box{
		display: block;
	}

	.holiday-block figure{

	}
	.holiday-block figure img{
	}

	.holiday-block .time{
	}
	.holiday-title{
	}
	.holiday-block .basic-txt{
	}
}
