@charset "utf-8";
/* CSS Document */

/* FV用背景&CTAボタンの固定配置 -- ここから -- */
#header {
 position: relative;
 margin-top: 0px; /* 必要であればheader上部の余白を調整 */
}

.cta {
    position: relative;
}

.btn {
    position: absolute;
    left: 0%;
    right: 0%;
    cursor: pointer;
    width: 85%;
    margin: 0 auto;
    animation: poyon 2s infinite;
    transition: 0.5s;
}

@keyframes poyon {
    0% {
        transform: scale(1.0, 1.0) translate(0%, 0%);
    }

    15% {
        transform: scale(0.95, 0.95) translate(0%, 0%);
    }

    30% {
        transform: scale(1.05, 1.05) translate(0%, 0%);
    }

    50% {
        transform: scale(0.95, 0.95) translate(0%, 0%);
    }

    70% {
        transform: scale(1.05, 1.05) translate(0%, 0%);
    }

    100% {
        transform: scale(1.0, 1.0) translate(0%, 0%);
    }
}


.btn:hover {
    opacity: 0.7;
}

.btn01 {
    bottom: 11.5%;
}
.btn02 {
    bottom: 12%;
}
.btn03 {
    bottom: 12%;
}

@media screen and (max-width:768px) {
    .btn {
        width: 85%;
    }

    .section09, .section10 {
        margin-top: -1px;
    }
}

*{
	box-sizing: border-box;
	font-size: 16px;
}

/* FV用背景&CTAボタンの固定配置 -- ここまで -- */

/*大きさの計算*/
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/*iOSフォーム要素の初期化*/
input, button, textarea, select {
	-webkit-appearance: none;
	appearance: none;
}

body {
    margin: 0;
    padding: 0;
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%; /*スマホ横向き時のフォントサイズ*/
	text-size-adjust: 100%; /*スマホ横向き時のフォントサイズ*/
	-webkit-font-feature-settings: 'palt';/*文字詰め*/
	font-feature-settings: 'palt';/*文字詰め*/
}

body *{
  box-sizing: inherit; /* box-sizingの値は継承されないので明示的に設定 */
}

/*画像の調整*/
img {
    max-width: 100%;
    height: auto;
	vertical-align: bottom;
	width: 100%;
}

a:hover {
    opacity: 0.8;
}

/*****LPコーディングここから*****/
.lp-content{
	max-width: 768px;
	margin: 0 auto;
	background: white;
}

/***フッター***/
.footer-section {
    background: #f7f7f7; 
    padding: 1rem;
}

ul.footer-menu {
    display: flex;
    justify-content: center;
}

ul.footer-menu li {
    list-style: none;
}

ul.footer-menu li a {
    color: #585858;
    margin-right: 40px;
    font-size: 1rem;
    text-decoration: none;
}

ul.footer-menu li a:hover {
    color: blue;
}


@media screen and (max-width:768px) {
.section10 {
    margin-top: -1px;
}

	ul.footer-menu {
    text-align: center;
}

ul.footer-menu li a {
    color: #585858;
    display: block;
    margin: 15px 20px 15px 0px;
    font-size: 0.7rem;
}
	
.footer-section {
padding: 0.6rem;
}
}

