@charset "utf-8";
/*共通設定*/
body {
    position: relative;
    font-weight: 500;
    font-size: 18px;
}

.bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    background-image: url(../img/bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 100vh;
}

.wrap {
    position: relative;
    background-color: #fff;
    z-index: 2;
}
/*終わり*/  


/*<header class="header">*/
.header {
    background-color: #96bcd3;
}

.thanks-h1-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.thanks-logo {
    max-width: 200px;
    width: 100%;
}

.thanks-h1 {
    font-weight: 600;
    font-size: 24px;
    color: #FFF;
}
/*終わり*/  


/*<section class="thanks">*/
.thanks-in {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.thanks-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.thanks-h2 {
    background-color: #96bcd3;
    padding: 8px;
    text-align: center;
    color: #FFF;
    font-weight: 600;
    font-size: 24px;
}

.thanks-img-wrap {
	display: inline-block;
	overflow: hidden;
	position: relative;
}

.thanks-img-wrap::after {
    animation: 4s shine linear infinite;
	background: linear-gradient(to right, rgba(255,255,255,0) 25%, rgba(255,255,255,.6) 50%, rgba(255, 255, 255, 0) 75%);
	content: '';
	height: 100%;
	left: -100%;
	position: absolute;
	top: 0;
	transform: skewX(-15deg);
	width: 100%;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    10% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.thanks-img {
    display: block;
    width: 100%;
}

.thanks-txt-01 {
    text-align: center;
}

.thanks-txt-01 .line-txt {
    color: #96bcd3;
    border-bottom: solid 1px #96bcd3;
    line-height: 2;
}

.thanks-info-wrap {
    text-align: center;
}

.thanks-info-icon {
    max-width: 120px;
    width: 100%;
}

.thanks-txt-wrap-0203 {
    text-align: center;
}
/*終わり*/  


/*<footer class="footer">*/
/*終わり*/  


/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
/*終わり*/  


/*<header class="header">*/
/*終わり*/ 
}
  
  
/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
    body {
        font-size: clamp(16px, 18vw / 5.99, 18px);
    }
/*終わり*/ 


/*<header class="header">*/
    .header {
        padding: clamp(56px, 80vw / 5.99, 80px) 3vw;
    }

    .thanks-logo {
        max-width: clamp(120px, 200vw / 5.99, 200px);
    }

    .thanks-h1 {
        font-size: clamp(20px, 24vw / 5.99, 24px);
    }
/*終わり*/ 


/*<section class="thanks">*/
    .thanks {
        padding: clamp(64px, 80vw / 5.99, 80px) 3vw;
    }

    .thanks-in {
        gap: clamp(64px, 80vw / 5.99, 80px);
    }

    .thanks-h2 {
        font-size: clamp(18px, 24vw / 5.99, 24px);
    }

    .thanks-txt-01 {
        text-align: left;
    }

    .thanks-info-icon {
        max-width: clamp(100px, 120vw / 5.99, 120px);
    }

    .thanks-txt-wrap-0203 {
        text-align: left;
    }

/*終わり*/ 
}
