@charset "UTF-8";

/*基本*/
body{
	margin: 0;
	padding: 0;
	background-color:#f0f0f0;
	color: #222;
	font-family: 'Oswald', sans-serif;
	font-size: auto;
	background-image: url("img/bg.jpg");
	background-position: center;
	background-attachment: fixed;
	background-color: #f9f9f9;
	background-blend-mode: multiply;
    background-size: cover;
    background-repeat: repeat;
    min-height:100vh;
	
	}

p{
	line-height: 1.8;
	
	}

a{
	color: inherit;
	text-decoration: none;
	
	}

img{
	max-width: 100%;
	border-radius: 5px;
	
	}


/**/
.heading{
	font-size: 50px;
	text-align: center;
	letter-spacing: 0.3em;
	-webkit-text-stroke: 3px #555;
	text-shadow: 4px 4px 0 #f9c200;
	color: rgba(0 0 0 / 0);
	font-weight:500;
	font-style: italic;
	margin: 30px;
	padding: auto;
	
	}

.box{
	height: 896px;
	
	}

/*============================scroll_anime*/

/*スクロールダウン全体の場所*/
.scrolldown2{
    /*描画位置※位置は適宜調整してください*/
		position:absolute;
		bottom: 250px;
		left:50%;
		
	}

/*Scrollテキストの描写*/
.scrolldown2 span{
	    /*描画位置*/
		position: absolute;
		left:10px;
		bottom:10px;
	    /*テキストの形状*/
		color: #000;
		font-size: 0.7rem;
		letter-spacing: 0.05em;
		/*縦書き設定*/
		-ms-writing-mode: tb-rl;
	    -webkit-writing-mode: vertical-rl;
	    writing-mode: vertical-rl;
	}

/* 丸の描写 */
.scrolldown2:before {
	    content: "";
	    /*描画位置*/
	    position: absolute;
	    bottom:0;
	    left:-4px;
	    /*丸の形状*/
		width:10px;
		height:10px;
		border-radius: 50%;
		background:#000;
	    /*丸の動き1.6秒かけて透過し、永遠にループ*/
		animation:
			circlemove 1.6s ease-in-out infinite,
			cirlemovehide 1.6s ease-out infinite;
	}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
	      0%{bottom:45px;}
	     100%{bottom:-5px;}
	 }

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
	      0%{opacity:0}
	     50%{opacity:1;}
	    80%{opacity:0.9;}
		100%{opacity:0;}
	 }

/* 線の描写 */
.scrolldown2:after{
		content:"";
	    /*描画位置*/
		position: absolute;
		bottom:0;
		left:0;
	    /*線の形状*/
		width:2px;
		height: 50px;
		background:#000;
		
	}
	
	
/*============================scroll_animeここまで*/

article{
	margin: 0 10px 0;
	position: relative;
	
	}
	
.w-container{
	width: min(92%,1166px);
	margin: auto;
	
	}

.wrapper{
	padding: 0.4%;
	
	}

.title{
	font-weight: bold;
	font-size: 40px;
	text-align: center;
	
	}

.caption{
	font-weight: 300;
	font-size: 13px;
	margin-top: -50px;
	
	}

.subheading{
	font-size: 14px;
	margin: 0 auto;
	position: relative;

	
	}

.caption2{
	font-weight: 300;
	font-size: 10px;
	text-align: center;
	gap: clamp(45px, 6vh, 80px);
	
	}

h3{
	text-align: center;
	margin-top: 50px; 
	
	}

.pen{
	background-image: url("img/pen.svg");
	width: 44px;
	height: 51px;
	position: absolute;
	bottom: -16px;
	right: 20px;
	
	}

.border{
	position: relative;
	font-size: 18px;
	display: block;
    text-align: center;
    margin:0 63px 50px;
    
	}

/*============================border_anime*/

.border:before{
	text-align: center;
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	border-bottom: solid 2px #000;
	animation: border_anim 3s linear forwards;
}

@keyframes border_anim {
	0%{
		width: 0%;
	}
	100%{
		width: 100%;
	}
}

/*============================animeここまで*/

.container{
	text-align: center;
	width: 80%;
    height: auto;  /* 高さは自動指定 */
    
	}

.item:not(:last-child) {
	margin-bottom: 100px;
	
	}

/*============================カーソルで拡大*/
.image_mouseover_1 {
	overflow: visible;
	width: 100%;
	height: 100%;
	}
	
.image_mouseover_1 img {
	transition-duration: 0.5s;
	}
	
.image_mouseover_1 img:hover {
	transform: scale(1.2,1.2);
	transition-duration: 0.5s;
	}

/*============================animeここまで*/


.about{
    min-height: 50vh;
    min-width: 0 auto;
    text-align: center;
	
	}


footer{
	background-color: #f9c200;
	width: auto;
	height: auto;
	display: grid;
	gap: 50px;
	justify-items: center;
	padding: 30px;
	
	}
	
.sns{
	display: flex;
	gap: 50px;
	
	}

.scroll-up {
  opacity: 0; 
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}
.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/*============================PC版ここから*/
@media(min-width: 768px){
	.container{
		display: grid;
		grid-template-columns: repeat(2,1fr);
		gap: 30px 60px;
		width: 80%;
		height: auto;
		justify-items: center;
		margin: 0 auto;
		
		}
	
	.caption2{
		font-weight: 400;
		font-size: 15px;
		
		}
	
}/*============================pc版ここまで*/
	
