@charset "utf-8";
/* CSS Document */

/* FV用背景&CTAボタンの固定配置 -- ここから -- */
#header {
 position: relative;
 margin-top: 0px; /* 必要であればheader上部の余白を調整 */
}

.cta01, .cta02, .cta03 {
    position: relative;
}

.btn {
    position: absolute;
    bottom: 4.3%;
    left: 0%;
    right: 0%;
    cursor: pointer;
    width: 85%;
    margin: 0 auto;
    transition: 0.5s;
}

.cta01 .btn01,
.cta02 .btn02,
.cta03 .btn03 {
    bottom: 8.2%;
}

.btn:hover {
    opacity: 0.7;
    transform: scale(0.9, 0.9);
}

@media screen and (max-width:768px) {
    .btn {
        width: 90%;
        bottom: 1%;
    }

    #header .btn {
        bottom: 4%;
    }
}

/* 追従ボタン */
.body-in {
    position: relative;
}

.float-button__wrap {
    display: none;
    width: 45%;
    margin: 0 auto;
    height: auto;
    position: fixed;
    bottom: 1%;
    left: 1.5%;
    right: 0;
    z-index: 100;
}

.float-button__wrap a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    transition: 0.5s;
}

.float-button__wrap a:hover {
    opacity: 0.9;
}

/*footerまでスクロールしたら消す*/
.is-hidden {
    visibility: hidden;
    opacity: 0;
  }

@media screen and (max-width:768px) {
.float-button__wrap {
    width: 80%;
    bottom: 0;
  }
}
/* 追従ボタン -終わり- */



*{
	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 15px lightgray;
}

/***フッター***/
.footer-section {
    background: #f7f7f7; 
    padding: 2rem;
}

.footer-section p {
    text-align: center;
}

.logo {
    width: 30%; 
    margin: 0 auto;
}


@media screen and (max-width:768px) {
	ul.footer-menu {
    display: block;
    text-align: center;
}

.footer-section p {
    font-size: 0.7rem;
}
	
	.logo {
    width: 40%; 
    }
	
	.footer-section {
    padding: 1rem;
    }
}

