@charset "utf-8";
/* CSS Document */

/* FV用背景&CTAボタンの固定配置 -- ここから -- */
#header, .cta {
 position: relative;
 margin-top: 0px; /* 必要であればheader上部の余白を調整 */
}

.btn {
    position: absolute;
    bottom: 12%;
    left: -5%;
    right: 0%;
    cursor: pointer;
    width: 92%;
    margin: 0 auto;
    transition: 0.5s;
}

.btn:hover {
    opacity: 0.7;
    transform: scale(0.9, 0.9);
}

*{
	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';/*文字詰め*/
    background-image: url(img/sp/bgimage.webp);
    background-size: cover;       /* 画像をコンテナに対してカバーさせる */
    background-position: center;  /* 中央に配置 */
    background-repeat: no-repeat;
    background-attachment: fixed; /* 固定スクロール */
}

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;
    box-shadow: 0px 0px 25px lightgray;
}

/***フッター***/
.footer-section {
    background: #3C8C8A; 
    padding: 4rem 4rem 2rem 4rem;
    text-align: center;
}

.logo {
    width: 35%; 
    margin: 0 auto;
    margin-bottom: 40px;
}

footer p {
    margin: 0;
    padding: 0;
    padding-bottom: 20px;
}

footer p a{
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
}

footer small {
    color: #fff;
    font-size: 0.8rem;
}


@media screen and (max-width:768px) {
    .footer-section {
    padding: 2rem 2rem 1rem 2rem;
}
	
	.logo {
    width: 40%; 
    margin-bottom: 20px;
    }

    footer p {
    padding-bottom: 5px;
}

    footer p a {
    font-size: 0.8rem;
    }

    footer small {
        font-size: 0.6rem;
    }

}

