@charset "UTF-8";
/*PCサイズレスポンシブ*/ @media(min-width:1000px) { 
  body { min-width: 1000px; } /* PCcss */ 
.container{
    background-color: rgb(242, 236, 239);
    min-width: 1000px;
    width: 100%;
}
.hamburger{
  display: none;
 }
 .nav{
  display: none;
 }
.header{
    width: 100%;
    font-size: 20px;
    font-family: Pacifico;
    font-weight: bold; 
    color: rgb(70, 66, 66);
    padding: 0 0 0 40px;
}
.header img{
  width: 30%;
  padding: 10px 0 0 0;
  border-radius: 20px;
}
.header{
  width: 30%;
}
.header2{
  width: 70%;
}
.header1{
  display: flex;
  align-items: center;
}
.header2 ul{
    display: flex;
    justify-content: space-around;
    color: rgb(217, 193, 201);
    width: 70%;
  margin: 0 auto;
}
.header2 li{
    list-style: none;
    font-size: 22px;
    color: rgb(217, 193, 201);
}
.word h1{
  font-size: 18px;
  font-family: serif;
  color: dimgrey;
}
.word h2{
  font-size: 16px;
  font-family: serif;
  color: dimgrey;
}
.img-wrap {
    --animation-duration: 6s;
  
    display: grid;
    overflow: hidden;
    place-content: center;
    position: relative;

  }
  
  .img-container {
    aspect-ratio: 16 / 12;
    grid-area: 1 / -1;
  }
  
  .img-container:first-child {
    animation: img-container-first var(--animation-duration) linear forwards;
  }
  
  .img-container:last-child {
    animation: img-container-last var(--animation-duration) linear calc(
        var(--animation-duration) / 2
      )
      forwards;
    z-index: -1;
  }
  
  .img-container::before,
  .img-container::after {
    animation: 6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    background: rgb(242, 236, 239);
    content: '';
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    z-index: 1;
  }
  
  .img-container::before {
    animation-name: img-container-before;
    bottom: 50%;
    top: 0;
  }
  
  .img-container::after {
    animation-name: img-container-after;
    bottom: 0;
    top: 50%;
  }
  
  .img-container:last-child::before,
  .img-container:last-child::after {
    animation-delay: calc(var(--animation-duration) / 2);
  }
  
  .img-wrap img {
    height: 150%;
    object-fit: cover;
    width: 150%;
  }
  
  @keyframes img-container-first {
    80% {
      opacity: 1;
    }
  
    95% {
      opacity: 0;
    }
  
    100% {
      opacity: 0;
    }
  }
  
  @keyframes img-container-last {
    0% {
      opacity: 0;
      z-index: 1;
    }
  
    10% {
      opacity: 1;
      z-index: 1;
    }
  
    100% {
      opacity: 1;
      z-index: 1;
    }
  }
  
  @keyframes img-container-before {
    100% {
      transform: translateX(100%);
    }
  }
  
  @keyframes img-container-after {
    100% {
      transform: translateX(-100%);
    }
  }
  #app {
    width: 400px;
    margin: 30px auto;
    padding: 13px;
    line-height: 1.5;
    border: 1px solid #ffffff;
    border-radius: 5px;
    background-color: transparent;
    box-shadow: 2px 2px 5px 0px rgba(200, 200, 200, 1);
    font-family: "Times New Roman";
}

#typewriter::after {
    content: "|";
    animation-name: blink;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes blink {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

a.cp_btn {
	position: relative;
	display: block;
	width: 140px;
	padding: 0.5em;
	text-align: center;
	text-decoration: none;
	color: #fff;
	background: #e699b3;
	border:1px solid #fff;
	overflow: hidden;}

a.cp_btn:before {
	content:"";
	position: absolute;
	top: 0px;
	left: -150px;
	height: 100%;
	width: 160px;
	background : #fff;
	opacity: 0.3;
	transition: .4s;
}
a.cp_btn:hover:before {
	left:0;
}

}
/*ipadサイズレスポンシブ*/ 
@media(min-width:600px) and (max-width:999px) { 
  body {
     min-width: 600px;
     max-width: 999px; 
    } 
 .container{
     background-color: rgb(242, 236, 239);
     width: 100%;
 }
 .hamburger{
  display: none;
 }
 .nav{
  display: none;
 }
 .header{
     width: 100%;
     font-size: 20px;
     font-family: Pacifico;
     font-weight: bold; 
     color: rgb(70, 66, 66);
     padding: 0 0 0 40px;
 }
 .header img{
   width: 30%;
   padding: 10px 0 0 0;
   border-radius: 20px;
 }
 .header{
   width: 30%;
 }
 .header2{
   width: 70%;
 }
 .header1{
   display: flex;
   align-items: center;
 }
 .header2 ul{
     display: flex;
     justify-content: space-around;
     color: rgb(217, 193, 201);
 }
 .header2 li{
     list-style: none;
     font-size: 16px;
     color: rgb(217, 193, 201);
 }
 .word h1{
   font-size: 16px;
   font-family: serif;
   color: dimgrey;
 }
 .word h2{
   font-size: 14px;
   font-family: serif;
   color: dimgrey;
 }
 .img-wrap {
     --animation-duration: 6s;
   
     display: grid;
     overflow: hidden;
     place-content: center;
     position: relative;
 
   }
   
   .img-container {
     aspect-ratio: 16 / 12;
     grid-area: 1 / -1;
   }
   
   .img-container:first-child {
     animation: img-container-first var(--animation-duration) linear forwards;
   }
   
   .img-container:last-child {
     animation: img-container-last var(--animation-duration) linear calc(
         var(--animation-duration) / 2
       )
       forwards;
     z-index: -1;
   }
   
   .img-container::before,
   .img-container::after {
     animation: 6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
     background: rgb(242, 236, 239);
     content: '';
     left: 0;
     pointer-events: none;
     position: absolute;
     right: 0;
     z-index: 1;
   }
   
   .img-container::before {
     animation-name: img-container-before;
     bottom: 50%;
     top: 0;
   }
   
   .img-container::after {
     animation-name: img-container-after;
     bottom: 0;
     top: 50%;
   }
   
   .img-container:last-child::before,
   .img-container:last-child::after {
     animation-delay: calc(var(--animation-duration) / 2);
   }
   
   .img-wrap img {
     height: 100%;
     object-fit: cover;
     width: 100%;
   }
   
   @keyframes img-container-first {
     80% {
       opacity: 1;
     }
   
     95% {
       opacity: 0;
     }
   
     100% {
       opacity: 0;
     }
   }
   
   @keyframes img-container-last {
     0% {
       opacity: 0;
       z-index: 1;
     }
   
     10% {
       opacity: 1;
       z-index: 1;
     }
   
     100% {
       opacity: 1;
       z-index: 1;
     }
   }
   
   @keyframes img-container-before {
     100% {
       transform: translateX(100%);
     }
   }
   
   @keyframes img-container-after {
     100% {
       transform: translateX(-100%);
     }
   }
   #app {
     width: 400px;
     margin: 30px auto;
     padding: 13px;
     line-height: 1.5;
     border: 1px solid #ffffff;
     border-radius: 5px;
     background-color: transparent;
     box-shadow: 2px 2px 5px 0px rgba(200, 200, 200, 1);
     font-family: "Times New Roman";
 }
 
 #typewriter::after {
     content: "|";
     animation-name: blink;
     animation-duration: 2s;
     animation-iteration-count: infinite;
 }
 
 @keyframes blink {
     from {
         opacity: 0;
     }
     to {
         opacity: 1;
     }
 }
 
 a.cp_btn {
   position: relative;
   display: block;
   width: 100px;
   padding: 0.5em;
   text-align: center;
   text-decoration: none;
   color: #fff;
   background: #e699b3;
   border:1px solid #fff;
   overflow: hidden;}
 
 a.cp_btn:before {
   content:"";
   position: absolute;
   top: 0px;
   left: -150px;
   height: 100%;
   width: 160px;
   background : #fff;
   opacity: 0.3;
   transition: .4s;
 }
 a.cp_btn:hover:before {
   left:0;
 }
 
 }
/*SPサイズレスポンシブ*/ @media(max-width:599px) { 
  body { 
    max-width: 599px; 
  }
   .container {
     width: 100%; 
    } 
    .container{
      background-color: rgb(242, 236, 239);
      width: 100%;
  }
  /* ===============================================
ハンバーガーボタンのスタイリング
=============================================== */
.hamburger {
  width: 30px;
  height: 50px;
  position: fixed;
  top: 10px;
  right: 35px;
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background-color: rgb(242, 236, 239);
  cursor: pointer;
  z-index: 300;
}
.hamburger span,
.hamburger span::after,
.hamburger span::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: rgb(126, 113, 115);
  transition: all 0.5s;
}
.hamburger span::before {
  top: -10px;
}
.hamburger span::after {
  bottom: -10px;
}
.hamburger.open span {
  background-color: transparent;
}
.hamburger.open span::before {
  top: 0;
  transform: rotate(45deg);
}
.hamburger.open span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* ===============================================
メニューのスタイリング
=============================================== */
.nav {
  position: fixed;
  width: 60%;
  height: 30vh;
  top: 90px;
  right: -120%;
  background-color: #c9d3d7;
  padding: 50px 0;
  transition: all 0.5s;
  border-top: 1px solid #fff;
  z-index: 1000;
  
}
.nav__item a {
  display: block;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  padding: 10px 0 20px 50px;
  text-transform: uppercase;
  
}
.nav__item a:hover {
  color: #abc2cc;
  background-color: #fff;
}
.nav.open {
  right: 0;
  
}
.nav__list{
  list-style: none;
}
  .header{
      width: 100%;
      font-size: 20px;
      font-family: Pacifico;
      font-weight: bold; 
      color: rgb(70, 66, 66);
      padding: 0 0 0 40px;
  }
  .header img{
    width: 30%;
    padding: 10px 0 0 0;
    border-radius: 20px;
  }
  .header{
    width: 30%;
  }
  .header2{
    width: 70%;
    display: none;
  }
  .header1{
    display: flex;
    align-items: center;
  }
  .header2 ul{
      display: flex;
      justify-content: space-around;
      color: rgb(217, 193, 201);
  }
  .header2 li{
      list-style: none;
      font-size: 16px;
      color: rgb(217, 193, 201);
  }
  .word h1{
    font-size: 16px;
    font-family: serif;
    color: dimgrey;
  }
  .word h2{
    font-size: 14px;
    font-family: serif;
    color: dimgrey;
  }
  .img-wrap {
      --animation-duration: 6s;
    
      display: grid;
      overflow: hidden;
      place-content: center;
      position: relative;
  
    }
    
    .img-container {
      aspect-ratio: 16 / 12;
      grid-area: 1 / -1;
    }
    
    .img-container:first-child {
      animation: img-container-first var(--animation-duration) linear forwards;
    }
    
    .img-container:last-child {
      animation: img-container-last var(--animation-duration) linear calc(
          var(--animation-duration) / 2
        )
        forwards;
      z-index: -1;
    }
    
    .img-container::before,
    .img-container::after {
      animation: 6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
      background: rgb(242, 236, 239);
      content: '';
      left: 0;
      pointer-events: none;
      position: absolute;
      right: 0;
      z-index: 1;
    }
    
    .img-container::before {
      animation-name: img-container-before;
      bottom: 50%;
      top: 0;
    }
    
    .img-container::after {
      animation-name: img-container-after;
      bottom: 0;
      top: 50%;
    }
    
    .img-container:last-child::before,
    .img-container:last-child::after {
      animation-delay: calc(var(--animation-duration) / 2);
    }
    
    .img-wrap img {
      height: 100%;
      object-fit: cover;
      width: 100%;
    }
    
    @keyframes img-container-first {
      80% {
        opacity: 1;
      }
    
      95% {
        opacity: 0;
      }
    
      100% {
        opacity: 0;
      }
    }
    
    @keyframes img-container-last {
      0% {
        opacity: 0;
        z-index: 1;
      }
    
      10% {
        opacity: 1;
        z-index: 1;
      }
    
      100% {
        opacity: 1;
        z-index: 1;
      }
    }
    
    @keyframes img-container-before {
      100% {
        transform: translateX(100%);
      }
    }
    
    @keyframes img-container-after {
      100% {
        transform: translateX(-100%);
      }
    }
    #app {
      width: 330px;
      margin: 25px auto;
      padding: 11px;
      line-height: 1;
      border: 1px solid #ffffff;
      border-radius: 5px;
      background-color: transparent;
      box-shadow: 2px 2px 5px 0px rgba(200, 200, 200, 1);
      font-family: "Times New Roman";
      font-size: 13px;
  }
  
  #typewriter::after {
      content: "|";
      animation-name: blink;
      animation-duration: 2s;
      animation-iteration-count: infinite;
  }
  
  @keyframes blink {
      from {
          opacity: 0;
      }
      to {
          opacity: 1;
      }
  }
  
  a.cp_btn {
    position: relative;
    display: block;
    width: 100px;
    padding: 0.5em;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: #e699b3;
    border:1px solid #fff;
    overflow: hidden;}
  
  a.cp_btn:before {
    content:"";
    position: absolute;
    top: 0px;
    left: -150px;
    height: 100%;
    width: 160px;
    background : #fff;
    opacity: 0.3;
    transition: .4s;
  }
  a.cp_btn:hover:before {
    left:0;
  }
  /* タブレットcss */ 
  }