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

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #F7E6F5;
  /*動き*/
  transition: all 0.6s;
}
/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}
/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}
#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}
/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
	background-color: #ffffff;
}
/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}



/* .main {
  background-image: url("../images/morihana-background.jpg");
  background-position: center;
  background-size: auto 100%;
} */
.gift_page_first-view {
  padding-bottom: 60px;
}
.gift_page_top {
  position: relative;
}
.gift_page_top_img {
  height: 900px;
  width: 100%;
}
.gift_page_top_logo {
  position: absolute;
          top: 4%;
        left: 3%;
        width: 100px;
}
.gift_page_title {
  font-family: "Cormorant Garamond";
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  font-size: 5rem;
  transform: translate(-50%, -50%);
}
@media (max-width: 1145px) {
  .gift_page_top_img {
    height: 500px;
  }
  .gift_page_title {
    font-size: 5rem;
  }
}
.container {
  padding: 70px 80px;
  margin: 0 auto;
  max-width: 1100px;
}
@media (max-width:600px) {
  .container {
    padding: 30px;
    margin: 0 auto;
  }
 }
@media (max-width:450px) {
  .container {
    padding: 20px 20px;
    margin: 0 auto;
  }
}
h2 {
	margin: 30px 30px;
}


@media(min-width:768px) {
  h2 {
  padding: 40px 0px;
    margin:0;
  }
		
	}


.setsumei {
  width: 350px;
  margin: 0 auto;
	padding: 30px;
	font-size: 1.4rem;
  line-height: 1.75;
  letter-spacing: 3px;
  text-align: left;
}

@media(min-width:768px) {
	  .setsumei {
    text-align: left;
    width: 820px;
    margin: 0 auto;
    padding: 50px;
  }
}
@media (max-width:450px) {
	  .setsumei {
  width: 350px;
  margin: 0 auto;
}
}
@media (max-width:370px) {
	  .setsumei {
  width: 270px;
  margin: 0 auto;
}
}

.gotyuumon {
  display: block;
  width: fit-content;
  padding: 10px 40px;
  margin: 17px auto;
  border-radius: 100px;
  background: #8b888b;
  font-size: 1.4rem;
  letter-spacing: 3px;
}


/*footer========================================================================================================================================================================================================================================================================*/
.footer {
  background-color:#F7E6F5;
}
.morihanaseal {
  width: 250px;
  margin: 25px 0 110px;
}
.footer-container {
  width: 100%;
  position: fixed;
  bottom: 0px;
}
@media(min-width:600px) {
  .footer-container {
    display: none;
  }
  .morihanaseal {
    display: none;
  }
}
.footer-container img {
  width: 100%;
}
.footer-container_flex {
  display: flex;
  justify-content: center;
  max-width: 1100px;
  gap: 2px;
  list-style: none;
}
.footer-container_flex li {
  width: 25%;
}
.footer-container_flex2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  list-style: none;
}
.footer-container_flex2 li {
  color: #fff;
  font-size: 1.4rem;
  padding: 0 10px;
  font-family: "REM", sans-serif;
}
.pc-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
}
.morihanaseal-PC {
  width: 80%;
}
.footer-PC_flex {
  display: flex;
  height: 50px;
  background-color: #D387D6;
  justify-content: center;
  gap: 2px;
  list-style: none;
}
@media(max-width:600px) {
  .footer-PC_flex {
    display: none;
  }
}
@media(max-width:600px) {
  .footer-PC_flex {
    display: none;
  }
}
