@import url("//fonts.googleapis.com/css?family=Oswald:400,700");
.pc {
    display: block !important;
}

@media (max-width: 768px) {
    .pc {
        display: none !important;
    }
}

.mobile {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile {
        display: block !important;
    }
}

.container {
    max-width: 1040px;
    width: 100%;
    margin: 0 auto;
}

@media only screen and (max-width: 1040px) {
    .container {
        width: 95%;
    }
}

a {
	font-size: 2.4rem;
	line-height: 1.6;
}
@media only screen and (max-width: 1040px) {
	a {
		font-size: 1.6rem;
	}
}

.white {
    color: #fff;
}

.center {
    text-align: center !important;
}

.f__Oswald {
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
}

.fz30 {
    font-size: 3rem;
}

@media (max-width: 768px) {
    .fz30 {
        font-size: 2.1rem;
    }
}


.fz26 {
    font-size: 2.6rem;
}

@media (max-width: 768px) {
    .fz26 {
        font-size: 1.8rem;
    }
}

.fz24 {
    font-size: 2.4rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .fz24 {
        font-size: 1.6rem;
    }
}

body {
    background: #000;
    color: #fff;
}

@media (max-width: 768px) {
    body {
        padding-top: 50px;
    }
}

p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: inherit;
}

.logo {
    text-align: center;
}

.logo img {
    max-height: 65px;
    height: 100%;
}

@media (max-width: 768px) {
    .logo img {
        max-height: 30px;
    }
}

.header {
    background: inherit;
    padding: 15px 0;
    width: 100%;
    z-index: 999;
}

.header .check {
    display: none;
}

@media (max-width: 768px) {
    .header {
        position: fixed;
        top: 0;
        -webkit-box-shadow: 0 0px 5px #f3a7b8;
        box-shadow: 0 0px 5px #f3a7b8;
        padding: 10px 0;
        /* menu button - label tag */
        /* checked */
    }
    .header .logo {
        text-align: left;
    }
    .header .drawer-menu {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100%;
        padding: 60px 0;
        background: #222;
        -webkit-transition-property: all;
        -o-transition-property: all;
        transition-property: all;
        -webkit-transition-duration: .5s;
        -o-transition-duration: .5s;
        transition-duration: .5s;
        -webkit-transition-delay: 0s;
        -o-transition-delay: 0s;
        transition-delay: 0s;
        -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
        transform-origin: right center;
        -webkit-transform: perspective(500px) rotateY(-90deg);
        transform: perspective(500px) rotateY(-90deg);
        opacity: 0;
        overflow-y: scroll;
    }
    .header .drawer-menu ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .header .drawer-menu li {
        text-align: center;
    }
    .header .drawer-menu li a {
        display: block;
        height: 50px;
        line-height: 50px;
        -webkit-transition: all .8s;
        -o-transition: all .8s;
        transition: all .8s;
    }
    .header .drawer-menu li a:hover {
        color: #1a1e24;
        background: #fff;
    }
    .header .menu-btn {
        position: fixed;
        display: block;
        top: 5px;
        right: 20px;
        display: block;
        width: 40px;
        height: 40px;
        font-size: 10px;
        text-align: center;
        cursor: pointer;
        z-index: 3;
    }
    .header .bar {
        position: absolute;
        top: 9px;
        left: 5px;
        display: block;
        width: 30px;
        height: 4px;
        background: #f3a7b8;
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
        -webkit-transform-origin: left top;
        -ms-transform-origin: left top;
        transform-origin: left top;
    }
    .header .bar.middle {
        top: 19px;
        opacity: 1;
    }
    .header .bar.bottom {
        top: 29px;
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
    }
    .header .menu-btn:hover .bar {
        background: #f3a7b8;
    }
    .header .close-menu {
        position: fixed;
        top: 0;
        right: 300px;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0);
        cursor: url(../../../../../demo/images/cross.svg), auto;
        -webkit-transition-property: all;
        -o-transition-property: all;
        transition-property: all;
        -webkit-transition-duration: .3s;
        -o-transition-duration: .3s;
        transition-duration: .3s;
        -webkit-transition-delay: 0s;
        -o-transition-delay: 0s;
        transition-delay: 0s;
        visibility: hidden;
        opacity: 0;
    }
    .header .check:checked~.drawer-menu {
        -webkit-transition-delay: .3s;
        -o-transition-delay: .3s;
        transition-delay: .3s;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
        z-index: 2;
    }
    .header .check:checked~.menu-btn .bar.top {
        width: 35px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .header .check:checked~.menu-btn .bar.middle {
        opacity: 0;
    }
    .header .check:checked~.menu-btn .bar.bottom {
        width: 35px;
        top: 32px;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .header .check:checked~.close-menu {
        -webkit-transition-duration: 1s;
        -o-transition-duration: 1s;
        transition-duration: 1s;
        -webkit-transition-delay: .3s;
        -o-transition-delay: .3s;
        transition-delay: .3s;
        background: rgba(0, 0, 0, 0.5);
        visibility: visible;
        opacity: 1;
        z-index: 3;
    }
}

.footer {
    padding-top: 90px;
}

.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.menu li {
    padding: 0 5px;
}

.menu a {
    color: #f3a7b8;
    font-size: 2.9rem;
    font-family: 'Oswald', sans-serif;
}

.menu a:hover {
    opacity: 0.7;
}

.f__top {
    background: #f3a7b8;
    padding: 30px 0;
}

.f__top__content {
    padding: 30px 6px;
    border: 2px solid #f9d3dc;
    position: relative;
    z-index: 0;
}

@media (max-width: 1040px) {
    .f__top__content {
        padding: 10px 6px;
    }
}

@media (max-width: 600px) {
    .f__top__content {
        min-height: 330px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media (max-width: 425px) {
    .f__top__content {
        min-height: 270px;
    }
}

.f__top__content p {
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
}

@media (max-width: 1040px) {
    .f__top__content p {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .f__top__content p {
        font-size: 1.6rem;
    }
}

.f__top__content a {
    display: block;
    margin: 0 auto;
    max-width: 335px;
    width: 100%;
    height: 70px;
    background: #f3a7b8;
    border: 3px solid #fff;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 64px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}

@media (max-width: 768px) {
    .f__top__content a {
        font-size: 1.6rem;
        height: 50px;
        line-height: 44px;
    }
}

.f__top__content .widget_text {
    padding: 30px 0;
    z-index: 0;
}

@media (max-width: 1040px) {
    .f__top__content .widget_text {
        padding: 10px 0;
    }
}

.f__top__content .widget_media_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.f__top__content .widget_media_image img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

@media (max-width: 600px) {
    .f__top__content .widget_media_image img {
        -o-object-position: bottom;
        object-position: bottom;
    }
}

.f__top__content .widget_media_image:nth-child(2) {
    display: none;
}

@media (max-width: 600px) {
    .f__top__content .widget_media_image:first-child {
        display: none;
    }
    .f__top__content .widget_media_image:nth-child(2) {
        display: block;
    }
}

.f__middle__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 75px 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (max-width: 375px) {
    .f__middle__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 30px 0;
    }
}

.f__middle__content aside {
    text-align: center;
    padding: 10px;
}

.f__middle__content img {
    max-height: 150px;
    width: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

@media only screen and (max-width: 375px) {
    .f__middle__content img {
        max-height: 100px;
    }
}

.f__bottom {
    padding: 25px 0 50px;
}

.f__bottom .logo {
    padding: 50px 0;
}

@media (max-width: 768px) {
    .f__bottom {
        padding-bottom: 10px;
    }
}

.copyright {
    text-align: center;
    font-weight: bold;
}

@media (max-width: 768px) {
    .copyright {
        font-size: 1.2rem;
    }
}

.toTop {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: #f3a7b8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}

.toTop img {
    width: 25px;
}

@media (max-width: 768px) {
    .toTop {
        bottom: 30px;
    }
}

.f_banner {
    position: relative;
    border: 5px solid #00c300;
    padding: 35px 55px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .f_banner {
        padding: 35px 30px;
    }
}

.f_banner:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-top: 150px solid #00c300;
    border-right: 150px solid transparent;
}

@media (max-width: 768px) {
    .f_banner:before {
        border-top: 80px solid #00c300;
        border-right: 80px solid transparent;
    }
}

.f_banner_ttl {
    font-size: 6rem;
    line-height: 1;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    color: #00c300;
    text-align: center;
    padding-bottom: 25px;
}

@media (max-width: 768px) {
    .f_banner_ttl {
        font-size: 4.5rem;
    }
}

.f_banner_txt {
    font-size: 2.3rem;
    line-height: 1.8;
    font-weight: bold;
    text-align: center;
}

@media (max-width: 768px) {
    .f_banner_txt {
        font-size: 1.6rem;
    }
}

.f_banner_bottom {
    margin-top: 25px;
    display: flex;
    align-items: flex-end;
}

@media (max-width: 480px) {
    .f_banner_bottom {
        display: block;
    }
}

.f_banner_QR {
    margin: 0 55px;
}

@media (max-width: 768px) {
    .f_banner_QR {
        margin: 0 30px;
    }
}
@media (max-width: 480px) {
    .f_banner_QR {
        max-width: 150px;
        width: 100%;
        margin: 20px auto;
    }
}

.main__img {
    margin-bottom: 25px;
}

.main__top .widget_media_image {
    margin-bottom: 25px;
    text-align: center;
}

.main__top .widget_media_image:last-child {
    margin-bottom: 0;
}

.part__ttl {
    font-size: 6rem;
    color: #f3a7b8;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    padding: 50px;
}

@media (max-width: 768px) {
    .part__ttl {
        font-size: 4rem;
    }
}

.part__ttl__sub {
    font-size: 4.1rem;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    line-height: 1;
    padding-bottom: 40px;
    text-align: left;
}

@media (max-width: 768px) {
    .part__ttl__sub {
        font-size: 2.7rem;
    }
}

.part__profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 768px) {
    .part__profile {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.part__left {
    width: 40%;
}

.part__profile .part__left img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

@media (max-width: 768px) {
    .part__left {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    .part__left img {
        max-width: 400px;
        width: 100%;
    }
}

.part__right {
    margin-left: 5%;
    width: 55%;
}

@media (max-width: 768px) {
    .part__right {
        width: 100%;
        margin-left: 0;
    }
}

.viewmore__1 {
    display: block;
    max-width: 270px;
    width: 100%;
    height: 70px;
    border: 3px solid #f3a7b8;
    color: #f3a7b8;
    font-size: 2.4rem;
    text-transform: uppercase;
    text-align: center;
    line-height: 64px;
    font-weight: bold;
    margin: 0 auto;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

.viewmore__1:hover {
    background: #f3a7b8;
    color: #fff;
}

@media (max-width: 768px) {
    .viewmore__1 {
        font-size: 1.6rem;
        height: 50px;
        line-height: 44px;
    }
}

.items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
}

.items:last-child {
    margin-bottom: 0;
}

.items:hover {
    opacity: .7
}

.items__catDate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.items__cat {
    min-width: 100px;
    max-height: 35px;
    font-size: 1.8rem;
    text-align: center;
    color: #fff;
}

@media (max-width: 768px) {
    .items__cat {
        padding: 8px 0;
        font-size: 1.6rem;
    }
}

.items__cat.event {
    background: #00a0e9;
}

.items__cat.live {
    background: #f2a7b8;
}

.items__cat.media {
    background: #ffa500;
}

.items__cat.news {
    background: #7645ff;
}

.items__cat.eventlive {
    background: #e6e60e;
}

.items__cat.web {
    background: #7c41d2;
}

.items__cat.linelive {
    background: #1dcd00;
}

.items__cat.tv {
    background: #0ee6d7;
}

.items__cat.radio {
    background: #d43434;
}

.items__cat.magazine {
    background: #41add2;
}

.items__cat.release {
    background: #ff3d69;
}

.items__date {
    color: #fff;
    font-size: 1.9rem;
}

@media (max-width: 768px) {
    .items__date {
        font-size: 1.4rem;
    }
}

.items__ttl {
    font-size: 2.4rem;
    line-height: 1.6;
    color: #fff;
}

@media (max-width: 768px) {
    .items__ttl {
        font-size: 1.6rem;
    }
}

.items__img {
    width: 100%;
    padding-top: 100%;
    height: 0;
    position: relative;
}

.items__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.items__single .items__ttl:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .list__posts .items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .list__posts .items__catDate {
        margin-bottom: 5px;
    }
}

.list__posts .items__date {
    margin: 0 25px;
}

.list__musics .items__img__area {
    max-width: 300px;
    width: 100%;
    margin-right: 40px;
}

@media (max-width: 768px) {
    .list__musics .items__img__area {
        margin-right: 10px;
    }
}

.list__musics .items__left {
    width: 30%;
}

.list__musics .items__right {
    width: 70%;
}

.single__music p:not(.items__date) {
    font-size: 2.4rem;
    line-height: 1.6;
}
.single__music .items:hover {
	opacity:1;
}
@media (max-width: 768px) {
    .single__music .items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .single__music .items__img__area {
        margin-right: 0;
        margin: auto;
    }
	.single__music p:not(.items__date) {
		font-size: 1.6rem;
	}
}

.list__profiles {
    margin-top: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (max-width: 480px) {
    .list__profiles {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.list__profiles .items {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    margin-bottom: 0;
}

.list__profiles .items:hover {
    opacity: 0.4;
}

@media only screen and (max-width: 480px) {
    .list__profiles .items {
        width: 50%;
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
    }
}

.list__profiles a {
    width: 100%;
}

.list__profiles .items__ttl {
    position: absolute;
    bottom: 10%;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 3rem;
    width: 100%;
    display: block;
    background: rgba(243, 167, 184, 0.5);
}

.list__profiles .items__ttl:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .list__profiles .items__ttl {
        font-size: 2rem;
    }
}

.list__movie {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.list__movie .items__movie {
    width: 33.33333333%;
    padding: 0 10px;
}

.list__movie .items__movie:hover {
    opacity: 0.5;
}

@media only screen and (max-width: 640px) {
    .list__movie .items__movie {
        width: 50%;
    }
}

.list__movie .video {
    position: relative;
    display: block;
}

.list__movie .icon__play {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.list__link {
    max-width: 650px;
    display: block;
    margin: 0 auto;
}

.list__link li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .list__link li {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }
}

.list__link li:last-child {
    margin-bottom: 0;
}

.list__link p {
    min-width: 55%;
    font-size: 2rem;
}

@media (max-width: 768px) {
    .list__link p {
        font-size: 1.6rem;
    }
}

.list__link a {
    font-size: 2rem;
    color: #fff;
    white-space: nowrap;
}

.list__link a:hover,
.list__link a:focus {
    color: #f3a7b8;
}

@media (max-width: 768px) {
    .list__link a {
        font-size: 1.6rem;
    }
}

.profile__info {
    font-size: 2.4rem;
}

@media (max-width: 768px) {
    .profile__info {
        font-size: 1.6rem;
    }
}

.instagram__btn {
    max-width: 380px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    margin: 70px auto;
    position: relative;
}

.instagram__btn img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.dark__1st li:first-child,
.dark__2nd li:nth-child(2),
.dark__3rd li:nth-child(3),
.dark__4th li:nth-child(4) {
    opacity: 0.4;
}

form {
    padding: 0 25px;
}

@media (max-width: 768px) {
    form {
        padding: 0;
    }
}

form dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 35px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
}

form dl:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    form dl {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 25px;
    }
}

form dt {
    font-size: 2.4rem;
    line-height: 24px;
    color: #fff;
    min-width: 175px;
    padding: 16px 0;
}

@media (max-width: 768px) {
    form dt {
        font-size: 1.6rem;
        padding: 8px 0;
    }
}

form .required:after {
    content: '*';
    font-size: 1.6rem;
    color: #f3a7b8;
    margin-left: 5px;
}

form dd {
    width: 100%;
}

form .wpcf7-form-control-wrap {
    width: 100%;
}

form input[type=text],
form textarea{
    border-radius: 5px;
    border: 1px solid #fff;
    padding: 15px 18px;
    font-size: 2.4rem;
    outline: none;
    width: 100%;
}

@media (max-width: 768px) {
    form input[type=text],
    form textarea{
        font-size: 1.6rem;
    }
}

form .btnSubmitWrapper {
    text-align: center;
}

form .submitBtn {
    border-radius: 5px;
    background: #f3a7b8;
    color: #fff;
    display: block;
    max-width: 200px;
    width: 100%;
    height: 70px;
    border: 3px solid #f3a7b8;
    font-size: 2.4rem;
    text-transform: uppercase;
    text-align: center;
    line-height: 64px;
    font-weight: bold;
    margin: 0 auto;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

form .submitBtn:hover {
    color: #f3a7b8;
    background: transparent;
}

@media (max-width: 768px) {
    form .submitBtn {
        font-size: 1.6rem;
        height: 50px;
        line-height: 44px;
    }
}

form .wpcf7-response-output {
    font-size: 1.2rem;
}

form .wpcf7-not-valid {
    background: #ffb6c1 !important;
}

form span.wpcf7-not-valid-tip {
    font-size: 1rem !important;
}

form .wpcf7 .wpcf7-validation-errors {
    color: #B94A48;
    background-color: #F2DEDE;
    border: 1px solid #EED3D7;
}


input.wpcf7-form-control.wpcf7-number.wpcf7-validates-as-required.wpcf7-validates-as-number {
    border-radius: 5px;
    border: 1px solid #fff;
    padding: 15px 18px;
    font-size: 2.4rem;
    outline: none;
    width: 80px;
    margin-right: 10px;
}

@media (max-width: 768px) {
    input.wpcf7-form-control.wpcf7-number.wpcf7-validates-as-required.wpcf7-validates-as-number{
        font-size: 1.6rem;
    }
}

select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required.input__event {
    border-radius: 5px;
    border: 1px solid #fff;
    padding: 15px 18px;
    font-size: 2.4rem;
    outline: none;
    width: 100%;
}
@media (max-width: 768px) {
    select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required.input__event {
        font-size: 1.6rem;
    }
    }
	
textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required.input__ti__mes {
    height: 150px;
}
div.wpcf7-validation-errors, div.wpcf7-acceptance-missing{
	color: #B94A48;
    background-color: #F2DEDE;
    border: 1px solid #EED3D7!important;
}
div.wpcf7-mail-sent-ok {
    border: 2px solid #f2a7b8!important;
}
.tanpatsu form dt{
	min-width:inherit;
	width: 30%;
    word-break: break-all;
    margin-right: 10px;
}
@media (max-width:768px){
	.tanpatsu form dt{
		width:100%;
	}
}