@charset "utf-8";
@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: 'Avenir','Arial','ヒラギノ角ゴシック','Hiragino Sans', '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;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	margin: 0 auto;
	color: #000;
	font-size: 1.6rem;
	line-height: 1.5;
	letter-spacing: 1px;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}
body.fixed {
	position: fixed;
	top: 0;
	width: 100%;
}
.content {
	max-width: 980px;
	width: 95%;
	margin: 0 auto;
}
#container {
	position: relative;
	text-align: left;
	overflow: hidden;
}
#main {
	display: block;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
p {
	line-height: 1.8;
}
sup {
	font-size: 14px;
}

@media all and (min-width: 897px) {
	.sp {
		display: none !important;
	}
}
@media all and (max-width: 896px) {
	body {
		min-width: inherit;
		font-size: 1.5rem;
	}
	.content {
		width: 90%;
	}
	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:896px) {
	.br-tb {
		display: block;
	}
	.tb-off {
		display: none;
	}
}
@media screen and (max-width:430px) {
	.br-sp {
		display: block;
	}
	.sp-off {
		display: none;
	}
}

a.btn, button.btn {
	background-color: #000;
	color: #fff;
	border-radius: 50vh;
	padding: 13px 20px;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	align-items: center;
	width: fit-content;
	line-height: 1.0;
	font-weight: 600;
	margin-top: 20px;
}
a.btn span, button.btn span {
	background-color: #fff;
	border-radius: 50%;
	width: 17px;
	height: 17px;
	display: block;
	position: relative;
}
a.btn span::before, button.btn span::before {
	content: "";
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	width: 7px;
	height: 7px;
	position: absolute;
	top: 50%;
	left: 45%;
	transform: translate(-50%, -50%) rotate(45deg);
}


/*------------------------------------------------------------
	ローディング
------------------------------------------------------------*/
#splash {
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1200;
	background: #fff;
	text-align:center;
}
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#splash_logo img {
	width: 170px;
}

@keyframes fadeIn{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/*------------------------------------------------------------
	アニメーション
------------------------------------------------------------*/
.fadeInup {
	opacity: 0;
	visibility: hidden;
	transform: translate(0, 30px);
	transition: 1s;
}
.fadeInup.active {
	opacity: 1;
	visibility: visible;
	transform: translate(0, 0);
}


/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#header .header_content {
	padding: 25px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
}
#header.top .header_content {
	opacity: 0;
}
#header .header_nav nav ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
}
#header .header_nav nav ul li:first-child {
	padding-bottom: 5px;
}
#header .header_nav nav ul li a {
	font-size: 14px;
	font-family: 'ヒラギノ角ゴシック','Hiragino Sans', sans-serif;
	font-weight: 600;
}
#header .header_btn.pc_btn a {
	background-color: #000;
	border-radius: 50vh;
	color: #fff;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 8px;
	align-items: center;
	padding: 15px 25px;
	line-height: 1.0;
}
#header .header_btn.pc_btn a::before {
	content: "";
	background: url(../img/cart_icon_01.svg) no-repeat center;
	background-size: contain;
	width: 15px;
	height: 16px;
}
#header .header_btn.sp_btn {
	margin-left: auto;
}
#header .header_btn.sp_btn a p {
	font-size: 9px;
	font-weight: 600;
}
#header .zdo_drawer_menu {
	display: none;
}
@media screen and (max-width:896px) {
	#header .header_nav {
		display: none;
	}
	#header .header_content {
		padding: 20px 75px 20px 15px;
		grid-template-columns: auto auto;
	}
	#header .zdo_drawer_menu {
		display: block;
	}
}


/*------------------------------------------------------------
	トップーメインビジュアル
------------------------------------------------------------*/
#mainvisual .mainvisual_content {
	position: relative;
	overflow: hidden;
}
#mainvisual .mainvisual_slider {
	width: 90%;
	margin: 0 auto;
}
#mainvisual .mainvisual_slider img {
	width: 100%;
}
#mainvisual .swiper-pagination {
	position: absolute;
	left: 1.75%;
	right: auto;
	top: 50%;
	transform: translate(0, -50%);
	display: flex;
	flex-direction: column;
	gap: 10px;
	height: fit-content;
	width: fit-content;
}
#mainvisual .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	margin: 0;
	opacity: 1;
}
#mainvisual .swiper-pagination .swiper-pagination-bullet:nth-child(1) {
	background-color: #FC1A19;
}
#mainvisual .swiper-pagination .swiper-pagination-bullet:nth-child(2) {
	background-color: #4CC019;
}
#mainvisual .swiper-pagination .swiper-pagination-bullet:nth-child(3) {
	background-color: #005CDD;
}
#mainvisual .swiper-pagination .swiper-pagination-bullet:nth-child(4) {
	background-color: #F0E700;
}
#mainvisual .swiper-pagination .swiper-pagination-bullet:nth-child(5) {
	background-color: #445B67;
}
#mainvisual .swiper-pagination .swiper-pagination-bullet-active {
	opacity: 1;
}
#mainvisual .mainvisual_copy {
	position: absolute;
	right: 2.75%;
	top: 50%;
	transform: translate(0, 100%) rotate(90deg);
	transform-origin: right;
}

#mainvisual .mainvisual_slider .swiper-wrapper, #mainvisual .swiper-pagination, #mainvisual .mainvisual_copy {
	opacity: 0;
}

@media screen and (max-width:896px) {
	#mainvisual .mainvisual_slider {
		width: 100%;
	}
	#mainvisual .swiper-pagination, #mainvisual .mainvisual_copy {
		display: none;
	}
	
}


/*------------------------------------------------------------
	トップーアバウト
------------------------------------------------------------*/
#top_about .top_about-content {
	display: grid;
	grid-template-columns: 50% 1fr;
	gap: 85px;
	align-items: center;
	margin: 100px 0 80px;
}
#top_about .top_about-left {
	position: relative;
}
#top_about .top_about-left .img_ttl {
	position: absolute;
	right: 0;
	bottom: 20px;
	transform: translate(50%);
	height: 80%;
	max-height: 345px;
}
#top_about .top_about-right {
	width: 90%;
	margin: 0 auto;
}
#top_about .top_about-right h2 {
	font-size: clamp(24px, 4vw, 30px);
	margin-bottom: 25px;
}

@media screen and (max-width:896px) {
	#top_about .top_about-content {
		grid-template-columns: 1fr;
		gap: 50px;
		margin: 50px 0 80px;
	}
	#top_about .top_about-left {
		width: 95%;
	}
}

/*------------------------------------------------------------
	トップーコンセプト
------------------------------------------------------------*/
#top_concept .top_concept-content {
	margin: 80px 0 125px;
}
#top_concept .top_concept-ttl {
	text-align: center;
	margin-bottom: 20px;
}
#top_concept .top_concept-ttl h2 {
	font-size: clamp(24px, 4vw, 30px);
}
#top_concept .top_concept-list ul {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
}
#top_concept .top_concept-list ul li h3 {
	margin: 15px 0 20px;
	font-size: 20px;
}
#top_concept .top_concept-list ul li img {
	width: 100%;
}

@media screen and (max-width:896px) {
	#top_concept .top_concept-list ul {
		grid-template-columns: 1fr;
		gap: 50px;
	}
	#top_concept .top_concept-list ul li h3 {
		margin: 15px 0 10px;
	}
}

/*------------------------------------------------------------
	トップープロダクト
------------------------------------------------------------*/
#top_product {
	position: relative;
	overflow: hidden;
}
#top_product::before {
	content: "";
	background-color: #0060EC;
	border-radius: 0 100px 0 0;
	width: 60%;
	height: 565px;
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	z-index: -1;
}
#top_product .top_product-content {
	padding: 50px 0;
	margin: 125px 0 50px;
	position: relative;
}
#top_product .top_product-ttl h2 {
	font-size: clamp(40px, 10vw, 60px);
	color: #fff;
}
#top_product .top_product-list {
	overflow: hidden;
}
#top_product .top_product-list ul:has(> :nth-child(-n+1):last-child) {
	display: grid;
	grid-template-columns: 1fr 1fr;
	/* gap: 25px; */
}
#top_product .top_product-list ul li img {
	border-radius: 26px;
}
#top_product .top_product-list ul li h3 {
	font-size: 30px;
	text-align: center;
	margin: 20px 0 10px;
	line-height: 0.8;
}
#top_product .top_product-list ul li h3 span {
	font-size: 14px;
	font-weight: normal;
}
#top_product .top_product-list ul li h4 {
	font-size: 20px;
	text-align: center;
	margin: 10px 0 15px;
}
#top_product .top_product-list ul li a button.btn {
	margin: 15px auto 0;
	background-color: #000;
	color: #fff;
	border-radius: 50vh;
	border: 0;
	padding: 13px 20px;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	align-items: center;
	width: fit-content;
	line-height: 1.0;
	font-weight: 600;
	margin-top: 20px;
}
#top_product .top_product-list ul li a button.btn span {
	background-color: #fff;
	border-radius: 50%;
	width: 17px;
	height: 17px;
	display: block;
	position: relative;
}
#top_product .top_product-list ul li a button.btn span::before {
	content: "";
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	width: 7px;
	height: 7px;
	position: absolute;
	top: 50%;
	left: 45%;
	transform: translate(-50%, -50%) rotate(45deg);
}
#top_product .top_product-list .swiper-button-next {
	width: 49px;
	height: 118px;
	background-color: #000;
	border-radius: 0 30px 30px 0;
	right: 0;
	top: 50%;
	transform: translate(100%, -100%);
}
#top_product .top_product-list .swiper-button-prev {
	width: 49px;
	height: 118px;
	background-color: #000;
	border-radius: 30px 0 0 30px;
	left: 0;
	top: 50%;
	transform: translate(-100%, -100%); 
}
#top_product .top_product-list .swiper-button-prev:after, #top_product .top_product-list .swiper-button-next:after {
	font-size: 25px;
	color: #fff;
}

@media screen and (max-width:1100px) {
	#top_product .top_product-list .swiper-button-next {
		width: 60px;
    height: 60px;
    border-radius: 50%;
    right: 10px;
    top: 42%;
    transform: translate(0, -100%);
	}
	#top_product .top_product-list .swiper-button-prev {
		width: 60px;
    height: 60px;
    border-radius: 50%;
		left: 10px;
		top: 42%;
    transform: translate(0, -100%);
	}
	#top_product .top_product-list .swiper-button-prev:after {
		margin-right: 6px;
	}
	#top_product .top_product-list .swiper-button-next:after {
		margin-left: 6px;
	}
}
@media screen and (max-width:896px) {
	#top_product .top_product-content::before {
		border-radius: 0 100px 0 0;
		width: 85%;
		height: 409px;
	}
	#top_product .top_product-list ul:has(> :nth-child(-n+1):last-child) {
		grid-template-columns: 1fr;
		gap: 50px;
	}
}
@media screen and (max-width:430px) {
	#top_product .top_product-list .swiper-button-next {
		width: 50px;
    height: 50px;
	}
	#top_product .top_product-list .swiper-button-prev {
		width: 50px;
    height: 50px;
	}
}


/*------------------------------------------------------------
	トップーディベロッパー
------------------------------------------------------------*/
#top_developer .top_developer-content {
	margin: 50px 0 100px;
}
#top_developer .top_developer-01 {
	display: grid;
	grid-template-columns: 50% 1fr;
	align-items: center;
}
#top_developer .top_developer-left {
	position: relative;
}
#top_developer .top_developer-left .img_ttl {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(50%, -50%);
	max-height: 285px;
	height: 80%;
}
#top_developer .top_developer-right {
	width: 80%;
	margin: 0 auto;
}
#top_developer .top_developer-right h2 {
	font-size: clamp(20px, 4vw, 30px);
	margin-bottom: 20px;
}
#top_developer .top_developer-02 ul {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 28px;
}
#top_developer .top_developer-02 ul li img {
	width: 100%;
}
#top_developer .top_developer-02 ul li h3 {
	margin: 15px 0;
}

@media screen and (max-width:896px) {
	#top_developer .top_developer-01 {
		grid-template-columns: 1fr;
		margin-bottom: 75px;
	}
	#top_developer .top_developer-left .img_ttl {
		top: 0;
		transform: translate(0, 0);
	}
	#top_developer .top_developer-right {
		width: 90%;
	}
	#top_developer .top_developer-02 ul {
		grid-template-columns: 1fr;
		gap: 50px;
	}
}


/*------------------------------------------------------------
	トップーニュース
------------------------------------------------------------*/
#top_news .top_news-content {
	margin: 80px auto 100px;
	max-width: 1275px;
}
#top_news .top_news-ttl {
	position: relative;
	display: grid;
	grid-template-columns: auto auto;
	width: fit-content;
	align-items: baseline;
	gap: 20px;
}
#top_news .top_news-ttl::after {
	content: "";
	background: linear-gradient(to right, #FC1A1A 33.3%, #FCE21A 33.3%, #FCE21A 66.6%, #00A0E9 66.6%);
	width: 54px;
	height: 14px;
	display: block;
}
#top_news .top_news-ttl h2 {
	font-size: clamp(40px, 10vw, 60px);
}
#top_news .top_news-list ul li {
	border-bottom: 1px dashed #C3C3C3;
}
#top_news .top_news-list ul li:last-child {
	border-bottom: 0;
}
#top_news .top_news-list ul li a {
	display: flex;
	gap: 15px;
	align-items: center;
	padding: 22px 0;
}
#top_news .top_news-list ul li a .inner {
	display: flex;
	gap: 15px;
	align-items: center;
}
#top_news .top_news-list ul li span {
	background-color: #000;
	border-radius: 50%;
	width: 21px;
	height: 21px;
	display: block;
	position: relative;
}
#top_news .top_news-list ul li span::before {
	content: "";
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	width: 7px;
	height: 7px;
	position: absolute;
	top: 50%;
	left: 45%;
	transform: translate(-50%, -50%) rotate(45deg);
}
#top_news .top_news-list ul li p.cate {
	border-radius: 50vh;
	color: #fff;
	font-weight: 600;
	font-size: 12px;
	padding: 6px 12px 4px;
	line-height: 1.0;
}
#top_news .top_news-list ul li p.cate.news {
	background-color: #00A0E9;
}
#top_news .top_news-list ul li p.cate.media {
	background-color: #FC1A19;
}
#top_news .top_news-list ul li p.ttl {
	font-weight: 500;
}
#top_news .top_news-btn {
	margin: 30px auto 0;
	width: fit-content;
}

@media screen and (max-width:896px) {
	#top_news .top_news-list ul li a {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
}

/*------------------------------------------------------------
	トップームービー
------------------------------------------------------------*/
#top_movie .top_movie-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	margin-bottom: 125px;
}
/* #top_movie .top_movie-item {
	aspect-ratio: 16/9;
	width: 100%;
	height: 100%;
} */
#top_movie .top_movie-item iframe {
	aspect-ratio: 16/9;
	width: 100%;
	height: 100%;
}

@media screen and (max-width:896px) {
	#top_movie .top_movie-content {
		grid-template-columns: 1fr;
		max-width: 600px;
		margin: 0 auto 125px;
	}
}

/*------------------------------------------------------------
	購入ボタンモーダル
------------------------------------------------------------*/
#buy_modal {
	display: none;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1002;
	width: 100vw;
	height: 100vh;
}
#buy_modal .buy_modal-bg {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0,0.6);
}
#buy_modal .buy_modal-content {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 100%;
	max-width: 350px;
}

#buy_modal .buy_modal-btn {
	max-width: 350px;
	display: flex;
  flex-direction: column;
}
#buy_modal .buy_modal-btn a {
	border-radius: 50vh;
	padding: 24px 26px;
	color: #fff;
	line-height: 1.0;
	font-size: clamp(16px, 4vw, 19px);
	font-weight: 600;
	margin-bottom: 12px;
	text-align: center;
	position: relative;
}
#buy_modal .buy_modal-btn a:nth-child(2) {
	/* 下記リンク設置時削除 */
	pointer-events: none;
}
#buy_modal .buy_modal-btn a::before {
	content: "";
	width: 21px;
	height: 20px;
	background: url(../img/cart_icon_01.svg) no-repeat center;
	position: absolute;
	background-size: contain;
	left: 30px;
	top: 50%;
	transform: translate(0, -50%);
}
#buy_modal .buy_modal-btn a:first-child {
	background-color: #F79910;
}
#buy_modal .buy_modal-btn a:last-child {
	background-color: #DD403E;
}
.buy_button {
	cursor: pointer;
}
#footer .buy_button {
	margin-left: auto;
	border: 0;
}
/* 下記リンク設置時削除 */
#buy_modal .buy_modal-txt {
	text-align: center;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
}

/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#footer .footer_content {
	background-color: #F8F8F8;
	padding: 70px 50px 70px 70px;
	display: flex;
	justify-content: space-between;
}
#footer .footer_left nav ul {
	display: grid;
	grid-template-rows: 1fr 1fr 1fr;
	grid-auto-flow: column;
	gap: 15px 70px;
}
#footer .footer_left nav ul li a {
	font-weight: 600;
}
#footer .footer_right {
	text-align: right;
}
#footer .footer_btn {
	margin-bottom: 20px;
}
#footer .footer_btn a {
	margin-left: auto;
}
#footer .footer_link {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-bottom: 5px;
}
#footer .footer_sns ul {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 20px;
	width: fit-content;
	margin: 20px 0 20px auto;
}

@media screen and (max-width:896px) {
	#footer .footer_content {
		padding: 70px 30px;
		flex-direction: column;
		gap: 50px;
	}
	#footer .footer_left nav ul {
		width: fit-content;
		margin: 0 auto;
	}
	#footer .footer_right {
		text-align: center;
	}
	#footer .footer_btn {
		margin: 0 auto 20px;
		width: fit-content;
	}
	#footer .footer_sns ul {
		margin: 20px auto;
	}
}
@media screen and (max-width:430px) {
	#footer .footer_left nav ul {
		gap: 15px 40px;
	}
}


/*------------------------------------------------------------
	下層ー共通
------------------------------------------------------------*/
#sec_top .sec_top-content {
	margin-bottom: 25px;
}
#sec_top .sec_top-ttl {
	text-align: center;
	margin: 25px 0;
}
#sec_top .sec_top-ttl::after {
	content: "";
	background: linear-gradient(to right, #FC1A1A 33.3%, #FCE21A 33.3%, #FCE21A 66.6%, #00A0E9 66.6%);
	width: 54px;
	height: 14px;
	display: block;
	margin: 0 auto;
}
#sec_top .sec_top-ttl h2 {
	font-size: clamp(40px, 10vw, 60px);
	font-weight: 500;
}
#sec_top .sec_top-pankuzu ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	font-size: 12px;
}
#sec_top .sec_top-pankuzu ul li sup {
	font-size: 7px;
}



/*------------------------------------------------------------
	下層ー製品一覧
------------------------------------------------------------*/
#product .product_archive {
	margin-bottom: 200px;
}
#product .product_archive ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
}
#product .product_archive ul li img {
	border-radius: 26px;
}
#product .product_archive ul li h3 {
	font-size: 30px;
	text-align: center;
	margin: 20px 0 10px;
	line-height: 0.8;
}
#product .product_archive ul li h3 span {
	font-size: 14px;
	font-weight: normal;
}
#product .product_archive ul li h4 {
	font-size: 20px;
	text-align: center;
	margin: 10px 0 15px;
}
#product .product_archive ul li a button.btn {
	margin: 15px auto 0;
	background-color: #000;
	color: #fff;
	border-radius: 50vh;
	border: 0;
	padding: 13px 20px;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	align-items: center;
	width: fit-content;
	line-height: 1.0;
	font-weight: 600;
	margin-top: 20px;
}
#product .product_archive ul li a button.btn span {
	background-color: #fff;
	border-radius: 50%;
	width: 17px;
	height: 17px;
	display: block;
	position: relative;
}
#product .product_archive ul li a button.btn span::before {
	content: "";
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	width: 7px;
	height: 7px;
	position: absolute;
	top: 50%;
	left: 45%;
	transform: translate(-50%, -50%) rotate(45deg);
}

@media screen and (max-width:896px) {
	#product .product_archive ul {
		grid-template-columns: 1fr;
		gap: 50px;
	}
}


/*------------------------------------------------------------
	下層ー製品詳細
------------------------------------------------------------*/
#product .product_single {
	margin-bottom: 75px;
}
/* 製品情報 */
#product .product_single .product_info {
	display: grid;
	grid-template-columns: 50% 1fr;
	gap: 60px;
	margin-bottom: 100px;
}
#product .product_single .product_info .left {
	overflow: hidden;
}
#product .product_single .product_info .product_mainslider {
	position: relative;
}
#product .product_single .product_info .product_mainslider .swiper-slide {
	overflow: hidden;
	border-radius: 26px;
}
#product .product_single .product_info .left_slider {
	position: relative;
}
#product .product_single .product_info .product_subslider {
	width: 90%;
	overflow: hidden;
	margin: 20px auto 0;
}
#product .product_single .product_info .product_subslider .swiper-slide {
	overflow: hidden;
	border-radius: 12px;
}
#product .product_single .product_info .swiper-button-prev, #product .product_single .product_info .swiper-button-next {
	width: 13px;
	height: 23px;
	top: 50%;
	transform: translate(0, -50%);
	margin-top: 0;
}
#product .product_single .product_info .swiper-button-prev::after {
	content: "";
	background: url(../img/slider_icon_02.svg) no-repeat center;
	width: 100%;
	height: 100%;
}
#product .product_single .product_info .swiper-button-next::after {
	content: "";
	background: url(../img/slider_icon_01.svg) no-repeat center;
	width: 100%;
	height: 100%;
}
#product .product_single .product_info .left_slider .swiper-button-prev {
	left: 0;
}
#product .product_single .product_info .left_slider .swiper-button-next {
	right: 0;
}
#product .product_single .product_info .right_name {
	margin-bottom: 25px;
}
#product .product_single .product_info .right_name h3 {
	font-size: clamp(35px, 7vw, 44px);
	line-height: 1.3;
}
#product .product_single .product_info .right_name p {
	font-size: 14px;
}
#product .product_single .product_info .right_price {
	display: flex;
	align-items: baseline;
	gap: 10px;
	font-weight: 600;
	margin-bottom: 30px;
}
#product .product_single .product_info .right_price p {
	font-size: clamp(16px, 4vw, 18px);
}
#product .product_single .product_info .right_price h3 {
	font-size: clamp(18px, 4vw, 20px);
}
#product .product_single .product_info .right_price h3 span {
	font-size: clamp(22px, 4vw, 25px);
}
#product .product_single .product_info .right_ttl {
	margin-bottom: 20px;
	font-size: clamp(20px, 4vw, 26px);
}
#product .product_single .product_info .right_number {
	margin-bottom: 25px;
	font-size: 14px;
}
#product .product_single .product_info .right_txt {
	margin-bottom: 25px;
}

@media screen and (max-width:896px) {
	#product .product_single .product_info {
		grid-template-columns: 1fr;
		gap: 60px;
	}
}

/* 共通 */
#product .product_single .product_btn {
	max-width: 350px;
	display: flex;
	flex-direction: column;
}
#product .product_single .product_btn.btn_center {
	margin: 0 auto;
}
#product .product_single .product_btn a {
	border-radius: 50vh;
	padding: 24px 26px;
	color: #fff;
	line-height: 1.0;
	font-size: clamp(16px, 4vw, 19px);
	font-weight: 600;
	margin-bottom: 12px;
	text-align: center;
	position: relative;
}
#product .product_single .product_btn a::before {
	content: "";
	width: 21px;
	height: 20px;
	background: url(../img/cart_icon_01.svg) no-repeat center;
	position: absolute;
	background-size: contain;
	left: 30px;
	top: 50%;
	transform: translate(0, -50%);
}
#product .product_single .product_btn a:first-child {
	background-color: #F79910;
}
#product .product_single .product_btn a:last-child {
	background-color: #DD403E;
}

#product .product_single .product_ttl {
	display: grid;
	grid-template-columns: auto 1fr;
	width: fit-content;
	gap: 14px;
	align-items: center;
	margin: 0 auto 40px;
	font-size: clamp(24px, 4vw, 30px);
}
#product .product_single .product_ttl::before {
	content: "";
	background: linear-gradient(to bottom, #FC1A1A 33.3%, #FCE21A 33.3%, #FCE21A 66.6%, #00A0E9 66.6%);
	width: 11px;
	height: 31px;
}

@media screen and (max-width:896px) {
	#product .product_single .product_btn {
		margin: 0 auto;
	}
}
@media screen and (max-width:430px) {
	#product .product_single .product_btn {
		max-width: 100%;
	}
}

/* こんな方へ */
#product .product_single .product_recommend {
	margin-bottom: 100px;
	padding: 60px 40px 85px;
	background-image: linear-gradient(to right, #D6D6D6 1px, transparent 1px), linear-gradient(to bottom, #D6D6D6 1px, transparent 1px), linear-gradient(to left, #D6D6D6 1px, transparent 1px), linear-gradient(to top, #D6D6D6 1px, transparent 1px);
  background-size: 2px 9px, 9px 2px, 2px 9px, 9px 2px;
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
  background-position: left top, right top, right bottom, left bottom;
}
#product .product_single .product_recommend ul {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}
#product .product_single .product_recommend ul li {
	padding: 0 40px;
	border-right: 1px dashed #707070;
}
#product .product_single .product_recommend ul li:last-child {
	border-right: 0;
}
#product .product_single .product_recommend ul li h4 {
	text-align: center;
	font-size: 20px;
	margin: 10px 0;
}

@media screen and (max-width:896px) {
	#product .product_single .product_recommend ul {
		grid-template-columns: 1fr;
	}
	#product .product_single .product_recommend ul li {
		padding: 50px 0;
		border-right: 0;
		border-bottom: 1px dashed #707070;
	}
	#product .product_single .product_recommend ul li:first-child {
		padding-top: 0;
	}
	#product .product_single .product_recommend ul li:last-child {
		border-bottom: 0;
		padding-bottom: 0;
	}
	#product .product_single .product_recommend ul li img {
		margin: 0 auto;
		display: block;
	}
}

/* 特徴 */
#product .product_single .product_feature {
	margin-bottom: 130px;
}
#product .product_single .product_feature ul li {
	display: flex;
	flex-direction: row;
	gap: 70px;
	margin-bottom: 75px;
}
#product .product_single .product_feature ul li:last-child {
	margin-bottom: 0;
}
#product .product_single .product_feature ul li:nth-child(even) {
	flex-direction: row-reverse;
}
#product .product_single .product_feature ul li .img {
	width: 50%;
}
#product .product_single .product_feature ul li .txt {
	width: calc(100% - 50% - 70px);
}
#product .product_single .product_feature ul li .txt h4 {
	font-size: clamp(20px, 4vw, 24px);
}
#product .product_single .product_feature ul li .txt h4 small {
	font-size: clamp(14px, 4vw, 16px);
}
#product .product_single .product_feature ul li .txt p {
	margin-top: 30px;
}

@media screen and (max-width:896px) {
	#product .product_single .product_feature ul li {
		flex-direction: column-reverse;
		gap: 30px;
	}
	#product .product_single .product_feature ul li:nth-child(even) {
		flex-direction: column-reverse;
	}
	#product .product_single .product_feature ul li .img {
		width: 100%;
	}
	#product .product_single .product_feature ul li .txt {
		width: 100%;
	}
}

/* 製品概要 */
#product .product_single .product_overview {
	margin-bottom: 45px;
}
#product .product_single .product_overview table {
	width: 100%;
	border-spacing: 0;
}
#product .product_single .product_overview table th {
	border-top: 1px solid #FC1A19;
	padding: 17px 35px;
	font-weight: normal;
	width: 170px;
	vertical-align: top;
}
#product .product_single .product_overview table td {
	border-top: 1px solid #00A0E9;
	padding: 17px 25px;
}
#product .product_single .product_overview table td p {
	text-indent: -1.5rem;
	padding-left: 1.5rem;
}
#product .product_single .product_overview table tr:last-child th {
	border-bottom: 1px solid #FC1A19;
}
#product .product_single .product_overview table tr:last-child td {
	border-bottom: 1px solid #00A0E9;
}

@media screen and (max-width:896px) {
	#product .product_single .product_overview table th {
		padding: 17px 10px;
		width: 100px;
	}
	#product .product_single .product_overview table td {
		padding: 17px 10px;
	}
}

/*------------------------------------------------------------
	下層ーBtoB
------------------------------------------------------------*/
#btob .btob_content {
	margin-bottom: 110px;
}
#btob .btob_inner {
	text-align: center;
	margin-bottom: 160px;
}
#btob .btob_inner h3 {
	font-size: clamp(22px, 4vw, 26px);
	margin-bottom: 35px;
}
#btob .btob_inner > p {
	margin-bottom: 100px;
}
#btob .btob_link {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
#btob .btob_link .btob_link-item > p {
	margin-bottom: 25px;
}
#btob .btob_link .btob_link-item > p span {
	background: linear-gradient(to top, #FFD800 30%, transparent 30%);
}
#btob .btob_link .btob_link-item > a {
	margin: 0 auto;
	font-size: clamp(16px, 4vw, 19px);
	padding: 25px;
	max-width: 300px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 70px;
}
#btob .btob_link-item:first-child a {
	background-color: #00A0E9;
}
#btob .btob_link-item:last-child a {
	background-color: #E26E0B;
}
#btob .btob_link .btob_link-item > a span {
	width: 20px;
	height: 20px;
}
#btob .btob_link .btob_link-item > a span::before {
	width: 8px;
	height: 8px;
}
#btob .btob_link-item:first-child a span::before {
	border-color: #00A0E9;
}
#btob .btob_link-item:last-child a span::before {
	border-color: #E26E0B;
}
#btob .company_overview h3 {
	display: grid;
	grid-template-columns: auto 1fr;
	width: fit-content;
	gap: 14px;
	align-items: center;
	margin: 0 auto 40px;
	font-size: clamp(24px, 4vw, 30px);
}
#btob .company_overview h3::before {
	content: "";
	background: linear-gradient(to bottom, #FC1A1A 33.3%, #FCE21A 33.3%, #FCE21A 66.6%, #00A0E9 66.6%);
	width: 11px;
	height: 31px;
}
#btob .company_overview table {
	width: 100%;
	border-spacing: 0;
}
#btob .company_overview table th {
	border-top: 1px solid #FC1A19;
	padding: 17px 35px;
	font-weight: normal;
	width: 170px;
	vertical-align: top;
}
#btob .company_overview table td {
	border-top: 1px solid #00A0E9;
	padding: 17px 25px;
}
#btob .company_overview table tr:last-child th {
	border-bottom: 1px solid #FC1A19;
}
#btob .company_overview table tr:last-child td {
	border-bottom: 1px solid #00A0E9;
}

@media screen and (max-width:896px) {
	#btob .btob_inner {
		text-align: center;
	}
	#btob .btob_inner a {
		padding: 25px;
		max-width: 280px;
		width: 100%;
	}
	#btob .company_overview table th {
		padding: 17px 10px;
		width: 100px;
	}
	#btob .company_overview table td {
		padding: 17px 10px;
	}
}
@media screen and (max-width:768px) {
	#btob .btob_link {
		grid-template-columns: 1fr;
		gap: 50px;
	}
}
@media screen and (max-width:430px) {
	#btob .btob_inner > p {
		text-align: left;
	}
}


/*------------------------------------------------------------
	下層ーアバウト
------------------------------------------------------------*/
#about {
	overflow: hidden;
}
#about #sec_top {
	overflow: hidden;
}
#about .sec_top-img {
	margin: 0 calc(50% - 50vw) 60px;
}
#about .about_sec01 > p {
	font-size: clamp(12px, 3vw, 14px);
	text-align: center;
}
#about .about_sec01 .about_sec01-txt {
	text-align: center;
	margin-bottom: 30px;
}
#about .about_sec01 .about_sec01-txt h3 {
	font-size: clamp(24px, 6vw, 32px);
	margin-bottom: 20px;
}
#about .about_sec01 .about_sec01-txt p {
	font-size: clamp(18px, 4vw, 22px);
	font-weight: 600;
}
#about .about_sec01 .about_sec01-txt p span {
	background: linear-gradient(to top, #FFD800 30%, transparent 30%);
}
#about .about_sec01 .about_sec01-img {
	position: relative;
}
#about .about_sec01 .about_sec01-img .item {
	position: absolute;
}
#about .about_sec01 .about_sec01-img .item a {
	color: #fff;
}
#about .about_sec01 .about_sec01-img .item h4 {
	font-size: 20px;
	text-indent: -2rem;
	padding-left: 2rem;
}
#about .about_sec01 .about_sec01-img .item h4 span {
	font-size: 27px;
	margin-right: 5px;
}
#about .about_sec01 .about_sec01-img .item p {
	font-size: 12px;
}
#about .about_sec01 .about_sec01-img .item01 {
	top: 14%;
	left: 4%;
}
#about .about_sec01 .about_sec01-img .item02 {
	top: 24%;
	right: 4%;
}
#about .about_sec01 .about_sec01-img .item03 {
	top: 47%;
	left: 2.5%;
}
#about .about_sec01 .about_sec01-img .item04 {
	top: 66.5%;
	right: 2.5%;
}
#about .about_sec02 {
	display: grid;
	grid-template-columns: 50% 1fr;
	align-items: center;
	gap: 87.5px;
	margin-bottom: 200px;
}
#about .about_sec02 .img {
	margin-left: calc(100% - 50vw);
}
#about .about_sec02 .txt h3 {
	font-size: clamp(24px, 4vw, 28px);
	margin-bottom: 37px;
}
#about .about_sec02 .txt h3 span[data-ruby] {
	position: relative;
}
#about .about_sec02 .txt h3 span[data-ruby]::before {
	content: attr(data-ruby);
	position: absolute;
	bottom: -1.3em;
	width: 100%;
	text-align: center;
	margin: auto;
	font-size: clamp(12px, 3vw, 14px);
	font-weight: normal;
}
#about .about_sec03 {
	margin: 130px 0;
}
#about .about_sec03 ul li {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 95px;
	margin-bottom: 55px;
}
#about .about_sec03 ul li .txt h3 {
	font-size: clamp(22px, 4vw, 28px);
	margin-bottom: 30px;
	text-indent: -2.5rem;
	padding-left: 2.5rem;
}
#about .about_sec03 ul li .img {
	margin-right: calc(100% - 50vw);
}
#about .about_sec03 ul li .img img {
	max-width: 475px;
	width: 100%;
}
#about .about_sec04 {
	margin-bottom: 150px;
	display: grid;
	grid-template-columns: 50% 1fr;
	align-items: center;
	gap: 90px;
}
#about .about_sec04 .img {
	margin-left: calc(100% - 50vw);
	text-align: right;
}
#about .about_sec04 .img img {
	width: 90%;
}
#about .about_sec04 .txt h3 {
	font-size: clamp(24px, 4vw, 28px);
	margin-bottom: 40px;
}
#about .about_sec05 {
	position: relative;
	padding: 100px 0;
}
#about .about_sec05::before {
	content: "";
	background-color: #F4F4F4;
	width: 100vw;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}
#about .about_sec05 > h3 {
	font-size: clamp(50px, 14vw, 96px);
	position: absolute;
	left: -5%;
	top: 0;
	transform: translate(0, -50%);
}
#about .about_sec05 > p {
	margin-bottom: 30px;
}
#about .about_sec05 ul li {
	display: grid;
	grid-template-columns: 1fr 50%;
	gap: 85px;
	margin-bottom: 30px;
}
#about .about_sec05 ul li:last-child {
	margin-bottom: 0;
}
#about .about_sec05 ul li .txt h3 {
	font-size: 16px;
	margin-bottom: 20px;
}
#about .about_sec05 ul li .txt h3 span {
	font-size: 22px;
	margin-bottom: 20px;
}
#about .about_sec06 {
	margin: 90px calc(50% - 50vw) 70px;
}
#about .about_sec06 .about_slider .swiper-wrapper {
  transition-timing-function: linear;
}
#about .about_sec07 {
	padding: 120px 0;
	text-align: center;
}
#about .about_sec07 h3 {
	font-size: 22px;
}
#about .about_sec07 h3 span {
	background: linear-gradient(to top, #FFD800 30%, transparent 30%);
}
#about .about_sec07 a {
	margin: 30px auto 0;
}

@media screen and (max-width:1075px) {
	#about .about_sec05 > h3 {
		left: 0;
	}
}
@media screen and (max-width:896px) {
	#about .about_sec01 .about_sec01-img .item h4 span {
		font-size: clamp(27px, 8vw, 65px);
		color: #fff;
	}
	#about .about_sec01 .about_sec01-img .item01 {
    top: 12%;
    left: 12.5%;
	}
	#about .about_sec01 .about_sec01-img .item02 {
    top: 20%;
    right: 5.5%;
	}
	#about .about_sec01 .about_sec01-img .item03 {
    top: 51.5%;
    left: 5%;
	}
	#about .about_sec01 .about_sec01-img .item04 {
    top: 64.5%;
    right: 3.5%;
	}
	#about .about_sec02 {
		grid-template-columns: 1fr;
		gap: 30px;
		margin-bottom: 120px;
	}
	#about .about_sec02 .img {
		margin-left: calc(50% - 50vw);
	}
	#about .about_sec03 ul li {
		display: flex;
		flex-direction: column-reverse;
		gap: 30px;
		margin-bottom: 55px;
		align-items: flex-start;
	}
	#about .about_sec03 ul li .img {
		margin-right: 0;
	}
	#about .about_sec03 ul li .img img {
		max-width: 100%;
	}
	#about .about_sec04 {
    grid-template-columns: 1fr;
    gap: 30px;
	}
	#about .about_sec04 .img {
    margin-left: 0;
    text-align: center;
	}
	#about .about_sec04 .img img {
    width: 100%;
	}
	#about .about_sec05 {
		padding: 70px 0 50px;
	}
	#about .about_sec05 > h3 {
		left: 0;
	}
	#about .about_sec05 ul li {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

/*------------------------------------------------------------
	下層ーお問い合わせ
------------------------------------------------------------*/
#contact .contact_content {
	margin-bottom: 100px;
}
#contact .contact_content > p {
	text-align: center;
	margin-bottom: 40px;
}
#contact .contact_line {
	background-color: #08C656;
	padding: 50px 25px;
	text-align: center;
	color: #fff;
	margin-bottom: 65px;
}
#contact .contact_line h3 {
	font-size: 22px;
	line-height: 1.0;
	margin: 0 auto 25px;
	padding-bottom: 12px;
	width: fit-content;
	border-bottom: 1px solid #fff;
}
#contact .contact_line h2 {
	font-size: clamp(26px, 8vw, 44px);
	margin-bottom: 10px;
}
#contact .contact_line p {
	font-size: clamp(15px, 4vw, 18px);
	font-weight: bold;
	margin-bottom: 30px;
}
#contact .contact_line a {
	display: flex;
	justify-content: center;
	gap: 12px;
	align-items: center;
	background-color: #fff;
	border-radius: 50vh;
	padding: 12px 50px;
	color: #09C656;
	width: fit-content;
	margin: 0 auto;
	font-weight: bold;
}
#contact .contact_item {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-bottom: 30px;
}
#contact .contact_item select, #contact .contact_item input, #contact .contact_item textarea {
	width: 100%;
	padding: 20px 25px;
	border-radius: 0;
	border: 1px solid #707070;
	background-color: #fff;
	font-size: 16px;
}
#contact .contact_select {
	position: relative;
}
#contact .contact_select::after {
	content: "";
	border-bottom: 3px solid #000;
	border-right: 3px solid #000;
	width: 12px;
	height: 12px;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translate(0, -50%) rotate(45deg);
}
#contact .contact_select select {
	appearance: none;
}
#contact .contact_txt {
	max-width: 650px;
	width: 100%;
}
#contact .contact_btn {
	text-align: center;
	position: relative;
	width: 100%;
	max-width: 250px;
	margin: 0 auto 50px;
}
#contact .contact_btn span {
	background: #fff;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	position: absolute;
	left: 31%;
	top: 50%;
	transform: translate(-50%, -50%);
}
#contact .contact_btn span::before {
	content: "";
	width: 7px;
	height: 7px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	position: absolute;
	left: 45%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}
#contact .contact_btn input {
	background-color: #000;
	color: #fff;
	border-radius: 50vh;
	padding: 15px 10px 15px 40px;
	font-size: 18px;
	font-weight: 600;
	width: 100%;
	border: 0;
}
#contact .contact_btn input:hover {
	opacity: 0.7;
}
#contact .contact_recaptcha {
	margin: 30px 0 50px;
	text-align: center;
}
#contact .contact_recaptcha p {
	font-size: 14px;
}
#contact .contact_recaptcha p a {
	text-decoration: underline;
}
.grecaptcha-badge {
	visibility: hidden;
}

@media screen and (max-width:896px) {
	#contact .contact_line {
		padding: 50px 15px;
	}
	#contact .contact_grid {
		grid-template-columns: 1fr;
		gap: 0;
	}
	#contact .contact_recaptcha {
		text-align: left;
	}
}
@media screen and (max-width:430px) {
	#contact .contact_content > p {
		text-align: left;
	}
	#contact .contact_line a {
		width: 100%;
		padding: 12px;
	}
}

/*------------------------------------------------------------
	下層ーサンクス
------------------------------------------------------------*/
#contact .thanks_txt h3 {
	font-size: clamp(20px, 4vw, 24px);
	margin-bottom: 30px;
}
#contact .thanks_txt p {
	padding: 50px;
	background-image: linear-gradient(to right, #D6D6D6 1px, transparent 1px), linear-gradient(to bottom, #D6D6D6 1px, transparent 1px), linear-gradient(to left, #D6D6D6 1px, transparent 1px), linear-gradient(to top, #D6D6D6 1px, transparent 1px);
  background-size: 2px 9px, 9px 2px, 2px 9px, 9px 2px;
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
  background-position: left top, right top, right bottom, left bottom;
}
@media screen and (max-width:896px) {
	#contact .thanks_txt p {
		padding: 30px;
	}
}

/*------------------------------------------------------------
	下層ーサンクス
------------------------------------------------------------*/
#privacy .privacy_content {
	margin-bottom: 150px;
}
#privacy .privacy_content h3 {
	font-size: clamp(18px, 4vw, 20px);
	margin-bottom: 10px;
	font-weight: 600;
}
#privacy .privacy_content p {
	margin-bottom: 30px;
}
#privacy .privacy_content p:last-child {
	margin-bottom: 0;
}


/*------------------------------------------------------------
	下層ーニュース一覧
------------------------------------------------------------*/
#news .news_content {
	margin-bottom: 100px;
}
#news .news_archive ul li {
	border-bottom: 1px dashed #C3C3C3;
}
#news .news_archive ul li:last-child {
	border-bottom: 0;
}
#news .news_archive ul li a {
	display: flex;
	gap: 15px;
	align-items: center;
	padding: 22px 0;
}
#news .news_archive ul li a .inner {
	display: flex;
	gap: 15px;
	align-items: center;
}
#news .news_archive ul li span {
	background-color: #000;
	border-radius: 50%;
	width: 21px;
	height: 21px;
	display: block;
	position: relative;
}
#news .news_archive ul li span::before {
	content: "";
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	width: 7px;
	height: 7px;
	position: absolute;
	top: 50%;
	left: 45%;
	transform: translate(-50%, -50%) rotate(45deg);
}
#news .news_archive ul li p.cate {
	border-radius: 50vh;
	color: #fff;
	font-weight: 600;
	font-size: 12px;
	padding: 6px 12px 4px;
	line-height: 1.0;
}
#news .news_archive ul li p.cate.news {
	background-color: #00A0E9;
}
#news .news_archive ul li p.cate.media {
	background-color: #FC1A19;
}
#news .news_archive ul li p.ttl {
	font-weight: 500;
}

@media screen and (max-width:896px) {
	#news .news_archive ul li a {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
}

/*------------------------------------------------------------
	下層ーニュース詳細
------------------------------------------------------------*/
#news .news_single .news_single-ttl {
	margin: 50px 0 30px;
}
#news .news_single .news_single-ttl .inner {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 10px;
}
#news .news_single .news_single-ttl .inner p.cate {
	border-radius: 50vh;
	color: #fff;
	font-weight: 600;
	font-size: 12px;
	padding: 6px 12px 4px;
	line-height: 1.0;
}
#news .news_single .news_single-ttl .inner p.cate.news {
	background-color: #00A0E9;
}
#news .news_single .news_single-ttl .inner p.cate.media {
	background-color: #FC1A19;
}
#news .news_single .news_single-ttl h3 {
	font-size: clamp(24px, 4vw, 28px);
	font-weight: 600;
}
#news .news_single .news_single-main h1, #news .news_single .news_single-main h2, #news .news_single .news_single-main h3, #news .news_single .news_single-main h4, #news .news_single .news_single-main h5, #news .news_single .news_single-main h6, #news .news_single .news_single-main p, #news .news_single .news_single-main img, #news .news_single .news_single-main ul, #news .news_single .news_single-main ol {
	margin-bottom: 30px;
}
#news .news_single .news_single-main h1 {
	font-size: 2.4rem;
}
#news .news_single .news_single-main h2 {
	font-size: 2rem;
}
#news .news_single .news_single-main h3 {
	font-size: 1.8rem;
}
#news .news_single .news_single-main h4 {
	font-size: 1.6rem;
}
#news .news_single .news_single-main h5 {
	font-size: 1.4rem;
}
#news .news_single .news_single-main h6 {
	font-size: 1.2rem;
}
#news .news_single .news_single-main ul {
	list-style: disc;
	padding-left: 2rem;
}
#news .news_single .news_single-main ol {
	list-style: decimal;
	padding-left: 2rem;
}
