@charset "utf-8";
/* CSS Document */


.wrapper{
	width: 100%;
	/* margin: auto; */
	/* height:100vh; */
}

/*-----------------------------header----------------------------
----------------------------------------------------------------*/

nav#breadcrumbs {
	width: 90%;
	margin: 0 auto;
}

#breadcrumbs ol{
	display: flex;
	white-space: nowrap;
    flex-wrap:wrap;/*画面が狭くなれば折り返す*/
	justify-content: right;
}

#breadcrumbs ol li{
	padding: 30px 10px;
}

#breadcrumbs ol li:not(:last-child){
	position: relative;
}

#breadcrumbs ol li:not(:last-child):after{
  content: ">";
  display: block;
  position: absolute;
  width: 10px;
  height: 15px;
  top: 28px;
  right: -5px;
}

#breadcrumbs ol li a{
	color: #000;
	transition: 0.5s;
}

/*
#breadcrumbs ol li a:visited{
	text-decoration: line-through;
}
*/

#breadcrumbs ol li a:hover{
	color: #CDCDCD;
	transition: 0.5s;
}

#breadcrumbs span{
	text-decoration :underline;
}
/*-----------------------------main----------------------------
----------------------------------------------------------------*/

main.main_wrapper{
	width: 100%;
	height: auto;
}

main.main{
	max-width: 100%;
	margin: auto;
	width: 100%;
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.category{
	position: relative;
}

.content-box{
	color: #fff;
	position: absolute;
	bottom: 0;
}

.main_title{
	background: linear-gradient(90deg, rgb(14, 14, 14), rgb(255, 255, 255));
	margin-top: 30px;
	width: 50vw;
	display: block;
}

.main_title h1 {
    font-size: 1.3rem;
	color: #fff;
    padding: 30px;
}

.main_title span{
	font-size:1rem;
}

.category img{
	transition : 1s;
	width: 100%;
}

.category img:hover{
	opacity: 0.3;
	transition : 1s;
}

h2 .graphic-title{
	font-size: 16px;
}

h2 a{
	position: relative;
    display: inline-block;
    text-decoration: none;
	padding: 0 10px;
}

h2 a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  border-radius: 5px;
  height: 4px;
  background: #f7bf3d;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
  }

 a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
 }

h2 a:link,
h2 a:visited, 
h2 a:hover, 
h2 a:active {
	color: rgb(255, 255, 255);
  }

/* .content-box .graphic-title{
	font-size: 14px;
} */


.textbox p{
	padding: 30px 40px 10px 40px;
	height: 150px;
}
.archivement-sp{
	display: none;
}

/*-------------fedeアニメ---------------------*/

/* Archivement子ページ動き設定 */
/* .fade-up{
	opacity: 0 ;
transform: translateY(60px) ;
transition: 2s cubic-bezier(.01,.98,.88,1.01) ;
}

.fade-down{
	opacity: 0 ;
transform: translateY(-60px) ;
transition: 2s cubic-bezier(.01,.98,.88,1.01) ;
}

.fade-right{
	opacity: 0;
transform: translateX(-60px);
transition: 1s cubic-bezier(.01,.98,.88,1.01);
}

.fade-left{
	opacity: 0;
transform: translateX(60px);
transition: 1s cubic-bezier(.01,.98,.88,1.01);
} */


/* Archivement親ページ動き設定 */

.fade-up{
	animation: fadeUp 1s ease .3s 1 normal backwards;
}

@keyframes fadeUp {
	from {
	  opacity: 0;
	  transform: translateY(-60px);
	}
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
  }

.fade-down{
	animation: fadeDown 1s ease .3s 1 normal backwards;
}

@keyframes fadeDown {
	from {
	  opacity: 0;
	  transform: translateY(60px);
	}
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
  }

  .fade-right{
	animation: fadeRight 1s ease .3s 1 normal backwards;
}

@keyframes fadeRight {
	from {
	  opacity: 0;
	  transform: translateX(-60px);
	}
	to {
	  opacity: 1;
	  transform: translateX(0);
	}
  }

  .fade-left{
	animation: fadeLeft 1s ease .3s 1 normal backwards;
}

@keyframes fadeLeft {
	from {
	  opacity: 0;
	  transform: translateX(60px);
	}
	to {
	  opacity: 1;
	  transform: translateX(0);
	}
  }


/*----------------アニメここまで-----------------------------------*/

/*-----------------------------top_back----------------------------
----------------------------------------------------------------*/

.top_back{
	width: 120px;
	color: #f7bf3d;
	font-weight: bold;
	border: 2px solid #f7bf3d;
	padding: 7px;
	text-align: center;
	margin: auto;
	transition : 0.8s;
}
.top_back:hover{
	border: 2px solid #FFFFFF;
	background-color: #f7bf3d;
	transition : 0.8s;
}


.top_back a{
	color: #f7bf3d;
}

.top_back a:hover{
	color: #FFFFFF;
}


/*-----------------------------footer----------------------------
----------------------------------------------------------------*/
.footer small{
	font-size: 0.8rem;
}

footer.footer {
    text-align: center;
}

.footer_logo{
	text-align: right;
}

.footer_logo img{
	width: 120px;
    margin-top: -55px;
	transition : 1s;
}

.footer_logo img:hover, .footer_logo img:focus, .footer_logo img:active{
	-webkit-transform: scale(1.1);
    transform: scale(1.1);
    cursor: pointer;
	transition : 1s;
	opacity: 0.5;
}


#page-top {
    position: fixed;
    right: 5px;
    bottom: 15px;
    font-size: 1.2rem;
    line-height: 1.2rem;
    background: #f7bf3d;
    color: #FFFFFF;
    padding: 25px;
    border: solid 1px;
    border-radius: 50%;
    box-shadow: 0 2px 10px -6px rgba(0,0,0,.5), 0 3px 10px -4px rgba(0,0,0,.2);
	
}

#page-top::before{
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
  bottom: -4px;
    left: 18px;
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  transform: rotate(-45deg); 
}

/*-----------------------------@media screen----------------------------
----------------------------------------------------------------*/

/*-----------------------▼▼　1450px　▼▼-----------------------------------*/



/*-----------------------------▼▼　1082px　▼▼-----------------------------------*/
@media screen and (max-width:1082px){

	.category img {
    transition: 1s;
}
	.footer_logo{
    max-width: 95%;
}
	.content-box{
	bottom: 30px;
	}
    h2{
	font-size: 20px;
}
	.textbox{
	font-size: 0.9rem;
}
	.textbox p{
	padding: 20px 20px 10px 20px;
}
}

/*-----------------------------▼▼　910px　▼▼-----------------------------------*/
@media screen and (max-width:910px){

	/* レスポンシブ画像切り替え */
    .archivement-pc{
		display: none;
	}
	.archivement-sp{
		display: block;
	}
/* ＝＝＝ */

	nav#breadcrumbs{
	margin-right: 30px;
	width: 100%;
	}

	#breadcrumbs ol li {
    font-size: smaller;
}
	main.main{
	display: block;
	margin-top: 10px;
	}

	.main_title h1 {
    line-height: 1.5rem;
    font-size: 1.2rem;
    padding: 25px 50px;
    margin-top: -35px;
}

	.main_title span {
    font-size: 0.8rem;
}

	.main_title{
	width: 100vw;
}

	.main_title h1 {
    padding: 7% 8% 6% 8%;
	font-size: 25px;
}

	.category{
	margin-bottom: 5px;
}
	.content-box{
	bottom: 45%;
	right: 1%;
	pointer-events: none;
	}
    .textbox{
	display: none;
	}
	h2{
	height: auto;
	}

	.content-box::after {
	background-color: #f7bf3d; /* 線色 */
	border-radius: 5px; /* 線幅の半分 */
	content: "";
	display: block;
	height: 4px; /* 線幅 */
	}
}

/*-----------------------------▼▼　650px　▼▼-----------------------------------*/

@media screen and (max-width:650px){
	h2.title {
    font-size: 1.1rem;
}

	.main_title h1 {
    padding: 7% 8% 6% 8%;
	font-size: 25px;
}
	
	.textbox p {
    font-size: 0.9rem;
}
	
	#page-top {
    position: fixed;
    right: 5px;
    bottom: 15px;
    font-size: 1.2rem;
    line-height: 1.2rem;
    background: #f7bf3d;
    color: #FFFFFF;
    padding: 15px;
    border: solid 1px;
    border-radius: 50%;
    box-shadow: 0 2px 10px -6px rgba(0,0,0,.5), 0 3px 10px -4px rgba(0,0,0,.2);
	
}

#page-top::before{
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
    bottom: -4px;
    left: 8px;
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  transform: rotate(-45deg); 
}
.main_title h1 {
	font-size: 25px;
}
}

/*-----------------------------▼▼　499px　▼▼-----------------------------------*/

@media screen and (max-width:499px){
	#breadcrumbs{
	display: none;
}
.content-box{
	bottom: 40%;
}
}

/*-----------------------------▼▼　450px　▼▼-----------------------------------*/

@media screen and (max-width:450px){
	
	.main_title span {
    font-size: 0.7rem;
}
}

/*-----------------------------▼▼　414px　▼▼-----------------------------------*/
@media screen and (max-width:414px){

	h2.title {
    font-size: 1rem;
    font-weight: bolder;
}
	
	.top_back {
    margin: -35px auto 0;
}
	.footer_logo img {
    width: 20%;
}
}
