@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Zen+Kaku+Gothic+New:wght@300;400&family=Noto+Serif+JP:wght@400;500;700&display=swap');

@keyframes feed {
  0% {
    opacity: 0;
  }

  14.28% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  64.28% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

* {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  padding: 0;
}

img{
	user-select: none;
}

body {
  text-align: center;
  margin: 0px auto;
  font-size: 18px;
  -webkit-text-size-adjust:100%!important;
  max-height: 100%;
  color: #473D2D;
}

header {
  text-align: left;
  padding: 0;
  color: #FFF;
  background-color: #F6B557;
}

.g_nav,
.g_nav_menu{
  display: none;
}

.g_nav{
  cursor: pointer;
  background-color: #333333;
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
}

.g_nav span{
  position: absolute;
  right: 15px;
  margin: auto;
  width: 40px;
  height: 4px;
  background-color: #ffffff;
}

.g_nav span:nth-child(1){
	top: 12px;
	transition: 0.3s;
}

.g_nav span:nth-child(2){
	top: 28px;
	transition: 0.5s;
}

.g_nav span:nth-child(3){
	top: 44px;
	transition: 0.5s;
}

.g_nav.active span:nth-child(1){
	top: 28px;
	transform: rotate(225deg);
	transition: 0.5s;
}

.g_nav.active span:nth-child(2){
	top: 28px;
	transform: rotate(315deg);
	transition: 0.5s;
}

.g_nav.active span:nth-child(3){
	top: 28px;
	transform: rotate(495deg);
	transition: 0.5s;
}

ul.g_nav_menu{
  position: fixed;
  left: 0;
  right: 0;
  transform: translatey(-50em);
  z-index: 50;
  transition: 0.3s;
}

ul.g_nav_menu.active{
  transform: translatey(0);
  z-index: 50;
  transition: 0.3s;
}

ul.g_nav_menu li{
  width: 100%;
  background-color: rgba(255,255,255,0.8);
  border-bottom:1px solid #888888;
  margin: auto;
}

ul.g_nav_menu li a{
  text-decoration: none;
  color: #000000;
  display: block;
  padding: 20px;
  transition: 0.7s;
}

ul.g_nav_menu li a:hover{
  filter: brightness(70%);
  background-color: rgba(225,225,225,0.9);
  transition: 0.3s;	
}

.feed {
  position: relative;
  height: 100vh;
  max-height: 850px;
  min-height: 560px;
}

iframe {
  max-width: 1200px;
	width: 100%;
  height: 480px;
}

.feed ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feed ul :before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-repeat: no-repeat;
}

.feed ul img {
  width: 100%;
	height: 100vh;
  margin: 0 auto;
  max-height: 850px;
  min-height: 560px;
  display: block;
  object-fit: cover;
}

.feed ul li {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  animation-iteration-count: infinite;
  animation-duration: 14s;
  z-index: -1;
}

.feed ul li:nth-child(1) {
  animation-name: feed;
  animation-delay: -2s;
}

.feed ul li:nth-child(2) {
  animation-name: feed;
  animation-delay: 5s;
  opacity: 0;
}

.feed_text {
	position: absolute;
	right: 0;
	left: 0;
	top: 40%;
  color: #ffffff;
  filter: drop-shadow(0px 4px 3px #330000);
  font-family: 'Noto Serif JP', serif;
}

.feed_text h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
}

.feed_text h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 60px;
}

h3#mountain{
	background-color: #118822;
}

h3#river{
	background-color: #33bbcc;
}

h3#sea{
	background-color: #3366cc;
}

h3#other{
	background-color: #D7511D;
}

.content {
  max-width: 1200px;
  position: relative;
  margin: 0 auto;
}

.column1.column2 {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s 0s ease-out;
}

.column2 {
  vertical-align: top;
  margin-bottom: 10px;
  box-sizing: border-box;
	display: flex;
}

.atsukai_tenpo{
	margin-bottom: 100px;
}

.content .atsukai_tenpo h3{
	color: #000000;
	margin-bottom: 30px;
	padding-bottom: 0;
	background: linear-gradient(0, #F6B557 20%, white 20%);
}

.column2.place{
	margin-bottom: 50px;
}

.content h3{
  text-align: left;
  padding: 0.5em;
  color: #ffffff;
  font-family: 'Noto Serif JP';
  font-size: 32px;
  background-color: #F6B557;
	margin-bottom: 50px;
}

h3.category {
  color: #000000;
  font-size: 40px;
  text-align: center;
	font-weight:300;
	background-color: #ffffff;
  padding: 60px;
	margin-bottom: 0;
  font-family: 'Zen Kaku Gothic New', serif;
}

ul.column4{
	display: inline-flex;
  list-style: none;
  flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 90px;
}

ul.column4 li{
	margin: 10px;
}

ul.column4 li a{
	text-decoration: none;
	color: #000000;
	transition: 0.7s;
}

ul.column4 li a:hover{
	filter: opacity(50%);
	transition: 0.3s;
}

	
.column1 {
  margin-bottom: 100px;
}

.content p {
  text-align: left;
  padding: 0 1em;
}

.textarea {
  width: 100%;
	padding: 0 20px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding-bottom: 30px;
  text-align: left;
  box-sizing: border-box;
}

.textarea h3 {
  text-align: left;
  margin: auto;
  border: none;
  color: #000000;
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  padding: 0.5em;
  background: #FFFFFF;
	border-bottom: 2px solid #999999;
}

.photo{
  display: inline-block;
	max-width: 600px;
	width: 100%;
  box-sizing: border-box;
}

.photo ul.slider-nav li img{
	max-width: 160px;
	margin: 1%;
	aspect-ratio: 9 / 6;
}

.slick-slide {
  position: relative;
}
.slick-slide .caption {
  position: absolute;
  left: 0;
  bottom: 5px;
  z-index: 2;
  width: calc(100% - 40px);
  padding: 20px;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  font-size: 14px;
  opacity: 0;
  transition: .3s ease;
}
.slick-current .caption {
  opacity: 1;
  transition-delay: .5s;
}

.content .atsukai_tenpo ul.col2{
	display:flex;
	flex-wrap: wrap;
	list-style: none;
	place-content: space-between;
}

.content .atsukai_tenpo ul.col2 li.col2{
	width: 48%;
	border: 1px solid #999999;
	margin: 0.5%;
	border-radius: 5px;
	position: relative;
	display: flex;
}

.content .atsukai_tenpo ul.col2 li.col2 .photo{
    width: fit-content;
    margin: 20px;
}

.content .atsukai_tenpo ul.col2 li.col2 .photo img{
	width: 100%;
}

.content .atsukai_tenpo ul.col2 li.col2 .textarea h4{
	margin: 20px auto 0;
	border-bottom: 1px solid #cccccc;
	color: #CC0000;
	font-size: 20px;
}

.content .atsukai_tenpo ul.col2 li.col2 .textarea p{
	padding-left: 0;
	font-size: 16px;
	margin: 0;
}

.content .atsukai_tenpo ul.col2 li.col2 .textarea a{
	text-decoration: none;
	margin-top: 20px;
	padding: 10px 15px;
	background-color: #dd0000;
	color: #ffffff;
	border-radius: 10px;
	position: absolute;
  bottom: 20px;
	transition: 0.7s;
}

.content .atsukai_tenpo ul.col2 li.col2 .textarea a:hover{
	filter: brightness(70%);
	transition: 0.3s;
}

.scrollanime {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeIn;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

.exit a{
	background-color: #F6B557;
  padding: 20px 15px;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
  margin-bottom: 30px;
	transition: 0.7s;
}

.exit a:hover{
	filter: brightness(70%);
	transition: 0.3s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transition: 1s;
    transform: translate3d(0, 20px 0);
  }

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

.slide.scroll-fade-up {
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframe slide {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
  }

  40%,
  100% {
    opacity: 1;
  }
}


.textarea p {
  margin: 15px 0;
  padding-bottom: 20px;
}

.text_12 {
  font-size: 12px;
}

.page_top{
  position: fixed;
	right: -100px;
	bottom: -100px;
  z-index: 10;
}

.page_top a{
  position: relative;
  right: 0;
	display: block;
	line-height: 16px;
  text-decoration: none;
  color: #000000;
  border-radius: 15px;
  left: 0;
  width: 70px;
	padding-top: 24px;
	padding-bottom: 14px;
  border: 2px solid #333333;
	background-color: rgba(255,255,255,0.7);
}

.page_top a::before{
	content: "";
	position: absolute;
    top: 10px;
    border-bottom: 14px solid #000000;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
}

.page_top a:hover{
  background-color: rgba(220,220,220, 0.5);
  transition: 0.3s;
}

@media screen and (max-width: 1200px) {
	
	.g_nav,
	.g_nav_menu{
		display: block;
	}

	ul.nav_menu{
		display: none;
	}
	
	header{
		margin-top: 60px;
	}

	.feed ul img {
		max-height: 750px;
	}

  .photo img,
  .small_photo img{
    max-width: none;
  }

  .small_photo img{
    width: 90%;
  }
  
  .content {
    max-width: 96%;
    margin: auto 2%;
		padding-top: 5%;
  }

  .content h3 {
    margin: 0 auto;
    margin-bottom: 30px;
  }

  .textarea {
    max-width: none;
    width: 100%;
  }
	
	.textarea.pad0 {
		padding: 0;
	}

  .textarea h3 {
    padding: 15px;
		width: auto;
  }

  .textarea p {
    margin: auto;
  }

  .photo{
    margin: 0 auto;
		padding: 0;
  }

  .column1,
  .column2 {
    max-width: 1000px;
		flex-direction: column;
    margin: 0 auto;
  }

  .column1 img,
  .column2 img {
    width: 100%;
    margin: auto;
    display: block;
  }
	
	.column1{
		margin-bottom: 100px;
	}
	
	.photo{
		max-width: none;
	}
	
	.slick-slide img{
		max-width: none!important;
	}
	
	.photo ul.slider-nav li img{
		max-width: none;
		width: 96%;
		margin: 2%;
	}
}

@media screen and (max-width: 1024px) {
	
	footer {
  	padding-bottom: auto;
	}

}

@media screen and (max-width: 860px) {
	
	.feed ul img {
		height: auto;
	}
	
	.feed{
		height: auto;
	}
	
	.content .atsukai_tenpo ul.col2{
		display:block;
	}
	
	.content .atsukai_tenpo ul.col2 li.col2{
		width: auto;
		margin: 1%;
	}
}

@media screen and (max-width: 640px) {

  * {
    font-size: 16px;
  }
	
	ul.column4{
		margin-bottom: 60px;
	}
	
	ul.column4 li{
		width: 46%;
    margin: 2%;
	}
	
	h3.category{
		padding: 30px;
		margin-bottom: 0;
	}
	
	.atsukai_tenpo{
		margin-bottom: 50px;
	}
	
	.content h3{
		font-size: 26px;
		margin-bottom: 20px;
	}

  .column1,
	.column2{
    width: auto;
  }
  
  .content,
  .photo {
    margin: auto;
  }
	
	.textarea {
		padding-left: 0;
		padding-right: 0;
	}
	
	.textarea h3 {
		padding-left: 5px;
		padding-right: 0.5em;
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 480px) {
		
	.content .atsukai_tenpo ul.col2 li.col2 .textarea{
		padding: 0 20px;
	}
	
	.content .atsukai_tenpo ul.col2 li.col2 .textarea a{
		position: static;
		margin: auto;
		margin-left: 0;
		margin-bottom: 20px;
		display: table;
	}
	
	.content .atsukai_tenpo ul.col2 li.col2 .textarea p{
		padding-right: 0;
	}
	
	.content .atsukai_tenpo ul.col2 li.col2 .photo{
		width: 120px;
		margin: 20px;
	}
}

@media screen and (max-width: 380px) {
	ul.column4 li a img{
		width: -webkit-fill-available;
		width: -moz-available;
	}
}