@charset "UTF-8";
/* CSS Document */
/* COMMON----------------------------------------- */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  background-color: #000;
  scroll-behavior: smooth;
  text-transform: none;
}
body, button {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #282828;
  line-height: 2.4rem;
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.3rem;
	transition: transform .6s ease; /* ゆっくり変化させる */
}

h1, h2 {
  font-family: 'Sen', sans-serif;
  font-weight: 500;
}
h2 {
  font-size: 1.6rem;
}
a {
  font-weight: 600;
}
p {
  text-align: justify;
}
h1 img {
  position: fixed;
  left: 0;
  margin: 50px 0 0 80px;
  z-index: 301;
  width: max(170px, 10vw);
}
@media screen and (max-width:960px) {
  h1 img {
    margin: 40px 0 0 30px;
    width: max(180px, 10vw);
		filter: hue-rotate(100);
  }
}
/* Loading　----------------------------------------- */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  z-index: 10000;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.loading.fade-out {
  opacity: 0;
  visibility: hidden; /* フェードアウト後に非表示にする */
}

.loading video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-width: 100%;
  min-height: 100%;
}

.loading div p {
  position: absolute;
	width: 80vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
	text-align: center;
	line-height: 3.4rem;
	color: #fff;
	font-weight: 200;
	font-size: 1.2rem;
  z-index: 10000;
  animation-name: smooth-fadein-out;
  animation-duration: 6.2s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-fill-mode: forwards;
	animation-direction: alternate;
}

@keyframes smooth-fadein-out {
  0% {opacity: 0;}
  30% {opacity: 1;}
	90% {opacity: 1;}
	100% {opacity: 0;}
}

.loading div img:nth-of-type(1) {
  position: absolute;
	width: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  margin: 0 auto;
	z-index: 10000;
	animation-name: smooth-fadein;
  animation-duration: 0.1s;
  animation-timing-function: ease;
  animation-delay: 6.2s;
  animation-fill-mode: backwards;
	animation-direction: alternate;
}

.loading div img:nth-of-type(2) {
  position: absolute;
	width: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  margin: 0 auto;
  z-index: 10000;
	animation-name: smooth-fadein;
  animation-duration: 0.1s;
  animation-timing-function: ease;
  animation-delay: 6.6s;
  animation-fill-mode: backwards;
	animation-direction: alternate;
}

.loading div img:nth-of-type(3) {
  position: absolute;
	width: 180px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 170%);
  -webkit-transform: translate(-50%, 170%);
  -ms-transform: translate(-50%, 170%);
  margin: 0 auto;
  z-index: 10000;
	animation-name: smooth-fadein;
  animation-duration: 0.1s;
  animation-timing-function: ease;
  animation-delay: 7.0s;
  animation-fill-mode: backwards;
	animation-direction: alternate;
}

@keyframes smooth-fadein {
  0% {opacity: 0;}
	100% {opacity: 1;}
}

.skip {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 20px;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  z-index: 2; /* 動画より上に表示されるようにする */
  transition: background-color 0.3s ease;
}

.skip:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

/* HEADER----------------------------------------- */
header {
  width: max(1440px, 100vw);
  margin: 0 auto;
}
.topmv_wrap {
  position: relative;
  z-index: -1;
}
.topmv {
  width: 100%;
  height: -webkit-fill-available;
  position: absolute;
  -webkit-transition: .8s;
  transition: .8s;
  z-index: 100;
}
.topmv_box {
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  text-align: center;
}
.video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-width: 100%;
  min-height: 100%;
  animation-delay: 10s;
}

/* MENU----------------------------------------- */
.menu_wrap {
  display: flex;
  flex-direction: column;
  justify-content: left;
  text-align: left;
  position: fixed;
  margin-left: 55px;
  margin-top: 160px;
}

.menu_wrap a {
  color: #fff;
  font-weight: 300;
  padding-bottom: 10px;
  font-size: 1.2rem;
}

.menu_wrap a::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 10px;
  margin-right: 5px;
  background-image: url("images/hover_icon.png");
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.menu_wrap a:hover::before {
  opacity: 1;
}

.menu_wrap i {
  color: #fff;
  font-size: 1.2rem;
}

.menu_black_wrap a {
  color: #282828;
}

.menu_black_wrap a::before {
  background-image: url("images/hover_icon_black.png");
  background-size: cover;
}

.menu_black_wrap i {
  color: #282828;
}

@media screen and (max-width: 960px) {
  .menu_wrap {
    display: none;
  }
}

/* HBG ----------------------------------------- */
.hbg_line_wap {
  display: none;
  justify-content: space-between;
  align-items: center;
  width: 40px;
  height: 40px;
  position: fixed;
  top: 22px;
  right: 25px;
  z-index: 301;
  border-radius: 5px;
	transition: opacity 0.2s ease-in-out;
}

.hbg_line_wap span {
  position: absolute;
  height: 1.5px;
  background-color: #fff;
  margin-left: 10px;
	transition: opacity 0.2s ease-in-out;
}

.hbg_line_wap span:first-of-type {
  top: 12px;
  right: 0;
  width: 30px;
}

.hbg_line_wap span:nth-of-type(2) {
  top: 50%;
  right: 0;
  width: 22px;
}

.hbg_line_wap span:last-of-type {
  top: 28px;
  right: 0;
  width: 14px;
}

.hbg_line_wap.active {
  border: 1.5px #fff;
  display: flex;
  flex-wrap: wrap;
  animation-name: fadein;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.hbg_line_wap.active span:first-of-type {
  top: 50%;
  transform: rotate(45deg);
  width: 22px;
}

.hbg_line_wap.active span:nth-of-type(2) {
  opacity: 0;
}

.hbg_line_wap.active span:last-of-type {
  top: 50%;
  transform: rotate(-45deg);
  width: 22px;
}

.hbg_line_wap_wol.active span:first-of-type {
  background-color: #fff; 
}

.hbg_line_wap_wol.active span:last-of-type {
  background-color: #fff; 
}

.hbg_menu_wap {
  z-index: 200;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: #353535;
  opacity: .9;
	transition: opacity 0.2s ease-in-out;
}

.hbg_menu_wap.active {
  overflow: hidden;
  display: block;
}

.hbg_menu_wap > div:nth-of-type(1) {
  top: 0;
  right: 0;
  height: 70vh;
  margin: 20vh 0 10vh;
  transition: .5s;
}

.hbg_menu_wap > div:nth-of-type(1) a {
  color: #fff;
  text-align: left;
  margin: 30px 12vw 0;
  display: block;
  font-size: 1.6rem;
  font-weight: 300;
}

.hbg_menu_wap > div:nth-of-type(1) p {
  color: #fff;
  margin: 30px auto 0;
	width: 71vw;
  display: block;
  font-weight: 400;
  font-size: 1.1rem;
  border-top: solid 1px;
  padding-top: 30px;
  text-align: justify;
}

.hbg_menu_wap > div:nth-of-type(1) p a {
  color: #fff;
  text-align: left;
  display: inline;
  font-weight: 400;
  font-size: 1.1rem;
  width: 85vw;
  margin: auto;
}
.hbg_menu_wap > div:nth-of-type(1) p a::before {
  display: none;
}

.hbg_menu_wap > div:nth-of-type(1) div {
  display: flex;
	margin-left: 10vw;
}

.hbg_menu_wap > div:nth-of-type(1) div a {
  margin: 60px 0 0 30px;
}

.hbg_menu_wap > div:nth-of-type(1) div a i {
  font-size: 2.4rem;
}

.hbg_menu_wap span:nth-of-type(2) {
  display: block;
  position: fixed;
  bottom: 10px;
  padding-left: 15vw;
  color: #fff;
  font-size: 1.0rem;
}

.hbg_menu_wap a:not(:last-child)::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 10px;
  margin-right: 5px;
  margin-bottom: 3px;
  transition: opacity 0.2s ease-in-out;
}

.hbg_menu_wap a::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 10px;
  margin-right: 5px;
  background-image: url("images/hover_icon.png");
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.hbg_menu_wap a:hover::before {
  opacity: 1;
}

.hbg_menu_wap a:nth-of-type(7)::before {
  content: none;
}

@media screen and (min-width: 1440px) {
.hbg_menu_wap > div:nth-of-type(1) div {
  display: flex;
	margin-left: 19vw;
}
.hbg_menu_wap > div:nth-of-type(1) a {
  margin: 30px 20vw 0;
}
.hbg_menu_wap > div:nth-of-type(1) p {
  width: 58vw;
}
.hbg_menu_wap span:nth-of-type(2) {
  padding-left: 21vw;
}
}

@media screen and (max-width: 960px) {
  .hbg_line_wap {
    display: block;
    top: 40px;
    right: 20px;
  }
	.hbg_menu_wap > div:nth-of-type(1) div {
	margin-left: 5vw;
}

  .hbg_menu_wap.active img {
    display: none;
  }

  .hbg_line_wap_wol span {
    background-color: #282828;
  }
	
	.hbg_menu_wap > div:nth-of-type(1) a {
  margin: 30px 8vw 0;
}
	.hbg_menu_wap > div:nth-of-type(1) p {
	width: 79vw;
}
	.hbg_menu_wap span:nth-of-type(2) {
  padding-left: 10vw;
}
}

@media screen and (max-width: 500px) {
	.hbg_menu_wap > div:nth-of-type(1) div {
	margin-left: 0vw;
}
}

/* BTN----------------------------------------- */
.btn {
  display: block;
  backdrop-filter: blur(44px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 10px;
  width: 300px;
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
	transition: all 0.3s ease-in-out;
}
.btn a {
  display: block;
  color: #fff;
  font-weight: 400;
  font-size: 1.4rem;
	transition: all 0.3s ease-in-out;
}

.btn:hover {
  background-color: #282828;
}

.btn span {
  font-size: 1.2rem;
  font-weight: 300;
}

/* FOOTER----------------------------------------- */
small {
  color: #fff;
  text-align: left;
  display: block;
  margin-left: 80px;
  position: fixed;
  bottom: 20px;
  font-weight: 200;
  font-size: 1.0rem;
  z-index: 100;
}
.small_black {
  color: #282828;
}
@media screen and (max-width:960px) {
  small {
    /* margin-left: 20px;
    bottom: 10px; */
    display: none;
  }
}
/* ABOUT----------------------------------------- */
.about_bg_wrap {
  position: fixed;
  background-image: url("images/bg_img_about.jpg");
  background-size: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.about_bg_wrap::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.about_wrap {
  display: flex;
}
.content_text {
  position: relative;
  text-align: left;
  color: #fff;
  width: 60vw;
  margin: 160px 150px 100px 300px;
  font-weight: 200;
  letter-spacing: 4px;
  font-size: 1.3rem;
  line-height: 26px;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
}

.content_text.show {
  opacity: 1;
}
.content_text::-webkit-scrollbar {
  width: 10px;
}
.content_text::-webkit-scrollbar-track {
  background-color: #ccc;
}
.content_text::-webkit-scrollbar-thumb {
  background-color: #17585d;
}
.content_text p span {
  font-weight: 500;
  font-size: 1.4rem;
}

.content_text a {
  color: #fff;
  font-size: 1.3rem;
  text-decoration: underline;
}

.content_text p span:nth-of-type(2)::after {
  content: '';
  display: block;
  width: min(1040px, 60vw);
  border-bottom: solid 0.5px #fff;
  margin: 40px auto;
}

@media screen and (min-width: 1900px) {
.content_text {
  margin: 160px auto 300px;
	}
.content_text p span:nth-of-type(2)::after {
  width: 100%;
}
}
@media screen and (max-width:960px) {
  .content_text {
    width: 80vw;
    margin: 20vh auto 10vh;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .content_text::-webkit-scrollbar {
    display: none;
  }
  .content_text p {
    height: 65%;
    width: 80vw;
    position: fixed;
    bottom: 0;
    overflow: auto;
    padding: 0 0 80px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
		font-size: 1.2rem;
  }
	.content_text p::-webkit-scrollbar {
    display: none;
	}
	.content_text p span:nth-of-type(2)::after {
  width: 80vw;
}
}
/* MEMBER----------------------------------------- */
.member_bg_wrap {
  position: fixed;
  background-image: url("images/bg_img_member.jpg");
  background-size: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.member_bg_wrap::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.member_wrap {
  width: min(1440px, 80%);
  display: flex;
  position: relative;
  left: 230px;
  top: max(150px, 20vh);
	justify-content: space-around;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
}

.member_wrap.show {
  opacity: 1;
}
.member_wrap div {
  z-index: 100;
  color: #fff;
  width: 300px;
  width: min(300px, 23vw);
}
.member_wrap div img {
  width: min(300px, 23vw);
}
.member_wrap h3 {
  font-size: 1.4rem;
  text-align: left;
  font-weight: 300;
  margin: 20px 0 5px;
}
.member_wrap span {
  font-weight: 200;
  text-align: left;
  display: block;
  margin: 0 0 30px;
  font-size: 1.2rem;
}
.member_wrap p {
  font-weight: 200;
  font-size: 1.2rem;
  text-align: justify;
  line-height: 26px;
}
@media screen and (min-width: 1900px) {
  .member_wrap {
    left: 25%;
  }
}
@media screen and (max-width: 1200px) {
  .member_wrap {
    left: 20%;
    width: min(1440px, 75%);
  }
}
@media screen and (max-width:960px) {
  .member_wrap {
    display: block;
    left: 0;
    top: 20vh;
    margin: 0 auto;
    height: 70vh;
    width: max(300px, 60vw);
    overflow: auto;
    padding: 0 0 80px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .member_wrap::-webkit-scrollbar {
    display: none;
  }
  .member_wrap div {
    width: max(300px, 60vw);
  }
  .member_wrap div img {
    width: max(300px, 60vw);
    margin: 0 auto;
  }
  .member_wrap p {
    margin-bottom: 60px;
  }
}
/* WAY OF LIFE----------------------------------------- */

.wol_bg_wrap {
  position: fixed;
  background-image: url("images/bg_img_way.jpg");
  background-size: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.wol_btn {
  position: relative;
  z-index: 100;
  text-align: left;
  color: #fff;
  width: 60vw;
  margin: 0px 150px 0 300px;
  font-weight: 200;
  padding-top: 160px;
  letter-spacing: 4px;
  font-size: 1.3rem;
  line-height: 26px;
  height: 50px; /* 必要に応じて高さを設定してください */
}

.wol_btn a {
  text-align: left;
  color: #282828;
  border: 0.2px solid #9E9E9E;
  letter-spacing: 4px;
  font-weight: 300;
  font-size: 1.0rem;
  line-height: 16px;
  display: inline-block;
  padding: 3px 6px 3px 7px;
  border-radius: 3px;
  margin-bottom: 3px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  margin-right: 20px; /* ボタン間の間隔を設定 */
}

.wol_btn a:hover {
  background-color: #9E9E9E;
	color: #fff;
}


  /* ulリストのスタイル */
  .wol_list {
		position: relative;
		z-index: 199;
    list-style-type: none;
	  margin: 20px 0px 50px 300px;
		padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly; /* 各要素を均等に配置 */
  }

  /* li要素のスタイル */
  .wol_list li {
    margin: 20px 40px 20px 0;
    text-align: left;
    overflow: hidden; /* 親要素のオーバーフローを隠す */
    width: 300px; /* li要素の幅を画像と同じに設定 */
    height: 500px; /* 画像の高さ + テキストの高さ */
    display: flex;
    flex-direction: column;
  }

  .wol_list li a {
    height: 400px;
		overflow: hidden;
		/* border-radius: 5px; */
		margin: 0 auto;
  }

  /* 画像のスタイル */
  .wol_list img {
    width: 300px; /* 親要素に対して幅を150pxに設定 */
    height: 100%;
    object-fit: cover; /* 画像がコンテナに収まるようにトリミング */
    transform-origin: center center; /* 画像の拡大中心を中央に設定 */
		/* border-radius: 5px; */
		transition: all 0.2s ease-in-out;
  }
.watercolor-painter img {
    object-position: 16% -24px;
	  transform: scale(2.8);
}
.picture-story-teller img {
	object-position: 25% 16%;
}
.drone-instructor img {
  object-position: 86% 16%;
}
.paddyfield img {
  transform: scale(1.3);
	object-position: 45% 16%;
}
.videographer img {
  object-position: 56% 16%;
}
.pastor img {
	object-position: 46% 16%;
}
.pet-funeral img {
	object-position: 48%;
}
  /* pタグのスタイル */
  .wol_list p {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #282828;
  }

  /* 白黒フィルター */
  .grayscale {
    filter: grayscale(100%);
  }

.blur{
	animation-name:blurAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
	opacity: 0;
  }

  to {
	filter: blur(0);
	transform: scale(1);
	opacity: 1;
  }
}
 
.blurTrigger{
    opacity: 0;
}
@media screen and (min-width: 1900px) {
 .wol_list {
    justify-content: space-between; /* 各要素を均等に配置 */
  }
.wol_list li a {
width: max(500px, 70%);
}
}


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

.wol_btn {
position: relative;
    z-index: 100;
    text-align: left;
    color: #fff;
    width: 90vw;
    margin: 0px auto;
    font-weight: 200;
    padding-top: 110px;
    letter-spacing: 4px;
    font-size: 1.3rem;
    line-height: 26px;
}
	
.wol_btn a {
  border: 0.5px solid #9E9E9E;
}
	
	.wol_list {
    list-style-type: none;
	  margin: 20px auto 50px;
		padding: 0;
    display: flex;
    flex-wrap: wrap;
  }
	
.wol_list li{
	text-align: center;
	margin: 30px 0 10px 0;
  height: 70vh;
	width: max(300px, 30vw);

}
	
.wol_list li a {
  width: 80%;
	height: 45vh;
  }
	
.wol_list li a img {
  width: 100%;
	height: 100%;
}
	
.wol_list li p{
  margin: 5px auto 0;
  width: auto;
  font-size: 1.0rem;
  line-height: 2rem;
  text-align: center;
  letter-spacing: 0.2rem;
}
.wol_list li p span{
  font-size: 0.8rem;
}
}

@media screen and (max-width: 500px) {
.wol_list li{
  width: 50%;
	height: 37vh;
}
.wol_list li a img{
  width: 100%;
	height: 100%;
}
}

/* WOL CONTENTS----------------------------------------- */

.wol_content_wrap {
  position: relative;
  text-align: left;
  color: #fff;
  width: min(1440px, 72vw);
	margin: 0 150px 100px 300px;
  font-weight: 200;
  letter-spacing: 4px;
  font-size: 1.3rem;
	padding-top: 160px;
	line-height: 30px;
  opacity: 0;
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.wol_content_wrap.show {
  opacity: 1;
}

.wol_content_wrap > img {
  width: min(1440px, 72vw);
}

.wol_image01_katou_watercolor-painter {
	filter: contrast(1.1);
	}

.wol_content_wrap h3 {
  color: #282828;
	padding: 40px 0 0;
}

.wol_content_wrap i {
	font-size: 1.3rem;
	color: #282828;
	margin-right: 10px;
}

.wol_content_wrap div:nth-of-type(1), .wol_content_wrap div:nth-of-type(2) {
	display: flex;
  width: min(1440px, 72vw);
	margin: 60px 0;	
}

.wol_content_wrap div p {
	color: #282828;
	padding-right: 5vw;
}

.wol_content_wrap p {
  width: min(1440px, 72vw);
	color: #282828;
	margin: 0 0 60px;
}

.wol_content_wrap div:nth-of-type(2) p {
  padding: 0 0 0 5vw;
}

.wol_content_wrap div:nth-of-type(2) {
	flex-direction: row-reverse;
}

.wol_content_wrap div:nth-of-type(4) {
	margin-top: 30px;
}

.wol_content_wrap div img {
	width: 40%;
	height: 100%;
}

.wol_content_wrap h4 {
	color: #282828;
	font-weight: 300;
}

.wol_content_wrap h4:nth-of-type(2) {
  margin: 50px auto 0;
}

.wol_content_wrap iframe {
  width: min(1440px, 72vw);
	height: 500px;
}

.btn_wol_contect {
  display: block;
	white-space: nowrap;
  border-radius: 100px;
  padding: 5px 30px;
	justify-content: center;
  text-align: center;
  width: 300px;
  position: relative;
	border: 1px solid #282828;
	margin-top: 100px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.btn_wol_contect span {
  line-height: 3.0rem;
	display: block;
}

.btn_wol_contect > span:nth-of-type(1) {
	  font-weight: 400;
    font-size: 1.4rem;
	  padding: 5px 50px;
}

.btn_wol_contect a {
  color: #282828;
}

.btn_wol_contect:hover {
  background-color: #7F7F7F;
	border: 1px solid #7F7F7F;
}

.btn_wol_contect a:hover {
		color: #fff;
}


@media screen and (min-width: 1800px) {
  .wol_content_wrap {
	margin: 0px auto 100px;
	width: 65vw;
} 
	.wol_content_wrap > img {
  width: 100%;
}

.wol_content_wrap div:nth-of-type(1), .wol_content_wrap div:nth-of-type(2) {
  width:65vw;
}

.wol_content_wrap p {
  width: 100%;
}
.wol_content_wrap iframe {
  width: 100%;
	height: max(800px, 60vh);
}
}

@media screen and (max-width: 1200px) {
.wol_content_wrap {
  width: 65vw;
}	
	
.wol_content_wrap > img {
  width: min(1440px, 65vw);
}
.wol_content_wrap div:nth-of-type(1), .wol_content_wrap div:nth-of-type(2) {
	display: flex;
	width: 65vw;
  margin: 20px 0;	
}
	
	.wol_content_wrap div:nth-of-type(1) img {
	padding-top: 30px;
	}
.wol_content_wrap p {
	width: 65vw;
	color: #282828;
	padding-top: 30px;
}
.wol_content_wrap iframe {
  width: min(1440px, 65vw);
	height: 60vh;
}
}

@media screen and (max-width: 960px) {
.wol_content_wrap {
	top: 20vh;
  margin: 0 auto;
  height: 70vh;
  width: max(300px, 60vw);
  overflow: auto;
  padding: 0 0 80px 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
	
.wol_content_wrap > img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
	
.wol_image01_sato_videographer {
	object-position: 55%;
	}
	
.wol_image01_azuma_drone-instructor {
	object-position: 90%;
	}

.wol_image01_anji_picture-story-teller {
	object-position: 22%;
	}
	
.wol_image01_katou_watercolor-painter {
	object-position: 50%;
	filter: contrast(1.1);
	}
.wol_image01_kubota_paddyfield {
	object-position: 44%;
	}
	.wol_image01_shimada_pet-funeral {
	object-position: 47%;
	}
	
.wol_content_wrap div:nth-of-type(1), .wol_content_wrap div:nth-of-type(2) {
	display: block;
	width: 100%;
  margin: 20px 0;	
}
	
.wol_content_wrap > div:nth-of-type(2) p {
  padding: 0 0 30px;
}
	.wol_content_wrap div img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}
	.wol_content_wrap > div p {
	color: #282828;
	padding-right: 0;
	width: 100%;
  padding-bottom: 30px;
}
.wol_content_wrap > p {
	width: 100%;
	padding-top: 0;
	margin-bottom: 30px;
}
.wol_content_wrap iframe {
  width: 100%;
	height: 350px;
}
.btn_wol_contect {
  position: relative;
	top: 0;
	padding: 5px;
	width: 280px;
}
.btn_wol_contect span {
  font-size: 1.0rem;
}
}


/* CONTACT----------------------------------------- */
.contact_bg_wrap {
  position: fixed;
  background-image: url("images/bg_img_contact.png");
  background-size: cover;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -100;
}
.contact_bg_wrap::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.contact_content {
  color: #fff;
  position: relative;
  text-align: left;
  width: 60vw;
  margin: 0px 150px 200px 300px;
  padding-top: 160px;
  font-weight: 200;
  letter-spacing: 4px;
  font-size: 1.3rem;
  line-height: 26px;
}
.contact_content > p {
  padding-bottom: 30px;
}
.contact_content form > p a {
  font-weight: 400;
  font-size: 1.3rem;
  color: #fff;
  text-decoration: underline;
}
.contact_content form > p {
  padding-bottom: 30px;
}
.contact_content div label {
  display: flex;
}
.contact_content div p {
  padding-right: 20px;
}
.contact_content div input {
  width: 60vw;
  height: 40px;
  margin-bottom: 30px;
  border-radius: 3px;
	padding-left: 10px;
  border: none;
}
.contact_content input::placeholder {
  padding-left: 15px;
}
.contact_content div textarea {
  width: 60vw;
  height: 80px;
  margin-bottom: 10px;
	border-radius: 3px;
	padding-left: 10px;
  border: none;
}
.contact_content textarea::placeholder {
  padding: 10px 0 0 15px;
}
.contact button {
  position: absolute;
  left: 50%;
  width: 300px;
  background-color: transparent;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 100;
  margin-top: 30px;
  border: none;
}
.contact button p {
  border: solid 0.5px #fff;
  cursor: pointer;
  display: block;
  color: #fff;
  backdrop-filter: blur(44px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  letter-spacing: 3px;
  padding: 20px 0px;
  margin-top: 30px;
  width: 300px;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (min-width: 1900px) {
.contact_content {
  width: 60vw;
  margin: 0px auto 300px;
}
}
@media screen and (max-width: 960px) {
  .contact_content {
    width: 100vw;
    top: 20vh;
    overflow: auto;
    padding: 0 0 150px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 0 auto;
    text-align: center;
  }
	.contact_content p {
    text-align: center;
  }
	
	.contact_content div label {
    margin-left: 20vw;
}
		.contact_content form > p {
    padding-bottom: 30px;
		width: 60vw;
    margin: 0 auto;
}
}

@media screen and (max-width: 500px) {
	.contact_content > p {
		width: 90vw;
    margin: 0 auto;
}
		.contact_content div label {
    margin-left: 8vw;
}
.contact_content div textarea {
    width: max(300px, 80vw);
}
	.contact_content div input {
    width: max(300px, 80vw);
	}
	.contact_content form > p {
    padding-bottom: 30px;
		width: 80vw;
    margin: 0 auto;
}
}

/* thanks----------------------------------------- */

.thanks_bg_wrap {
  position: fixed;
  background-image: url("images/bg_img_contact.png");
  background-size: cover;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -100;
}
.thanks_bg_wrap::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.btn_thanks_contect {
	border: 1px solid #fff;
	padding: 20px 0;
}

/* PRIVACY----------------------------------------- */
.privacy_bg_wrap {
  position: fixed;
  background-image: url("images/bg_img_privacy.jpg");
  background-size: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.privacy_bg_wrap::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 255, 0.1);
}
.privacy_wrap {
  display: flex;
}
.privacy_content_text {
  position: relative;
  text-align: left;
  color: #fff;
  width: 60vw;
  margin: 160px 150px 100px 300px;
  font-weight: 200;
  letter-spacing: 4px;
  font-size: 1.3rem;
  line-height: 26px;
}

.privacy_content_text > p {
	margin-bottom: 30px;
}

.privacy_content_text > p:nth-of-type(2), .privacy_content_text > p:nth-of-type(3), .privacy_content_text > p:nth-of-type(4) {
	margin-bottom: 0px;
}

.privacy_content_text h3 {
	margin-top: 30px;
}

.privacy_content_text li {
	list-style-position: inside;
}

.privacy_content_text a {
  color: #fff;
  font-size: 1.3rem;
  text-decoration: underline;
}
.privacy_content_text::-webkit-scrollbar {
  width: 10px;
}
.privacy_content_text::-webkit-scrollbar-track {
  background-color: #ccc;
}
.privacy_content_text::-webkit-scrollbar-thumb {
  background-color: #17585d;
}
@media screen and (min-width: 1900px) {
.privacy_content_text {
  margin: 160px auto 300px;
	}
}
@media screen and (max-width:960px) {
.privacy_content_text {
	  height: 70vh;
    width: 80vw;
	  position: fixed;
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%, -50%);
	  overflow: auto;
	  padding: 0 0 80px 0;
    margin: 10vh auto 10vh;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
.privacy_content_text::-webkit-scrollbar {
    display: none;
  }
}