@charset "utf-8";
/* CSS Document */
/* .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;
  }
}
.section_gift_display {
  padding-left: 10%;
  padding-right: 10%;
  padding-bottom: 100px;
}

.title_flexbox h2 {
  font-size: 2.4rem;
}
.bird {
  width: 80px;
}
.section_gift_photo_txt_box {
  display: grid;
  width: fit-content;
  column-gap: 2em;
  grid-template-columns: repeat(3, auto);
  margin: 0 auto 60px;
}
.section_gift_photo_txt_box li {
  background-color: #fff;
  list-style: none;
  width: 300px;
  height: 560px;
  margin: 30px auto;
}
/*.section_event_photo_txt_box li:first-child {
  margin-left: 0;
}*/

.section_gift_photo_img {
  height: 300px;
  width: 350px;
}
.section_gift_txt {
  margin: 7%;
}
h3 {
  font-family: "Zen Old Mincho";
  font-size:2.1rem;
  font-weight: 10;
  line-height: 34px;
  margin: 20px 0;
}
.gift {
  width:130px;
  margin: 0 auto;
}
.gift-img {
  width:90%;
}
.section_gift_name {
  margin-bottom: 30px;
}

.gotyuumon {
  display: block;
  width: fit-content;
  padding: 10px 40px;
  margin: 17px auto;
  border-radius: 100px;
  background: #8b888b;
  font-size: 1.4rem;
  letter-spacing: 3px;
}
.event {
  width:150px;
  margin: 30px auto;
}
.event-img {
  width:90%;
}
@media (max-width: 1450px) {
  .section_gift_photo_txt_box {
    grid-template-columns: repeat(1, auto);
    align-items: center;
  }
  .section_gift_photo_txt_flexbox li {
    margin: 0 0 80px 0;
  }
}


@media (max-width: 450px) {
  .section_gift_photo_img {
    height: 280px;
    width: 250px;
    margin:0 auto;
}
  .section_gift_txt {
    width:300px;
    margin: 30px auto;
}
}
@media (max-width: 370px) {
	.section_gift_photo_txt_box li {
  background-color: #fff;
  list-style: none;
  width: 250px;
  height: 560px;
  margin: 30px auto;
}
	  .section_gift_txt {
    width:250px;
    margin: 30px auto;
}
}
/*event========================================================================================================================================================================================================================================================================*/


.section_event_photo_txt_box {
  display: grid;
  width: fit-content;
  column-gap: 2em;
  grid-template-columns: repeat(3, auto);
  margin: 0 auto 60px;
}
.section_event_photo_txt_box li {
  background-color: #fff;
  list-style: none;
  width: 350px;
  height: 560px;
  margin-left: 30px;
}
.section_event_photo_txt_box li:first-child {
  margin: 0 auto;
}

.section_event_photo_img {
  height: 280px;
  width: 250px;
	margin: 0 auto;
}
.section_event_txt {
  margin: 7%;
}
.section_event_txt h3 {
  font-size: 2rem;
  margin-bottom: 30px;
}
.section_event_name {
  margin-bottom: 30px;
}

.gotyuumon {
  display: block;
  width: fit-content;
  padding: 10px 40px;
  margin: 40px auto;
  border-radius: 100px;
  background: #8b888b;
  font-size: 1.4rem;
  letter-spacing: 3px;
}
@media (max-width: 1450px) {
  .section_event_photo_txt_box {
    grid-template-columns: repeat(1, auto);
    align-items: center;
  }
  .section_event_photo_txt_box li {
    margin: 0 0 80px 0;
  }
}
@media (max-width: 370px) {
	.section_event_photo_txt_box li {
  background-color: #fff;
  list-style: none;
  width: 250px;
  height: 560px;
  margin: 30px auto;
}
	  .section_event_txt {
    width:250px;
    margin: 30px auto;
}
}

/*========= ナビゲーションのための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%;
}

/*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;
  }
}