@charset "UTF-8";
/*-----全体------*/
.sp_only {
	display: none;
}
.pc_only {
	display: block;
}
html{
	font-size: 62.5%;
}
body{
	position: relative;
}
h1,h2,h3,p,a,li,button,small,summary{
	font-family: 'Noto Sans JP', sans-serif;
	color: #3E384C;
}
h1{
	font-size: 3.2rem;
	font-weight: 700;
}
h2{
	font-size: 1.8rem;
}
p,a,li{
	font-weight: 500;
    font-size: 1.4rem;
}
a{
	display: block;
}
#pagetop{
	display: block;
	position: fixed;
	right: 15px;
	bottom: 50px;
	z-index: 10;
	cursor: pointer;
}
#pagetop img{
	width: 40px;
}

/*-----header_トグル------*/
.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.menu-trigger {
	display: flex;
	position: relative;
	z-index: 2;
	margin: 0px;
	width: 50px;
	height: 30px;
	border-radius: 50px;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	pointer-events: auto;
}
.menu-trigger span {
	left: 10px;
	width: 30px;
	height: 2px;
	background-color: #333333;
	border-radius: 4px;
}
.menu-trigger.active span:nth-of-type(1) {
	transform: translateY(11px) rotate(-45deg);
	background-color: #333333;
}
.menu-trigger.active span:nth-of-type(2) {
	transform: translateY(-4px) rotate(45deg);
	background-color: #333333;
}	
.menu-trigger.active span:nth-of-type(3) {
	display: none;
}
#header {
	position: fixed;
	top: 0;            /* 0 で最上部 */
	left: 0;
	width: 100%;       /* 画面幅いっぱい */
	z-index: 1000;
}
.nav_menu{
	position: absolute;
	display: flex;
	padding: 10px 40px;
	box-sizing: border-box;
	border-bottom: solid 1px #E2E8F0;
	justify-content: space-between;
	width: 100%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	background-color: #ffff;
}
header nav,header nav ul{
	display: flex;
	align-items: center;
}
header li{
	margin-right: 1.6rem;
}
header li:last-of-type{
	margin-right: 0px;
	margin-left: 10px;
}
.logo img {
	height: 3rem;
}
.nav_menu_logo ,.app-wrapper{
	display: flex;
}
.nav_menu_logo{
	align-items: end;
}
.nav_menu_logo a{
	height: 28px;
}
.nav_menu_logo h1{
	font-size: 1.2rem;
	padding-left: 10px;
}
.about_clipping,.clipping_search-box{
	display: flex;
    align-items: center;
}
.search-box input{
	height: 40px;
}
.about_clipping{
	margin-right: 10px;
    height: 40px;
    padding: 10px;
    box-sizing: border-box;
    background-color: #E2E8F0;
    border-radius: 8px;
}

/* -----------------------------------------
   Sidebar
----------------------------------------- */
aside.sidebar {
	width: 22rem;
	background: #ffffff;
	border-right: 1px solid #e5e7eb;
	display: flex;
	flex-direction: column;
	padding: 1.6rem;
	box-sizing: border-box;
}
/* Logo */
.sidebar .logo {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  border-bottom: 1px solid #e5e7eb;
}

/* Device toggle (PC / SP) */
.device-toggle {
	display: flex;
	margin: 1rem auto;
	border: 1px solid #d1d5db;
	overflow: hidden;
	width: 100%;
	padding: 0.5rem;
	box-sizing: border-box;
	border-radius: 50px;
	text-align: center;
}
.device-toggle .button {
	background: transparent;
	border: none;
	padding: 0.8rem 1.25rem;
	font-size: 1.4rem;
	cursor: pointer;
	width: 50%;
	border-radius: 50px;
}
/* Aボタン active */
#a_btn.active{
	background: none;
}
#b_btn.active{
	background: #E2E8F0;
}
#a_btn{
	background: #E2E8F0;
}
#b_btn{
	background: none;
}
/* SPボタンの状態もPCと揃える */
#a_btn_sp.active { background: none; }
#b_btn_sp.active { background: #E2E8F0; }
#a_btn_sp        { background: #E2E8F0; }
#b_btn_sp        { background: none; }

/* --- Accordion Navigation --- */
.sidebar-nav {
  flex: 1;
  overflow-y: auto;
}
/* We use <details> & <summary> for accordion groups. */
.sidebar-nav details {
	border-bottom: 1px solid transparent; /* placeholder for hover line */
	padding: 1rem;
	border-radius: 4px;
}
.sidebar-nav details:hover {
  background: #E2E8F0;
}

.sidebar-nav summary {
	list-style: none; /* removes default arrow */
	font-size: 1.6rem;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.5rem 0;
}
.sidebar-nav summary::-webkit-details-marker { display: none; }
/* custom chevron icon */
.sidebar-nav summary::after {
  content: "\f107"; /* FontAwesome chevron-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1rem;
  transition: transform .2s ease;
}
summary div{
	display: flex;
    align-items: center;
}
summary div img{
	margin-right: 0.5rem;
}
/* rotate when open */
.sidebar-nav details[open] > summary::after {
  transform: rotate(-180deg);
}
/* Submenu list */
.submenu_box {
	margin-bottom: 4px;
}
.submenu_box:last-child{
	margin-bottom: 0px;
}
.sidebar-nav .submenu {
  display: none; /* hidden by default */
}
.sidebar-nav details[open] .submenu {
  display: block;
}

.sidebar-nav .submenu label{
	padding: 1.4rem 0px  1.4rem 0.5rem;
	font-size: 1.4rem;
	color: #374151;
	cursor: pointer;
	border-left: 2px solid transparent;
	border-radius: 4px;
	display: block;
}
.sidebar-nav .submenu label:hover {
  color: #0f172a;
  background: #f3f4f6;
}
.sidebar-nav .submenu input:checked ~ label {
	background: #f3f4f6;
}
.submenu_box input {
    display: none;
}
/* 絞り込みの表示/非表示 */
.category_list.is_hide { display: none !important; }
.category_list.is_show { display: block; } /* grid内でもOK */


/* -----------------------------------------
   Main Content Area
----------------------------------------- */
main {
	background-color: #FAFAFA;
}
main.content {
	flex: 1;
    display: flex;
    flex-direction: column;
    width: calc(100% - 22rem);
}

/* ➂切り替え画面 */

/* ➃A画面 */
.pc_screen{
    position: relative;           /* 子要素 */
    opacity: 1;                   /* 要素の透明度 */
    pointer-events: auto;         /* マウスイベントをオン */
    width: 100%;                  /* 横幅 100% */
    height: 100%;                 /* 縦幅 100% */
	display: block;
}
/* ➃A画面 active */
.pc_screen.active{
    display: none;
}
/* ➄B画面 */
.sp_screen{
    display: none;
}
/* ➄B画面 active */
.sp_screen.active{
    position: relative;           /* 子要素 */
    opacity: 1;                   /* 要素の透明度 */
    pointer-events: auto;         /* マウスイベントをオン */
    width: 100%;                  /* 横幅 100% */
    height: 100%;                 /* 縦幅 100% */
	display: block;
}

/* Topbar */
.topbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	border-bottom: 1px solid #e5e7eb;
	background: #ffffff;
}

/* Topbar */
.about_clipping p{
	width: max-content;
}
.search-box { position: relative; max-width: 240px; width: 100%; }
	.search-box input {
	width: 100%;
	padding: .5rem .75rem;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-size: 1.4rem;
}
.search-box i {
	position: absolute;
	right: .75rem;
	top: 50%;
	transform: translateY(-50%);
	color: #9ca3af;
	font-size: 1.6rem;
}

/* Tag pills */
.tag {
	border-radius: 50px;
	border: solid 1px #E5E7EB;
	background-color: #ffff;
	cursor: pointer;
}
.tag_box input {
    display: none;
}
.tag_box label {
	display: block;
    padding: 0.6rem 1rem;
    border-radius: 50px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding: 1rem 2rem 0;
  background: #FAFAFA;
}
.tag input:checked ~ label {
	background: #f3f4f6;
}
/*
.tag_box.is_hide {
	display: none;
}
.tag_box.is_show {
	animation: show 1s ease 0s;
}
*/

/* Card Grid */
.card-grid {
	padding: 2rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px,auto));
	gap: 1.5rem;
}
.clip-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.clip-card figure {
  width: 100%;
  aspect-ratio: 16/9;
  background: #ffffff; /* Placeholder */
  position: relative;
}
.clip-card figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.clip-card figure .quick-link {
  position: absolute;
  right: .75rem;
  bottom: .75rem;
  background: #111827;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: .875rem;
}
.clip-card figure .quick-link:hover{
	background: #4ABDAE;
}
.clip-card .meta {
	padding: .875rem 1rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: .25rem;
	text-align: justify;
}
.clip-card .title { font-weight: 500; font-size: 1.4rem; margin-bottom: 0.5rem; }
.clip-card .date  { font-size: 1rem; color: #6b7280; }
.fa-chain:before, .fa-link:before{
	font-size: 1.4rem;
}
.clip-card a{
	height: 100%;
}
.clip-card figure a:hover{
	opacity: 0.5;
}
/* modal */
.modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 10px;
  text-align: center
}
.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}
.modal-wrapper::after {
	display: inline-block;
	height: 100%;
	margin-left: -.05em;
	vertical-align: middle;
	content: ""
}
.modal-wrapper .modal-window {
	box-sizing: border-box;
	display: inline-block;
	z-index: 20;
	position: relative;
	width: 70%;
	max-width: 1000px;
	padding: 30px 30px 15px;
	border-radius: 2px;
	background: #fff;
	box-shadow: 0 0 30px rgba(0, 0, 0, .6);
	vertical-align: middle
}
.modal-content img{
	width: 100%;
}
.modal-content .meta{
	padding: .875rem 0rem 1.25rem;
}
.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
}
.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  color: #95979c !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.modal-wrapper .modal-close:hover {
  color: #2b2e38 !important
}

/* Pagination */
.pagination {
	display: flex;
	justify-content: center;
	gap: .25rem;
	padding: 1rem 2rem 2rem;
}
.pagination button {
	width: 40px;
	height: 40px;
	border: 1px solid #d1d5db;
	background: #ffffff;
	border-radius: 6px;
	font-size: 1.6rem;
	cursor: pointer;
}
.pagination button.active {
	background: #111827;
	color: #ffffff;
}

/* Footer */
footer {
	padding: 1.5rem 2rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
	align-items: baseline;
	background-color: #fff;
}
footer div{
	display: flex;
}
footer div a:first-of-type{
	margin-right: 3rem;
}

small{
	font-size: 1rem;
}


/* -----------------------------------------
   privacy-policy about
----------------------------------------- */
.privacy,.about{
	max-width: 1000px;
	margin: auto;
	padding: 60px;
}
.privacy p,.about p{
	line-height: 1.8;
	text-align: justify;
}
.privacy_title,.about_title{
	padding-bottom: 40px;
	text-align: center;
}
.privacy_title h2,.about_title h2{
	color: #4ABDAE;
	padding-bottom: 20px;
	font-weight: 700;
	text-transform: uppercase;
}
.privacy_text,.about_text{
	padding-bottom: 40px;
}
.privacy_text h2,.about_text h2{
	padding-bottom: 4px;
	font-weight: 700;
}
.privacy_text a{
	color: #4ABDAE;
	display: contents;
}
.privacy_day{
	display: flex;
    justify-content: end;
}




/*-----pc　1450px------*/
@media screen and (max-width: 1450px){
	
}

/*-----pc　1280px------*/
@media screen and (max-width: 1280px){

}

/*-----ipad air　横　1181px------*/
@media screen and (max-width: 1181px){
	
}

/*-----ipad mini　横　1025px------*/
@media screen and (max-width: 1025px){
}

/*-----ipad　縦------*/
@media screen and (max-width: 821px) {
}


/*-----ipad mini 縦------*/
@media screen and (max-width: 770px) {
}

/*-----iPhoneX_12pro XR------*/
@media screen and (max-width: 599px) {
	.sp_only {
		display: block;
	}
	.pc_only {
		display: none;
	}
	header nav{
		display: none;
		width: 100%;
		position: absolute;
		background-color: #fffffff0;
		padding: 40px 20px 20px;
		box-sizing: border-box;
		left: 0;
	}
	.nav_menu{
		position: relative;
		padding: 10px;
		align-items: center;
	}
	header nav ul{
		flex-direction: column;
	}
	header li {
		margin-right: 0;
		margin-bottom: 20px;
	}
	.header.change-color{
		height: auto;
	}
	header li:last-of-type{
		margin-left: 0px;
	}
	aside.sidebar,.clipping_search-box{
		display: none;
	}
	.nav_menu_logo{
		background-color: #ffff;
	}
	.nav_menu_logo{
		flex-direction: column;
		align-items: center;
		z-index: 1;
	}
	.nav_menu_logo p {
		padding-left: 0px;
	}
	.nav_menu_logo a ,.logo img{
		height: 3.5rem;
	}
	main.content{
		width: 100%;
	}
	.card-grid {
		padding: 2rem 0rem;
		grid-template-columns: repeat(auto-fit, minmax(160px, auto));
	}
	.clip-card{
		border: none;
		border-radius: unset;
	}
	.modal-wrapper .modal-window{
		width: 95%;
		padding: 30px 15px 15px;
	}
	footer a{
		font-size: 1rem;
	}
	footer div a:first-of-type {
		margin-right: 1rem;
	}
}

/*-----iPhoneSE------*/
@media screen and (max-width: 376px) {
}


