<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=M+PLUS+1p');

body {
    margin: 0;
    padding: 0;
    background-color: #fffdf2;
    font-family: 'M PLUS 1p', sans-serif;
    }


#back{
    max-width: 620px;
    margin: 0 auto;
    background-color: #ffffff;
}

@media screen and (max-width: 480px) {
	/* 480px以下に適用されるCSS（スマホ用） */
    #back{
        width: 95%;
        margin: 0 auto;
        background-color: #ffffff;
    }
}

#lp{
    padding: 0 20px;;
}

h1 {
    font-size: 25px;
  color: #76BF9E;
  text-align: center;
  padding: 0.50em;
  border-top: solid 2px #76BF9E;
  border-bottom: solid 2px #76BF9E;
  background: -webkit-repeating-linear-gradient(-45deg, #f0fff3, #f0fff3 3px,#e4ffe8 3px, #e4ffe8 7px);
  background: repeating-linear-gradient(-45deg, #f0fff3, #f0fff3 3px,#e4ffe8 3px, #e4ffe8 7px);
}

p{
    font-size: 18px;
    margin: 60px 0;
    line-height: 35px;
    text-align: left;
    padding:0 10px;;

}

.txt-big{
    font-size: 135%;
    line-height: 250%;
}

.txt-sm{
    font-size: 50%;
    line-height: 200%;
    margin-bottom: 0;
    padding-bottom: 30px;
}

.txt-u{
    border-bottom: 1px solid #000;
}

.txt-w{
    font-weight: bold;
}

.txt-bl{
    color: #2721d3;
}

.txt-rd{
    color: #e22626;
}

.txt-or{
    color: #ff7b00;
}

.txt-gr{
    color: #2ba75b;
}

.txt-u-rd{
    color: #e22626;
    border-bottom: 1px solid #e22626;
}

div .txt-cn{
    text-align: center;
}

.line-yw {
    background:linear-gradient(transparent 60%, #ff6 60%);
}

.line-bl {
    background:linear-gradient(transparent 60%, rgb(198, 246, 255) 60%);
}

.tyusyaku{
    font-size: 10px;
    float: right;
    color: #888888;
}

/*遷移ボタンアニメーション*/
.animation{
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 1.5s;
  }

.keyframe6 {
    animation-name: poyopoyo;
  }
  
  @keyframes poyopoyo {
    0%, 40%, 60%, 80% {
      transform: scale(1.0);
    }
    50%, 70% {
      transform: scale(0.95);
    }
  }</pre></body></html>