@charset "utf-8";
body{
    background:#f0f0f0;
    font-family:'Baskervville', serif,"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	color: #333;
	font-size:1rem;
	line-height:1.85;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%; 
	word-wrap: break-word;
}

@media screen and (max-width:768px) {
body{
	font-size:0.8rem;
	}
}

ul{
	margin:0;
	padding: 0;
	list-style: none;
}
a{
	color: #fff;
    outline: none;
}
a:hover,
a:active{
	text-decoration: none;
}

.heading-block{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    color: #fff;
    text-align: center;
}
.heading-block h1,
h2{   
    font-family: 'Vollkorn', cursive;
    font-weight: normal;
    font-size:6vw;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #fff;
}
.heading-block p{
    font-size:1.2vw;
    letter-spacing: 0.5em;
}

@media only screen and (max-width:768px) {
.heading-block h1,
    h2{
    font-size:4em;
    line-height: 1.5;
    }
.heading-block p{
    font-size:1.5em;
    letter-spacing: 0.2em;
    }
}

#box3 h2{
    color: #fff;
}

#sns-icon img{
    width: 20px;
}
#sns-icon{
    position: fixed;
    right:20px;
    top:20px;
    display: flex;
}
#sns-icon li{
     margin:0 10px;   
}
#sns-icon a{
    transition: all .5s;
}
#sns-icon a:hover{
    opacity: 0.7;
}


.profile-area{
  width:100%;
  max-width: 300px;
  background:rgba(255,255,255,0.8);
  padding:40px;
  margin: 0 0 0 40px;
  text-align: left;
  letter-spacing: 0.03em;
}

@media screen and (max-width:768px) { 
.profile-area{
   margin:0;
  } 
}


.profile-area h2{
  font-size: 0.9rem;
  margin:0 0 40px 0;
  line-height: 1.8;
  color: #333;
  font-family: 'Baskervville', serif;
  text-align: center;
}

.profile-area h2 span{
  font-size: 1.3rem;
   display: block;
  text-transform: uppercase;
}

.profile-area p{
  margin:0 0 40px 0;
}



.form-list{
    width:100%;
    max-width: 500px;
    margin: 0 auto;
}

.modaal-content-container h3{
    text-align: center;
    margin: 50px 0;
}

@media screen and (max-width:768px) { 
.modaal-content-container h3{
    margin:0 0 20px 0;
}   
}

input , button , textarea , select {
	margin:0;
	padding:0;
	border:none;
	outline:none;
	background:none;
    font-size: 16px;
}

.form-list input[type='text'] , 
.form-list input[type='email'] , 
.form-list textarea{
	width:100%;
	border:1px solid #ccc;
	background:#f8f9fa;
	padding: 10px;
	-webkit-appearance:none;
	   -moz-appearance:none;
	        appearance:none;
}

.form-list input[type='text'] , input[type='email'] {
	height:50px;
}

.submit-btn{
    width:152px;
    margin: 0 auto;
}

input[type='submit']{
    background: #333;
    color: #fff;
    text-align: center;
    padding: 5px 20px;
    width:152px;
    margin: 0 auto;
}

input[type='submit']:hover{
    background: #555;
} 

.form-list dl{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
	padding:0 0 20px 0;
}

.form-list dt{
    width:30%;
}

.form-list dd{
    width:66%;
}

.form-list textarea {
	height:200px;
}

@media screen and (max-width:768px) {
.form-list dt{
	margin:0 0 10px 0;
}
.form-list dt,
.form-list dd{
    width:100%;
}
	
}


/* copyright */

small{
    position: fixed;
    left:20px;
    top:40%;
    color: #fff;
    letter-spacing: 0.1em;
    line-height: 1;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

HTML CSSResult Skip Results Iframe
EDIT ON
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100&display=swap');

html {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(#00bfff, #fff);
}

.sakura {
  position: absolute;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sakura h1 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 5rem;
  color: #fff;
}

.sakura li{
  position: absolute;
  list-style: none;
  top: -50px;
  background: #ffdbed;
  border-radius: 0% 70%;  
  animation: fall 4s linear infinite, sway 2s ease-in-out infinite alternate;
}


@keyframes fall {
  to {
    top: 120%;
  }
}

@keyframes sway1 {
  from {
    transform: translateX(0px) rotate(0deg);
  }
  to {
    transform: translateX(200px) rotate(-45deg);
  }
}

@keyframes sway2 {
  from {
    transform: translateX(200px) rotate(-45deg);
  }
  to {
    transform: translateX(0px) rotate(0deg);
  }
}

.sakura li:nth-child(1){
  left: 0%;
  width: 24px;
  height: 15px;
  animation: fall 10s linear infinite,
             sway1 3s ease-in-out infinite alternate;
  animation-delay: 2s;
}

.sakura li:nth-child(2){
  left: 5%;
  width: 13px;
  height: 9px;
  animation: fall 15s linear infinite,
             sway1 2s ease-in-out infinite alternate;
  animation-delay: 8s;
}

.sakura li:nth-child(3){
  left: 15%;
  width: 16px;
  height: 10px;
  animation: fall 9s linear infinite,
             sway1 3.5s ease-in-out infinite alternate;
  animation-delay: 13s;
}

.sakura li:nth-child(4){
  left: 30%;
  width: 16px;
  height: 10px;
  animation: fall 8s linear infinite,
             sway2 4s ease-in-out infinite alternate;
  animation-delay: 7s;
}
.sakura li:nth-child(5){
  left: 40%;
  width: 16px;
  height: 10px;
  animation: fall 10s linear infinite,
             sway1 4s ease-in-out infinite alternate;
  animation-delay: 0s;
}
.sakura li:nth-child(6){
  left: 55%;
  width: 24px;
  height: 15px;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 3s;
}
.sakura li:nth-child(7){
  left: 65%;
  width: 16px;
  height: 10px;
  animation: fall 7s linear infinite,
             sway2 3.5s ease-in-out infinite alternate;
  animation-delay: 7s;
}
.sakura li:nth-child(8){
  left: 50%;
  width: 13px;
  height: 9px;
  animation: fall 7s linear infinite,
             sway1 3s ease-in-out infinite alternate;
  animation-delay: 3s;
}
.sakura li:nth-child(9){
  left: 80%;
  width: 16px;
  height: 10px;
  animation: fall 10s linear infinite,
             sway2 4s ease-in-out infinite alternate;
  animation-delay: 4s;
}



Resources1× 0.5× 0.25×Rerun