@charset "utf-8";
:root {--color-off: #FF4D62;}
:root {--color-on: #38B9B9;}
.on{
    display: none;
}
.switch-on .on{
    display: block;
}
.switch-on .off{
    display: none;
}
body{
    color: #FFF;
    background: #233a45;
    transition: background .5s;
}
body.switch-on{
    color: #352D2A;
    background: #FFF;
}
section{
    display: block;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.inner{
    width: 90%;
    max-width: 1045px;
	position: relative;
	margin: 0 auto;
}
h2,h3,h4,h5,h6{
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
}
p{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 2.6;
    letter-spacing: 0.08em;
}
.under{
    text-decoration: underline;
}
.nounder{
    text-decoration: none !important;
}
.title{
    font-size: 44px;
}
.title span{
    display: block;
    font-size: 20px;
    letter-spacing: 0.1em;
    color: var(--color-off);
    margin: 0 0 30px;
}
.switch-on .title span{
    color: var(--color-on);
}
@media screen and (max-width: 820px) {
    section{
        padding: 40px 0;
    }
    .inner{
        max-width: 580px;
    }
    p{
        font-size: 14px;
    }
   .title{
        font-size: 24px;
    }
    .title span{
        font-size: 16px;
        margin: 0 0 15px;
    } 
}
/*=========================================================================================*/
/*fv*/
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: background .5s;
}
header.movement{
    background: rgba(255,255,255,0.10);
}
header h1{
    width: 315px;
    position: relative;
    top: -5px;
    z-index: 1;
}
header h1 a{
    display: block;
}
/*nav中身*/
.headNav{
    width: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.headNav nav{
    width: fit-content;
}
.headNav nav ul{
    width: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.headNav nav ul li {
    width: fit-content;
    padding: 0 10px;
    border-right: solid 1px #FFF;
}
.switch-on .headNav nav ul li {
    border-right: solid 1px #000;
}
.headNav nav ul li:nth-child(4),
.headNav nav ul li:nth-child(5){
    border-right: none;
}
.headNav nav ul li:nth-child(5){
    padding: 0 30px 0 10px;
}
.headNav nav ul li a{
    width: fit-content;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.06em;
}
.headNav nav ul li:nth-child(5) a{
    color: var(--color-off);
}
.switch-on .headNav nav ul li:nth-child(5) a{
    color: var(--color-on);
}
/*on-off switch*/
.btnSwitch{
    width: fit-content;
    display: flex;
    align-items: center;
}
.btnSwitch img{
    width: 30px;
    margin: 0 3px 0 0;
    position: relative;
    top: -3px;
}
.btnSwitch div{
    width: 50px;
    height: 20px;
    border-radius: 30px;
    background: #D9D9D9;
    position: relative;
}
.btnSwitch div span:nth-child(1){
    display: block;
    height: 20px;
    position: relative;
}
.btnSwitch div span:nth-child(1)::before{
    display: block;
    content: "OFF";
    font-family: 'Lato', sans-serif;
    font-size: 10px;
    color: #979797;
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    transition: left .5s;
}
.switch-on .btnSwitch div span:nth-child(1)::before{
    content: "ON";
    left: 25px;
}
.btnSwitch div span:nth-child(2){
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-off);
    position: absolute;
    top: 50%;
    right: 3px;
    transform: translateY(-50%);
    transition: right .5s;
}
.switch-on .btnSwitch div span:nth-child(2){
    background: var(--color-on);
    right: 30px;
}
.openbtn1{
    display: none;
}
@media screen and (max-width: 820px) {
    header {
        padding: 10px 15px;
    }
    header.movement{
        background: none;
    }
    header h1{
        width: 210px;
    }
    .headNav nav{
        width: 100%;
        height: 100svh;
        background: rgba(0,0,0,0.80);
        position: fixed;
        top: -100svh;
        left: 0;
        transition: top 1s;
    }
    .switch-on .headNav nav{
        background: rgba(255,255,255,0.80);
    }
    .pcNav .headNav nav{
        top: 0;
    }
    /*on-off switch*/
    .btnSwitch {
        position: fixed;
        top: 22px;
        right: 80px;
    }
    .btnSwitch img.off,
    .switch-on .btnSwitch img.on{
        display: none;
    }
    .openbtn1{
        display: block;
        width: 65px;
        height: 65px;
        cursor: pointer;
        padding: 20px 15px;
        background: #000;
        position: fixed;
        top: 0;
        right: 0;
    }
    .openbtn1 span{
        display: block;
        transition: all .4s;
        position: relative;
        top: 2px;
        width: 100%;
        height: 1.5px;
        background: #FFF;
        margin: 0 auto;
    }
    .openbtn1 span:nth-of-type(2) { 
        top: 10px;
        opacity: 1;
    }
    .openbtn1 span:nth-of-type(3) { 
        top: 18px;
    }
    .openbtn1.active span:nth-of-type(1) {
        top: 5.5px;
        transform: translateY(6px) rotate(-30deg);
    }
    .openbtn1.active span:nth-of-type(2) { 
        opacity: 0;
    }
    .openbtn1.active span:nth-of-type(3){
        top: 14.5px;
        transform: translateY(-6px) rotate(30deg);
    }
    /*nav中身*/
    .headNav nav ul{
        width: 100%;
        flex-wrap: wrap;
        padding: 120px 0 0;
    }
    .headNav nav ul li {
        width: 100%;
        text-align: center;
        padding: 20px 20px;
        border-right: none;
        border-bottom: solid 1px #FFF;
    }
    .switch-on .headNav nav ul li {
        border-bottom: solid 1px #000;
    }
    .headNav nav ul li:nth-child(5){
        padding: 20px 20px;
    }
}
@media screen and (max-width: 520px) {
    header h1 {
        width: 185px;
    }
    .headNav nav ul{
        padding: 80px 0 0;
    }
}
/*=========================================================================================*/
/*fv*/
#fv{
    display: block;
    padding: 110px 0 60px;
}
#fv .inner{
    max-width: 1230px;
    height: 100%;
}
#fv .catch{
    max-width: 693px;
    position: absolute;
    bottom: 20px;
    left: 0;
    z-index: 1;
}
#fv .imageBox{
    width: 1029px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 0 auto;
    position: relative;
    right: -200px;
}
#fv .imageBox img{
    border-radius: 15px;
}
#fv .imageBox img:nth-child(1){
    width: 100%;
    height: 280px;
    margin: 0 0 15px;
}
#fv .imageBox img:nth-child(2){
    width: 390px;
    height: 277px;
}
#fv .imageBox img:nth-child(3){
    width: 618px;
    height: 277px;
}
@media screen and (max-width: 820px) {
    #fv{
        height: 100svh;
        background: center / cover no-repeat url("../img/fv-sp.jpg");
    }
    #fv .catch {
        bottom: 0;
    }
    #fv .imageBox{
        display: none;
    }
}
/*=========================================================================================*/
/*about*/
#about .title span,
#service .title span{
    margin: 0 0 80px;
}
#about .title,
#service .title{
    margin: 0 0 30px;
    position: relative;
}

#about p{
    max-width: 654px;
    position: relative;
}
#about img{
    width: 525px;
    position: absolute;
    top: -25px;
    right: -70px;
}
@media screen and (max-width: 820px) {
    #about .inner{
        padding: 100px 0 0;
    }
    #about .title,
    #service .title{
        margin: 0 0 20px;
    }
    #about .title span,
    #service .title span{
        margin: 0 0 20px;
    }
    #about img{
        width: 300px;
        top: -40px;
        opacity: .5;
    }
}
@media screen and (max-width: 520px) {
}
/*=========================================================================================*/
/*service*/
#service .inner{
    max-width: 1230px;
    padding: 80px 0 0 ;
}
#service .imageBox{
    width: 672px;
    position: absolute;
    top: 35px;
    left: -70px;
}
#service .imageBox img{
    border-radius: 20px;
    position: absolute;
}
#service .imageBox img:nth-child(1){
    width: 240px;
    top: 0;
    left: 0;
}
#service .imageBox img:nth-child(2){
    width: 297px;
    top: -33px;
    left: 260px;
}
#service .imageBox img:nth-child(3){
    width: 464px;
    height: 278px;
    top: 164px;
    left: -80px;
}
#service .imageBox img:nth-child(4){
    width: 265px;
    top: 164px;
    left: 404px;
}
#service .imageBox img:nth-child(5){
    width: 190px;
    top: 344px;
    left: 404px;
}
#service .imageBox img:nth-child(6){
    width: 297px;
    top: 465px;
    left: 85px;
}
#service .textBox{
    max-width: 587px;
    margin: 0 0 0 auto;
    position: relative;
}
#service p{
    max-width: 527px;
    margin: 0 0 20px;
}
#service ul{
    display: flex;
    margin: 0 0 60px;
}
#service ul .tag{
    margin: 0 20px 0 0; 
}
.tag{
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 130px;
    width: fit-content;
    height: 30px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #FFF;
    padding: 0 15px;
    border-radius: 20px;
    background: var(--color-off);
}
.switch-on .tag{
    background: var(--color-on);
}
#service h3{
    font-size: 31px;
    margin: 0 0 10px;
}
@media screen and (max-width: 820px) {
    #service .imageBox{
        top: 0;
        left: 0;
        opacity: 0.3;
    }
    #service .imageBox img{
        border-radius: 10px;
    }
    #service .imageBox img:nth-child(1){
        width: 120px;
    }
    #service .imageBox img:nth-child(2){
        width: 150px;
        top: -19px;
        left: 130px;
    }
    #service .imageBox img:nth-child(3){
        width: 230px;
        height: 170px;
        top: 82px;
        left: -50px;
    }
    #service .imageBox img:nth-child(4){
        width: 130px;
        top: 130px;
        left: 188px;
    }
    #service .imageBox img:nth-child(5){
        width: 100px;
        top: 220px;
        left: 188px;
    }
    #service .imageBox img:nth-child(6){
        width: 150px;
        top: 263px;
        left: 30px;
    }
    /**/
    #service .textBox{
        margin: 0 auto;
    }
    #service ul {
        margin: 0 0 40px;
    }
    .tag {
        min-width: 76px;
        font-size: 10px;
    }
    #service ul .tag {
        margin: 0 10px 0 0;
    }
    #service h3 {
        font-size: 22px;
    }
}
@media screen and (max-width: 520px) {
}
/*=========================================================================================*/
/*works*/
#works{
    padding: 0;
}
#works .title{
    font-size: 31px;
    margin: 0 0 60px;
}
.postList{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.postList li{
    width: 49.5%;
    height: 55px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    padding: 0 20px;
    background: #1B2A32;
    margin: 0 0 10px;
}
.switch-on .postList li{
    background: #FAFAFA;
}
.postList li .tag{
    min-width: 73px;
    height: 31px;
    font-size: 10px;
    margin: 0 20px 0 0;
}
.postList li h3{
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media screen and (max-width: 820px) {
    #works .title{
        font-size: 24px;
        margin: 0 0 20px;
    }
    .postList li{
        width: 100%;
        height: 48px;
        padding: 0 10px;
    }
    .postList li .tag {
        min-width: 60px;
        height: 25px;
        padding: 0 10px;
        margin: 0 10px 0 0;
    }
    .postList li h3 {
        font-size: 13px;
    }
}
/*=========================================================================================*/
/*company*/
.tableList dl{
    display: flex;
    flex-wrap: wrap;
    border-bottom: solid 1px #AFAFAF;
}
.tableList dt{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 154px;
    height: auto;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    border-bottom: solid 1px #FFFFFF;
}
.switch-on .tableList dt{
    border-bottom: solid 1px #000000;
}
.tableList dd{
    width: calc( 100% - 154px );
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    padding: 30px 50px;
}
@media screen and (max-width: 820px) {
    .tableList dl{
        padding: 20px 0;
    }
    .tableList dt{
        width: 100%;
        border-bottom: none;
        justify-content: flex-start;
    }
    .tableList dd{
        width: 100%;
        padding: 0;
    }
}
/*=========================================================================================*/
/*download*/
#download{
    padding: 0 0 80px;
}
#download ul li{
    width: 33%;
}
#download ul li a{
    display: block;
}
#download ul li img{
    box-shadow: 0 0 5px #999;
}
#download ul li p{
    font-size: 14px;
}
@media screen and (max-width: 820px) {
    #download ul li{
        width: 100%;
    }
}
/*=========================================================================================*/
/*banner*/
.banner{
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 1045px;
    height: 162px;
    padding: 0 50px;
    border-radius: 15px;
    background: center / cover no-repeat url("../img/banner-bg.jpg");
    margin: 0 auto 80px;
}
.banner h4{
    display: flex;
    align-items: center;
    font-size: 44px;
    font-weight: bold;
    color: #FFF;
}
.banner h4 span{
    font-size: 20px;
    margin: 0 0 0 30px ;
}
.banner h4::before{
    display: block;
    content: "";
    width: 55px;
    height: 60px;
    background: center / contain no-repeat url("../img/logo-icon-white.svg");
    margin: 0 30px 0 0;
}
@media screen and (max-width: 820px) {
    .banner{
        max-width: 580px;
        height: 100px;
        padding: 0 20px;
    }
    .banner h4::before {
        width: 40px;
        height: 45px;
        margin: 0 20px 0 0;
    }
    .banner h4{
        font-size: 24px;
    }
    .banner h4 span{
        font-size: 14px;
        margin: 0 0 0 10px ;
    }
}
iframe{
    margin: 0 0 -5px;
}
@media screen and (max-width: 820px) {
    iframe{
        height: 200px;
    }
}
/*=========================================================================================*/
/*footer*/
footer{
    display: flex;
    justify-content: space-between;
    padding: 30px 0 40px;
    background: #94202E;
    position: relative;
}
.switch-on footer{
    color: #000000;
    background: #38B9B9;
}
footer .inner{
    max-width: 1230px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
footer .left{
    width: fit-content;
}
footer .left a.logo{
    display: block;
    width: 315px;
    margin: 0 0 20px;
}
footer .left p{
    width: 404px;
    font-size: 12px;
    line-height: 2;
}
footer ul{
    width: fit-content;
    display: flex;
    justify-content: flex-end;
}
footer ul li{
    width: fit-content;
    height: fit-content;
    padding: 0 15px;
    border-right: solid 1px #FFF;
}
.switch-on footer ul li{
    border-right: solid 1px #000;
}
footer ul li:nth-child(4),
footer ul li:nth-child(5){
    border-right: none;
}
footer ul li a{
    width: fit-content;
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.2;
}
footer ul li:nth-child(5) a{
    color: #000;
}
.switch-on footer ul li:nth-child(5) a{
    color: #FFF;
}
footer small{
    font-family: 'Lato', sans-serif;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: #FFF;
    position: absolute;
    right: 30px;
    bottom: 30px;
}
.switch-on footer small{
    color: #000;
}
@media screen and (max-width: 820px) {
    footer .left{
        width: 100%;
        margin: 0 0 10px;
    }
    footer .left a.logo{
        width: 230px;
    }
    footer .left p{
        width: 100%;
    }
    footer ul{
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    footer ul li{
        width: 100%;
        padding: 10px 0;
        border-right: none;
    }
    .switch-on footer ul li{
        border-right: none; 
    }
    footer ul li a::before{
        display: inline-block;
        content: "›";
        margin: 0 8px 0 0;
    }
    footer small{
        bottom: 10px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
}
/*=========================================================================================*/
/*=========================================================================================*/
/*下層ページ-RECRUIT*/
.fvPage{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 390px;
    background: center / cover no-repeat url("../img/fv-recruit.jpg");
    margin: 100px 0 0 ;
}
.fvPage h2{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 200px;
    font-size: 44px;
    color: #FFF;
}
.fvPage h2 span{
    display: block;
    width: fit-content;
    font-size: 20px;
    letter-spacing: 0.1em;
    border-top: solid 2px var(--color-off);
    padding: 10px 0 0;
    margin: 10px 0 0;
}
.switch-on .fvPage h2 span{
    border-top: solid 2px var(--color-on);
}
.pan{
    padding: 10px 20px;
    background: #192A33;
}
.switch-on .pan{
    background: #F1F1F1;
}
@media screen and (max-width: 820px) {
    .fvPage{
        height: 160px;
        margin: 65px 0 0 ;
    }
    .pan{
        font-size: 10px;
        padding: 0 10px;
    }
    .fvPage h2{
        width: 140px;
        font-size: 24px;
    }
    .fvPage h2 span{
        font-size: 14px;
        padding: 5px 0 0;
        margin: 5px 0 0;
    }
}
/*=========================================================================================*/
/**/
.wrap .inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 80px auto 0 ;
}
.wrap .inner img{
    max-width: 500px;
    border-radius: 20px;
}
.wrap .inner div{
    max-width: 492px;
}
.wrap .inner h3{
    font-size: 35px;
    margin: 0 0 20px;
}
.wrap .inner h3 span{
    color: var(--color-off);
}
.switch-on .wrap .inner h3 span{
    color: var(--color-on);
}
@media screen and (max-width: 820px) {
    .wrap .inner{
        margin: 40px 0 0 ;
    }
    .wrap .inner img{
        max-width: 100%;
        border-radius: 10px;
        margin: 0 0 30px;
    }
    .wrap .inner div{
        max-width: 100%;
    }
    .wrap .inner h3{
        font-size: 24px;
        margin: 0 0 10px;
    }
}
@media screen and (max-width: 520px) {
}
/*=========================================================================================*/
/*募集概要*/
.title02{
    font-size: 30px;
    border-bottom: solid 2px var(--color-off);
    padding: 0 0 15px;
    margin: 0 0 30px;
}
.switch-on .title02{
    border-bottom: solid 2px var(--color-on);
}
.tableList02 dl{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 0 5px;
}
.tableList02 dt{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 266px;
    height: auto;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    background: var(--color-off);
}
.switch-on .tableList02 dt{
    color: #FFF;
    background: var(--color-on);
}
.tableList02 dd{
    width: calc( 100% - 271px );
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    padding: 20px 30px;
    background: #192A33;
}
.switch-on .tableList02 dd{
    background: #FAFAFA;
}
.tableList02 dd p{
    line-height: 1.6;
    letter-spacing: 0;
    margin: 0 0 20px;
}
.tableList02 dd p:last-child{
    margin: 0;
}
.tableList02 dd span{
    font-size: 12px;
}
@media screen and (max-width: 820px) {
    .title02{
        font-size: 20px;
        padding: 0 0 10px;
    }
    .tableList02 dt{
        width: 100%;
        padding: 5px 0;
    }
    .tableList02 dd{
        width: 100%;
        padding: 15px 20px;
    }
    .tableList02 dd p{
        margin: 0 0 15px;
    }
}
/*=========================================================================================*/
/*応募する*/
#form{
    color: #352D2A;
    background: #192A33;
}
.switch-on #form{
    background: #EDEDED;
}
#form .inner{
    padding: 60px 0;
    border-radius: 30px;
    background: #FFF;
}
#form h2{
    font-size: 48px;
    text-align: center;
    margin: 0 0 40px;
}
#form h2 span{
    display: block;
    font-size: 20px;
    letter-spacing: 0.04em;
    color: var(--color-off);
    margin: 0 0 15px;
}
.switch-on #form h2 span{
    color: var(--color-on);
}
#form h2 + p{
    text-align: center;
}
#form dl{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 90%;
    max-width: 889px;
    padding: 20px 0;
    margin: 0 auto;
    border-bottom: solid 1px rgba(175,175,175,0.50);
}
#form dl.textarea{
    border-bottom: none;
}
#form dl dt:nth-child(3),
#form dl dd:nth-child(4){
    margin: 20px 0 0;
}
#form dl dt{
    width: calc( 100% - 613px );
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
}
#form dl dd{
    width: 613px;
    font-family: 'Noto Sans JP', sans-serif;
}
#form dl dd p{
    width: 100%;
    min-height: 25px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    padding: 0 5px;
    border: solid 1px #EDEDED;
    border-radius: 5px;
}
#form dl dd span{
    display: block;
    font-size: 12px;
    color: rgba(175,175,175,0.50);
}
#form dl dd.required{
    position: relative;
}
#form dl dd.required::before{
    content: "必須";
    width: 55px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    color: #FFF;
    border-radius: 5px;
    background: #C30D23;
    position: absolute;
    top: 4px;
    left: -80px;
}
#form dl.textarea dd p{
    min-height: 133px;
}
.btn{
    width: 210px;
    margin: 40px auto 0;
    position: relative;
}
.btn input{
    width: 210px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #000;
    border-radius: 30px;
    border: solid 1px #000;
    background: #FFF;
    cursor: pointer;
}
.btncolor input{
    background: var(--color-off);
}
.on .btncolor input{
    background: var(--color-on);
}
.btn02{
    width: 210px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    border-radius: 30px;
    border: solid 1px #000;
    cursor: pointer;
    margin: 40px auto 0;
}
.btn::after{
    display: block;
    content: "";
    width: 5px;
    height: 5px;
    border-right: solid 1px #000;
    border-bottom: solid 1px #000;
    transform: rotate(-45deg);
    position: absolute;
    right: 18px;
    top: 21.5px;
}
.btn.backbtn::after,
.btn02.backbtn::after{
    transform: rotate(135deg);
    right: auto;
    left: 18px;
}
@media screen and (max-width: 820px) {
    #form .inner {
        padding: 30px 0 60px;
    }
    #form h2{
        font-size: 24px;
        margin: 0 0 10px;
    }
    #form h2 span{
        font-size: 14px;
        margin: 0 0 10px;
    }
    #form h2 + p{
        line-height: 1.4;
    }
    #form dl {
        max-width: 430px;
    }
    #form dl dt:nth-child(3){
        margin: 10px 0 0;
    }
    #form dl dd:nth-child(4){
        margin: 0;
    }
    #form dl dt{
        width: 100%;
        font-size: 14px;
    }
    #form dl dd{
        width: 100%;
    }
    #form dl dd.required::before{
        width: 45px;
        height: 20px;
        top: -24px;
        left: auto;
        right: 0;
    }
    .btn{
        width: 90%;
        max-width: 430px;
        margin: 20px auto 0;
    }
    .btn input{
        width: 100%;
    }
    .btn02{
        width: 90%;
    }
}
@media screen and (max-width: 520px) {
    #form .inner {
        padding: 30px 0 30px;
    }
}
.error{
    width: 90%;
    max-width: 889px;
    padding: 30px 50px;
    border: solid 1px #000;
    margin: 20px auto 0;
}