@charset "utf-8";
/* CSS Document */

/* FV用背景&CTAボタンの固定配置 -- ここから -- */
#header {
 position: relative;
 margin-top: 0px; /* 必要であればheader上部の余白を調整 */
}

.section03, .section09, .section11, .section12 {
    position: relative;
}

.btn {
    position: absolute;
    bottom: 6%;
    left: 0%;
    right: 0%;
    cursor: pointer;
    width: 35%;
    margin: 0 auto;
    transition: 0.5s;
}

.fv_cta .btn {
    width: 20%;
    left: 55%;
    bottom: 15%;
}

.section11 .btn {
    bottom: 13%;
}

.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';/*文字詰め*/
    font-family: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS Mincho", serif;
}

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{
	width: 100%;
	margin: 0 auto;
	background: white;
}

video {
    position: absolute;
    bottom: 15%;
    right: 0;
    left: 0;
    width: 55%;
    height: auto;
    text-align: center;
    margin: 0 auto;
    aspect-ratio: 14/9;
}

.section12 {
    text-align: center;
}

.section12 .company h4 {
    position: absolute;
    top: 35%;
    width: 100%;
    text-align: center;
}

.section12 .company .privacy {
    position: absolute;
    bottom: 30%;
    width: 100%;
    text-align: center;
}

.section12 .company .privacy {
    padding: 0;
    margin: 0;
}

.section12 .company h4 a{
    color: #2FFAF0;
    text-decoration: none;
    font-size: clamp(0.9rem, 0.738rem + 0.72vw, 1.6rem);
    letter-spacing: 0.2;
}


.section12 .company .privacy a {
    text-decoration: none;
    color: #fff;
    font-size: clamp(0.8rem, 0.708rem + 0.41vw, 1.2rem);
    letter-spacing: 0.2;
    padding-left: 5px;
}

@media screen and (max-width:768px) {
    .btn {
    bottom: 8%;
    width: 60%;
}

.fv_cta .btn {
    width: 60%;
    left: 0;
    right:0;
    bottom: 6%;
}

video {
    bottom: 10%;
    width: 85%;
    aspect-ratio: 14/9;
}

.section12 .company h4 {
    bottom: 0%;
    top: 21%;
}

.section12 .company .privacy {
    bottom: 21%;
}


}

