@charset "utf-8";

@media screen and (max-width: 768px) {
  
	body {
    -webkit-text-size-adjust: none;
		padding-top: 70px;
  }
  
  
  /*===== header =====*/
	header {		
		align-items: center;
		z-index: 50000;
		height: 70px;
		padding: 0 25px 0 20px;
		background-color: var(--gray);
		transition: all .3s;
	}	
	header::before,
	header::after {
		content: "";
		display: block;
		position: absolute;
		left: 25px;
		width: calc(100% - 50px);
		background-color: var(--black);
		transition: all .3s;
	}
	header::before {
		height: 2px;
		bottom: 4px;
	}
	header::after {
		height: 1px;
		bottom: 0;
	}
	
	header.hid {
		opacity: 0;
	}
	
	h1 {
		transition: all .3s;
	}
	h1 a {
		display: block;
		width: 274px;
		pointer-events: auto;
	}
	h1 a img {
		width: 100%;
		height: auto;
	}
	
	header.top {
		background-color: transparent;
	}
	header.top h1,
	header.top::before,
	header.top::after {
		opacity: 0;
	}
	header.top h1 a {
		pointer-events: none;
	}
  
  #menu_btn {
    position: relative;
    z-index: 100;
		width: 38px;
		height: 16px;
  }
  .menu-trigger,
  .menu-trigger div {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  .menu-trigger {
    position: absolute;
		right: 0;
		top: 0;
    z-index: 10;
    width: 100%;
    height: 16px;
  }
  .menu-trigger:hover {
    opacity: 1;
  }
  .menu-trigger div {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--black);
    border-radius: 4px;
		transition: all .3s;
  }	
  .menu-trigger div:nth-of-type(1) {
    top: 0;
  }
	.menu-trigger div:nth-of-type(2) {
    top: 7px;
  }
  .menu-trigger div:nth-of-type(3) {    
    bottom: 0;
		width: 25px;
  }
 
	.menu-trigger.active div {
		background-color: #fff;
	}
  .menu-trigger.active div:nth-of-type(1) {
    transform: translateY(7px) rotate(-45deg);
  }
	.menu-trigger.active div:nth-of-type(2) {
		opacity: 0;
  }
  .menu-trigger.active div:nth-of-type(3) {
    transform: translateY(-7px) rotate(45deg);
		width: 100%;
  }
  
  
  /*===== menu =====*/
  #menu {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    color: #fff;
    width: 100%;
    height: 100vh;
    padding: 20px 25px 0;
    overflow-y: scroll;
    background-color: var(--orange);
    transition: all .5s;
    opacity: 0;
    pointer-events: none;
  }
  #menu.open {
    opacity: 1;
    pointer-events: auto;
  }
	
	#menu h2 {
		position: relative;
		font-size: 25px;
		letter-spacing: 0.05em;
		line-height: 1em;
		width: 260px;
		padding: 3px 0 24px;
		margin-bottom: 35px;
	}
	#menu h2::before,
	#menu h2::after {
		content: "";
		display: block;
		position: absolute;
		left: 0;
		width: 100%;
		background-color: #fff;
	}
	#menu h2::before {
		height: 2px;
		bottom: 4px;
	}
	#menu h2::after {
		height: 1px;
		bottom: 0;
	}
	
	#menu .list {
		justify-content: space-between;
		width: 265px;
		margin: 0 auto 10px;
	}
	#menu .list > li {
		font-size: 24px;
		letter-spacing: 0.078em;
		line-height: 1em;
		margin-bottom: 35px
	}
	#menu .list > li:nth-of-type(1),
	#menu .list > li:nth-of-type(2) {
		width: 100%;
	}
	#menu .list li a {
		display: inline-block;
	}
	#menu .list > li:nth-of-type(1) a.all {
		display: block;
		position: absolute;
		right: 0;
		top: 0;
		font-size: 14px;
		letter-spacing: 0.078em;
		line-height: 1em;
		width: 60px;
		height: 20px;
		padding: 2px 0 0 26px;
		border: 1px solid #fff;
		border-radius: 10px;
	}
	#menu .list > li:nth-of-type(1) a.all img {
		position: absolute;
		left: 10px;
		top: 4px;
		width: 9px;
		height: 9px;
		filter: saturate(0) brightness(0) invert(100%);
	}
	
	#menu .list > li ol {
		margin-top: 10px;
	}
	#menu .list > li ol > li {
		font-size: 14px;
		letter-spacing: 0.078em;
		line-height: 1.375em;
		text-align: center;
		width: 76px;
		margin-right: 18px;
		margin-top: 15px;
	}
	#menu .list > li ol > li:nth-of-type(3n) {
		margin-right: 0;
	}
	#menu .list > li ol > li a img {
		display: block;
		width: 57px;
		height: 57px;
		margin: 0 auto 8px;
	}
	
	#menu .banner {
		width: 265px;
		margin: auto;
	}
	
	#menu .copy {
		/*position: absolute;
		left: 0;
		bottom: 15px;*/
		font-size: 11px;
		font-weight: 500;
		letter-spacing: 0.18em;
		line-height: 1em;
		text-align: center;
		width: 100%;
		margin-top: 20px;
	}
	
	#menu .back {
		position: absolute;
		left: 0;
		top: 0;
		z-index: -1;
		width: 100%;
		height: 100%;
	}
	
	
  /*===== contact_btn =====*/
	#contact_btn {
		justify-content: space-between;
		align-items: center;
		position: fixed;
		right: 0;
		bottom: 0;
		z-index: 10000;
		color: #fff;
		width: 230px;
		height: 58px;
		padding: 0 20px;
		background-color: var(--black);
		border-radius: 9px 0 0 0;
		transition: all .5s;
	}
	#contact_btn.non {
		right: -230px;
	}
	#contact_btn p {
		font-size: 12px;
		letter-spacing: 0.12em;
		line-height: 1.5em;
	}
	#contact_btn span {
		display: block;
		font-size: 11px;
		letter-spacing: 0.07em;
		line-height: 1em;
		text-align: center;
		width: 78px;
		height: 36px;
		padding-top: 5px;
		border: 2px solid #fff;
		background: url("../img/contact_arrow.png") no-repeat calc(100% - 12px) calc(100% - 6px) / 14px 7px;
		border-radius: 18px;		
	}
	
  /*===== footer =====*/
	footer {
		padding-bottom: 20px;
	}
	
	footer .illust {
		width: 100%;
		height: 290px;
	}
	
	footer .logomark {
		width: 93px;
		height: auto;
		margin: 27px auto 20px;
	}
	
	footer .add,
	footer table,
	footer .banner,
	footer .nav {
		width: 278px;
		margin: auto;
	}
	footer .add p,
	footer td {
		font-size: 13px;
		letter-spacing: 0.11em;
		line-height: 1.84em;
	}
	footer .add {
		margin-bottom: 1em;
	}
	footer tr td:first-of-type {
		width: 6em;
	}
	footer .banner {
		margin-top: 25px;
		margin-bottom: 35px;
	}
	
	footer .nav {
		padding: 25px 0 0;
		margin-bottom: 28px;
		border-top: 1px solid #fff;
	}
	footer .nav ul {
		justify-content: space-between;
		margin-bottom: 20px;
	}
	footer .nav ul li {
		position: relative;
		font-size: 15px;
		letter-spacing: 0.078em;
		line-height: 1em;
	}
	footer .nav ul li::after {
		content: "";
		display: block;
		position: absolute;
		right: -9px;
		top: 0;
		width: 1px;
		height: 15px;
		background-color: #fff;
	}
	footer .nav ul li:last-of-type::after {
		display: none;
	}
	footer .nav .btn {
		justify-content: space-between;
	}
	footer .nav .btn .contact {
		display: block;
		font-size: 11px;
		letter-spacing: 0.1em;
		line-height: 1em;
		text-align: center;
		width: 85px;
		height: 40px;
		padding-top: 8px;
		border: 1px solid #fff;
		border-radius: 20px;
		background: url("../img/contact_arrow.png") no-repeat calc(100% - 18px) calc(100% - 8px) / 14px 7px;
	}
	footer .nav .btn .pt {
		display: inline-block;
		font-size: 15px;
		letter-spacing: 0.07em;
		line-height: 1em;
		text-align: center;
		width: 30px;
		padding-top: 30px;
		margin-top: 5px;
		background: url("../img/totop.png") no-repeat 50% 0 / 29px 24px;
	}
	
	footer .copy {
		font-size: 11px;
		letter-spacing: 0.18em;
		line-height: 1em;
		text-align: center;
	}
	
	
	/*===== top page =====*/
	#top_cont .top_h {
		position: relative;
		width: calc(100% - 50px);
		height: 100px;
		margin: auto;
	}
	#top_cont .top_h::before,
	#top_cont .top_h::after {
		content: "";
		display: block;
		position: absolute;
		left: 0;
		z-index: 1;
		width: 100%;
		background-color: var(--black);
		transition: all .3s;
	}
	#top_cont .top_h::before {
		height: 2px;
		bottom: 4px;
	}
	#top_cont .top_h::after {
		height: 1px;
		bottom: 0;
	}	
	#top_cont .top_h .logo {
		position: absolute;
		left: 10px;
		top: -45px;
		z-index: 10;
		width: 260px;
	}
	#top_cont .top_h .date {
		position: absolute;
		right: 0;
		top: -5px;
		color: var(--orange);
		text-align: center;
	}
	#top_cont .top_h .date::after {
		content: "";
		display: block;
		position: absolute;
		left: 5%;
		top: 36px;
		width: 90%;
		height: 1px;
		background-color: var(--orange);
		transform: rotate(-20deg);
	}
	#top_cont .top_h .date .m,
	#top_cont .top_h .date .d {
		font-size: 30px;
		letter-spacing: 0;
		line-height: 1em;
	}
	#top_cont .top_h .date .m {
		margin-bottom: 8px;
	}
	#top_cont .top_h .date .d {
		margin-bottom: 2px;
	}
	#top_cont .top_h .date .w {
		font-size: 12px;
		letter-spacing: 0.02em;
		line-height: 1em;
	}
	
	
	#pickup_topics {
		padding: 35px 25px;
	}
	#pickup_topics .swiper-slide {
		margin-right: 15px;
	}
	#pickup_topics a .cat {
		font-size: 12px;
		letter-spacing: 0.03em;
		height: 32px;
		padding: 9px 10px 0 13px;
	}
	#pickup_topics a .cat::after {
		right: -16px;
		top: 0;
		width: 24px;
		height: 32px;
	}
	#pickup_topics a .img {
		width: 325px;
		height: 375px;
		margin-bottom: 25px;
	}

	#pickup_topics a .title {
		font-size: 18px;
		letter-spacing: 0.15em;;
		line-height: 1.47em;
	}
	
	.arrow_box {
		right: 35px;
		top: 375px;
		width: 65px;
		height: 24px;
		border-radius: 12px;
	}
	.arrow_box::after {
		top: 5px;
		width: 1px;
		height: 14px;
	}
	.arrow_box .swiper-button-prev,
	.arrow_box .swiper-button-next {
		width: 24px;
		height: 24px;
	}
	.arrow_box .swiper-button-prev {
		left: 3px;
	}
	.arrow_box .swiper-button-next {
		right: 3px;
	}
	.arrow_box .swiper-button-prev::after,
	.arrow_box .swiper-button-next::after {
		width: 24px;
		height: 9px;
		background: url("../img/prev_arrow.png") no-repeat 50% 50% / 16px 9px;
	}
	.arrow_box .swiper-button-next::after {
		background-image: url("../img/next_arrow.png")
	}
	
	
	.view_all {
		border-width: 1px;
	}
	.view_all a {
		height: 58px;
		padding-top: 22px;
	}
	.view_all a img {
		width: 106px;
		height: auto;
	}
	
	#about {
		padding: 90px 150px 60px 40px;
	}
	#about h2 {
		font-size: 28px;
		padding-left: 23px;
		margin-bottom: 30px;
	}
	#about h2::before {
		top: 5px;
		width: 3px;
		height: calc(100% - 10px);
	}
	#about p {
		font-size: 14px;
	}
	#about .illust {
		top: 110px;
		width: 125px;
	}
	
	
	/*===== topics category =====*/
	#topics_list {
		padding-top: 30px;
	}
	
	#topics_list h2 {
		color: var(--orange);
		font-size: 30px;
		letter-spacing: 0.03em;
		line-height: 1em;
		text-align: center;
		margin-bottom: 13px;
	}
	
	#topics_list .cat_list {
		justify-content: space-between;
		width: 100%;
		height: 24px;
		padding-left: 25px;
		margin-bottom: 25px;
	}
	#topics_list .cat_list a.all {
		display: inline-block;
		position: relative;
		font-size: 12px;
		letter-spacing: 0.06em;
		line-height: 1em;
		width: 55px;
		height: 24px;
		padding: 4px 0 0 28px;
		border: 1px solid var(--black);
		border-radius: 12px;
		transition: all .3s;
	}
	#topics_list .cat_list a.all img {
		position: absolute;
		left: 10px;
		top: 5px;
		width: 12px;
		height: 12px;
	}
	#topics_list .cat_list a.all::after {
		content: "";
		display: block;
		position: absolute;
		right: -16px;
		top: -1px;
		width: 1px;
		height: 24px;
		background-color: var(--black);
	}	
	#topics_list .cat_list ul {
		position: relative;
		width: calc(100% - 70px);
		height: 24px;
		padding-right: 25px;
		overflow-x: scroll;
		overflow-y: hidden;
		word-break: keep-all;
		white-space: nowrap;
	}
	#topics_list .cat_list ul::-webkit-scrollbar {
		display: none;
	}
	#topics_list .cat_list ul li {
		display: inline-block;
		font-size: 11px;
		letter-spacing: 0.03em;
		line-height: 1em;
		height: 24px;
		margin-left: 12px;
	}
	#topics_list .cat_list ul li a {
		display: flex;
		align-items: center;
		height: 24px;
		width: fit-content;
		padding: 0 10px;
		border: 1px solid var(--black);
		border-radius: 12px;
		transition: all .3s;
	}
	#topics_list .cat_list ul li a img {
		display: block;
		width: auto;
		height: 16px;
		margin-right: 5px;
	}
	#topics_list .cat_list ul li a span {
		display: block;
		font-size: 11px;
		letter-spacing: 0.03em;
		line-height: 1em;
		padding-bottom: 1px;
	}
	#topics_list .cat_list a.all:hover,
	#topics_list .cat_list a.all.this,
	#topics_list .cat_list ul li a:hover,
	#topics_list .cat_list ul li a.this	{
		color: #fff;
		background-color: var(--black);
	}
	#topics_list .cat_list a img,
	#topics_list .cat_list ul li img {
		transition: all .3s;
	}
	#topics_list .cat_list a.all:hover img,
	#topics_list .cat_list a.all.this img,
	#topics_list .cat_list ul li a:hover img,
	#topics_list .cat_list ul li a.this	img {
		filter: saturate(0) brightness(0) invert(100%);
	}
	
	
	/* post list */
	ul.post_list {		
		border-top: none;
	}
	ul.post_list::after {
		height: 1px;
	}
	ul.post_list li {
		border-width: 1px;
	}
	ul.post_list li::before {
		top: -1px;
		height: 1px;
	}
	ul.post_list li:nth-of-type(2n-1) {
		border-width: 1px;
	}
	ul.post_list li a {
		padding: 40px 22px 25px 28px;
	}
	.voice_wrap ul.post_list li a {
		padding-top: 25px;
	}
	ul.post_list li:nth-of-type(2n) a {
		padding-left: 22px;
		padding-right: 25px;
	}
	ul.post_list li a .cat {
		font-size: 11px;
		height: 20px;
		padding: 3px 15px 0 25px;
	}
	ul.post_list li a .cat::after {
		right: -10px;
		width: 15px;
		height: 20px;		
	}
	ul.post_list li a .img {
		width: 140px;
		height: 140px;
		margin-bottom: 15px;
	}
	ul.post_list li a .img .icon {
		right: -12px;
		bottom: -12px;
		width: 45px;
		height: 45px;
	}
	ul.post_list li a .date {
		margin-bottom: 10px;
	}
	ul.post_list li a .title {
		font-size: 13px;
	}
	ul.post_list li a .memo {
		font-size: 11px;
	}
	
	ul.post_list li.non {
		font-size: 15px;
		padding: 160px 0;
	}
	
	
	/*===== topics single =====*/
	#topics {
		padding: 30px 28px 25px;
	}
		
	#topics .h {		
		margin-bottom: 25px;
	}
	
	#topics .h .text {
		width: calc(100% - 55px);
	}
	#topics .h .text h2 {
		font-size: 19px;
	}
	#topics .h .text .sub {
		margin-top: 10px;
	}
	#topics .h .text .sub .flex {
		margin-right: 20px;
		margin-bottom: 5px;
	}
	#topics .h .text .sub span {
		margin-top: 0;
	}
	#topics .h .text .sub .cat,
	#topics .h .text .sub .memo {
		font-size: 11.5px;
		letter-spacing: 0.06em;
		margin-right: 10px;
	}
	#topics .h .text .sub .memo {
		padding-top: 0;
	}
	#pickup_topics a .d,
	ul.post_list li a .d,
	#topics .h .text .sub .d {
		font-size: 12px;
		letter-spacing: 0.15em;		
	}
	#pickup_topics a .d2,
	ul.post_list li a .d2,
	#topics .h .text .sub .d2 {
		font-size: 10px;
		width: 34px;
		height: auto;
		padding: 0.5px 0;
		border-radius: 6px;
	}
	
	#topics .h .icon {
		width: 50px;
	}
	
	#topics .first_img {
		width: 100%;
		height: 375px;
		margin-bottom: 20px;
	}
	
	
	/*----- pagenavi -----*/
	.pagenavi {
		padding: 20px 0;
		border-width: 1px;
	}
	.pagenavi span,
	.pagenavi a {
		font-size: 15px;
		width: 16px;
		height: 16px;
		margin: 0 5px !important;
	}
	.pagenavi .previouspostslink,
	.pagenavi .nextpostslink {
		width: 16px;
		height: 16px;
	}
	.pagenavi .previouspostslink {
		background: url("../img/prev_arrow.png") no-repeat 0 45% / 16px 9px;
	}
	.pagenavi .nextpostslink {	
		background: url("../img/next_arrow.png") no-repeat 0 45% / 16px 9px;
	}
	
	/*----- single -----*/
	.single h3 {
		color: var(--orange);
		font-size: 16px;
		font-weight: 900;
		letter-spacing: 0.04em;
		line-height: 2.33em;
		text-decoration: underline;
		text-underline-offset: 5px;
		margin-bottom: 1.5em;
	}
	.single p {
		font-size: 15px;
		font-weight: 500;
		letter-spacing: 0;
		line-height: 1.92em;
		margin-bottom: 1.92em;
	}
	.single mark {
		background-color: var(--mark-color);
	}
	.single figure {
		margin-bottom: 25px;
	}
	.single .has-background {
		padding: 20px;
	}
	
	.single .wp-block-image figcaption {
		font-size: 13px;
	}
	
	/*----- pager -----*/
	.voice_wrap .pager-single {
		height: 58px;
	}
	.pager-single tr td {
		height: 58px;
	}
	.pager-single tr td:nth-of-type(1) {
		padding-left: 24px;
	}
	.pager-single tr td:nth-of-type(3) {
		padding-right: 24px;
	}
	.pager-single tr td:nth-of-type(1) img,
	.pager-single tr td:nth-of-type(3) img {
		width: 16px;
		height: auto;
	}
	.pager-single tr td:nth-of-type(2) img {
		width: 72px;
		height: auto;
	}
	
	
	/*===== voice =====*/
	.voice_wrap {
		left: -4px;
		z-index: 10000;
		border-radius: 40px;
		width: calc(100% + 8px);
		margin: 35px 0 0;
		border-width: 1px;
	}
	.voice_wrap.top {
		margin-top: 60px;
	}
	
	.voice_wrap .box {
		padding: 40px 55px 50px;
	}
	.voice_wrap .box h2.pk {
		position: relative;
		font-size: 27px;
		padding-left: 23px;
		margin-bottom: 25px;
	}
	.voice_wrap .box h2.pk::before {
    top: 5px;
    width: 3px;
    height: calc(100% - 10px);
	}
	.voice_wrap .box p {
		font-size: 18px;
	}
	.voice_wrap .box .img {
		position: relative;
		left: -10px;
		width: 270px;
		height: 270px;
		margin-top: 40px;
	}
	.voice_wrap .box .img::after {
		left: 6px;
		bottom: 12px;
	}
	.voice_wrap .box .img .mark {
		position: absolute;
		right: -30px;
		bottom: -30px;
		width: 75px;
		height: 75px;
	}
	
	.voice_wrap .pickup {
		margin: -15px 0 50px 45px;
	}
	.voice_wrap .pickup::after {
		left: 25px;
		top: -10px;
		width: 270px;
		height: 270px;
	}
	.voice_wrap .pickup a .img {
		width: 270px;
		height: 270px;
		margin-bottom: 15px;
	}
	.voice_wrap .pickup .arrow_box {
		left: 14px;
		top: 230px;
	}
	
	.voice_wrap .pickup a .date {
		margin-bottom: 10px;
	}
	.voice_wrap .pickup a .d {
		font-size: 12px;
		margin-right: 5px;
	}
	.voice_wrap .pickup a .d2 {
		font-size: 9px;
		width: 34px;
		height: 12px;
		padding-top: 0.5px;
		border-radius: 6px;
	}
	.voice_wrap .pickup a .title {
		font-size: 18px;
		text-underline-offset: 4px;
		width: 290px;
		padding-right: 60px;
		background: url("../img/new_mark.png") no-repeat 100% 0 / 50px 50px;
	}
	.voice_wrap .pickup a .memo {
		font-size: 14px;
		margin-top: 15px;
	}
	
	.voice_wrap h2.all_cv {
		font-size: 30px;
		padding: 20px 0;
		border-width: 1px;
	}
	
	.voice_wrap .m_img {
		margin-bottom: 45px;
	}
	.voice_wrap .interviewee {
		padding: 24px 20px;
		margin-bottom: 100px;
	}
	.voice_wrap .interviewee::after {
		bottom: -60px;
		border-bottom: 2px dashed #000;
	}
	.voice_wrap .interviewee h3 {
		margin-bottom: 25px;
	}
	.voice_wrap .interviewee h3 div:first-of-type {
		font-size: 14px;
	}
	.voice_wrap .interviewee h3 div:last-of-type {
		font-size: 16px;
		text-decoration: underline;
		text-underline-offset: 5px;
	}
	.voice_wrap .interviewee p {
		font-size: 15px;
	}
		
	
	.wrap_100 {
		width: 100vw;
		overflow: hidden;
	}
	.wrap_100:has(.voice_wrap) {
		margin-bottom: -30px;
	}
  
	
	/*===== not found =====*/
	#not-found {
		height: 300px;
	}
	#not-found p {
		font-size: 13px;		
  }


  br.sp {
      display: inline !important;
  }
  br.pc,img.pc {
      display: none;
  }
	img.sp {
		display: inline-block;
	}
    
    
  .sa--left {
    transform: translate(20px, 0);
  }
  .sa--right {
    transform: translate(-20px, 0);
  }
  .sa--up {
    transform: translate(0, 20px);
  }
  .sa--down {
    transform: translate(0, -20px);
  }
}

@keyframes fadeupSP {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fluffySP {
  0%, 100% {
    transform: translate(0,0);
  }
  50% {
    transform: translate(1px,-3px);
  }
}

@keyframes prog {
	0% {
			width: 0;
	}
	100% {
			width: 50px;
	}
}
