@charset "utf-8";
/* 
Theme Name: 株式会社UNIT0
Author: :株式会社UNIT0
Description: 株式会社UNIT0
Version: 1.0.0 
*/
body{
	font-family: 游ゴシック体, YuGothic, 游ゴシック, "Yu Gothic", sans-serif;
}
header {
    background: url(./img/pc_mv.jpg) no-repeat center top / 100% auto;
    height: 892px;
}
.hdlogo{
	position: fixed;
}
.hdlogo img {
    width: 35%;
    padding: 15px 15px;
}

.about {
    height: 1000px;
    width: 586px;
    margin: 0 auto;
    text-align: center;
    padding-top: 18%;
}

.logo {
    width: 75%;
}

.consept {
    padding: 2% 0;
    line-height: 1.8;
}

.about ul {
    display: flex;
    justify-content: end;
    margin-top: 7%;
}

.about ul li {
    margin-left: 5%;
}

.btn_w,
.btn_b {
    margin: 0 auto;
    margin-top: 4%;
    width: 225px;
}

.btn_w a {
    display: block;
    padding: 16px 0px;
    border: 1px solid;
    border-radius: 30px;
}

.btn_w a:hover {
    background: #000;
    color: #fff;
}

.newEv {
    height: 1000px;
    background: #000;
    color: #fff;
}

.evInner {
    width: 750px;
    margin: 0 auto;
    text-align: center;
}

h2 {
    font-size: 30px;
    padding-top: 12%;
    padding-bottom: 1%;
}

.secttl {
    font-size: 39px;
    margin-top: 5%;
    margin-bottom: 2%;
	font-weight: bold;
}

.desc {
    font-size: 20px;
    margin-top: 1%;
    margin-bottom: 1%;
	text-align: left;
}

.newEvImg {
    margin-top: 5%;
}

.btn_b a {
    display: block;
    background: #fff;
    color: #000;
    padding: 16px 0px;

    border-radius: 30px;
}

.btn_b a:hover {
    background: #000;
    color: #fff;
    border: 1px solid #fff;
}

.pstEv {
    height: 1000px;
}

.bus {
    background: #000;
    color: #fff;
    padding-bottom: 5%;
}

.busInner {
    width: 850px;
    margin: 0 auto;
    text-align: center;
    padding: 0% 2%;
}

.right,
.left {
    display: flex;
    margin-top: 5%;
}
.left{
    flex-direction: row-reverse;
}

.txtbox {
    position: relative;
    text-align: left;
    width: 60%;
}

.r-img,
.l-img {
    width: 40%;
}

.right h3 {
    font-size: 25px;
    padding-bottom: 8px;
    padding-left: 12%;
    border-bottom: 1px solid;
    width: 92%;
}

.right .txtbox p {
    line-height: 2.3;
    margin-top: 4%;
    padding-left: 15%;
}

.left h3 {
    font-size: 25px;
    padding-bottom: 8px;
    border-bottom: 1px solid;
}

.left .txtbox p {
    line-height: 2.3;
    margin-top: 4%;
    padding-left: 3%;
}

.contact {
    width: 430px;
    margin: 6% auto;
    text-align: center;
}

.cta {
    position: relative;
    margin-top: 6%;
}

.cta a {
    display: block;
    color: #fff;
    background: #D82222;
    padding: 6% 0%;
    border-radius: 10px;
    font-size: 20px;
}

.cta a::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 20%;
    width: 20px;
    height: 16px;
    background: url(./img/mail.png) no-repeat center top / 100% auto;
}

.cta a:hover {
    opacity: .6;
}

footer {
    background: #000;
    color: #fff;
    padding: 1%;
}

.f-Inner {
    width: 300px;
    margin: 0 auto;
    text-align: center;
}

footer .f-logo {
    margin-bottom: 2%;
}

footer small {
    font-size: 10px;
}

/* モーダル */
.modal-2__wrap input {
    display: none;
}

.modal-2__open-label,
.modal-2__close-label {
    cursor: pointer;
}

.modal-2__open-label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    margin: 0 auto;
    padding: .8em 2em;
    border: none;
    border-radius: 5px;
    background-color: #d82222;
    color: #ffffff;
    font-weight: 600;
    font-size: 1em;
}

.modal-2__open-label:hover {
    background-color: #fff;
    color: #d82222;
    outline: 1px solid #d82222;
}

.modal-2 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.modal-2__open-input:checked+label+input+.modal-2 {
    display: block;
    animation: modal-2-animation .6s;
}

.modal-2__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 650px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 5px;
}

.modal-2__close-label {
    background-color: #777;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 20px;
    width: 36px;
    height: 36px;
    line-height: 1.6;
    text-align: center;
    display: table-cell;
    position: fixed;
    top: -15px;
    right: -2%;
    z-index: 99999;
    font-size: 1.3em;
}

.modal-2__content {
    max-height: 50vh;
    overflow-y: auto;
    padding: 39px 45px 40px;
}

.modal-2__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

@keyframes modal-2-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media only screen and (max-width: 520px) {
    .modal-2__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-2__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-2__content-wrap {
        width: 90vw;
    }

    .modal-2__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}


.modal-1__open-label,
.modal-1__close-label {
    cursor: pointer;
}

.modal-1__open-label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    margin: 0 auto;
    padding: .8em 2em;
    border: none;
    border-radius: 5px;
    background-color: #d82222;
    color: #ffffff;
    font-weight: 600;
    font-size: 1em;
}

.modal-1__open-label:hover {
    background-color: #fff;
    color: #d82222;
    outline: 1px solid #d82222;
}

.modal-1 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.modal-1__open-input:checked+label+input+.modal-1 {
    display: block;
    animation: modal-1-animation .6s;
}

.modal-1__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 650px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 5px;
}

.modal-1__close-label {
    background-color: #777;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 20px;
    width: 36px;
    height: 36px;
    line-height: 1.6;
    text-align: center;
    display: table-cell;
    position: fixed;
    top: -15px;
    right: -2%;
    z-index: 99999;
    font-size: 1.3em;
}

.modal-1__content {
    max-height: 70vh;
    overflow-y: auto;
    padding: 39px 45px 40px;
}

.modal-1__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

@keyframes modal-1-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media only screen and (max-width: 520px) {
    .modal-1__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-1__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-1__content-wrap {
        width: 90vw;
    }

    .modal-1__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}

/* モーダル */
.modal-2__content p {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 6%;
}

table,
td,
th {
    border: 1px solid #595959;
    border-collapse: collapse;
    margin: 0 auto;
}

td {
    width: 84%;
    text-align: left;
    padding-left: 6px;
	line-height: 1.5;
}

th {
    padding: 3px;
    width: 16%;
    height: 25px;
    background: #f0e6cc;
    background: #f0e6cc;
    text-align: left;
    padding: 14px 10px;
}

.even {
    background: #fbf8f0;
}

.odd {
    background: #fefcf9;
}

/* お問い合わせフォーム */
.Form {
    text-align: left;
}

.Form-Item {
    border-top: 1px solid #ddd;
    padding-top: 24px;
    padding-bottom: 24px;
    width: 100%;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 480px) {
    .Form-Item {
        padding-left: 14px;
        padding-right: 14px;
        padding-top: 16px;
        padding-bottom: 16px;
        flex-wrap: wrap;
    }
}

.Form-Item:nth-child(5) {
    border-bottom: 1px solid #ddd;
}

.Form-Item-Label {
    width: 100%;
    max-width: 248px;
    letter-spacing: 0.05em;
    font-weight: bold;
    font-size: 18px;
}

@media screen and (max-width: 480px) {
    .Form-Item-Label {
        max-width: inherit;
        display: flex;
        align-items: center;
        font-size: 15px;
    }
}

.Form-Item-Label.isMsg {
    margin-top: 8px;
    margin-bottom: auto;
}

@media screen and (max-width: 480px) {
    .Form-Item-Label.isMsg {
        margin-top: 0;
    }
}

.Form-Item-Label-Required {
    border-radius: 6px;
    margin-right: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 48px;
    display: inline-block;
    text-align: center;
    background: #d82222;
    color: #fff;
    font-size: 14px;
}

@media screen and (max-width: 480px) {
    .Form-Item-Label-Required {
        border-radius: 4px;
        padding-top: 4px;
        padding-bottom: 4px;
        width: 32px;
        font-size: 10px;
    }
}

.Form-Item-Input {
    border: 1px solid #ddd;
    border-radius: 6px;
/*     margin-left: 40px; */
    padding-left: 1em;
    padding-right: 1em;
    height: 48px;
    flex: 1;
    width: 100%;
    max-width: 410px;
    background: #eaedf2;
    font-size: 18px;
}

@media screen and (max-width: 480px) {
    .Form-Item-Input {
        margin-left: 0;
        margin-top: 18px;
        height: 40px;
        flex: inherit;
        font-size: 15px;
    }
}

.Form-Item-Textarea {
    border: 1px solid #ddd;
    border-radius: 6px;
/*     margin-left: 40px; */
    padding-left: 1em;
    padding-right: 1em;
    height: 216px;
    flex: 1;
    width: 100%;
    max-width: 410px;
    background: #eaedf2;
    font-size: 18px;
}

@media screen and (max-width: 480px) {
    .Form-Item-Textarea {
        margin-top: 18px;
        margin-left: 0;
        height: 200px;
        flex: inherit;
        font-size: 15px;
    }
}

.Form-Btn {
    text-align: center;
    border-radius: 6px;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 280px;
    display: block;
    letter-spacing: 0.05em;
    background: #d82222;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
}

.Form-Btn:hover {
    opacity: .7;
    cursor: pointer;
}

@media screen and (max-width: 480px) {
    .Form-Btn {
        margin-top: 24px;
        padding-top: 8px;
        padding-bottom: 8px;
        width: 160px;
        font-size: 16px;
    }
}

/* お問い合わせフォーム */
@media screen and (max-width: 480px) {
    header {
        background: url(./img/SP_mv.jpg) no-repeat center top / 100% auto;
        height: 690px;
    }
    .hdlogo img {
        width: 45%;
        padding: 15px 5px;
    }
    .about {
        width: 96%;
        padding-top: 70%;
    }
    .about ul {
        justify-content: center;
    }
    .pstEv {
        height: 919px;
    }
    .btn_w, .btn_b {
        margin-top: 16%;
    }
    .evInner {
        width: 96%;
        padding-top: 33%;
    }
    .contact {
        width: 96%;
    }
    .secttl {
        font-size: 34px;
    }
    .desc {
        font-size: 15px;
        margin-top: 7%;
        line-height: 1.5;
    }
    .bus {
        padding-bottom: 22%;
    }
    .busInner {
        width: 100%;
        padding-top: 15%;
    }
    .right, .left {
        display: block;
    }
    .r-img, .l-img {
        width: 100%;
    }
    .txtbox {
        width: 100%;
        margin-top: 5%;
    }
    .right h3 {
        font-size: 22px;
        padding-left: 3%;
    }
    .right .txtbox p {
        padding-left: 6%;
    }
    .left{
        margin-top: 11%;
    }
    .f-logo img{
        width: 40%;
    }
	.modal-2__content {
    	max-height: 72vh;
	}
}