@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

body{
margin: 0;
padding-top: 60px;
color: #333;
font-family: "Noto Sans JP", sans-serif;
}

*{
box-sizing: border-box;
}

.sp{
display: none;
}

@media screen and (max-width : 767px) {
.sp{
display: block;
}
.pc{
display: none;
}
}
a:hover {
opacity: 0.8;
}
img{
max-width: 100%;
height: auto;
}
ul{
padding: 0;
list-style: none;
}
.inner{
max-width: 1200px;
width: 90%;
margin-left: auto;
margin-right: auto;
}

.head{
display: flex;
background-color: #000;
height: 60px;
position: fixed;
justify-content: space-between;
top: 0;
width: 100%;
z-index: 999;
padding: 10px;
}
.head h1{
margin: 0;
}
.head h1 img{
height: 100%;
width: max-content;	
}
.head_btnWrap{
display: flex;
align-items: center;
}
.head a {
display: block;
height: 40px;
line-height: 40px;
padding: 0 20px;
border-radius: 50px;
font-weight: bold;
text-decoration: none;
transition: 0.3s;
text-align: center;
font-size: 14px;
}
.head_btnWrap a:first-child  {
background: #CC0000;
color: #fff;
}
.head_btnWrap a:last-child {
background: #fff;
color: #CC0000;
margin-left: 10px;
}
@media screen and (max-width : 767px) {
/* .head a {
height: 30px;
line-height: 30px;
padding: 0 10px;
font-size: 12px;
} */
.head{
justify-content: center;
}
.head_btnWrap {
display: none;
}
}
.mv{
background-image: url(../img/mv.jpg);
background-size:cover ;
min-height: 800px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 50px;
text-align: center;
}
.mv .ttl{
background-color: #CC0000;
color: #fff;
font-size: 60px;
font-weight: bold;
padding: 0 20px;
}
.mv .lead{
font-size: 60px;
font-weight: bold;
margin-top: 0;
}
.mv .txt{
font-size: 20px;
}

.mv .btn{
display: block;
margin: 40px auto 0;
width: 400px;
padding: 20px 60px;
border-radius: 50px;
font-weight: bold;
text-decoration: none;
transition: 0.3s;
font-size: 24px;
background: #CC0000;
color: #fff;
}

@media screen and (max-width : 767px) {
.mv{
padding: 30px 20px 60px;
min-height: auto;
height: 70svh;
}
.mv .ttl {
font-size: 20px;
padding: 0 10px;
}
.mv .lead {
font-size: 22px;
}
.mv .logo {
max-width: 50%;
}
.mv .txt {
font-size: 14px;
}
.mv .btn {
max-width: 90%;
font-size: 16px;
}
}

.intro{
text-align: center;
padding: 80px 0 100px;
}

.intro_lead{
font-size: 50px;
font-weight: bold;
}

.intro_box{
background-color:#6A6A6A;
color: #fff;
font-size: 36px;
font-weight: bold;
margin-top: -5px;
border-radius: 10px;
padding: 30px 20px 30px;
}
@media screen and (max-width : 767px) {
.intro {
padding: 40px 0 50px;
}
.intro_lead {
font-size: 20px;
}
.intro_box {
font-size: 18px;
padding: 20px 5px;
}
}

.limit{
background-color:#DFDFDF ;
padding: 110px 0 0;
}

.limit h2{
margin: 0;
text-align: center;
font-size: 50px;
}
.limit h2::after{
content: "";
width: 100px;
height: 15px;
background: #001641;
display: table;
margin: 30px auto 0;
}

.limit ul{
margin: 40px auto 0;
display: flex;
gap: 50px;
background-color: #fff;
max-width: 1200px;
border-radius: 10px;
padding: 30px;
position: relative;
}

.limit ul::after {
content: "";
display: block;
width: 0;
height: 0;
border-style: solid;
border-right: 25px solid transparent;
border-left: 25px solid transparent;
border-top: 30px solid #ffffff;
border-bottom: 0;
position: absolute;
bottom: -30px;
left: calc(50% - 25px);
}

.limit li{
width: calc(100%/3);
text-align: center;
}
.limit li h3{
font-size: 30px;
}
.limit li p{
text-align: left;
font-size: 22px;
}
.limit li p span{
color: #001641;
font-weight: bold;
}
.limit_lead{
/* #AA0000
#CC0000 */
margin-top: 85px;
background-color: #AA0000;
background: linear-gradient(#CC0000, #AA0000);
color: #fff;
text-align: center;
padding: 60px 50px;
font-size: 40px;
font-weight: bold;
}

@media screen and (max-width : 767px) {
.limit {
padding: 50px 0 0;
}
.limit h2 {
font-size: 20px;
}
.limit h2::after{
width: 50px;
height:8px;
margin: 20px auto 0;
}

.limit ul{
flex-direction: column;
gap: 10px;
}
.limit li {
width: 100%;
}
.limit li h3{
font-size: 26px;
}
.limit li p {
font-size: 14px;
}
.limit_lead {
margin-top: 55px;
padding: 20px;
font-size: 18px;
}
}


.cta{
background-image: url(../img/cta_bg.jpg);
background-size:cover ;
padding: 40px 0 70px;
text-align: center;
}

.cta p {
font-size: 40px;
color: #fff;
}

.cta .logo img {
max-width: 360px;
display: block;
margin: 0 auto;
}

.cta_btnWrap {
display: flex;
justify-content: center;
gap: 30px;
margin-top: 40px;
}

.cta_btnWrap div {
text-align: center;
font-size: 22px;
color: #fff;
}

.cta_btnWrap a {
display: block;
margin-top: 8px;
min-width: 400px;
padding: 20px 60px;
border-radius: 50px;
font-weight: bold;
text-decoration: none;
transition: 0.3s;
font-size: 24px;
}
.cta_btnWrap div:first-child a {
background: #CC0000;
color: #fff;
}
.cta_btnWrap div:last-child a {
background: #fff;
color: #CC0000;
}
.cta_btnWrap a:hover {
opacity: 0.8;
}

@media screen and (max-width : 767px) {
.cta p {
font-size: 20px;
}
.cta .logo img{
max-width: 50%;
} 
.cta_btnWrap {
flex-direction: column;
}
.cta_btnWrap div {
font-size: 14px;

}
.cta_btnWrap a {
max-width: 90%;
min-width: auto;
margin: 8px auto 0;
font-size: 18px;
padding: 10px;
}
}


.btob{
background-color: #F8F8F8;
padding: 100px 0 200px;
}
.btob h2{
margin: 0 0 60px;
text-align: center;
font-size: 50px;
}
.btob h2::after{
content: "";
width: 100px;
height: 15px;
background: #CC0000;
display: table;
margin: 30px auto 0;
}
.btob_box{
display: flex;
align-items: center;
max-width: 1100px;
margin-right: auto;
margin-left: auto;
gap: 30px;
}
.btob_box + .btob_box{
margin-top: 60px;
}
.btob_box--r{
flex-direction: row-reverse;
}

.btob_box__txt{
flex: 1;
}

.btob_box__txt h3{
position: relative;
font-family: "Roboto Condensed", sans-serif;
font-optical-sizing: auto;
font-style: italic;
font-weight: 700;
color: #DFDFDF;
font-size: 156px;
margin: 0;
line-height: 1;
}
.btob_box__txt h3 span{
font-size: 40px;
color: #CC0000;
font-style: normal;
position: absolute;
top: 50%;
left: 0;
transform: translateY(-50%);
}
.btob_box__img{
width: 30%;
max-width: 400px;
}
.btob_box__img video{
    max-width: 100%;
}
@media screen and (max-width : 767px) {
.btob{
padding: 100px 0;
}
.btob h2{
font-size: 20px;
}
.btob h2::after{
width: 50px;
height:8px;
margin: 20px auto 0;
}

.btob_box{
flex-direction: column-reverse;
}

.btob_box--r{
flex-direction: column-reverse;
}
.btob_box__txt h3 {
font-size: 85px;
}
.btob_box__txt h3 span {
font-size: 20px;
}
.btob_box__txt p{
margin-top: 0;
}
.btob_box__img {
width: 60%;
}

}

.bnr{
padding: 90px 0 70px;
}
.bnr_box{
display: flex;
width: 90%;
max-width: 1100px;
margin: 0 auto;
align-items: center;
}

.bnr_box > div{
width: 50%;
}

.bnr_box__txt{
padding-left: 90px;
text-align: center;

}

.bnr_box__txt h3{
font-size: 34px;
color: #CC0000;
margin-top: 0;
}

/* .bnr_box__txt h3::after{
content: "";
width: 100px;
height: 15px;
background: #CC0000;
display: table;
margin: 30px auto 0;
} */

.bnr_box__txt{
font-size: 18px;
}

.bnr_box__txt a{
background: #CC0000;
color: #fff;
display: block;
margin: 0 30px;
min-width: 400px;
padding: 15px 60px;
border-radius: 50px;
font-weight: bold;
text-decoration: none;
transition: 0.3s;
font-size: 20px;
}

@media screen and (max-width : 767px) {
.bnr {
padding: 50px 0;
}
.bnr_box {

flex-direction: column-reverse;
}
.bnr_box > div {
width: 100%;
}
.bnr_box__txt {
padding-left: 0;
font-size: 16px;
}
.bnr_box__txt h3 {
font-size: 20px;
margin-top: 20px;
}
.bnr_box__txt h3::after{
width: 50px;
height:8px;
margin: 20px auto 0;
}
.bnr_box__img{
margin-top: 30px;
}
.bnr_box__txt a{
max-width: 100%;
margin: 0;
min-width: auto;
font-size: 18px;
padding: 10px;
}
}


/* form
------------------------------------------------------------------- */
.contact{
background-color: #F8F8F8;
padding: 100px 0 100px;
}

.contact h2{
text-align: center;
font-size: 50px;
margin-top: 0;
}
.contact h2::after{
content: "";
width: 100px;
height: 15px;
background: #CC0000;
display: table;
margin: 30px auto 0;
}



table.form,
table.form * {
max-width: 100%;
box-sizing: border-box;
margin: 0 auto;
}

@media screen and (max-width : 767px) {
.contact{
padding: 50px 0 ;
}
.contact h2{
font-size: 20px;
}
.contact h2::after{
width: 50px;
height:8px;
margin: 20px auto 0;
}
}
@media screen and (min-width : 768px) {
table.form {
}
}
table.form tr {
display: block;
}
table.form th,
table.form td {
text-align: left;
display: block;
padding: 0.25em 0;
}
table.form th {
font-weight: bold;
padding-top: 1em;
}
table.form td input[type="text"]+span {
display: block;
margin-top: 0.25em;
}
table.form input[type="text"],
table.form textarea,
table.form select {
padding: 3px 5px;
border-radius: 6px;
box-sizing: border-box;
border: 1px solid #ccc;
font-size: 14px;
}
table.form input[type="text"],
table.form select {
height: 3em;
background-color: #fff;
}
table.form input[type="text"],
table.form textarea {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
box-shadow: none;
}
table.form .mwform-tel-field input[type="text"] {
width: auto;
}
table.form tr.submit td {
padding-top: 30px;
}
table.form tr.submit p + p {
margin-top: 1em;
}
table.form input[type="submit"],
table.form input[type="button"]
table.form button {
-webkit-appearance: none;
-moz-appearance: none;
font-family: helvetica, arial, "Hiragino Kaku Gothic Pro", "Noto Sans Japanese", "メイリオ", sans-serif;
appearance: none;
box-shadow: none;
background: #cc0000;
border: 0 none;
color: #FFF;
height: 39px;
text-decoration: none;
padding: 0 25px;
cursor: pointer;
overflow: hidden;
margin: 20px 10px 20px 0;
border-radius: 6px;
font-size: 15px;
}
@media screen and (max-width: 767px){
table.form input[type="text"],
table.form textarea,
table.form select {
width: 100%;
margin-bottom: 5px;
}
}

/* thanks
------------------------------------------------------------------- */
#post-content div.thanks,
.l-content div.thanks {}

#post-content div.thanks.center,
.l-content div.thanks.center {
text-align: center;
}
#post-content div.thanks h2,
.l-content div.thanks h2 {
color: #c00;
font-weight: bold;
margin-bottom: 0.5em;
font-size: 26px;
}
#post-content div.thanks p,
.l-content div.thanks p {
margin-bottom: 1em;
}
#post-content div.thanks:not(.center) p,
.l-content div.thanks:not(.center) p {
line-height: 1.7;
font-size: 11px;
}

@media screen and (max-width: 767px){
#post-content div.thanks,
.l-content div.thanks {
padding-bottom: 60px;
}
#post-content div.thanks.center,
.l-content div.thanks.center {
text-align: left;
}
#post-content div.thanks p,
.l-content div.thanks p {
line-height: 1.7;
font-size: 11px;
}
}



.footer{
background-color: #000000;
display: flex;
padding: 30px 5%;
justify-content: space-between;
}



.footer a,
.footer span{
color: #fff;
font-size: 16px;
text-decoration: none;
display: block;
}

@media screen and (max-width: 767px){

.footer{
flex-direction: column-reverse;
gap: 30px;
padding-bottom: 60px;
}
}

.fix_btnWrap{
display: none;
}
@media screen and (max-width: 767px){

.fix_btnWrap{
display: flex;
align-items: center;
justify-content: center;
position: fixed;
width: 100%;
background-color: #000;
height: 60px;
bottom: 0;
left: 0;
}
.fix_btnWrap a {
display: block;
height: 40px;
width: 45%;
max-width: 300px;
line-height: 40px;
padding: 0 15px;
border-radius: 50px;
font-weight: bold;
text-decoration: none;
transition: 0.3s;
text-align: center;
font-size: 13px;
}
.fix_btnWrap a:first-child  {
background: #CC0000;
color: #fff;
}
.fix_btnWrap a:last-child {
background: #fff;
color: #CC0000;
margin-left: 10px;
}

.grecaptcha-badge{
bottom: 75px !important;
}
}