@charset "UTF-8";
/* news ---------------------------------------*/
.news {
	position: relative;
	margin-top: calc(-30 / 1440 * 100vw);
	padding: min(calc(160 / 1440 * 100vw), 200px) 20px 120px;
	z-index: 2;
}

.news-image {
	position: absolute;
	z-index: -1;
	transform: translateX(-50%);
}

.news-image-01 {
	top: -20px;
	left: calc(50% + 590px);
	width: min(calc(94 / 1440 * 100vw), 94px);
}

.news-image-02 {
	bottom: 110px;
	left: calc(50% - 620px);
	width: min(calc(57 / 1440 * 100vw), 57px);
}

.news-image-03 {
	bottom: 0px;
	left: calc(50% + 670px);
	width: min(calc(675 / 1440 * 100vw), 675px);
}

/* newsdetail ---------------------------------------*/	
.newsdetail {
	position: relative;
	margin-top: calc(-30 / 1440 * 100vw);
	padding: min(calc(160 / 1440 * 100vw), 200px) 20px 120px;
	z-index: 2;
}

.newsdetail-wrapper	 {
	display: flex;
	gap: calc(40 / 1000 * 100%);
}

.newsdetail-main {
	flex: 1;
}

.newsdetail-head { 
	margin-bottom: 20px;
}

.newsdetail-head-block { 
	display: flex;
	gap: 20px;
	margin-bottom: 10px;
}

.newsdetail-head-date { 
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	letter-spacing: 0.035em;
	color: #ff9149;
}

.newsdetail-head-catlist { 
	display: flex;
	gap: 10px;
}

.newsdetail-head-cat { 
	display: block;
	padding: 1px 10px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.035em;
	color: #fff;
	background: #ff9149;
	border-radius: 50px;
}

.newsdetail-head-title { 
	font-size: 32px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.035em;
}

.newsdetail .entrybody {
	padding: 20px 0;
	border-top: 1px dashed #fff;
	border-bottom: 1px dashed #fff;
}

.newsdetail-sub {
	width: calc(240 / 1000 * 100%);
}

.newsdetail-rerated {
}

.newsdetail-rerated-title {
	margin-bottom: 12px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.035em;
}

.newsdetail-rerated-list > li {
	padding: 12px 0;
	border-top: 1px dashed #fff;
}

.newsdetail-rerated-list-date {
	display: block;
	margin-bottom: 4px;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0.035em;
	color: #ff9149;
}

.newsdetail-rerated-list-title {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0.085em;
}


/* information ---------------------------------------*/
.information {
	position: relative;
	margin-top: calc(-30 / 1440 * 100vw);
	padding: min(calc(160 / 1440 * 100vw), 200px) 20px 250px;
	z-index: 2;
}

.information-title {
	position: relative;
	z-index: 2;
	width: fit-content;
}

.information-title::after {
	position: absolute;
	top: -40px;
	left: calc(100% + 66px);
	z-index: 1;
	width: 232px;
	aspect-ratio: 232 / 157;
	background: url('../img/index/img_information_01.png') no-repeat;
	background-size: contain;
	content: '';
	opacity: 0;
	transform-origin: 50% 100%;
}

.information-title.on::after {
	animation: pon-02 0.6s forwards ease-in-out;
}

.information-catlist {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px 50px;
	margin-top: 70px;
	overflow: hidden;
}

.information-catlist > li {
	position: relative;
}

.information-catlist > li:first-of-type {
	padding-left: 10px;
	transition: all 0.25s ease;
}

.information-catlist > li.is-active:first-of-type {
	padding-left: 0;
}

.information-catlist > li:not(:first-of-type)::before {
	position: absolute;
	top: 0;
	left: -33px;
	z-index: 1;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.035em;
	color: #ff9149;
	content: '｜';
}

.information-catlist > li span {
	display: block;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.035em;
	cursor: pointer;
}

.information-catlist > li.is-active span {
	padding: 1px 10px;
	color: #fff;
	background: #ff9149;
	border-radius: 50px;
}

.information-catlist > li > span,
.information-catlist > li > a {
	position: relative;
	transition: all 0.25s ease;
}

.information-catlist > li > span::after,
.information-catlist > li > a::after {
	content: '';
	position: absolute;
	top: -1px;
	left: -10px;
	z-index: -1;
	width: 100%;
	height: 100%;
	padding: 1px 10px;
	background: #ff9149;
	border-radius: 50px;
	opacity: 0;
	transition: all 0.25s ease;
}

.information-catlist > li.is-active > span::after,
.information-catlist > li.is-active > a::after {
	top: 0;
	left: 0;
	padding: 0;
	opacity: 0;
}

.information-catlist > li span:hover,
.information-catlist > li a:hover {
	color: #fff;
	opacity: 1;
}

.information-catlist > li > span:hover::after,
.information-catlist > li > a:hover::after {
	opacity: 1;
}

.information-list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px calc(30 / 1200 * 100%);
	margin-top: 60px;
}

.information-list > li {
	width: calc(380 / 1200 * 100%);
}

.information-list > li > a {
	display: block;
	width: 100%;
}

.information-list-image {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 380 / 260;
}

.information-list-image::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	border: 2px solid #ff9149;
	box-sizing: border-box;
}

.information-list-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.information-list-info {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 10px 8px 0;
}

.information-list-date {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.05em;
	color: #ff9149;
}

.information-list-category {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.information-list-category span {
	display: block;
	padding: 1px 10px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.035em;
	color: #fff;
	background: #ff9149;
	border-radius: 50px;
}

.information-list-title {
	padding: 10px 8px 0;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0.035em;
}

.information-image {
	position: absolute;
	z-index: -1;
	transform: translateX(-50%);
}

.information-image-01 {
	top: -10px;
	left: calc(50% + 760px);
	width: min(calc(737 / 1440 * 100vw), 737px);
}

.information-image-02 {
	bottom: 40px;
	left: calc(50% - 660px);
	width: min(calc(608 / 1440 * 100vw), 608px);
}

.information-image-03 {
	bottom: 20px;
	left: calc(50% + 570px);
	width: min(calc(200 / 1440 * 100vw), 200px);
}

.information .nopost {
	margin: 0 auto 80px;
}


/* informationdetail ---------------------------------------*/	
.informationdetail {
	position: relative;
	margin-top: calc(-30 / 1440 * 100vw);
	padding: min(calc(140 / 1440 * 100vw), 140px) 20px 120px;
	z-index: 2;
}

.informationdetail-head {
	margin-bottom: 40px;
}

.informationdetail-head-block { 
	display: flex;
	gap: 20px;
	margin-bottom: 4px;
}

.informationdetail-head-date {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	letter-spacing: 0.035em;
	color: #ff9149;
}

.informationdetail-head-catlist { 
	display: flex;
	gap: 10px;
}

.informationdetail-head-cat { 
	display: block;
	padding: 1px 10px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.035em;
	color: #fff;
	background: #ff9149;
	border-radius: 50px;
}

.informationdetail-head-title {
	margin-bottom: 20px;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.035em;
}

.informationdetail-head-image {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 20px;
	overflow: hidden;
}

.informationdetail-head-image::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1;
	height: 100%;
	border-radius: 20px;
	border: 4px solid #ff9149;
	box-sizing: border-box;
}

.informationdetail-head-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.informationdetail-image {
	position: absolute;
	z-index: -1;
	transform: translateX(-50%);
}

.informationdetail-image-01 {
	top: 80px;
	left: calc(50% + 560px);
	width: min(calc(625 / 1440 * 100vw), 625px);
}

.informationdetail-image-02 {
	bottom: 10px;
	left: calc(50% - 660px);
	width: min(calc(608 / 1440 * 100vw), 608px);
}


/* pager ---------------------------------------*/	
.pager {
	position: relative;
	z-index: 1;
	margin-top: 100px;
}

.pager-list {
	display: flex;
	justify-content: center;
	align-items: center;
}

.pager-list li {
	margin: 0 10px;
}

.pager-list a, .pager-list span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 16px;
	text-align: center;
	color: #ff9149;
	background: #fff;
	border: 1px solid #ff9149;
	border-radius: 100px;
	transition: all .25s ease;
}

.pager-list span {
	color: #fff;
	background: #ff9149;
}

.pager-list a:hover {
	color: #fff;
	background: #ff9149;
	opacity: 1;
}

.pager-dots {
	position: relative;
	top: -5px;
}


/* entrybody ---------------------------------------*/
.entrybody > * {margin-top: 12px;}
.entrybody > *:first-child {margin-top: 0 !important;}

.entrybody h2, .entrybody h3 { 
	margin-top: 40px;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.035em;
	color: #ff9149;
}

.entrybody p { 
	font-size: 15px;
	font-weight: 500;
	line-height: 1.75;
	word-break: break-all;
}

.entrybody strong,
.entrybody b { 
	font-weight: 700;
}

.entrybody a { 
	text-decoration: underline;
	color: #ff9149;
}

.entrybody a:hover { 
	opacity: 1;
	text-decoration: none;
}

.entrybody img {
	max-width: 100%;
}

.entrybody > * img {margin-top: 0;}

.entrybody ol {
  padding-left: 20px;
}

.entrybody ul > li,
.entrybody ol > li {
	position: relative;
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: 0.035em;
}

.entrybody ul > li {padding-left: 20px;}
.entrybody ol > li {list-style: decimal;}

.entrybody ul > li::before {
	position: absolute;
	top: 0;
	left: 2px;
	font-size: 15px;
	content: '・';
}


/* archive-btnlist ---------------------------------------*/
.archive-btnlist {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 80px;
}

.archive-btnlist > li {
	max-width: 200px;
	width: 100%;
	text-align: center;
}

/* pc only */
@media screen and (min-width: 768px) {
	.newsdetail-rerated-list-title {
		display: -webkit-box;
		overflow: hidden;
		text-overflow: ellipsis;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}
}

/* small pc */
@media screen and (min-width: 768px) and (max-width: 1439px) {
	.news-image-01 {left: 91%;}
	.news-image-02 {left: 7%;}
	.newsdetail .news-image-02 {bottom: 50px;}
	.news-image-03 {left: 96.5%;}

	.information-image-01{left: 103%;}
	.information-image-02 {left: 4%;}
	.information-image-03 {left: 89.5%;}

	.informationdetail-image-01 {left: 89%;}
	.informationdetail-image-02 {left: 4%;}

}

@media screen and (min-width: 768px) and (max-width: 1300px){
	.news-title::after {left: 23%;}

	.informationdetail-image-01 {
    top: 60px;
		left: 100%;
	}
}

/* sp only */
@media screen and (max-width: 767px){

	/* news ---------------------------------------*/
	.news {
		margin-top: calc(-30 / 375 * 100vw);
		padding: 50px 16px 120px;
	}

	.news-image-01 {
		top: 0;
		left: calc(50% + 140px);
		width: 46px;
	}
	
	.news-image-02 {
		bottom: 40px;
		left: calc(50% - 130px);
		width: 30px;
	}
	
	.news-image-03 {
		bottom: 10px;
		left: calc(50% + 80px);
		width: 270px;
	}


	/* newsdetail ---------------------------------------*/	
	.newsdetail {
		margin-top: calc(-30 / 375 * 100vw);
		padding: 90px 16px 120px;
	}

	.newsdetail-wrapper	 {
		display: block;
	}

	.newsdetail-main {
		width: 100%;
	}

	.newsdetail-head { 
		margin-bottom: 24px;
	}

	.newsdetail-head-block { 
		gap: 16px;
		margin-bottom: 10px;
	}

	.newsdetail-head-date { 
		font-size: 14px;
	}

	.newsdetail-head-cat { 
		padding: 1px 8px;
		font-size: 14px;
	}

	.newsdetail-head-title { 
		font-size: 24px;
	}

	.newsdetail .entrybody {
		padding: 16px 0;
	}

	.newsdetail-sub {
		margin-top: 40px;
		width: 100%;
	}

	.newsdetail-rerated-title {
		margin-bottom: 12px;
		font-size: 20px;
	}

	.newsdetail-rerated-list > li {
		padding: 16px 0;
		border-top: 1px dashed #fff;
	}

	.newsdetail-rerated-list > li a {
    display: flex;
    width: fit-content;
	}

	.newsdetail-rerated-list-date {
		margin-bottom: 0;
		width: 84px;
		font-size: 15px;
	}

	.newsdetail-rerated-list-title {
		flex: 1;
		font-size: 15px;
	}


	/* information ---------------------------------------*/
	.information {
		margin-top: calc(-30 / 375 * 100vw);
		padding: 90px 16px 120px;
	}

	.information-title::after {
		top: 2px;
		left: 100px;
		width: 110px;
	}

	.information-catlist {
		gap: 16px 46px;
		margin-top: 60px;
	}

	.information-catlist > li:not(:first-of-type)::after {
		left: -32px;
		font-size: 15px;
	}

	.information-catlist > li span {
		font-size: 14px;
	}

	.information-catlist > li.is-active span {
		padding: 1px 8px;
	}

	.information-catlist > li > span::after,
	.information-catlist > li > a::after {
		display: none;
	}

	.information-list {
		display: block;
		margin-top: 70px;
	}
	
	.information-list > li {
		width: 100%;
	}

	.information-list > li + li {
		margin-top: 20px;
	}

	.information-list-info {
		gap: 16px;
	}

	.information-list-category {
		gap: 10px;
	}
	
	.information-list-category span {
		font-size: 12px;
	}
	
	.information-list-title {
		padding: 4px 8px 0;
	}

	.information-image-01 {
		top: -10px;
		left: calc(50% + 200px);
		width: 288px;
	}

	.information-image-02 {
		bottom: 10px;
		left: calc(50% - 144px);
		width: 304px;
	}

	.information-image-03 {
		bottom: 6px;
		left: calc(50% + 120px);
		width: 90px;
	}


	/* informationdetail ---------------------------------------*/	
	.informationdetail {
		margin-top: calc(-30 / 375 * 100vw);
		padding: 70px 16px 120px;
	}

	.informationdetail-head {
		margin-bottom: 24px;
	}

	.informationdetail-head-block { 
		gap: 16px;
		margin-bottom: 10px;
	}

	.informationdetail-head-date { 
		font-size: 14px;
	}

	.informationdetail-head-cat { 
		padding: 1px 8px;
		font-size: 14px;
	}

	.informationdetail-head-title {
		margin-bottom: 12px;
		font-size: 24px;
	}

	.informationdetail-head-image {
		border-radius: 8px;
	}
	
	.informationdetail-head-image::after {
		border-radius: 8px;
		border: 2px solid #ff9149;
	}

	.informationdetail-image-01 {
		top: 30px;
		left: 89%;
		width: 250px;
	}

	.informationdetail-image-02 {
		bottom: 10px;
		left: calc(50% - 114px);
		width: 304px;
	}


	/* pager ---------------------------------------*/	
	.pager {
		margin-top: 50px;
	}

	.pager-list li {
		margin: 0 6px;
	}

	.pager-list a, .pager-list span {
		width: 32px;
		height: 32px;
		font-size: 15px;
	}


	/* entrybody ---------------------------------------*/
	.entrybody > * {margin-top: 6px;}

	.entrybody h2, .entrybody h3 { 
		margin-top: 20px;
		font-size: 18px;
	}

	.entrybody p { 
		font-size: 14px;
	}

	.entrybody ul > li,
	.entrybody ol > li {
		font-size: 14px;
	}

	.entrybody ul > li {padding-left: 18px;}

	.entrybody ul > li::before {
		font-size: 14px;
	}


	/* archive-btnlist ---------------------------------------*/
	.archive-btnlist {
		gap: 16px;
		margin-top: 60px;
	}

	.archive-btnlist > li {
		max-width: unset;
		width: fit-content;
	}

}




/* iphone5 iphoneSE用 */
@media screen and (max-width: 370px){

}