@charset "utf-8";

/*--------------------------------
reset
--------------------------------*/
html,body,div,p,img,iframe,a,span,blockquote,q,address,cite,
pre,code,em,small,strong,b,i,
header,article,section,nav,figure,figcaption,hgroup,menu,aside,footer,time,
h1,h2,h3,h4,h5,h6,
ul,ol,li,dl,dt,dd,
table,tbody,thead,tfoot,th,tr,td,
form,fieldset,legend,label,select,input,textarea,button{
    margin: 0;
    padding: 0;
    border: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: baseline;
}
header,article,section,nav,figure,figcaption,hgroup,menu,aside,footer{
    display: block;
}
ul li{
    list-style-type: none;
}
h1,h2,h3,h4,h5,h6{
    font-weight: 500;
}
body{
    line-height: 1;
}
a{
    text-decoration: none;
}
img{
    vertical-align: middle;
}
table{
    border-collapse: collapse;
    border-spacing: 0;
}
select,option,input:not([type=checkbox]):not([type=radio]),textarea,button{
    font: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}
blockquote::before,blockquote::after,q::before,q::after{
    content: '';
    content: none;
}
[type=submit],[type=button],[type=reset],[type=file],button{
    cursor: pointer;
}
:focus{
    outline: none;
}

/*--------------------------------
base
--------------------------------*/
body{
    font-size: 16px;
    line-height: 1.6;
    font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
    color: #323232;
}
html,body,.wrap{
    height: 100%;
}
img{
    max-width: 100%;
    height: auto;
}
.wrap {
    margin: auto;
    max-width: 768px;
}

/*--------------------------------
contents
--------------------------------*/
.top {
    position: relative;
    background: url(../images/top-bg-balloon.webp?1) no-repeat left -10% bottom -8% / 40%,
    url(../images/top-bg-phone.webp?1) no-repeat right -10% bottom -10% / 40%,
    url(../images/top-bg.webp?1) no-repeat center / cover;
}
.top .h1 {
    margin: auto;
    padding: 36% 4%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.top .h1 .top {
    height: inherit;
    min-height: inherit;
    max-height: inherit;
    display: block;
    background: none;
    position: inherit;
    text-align: center;
}
.top .h1 .btm {
    padding-left: 4%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.top .btm .icon-box {
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.top .btm .icon-box img {
    width: 100%;
}
.top .btm .icon-box img:nth-child(2) {
    margin-top: -4px;
}
.top .btm .balloon-box {
    width: 80%;
}
.top .btm .balloon-box img {
    width: 100%;
}
.bg-balloon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.bg-balloon .balloon1,
.bg-balloon .balloon2,
.bg-balloon .balloon3{
    position: absolute;
    z-index: 1;
}
.bg-balloon .balloon1 {
    width: 50%;
    top: 9%;
    right: 4%;
}
.bg-balloon .balloon2 {
    width: 35%;
    left: 26%;
    bottom: 15%;
}
.bg-balloon .balloon3 {
    width: 42%;
    bottom: 5%;
    left: 36%;
}
.bg-scroll {
    height: 100%;
}
.bg-scroll .inner{
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 25%;
}
.bg-scroll .inner .slideshow{
     height: 100%;
     display: flex;
}
.bg-scroll .scroll1 .slideshow {
    -webkit-animation: loop-slide 10s infinite linear both;
    animation: loop-slide 10s infinite linear both;
}
.bg-scroll .scroll2 .slideshow {
    -webkit-animation: loop-slide-r 10s infinite linear both;
    animation: loop-slide-r 10s infinite linear both;
}
.bg-scroll .slideshow .content{
    /* width: 117px; */
    height: 100%;
}
.bg-scroll .slideshow .content img {
    width: auto;
    max-width: inherit;
    height: 100%;
}
@-webkit-keyframes loop-slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
@keyframes loop-slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
@-webkit-keyframes loop-slide-r {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}
@keyframes loop-slide-r {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}
.animated{
    animation-duration: 1s;
    animation-fill-mode: both;
}
.animated.bounceIn{
    animation-duration: .75s;
}
.bounceIn {
    animation-name: bounceIn;
}
@keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3);
    }
    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        transform: scale3d(.9, .9, .9);
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        transform: scale3d(.97, .97, .97);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}
.closing {
    position: relative;
}
.closing .icon {
    width: 23%;
    position: absolute;
    top: 44%;
    left: 4%;
    bottom: 0;
}
.btn-area{
    margin: 0 4% 8%;
}
.stretchy{
    animation: Stretchy 1.2s infinite;
}
@keyframes Stretchy {
	0% 		{transform: scale3d(0.98,0.98,0.98);}
	50% 	{transform: scale3d(1.0,1.0,1.0);}
	100% 	{transform: scale3d(0.98,0.98,0.98);}
}
.footer{
    padding: 4px;
    background: #54b8c6;
    text-align: center;
    color: white;
}

/*--------------------------------
landscape
--------------------------------*/
@media screen and (min-width: 568px){
    .top .h1 {
        padding: 36% 5%;
    }
}

/*--------------------------------
tablet
--------------------------------*/
@media screen and (min-width: 768px){
    .top .h1 .btm {
        padding: 0 6px 0 24px;
    }
}