@charset "utf-8";

* {
    box-sizing: border-box;
  }
body {
    margin: 0;
    font-family: 'Klee One', cursive;
    color: #0E466F;
}
a {
    text-decoration: none;
}
.container {    
    width: 80%;
    margin: 0 auto;
}
.clear {
    clear: left;
}

h2 {
    display: inline-block;
    height: 45px;
    padding: 5px 15px;
    font-size: 40px;
    font-family: 'Satisfy', cursive;
    color: #0E466F;
    background-image: linear-gradient(
        rgba(0 0 0 / 0) 90%,
        rgba(235 91 135 / 0.4) 5%
    );
    
}


/* header ==================================================== 　*/
header {
    height: 85px;
    width: 100%;    
    background-color: rgba(243, 243, 243, 0.5);
    position: fixed;
    top: 0;
    z-index: 30;
    box-shadow: 0 2px 1px rgba(0, 0, 0, 0.05);
}
header .container {
    display: flex;
    justify-content: space-between;
}

.header-left {
    width: 400px;
}
.header-left .logo {
    height: 40px;
    margin-top: -13px;
    margin-right: 8px;
    vertical-align: middle;
}
.header-left .title_a {
    font-family: 'Poiret One', cursive;
    text-decoration: none;
    color: #0E466F;
    font-size: 25px;
    line-height: 85px;
}
.header-left .title_b {
    font-size: 23px;
    text-decoration: none;
    color: #0E466F;
}
.openbtn1{
    display: none;
}

.header-right a {
    line-height: 85px;
    padding: 0 25px;
    color: #0E466F;
    display: block;
    float: left;
}
.header-right a:hover {
    border-bottom: double 2px #0E466F;
}

.title_a {
    font-family: Poiret One;
    font-size: 80%;
    text-align: center;
}
.title_b {
    font-size: 30%;
}

/* h-menu 　---------------------------- */
.mainblur{
    filter: blur(8px);
}

#g-nav{
  position:fixed;
  z-index: -1;
  opacity: 0;
  top: 0px;/*85px-*/
  width:100%;
  height: 100vh;/*ナビの高さ-*/
  background:rgba(255,255,255,0.7);/*背景を少し透過*/
  transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
  opacity: 1;
  z-index:999;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;/*はじめは非表示*/
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

#g-nav.panelactive ul {
    display: block;
}
/*リストのレイアウト設定*/

#g-nav li{
  list-style: none;
    text-align: center; 
}

#g-nav li a{
  color: #0E466F;
  text-decoration: none;
  padding:10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*========= ボタン ===============*/
.openbtn1{
    position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
    top:15px;
    right: 30px;
    cursor: pointer;
    width: 50px;
    height:50px;
}
    
/*×に変化*/  
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #0E466F;
    width: 45%;
}

.openbtn1 span:nth-of-type(1) {
    top:15px; 
}
  
.openbtn1 span:nth-of-type(2) {
    top:23px;
}
  
.openbtn1 span:nth-of-type(3) {
    top:31px;
}
  
.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
  
.openbtn1.active span:nth-of-type(2) {
    opacity: 0;
}
  
.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}



/* hero-wrapper 　=========================================== */
.hero-wrapper {
    height: 530px;
    width: 100%;
    padding-top: 180px;
    padding-bottom: 80px;
    background-image: url(../image/hero1.png);
    background-size: cover;
    
}
.hero-wrapper h1 {
    font-family: 'Pacifico', cursive;
    font-size: 70px;
    color: #f3f3f3;
    opacity: 0.5;
    /* letter-spacing: 5px; */
    text-align: center;   
} 
.hero-wrapper p {
    text-align: center;
    line-height: 8px;
}


/* works-wrapper ========================================*/
.works-wrapper {
    padding-top: 40px;
    padding-bottom: 50px;
   
}
.heading {
    padding-bottom: 30px;
}
.works-s {
    display: flex;
}
.works {
    flex: auto;
    width: 32%;
    margin: -10px 0.5%;
    position: relative;
    
}
.works img {
    width: 95%;
    opacity: 0.3;
    animation: fluidrotate 30s ease 0s infinite;/*アニメーション*/
}
@keyframes fluidrotate {  
     0%, 100% {
        border-radius: 27% 73% 36% 64% / 64% 33% 67% 36%;
    }
    28% {
        border-radius: 46% 54% 49% 51% / 54% 49% 51% 46% ;
    }
    56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
    }
    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
    }
    }





.works img:hover {
    opacity: 0.3;
    transition: all 3s;
}

.fuda {
    position: absolute;
    top: 35%;
    left: 8%;
    display: block;
    width: 80%;
    height: 38%;
    background-color: #fff;
    border: solid 2px #7c7c7c;    
    color: #7C7C7C;
    border-radius: 2px;
    box-shadow: 10px 10px #7C7C7C;
    
}
.fuda:hover {
    top: 30%;
    box-shadow: 10px 10px #3d3d3d;
    transition: all 1s;
}

.fuda a {
    display: block;
    text-align: center;
    padding-top: 5%;
    margin-bottom: -8%;
    
}
.fuda span {
    font-family: 'Fredoka', sans-serif;
    color: #7C7C7C;
    font-size: 43px;
}
.fuda span:hover {
    color: #5c5c5c;
    transition: color 1s;
}
.fuda span:active {
    position: relative;
    top: 3px;
}


/* about-wrapper ======================================*/
.h2-about {
    margin-left: 20px;
}
.h3-about {
    display: flex;
    /*
    justify-content: center;
    */
    align-items: center;
    font-size: 18px;
}
.h3-about::before,
.h3-about::after {
    content: '';
    width: 10px;
    height: 2px;
    background-color: orange;
}
.h3-about::before {
    margin-right: 10px;
}
.h3-about::after {
    margin-left: 10px;
}
.checked {
    color: #a59292;
   display: inline-flex;
   vertical-align: text-bottom;
   margin-left: -15px;
   margin-right: 10px;
    
}


.about-wrapper .container {
    margin-top: 100px;
    padding-bottom: 50px;
    margin-bottom: 40px;

    background-color: #FFFDF9;
    border: solid 1px #0E466F;
    border-radius: 5px;
    
}
.about-column {
    display: flex;
    overflow: hidden;
    margin: 20px 100px;
}
.about-left {
    width: 50%;
    
}
.about-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
  
}
.about-right img {
    display: block;
    width: 90%;
    padding: 0 5%;
    
    filter: grayscale(30%);
}




/* contact-wrapper ==================================== */


.contact-wrapper {
    padding-top: 50px;
    padding-bottom: 100px;
}
.c2-contact-wrapper {
    padding-top: 80px;
    padding-bottom: 100px;
}

.contact-column {
    width: 90%;
    margin: 0 auto;
}
.contact-column p {
    text-align: center;
}

.required {
    padding: 5px 10px;
    margin-left: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    background-color: #fbe5f3;
    border-radius: 1px;
}    
.title,
.textarea {
    display: flex;
    margin-top: 10px;
}
 input, 
 textarea {
    display: block;
    align-items: flex-start;
    padding: 10px;
    width: 100%;
    flex: 1;
    border: 0.7px solid #0E466F;
    border-radius: 2px;
    font-family: serif;
    color: #7C7C7C;
}

/* thanks-page 　=========================================== */

.thanks-container {
    margin: 0 auto;
    padding-bottom: 100px;
}
.thanks-container p {
    text-align: center;
}
.thanks-img {
    text-align: center;
}
.thanks-top {
    width: 100%;
    height: 300px;
    padding-top: 150px;
    background-color: #d9e8ec;
}

.thanks {
    width: 600px;
    margin: -130px auto;    
}

.bold {
    font-weight: bold;
    font-size: 20px;
}
.btn-backtop {
    padding-top: 50px;    
    text-align: center;
}
.btn-backtop a {
    display: inline-block;
    border-bottom: 1px solid #7c7c7c;
}













input:focus,
textarea:focus {
    outline: 0;
}

.contact-btn {
    appearance: none;
    display: block;
    border: none;
    background-color: #d9d9d9;
    width: 150px;
    height: 50px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    text-decoration: none;
    color: #fff;
    line-height: 30px;
    border-radius: 4px;
}
.contact-btn:hover {
    background-color: #0E466F;
    transition: all 3s;
}
.contact-btn:active {
   background-color: #162c3c; 
   transition: all 0s;
   position: relative;
   top: 3px;
}


.contact-banner {
    display: none;
    background-color: #d9e8ec;
    
    height: 250px;
    
    width: 100%;
}
.clear {
    clear: left;
}
.contact-banner a {
    
    display: flex;
    align-items: center;
    justify-content: center;    
    font-size: 25px;
    
    color: #0E466F;
    text-decoration: none;
}

.material-symbols-outlined {
  padding-left: 15px;
  padding-top: 5px;
}














/* footer ======================================*/
footer {
    height: 250px;
    background-color: #f3f3f3;
    border-top: 0.2px solid #d2d2d2;
    z-index: 10;
}
footer .container {
    display: flex;
    padding-top: 100px;
}
.footer-left {
    flex: auto;
    width: 25%;
    text-align: center;
    padding-left: 100px;
}
.footer-left img {
    display: inline-block;
    width: 60px;
}

.footer-center {
    flex: auto;
    width: 50%;
    text-align: center;
    font-size: 13px;
    line-height: 10px;

}
.footer-right {
    flex: auto;
    width: 25%;
    text-align: center;
    
    
}
.mail {
    width: 36px;
    float: left;
    margin-top: 15px;
    margin-left: 20px;
}


/* --------------------------------------------works.html----*/
.works-page {
    height: 100%;
    background-color: #f1f1f1;
}
.works-page h2 {
    opacity: 0.6;
    margin-left: 30px;
    margin-top: 0px;
    background-image: linear-gradient(
        rgba(255 253 249 / 0.7) 90%,
        rgba(235 91 135 / 0.4) 5%
    );
}
.column {
    padding-bottom: 50px;
    border-bottom:1px dashed #d9d9d9;
}


.works-container {
    width: 90%;
    margin: 0 auto;
    padding-top: 100px;
    background-color: #FFFDF9; 
    border-left: solid 0.2px #0E466F;
    border-right: solid 0.2px #0E466F;
    height: 100%;
}

.headline {
    margin-top: 100px;
    text-align: center;
    margin-bottom: 80px;
}
.headline img {
    width: 50px;
    margin-bottom: -5px;
}
.headline h3 {
    font-family: 'Delius', cursive;
    font-size: 40px;
    line-height: 5px;
}
.headline h3 span {
    font-size: 20px;
    line-height: 10px;
    margin-left: 5px;
    margin-right: 5px;
}
.headline p {
    line-height: 10px;
}
.small {
    font-size: 15px;
    line-height: 5px;
}
.column {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* works-print ======================================*/
/* animation--*/

.fadeUp{
    animation-name:fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeUpAnime{
      from {
        opacity: 0;
      transform: translateY(100px);
      }
    
      to {
        opacity: 1;
      transform: translateY(0);
      }
    }
.Trigger {
    opacity: 0;
}*/
/* animation---------------------------*/

.cake img {
    flex: auto;
    width: 100%;
    margin: 0 auto;
}
.Rcake-1 , .Rcake-2 {
    flex: auto;
    width: 28%;
}
.menu {
    flex: auto;
    width: 38%;    
}
.sticker,
.bottle,
.kinken {
    flex: auto;
    width: 25%;
}

.description {
    width: 100%;
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: -10px;
    box-sizing: border-box;
}
.description p {
    font-size: 13px;
    text-align: left;
    line-height: 14px;
    letter-spacing: 0.8px;
    padding-left: 10px;
}
.description span {
    border-bottom: 0.5px solid #0E466F;    
}
.pic img {
    width: 100%;
}
.Trigger {
    margin-bottom: 40px;
    margin-left: 3px;
    margin-right: 3px;
    border: 0.3px solid #DFCDC2;
    box-shadow: 0 1px 2px 2px rgba(0, 0, 0, 0.05);
}
.vivi {
    flex: auto;
    width: 30%;
}
.djnow {
    flex: auto;
    width: 30%;
}
.renkei {
    flex: auto;
    width: 20%;
}
.illust-c {
    display: none;
}
.Rcake-3 {
    display: none;
}

/* works-photo ======================================*/

/* modaal---------------------------*/
.content {
    margin: auto;
    display: flex;
    
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 800px;
}

/* modaal-----------窓---------*/
#photo1,
#photo2,
#photo3,
#photo4,
#photo5,
#photo6,
#photo7,
#photo8,
#photo9 {
    display: none;
}
.modaal-close:focus:after,
.modaal-close:focus:before,
.modal-close:hover:after,
.modal-close:hover:before {
    background-color: #666;
}


/* other-photo ======================================*/
.illust {
    flex: auto;
    width: 70%;

}
.illust-b,
.illust-c  {
    flex: auto;
    width: 5%;
}

/*top遷移ボタン========================================================*/
#page-top a{
    display: flex;
    justify-content:center;
    align-items:center;
    background: #0E466F;
    box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.5);
    border-radius: 35px;
    opacity: 0.8;
    width: 70px;
    height: 70px;
    color: #fff;
    text-align: center;
    text-transform: uppercase; 
    text-decoration: none;
    font-size:0.7rem;
    transition:all 0.3s;
  }
  
  #page-top a:hover{
    background: #777;
    color: #fff;
  }
  
  /*リンクを右下に固定*/
  #page-top {
    position: fixed;
    right: 6%;
    bottom:15%;
    z-index: 2;
      /*はじめは非表示*/
    opacity: 0;
    transform: translateY(300px);
  }
  
  /*　上に上がる動き　*/
  
  #page-top.UpMove{
    animation: UpAnime 0.5s forwards;
  }
  @keyframes UpAnime{
    from {
      opacity: 0;
    transform: translateY(100px);
    }
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }
  
  /*　下に下がる動き　*/
  
  #page-top.DownMove{
    animation: DownAnime 0.5s forwards;
  }
  @keyframes DownAnime{
    from {
      opacity: 1;
    transform: translateY(0);
    }
    to {
      opacity: 1;
    transform: translateY(100px);
    }
  }



