html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
  font-family: 'Sawarabi Gothic', sans-serif;
  color: #333;
  font-size: 1.2rem;
}
/* defaul */
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style-type: none;
}
a {
  color: #333;
  text-decoration: none;
}
::-webkit-scrollbar{
  width: 4px;
}
::-webkit-scrollbar-track{
  background: #fff;
  border: none;
  border-radius: 4px;
  box-shadow: inset 0 0 2px #ccc; 
}
::-webkit-scrollbar-thumb{
  background: #4790BB;
  border-radius: 4px;
  box-shadow: none;
}
/* use */
.flex {
  display: flex;
}
.ja-cool-font {
  font-family: 'Sawarabi Mincho', sans-serif;
}
.cool-font {
  font-family: 'Londrina Solid', cursive;
}
.mini-text {
  font-size:1rem;
}

.bigbig-font {
  font-size: 7rem;
}
.auto-wrap {
  white-space: pre-wrap; 
}
.dashed-underbar {
  display: inline-block;
  padding-bottom: 0px;
  border-bottom: 4px dashed #fff;
  line-height: 1.5;
}
.bigger-font {
  font-size: 1.6em;
  line-height: 1;
}
.gold-font {
  color: #DF9404;
  text-shadow: 0 0 2px 4px #fff;
}
.red-font {
  color: #E81F29;
}
.yellow-font {
  text-shadow: 0 0 1px gold;

  color: #FFF4E0;
}
.gifted {
  font-family: 'Candal', sans-serif;
}
.topdotted-font {
      padding-top: .4em;
    background-position: top left -2px;
    background-repeat: repeat-x;
    background-size: 1em .3em;
    background-image: radial-gradient(.15em .15em at center center,#fff,#fff 100%,transparent);
}
.layer-button {
  padding: 20px 40px;
  background: none;
  border: none;
  position: relative;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 3px;
  cursor: pointer;
}
.layer-button:after, .layer-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 2px solid #fff;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.layer-button:after {
  -webkit-transform: translate(3px, 3px);
          transform: translate(3px, 3px);
}
.layer-button:before {
  -webkit-transform: translate(-3px, -3px);
          transform: translate(-3px, -3px);
}
.layer-button:hover:after, .layer-button:hover:before {
  -webkit-transform: translate(0);
          transform: translate(0);
}
.layer-button:hover i{
  transform: translateX(4px);
}

.flying-button-wrapper {
  text-align: center;
  padding-bottom: 15px;
}
.flying-button {
  width: 500px;
  height: 50px;
  line-height: 50px;
  background-color: #E81F29;
  border-radius: 8px;
  color: #fff;
  font-family: 'Indie Flower', cursive;
  font-size: 22px;
  font-weight: normal;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-animation-name: hover;
  animation-name: hover;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
.flying-button::before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  opacity: .4;
  -webkit-transform: translateY(6px);
  -ms-transform: translateY(6px);
  transform: translateY(6px);
  -webkit-animation-name: hover-shadow;
  animation-name: hover-shadow;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
.flying-button::hover{

  background-color: #e16e50;
}

@keyframes hover {
  50% {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
  }
  100% {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}
@-webkit-keyframes hover-shadow {
  0% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
    opacity: .4;
  }
  50% {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
    opacity: .4;
  }
}
@keyframes hover-shadow {
  0% {
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
    opacity: .4;
  }
  50% {
    -webkit-transform: translateY(3px);
    -ms-transform: translateY(3px);
    transform: translateY(3px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
    opacity: .4;
  }
}
@-webkit-keyframes hover {
  50% {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }
  100% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}
@keyframes hover {
  50% {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
  }
  100% {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}
/* parts */
.header {
}
.main-header {
  height: 66px;
  align-items: center;
  padding: 0 30px;
  justify-content: space-between;
  border-bottom: 1px solid #d9dcde;
}
.main-header .logo img{
  height: 30px;
}
.main-header .phone img{
  height: 40px;
}
.navbar-nav ul{
  justfy-content: center;
}
.navbar-nav{
  padding: 0 30px;
}
.navbar-nav li{
  width: 19%;
  text-align: center;
  padding: 14px 0px;
}
.navbar-nav li a {
  font-size: 1rem;
}
.navbar-nav li:first-of-type{
  border-bottom: 4px solid #E81F29;

}
.navbar-nav li a{
  display: block;
  border-left: 1px solid #d9dcde;
}
.navbar-nav li:last-of-type a{
  border-right: 1px solid #d9dcde;
}
.section {
}
/* other-parts */
.section-minilp {

}
.letter {
  margin: 0 auto;
    position: relative;
    padding: 10px;
    width: 800px;
    max-width: 90%;
    background: -webkit-repeating-linear-gradient(135deg, #d43 0px, #d43 20px, #fffcfc 20px, #fffcfc 40px, #226 40px, #226 60px, #fffcfc 60px, #fffcfc 80px);
    background: repeating-linear-gradient(135deg, #d43 0px, #d43 20px, #fffcfc 20px, #fffcfc 40px, #226 40px, #226 60px, #fffcfc 60px, #fffcfc 80px);
    -webkit-box-shadow: 0 0 6px rgba(0,0,0,0.6);
    -moz-box-shadow: 0 0 6px rgba(0,0,0,0.6);
    box-shadow: 0 0 6px rgba(0,0,0,0.6);
}
.letter div{
    padding: 20px;
    background: #fffcfc;
    color: #430;
}
.letter h2{
    margin: 0;
}
.letter h2 a{
    margin: 0;
    color: #430;
    font-size: 19px;
}
.letter div p{
    margin: 16px 0 0;
    line-height: 1.61;
}
.letter div p a{
    display: block;
    margin: 6px 0 0;
    color: #27c;
}
.letter .stamp{
  width: 120px;
    float: right;
    margin:0 0 20px 20px;
    padding: 10px;
    background: #fff;
    background: radial-gradient(at center, transparent, transparent 5px, #fff 6px);
    background: -webkit-gradient(radial, center center, 5, center center, 6, from(#fff), color-stop(100%,#fff), color-stop(0%,rgba(255,255,255,0)));
    background-position: -10px -10px;
    background-size: 20px 20px;
    -webkit-filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4));
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4));
}
.letter time{
    position: absolute;
    top: 140px;
    right: 6px;
    display: inline-block;
    padding: 10px;
    width: 100px;
    height: 100px;
    border: 5px double #430;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #430;
    text-align: center;
    font-size: 22px;
    font-family: 'Bree Serif', serif;
    line-height: 100px;
    -webkit-transform: rotate(-16deg);
    -ms-transform: rotate(-16deg);
    transform: rotate(-16deg);
}
.letter time:before{
    position: absolute;
    top: 14%;
    display: block;
    padding: 0 0 8px;
    width: 82%;
    border-bottom:1px solid #430;
    content: 'Posted at :';
    font-size: 16px;
    line-height: 1;
}
.letter time:after{
    position: absolute;
    bottom: 16%;
    display: block;
    padding: 6px 0 0;
    width: 82%;
    border-top: 1px solid #430;
    content: 'from OSAKA';
    font-size: 13px;
    line-height: 1;
}
.letter div p {
	line-height: 1.9;
	/*border-bottom: 2px dashed #dddddd;*/
background: url(../img/bg-note03.png) bottom;
	margin: 0;
	padding: 0;
}

.two-box .left {
  width: 35%;
}
.two-box .left img{
  max-width: 100%;
}
.two-box .right{
  width: 63%;
}

.big-ul h3{
  margin-top: 0;
  margin-bottom: 4px;
  font-size: 2rem;
}
.white-canvas-left{
  width: 100%;
  height: 100%;
 background: -ms-linear-gradient(left,
       rgba(255,255,255, 1),
       rgba(255,255,255, 0.9) 30%,
       rgba(255,255,0, 0));
    background: -moz-linear-gradient(left 45deg,
       rgba(255,255,255, 1),
       rgba(255,255,255, 0.9) 30%,
       rgba(255,255,0, 0));
    background: -webkit-gradient(linear, left top, right top,
       from(rgba(255,255,255, 1)),
       color-stop(0.25, rgba(255,255,255, 0.1)),
       to(rgba(255,255,0, 0)));
    background: linear-gradient(left 45deg,
       rgba(255,255,255, 1),
       rgba(255,255,255, 0.9) 30%,
       rgba(255,255,0, 0));
}
.white-canvas-right{
  width: 100%;
  height: 100%;
 background: -ms-linear-gradient(left,
       rgba(255,255,255, 0),
       rgba(255,255,255, 1) 30%,
       rgba(255,255,0, 1));
    background: -moz-linear-gradient(left 45deg,
       rgba(255,255,255, 0),
       rgba(255,255,255, 1) 30%,
       rgba(255,255,0, 1));
    background: -webkit-gradient(linear, left top, right top,
       from(rgba(255,255,255, 0)),
       color-stop(0.75, rgba(255,255,255, 0.1)),
       to(rgba(255,255,255, 1)));
    background: linear-gradient(left 45deg,
       rgba(255,255,255, 0),
       rgba(255,255,255, 0) 70%,
       rgba(255,255,0, 1));
}
