@charset "utf-8";

/*
Theme Name: PEP.
Author: hironori hashimoto
Author URI: https://pepinc.biz/
Description: ピース環境カンパニーのオリジナルテンプレート
*/
html {
    font-size: 55%;
    scroll-behavior: smooth;
}

@media screen and (min-width: 960px) {
    html {
        font-size: 62.5%;
    }
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

body {
    font-size: 1.4rem;
    text-rendering: auto;
    text-size-adjust: 100%;
    -webkit-font-feature-settings: 'palt';
    font-feature-settings: 'palt';
    line-height: 2.125;
    letter-spacing: 0.09em;
    color: #454545;
    font-family: "Yu Gothic Medium",
        "游ゴシック Medium",
        YuGothic,
        "游ゴシック体",
        "ヒラギノ角ゴ Pro W3",
        "メイリオ",
        sans-serif;
}

@media screen and (min-width: 560px) {
    body {
        font-size: 1.4rem;
    }
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
}

ul {
    list-style-type: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: .3s ease-in-out;
    display: block;
}

/****************************
共通
****************************/

.p-wrapper {
    max-width: 1316px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
}

.l-wrapper {
    max-width: 992px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
}

.common-sp__inner {
    display: flex;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (min-width: 560px) {
    .p-common__inner {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
    }
}

.sp-br {
    display: block;
}

.pc-br {
    display: none;
}

@media screen and (min-width: 560px) {
    .sp-br {
        display: none;
    }

    .pc-br {
        display: inline;
    }
}

.p-sp__inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media screen and (min-width: 560px) {
    .p-common-inner {
        display: flex;
        justify-content: space-between;
    }
}

.p-common__3colums {
    margin-bottom: 2rem;
}

@media screen and (min-width: 560px) {
    .p-common__3colums {
        flex: 0 0 31.25%;
        max-width: 31.25%;
        margin-bottom: 0rem;
    }
}

.p-common__title {
    text-align: center;
    margin-bottom: 5rem;
}

.p-common__logo {
    opacity: 0.6;
    max-width: 60px;
    margin: 0 auto;
}

.p-common__headline {
    font-size: 4.2rem;
    line-height: 1.4;
    font-family: 'PT Serif',
        serif;
    color: #B2D577;
    font-weight: normal;
}

.p-common__headline span {
    display: block;
    font-size: 1.5rem;
    font-family: "Yu Gothic Medium",
        "游ゴシック Medium",
        YuGothic,
        "游ゴシック体",
        "ヒラギノ角ゴ Pro W3",
        "メイリオ",
        sans-serif;
    font-weight: bold;
}

.p-caption__body {
    font-size: 1.2rem;
    color: #999;
}

/****************************
アニメーション
****************************/
#splash {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #fff;
    text-align: center;
	top:0px;
}

/* Loading画像中央配置　*/
#splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
    width: 260px;
}

/* fadeUpをするアイコンの動き */

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadein {
    -webkit-transform: translate(0, 40px);
    transform: translate(0, 40px);
    opacity: 0;
    -webkit-transition: all 1500ms;
    transition: all 1500ms;
}

.fadein.scrollin {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
}

/****************************
header
****************************/
header {
    position: sticky;
    top: 0;
    animation-name: SlideDown;
    animation-delay: 1.2s;
    animation-duration: 1s;
    z-index: 101;
    background: #fff;
}

header.scroll-nav {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 559px) {
    header {
        height: 70px;
    }

    #g-nav {
        position: fixed;
        z-index: 10;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100vh;
		background: #fff;
		transition: all 1500ms;
    }

    #g-nav.panelactive {
        top: 0;
    }

    #g-nav.panelactive #g-nav-list {
        position: fixed;
        z-index: 10;
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    /*ナビゲーション*/
    #g-nav ul {
        position: absolute;
        z-index: 10;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /*リストのレイアウト設定*/

    #g-nav li {
        list-style: none;
        text-align: center;
    }

    #g-nav li a {
        color: #454545;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
    }

    /*========= ボタンのためのCSS ===============*/
    .openbtn1 {
        position: fixed;
        z-index: 9999;
        /*ボタンを最前面に*/
        top: 10px;
        right: 10px;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

    /*×に変化*/
    .openbtn1 span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #B2D676;
        width: 45%;
    }

    .openbtn1 span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn1 span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn1 span:nth-of-type(3) {
        top: 31px;
    }

    .openbtn1.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn1.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn1.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }
}

.header-sp__inner {
    padding: 10px;
}

/* @keyframes SlideDown {
    0% {
        opacity: 0;
        transform: translateY(-150px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
} */

/* .header-sp__inner h1 img {
    width: 140px;
} */
header h1 {
    position: absolute;
    left: 15px;
	top:5px;
	z-index:1000;
}

header h1 img {
    width: 60px;
}

@media screen and (min-width: 560px) {

    header h1 img {
        width: 110px;
    }

    header h1 {
        margin: 20px auto;
        text-align: center;
        width: 100%;
        transition: 1500ms;
        position: relative;
		top:0px;
		left:0px;
    }

    header h1 a:hover {
        opacity: 0.6;
    }

    header.scroll-nav h1 {
        opacity: 0;
        display: none;
    }
}

@media screen and (min-width: 560px) {
    .l-nav__list {
        display: flex;
        align-items: center;
        max-width: 960px;
        margin: 0 auto;
        justify-content: space-between;
    }
}

.l-nav__item {
    position: relative;
}

.l-nav__link {
    position: relative;
    overflow: hidden;
    font-weight: bold;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: inline-block;
    vertical-align: middle;
}

.l-nav__link::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: 0;
    background: #F3B0CD;
    height: 4px;
    transition-property: right;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}

.l-nav__link:hover::after {
    right: 0;
}

@media screen and (min-width: 560px) {
    .l-nav__link {
        padding: 14px 16px;
    }
}

@media screen and (min-width: 960px) {
    .l-nav__link:hover {
        color: #F3B0CD;
    }
}

@media screen and (min-width: 560px) {
    .menu {
        display: none;
    }
}

.menu {
    display: block;
    height: 20px;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
    z-index: 99;
}

.menu__line {
    background: #fff;
    display: block;
    height: 2px;
    position: absolute;
    transition: transform .3s;
    width: 100%;
}

.menu__line--center {
    top: 9px;
}

.menu__line--bottom {
    bottom: 0;
}

.menu__line--top.active {
    top: 8px;
    transform: rotate(45deg);
}

.menu__line--center.active {
    transform: scaleX(0);
}

.menu__line--bottom.active {
    bottom: 10px;
    transform: rotate(135deg);
}

.gnav {
    display: none;
}

@media screen and (min-width: 560px) {
    .gnav {
        background: rgba(0, 0, 0, 0.8);
        display: none;
        height: 100%;
        position: fixed;
        width: 100%;
        z-index: 98;
    }
}

.gnav__wrap {
    align-items: center;
    display: flex;
    height: 100%;
    position: absolute;
    width: 100%;
}

.gnav__menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
}

.gnav__menu__item {
    margin: 40px 0 40px 100px;
    opacity: 0;
}

.gnav__menu__item a {
    color: #fff;
    font-size: 2em;
    font-weight: bold;
    text-decoration: none;
    transition: .5s;
}

.gnav__menu__item a:hover {
    color: #666;
}

/****************************
メインビジュアル
****************************/
.p-top__hero {
    margin-bottom: 148px;
}

#top-slider {
    width: 100%;
    height: 90vh;
    overflow: visible !important;
}

.vegas-slide,
.vegas-slide-inner {
    margin: 0px !important;
}

@media screen and (min-width: 560px) {

    .vegas-slide,
    .vegas-slide-inner {
        margin: 0px 20px !important;
    }
}

.p-top__headline {
    position: absolute;
    width: 100%;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.8rem;
    text-transform: uppercase;
    color: #fff;
    padding-left: 15px;
    font-family: YuMincho,
        'Yu Mincho',
        serif;
    text-shadow: 0px 0px 20px rgb(48 71 106 / 40%);
}

@media screen and (min-width: 560px) {
    .p-top__headline {
        font-size: 4.8rem;
        left: 30%;
		width:auto;
    }
}

/****************************
ピースについて
****************************/
.p-about__list {
    border: 4px solid #f7b149;
    text-align: left;
    margin-bottom: 120px;
}

@media screen and (min-width: 560px) {
    .p-about__list {
        text-align: center;
    }
}
.p-about__list .p-caption__body{
	padding:10px 15px;
}
.u-about__title {
    text-align: center;
}

.p-about__headline {
    color: #B2D676;
    font-weight: bold;
    font-family: YuMincho,
        'Yu Mincho',
        serif;
    font-size: 2.4rem;
    position: relative;
    top: -27px;
    background: #ffffff;
    display: inline;
    padding: 0 16px;
}

.p-about__lead {
    color: #B2D676;
    font-weight: bold;
    font-family: YuMincho, 'Yu Mincho', serif;
    font-size: 1.8rem;
    margin: 2rem 0;
    padding: 0 15px;
}

@media screen and (min-width: 560px) {
    .p-about__headline {
        font-size: 4rem;
        top: -47px;
    }

    .p-about__lead {
        font-size: 2rem;
    }
}

.p-about__image {
    margin-top: 24px;
    text-align: center;
	position:relative;
	overflow: hidden;
}
.p-about__image::before{
	content:'';
	background-image:url("/wp-content/uploads/2021/03/about-bg_02.jpg");
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	height:100px;
	background-size:100%;
	z-index:-1;
	transform: perspective(160px) rotateX(30deg);
    width: 100%;
	bottom: -10px;
}
.p-about__body {
    padding: 0 15px;
}
.p-about__caption{position:absolute;right:10px;top:0px;color:#fff;}
.p-about {
    font-weight: bold;
}

/****************************
対応地域
****************************/
.p-area__inner {
    position: relative;
    text-align: center;
    max-width: 500px;
    margin: 0 auto 4rem;
}

.p-area__inner::after {
    content: '';
    background-color: #E8E8E8;
    transition: 0.5s;
    transform-origin: left top;
    transform: scale(0, 1);
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
}

.fade::before {
    transform: scale(1, 1);
}

.p-area__tag {
    font-size: 1.2rem;
    border-bottom: 1px solid #F9B24A;
    padding: 0px 10px;
    flex: 0 0 30%
}

@media screen and (min-width: 560px) {
    .p-area__tag {
        flex: 0 0 10%;
    }
}

.p-area__list {
    max-width: 960px;
    margin: 0 auto 40px;
    text-align: center;
}

.p-area__block {
    text-align: center;
}

.p-area__talk {
    font-weight: bold;
    font-size: 2rem;
    position: relative;
    display: inline-block;
    padding: 0 50px;
    color: #F9B24A;
    margin-bottom: 1.5rem;
}

@media screen and (min-width: 560px) {
    .p-area__talk {
        padding: 0 70px;
        font-size: 2.4rem;
        margin-bottom: 0px;
    }
}

.p-area__talk::before,
.p-area__talk::after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 48px;
    height: 2px;
    background-color: #F9B24A;
    right: 0;
}

.p-area__talk::before {
    transform: rotate(-60deg);
}

.p-area__talk::after {
    transform: rotate(60deg);
    left: 0;
}

.p-area__character {
    margin-bottom: 10px;
}

@media screen and (min-width: 560px) {
    .p-area__block .p-caption__body {
        text-align: center;
    }
}

/****************************
事業内容
****************************/
.p-business {
    margin-top: 12rem;
}

.p-business__block {
    padding: 20px 15px;
}

@media screen and (min-width: 560px) {
    .p-business__image {
        flex: 0 0 30%;
        max-width: 30%;
    }

    .p-business__block {
        padding: 0 15px;
        flex: 0 0 65%;
        max-width: 65%;
    }
}

.p-business__headline {
    font-weight: bold;
    color: #F9B24A;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.u-business__inner {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-bottom: 4rem;
}

/****************************
企業情報
****************************/
.p-company {
    margin-top: 12rem;
}

.corporate-table {
    width: 100%;
    border-collapse: collapse;
    font-weight: bold;
}

.corporate-table tr {
    border-bottom: 1px solid #bbbbbb;
    display: flex;
    padding: 2rem 1.5rem;
}

.corporate-table tr:first-child {
    border-top: 1px solid #bbbbbb;
}

.corporate-table tbody {
    display: block;
    width: 100%;
}

.corporate-table th {
    width: 30%;
    text-align: justify;
    text-justify: inter-ideograph;
}

.corporate-table td {
    width: 70%;
}

@media screen and (min-width: 560px) {

    .corporate-table th,
    .corporate-table td {
        padding: 1rem 3rem;
    }
}

.corporate-table td a {
    display: inline-block;
    margin-right: 15px;
}

/****************************
ブログ
****************************/
.p-top__info {
    background-color: #fff;
    padding: 10px 15px;
    border-radius: 16px;
    position: absolute;
    right: 0px;
    bottom: -45px;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    width: 100%;
    max-width: 97%;
    margin: 0 auto;
}

@media screen and (min-width: 560px) {
    .p-top__info {
        max-width: 70%;
        padding: 16px 20px;
        right: 15px;
        bottom: -25px;
    }
}

.p-top__info__lead {
    color: #B2D676;
    font-size: 1.5rem;
    position: relative;
    margin-bottom: 1.5rem;
}

.p-top__info__lead::after {
    content: '';
    width: 60px;
    height: 2px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-color: #B2D676;
}
.blog-content .p-common-inner{
	flex-wrap:wrap;
}
.blog-content .p-common-inner .p-common__3colums{
	margin-bottom: 3.2rem;
}
@media screen and (min-width: 560px) {

    #blog .common-inner,
    .blog-content .common-inner {
        position: relative;
    }

    #blog .common-inner::after,
    .blog-content .common-inner::after {
        content: '';
        width: 31.25%;
        display: block;
    }
}

.c-information__date {
    font-weight: bold;
}

.c-information__image {
    overflow: hidden;
    position: relative;
    margin-bottom: 1rem;
}

.c-information__link:hover {
    color: #F9B24A;
}

.c-common__link {
    position: relative;
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #F3B0CD;
    background: linear-gradient(to right, #f7b149, #f7b149 50%, #F3B0CD 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    background-position: 100%;
    transition: background-position 1500ms ease;
    text-decoration: none;
    margin-top: 4rem;
    text-align: center;
}

.c-common__link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 20px;
    bottom: -15px;
    transition: 1500ms ease;
    text-align: center;
    background: #F3B0CD;
    height: 2px;
    display: block;
    margin: 0 auto;
}

.c-common__link:hover {
    background-position: 0 100%;
}

.c-common__link:hover::after {
    width: 100px;
}

.blog-link:hover {
    color: #F3B0CD;
}

.blog-link__body {
    overflow: hidden;
}

@media screen and (min-width: 560px) {
    .blog-link__body {
        display: flex;
    }
}

.blog-ttl {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media screen and (min-width: 560px) {
    .blog-ttl {
        margin-left: 15px;
    }
}

.blog-ttl i {
    color: #B2D676;
    position: relative;
}

.blog-link:hover .blog-ttl i {
    color: #F3B0CD;
}

/* .blog-image img {
    transition: .3s all;
    object-fit: cover;
    width: 100%;
    height: 240px;
} */

/* @media screen and (min-width: 960px) {
    .blog-image img {
        height: 320px;
    }
} */

/* .blog-link:hover img {
    transform: scale(1.1, 1.1);
}

.blog-content .col-3 {
    margin-top: 5rem;
} */
.p-works__headline {
    background: linear-gradient(90deg, #b2d676, #bcd26c, #c5ce62, #cfc95a, #d9c453, #e3be4e, #edb84a, #f7b149);
    padding: 60px 20px;
    color: #fff;
    font-size: 4rem;
    font-weight: normal;
    margin-bottom: 10rem;
    font-family: 'PT Serif',
        serif;
    line-height: 1.5;
}

.p-works__headline span {
    font-size: 1.4rem;
    font-weight: bold;
    display: block;
    font-family: "Yu Gothic Medium",
        "游ゴシック Medium",
        YuGothic,
        "游ゴシック体",
        "ヒラギノ角ゴ Pro W3",
        "メイリオ",
        sans-serif;
}

.article-content {
    padding-top: 4rem;
    padding-bottom: 12rem;
}

.blog-common-ttl {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 2rem;
    border-bottom: 4px solid #f7b149;
    color: #B2D577;
    padding-bottom: 1rem;
}

.blog-eyecatch__image {
    margin-bottom: 4rem;
}

/****************************************
パンくずリスト
*****************************************/
#breadcrumb {
    margin-left: auto;
    padding-left: 0;
    margin-right: auto;
    margin-bottom: 6rem;
}

#breadcrumb li {
    display: inline;
    list-style: none;
}

#breadcrumb li:after {
    content: '>';
    padding: 0 10px;
}

#breadcrumb li:last-child:after {
    content: '';
}

#breadcrumb li a {
    text-decoration: none;
    display: inline-block;
}

#breadcrumb li:first-child a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f015";
    -webkit-font-smoothing: antialiased;
    font-weight: bold;
    font-size: 1.3rem;
    color: #333;
    padding-right: 5px;
}

#breadcrumb li a:hover {
    opacity: 0.5;
}

/****************************
お問い合わせ
****************************/
.p-contact {
    margin-top: 12rem;
}

.wpcf7 {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.cform tr {
    display: block;
    margin-bottom: 4.8rem;
}

@media screen and (min-width: 560px) {
    .cform tr {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.cform th {
    display: block;
    margin-bottom: 1rem;
    text-align: left;
}

@media screen and (min-width: 560px) {
    .cform th {
        margin-bottom: 0;
        margin-right: 1rem;
        max-width: 20rem;
        width: 100%;
        align-self: flex-start;
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        display: flex;
        justify-content: space-between;
    }
}

@media screen and (min-width: 560px) {
    .cform td {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
        width: 100%;
        display: block;
    }
}

@media screen and (min-width: 560px) {
    .mw_wp_form {
        max-width: 960px;
        margin: 0 auto;
    }
}

.mw_wp_form {
    margin: 4rem auto 0;
    width: 100%;
    table-layout: fixed;
    word-break: break-all;
    word-wrap: break-all;
}

.mw_wp_form table {
    width: 100%;
}

.mw_wp_form [type=submit] {
    display: inline-block;
    font-size: 20px;
    padding: 10px 30px;
    text-decoration: none;
    background: #ff8f00;
    color: #FFF;
    border-bottom: solid 4px #B17C00;
    border-radius: 3px;
}

.mw_wp_form option,
.mw_wp_form textarea,
.mw_wp_form input[type=text],
mw_wp_form select,
.mw_wp_form input[type=email],
.mw_wp_form input[type=search],
.mw_wp_form input[type=url] {
    background-color: #fff;
    border: 1px solid #bbbbbb;
    padding: 5px 10px;
    margin-bottom: 5px;
    width: 100%;
}

@media screen and (min-width: 560px) {

    .mw_wp_form option,
    .mw_wp_form textarea,
    .mw_wp_form input[type=text],
    .mw_wp_form select,
    .mw_wp_form input[type=email],
    .mw_wp_form input[type=search],
    .mw_wp_form input[type=url] {
        width: 100%;
    }
}

.mw_wp_form textarea {
    min-height: 300px;
}

.required-srt {
    display: inline-block;
    background-color: #f7b149;
    color: #fff;
    padding: 0 0.5em;
    font-size: 1.2rem;
    margin-left: 1rem;
}

@media screen and (min-width: 560px) {
    .required-srt {
        margin-left: 0;
    }
}

.mw_wp_form input[type="submit"] {
    cursor: pointer;
    background-color: #F3B0CD;
    padding: 24px 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    color: #fff;
    display: block;
    letter-spacing: 0.25rem;
    position: relative;
    transition: .3s;
    font-weight: 600;
    border: none;
}

.mw_wp_form input[type="submit"]:hover {
    background-color: #f7b149;

}

.submit-btn input:hover {
    background: #fff;
    color: #00142c;
}

.form-btn__inner {
    margin-top: 4rem;
}

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

select {
    -moz-appearance: menulist;
    -webkit-appearance: menulist;
}

select::-ms-expand {
    display: block;
}

.submit-btn {
    cursor: pointer;
    max-width: 280px;
    background-color: #ED6D00;
    padding: 24px 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    color: #fff;
    display: block;
    letter-spacing: 0.25rem;
    position: relative;
    transition: .3s;
    font-weight: 600;
    border: none;
}

.submit-btn::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
    -webkit-animation: shine 2s infinite;
    animation: shine 2s infinite;
}

#wpcf7-modify {
    cursor: pointer;
    max-width: 280px;
    background-color: #fff;
    padding: 24px 32px;
    color: #FF9103 !important;
    border: 1px solid #FF9103 !important;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    color: #fff;
    display: block;
    letter-spacing: 0.25rem;
    position: relative;
    transition: .3s;
    font-weight: 600;
    border: none;
}

.submit-btn:hover {
    opacity: 0.6;
}

.thanks-block {
    margin-bottom: 16rem;
    text-align: left;
}

.thanks-block h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

@media screen and (min-width: 560px) {
    .thanks-block {
        text-align: center;
    }
}

.thanks-text {
    line-height: 2.4;
}

.caption {
    color: #999;
    margin-top: 2rem;
    display: block;
}

.contact-agreement__body {
    text-align: center;
    margin: 2rem 0;
}

.contact-agreement__body a {
    display: inline-block;
    text-decoration: underline;
}

@media screen and (min-width: 560px) {
    .contact-agreement__body a {
        margin-bottom: 4rem;
    }
}

.privacy-policy__wrap {
    max-width: 960px;
    margin: 0 auto 14rem;
}

.privacy-policy__block {
    margin-bottom: 4rem;
}

div.wpcf7-mail-sent-ok {
    border: 2px solid #ffffff !important;
    background: #fff;
}

.wpcf7 form.sent .wpcf7-response-output {
    border: 2px solid #ffffff !important;
    background: #fff;
}

.contact-thanks {
    margin:11rem auto;
}

.contact-headline {
    font-size: 2rem;
    margin-bottom: 4rem;
}

.wpcf7-mail-sent-ok {
    display: none !important
}

/****************************
footer
****************************/
footer {
    border-top: 4px solid #B2D577;
    color: #fff;
    margin-top: 12rem;
    text-align: center;
    font-weight: bold;
    color: #B2D577;
}

.footer-wrap {
    margin-left: auto;
    margin-right: auto;
    padding: 40px 15px;
}

.footer-logo {
    max-width: 120px;
    margin: 0 auto 2rem;
}

copyright {
    padding: 10px;
    display: block;
    text-align: center;
    font-size: 1.2rem;
    background: #B2D577;
    color: #fff;
    font-weight: normal;
}