@charset "UTF-8";
/* base */

html, body {
	margin: 0;
	padding: 0;
    height: 100%;
}

html {
    color: #464646;
    color: #494949;
    font-family:"aktiv-grotesk, sans-serif","AktivGrotesk-Light"," aktiv-grotesk-thin","AktivGrotesk-Bold","Arial Regular","游ゴシック体", YuGothic, "游ゴシック Medium", "秀英角ゴシック銀 L", Shuei KakuGo Gin L, "秀英角ゴシック銀 B", Shuei KakuGo Gin B, "Noto Sans JP", "Helvetica Neue", "Segoe UI",'Lato', sans-serif;
    font-family:"a-otf-ryumin-pr6n", "garamond-premier-pro", "tuna", serif;
    font-weight: 400;
    letter-spacing: 0;
}

body {
    margin:0px;
    padding:0px;
}

a {
  color: #000000;
  -webkit-transition: 0.3s opacity ease;
  transition: 0.3s opacity ease;
  text-decoration: none;
}

a[href]:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (max-width: 1000px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}

@media (max-width: 760px) {
  .sp_only {
    display: block;
  }
}


/* TOP */


/* .Header_Top {
	background-color: #000;
} */

.Header_Inner {
	/*min-width: 1000px;*/
	max-width: 1080px;
        margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 1rem;
	padding-right: 1rem;
	padding-top: 2rem;
	padding-bottom: 2rem;
	/*padding: 1.75rem;*/
	/* position: fixed; */
	/* background-color: #fff; */
}

@media screen and (max-width: 760px) {
   .Header_Inner {
      display: block;
      /*text-align: center;*/
      width: 90%;
      padding-left: 0rem;
      padding-right: 0rem;
   }
}

.Header_Logo {
  font-family: aktiv-grotesk-thin, sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: 1.5rem;
  color: #000000;
}

@media screen and (max-width: 760px) {
   .Header_Logo {
      /*font-size: 1.25rem;*/
   }
}


.Header_nav {
	display: block;
}

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


.hamburger-menu {
	display: none;
}

@media screen and (max-width: 760px) {
   .hamburger-menu {
      display: block;
   }
}


.Main_nav {
	font-family: aktiv-grotesk, sans-serif;
        font-weight: 400;
        font-style: normal;
	display: flex;
	list-style-type: none;
	font-size: 0.875rem;
	letter-spacing: 0.1em;
}

@media screen and (max-width: 760px) {
   .Main_nav {
      /*display: none;*/
      padding-top: 1rem;
      font-size: 0.8125rem;
      text-align: center;
      justify-content: center;
   }
}

.Header_nav ul li {
	/*margin: 0 10px;*/
	flex-grow: 1;
  text-align: center;
}

@media screen and (max-width: 760px) {
   .Header_nav ul li {
     flex-grow: 0.15;
   }
}

.Header_nav ul li a {
	padding: 1rem;
}

@media screen and (max-width: 760px) {
   .Header_nav ul li a {
      padding: 0.5rem;
   }
}

li + li {
  border-left: 1px solid #000;
  border-color: #C5CDD1;
}

.Header_nav_active {
	font-weight: 500;
}



.menu-btn {
    position: fixed;
    top: 16px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: transparent;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 1px;
    width: 24px;
    border-radius: 1px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #979898;
    transition: all 0.5s;/*アニメーション設定*/
    text-align: center;
}
.menu-content ul {
    padding: 6rem 1rem 8rem;
}
.menu-content ul li {
    border: none;
    /*border-bottom: solid 1px #ffffff;*/
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 1rem;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 1.5rem;
    position: relative;
    font-family: aktiv-grotesk, sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.25em;
}


#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

.Top_all {
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	/*background-attachment: fixed;*/
	/*position: fixed;*/
}

#Top {
	background-image: url(../images/01_TOP/top_3.jpg);
	min-height: 100vh;
	/*position: fixed;*/
}

@media screen and (max-width: 760px) {
  #Top_img {
   background-image: url(../images/01_TOP/top_2_sp.JPG);
   background-size: cover;
   background-position: center;
   min-height:100vh;
  }
}


/* WORKS */

.menu-btn-black {
    position: fixed;
    top: 16px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: transparent;
}
.menu-btn-black span,
.menu-btn-black span:before,
.menu-btn-black span:after {
    content: '';
    display: block;
    height: 1px;
    width: 24px;
    border-radius: 1px;
    background-color: #000000;
    position: absolute;
}
.menu-btn-black span:before {
    bottom: 8px;
}
.menu-btn-black span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn-black span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn-black span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn-black span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}


/* DAILY */

.work_Inner {
	width: 65%;
  margin: 0 auto;
}

@media screen and (max-width: 760px) {
  .work_Inner {
   width: 90%;
  }
}


.Sub_Header {
    font-family: aktiv-grotesk, sans-serif;
    font-weight: 400;
	display: flex;
	justify-content: space-between;
	padding-top: 1rem;
	padding-bottom: 0.75rem;
	align-items: flex-end;
	border-bottom: 1px solid #C5CDD1;
	/*padding-left: 10%;*/
	/*padding-right: 10%;*/
}

.Sub_nav {
	/*font-family: Josefin Sans, sans-serif;*/
	display: flex;
	list-style-type: none;
	font-size: 1rem;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 760px) {
  .Sub_nav {
   font-size: 0.875rem;
  }
}

.Sub_nav li {
	padding-right: 2.5rem;
	border: none;
}

@media screen and (max-width: 760px) {
  .Sub_nav li {
   padding-right: 1.75rem;
   /*padding-left: 1rem;*/
  }
}


.Sub_Header_nav ul li a {
  position: relative;
}

/*ホバーエフェクト*/
.Sub_Header_nav ul li a::after {
  /*アンダーラインのスタイル*/
  position: absolute;
  content: "";
  display: block;
  height: 0.175rem;
  background-color: #464646;
  bottom: -1.125rem;
  left: 0;
  /*幅を0に設定*/
  width: 0;
  /*アニメーションの速度設定*/
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.Sub_Header_nav ul li a:hover::after {
  /*幅を100%に設定*/
  width: 100%;
}

.Sub_nav_active {
  border-bottom: 1px solid #464646;
  border-bottom-width: medium;
  padding-bottom: 0.9rem;
}


.daily_imgBox {
	margin: auto;
	background-color: white;
	position: relative;
	padding-top: 1.75rem;
}

.daily_imgBox img {
	/*width: 80%;*/
	animation-name: daily_imgBox;
	-webkit-animation-name: daily_imgBox;
	animation-duration: 50s;
	-webkit-animation-duration: 50s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	opacity: 0;
}

.daily_imgBox .d1 {
	display: block;
	margin: 0 auto;
}

.daily_imgBox .d2 {
	animation-delay:8s;
	-webkit-animation-delay:10s;position: absolute;
	top: 0;
	/*left: 10%;*/
	padding-top: 1.75rem;
}

.daily_imgBox .d3 {
	animation-delay:16s;
	-webkit-animation-delay:20s;position: absolute;
	position: absolute;
	top: 0;
	/*left: 10%;*/
	padding-top: 1.75rem;
}

.daily_imgBox .d4 {
	animation-delay:24s;
	-webkit-animation-delay:30s;position: absolute;
	position: absolute;
	top: 0;
	/*left: 10%;*/
	padding-top: 1.75rem;
}

.daily_imgBox .d5 {
	animation-delay:32s;
	-webkit-animation-delay:40s;position: absolute;
	position: absolute;
	top: 0;
	/*left: 10%;*/
	padding-top: 1.75rem;
}


@keyframes daily_imgBox {
	0% {
		opacity: 0;
	}
	
	7% {
		opacity: 1;
	}

    18% {
		opacity: 1;
	}

	25% {
		opacity: 0;
	}

	100% {
		opacity: 0;
	}

}

.daily_Lead {
	padding-top: 4rem;
	padding-bottom: 4rem;
	text-align: center;
	border-bottom: 1px solid #C5CDD1;
}

@media screen and (max-width: 760px) {
  .daily_Lead {
  padding-top: 2.25rem;
	padding-bottom: 2.25rem;
  }
}

.daily_Title {
	font-family:AktivGrotesk-Bold, sans-serif;
	font-size: 1.25rem;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 760px) {
  .daily_Title {
   font-size: 0.9375rem;
  }
}

.daily_Text {
	font-family: YuGothic, sans-serif;
	font-size: 0.875rem;
	font-weight: 300;
	letter-spacing: 0.05em;
	line-height: 1.75rem;
	padding-top: 2rem;
}

@media screen and (max-width: 760px) {
  .daily_Text {
   font-size: 0.75rem;
   line-height: 1.375rem;
   padding-top: 2rem;
   text-align: left;
  }
}

.daily_Text2 {
	padding-top: 1.5rem;
}

.daily_Text3 {
	padding-top: 1.5rem;
}

.daily_Text4 {
	padding-top: 1.5rem;
}

.contents_Inner {
   	width: 65%;
    margin: 0 auto;
}

@media screen and (max-width: 760px) {
  .contents_Inner {
   width: 90%;
  }
}

.daily_Contents {
	padding-top: 4rem;
	padding-bottom: 4rem;
	border-bottom: 1px solid #C5CDD1;
}

@media screen and (max-width: 760px) {
  .daily_Contents {
    padding-top: 3rem;
	padding-bottom: 3rem;
  }
}

.daily_Price {
	font-family: YuGothic, sans-serif;
	font-size: 0.9375rem;
	letter-spacing: 0.075em;
	line-height: 2rem;
}

@media screen and (max-width: 760px) {
  .daily_Price {
   font-size: 0.875rem;
   letter-spacing: 0.05em;
   line-height: 1.5rem;
  }
}

.daily_Number {
	padding-top: 2rem;
	font-family: YuGothic, sans-serif;
	font-size: 0.9375rem;
	letter-spacing: 0.075em;
	line-height: 2rem;
}

@media screen and (max-width: 760px) {
  .daily_Number {
   padding-top: 1.5rem;
   font-size: 0.875rem;
   letter-spacing: 0.05em;
   line-height: 1.5rem;
  }
}

.daily_Delivery {
	padding-top: 2rem;
	font-family: YuGothic, sans-serif;
	font-size: 0.9375rem;
	letter-spacing: 0.075em;
	line-height: 2rem;
}

@media screen and (max-width: 760px) {
  .daily_Delivery {
   padding-top: 1.5rem;
   font-size: 0.875rem;
   letter-spacing: 0.05em;
   line-height: 1.5rem;
  }
}

.daily_Deadline {
	padding-top: 2rem;
	font-family: YuGothic, sans-serif;
	font-size: 0.9375rem;
	letter-spacing: 0.075em;
	line-height: 2rem;
}

@media screen and (max-width: 760px) {
  .daily_Deadline {
   padding-top: 1.5rem;
   font-size: 0.875rem;
   letter-spacing: 0.05em;
   line-height: 1.5rem;
  }
}

.daily_Cancel {
	padding-top: 2rem;
	font-family: YuGothic, sans-serif;
	font-size: 0.9375rem;
	letter-spacing: 0.075em;
	line-height: 2rem;
}

@media screen and (max-width: 760px) {
  .daily_Cancel {
   padding-top: 1.5rem;
   font-size: 0.875rem;
   letter-spacing: 0.05em;
   line-height: 1.5rem;
  }
}

.contact_Inner {
	width: 65%;
  margin: 0 auto;
  padding-bottom: 5rem;
}

@media screen and (max-width: 760px) {
  .contact_Inner {
   width: 90%;
  }
}

.contact_Guide {
	font-family: YuGothic, sans-serif;
	text-align: center;
	font-size: 0.9375rem;
	letter-spacing: 0.075em;
	padding-top: 4rem;
}

@media screen and (max-width: 760px) {
  .contact_Guide {
   font-size: 0.8125rem;
   padding-top: 2rem;
  }
}

.Work_Contact_Button {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /*display: flex;*/
    padding-top: 1.5rem;
    text-align: center;
}

.Contact_Button {
	font-family: aktiv-grotesk, sans-serif;
  font-weight: 400;
    font-size: 1rem;
    display: inline-block;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    padding-right: 2rem;
    padding-left: 2rem;
    background: #fff;
    border: 1px solid #494949;
    text-decoration: none;
    color: #494949;
    letter-spacing: 0.15em;
}

.Contact_Button:hover {
	background: #494949;
	color: #fff;
}


/* LIVE */

.event_imgBox {
	margin: auto;
	background-color: white;
	position: relative;
	padding-top: 1.75rem;
}

.event_imgBox img {
	/*width: 80%;*/
	animation-name: event_imgBox;
	-webkit-animation-name: event_imgBox;
	animation-duration: 50s;
	-webkit-animation-duration: 50s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	opacity: 0;
}

.event_imgBox .e1 {
	display: block;
	margin: 0 auto;
}

.event_imgBox .e2 {
	animation-delay:8s;
	-webkit-animation-delay:10s;position: absolute;
	top: 0;
	/*left: 10%;*/
	padding-top: 1.75rem;
}

.event_imgBox .e3 {
	animation-delay:16s;
	-webkit-animation-delay:20s;position: absolute;
	position: absolute;
	top: 0;
	/*left: 10%;*/
	padding-top: 1.75rem;
}

.event_imgBox .e4 {
	animation-delay:24s;
	-webkit-animation-delay:30s;position: absolute;
	position: absolute;
	top: 0;
	/*left: 10%;*/
	padding-top: 1.75rem;
}

.event_imgBox .e5 {
	animation-delay:32s;
	-webkit-animation-delay:40s;position: absolute;
	position: absolute;
	top: 0;
	/*left: 10%;*/
	padding-top: 1.75rem;
}


@keyframes event_imgBox {
	0% {
		opacity: 0;
	}
	
	7% {
		opacity: 1;
	}

    18% {
		opacity: 1;
	}

	25% {
		opacity: 0;
	}

	100% {
		opacity: 0;
	}

}

.event_Lead {
	padding-top: 4rem;
	padding-bottom: 4rem;
	text-align: center;
	border-bottom: 1px solid #C5CDD1;
}

@media screen and (max-width: 760px) {
  .event_Lead {
  padding-top: 2.25rem;
	padding-bottom: 2.25rem;
	/*text-align: left;*/
  }
}

.event_Title {
	font-family:AktivGrotesk-Bold, sans-serif;
	font-size: 1.25rem;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 760px) {
  .event_Title {
	font-size: 0.9375rem;
  }
}

.event_Text {
	font-family: YuGothic, sans-serif;
	font-size: 0.875rem;
	font-weight: 300;
	letter-spacing: 0.05em;
	line-height: 1.75rem;
	padding-top: 2rem;
}

@media screen and (max-width: 760px) {
  .event_Text {
	font-size: 0.75rem;
	line-height: 1.375rem;
	padding-top: 2rem;
	text-align: left;
  }
}

.event_Text2 {
	padding-top: 1.5rem;
}

.event_Text3 {
	padding-top: 1.5rem;
}

.event_Text4 {
	padding-top: 1.5rem;
}

.event_Contents {
	padding-top: 4rem;
	padding-bottom: 4rem;
	border-bottom: 1px solid #C5CDD1;
}

@media screen and (max-width: 760px) {
  .event_Contents {
	padding-top: 3rem;
	padding-bottom: 3rem;
  }
}

.event_Price {
	font-family: YuGothic, sans-serif;
	font-size: 0.9375rem;
	letter-spacing: 0.075em;
	line-height: 2rem;
}

@media screen and (max-width: 760px) {
  .event_Price {
	font-size: 0.875rem;
	letter-spacing: 0.05em;
	line-height: 1.5rem;
  }
}

.event_Number {
	padding-top: 2rem;
	font-family: YuGothic, sans-serif;
	font-size: 0.9375rem;
	letter-spacing: 0.075em;
	line-height: 2rem;
}

@media screen and (max-width: 760px) {
  .event_Number {
	padding-top: 1.5rem;
	font-size: 0.875rem;
	letter-spacing: 0.05em;
	line-height: 1.5rem;
  }
}

.event_Delivery {
	padding-top: 2rem;
	font-family: YuGothic, sans-serif;
	font-size: 0.9375rem;
	letter-spacing: 0.075em;
	line-height: 2rem;
}

@media screen and (max-width: 760px) {
  .event_Delivery {
	padding-top: 1.5rem;
	font-size: 0.875rem;
	letter-spacing: 0.05em;
	line-height: 1.5rem;
  }
}

.event_Deadline {
	padding-top: 2rem;
	font-family: YuGothic, sans-serif;
	font-size: 0.9375rem;
	letter-spacing: 0.075em;
	line-height: 2rem;
}

@media screen and (max-width: 760px) {
  .event_Deadline {
	padding-top: 1.5rem;
	font-size: 0.875rem;
	letter-spacing: 0.05em;
	line-height: 1.5rem;
  }
}

.event_Cancel {
	padding-top: 2rem;
	font-family: YuGothic, sans-serif;
	font-size: 0.9375rem;
	letter-spacing: 0.075em;
	line-height: 2rem;
}

@media screen and (max-width: 760px) {
  .event_Cancel {
	padding-top: 1.5rem;
	font-size: 0.875rem;
	letter-spacing: 0.05em;
	line-height: 1.5rem;
  }
}


/* WEDDING */


.wedding_imgBox {
	margin: auto;
	background-color: white;
	position: relative;
	padding-top: 1.75rem;
}

.wedding_imgBox img {
	/*width: 80%;*/
	animation-name: wedding_imgBox;
	-webkit-animation-name: wedding_imgBox;
	animation-duration: 50s;
	-webkit-animation-duration: 50s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	opacity: 0;
}

.wedding_imgBox .w1 {
	display: block;
	margin: 0 auto;
}

.wedding_imgBox .w2 {
	animation-delay:8s;
	-webkit-animation-delay:10s;position: absolute;
	top: 0;
	/*left: 10%;*/
	padding-top: 1.75rem;
}

.wedding_imgBox .w3 {
	animation-delay:16s;
	-webkit-animation-delay:20s;position: absolute;
	position: absolute;
	top: 0;
	/*left: 10%;*/
	padding-top: 1.75rem;
}

.wedding_imgBox .w4 {
	animation-delay:24s;
	-webkit-animation-delay:30s;position: absolute;
	position: absolute;
	top: 0;
	/*left: 10%;*/
	padding-top: 1.75rem;
}

.wedding_imgBox .w5 {
	animation-delay:32s;
	-webkit-animation-delay:40s;position: absolute;
	position: absolute;
	top: 0;
	/*left: 10%;*/
	padding-top: 1.75rem;
}


@keyframes wedding_imgBox {
	0% {
		opacity: 0;
	}
	
	7% {
		opacity: 1;
	}

    18% {
		opacity: 1;
	}

	25% {
		opacity: 0;
	}

	100% {
		opacity: 0;
	}

}

.wedding_Lead {
	padding-top: 4rem;
	padding-bottom: 4rem;
	text-align: center;
	border-bottom: 1px solid #C5CDD1;
}

@media screen and (max-width: 760px) {
  .wedding_Lead {
  padding-top: 2.25rem;
	padding-bottom: 2rem;
	/*text-align: left;*/
  }
}

.wedding_Title {
	font-family:AktivGrotesk-Bold, sans-serif;
	font-size: 1.25rem;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 760px) {
  .wedding_Title {
	font-size: 0.9375rem;
  }
}

.wedding_Text {
	font-family: YuGothic, sans-serif;
	font-size: 0.875rem;
	font-weight: 300;
	letter-spacing: 0.05em;
	line-height: 1.75rem;
	padding-top: 2rem;
}

@media screen and (max-width: 760px) {
  .wedding_Text {
	font-size: 0.75rem;
	line-height: 1.375rem;
	padding-top: 2rem;
	text-align: left;
  }
}

.wedding_Text2 {
	padding-top: 1.5rem;
}

.wedding_Text3 {
	padding-top: 1.5rem;
}

.wedding_Text4 {
	padding-top: 1.5rem;
}

.wedding_Contents {
	padding-top: 4rem;
	padding-bottom: 4rem;
	border-bottom: 1px solid #C5CDD1;
}

@media screen and (max-width: 760px) {
  .wedding_Contents {
	padding-top: 3rem;
	padding-bottom: 3rem;
  }
}

.wedding_Price {
	font-family: YuGothic, sans-serif;
	font-size: 0.9375rem;
	letter-spacing: 0.075em;
	line-height: 2rem;
}

@media screen and (max-width: 760px) {
  .wedding_Price {
	font-size: 0.875rem;
	letter-spacing: 0.05em;
	line-height: 1.5rem;
  }
}

.wedding_Number {
	padding-top: 2rem;
	font-family: YuGothic, sans-serif;
	font-size: 0.9375rem;
	letter-spacing: 0.075em;
	line-height: 2rem;
}

@media screen and (max-width: 760px) {
  .wedding_Number {
	padding-top: 1.5rem;
	font-size: 0.875rem;
	letter-spacing: 0.05em;
	line-height: 1.5rem;
  }
}

.wedding_Delivery {
	padding-top: 2rem;
	font-family: YuGothic, sans-serif;
	font-size: 0.9375rem;
	letter-spacing: 0.075em;
	line-height: 2rem;
}

@media screen and (max-width: 760px) {
  .wedding_Delivery {
	padding-top: 1.5rem;
	font-size: 0.875rem;
	letter-spacing: 0.05em;
	line-height: 1.5rem;
  }
}

.wedding_Deadline {
	padding-top: 2rem;
	font-family: YuGothic, sans-serif;
	font-size: 0.9375rem;
	letter-spacing: 0.075em;
	line-height: 2rem;
}

@media screen and (max-width: 760px) {
  .wedding_Deadline {
	padding-top: 1.5rem;
	font-size: 0.875rem;
	letter-spacing: 0.05em;
	line-height: 1.5rem;
  }
}

.wedding_Cancel {
	padding-top: 2rem;
	font-family: YuGothic, sans-serif;
	font-size: 0.9375rem;
	letter-spacing: 0.075em;
	line-height: 2rem;
}

@media screen and (max-width: 760px) {
  .wedding_Cancel {
	padding-top: 1.5rem;
	font-size: 0.875rem;
	letter-spacing: 0.05em;
	line-height: 1.5rem;
  }
}


/* PROJECT */

.swiper-parent {
	position: relative;
}

.swiper{
	max-width: 100%;
	margin-top: 1.5rem;
  }

@media screen and (max-width: 760px) {
	.swiper {
		 margin-top: 1.25rem;
	}
 }
  
  .swiper-wrappar {
	height: auto;
  }
  
  .swiper-slide {
	height: auto;
  }
  
  .swiper-slide img{
	width: 100%;
	height: 100%;
  }

  .swiper-button-next,
  .swiper-button-prev {
  color: #fff;
  
}

  .swiper [class^="swiper-button-"]::after{
    font-size: 30px;
}

  .swiper-pagination {
	bottom: -28px !important;
	/* position: fixed; */
	position: relative;
  }

  .swiper-pagination-bullet{
    width: 6px;
    height: 6px;
	background-color: #494949;
}

.project_title {
	text-align:center;
	padding-bottom: 16px;
	font-family: AktivGrotesk, sans-serif;
	/* font-family: "garamond-premier-pro", serif; */
	font-weight: 600;
	font-size: 1.5rem;
}

@media screen and (max-width: 760px) {
	.project_title {
		 font-size: 1.25rem;
		 padding-bottom: 12px;
	}
 }

.project_text_wrapper {
	max-width: 900px;
	width: 90%;
	margin: auto;
	padding-top: 72px;
	padding-bottom: 72px;
	border-bottom-style: solid;
	border-bottom-color: #C5CDD1;
	border-bottom-width: thin;
}

@media screen and (max-width: 760px) {
	.project_text_wrapper {
		padding-top: 64px;
	}
 }

.project_text {
	font-family: YuGothic, sans-serif;
	font-size: 0.875rem;
	line-height: 1.875;
	letter-spacing: .05rem;
	padding-top: 16px;
}

@media screen and (max-width: 760px) {
	.project_text {
	line-height: 1.5;
	letter-spacing: .025rem;
	padding-top: 12px;
	}
 }

.project_text_english_wrapper {
	max-width: 900px;
	width: 85%;
	margin: auto;
	padding-top: 56px;
	padding-bottom: 80px;
}

.project_text_english {
	font-family: AktivGrotesk-Light, sans-serif;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.75;
	/* letter-spacing: .025rem; */
}


/* BLOG */

.blog_Inner {
  width: 75%;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding-top: 1rem;
  padding-bottom: 3rem;
  display: grid;
  grid-template-columns: 240px 240px 240px 240px;
}

@media screen and (max-width: 760px) {
   .blog_Inner {
   	  width: 65%;
	    grid-template-columns: 1fr;
   }
}

.posts {
	padding: 1.5rem;
}

@media screen and (max-width: 760px) {
   .posts {
	    padding: 1.5rem;
   }
}

.posttitle {
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  padding-top: 0.25rem;
}

@media screen and (max-width: 760px) {
   .posttitle {
	    font-size: 1.25rem;
   }
}

.postinfo {
	padding-top: 0.25rem;
	text-align: center;
}

.date {
	font-family: aktiv-grotesk-thin, sans-serif;
    font-weight: 200;
	font-size: 0.75rem;
	color: #979898;
	padding-top: 0.35rem;
}

@media screen and (max-width: 760px) {
   .date {
	    font-size: 0.75rem;
   }
}


/* Article */

.blog_title_Inner {
  width: 50%;
  margin: 0 auto;
  padding-top: 6rem;
  text-align: center;
}

@media screen and (max-width: 760px) {
   .blog_title_Inner {
	    width: 75%;
	    padding-top: 3rem;
   }
}

.blog_title {
	font-family:  aktiv-grotesk, sans-serif;
	font-size: 1.75rem;
}

@media screen and (max-width: 760px) {
   .blog_title {
	    font-size: 1.25rem;
   }
}

.blog_date {
	font-family: aktiv-grotesk-thin, sans-serif;
    font-weight: 200;
	font-size: 1.25rem;
	font-weight: 200;
	color: #979898;
	padding-top: 0.25rem;
}

@media screen and (max-width: 760px) {
   .blog_date {
	    font-size: 0.875rem;
   }
}

.blog_article_Inner {
  width: 60%;
  margin: 0 auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media screen and (max-width: 760px) {
   .blog_article_Inner {
	    width: 70%;
	    padding-top: 2.5rem;
      /*padding-bottom: 2rem;*/
   }
}

.postimage_horizontally {
	padding-top: 0.75rem;
	margin:0 auto;
  display:block;
}

.blog_text {
	  padding-top: 2.5rem;
}

.text {
	font-family: YuGothic, sans-serif;
	font-size: 0.875rem;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	line-height: 1.8;
}

.blog_nav {
	font-family: AktivGrotesk-Light, sans-serif;
	border-top: 1px solid #C5CDD1;
	border-bottom: 1px solid #C5CDD1;
	margin-top: 3.75rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
	font-size: 0.875rem;
}

@media screen and (max-width: 760px) {
   .blog_nav {
	    margin-top: 3rem;
	    font-size: 0.625rem;
	    padding-top: 1.75rem;
	    padding-bottom: 1.75rem;
   }
}

/* About */

.about_Inner {
  width: 85%;
  margin: 0 auto;
  padding-top: 6rem;
  padding-bottom: 6rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 760px) {
   .about_Inner {
      display: block;
      width: 60%;
      margin: 0 auto;
      padding-top: 2.5rem;
      /*position: fixed;
      inset: 0;
      margin: auto;*/
   }
}

.self {
	width: 300px;
	margin: 0 auto;
/*	position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;*/
}


@media screen and (max-width: 760px) {
   .self {
      width: 100%;
   }
}

.about_text_Inner {
	text-align: left;
	padding-left: 8rem;
}

@media screen and (max-width: 760px) {
   .about_text_Inner {
   	  padding-left: 0rem;
   }
}

.about_me {
  font-family: aktiv-grotesk-thin, sans-serif;
  font-weight: 200;
  font-size: 1.5rem;
  color: #979898;
  letter-spacing: 0.025em;
}

@media screen and (max-width: 760px) {
   .about_me {
   	  padding-top: 2.5rem;
   }
}

.ocupation {
  font-family: aktiv-grotesk-thin, sans-serif;
  font-weight: 200;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding-top: 2rem;
}

.name {
	font-family: YuGothic, sans-serif;
	font-size: 1.375rem;
	font-weight: normal;
	/*letter-spacing: 0.035em;*/
	padding-top: 0.25rem;
}

@media screen and (max-width: 760px) {
   .name {
   	  /*font-size: 1.25rem;*/
	    /*padding-top: 2.5rem;*/
	    /*text-align: center;*/
   }
}


.about_Text1 {
	padding-top: 1rem;
	font-family: YuGothic, sans-serif;
	font-size: 0.875rem;
	font-weight: normal;
	line-height: 1.5;
	/*letter-spacing: 0.035em;*/
}

@media screen and (max-width: 760px) {
   .about_Text1 {
	    /*font-size: 0.75rem;*/
	    padding-top: 1.25rem;
	    /*line-height: 1.75;*/
	    font-size: 0.75rem;
   }
}

.about_Text2 {
	padding-top: 0.75rem;
	font-family: YuGothic, sans-serif;
	font-size: 0.875rem;
	font-weight: normal;
	line-height: 1.5;
	/*letter-spacing: 0.035em;*/
}

@media screen and (max-width: 760px) {
   .about_Text2 {
	    /*font-size: 0.75rem;*/
	    /*line-height: 1.75;*/
	    padding-top: 1rem;
	    font-size: 0.75rem;
   }
}

.about_Text3 {
	padding-top: 0.75rem;
	font-family: YuGothic, sans-serif;
	font-size: 0.875rem;
	font-weight: normal;
	line-height: 1.5;
	/*letter-spacing: 0.035em;*/
}

@media screen and (max-width: 760px) {
   .about_Text3 {
	    /*font-size: 0.75rem;*/
	    /*line-height: 1.75;*/
	    padding-top: 1rem;
	    font-size: 0.75rem;
   }
}


/* Contact */

.contact_Text_Inner {
  width: 80%;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 1.5rem;
	padding-right: 1.5rem;
}

@media screen and (max-width: 760px) {
   .contact_Text_Inner {
	    width: 80%;
	    padding-left: 0rem;
	    padding-right: 0rem;
   }
}


.contact_Text {
	padding-top: 2rem;
	padding-bottom: 2rem;
	font-family: YuGothic, sans-serif;
	font-size: 1rem;
	line-height: 3.5;
	color: ;
}

@media screen and (max-width: 760px) {
   .contact_Text {
	    text-align: left;
   }
}

.contact_Supplement {
	font-family: YuGothic, sans-serif;
	font-size: 0.85rem;
}