@charset "UTF-8";


/***************************************************

	history

***************************************************/

#section1{
	padding-top: 50px;
	margin-bottom: 50px;
}

#section2 h2,
#section1 h2{
	font-size: 32px;
	font-weight: 900;
	color: var(--color1);
	line-height: 1;
	letter-spacing: 0.04em;
	text-align: center;
	margin-bottom: 80px;
	position: relative;
}

#section2 h2::after,
#section1 h2::after{
	content: '';
	display: inline-block;
	width: 56px;
	height: 4px;
	background: var(--color1);
	margin: auto;
	position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
}

.history_data{
	width: 1200px;
	margin: 0 auto;
	background: #F6F6F6;
	padding: 48px 67px 67px;
	border-radius: 0px 0px 80px 0px;
	box-sizing: border-box;
}

.history_data .in_cont{
	margin-bottom: 40px;
}

.history_data .in_cont:last-of-type{
	margin-bottom: 0;
}

.history_data .in_cont h3{
	font-size: 32px;
	font-weight: 900;
	color: var(--color1);
	line-height: 1.5;
	letter-spacing: 0.04em;
	margin-bottom: 25px;
	padding-left: 10px;
	border-left: 4px solid var(--color1);
}

.history_data .in_cont p{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
	letter-spacing: 0.04em;
	margin-bottom: 1em;
}

.history_data .in_cont p:last-of-type{
	margin-bottom: 0;
}

.history_data .in_cont .image_ul{
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
}

.history_data .in_cont .image_ul li{
	width: 31.8%;
	margin-right: 2.3%;
}

.history_data .in_cont .image_ul li:nth-child(3n + 3){
	margin-right: 0;
}


#section2{
	padding-top: 50px;
	margin-bottom: 100px;
}

#section2 .tabs{
	width: 1066px;
	margin: 0 auto;
}

#section2 .tabs .tab-menu{
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--color1);
}

#section2 .tabs .tab-menu li{
	width: 153px;
	margin-right: 16px;
	background: #E4F1FB;
	box-sizing: border-box;
	position: relative;
	transition: all 0.2s linear;
	cursor: pointer;
}

#section2 .tabs .tab-menu li:last-child{
	margin-right: 0;
}

#section2 .tabs .tab-menu li.active{
	background: var(--color1);
	color: #fff;
}

#section2 .tabs .tab-menu li.active::after{
	content: '';
	height: calc(tan(60deg) * 12px / 2);
	width: 20px;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	background: var(--color1);
	position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: auto;
}

#section2 .tabs .tab-menu li span{
	display: block;
	padding: 16px 24px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.04em;
	text-align: center;
}

#section2 .tabs .tab-menu li span small{
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.0125em;
}

#section2 .tab-content{
    position: relative; /* タブの位置に合わせる */
    overflow: hidden; /* コンテンツがはみ出さないようにする */
    transition: height 0.3s ease; /* 高さのトランジション */
}

#section2 .tab-content .tab{
    position: absolute; /* 各タブを重ねて表示できるようにする */
    top: 0;
    left: 0;
    width: 100%;
    height: auto; /* 高さを自動に設定 */
    visibility: hidden; /* デフォルトで非表示 */
    opacity: 0; /* 不透明度を0にして見えなくする */
    transition: opacity 0.3s ease; /* フェードイン/アウトのトランジション */
    z-index: 1; /* 初期状態で低いz-index */
}

#section2 .tab-content .tab.active{
    visibility: visible; /* 表示する */
    opacity: 1; /* 不透明度を1にして完全に見えるようにする */
    z-index: 10; /* 他のタブよりも上に重ねる */
}

@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }

  1% {
    display: block;
    opacity: 0;
  }

  100% {
    display: block;
    opacity: 1;
  }
}

#section2 .tab-content .tab .tab_title{
	background: #E4F1FB;
	padding: 15px 0 15px 10px;
	font-size: 14px;
	color: var(--color1);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.04em;
}

#section2 .tab-content .tab .tab_title small{
	font-size: 12px;
	color: var(--color1);
	font-weight: 500;
	letter-spacing: 0.0125em;
}

#section2 .tab-content .tab ul li{
	padding: 22px 0;
	border-top: 1px solid #E7E7E9;
	margin-top: -1px;
	background: #fff;
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.75;
}

#section2 .tab-content .tab ul li:last-child{
	border-bottom: 1px solid #E7E7E9
}

#section2 .tab-content .tab ul li .tab_item{
	width: 244px;
	color: var(--color1);
	font-weight: 500;
	letter-spacing: 0.04em;
}

#section2 .tab-content .tab ul li .tab_item small{
	color: var(--text);
	font-weight: 500;
	color: #A9A9AD;
}

#section2 .tab-content .tab ul li .tab_item small.gray{
	color: #A9A9AD;
}

#section2 .tab-content .tab ul li .tab_cont{
	width: calc(100% - 244px);
	font-weight: 500;
	letter-spacing: 0.04em;
}








/********************************************************************************
	リッキド用 CSS
********************************************************************************/

@media(max-width:1280px){

#section1{
	padding-top: 3.90625vw;
	margin-bottom: 3.90625vw;
}

#section2 h2,
#section1 h2{
	font-size: 2.5vw;
	margin-bottom: 6.25vw;
}

#section2 h2::after,
#section1 h2::after{
	width: 4.375vw;
	height: 0.3125vw;
    bottom: -2.34375vw;
}

.history_data{
	width: 93.75vw;
	padding: 3.75vw 5.234375vw 5.234375vw;
	border-radius: 0px 0px 6.25vw 0px;
}

.history_data .in_cont{
	margin-bottom: 3.125vw;
}

.history_data .in_cont h3{
	font-size: 2.5vw;
	margin-bottom: 2.5vw;
	padding-left: 1.953125vw;
	border-left: 0.78125vw solid var(--color1);
}

.history_data .in_cont p{
	font-size: 1.25vw;
}

.history_data .in_cont .image_ul{
    margin-top: 1.25vw;
}


#section2{
	padding-top: 3.90625vw;
	margin-bottom: 7.8125vw;
}

#section2 .tabs{
	width: 83.281250vw;
}

#section2 .tabs .tab-menu{
    margin-bottom: 3.125vw;
}

#section2 .tabs .tab-menu li{
	width: 11.953125vw;
	margin-right: 1.25vw;
}

#section2 .tabs .tab-menu li.active::after{
	height: calc(tan(60deg) * 0.9375vw / 2);
	width: 1.5625vw;
    bottom: -0.78125vw;
}

#section2 .tabs .tab-menu li span{
	padding: 1.25vw 1.875vw;
	font-size: 1.25vw;
}

#section2 .tabs .tab-menu li span small{
	font-size: 0.9375vw;
}

#section2 .tab-content .tab .tab_title{
	padding: 1.171875vw 0 1.171875vw 0.78125vw;
	font-size: 14px;
}

#section2 .tab-content .tab .tab_title small{
	font-size: 0.9375vw;
}

#section2 .tab-content .tab ul li{
	padding: 1.71875vw 0;
    font-size: 1.09375vw;
}

#section2 .tab-content .tab ul li .tab_item{
	width: 19.0625vw;
}

#section2 .tab-content .tab ul li .tab_cont{
	width: calc(100% - 19.0625vw);
}






}




/********************************************************************************
	スマートフォン用 CSS
********************************************************************************/

@media(max-width:430px){

#section1{
	padding-top: 14.66667vw;
	margin-bottom: 1.333333vw;
}

#section2 h2,
#section1 h2{
	font-size: 8.53333vw;
	margin-bottom: 16vw;
}

#section1 h2{
	font-size: 6.933333vw;
}

#section2 h2::after,
#section1 h2::after{
	width: 14.93333vw;
	height: 1.33333;
    bottom: -8vw;
}

.history_data{
	width: auto;
	margin: 0 2.133333vw;
	padding: 12.8vw 3.733333vw 14.933333vw;
	border-radius: 0px 0px 8.533333vw 0px;
	overflow: hidden;
}

.history_data .in_cont{
	margin-bottom: 10.666667vw;
}

.history_data .in_cont h3{
	font-size: 6.666667vw;
	margin-bottom: 8vw;
	padding-left: 2.666667vw;
	border-left: 1.066667vw solid var(--color1);
}

.history_data .in_cont p{
	font-size: 4.266667vw;
}

.history_data .in_cont .image_ul{
	display: block;
    margin-top: 8vw;
}

.history_data .in_cont .image_ul li{
	width: 100%;
	margin-right: 0;
}

.history_data .in_cont .image_ul li:nth-child(3n + 3){
	margin-right: 0;
}


#section2{
	padding-top: 14.66667vw;
	margin-bottom: 26.666667vw;
	overflow: hidden;
}

#section2 .tabs{
	width: auto;
	margin: 0 5.333333vw;
}

#section2 .tabs .tab_wrapp{
	overflow-y: scroll;
	margin-bottom: 8vw;
}

#section2 .tabs .tab-menu{
    margin-bottom: 4.8vw;
	width: 162.666667vw;
}

#section2 .tabs .tab-menu li{
	width: 25.333333vw;
	margin-right: 2.133333vw;
}

#section2 .tabs .tab-menu li.active::after{
	height: calc(tan(60deg) * 2.666667vw / 2);
	width: 2.666667vw;
    bottom: -2.133333vw;
}

#section2 .tabs .tab-menu li span{
	padding: 2.133333vw 0;
	font-size: 3.2vw;
	letter-spacing: 0.0125em;
}

#section2 .tabs .tab-menu li span small{
	font-size: 2.666667vw;
	letter-spacing: 0.015em;
}

#section2 .tab-content .tab .tab_title{
	padding: 4vw 0 15px 2.666667vw;
	font-size: 3.733333vw;
}

#section2 .tab-content .tab .tab_title small{
	font-size: 3.733333vw;
	font-weight: 700;
	lletter-spacing: 0.04em;
}

#section2 .tab-content .tab ul li{
	padding: 5.333333vw 0;
	display: block;
    font-size: 3.733333vw;
    line-height: 1.75;
}

#section2 .tab-content .tab ul li:last-child{
	border-bottom: 1px solid #E7E7E9
}

#section2 .tab-content .tab ul li .tab_item{
	width: auto;
	font-weight: 700;
	margin-bottom: 2.666667vw;
}

#section2 .tab-content .tab ul li .tab_item small{
	font-weight: 700;
}

#section2 .tab-content .tab ul li .tab_cont{
	width: auto;
	line-height: 1.75;
}


.image_ul  .slick-dots {
    bottom: -6.666667vw;
    display: flex;
    lex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}

.image_ul .slick-dots li{
	width: 3.2vw !important;
	height: 3.2vw;
	margin: 0 2.666667vw;
}

.image_ul .slick-dots li button {
    width: 3.2vw;
    height: 3.2vw;
    padding: 0;
}

.image_ul .slick-dots li button:before {
    width: 3.2vw;
    height: 3.2vw;
    line-height: 3.2vw;
    border: 1px solid var(--color1);
    content: '';
    text-align: center;
    opacity: 1;
}

.image_ul .slick-dots li.slick-active button:before {
    opacity: 1;
    background: var(--color1);
}


.image_ul .slick-prev,
.image_ul .slick-next {
	width: 8.533333vw;
    height: 8.533333vw;
    transform: translate(0, -50%);
    z-index: 5;
}

.image_ul .slick-prev{
    left: -3.2vw;
}

.image_ul .slick-next{
    right: -3.2vw;
}

.image_ul .slick-prev:before,
.image_ul .slick-next:before {
	content: '';
    opacity: 1;
	display: block;
	width: 8.533333vw;
	height: 8.533333vw;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2233%22%20height%3D%2233%22%20viewBox%3D%220%200%2033%2033%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Crect%20x%3D%221.36049%22%20y%3D%221.0746%22%20width%3D%2230.8571%22%20height%3D%2230.8571%22%20rx%3D%2215.4286%22%20fill%3D%22%2322399D%22%2F%3E%3Crect%20x%3D%221.36049%22%20y%3D%221.0746%22%20width%3D%2230.8571%22%20height%3D%2230.8571%22%20rx%3D%2215.4286%22%20stroke%3D%22white%22%20stroke-width%3D%221.14286%22%2F%3E%3Cpath%20d%3D%22M15.2637%2022.5996L9.16843%2016.5044L15.2637%2010.4091%22%20stroke%3D%22white%22%20stroke-width%3D%221.14286%22%2F%3E%3Cpath%20d%3D%22M24.4062%2016.5046L9.16816%2016.5046%22%20stroke%3D%22white%22%20stroke-width%3D%221.14286%22%2F%3E%3C%2Fsvg%3E');
	position: absolute;
    top: auto;
    left: 0;
}

.image_ul .slick-next:before {
	transform: rotate(180deg)
}




}


