@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
}
html {
	font-size: 62.5%;
}
body, table, input, textarea, select, option {
	font-family: 'Noto Sans JP', sans-serif;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
	box-sizing: border-box;
}
blockquote, q {
	quotes: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
    height: auto;
}
a,
a:link {
	color: #191919;
	text-decoration: none;
}
a:visited {
	color: #191919;
}
a:hover {
	opacity: 0.7;
}
a:active {
	color: #191919;
}
.roboto {
	font-family: "Roboto", sans-serif;
}

/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	margin: 0 auto;
	color: #000;
	font-size: 1.6rem;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}
body.fixed {
	position: fixed;
	top: 0;
	width: 100%;
}
.content {
	max-width: 960px;
	width: 95%;
	margin: 0 auto;
}
#container {
	position: relative;
	text-align: left;
	min-width: 960px;
	background: url(../img/bg_01.jpg) no-repeat top;
	background-size: cover;
	overflow: hidden;
}
#main {
	display: block;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}
@media all and (max-width: 768px) {
	body {
		min-width: inherit;
		font-size: 1.5rem;
	}
	.content {
		width: 90%;
	}
	#container {
		min-width: 100%;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}

/*------------------------------------------------------------
	共通
------------------------------------------------------------*/
.br-tb {
	display: none;
}
.br-sp {
	display: none;
}

@media screen and (max-width:768px) {
	.br-tb {
		display: block;
	}
	.tb-off {
		display: none;
	}
}
@media screen and (max-width:430px) {
	.br-sp {
		display: block;
	}
	.sp-off {
		display: none;
	}
}

/*------------------------------------------------------------
	アニメーション
------------------------------------------------------------*/

/* メインビジュアルアニメ */
.main_F {
	opacity: 0;
	visibility: hidden;
}
.main_fade {
	animation: mainFade 1s;
	opacity: 1;
	visibility: visible;
}
@keyframes mainFade {
  0% {
		opacity: 0;
		visibility: hidden;
  }
  100% {
		opacity: 1;
		visibility: visible;
  }
}
.main_slide_L {
	opacity: 0;
	visibility: hidden;
}
.main_slide_left {
	animation: mainSlideLeft 1s;
	opacity: 1;
	visibility: visible;
}
@keyframes mainSlideLeft {
  0% {
    transform: translateX(-50px);
		opacity: 0;
		visibility: hidden;
  }
  100% {
    transform: translateX(0);
		opacity: 1;
		visibility: visible;
  }
}

/* スライドレフト */
.slide_L {
	opacity: 0;
	visibility: hidden;
}
.slide_left {
	animation: slideLeft 1s;
	opacity: 1;
	visibility: visible;
}
@keyframes slideLeft {
  0% {
    transform: translateX(-50px);
		opacity: 0;
		visibility: hidden;
  }
  100% {
    transform: translateX(0);
		opacity: 1;
		visibility: visible;
  }
}

/* スライドライト */
.slide_R {
	opacity: 0;
	visibility: hidden;
}
.slide_right {
	animation: slideRight 1s;
	opacity: 1;
	visibility: visible;
}
@keyframes slideRight {
  0% {
    transform: translateX(50px);
		opacity: 0;
		visibility: hidden;
  }
  100% {
    transform: translateX(0);
		opacity: 1;
		visibility: visible;
  }
}

/* スライドアップ */
.slide_U {
	opacity: 0;
	visibility: hidden;
}
.slide_up {
  animation: slideUp 1s;
	opacity: 1;
	visibility: visible;
}

@keyframes slideUp {
  0% {
    transform: translateY(50px);
		opacity: 0;
		visibility: hidden;
  }
  100% {
    transform: translateY(0);
		opacity: 1;
		visibility: visible;
  }
}





/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#header .header_content {
	padding: 20px 0;
}
#header .header_logo a h1 {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-size: 20px;
}
#header .header_logo a h1 img {
	width: 80px;
}
@media screen and (max-width:768px) {
	#header .header_logo a h1 {
		font-size: 14px;
	}
	#header .header_logo a h1 img {
		width: 50px;
	}
}


/*------------------------------------------------------------
	メインビジュアル
------------------------------------------------------------*/

#mainvisual {
	background: url(../img/main_bg_01.jpg) no-repeat center;
	height: 450px;
}
#mainvisual .mainvisual_ttl {
	position: relative;
	z-index: 0;
}
#mainvisual .mainvisual_ttl::before {
	content: "";
	background: url(../img/main_ttl_bg_01.png) no-repeat right;
	background-size: cover;
	width: 100vw;
	height: 100%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(calc(10% - 50vw), -50%);
	z-index: -1;
}
@media screen and (min-width:1441px) {
	#mainvisual {
		background-size: cover;
	}
}
@media screen and (max-width:1440px) {
	#mainvisual {
		background-size: 1440px;
	}
}
@media screen and (max-width:768px) {
	#mainvisual {
		background: url(../img/main_bg_02.jpg) no-repeat center;
		height: auto;
		padding-bottom: 50px;
	}
}

/*------------------------------------------------------------
	セミコン
------------------------------------------------------------*/
#semicon .semicon_tab {
	padding: 65px 0;
}
.tab-area {
  display: flex;
	justify-content: space-between;
	background-color: #B6CBE4;
	border-radius: 12px 12px 0 0;
}
.tab {
  width: 50%;
  padding: 5px;
	background-color: #B6CBE4;
  text-align: center;
	padding: 20px 0;
	border-radius: 12px 12px 0 0;
	font-size: clamp(16px, 4vw, 23px);
	font-weight: bold;
	font-style: italic;
	letter-spacing: 2px;
	color: #92ADDA;
	border-bottom: 2px solid #1F4890;
	display: grid;
	align-content: center;
	line-height: 1.2;
}
.tab:nth-child(1) {
	border-radius: 12px 0 0 0;
}
.tab:nth-child(2) {
	border-radius: 0 12px 0 0;
}
.tab.active {
  background-color: #fff;
	color: #1F4890;
	border: 2px solid #1F4890;
	border-bottom: 0;
	position: relative;
}
.tab.active::before {
	content: "";
	border-bottom: 1px solid #1F4890;
	width: 95%;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%);
}
.tab.active:nth-child(1), .tab.active:nth-child(2) {
	border-radius: 12px 12px 0 0;
}
.tab.comingsoon {
	position: relative;
	pointer-events: none;
}
.tab.comingsoon span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-85%, -85%);
	width: min(35vw, 220px);
	z-index: 100;
}
.panel {
  display: none;
	background-color: #fff;
	padding: 40px;
	border-bottom: 2px solid #1F4890;
}
.panel.active {
  display: block;
}
@media screen and (max-width:768px) {
	.panel {
		padding: 40px 20px;
	}
	.tab.comingsoon span {
		transform: translate(-60%, -85%);
	}
}

#semicon .semicon_ttl {
	margin-bottom: 50px;
}
#semicon .semicon_ttl p {
	font-size: clamp(16px, 4vw, 20px);
}
#semicon .semicon_ttl h2 {
	font-size: clamp(24px, 4vw, 44px);
	color: #1F4890;
}
#semicon .solution ul li {
	display: grid;
	grid-template-columns: 1fr auto;
	margin-bottom: 100px;
}



#semicon .solution ul #solution1 {
	background-color: #000;
	margin: 0 -40px 100px;
	grid-template-rows: 100%;
}
#semicon .solution ul #solution1 .left {
	padding: 40px 40px 75px 40px;
}
#semicon .solution ul #solution1 .subttl  {
	color: #494748;
	padding-left: 0;
}
#semicon .solution ul #solution1 h2 {
	color: #e60012;
	font-size: clamp(28px, 7vw, 42px);
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 20px;
	align-items: center;
	margin-bottom: 15px;
}
#semicon .solution ul #solution1 h2 span {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #e60012;
	color: #fff;
	font-size: clamp(14px, 3vw, 18px);
	text-align: center;
	display: grid;
	align-content: center;
}
#semicon .solution ul #solution1 h3 {
	background: linear-gradient(to right, #fff 80%, #000 100%);
	color: #000;
}
#semicon .solution ul #solution1 .txt {
	color: #fff;
	padding-left: 0;
}
#semicon .solution ul #solution1 .right img {
	max-width: 320px;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

#semicon .solution ul li:nth-child(2), #semicon .solution ul li:nth-child(4) {
	max-width: 80%;
	margin-left: auto;
}
#semicon .solution ul li:nth-child(4) {
	align-items: center;
}
#semicon .solution ul li .right {
	margin-left: -50px;
}
#semicon .solution ul li:nth-child(1) .right img {
	max-width: 320px;
	width: 100%;
}
#semicon .solution ul li:nth-child(2) .right img {
	max-width: 250px;
	width: 100%;
}
#semicon .solution ul li:nth-child(3) .right img {
	max-width: 234px;
	width: 100%;
}
#semicon .solution ul li:nth-child(4) .right img {
	max-width: 280px;
	width: 100%;
}
#semicon .solution ul li .subttl {
	font-size: 25px;
	font-style: italic;
	color: #1F4890;
	padding-left: 20px;
	letter-spacing: 1px;
}
#semicon .solution ul li .subttl span {
	font-size: 30px;
	font-weight: 400;
}
#semicon .solution ul .back-black::after {
	content: "";
	position: absolute;
background-color: #000;

}


#semicon .solution ul li h3 {
	background: linear-gradient(to right, #311973 15%, #1052AD 57%, rgba(16, 82, 173, 0) 100%);
	color: #fff;
	font-size: clamp(17px, 4vw, 31px);
	padding: 20px;
}
#semicon .solution ul li .txt {
	padding-top: 15px;
	padding-left: 20px;
	max-width: 90%;
	font-size: clamp(16px, 4vw, 18px);
}
#semicon .booth .booth_map {
	margin-top: 20px;
}
#semicon .booth .booth_item {
	padding: 100px 0 0;
}
#semicon .booth .ttl {
	text-align: center;
	margin-bottom: 30px;
}
#semicon .booth .ttl h2 {
	font-size: clamp(15px, 4.5vw, 38px);
}
#semicon .booth .img {
	margin: 0 -40px;
}
#semicon .booth .booth_ttl {
	border: 2px solid #1F4890;
	border-radius: 50vh;
	text-align: center;
	color: #1F4890;
	padding: 15px;
	position: relative;
	max-width: 450px;
	width: 100%;
	margin: 0 auto 30px;
	box-sizing: border-box;
}
#semicon .booth .booth_ttl h3 {
	font-size: clamp(16px, 4vw, 22px);
}
#semicon .booth .booth_ttl p {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%);
	background-color: #fff;
	padding: 0 20px;
	font-style: italic;
	white-space: nowrap;
}
#semicon .booth .presentation h4 {
	font-size: clamp(14px, 4vw, 24px);
	margin-bottom: 25px;
	text-align: center;
}
#semicon .booth .presentation h4 span {
	font-size: clamp(11px, 4vw, 21px);
	background-color: #EB4096;
	color: #fff;
	padding: 5px 10px;
	margin-left: 15px;
	display: inline-block;
}
#semicon .booth .presentation p {
	font-size: clamp(14px, 3vw, 18px);
	text-align: center;
}
#semicon .booth .presentation .presentation_text-left {
	font-size: clamp(14px, 3vw, 20px);
	text-align: left;
	margin: 0 auto 25px;
    width: 65%;
	color: #FFF;
	font-weight: bold;
	line-height: 1.8;
}
#semicon .booth .presentation .presentation_text-left span{
	font-size: clamp(18px, 3vw, 23px);
	font-style: italic;
	padding-right: 10px;
}
#semicon .booth .presentation .back-color{
	background-color: #1F4890;
    line-height: 1.4;
    text-align: left;
    padding: 10px 10px 10px 15px;
    margin-bottom: 16px;
	clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%);
}
#semicon .booth .presentation .presentation-annai {
	color: #1F4890;
    text-align: left;
    font-size: 15px;
	font-weight: 400;
}
#semicon .booth .product > p {
	text-align: center;
	margin: 30px 0;
	letter-spacing: 2px;
}
#semicon .booth .product ul {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
}
#semicon .booth .product ul li {
	text-align: center;
}
.hover-none:hover {
	opacity: 1;
}
#semicon .booth .product ul li a {
	position: relative;
}
#semicon .booth .product ul li a::after {
	content: "";
	background: url(../img/prouct_icon_01.svg) no-repeat center;
	background-size: contain;
	width: 20px;
	height: 20px;
	display: block;
	margin: 10px auto 0;
}
#semicon .booth .product ul li img {
	aspect-ratio: 1/1;
	width: 100%;
	object-fit: contain;
}
#semicon .booth .product ul li p {
	border-top: 1px solid #1F4890;
	color: #1F4890;
	padding-top: 15px;
}
#semicon .about {
	position: relative;
	padding: 100px 0;
	margin-bottom: 100px;
}
#semicon .about::before, #semicon .about::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
#semicon .about::before {
	background: url(../img/icon_01.svg) no-repeat left top;
	background-size: 300px;
}
#semicon .about::after {
	background: url(../img/icon_02.svg) no-repeat right bottom;
	background-size: 300px;
}
#semicon .about h3 {
	text-align: left;
	font-size: clamp(14px, 4vw, 24px);
	margin: 0 auto 20px;
}
#semicon .about h4 {
	text-align: center;
	border: #1F4890 2px dotted;
	font-size: clamp(16px, 4vw, 20px);
	margin-bottom: 10px;
	width: 500px;
	padding: 5px;
	margin-top: 30px;
	color: #1F4890; 
}
#semicon .about p {
	line-height: 1.8;
}
#semicon .about .about-bottom {
	margin-bottom: 25px;
	margin-top: 20px;
	margin-left: 1em;
	position: relative;
	z-index: 99;
	flex-direction: column;
}
#semicon .about .about-bottom p{
	width: 636px;
    margin-bottom: 20px;
    border-bottom: 1px solid #dddddd;
}
#semicon .about .arrow_s_b {
	position: relative;
	padding-left: 22px;
	padding-left: 5px;
  }
#semicon .about .arrow_s_b:before {
	content: '';
	width: 18px;
	height: 18px;
	background: #1F4890;
	border-radius: 50%;
	position: absolute;
	top: 0;
	right: -25px;
	bottom: 0;
	margin: auto;
  }
  #semicon .about .arrow_s_b:after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 0 4px 6px;
	border-color: transparent transparent transparent #fff;
	position: absolute;
	top: 0;
	right: -19px;
	bottom: 0;
	margin: auto;
  }
  
#semicon .about .about-bottom a{
	color: #1F4890 !important;
	display: inline-flex;
    align-items: center;
	margin-bottom: 10px;
	line-height: 1.4;
}
#semicon .contact {
	text-align: center;
	margin: 100px 0;
}
#semicon .contact h3 {
	font-size: clamp(20px, 4vw, 24px);
}
#semicon .contact a {
	background-color: #1F4890;
	color: #fff;
	max-width: 450px;
	width: 100%;
	margin: 20px auto 0;
	padding: 20px 0;
	display: block;
	font-size: clamp(20px, 4vw, 25px);
	border-radius: 50vh;
}
#semicon .banner {
	margin-bottom: 100px;
	text-align: center;
}
#semicon .banner a img {
	max-width: 750px;
	width: 100%;
}

@media screen and (max-width:768px) {
	#semicon .semicon_tab {
		padding: 40px 0;
	}

	#semicon .semicon_ttl {
    text-align: center;
	}
	#semicon .solution ul li {
    grid-template-columns: 1fr;
		gap: 50px;
		margin-bottom: 100px;
	}


	#semicon .solution ul #solution1 {
    margin: 0 -20px 100px;
    grid-template-rows: auto;
		gap: 20px;
	}
	#semicon .solution ul #solution1 .left {
    padding: 20px;
	}
	#semicon .solution ul #solution1 h2 {
    gap: 15px;
	}
	#semicon .solution ul #solution1 h2 span {
		width: 45px;
		height: 45px;
	}


	#semicon .solution ul li:nth-child(2), #semicon .solution ul li:nth-child(4) {
    max-width: 100%;
    margin-left: 0;
	}
	#semicon .solution ul li .right {
    max-width: 75%;
		margin: 0 auto;
	}
	#semicon .solution ul li .right img {
		margin: 0 auto;
		display: block;
	}
	#semicon .solution ul li .subttl {
		padding-left: 0;
	}
	#semicon .solution ul li h3 {
		padding: 20px 10px;
	}
	#semicon .solution ul li .txt {
		padding-left: 0;
		max-width: 100%;
	}
	#semicon .about h4 {
		width: fit-content;
		margin-left: 0;
		text-align: left;
	}

	#semicon .booth .img {
    margin: 0 -20px;
	}
	#semicon .booth .presentation h4 {
		display: grid;
		grid-template-columns: 1fr auto;
		align-items: center;
		text-align: left;
	}
	#semicon .booth .presentation h4 span {
		margin-left: 0;
	}
	#semicon .booth .presentation p {
		text-align: left;
	}
	#semicon .booth .product ul {
		grid-template-columns: 1fr 1fr;
	}
	#semicon .booth .product ul li p {
		font-size: 14px;
	}

	#semicon .about {
		padding: 90px 0;
	}
	#semicon .about::before {
    background-size: 80%;
	}
	#semicon .about::after {
    background-size: 80%;
	}
	#semicon .about p {
		max-width: 100%;
	}

	#semicon .banner {
    margin-bottom: 65px;
	}

	#semicon .booth .booth_item {
		padding: 50px 0;
	}
	#semicon .contact {
		margin: 0px 0 50px;
	}

	#semicon .about .about-bottom {
		margin-left:0;
	}
	#semicon .about .about-bottom a{
		width: 100%;
	}
	#semicon .about .arrow_s_b:before {
		right: 0;
	}
	#semicon .about .arrow_s_b:after {
		right: 5px;
	}
	#semicon .booth .presentation .presentation_text-left{
		width: 100%;
	}
	#semicon .booth .presentation .back-color{
		padding: 10px;
	}
	#semicon .booth .presentation .presentation_text-left{
		margin-bottom: -50px;
	}

	#semicon .solution ul li  h2 {
	font-size: 28px;
	}
	#semicon .solution ul li .new-text {
		width: 20px;
		padding: 10px;
		height: 20px;
		font-size: 12px !important;
		margin-right: 10px;
	}
}



/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#footer {
	border-top: 16px solid rgb(14, 165, 233);
	background-color: rgb(38, 38, 38);
}
#footer .footer_content {
	max-width: 1260px;
	padding-top: 2.25rem;
	padding-bottom: 2.25rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	margin: 0 auto;
}
#footer .footer_top {
	display: flex;
	align-items: center;
	gap: 100px;
	padding: 25px 0;
}
#footer .footer_top .footer_btn {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}
#footer .footer_top .footer_btn a {
	border: 2px solid #fff;
	color: #fff;
	text-align: center;
	max-width: 312px;
	width: 100%;
	display: grid;
	align-content: center;
	padding: 10px;
	box-sizing: border-box;
}
#footer .footer_top .footer_btn a h3 {
	font-size: clamp(19px, 4vw, 21px);
}
#footer .footer_bottom {
	display: flex;
	justify-content: space-between;
	padding: 20px 0 45px;
	border-top: 1px solid rgb(14, 165, 233);
}
#footer .footer_bottom .footer_nav ul {
	display: flex;
	align-items: center;
	gap: 30px;
}
#footer .footer_bottom .footer_nav ul li a {
	color: #fff;
}
#footer .footer_bottom .footer_copy p {
	font-size: 12px;
	color: #fff;
}

#page-top {
	position: fixed;
	right: 15px;
	bottom: 15px;
	z-index: 100;
}
#page-top img {
	width: 60px;
}


@media screen and (max-width:768px) {
	#footer .footer_top {
		flex-direction: column;
    gap: 50px;
		padding-bottom: 50px;
	}
	#footer .footer_top .footer_btn {
		grid-template-columns: 1fr;
    gap: 30px;
		flex-direction: column;
	}
	#footer .footer_top .footer_btn a {
		max-width: 400px;
		min-height: 75px;
		padding: 0;
	}
	#footer .footer_top .footer_btn a p {
		font-size: 13px;
	}
	#footer .footer_bottom {
		flex-direction: column;
		align-items: center;
		gap: 30px;
	}
	#footer .footer_top .footer_logo, #footer .footer_top .footer_btn, #footer .footer_bottom .footer_nav {
    max-width: 400px;
	}
	#footer .footer_top .footer_logo, #footer .footer_top .footer_btn {
		width: 90%;
	}
	#footer .footer_bottom .footer_nav {
		width: 100%;
	}
	#footer .footer_top .footer_logo a img {
		width: 100%;
	}
	#footer .footer_bottom .footer_nav ul {
		justify-content: space-between;
		font-size: 14px;
	}
}


/*------------------------------------------------------------
	事後ページ
------------------------------------------------------------*/
#semicon .after_txt {
	margin-top: 50px;
}
#semicon .after_txt h2 {
	font-size: clamp(21px, 6vw, 44px);
	text-align: center;
	color: #1F4890;
	line-height: 1.3;
}

#semicon .after_ttl {
	text-align: center;
	font-weight: 500;
	padding-bottom: 50px;
	color: #1F4890;
}
#semicon .after_ttl p {
	font-size: clamp(16px, 4vw, 20px);
	margin-bottom: 20px;
}
#semicon .after_ttl p span {
	border-radius: 50vh;
	border: 1px solid #1F4890;
	padding: 0 15px;
	margin-right: 20px;
}
#semicon .after_ttl h3 {
	font-size: clamp(22px, 4vw, 34px);
}

#semicon .after_01 {
	background-color: #1F4890;
	padding: 70px 0;
	margin: 0 -40px;
}
#semicon .after_01 .after_ttl {
	color: #fff;
}
#semicon .after_01 .after_ttl p span {
	border-color: #fff;
}
#semicon .after_01 iframe {
	aspect-ratio: 16/9;
	max-width: 720px;
	width: 90%;
	margin: 0 auto;
	display: block;
}

#semicon .after_02 {
	padding: 70px 0;
}
#semicon .after_02-list ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 35px;
}
#semicon .after_02-list ul li p {
	font-size: 25px;
	font-style: italic;
	color: #1F4890;
}
#semicon .after_02-list ul li p span {
	font-weight: 400;
	font-size: 35px;
	margin-left: 3px;
}
#semicon .after_02-list ul li h3 {
	background: linear-gradient(to right, #311973 15%, #1052AD 57%, rgba(16, 82, 173, 0) 100%);
	color: #fff;
	font-size: clamp(21px, 2vw, 22px);
	padding: 20px;
	margin-bottom: 15px;
	line-height: 1.2;
}
#semicon .after_02-list ul li iframe {
	aspect-ratio: 16/9;
	width: 95%;
	background-color: #efefef;
}
#semicon .after_02-list ul li a {
	text-align: left;
	text-decoration: underline;
	margin-left: 0;
	font-size: clamp(16px, 4vw, 20px);
	font-weight: bold;
}


#semicon .voice {
	padding: 40px 0;
  margin: 50px 0;
	position: relative;
}
#semicon .voice::before, #semicon .voice::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
#semicon .voice::before {
	background: url(../img/icon_01.svg) no-repeat left top;
	background-size: 300px;
}
#semicon .voice::after {
	background: url(../img/icon_02.svg) no-repeat right bottom;
	background-size: 300px;
}

#semicon .voice h3 {
	font-size: clamp(24px, 4vw, 38px);
	letter-spacing: 5px;
	text-align: center;
}
#semicon .voice ul li {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 55px;
	padding: 40px 0;
	background-image : linear-gradient(to right, #CCCCCC 8px, transparent 3px);
	background-size: 11px 1px;
	background-repeat: repeat-x;
	background-position: left bottom;
}
#semicon .voice ul li:last-child {
	background: none;
}
#semicon .voice ul li .img {
	max-width: 124px;
}
#semicon .voice ul li .txt p {
	line-height: 1.8;
}
#semicon .voice ul li .txt p span {
	color: #E4007F;
}



@media screen and (max-width:768px) {
	#semicon .after_ttl p {
		display: flex;
		flex-direction: column;
		gap: 5px;
	}
	#semicon .after_ttl p span {
		width: fit-content;
		margin: 0 auto;
	}

	#semicon .after_01 {
		margin: 0 -20px;
	}
	#semicon .after_02-list ul {
		grid-template-columns: 1fr;
		gap: 35px;
	}
	#semicon .after_02-list ul li h3 {
		font-size: clamp(17px, 4vw, 21px);
		padding: 20px 10px;
	}
	#semicon .voice ul li {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 40px 0;
		justify-items: center;
	}
	#semicon .voice::before, #semicon .voice::after {
    background-size: 80%;
	}
}