@charset "utf-8";
/* CSS Document */

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

	size　サイズについて

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

/*----------------------------------------------------------------
  btn-list
------*/
.btn-list {
	display:flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	gap: 15px calc(8% / 3);
	/* margin-bottom: 3rem; */
	margin-bottom: 5rem;
}

.btn-list li {
	width: 23%;
}

.btn-list li a {
	display: block;
	padding: 1.7rem 2rem 3.2rem;
	position: relative;
	background: var(--color-orange);
	border-radius: 1.5rem;
	border: 3px solid #FFF;
	font-size: 2.1rem;
	letter-spacing: .075em;
	font-weight: bold;
	color: #FFF;
	box-shadow: 0px 3px 7px 0.5px rgba(0, 0, 0, 0.3);
	height: 100%;
	box-sizing: border-box;
	display:flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.btn-list li a:after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 1.1rem solid transparent;
	border-left: 1.1rem solid transparent;
	border-top: 1rem solid #ffffff;
	border-bottom: 0;
	display: block;
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	transition: var(--transition);
}

.btn-list li a:hover {
	opacity: 1;
	box-shadow: 0px 8px 15px 0.8px rgba(0, 0, 0, 0.3);
	background: #ff6000;
}
.btn-list li a:hover:after {
	bottom: 12px;
}

.btn-list + .all-btn {
	max-width: 560px;
	width: 85%;
	text-align: center;
	margin: 0 auto 5rem;
}

.btn-list + .all-btn a {
	display: block;
	position: relative;
	background: #003cc9;
	border: 2px solid #7ca3ff;
	color: #FFF;
	font-size: 2.4rem;
	font-weight: bold;
	padding: 1.5rem 6rem 1.5rem 2rem;
}

.btn-list + .all-btn a:before {
	content: "";
	display: block;
	width: 1.3rem;
	height: 1.1rem;
	clip-path: polygon(50% 100%, 0 0, 100% 0);
	background: #FFF;
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

@media screen and (max-width: 480px) {
	.btn-list {
		gap: 15px 4%;
	}

	.btn-list li {
		width: 48%;
	}

	.btn-list li a {
		font-size: 1.8rem;
	}

	.btn-list li a::after {
		bottom: 11px;
	}
	.btn-list li a:hover:after {
		bottom: 8px;
	}
}




/*----------------------------------------------------------------
  tab-area
------*/
.container section section.tab-area {
	margin-bottom: 11rem;
}

.tab-box {
	position: relative;
	transition: height 0.3s ease;
}

.tab-box section {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
}

.tab-box section.active {
	position: relative;
	opacity: 1;
	visibility: visible;
}


.tab-btn {
	display: flex;
	justify-content: flex-start;
	gap: 2rem 15px;
	margin-bottom: 3.5rem;
}

.tab-btn li {
	width: calc((100% - 45px) / 4);
	display: block;
	border: 1px solid #012458;
	border-radius: 5px;
	padding: 1.7rem 2rem;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease-out;
	display:flex;
	justify-content: center;
	align-items: center;
	font-size: 1.8rem;
	color: #012458;
	box-sizing: border-box;
}

.tab-btn li:hover{
	background-color: #0064b1;
	color: #FFF;
}

/*チェック時*/
.tab-btn li.active {
	background-color: #0064b1;
	border-color: #c9c9c9;
	color: #FFF;
	box-shadow: 0px 1px 6.65px 0.35px rgba(0, 0, 0, 0.2);
	position: relative;
}
.tab-btn li.active::after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 1.1rem solid transparent;
	border-left: 1.1rem solid transparent;
	border-top: 2rem solid #0064b1;
	border-bottom: 0;
	position: absolute;
	bottom: -1.8rem;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}


@media screen and (max-width: 786px){
	.tab-btn {
		gap: 2.5rem 15px;
		flex-flow: row wrap;
		margin-bottom: 2.5rem;
	}
	.tab-btn li {
		width: calc((100% - 30px) / 3);
	}

	.tab-box .h-type2 {
		width: 100%;
		margin: 0 auto 2rem;
	}
}

@media screen and (max-width: 480px){
	.tab-btn {
		row-gap: 1.5rem;
	}

	.tab-btn li {
		width: calc((100% - 15px) / 2);
		font-size: 14px;
	}

	.tab-btn li.active::after {
		border-right: 1rem solid transparent;
		border-left: 1rem solid transparent;
		border-top: 1.3rem solid #0064b1;
		bottom: -1rem;
	}
}


/**/
.tab-area img {
	margin-bottom: 3rem;
}




/*----------------------------------------------------------------
  size-table
------*/
.size-table {
	width: 100%;
	max-width: 780px;
	margin: 0 auto;
	table-layout: fixed;
}

.size-table tr {
	transition: var(--transition);
}

.size-table tr:first-child  {
	border-collapse: collapse;
}
th:not(:first-child),
td:not(:first-child) {
	border-left: 1px solid #dedede;
}

.size-table th {
	background: #4a4a4a;
	color: #FFF;
	font-size: 1.5rem;
	font-weight: bold;
	padding: 1rem 2rem;
	text-align: center;
}

.size-table td {
	padding: 1rem 1.5rem;
	font-size: 14px;
	text-align: center;
}

.size-table tr:nth-child(odd) {
	background: #f9f9f9;
}

.size-table tr:hover {
	background: #ffe5dc !important;
	cursor: default;
}


@media screen and (max-width: 786px) {
	.size-table {
		width: calc(100% + 40px);
		margin: 0 -20px;
	}
}

@media screen and (max-width: 480px){
	.size-table td {
		font-size: 13px;
	}
}



/*----------------------------------------------------------------
  TOPへ戻る
------*/
.container .linkBtn.top a {
	color: var(--color);
	border-color: var(--color);
	background: #FFF;
}

.container .linkBtn.top a::before {
	border-color: transparent transparent transparent var(--color);
}

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

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

}




/*----------------------------------------------------------------
  pinch-zoom-wrapper
------*/
.pinch-zoom-wrapper {
	position: relative;
	width: 100%;
	margin-bottom: 3rem;
}

.pinch-zoom-img-container {
	position: relative;
	overflow: hidden;
	width: 100%;
	box-sizing: border-box;
}

.pinch-zoom-img-container img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transform-origin: center center;
	pointer-events: none; 
}
.pinch-zoom-controls {
	display: flex;
	justify-content: flex-end;
	gap: 12px;
	margin-top: 10px;
}

.pinch-zoom-btn {
	width: 40px;
	height: 40px;
	background-color: #212121;
	color: #fff;
	border: none;
	border-radius: 50%;
	font-size: 21px;
	line-height: 1;
	text-align: center;
	cursor: pointer;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	touch-action: manipulation;
	transition: opacity 0.2s;
}

.pinch-zoom-btn.disabled {
	opacity: 0.3;
	pointer-events: none;
}

@media screen and (max-width: 786px) {
	.pinch-zoom-img-container {
		padding: 5px;
		border: 1px solid #e1e1e1;
	}
}

@media (min-width: 786px) {
	.pinch-zoom-controls {
		display: none !important;
	}
}

.is-animating {
	transition: transform 0.3s ease-out;
}


/*----------------------------------------------------------------
  ★
------*/


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

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

}


