@charset "utf-8";

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    border: 0;
    outline: 0;
}
header,
footer,
article,
section,
aside,
hgroup,
nav,
menu,
figure,
figcaption,
time {
    display: block;
}
li {
    list-style: none;
}
ol li {
    list-style: decimal;
}
img {
    width: 100%;
    max-width: 100%;
    height: auto;
    font-size: 0;
    line-height: 0;
    vertical-align: top;
    border: 0;
}
table {
    border-spacing: 0;
    border-collapse: collapse;
}
caption,
th {
    text-align: left;
}
hr {
    display: block;
    height: 1px;
    margin: 1em 0;
    padding: 0;

    border: 0;
    border-top: 1px solid #ccc;
}
input,
select {
    vertical-align: middle;
}
input,
textarea {
    margin: 0;
    padding: 0;
}
/*----------------------------------------
	Common
----------------------------------------*/
html {
    width: 100%;
    font-size: 62.5%;
}
body {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","Osaka","ＭＳ Ｐゴシック", "MS P Gothic",Verdana,Arial, Helvetica, sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #3c3c3c;
    position:relative;
    z-index: 0;
    line-height: 1.875;
    letter-spacing: .08rem;
    -webkit-font-feature-settings: "palt" 1;
    font-feature-settings: "palt" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
    height: 100%;
}
a {
    color: #3c3c3c;
    outline: none;
    overflow: hidden;
    text-decoration: underline;
}
a:hover {
    color: #1b2734;
    text-decoration: none;
}
a[href^="tel:"] {
	cursor: default;
}
.show-mobile-inline,
.show-mobile {
    display: none;
}
.hide-mobile {
    display: block;
}
.hide-mobile-inline {
	display: inline-block;
}
.br-mobile {
    display: none !important;
}
@media (min-width: 768px) and (max-width: 1439px){

}
@media only screen and (max-width: 767px) {
	.show-mobile {
		display: block;
	}
	.show-mobile-inline {
		display: inline-block;
	}
	.hide-mobile {
		display: none;
	}
	.hide-mobile-inline {
		display: none;
	}
    .br-mobile {
        display: block !important;
    }
    main {
        overflow-x: hidden;
    }
}
@media only screen and (max-width: 999px) {
    body {
        font-size: 1.5rem;
    }
}
@media only screen and (max-width: 767px) {
    body {
        font-size: 1.4rem;
    }
}
/*----------------------------------------
	Animation
----------------------------------------*/
.fadeIn {
    transition: opacity 1s .1s;
    transition: transform 1s cubic-bezier(.4, 0, .2, 1) .1s, opacity 1s .1s;
    opacity: 0;
}
.fadeIn.inview {
    opacity: 1;
}
.blurIn {
    animation-name: blurInAnime;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    opacity: 0;
}
@keyframes blurInAnime {
    0% {
        filter:blur(15px);
        transform:scale(1.02);
        opacity:0
    }
    100% {
        filter:blur(0);
        transform:scale(1);
        opacity:1
    }
}
.maskIn {
    line-height: 0;
    overflow: hidden;
    position: relative;
}
.maskIn:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #00A2E6;
    transform-origin: right center;
}
.maskIn.inview:after {
    transition: transform 1s 0.1s cubic-bezier(0.19, 1, 0.22, 1),background 3s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scaleX(0);
}

/*----------------------------------------
	Misc
----------------------------------------*/
.inner {
    width: 91.667vw;
    /* max-width: 1320px; */
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.full-width {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.t-blue {
    color: #01b2de;
}
.f-bold {
    font-weight: bold;
}
@media only screen and (max-width: 767px) {
    .inner {
        width: 86.666vw;
    }
}
/*----------------------------------------
	Components
----------------------------------------*/
.c-button {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: linear-gradient(to left, rgba(0, 162, 230, 1) 0, rgba(3, 135, 205, 1) 100%);
    border-radius: 4rem;
    line-height: 1;
    text-decoration: none;
    padding: 1.8rem 3.4rem 2.2rem 3.4rem;
    letter-spacing: .1rem;
    font-weight: 700;
    min-width: 22rem;
    max-width: fit-content;
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: all .5s cubic-bezier(0.43, 0.05, 0.17, 1);
}
.c-button:after,
.c-button:before {
    content: "";
    display: block;
    position: absolute;
}
.c-button:before {
    width: 0;
    height: 0;
    padding-bottom: 0;
    border-radius: 50%;
    background: #00A2E6;
    transition: all .5s cubic-bezier(0.43, 0.05, 0.17, 1);
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
}
.c-button:hover {
    color: #fff !important;
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 20%);
}
.c-button:hover:before {
    width: 100%;
    padding-bottom: 100%;
}
.c-more-block {
    text-align: center;
    margin-top: 4rem;
}
.c-more-block .c-button {
    margin: 0 auto;
}
.c-linelink {
    text-decoration: none;
    will-change: background-size;
    background: url(../img/common/line.png) no-repeat left bottom;
    background-size: 100% 1px;
}
.c-linelink:hover {
    animation: linelink 1s cubic-bezier(0.43, 0.05, 0.17, 1) 0s;
}
@keyframes linelink {
    0%{
        background-position:right bottom;background-size:100% 1px
    }
    50%{
        background-position:right bottom;background-size:0 1px
    }
    51%{
        background-position:left bottom;background-size:0 1px
    }
    100%{
        background-position:left bottom;background-size:100% 1px
    }
}
.c-table {
    border-top: 1px solid #E6E6E6;
    border-left: 1px solid #E6E6E6;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.c-table td {
    border-bottom: 1px solid #E6E6E6;
    border-right: 1px solid #E6E6E6;
    padding: 1.8rem 1.5rem;
}
.c-input {
    width: 100%;
    padding: 1.6rem;
    transition: all .3s ease;
    font-size: 1.5rem;
    border: 1px solid #CCC;
    border-radius: 4px;
    outline: none;
    background-color: #F4F6F8;
    appearance: none;
}
.c-date {
    width: 200px;
    padding: 1.6rem;
    transition: all .3s ease;
    font-size: 1.5rem;
    border: 1px solid #CCC;
    border-radius: 4px;
    outline: none;
    background-color: #F4F6F8;
    appearance: none;
}
.c-select-time {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    text-indent: 4px;
    border-radius: 4px;
    background: #EEE no-repeat;
    vertical-align: middle;
    border: 1px solid #CCC;
    font-size: 15px;
    width: 100px;
    padding: 1.6rem;
    margin-left: 1rem;
}
.c-textarea {
    font-size: 1.5rem;
    box-sizing: border-box;
    width: 100%;
    height: 360px;
    padding: 1.6rem;
    transition: all .3s ease;
    border: 1px solid #CCC;
    border-radius: 4px;
    outline: none;
    background-color: #ebebeb;
    appearance: none;
}
.c-select {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    text-indent: 4px;
    border-radius: 4px;
    background: #EEE no-repeat;
    vertical-align: middle;
    border: 1px solid #CCC;
    font-size: 15px;
    width: 300px;
    padding: 1.6rem;
}
.c-bread-crumb {
    font-size: 1.2rem;
    background-color: #F1F5F9;
    color: #989898;
}
.c-bread-crumb ul {
    display: flex;
    padding: 0.9rem 0 1rem 0;
    line-height: 1;
    overflow-x: auto;
    white-space: nowrap;
}
.c-bread-crumb ul li {
    position: relative;
    flex: 0 0 auto;
    list-style: none;
}
.c-bread-crumb ul li:not(:first-child):before {
    position: absolute;
    top: 50%;
    display: block;
    content: '／';
    transform: translate(-50%, -50%);
}
.c-bread-crumb ul li a {
    color: #989898;
    padding-right: 1.4rem;
    text-decoration: none;
}
.c-bread-crumb ul li:not(:first-child) a {
    padding-left: 1.4rem;
}
.c-bread-crumb ul li span {
    color: #929292;
    padding-left: 1.4rem;
}
.c-text-bg {
    width: 100000px;
    height: 163px;
    position: absolute;
    z-index: -1;
    left: -50000px;
    will-change: transform;
}
.c-section-title {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 5rem;
}
.c-section-title .en {
    color: #00A2E6;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .08rem;
    margin-bottom: 1.1rem;
    text-indent: 0.1rem;
}
.c-section-title .jp {
    font-size: 3.4rem;
    line-height: 1.4;
}
@media only screen and (max-width: 767px) {
    .c-button {
        font-size: 1.5rem;
        font-weight: 600;
    }
    .c-text-bg {
        height: 100px;
    }
    .breadcrumb ul {
        font-size: 1rem;
    }
    .c-section-title .jp {
        font-size: 2.4rem;
    }
    .c-section-title .en {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
}

/*----------------------------------------
	layout
----------------------------------------*/
.l-wrapper {
    transition: 0.4s ease-in-out;
}
.l-header {
    width: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
    height: 12rem;
    position: fixed;
    top: 0;
    background: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    transition: all .3s ease;
}
.when_scroll:not(.sp-menu-open) .l-header {
}
.l-main {
    padding-top: 12rem;
}
.l-footer {
    margin-top: 10rem;
}
@media only screen and (max-width: 999px) {
    .l-header {
        height: 6rem;
    }
    .l-main {
        padding-top: 6rem;
    }
    .l-footer {
    }
}
/*----------------------------------------
	Header
----------------------------------------*/
.p-header {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
}
.p-header-logo {
    margin-left: 3vw;
}
.p-header-logo {
    max-width: 26rem;
    width: 22%;
    height: 100%;
}
.p-header-logo,
.p-header-logo img {
    display: flex;
    align-items: center;
}
.p-header-navi {
    width: 70%;
    margin-right: 3vw;
    margin-bottom: 3rem;
    display: flex;
    justify-content: end;
}
.p-header-navi__contact {
    display: flex;
    position: absolute;
    top: 0;
    right: 3vw;
}
.p-header-navi__contact .sns {
    width: 3.4rem;
    margin-right: 2rem;
    margin-top: 0.6rem;
}
.p-header-navi__contact .online-app .t-small {
    font-size: 1.1rem;
}
.p-header-navi__contact .mail {
    text-align: center;
}
.p-header-navi__contact .online-app a,
.p-header-navi__contact .mail a {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 0.6rem 2rem 1rem 2rem;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    background: #0387CD;
    transition: all .5s cubic-bezier(0.43, 0.05, 0.17, 1);
    border-radius: 0 0 0.6rem 0;
}
.p-header-navi__contact .online-app a {
    background: #00A2E6;
    border-radius: 0 0 0 0.6rem;
}
.p-header-navi__contact .online-app a img {
    width: 1.4rem;
    margin-right: 0.6rem;
    margin-top: 0.2rem;
}
.p-header-navi__contact .mail a:hover {
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 20%);
}
.p-header-navi__contact .mail a img {
    width: 1.8rem;
    margin-right: 0.6rem;
    margin-top: 0.2rem;
}
.p-header-navi__gnavi {
    display: flex;
    align-items: center;
}
.p-header-navi__gnavi li {
    position: relative;
}
.p-header-navi__gnavi li:not(:last-of-type) {
    margin-right: 2vw;
}
.p-header-navi__gnavi li::after {
    content: '';
    display: block;
    width: 100%;
    height: 0.2rem;
    background-color: #00A2E6;
    border-radius: 1rem;
    position: absolute;
    bottom: -1.4rem;
    left: 0;
    transition: transform 1s 0.1s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scaleX(0);
}
.p-header-navi__gnavi li.current::after,
.p-header-navi__gnavi li:hover::after {
    transform: scaleX(1);
}
.p-header-navi__gnavi li a {
    display: block;
    text-decoration: none;
    color: #00A2E6;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1;
}
.p-header-navi__gnavi li a .t-large {
    font-size: 2rem;
}
.p-header-navi__gnavi li a .t-small {
    font-size: 1.2rem;
}
.p-header-sp-btn {
    display: none;
    width: 5rem;
    height: 5rem;
    position: absolute;
    top: 3rem;
    right: 0.3rem;
    z-index: 1000;
    transform: translateY(-50%);
    cursor: pointer;
    transition: .4s ease-in-out;
}
.p-header-sp-btn span {
    width: 2.4rem;
    height: 2px;
    background-color: #00A2E6;
    position: absolute;
    left: calc(50% - 1.3rem);
    transition: .4s ease-in-out;
}
.p-header-sp-btn span.l1 {
    top: 1.8rem;
}
.p-header-sp-btn span.l2 {
    top: 2.4rem;
}
.p-header-sp-btn span.l3 {
    top: 3rem;
}
/* SP Menu Opened */
.sp-menu-open .p-header-sp-btn .l1 {
    top: 2.4rem;
    transform: rotate(135deg);
}
.sp-menu-open .p-header-sp-btn .l2 {
    opacity: 0;
}
.sp-menu-open .p-header-sp-btn .l3 {
    top: 2.4rem;
    transform: rotate(-135deg);
}
.sp-menu-open .p-header-navi__gnavi {
    right: 0;
}
@media only screen and (max-width: 999px) {
    .p-header-navi .online-app {
        margin-right: .6rem;
    }
    .p-header-navi .online-app a {
        border-radius: 0.6rem;
        font-size: 1.1rem;
        padding: 0.6rem 1rem .8rem 1rem;
    }
    .p-header-navi__contact .online-app a img {
        display: none;
    }
    .p-header-logo,
    .p-header-logo img {
        width: 18rem;
    }
    .p-header-logo {
        margin-left: 2rem;
    }
    .p-header-navi {
        margin-right: initial;
        margin-bottom: initial;
    }
    .p-header-navi__contact {
        align-items: center;
        top: 1rem;
        right: 6rem;
    }
    .p-header-navi__contact .sns {
        width: 4rem;
        margin-right: .5rem;
        margin-top: 0;
    }
    .p-header-navi__contact .mail {
        width: 10rem;
        height: 3.2rem;
        font-size: 1.1rem;
        border-radius: 8rem;
    }
    .p-header-navi__contact .mail a {
        border-radius: 0.6rem;
        font-size: 1.1rem;
        padding: 0.6rem 1rem .8rem 1rem;
    }
    .p-header-navi__contact .mail a img {
        display: none;
    }
    .p-header-navi__gnavi {
        width: 100vw;
        height: 100vh;
        overflow-x: hidden;
        overflow-y: scroll;
        flex-direction: column;
        background: #fff;
        position: fixed;
        top: 6rem;
        right: -100vw;
        z-index: 1000;
        padding: 3rem 0;
        transition: 0.3s cubic-bezier(0,0,0,1);
        overflow-y: scroll;
    }
    .p-header-navi__gnavi li {
        margin-right: 0 !important;
        width: 100%;
        max-width: 400px;
        transition: .4s cubic-bezier(0,0,0,1);
        transform: translateX(40px);
        opacity: 0;
    }
    .p-header-navi__gnavi li::after {
        display: none;
    }
    .p-header-navi__gnavi li a {
        padding: 2rem 3rem;
        font-size: 2rem;
        background: url(../img/common/icon_allow_blue.svg) no-repeat right 2.5rem center;
        background-size: 10px auto;
    }
    .p-header-navi__gnavi li a .t-large {
        font-size: 2rem;
    }
    .p-header-navi__gnavi li a .t-small {
        font-size: 2rem;
    }
    .p-header-sp-btn {
        display: block;
    }
    .p-header-sp-btn span {
        background-color: #00A2E6;
    }
    .p-header-navi__contact .mail a img {
        width: 1.8rem;
        margin: 0;
    }
}
/*----------------------------------------
	Footer
----------------------------------------*/
.p-footer {
    padding: 10rem 0 5rem 0;
    background-color: #00A2E6;
    color: #fff;
    line-height: 1.4;
}
.p-footer a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
}
.p-footer a:hover {
    text-decoration: underline;
}
.p-footer .inner {
    display: flex;
    justify-content: space-between;
    max-width: 1320px;
}
.p-footer-contact {
    width: 22%;
    min-width: 24rem;
}
.p-footer-contact .logo {
    margin-bottom: 5rem;
}
.p-footer-contact__tel {
    display: flex;
    line-height: 1;
    margin-bottom: 2.6rem;
}
.p-footer-contact__tel > figure {
    width: 4.4rem;
    margin-right: 1rem;
}
.p-footer-contact__tel .tel-info {
    display: flex;
    flex-direction: column;
}
.p-footer-contact__tel .tel {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.6rem;
    font-weight: 600;
    letter-spacing: .14rem;
    margin-bottom: 0.5rem;
}
.p-footer-contact__tel .time {
    font-size: 1.1rem;
}
.p-footer-contact__mail .c-button {
    background: none;
    border: 1px solid #fff;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1.6rem 3rem 1.9rem 3rem;
}
.p-footer-contact__mail .c-button:hover {
    color: #00A2E6 !important;
    text-decoration: none;
}
.p-footer-contact__mail .c-button:hover:before {
    background: #fff;
}
.p-footer-navi {
    width: 58%;
    padding-top: 0.5rem;
}
.p-footer-navi .item {}
.p-footer-navi .item > a,
.p-footer-navi .item > dt > a {
    font-weight: 700;
}
.p-footer-navi .item > dt {
    margin-bottom: 1.6rem;
}
.p-footer-navi .item > dd {
    font-size: 1.3rem;
    margin: 0.7rem 0;
}
.p-footer-navi__top {
    margin-bottom: 3.6rem;
}
.p-footer-navi__sub {
    display: flex;
}
.p-footer-navi__sub > nav {
    width: 25%;
}
.p-footer-navi__sub > nav > .item {
    margin-bottom: 3.2rem;
}
.p-footer-copyright {
    font-size: 1.2rem;
    margin-top: 4rem;
}
@media only screen and (max-width: 999px) {
    .p-footer .inner {
        flex-direction: column-reverse;
    }
    .p-footer-navi {
        width: 100%;
        padding-top: 0;
        margin-bottom: 8rem;
    }
}
@media only screen and (max-width: 767px) {
    .p-footer {
        padding: 5rem 0 3rem 0;
    }
    .p-footer .inner {
        justify-content: center;
        align-items: center;
    }
    .p-footer-contact {
        width: 66vw;
    }
    .p-footer-contact .logo {
        margin-bottom: 4.5rem;
    }
    .p-footer-navi {
        display: none;
    }
    .p-footer-contact__tel {
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2.4rem;
    }
    .p-footer-contact__tel .tel {
        font-size: 4rem;
        margin-top: -0.2rem;
    }
    .p-footer-contact__tel > figure {
        width: 4rem;
    }
    .p-footer-contact__mail {
        text-align: center;
    }
    .p-footer-contact__mail .c-button {
        max-width: initial;
        text-align: center;
    }
    .p-footer-copyright {
        font-size: 1.1rem;
        text-align: center;
        margin-top: 6rem;
    }
}

/*----------------------------------------
	Loading
----------------------------------------*/
body:not(.loaded) {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
#loading {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000000;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}
#loading img {
    width: 60%;
    max-width: 45rem;
    position: relative;
    z-index: 1;
}
#loading::before,
#loading::after {
    content: '';
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
}
#loading::before {
    background-color: #fff;
}
#loading::after {
    background-color: #00A2E6;
    animation: afterIn .7s cubic-bezier(0,0,0,1);
    animation-fill-mode: forwards;
}
.loaded #loading {
    animation: loadingHide .0s linear;
    animation-fill-mode: forwards;
    animation-delay: 1.2s;
}
.loaded #loading img {
    animation: loadingHide 0.1s linear;
    animation-fill-mode: forwards;
    animation-delay: .5s;
}
.loaded #loading::before {
    animation: afterOut .7s cubic-bezier(0,0,0,1);
    animation-fill-mode: forwards;
    animation-delay: .5s;
}
.loaded #loading::after {
    animation: afterOut .7s cubic-bezier(0,0,0,1);
    animation-fill-mode: forwards;
    animation-delay: .5s;
}
.p-progress-bar {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000001;
    height: 8px;
    background-color: #fff;
}
@keyframes loadingHide {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes afterIn {
    0% {
        transform: translate(-101%, 0)
    }
    100% {
        transform: translate(0, 0)
    }
}
@keyframes afterOut {
    0% {
        transform: translate(0, 0)
    }
    100% {
        transform: translate(101%, 0)
    }
}

/*----------------------------------------
	Top
----------------------------------------*/
.p-top-section {
    position: relative;
    width: 100vw;
    overflow: hidden;
}
/* メインビジュアル */
.p-top-visual {
    display: flex;
    position: relative;
}
.p-top-visual__conetnt {
    width: calc(100% - 30rem);
}
.p-top-visual__conetnt .p-top-message-copy {
    transition: 0.9s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;
    position: absolute;
    left: 6rem;
    top: 47rem;
    z-index: 2;
    opacity: 0;
}
.p-top-visual__conetnt::before {
    content: "";
    display: block;
    height: 70rem;
}
.p-top-visual__conetnt .swiper-container {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 30rem);
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.p-top-visual__conetnt .swiper-wrapper {
}
.p-top-visual__conetnt .swiper-slide {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.p-scroll {
    width: 13.5rem;
    height: 1rem;
    position: absolute;
    right: 1rem;
    bottom: 7.5rem;
    transform: translateX(5rem) rotate(90deg);
    z-index: 1;
    display: none;
}
.p-scroll span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    color: #00A2E6;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1;
    margin-right: 0.8rem;
}
.p-scroll::after,
.p-scroll::before {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 0;
    display: block;
    width: 7.6rem;
    height: 1px;
    margin: 0;
    content: '';
    background-color: #00A2E6;
}
.p-scroll::after {
    z-index: 2;
    animation-name: pagerScroll;
    animation-duration: 1.6s;
    animation-timing-function: cubic-bezier(.77, 0, .175, 1);
    animation-delay: 0s;
    animation-iteration-count: infinite;
    background-color: white;
    animation-fill-mode: forwards;
}
@keyframes pagerScroll {
    0%,
    20% {
        right: 7.6rem;
        width: 0;
    }
    60% {
        right: 0;
        width: 7.6rem;
    }
    100% {
        right: 0;
        width: 0;
    }
}
/* メッセージ */
.p-top-message-copy {
    min-width: fit-content;
    color: #00A2E6;
}
.p-top-message-copy p {
    width: fit-content;
    line-height: 1;
    font-weight: 500;
    margin-bottom: .5rem;
    padding: 1rem 1.1rem 0.8rem 1.1rem;
    position: relative;
    overflow: hidden;
    background-color: rgba(255, 255, 255, .9);
}
.p-top-message-copy p span {
    display: block;
    color: #00A2E6;
    background: -webkit-linear-gradient(0deg, #0387CD, #00A2E6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.p-top-message-copy p.sub span {
    font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", "Meiryo", "Osaka", sans-serif;
    font-size: calc(1.2rem + .5vw);
    font-weight: bold;
    -webkit-font-smoothing: initial;
    letter-spacing: .14rem;
    animation-delay: 1s;
}
.p-top-message-copy p.main span {
    font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", verdana, "メイリオ", "Meiryo", "Osaka", sans-serif;
    font-size: calc(1.4rem + 3vw);
    font-weight: 600;
    letter-spacing: .3rem;
    animation-delay: 1.1s;
}
.p-top-message-copy p.en span {
    font-family: 'Montserrat', sans-serif;
    font-size: calc(1rem + 1vw);
    font-weight: 500;
    letter-spacing: .28rem;
    animation-delay: 1.2s;
}
.p-top-message .c-text-bg {
    bottom: 0;
    background: url(../img/top/top_message_bg_text.svg) repeat-x left center / auto 100%;
}
.p-top-visual__navi {
    display: flex;
    flex-direction: column;
    width: 30rem;
}
.p-top-visual__navi a {
    flex: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    padding: 0 12%;
    line-height: 1;
    transition: .4s;
        background: url(../img/common/icon_allow.svg) no-repeat right 8% center;
    background-size: 1rem auto;
}
.p-top-visual__navi a:hover {
    background-position: right 6% center;
}
.p-top-visual__navi a:first-of-type {
    background-color: #0387CD;
}
.p-top-visual__navi a:nth-of-type(2) {
    background-color: #1F99DA;
}
.p-top-visual__navi a:nth-of-type(3) {
    background-color: #00A2E6;
}
.p-top-visual__navi .navi-title {
    margin-bottom: 1.3rem;
}
.p-top-visual__navi .navi-title span {
    font-size: 3rem;
}
.p-top-visual__navi .navi-outline {
    font-size: 1.3rem;
}
/* メッセージ */
.p-top-section .inner {
    max-width: 1320px;
 }
.p-top-section.message {
    margin: 16rem 0 14rem 0;
    padding-bottom: 3rem;
}
.p-top-message {
    width: 90vw;
    max-width: 120rem;
    display: flex;
    justify-content: end;
    margin: 0 auto;
}
.p-top-message .p-top-message-copy {
    position: fixed;
    left: 6rem;
    top: 59rem;
    z-index: 1;
}
.is_fixCopy .p-top-message .p-top-message-copy {
    position: absolute;
    top: 0;
}
.p-top-message__content {
    width: 42vw;
    max-width: 60rem;
    line-height: 2.2;
}
.p-top-message__content p {
    text-align: justify;
}
.p-top-message__content p:not(:last-of-type) {
    margin-bottom: 2rem;    
}
.p-top-message__content p:last-of-type {
    margin-top: 4rem;
}
/* 企業情報 */
.p-top-section.company {
    position: relative;
    padding-bottom: 8rem;
    margin-bottom: 10rem;
}
.p-top-section.company .c-text-bg {
    bottom: 0rem;
    background: url(../img/top/top_company_bg_text.svg) repeat-x left center / auto 100%;
}
.p-top-section.company .inner {
    display: flex;
    flex-wrap: wrap;
}
.p-top-section__content {
    width: 50%;
}
.p-top-section.company .p-top-section__content {
    padding: 2rem 0 0 2rem;
}
.p-top-section__content h2 {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 4rem;
    color: #00A2E6;
}
.p-top-section__content h2 .en {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}
.p-top-section__content h2 .jp {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: .1rem;
}
.p-top-section__content p {
    margin-bottom: 4rem;
}
.p-top-section__image {
    width: 50%;
    position: relative;
}
.p-top-section__image figure img {
    position: relative;
    z-index: 3;
}
.p-top-section__image figure.maskIn:after {
    z-index: 4;
}
.p-top-section__image::after,
.p-top-section__image::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}
.p-top-section__image::before {
    width: 100vw;
    height: 24vw;
    z-index: 1;
    background-color: #00A2E6;
}
.p-top-section__image::after {
    width: 50%;
    height: 50%;
    z-index: 2;
    background-color: #1F99DA;
}
.p-top-section.company .p-top-section__image::after,
.p-top-section.company .p-top-section__image::before {
    left: 0;
}
.p-top-section.company .p-top-section__image figure {
    margin: 3rem 0 0 3rem;
}
/* 施工実績 */
.p-top-section.projects {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 18%;
    margin-bottom: 14rem;
}
.p-top-section.projects .inner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}
.p-top-section.projects .c-text-bg {
    bottom: 0rem;
    background: url(../img/top/top_projects_bg_text.svg) repeat-x left center / auto 100%;
}
.p-top-section.projects .p-top-section__content {
    padding: 5rem 0 0 6rem;
    width: 40%;
}
.p-top-section.projects .p-top-section__image {
    width: 60%;
}
.p-top-section.projects .p-top-section__image::before {
    height: 34vw;
}
.p-top-section.projects .p-top-section__image::after,
.p-top-section.projects .p-top-section__image::before {
    right: 14%;
}
.p-top-section.projects .p-top-section__image figure:first-of-type {
    width: 80%;
    position: absolute;
    top: -4rem;
}
.p-top-section.projects .p-top-section__image figure:last-of-type {
    width: 40%;
    position: absolute;
    right: 0;
    top: 60%;
}
/* お知らせ */
.p-top-section.news {
    margin-bottom: 14rem;
}
.p-top-news {
    display: flex;
    max-width: 110rem;
}
.p-top-news__heading {
    width: 30%;
}
.p-top-news__heading h2 {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 6rem;
    color: #00A2E6;
}
.p-top-news__heading h2 .en {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}
.p-top-news__heading h2 .jp {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: .1rem;
}
.p-top-news__heading-link a:first-of-type {
    margin-bottom: 2rem;
}
.p-top-news__heading-link a:last-of-type img {
    display: inline-block;
    width: 2rem;
    margin-right: .7rem;
}
.p-top-news__content {
    width: 70%;
}
.p-top-news-tab {
    display: flex;
    flex-wrap: wrap;
}
.p-top-news-tab li {
    padding: 0 .4rem;
    margin-bottom: 2rem;
}
.p-top-news-tab li:first-of-type {
    padding-left: 0;
}
.p-top-news-tab li span {
    display: block;
    font-size: 1.3rem;
    letter-spacing: .1rem;
    line-height: 1;
    padding: 0.3rem 1rem 0.5rem 1rem;
}
.p-top-news-tab li span:hover {
    cursor: pointer;
}
.p-top-news-tab li.current span {
    background: #00A2E6;
    color: #fff;
    border-radius: 2rem;
}
.p-top-news-list {
    display: none;
    border-top: 1px solid #D0D0D0;
}
.p-top-news-list:first-of-type {
    display: block;
}
.p-top-news-list li {
    border-bottom: 1px solid #D0D0D0;
    padding: 2.4rem 0;
}
.p-top-news-list li a {
    display: flex;
    align-items: baseline;
    text-decoration: none;
}
.p-top-news-list li a span {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: .14rem;
    font-weight: 600;
    font-size: 1.6rem;
}
.p-top-news-list li a .date {
    width: 8rem;
    margin-right: 2rem;
    font-size: 1.4rem;
    color: #00A2E6;
    line-height: 1;
}
.p-top-news-list li a .category {
    width: 14rem;
    margin-right: 2rem;
}
.p-top-news-list li a .category span {
    font-size: 1.1rem;
    letter-spacing: .02em;
    color: #00A2E6;
    line-height: 1;
    padding: .6rem .8rem;
    border: 1px solid #00A2E6;
}
.p-top-news-list li a .title {
    flex: 1;
    line-height: 1.75;
}
.p-top-news-list li a:hover .title {
    text-decoration: underline;
}
/* バナー */
.p-top-banner {
    display: flex;
    flex-wrap: wrap;
    width: 91.667vw;
    max-width: 110rem;
    margin-top: 12rem;
    margin-left: auto;
    margin-right: auto;
}
.p-top-banner a {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 4%;
    transition: .3s;
}
.p-top-banner a:nth-of-type(3n) {
    margin-right: 0;
}
.p-top-banner a:hover {
    opacity: .75;
}
.p-top-banner a img {
    width: 100%;
}
@media only screen and (max-width: 1024px) {
    .p-top-message .p-top-message-copy {
        top: 55rem;
    }
    .p-top-section__content h2 .en {
        font-size: 4.2rem;
    }
    /* お知らせ */
    .p-top-news__heading {
        width: 100%;
        margin-bottom: 2rem;
    }
    .p-top-news__heading a {
        margin-left: auto;
        margin-right: auto;
    }
    .p-top-news {
        max-width: initial;
        flex-direction: column;
    }
    .p-top-news__heading h2 {
        margin-bottom: 4rem;
    }
    .p-top-news-tab {
        flex-wrap: wrap;
        text-align: center;
    }
    .p-top-news-tab li {
        width: inherit;
        margin-bottom: 2rem;
        padding-left: 0;
    }
    .p-top-news-tab li span {
        font-size: 1.2rem;
        line-height: 1.4;
        background: #EEE;
        border-radius: 2rem;
    }
    .p-top-news__content {
        width: 100%;
    }
    .p-top-news-list li a {
        flex-wrap: wrap;
    }
    .p-top-news-list li a .date {
        width: inherit;
        margin-right: 1.8rem;
    }
    .p-top-news-list li a .title {
        width: 100%;
        flex: initial;
        margin-top: 1rem;
        font-size: 1.6rem;
        line-height: 1.6;
    }
    .p-top-news__heading-link {
        margin-top: 3rem;
    }
    .p-top-news__heading-link a {
        margin-left: auto;
        margin-right: auto;
    }
    .p-top-news__heading-link.hide-mobile {
        display: none;
    }
    .p-top-news__heading-link.show-mobile {
        display: block;
    }
}
@media only screen and (max-width: 767px) {
    /* メインビジュアル */
    .p-top-visual {
        flex-direction: column;
    }
    .p-top-visual__conetnt {
        width: 100%;
    }
    .p-top-visual__conetnt::before {
        height: 64rem;
    }
    .p-top-visual__conetnt .p-top-message-copy {
        left: 2rem;
        top: 28rem;
        opacity: 1;
    }
    .when_scroll .p-top-visual__conetnt .p-top-message-copy {
        opacity: 0;
    }
    .p-top-visual__conetnt .swiper-container {
        width: 100%;
        height: 64rem;
    }
    .p-top-visual__conetnt .swiper-slide img {
        width: auto;
        height: 100%;
        max-width: initial;
        transform: translate(-25%, 0);
    }
    .p-top-visual__navi {
        width: 70%;
        position: relative;
        z-index: 2;
        margin-top: -3rem;
        margin-left: 2rem;
    }
    .p-top-visual__navi a {
        padding: 1.8rem 3rem;
        margin-bottom: 1rem;
        border-radius: 5rem;
        background-size: 0.7rem auto;
    }
    .p-top-visual__navi a:hover {
        text-indent: initial;
    }   
    .p-top-visual__navi .navi-title {
        margin-bottom: 0;
        font-size: 1.3rem;
        text-align: left;
        display: flex;
        align-items: center;
    }
    .p-top-visual__navi .navi-title span {
        font-size: 2rem;
        margin-bottom: 0.4rem;
    }
    .p-top-visual__navi .navi-outline {
        display: none;
    }
    .p-scroll {
        display: block;
    }
    /* メッセージ */
    .p-top-message {
        flex-direction: column;
        padding: 2rem 0 2rem 0;
    }
    .p-top-message__content {
        padding: 4rem 1rem 1rem 1rem;
        width: 100%; 
    }
    .p-top-message__content .c-button {
        margin: 0 auto;
    }
    .p-top-section.message {
        margin: 6rem 0 10rem 0;
    }
    .p-top-message .p-top-message-copy {
        position: relative;
        top: 0;
        left: initial;
        bottom: initial;
    }
    .p-top-message-copy p {
        padding: 0.8rem;
        margin-bottom: 0.3rem;
    }
    .p-top-message-copy p.sub span {
        font-size: 1.5rem;
        letter-spacing: .05rem;
    }
    .p-top-message-copy p.main span {
        letter-spacing: .2rem;
        font-size: 3.6rem;
    }
    .p-top-message-copy p.en span {
        font-size: 1.6rem;
    }
    /* 会社概要 */
    .p-top-news__heading h2 .en,
    .p-top-section__content h2 .en {
        font-size: 4rem;
    }
    .p-top-section.company {
        padding-bottom: 12rem;
    }
    .p-top-section.company .inner {
        flex-direction: column;
        position: relative;
    }
    .p-top-section.company .p-top-section__content {
        padding: 0;
        width: auto;
    }
    .p-top-section.company .inner .c-button {
        position: absolute;
        bottom: -9rem;
        left: 50%;
        transform: translateX(-50%);
    }
    .p-top-section.company .p-top-section__image {
        width: 94vw;
    }
    /* 施工実績 */
    .p-top-section.projects {
        padding-top: 0;
        padding-bottom: 33rem;
        margin-bottom: 10rem;
    }
    .p-top-section.projects .inner {
        flex-direction: column;
    }
    .p-top-section.projects .p-top-section__content {
        padding: 0 0 4rem 0;
        width: auto;
    }
    .p-top-section.projects .p-top-section__image {
        width: 100%;
        transform: translateX(-8vw);
    }
    .p-top-section.projects .p-top-section__image figure:last-of-type {
        top: 6rem;
    }
    .p-top-section.projects .p-top-section__image::before {
        height: 49vw;
    }
    .p-top-section.projects .inner .c-button {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    /* バナー */
    .p-top-banner {
        width: 86.666vw;
    }
    .p-top-banner a {
        width: 100%;
        margin-right: 0;
    }
}
/*----------------------------------------
	下層ページ共通
----------------------------------------*/
.p-sub-visual {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 40rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.p-sub-visual::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}
.p-sub-visual h1 {
    color: #fff;
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}
.p-sub-visual .jp {
    line-height: 1.25;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.6rem;
}
.p-sub-visual .en {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .1rem;
}
.p-sub-section  {
    margin-bottom: 12rem
}
.p-sub-page-title {
    padding: 10rem 0;
}
.p-sub-page-title h1 {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-align: center;
}
.p-sub-page-title h1 .en {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .1rem;
    color: #00A2E6;
}
.p-sub-page-title h1 .jp {
    font-size: 4rem;
    letter-spacing: .2rem;
    margin-bottom: 1.5rem;
}
@media only screen and (max-width: 767px) {
    .p-sub-visual {
        height: 28rem;
    }
    .p-sub-visual .jp {
        font-size: 2.8rem;
    }
    .p-sub-page-title {
        padding: 8rem 0;
    }
    .p-sub-page-title h1 .jp {
        font-size: 2.4rem;
    }
}
/*----------------------------------------
	法人向けページ：共通
----------------------------------------*/
.p-corporate-intro {
    text-align: center;
    font-size: 2.2rem;
    letter-spacing: .05em;
    line-height: 1.9;
    font-weight: 700;
    padding: 10rem 0;
}
/* 最近の案件 */
.p-corporate-recent-summary {
    background-color: #F1F5F9;
    padding: 8rem 0;
}
.p-corporate-recent-summary .inner {
    max-width: 1000px;
}
.p-corporate-recent-summary__wrap {
    background-color: #fff;
    padding: 5% 6%;
    margin-bottom: 6rem;
    display: flex;
}
.p-corporate-recent-summary__wrap .content {
    width: 46%;
    margin-right: 4%;
}
.p-corporate-recent-summary__wrap .content h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    position: relative;
}
.p-corporate-recent-summary__wrap .content h2::before {
    content: '';
    display: block;
    height: 2.8rem;
    width: 0.8rem;
    background-color: #00A2E6;
    position: absolute;
    top: 0.8rem;
    left: -15%;
}
.p-corporate-recent-summary__wrap .content ul li {
    margin-bottom: .3rem;
}
.p-corporate-recent-summary__wrap .content ul li span {
    display: block;
    font-size: 1.1rem;
    line-height: 1.4;
}
.p-corporate-recent-summary__wrap figure {
    width: 50%;
}
.p-corporate-recent-summary__navi {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly; 
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
}
.p-corporate-recent-summary__navi .c-button {
    width: 30%;
    min-width: initial;
    max-width: initial;
}
/* タブ */
.p-corporate-recent-tab {
    margin-top: 4rem;
}
.p-corporate-recent-tab ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 4px solid #00A2E6;
}
.p-corporate-recent-tab li {
    width: 32.6%;
}
.p-corporate-recent-tab li:nth-of-type(2) {
    margin-left: 1.1%;
    margin-right: 1.1%;
}
.p-corporate-recent-tab li.current,
.p-corporate-recent-tab li a:hover {
    background-color: #00A2E6;
    color: #fff;
}
.p-corporate-recent-tab li span,
.p-corporate-recent-tab li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.6rem 0 1.7rem 0;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: .18rem;
    color: #fff;
    text-decoration: none;
    transition: .2s linear;
}
.p-corporate-recent-tab li a {
    color: #1b2734;
    background-color: #E8EFEE;
    margin-bottom: 3%;
}
.p-corporate-recent-tab li span {
    padding: 2.1rem 0 1.2rem 0;
}
/* リード文 */
.p-corporate-content-lead {
    padding: 7rem 0;
    line-height: 2;
}
/* カテゴリ */
.p-corporate-category {
    margin-bottom: 8rem;
}
.p-corporate-category-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.p-corporate-category-list .item {
    width: 30%;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 5%;
}
.p-corporate-category-list .item figure {
    margin-bottom: 1.4rem;
}
.p-corporate-category-list .item p {
    font-size: 2rem;
    font-weight: 700;
}
.p-corporate-category-list .item p span {
    display: block;
    font-size: 1.2rem;
    margin-top: .5rem;
    font-weight: 400;
}
/* 強み */
.p-corporate-strong-point {
}
.p-corporate-strong-point__list {
    display: flex;
}
.p-corporate-strong-point dl {
    width: 47%;
}
.p-corporate-strong-point dl:first-of-type {
    margin-right: 6%;
}
.p-corporate-strong-point dl dt {
    line-height: 1;
    border-left: 6px solid #00A2E6;
    font-size: 1.8rem;
    font-weight: 700;
    padding: .2rem 0 .2rem 1.4rem;
    margin-bottom: 1.6rem;
}
.p-corporate-strong-point dl dd {
    /* text-align: justify; */
}
.p-corporate-strong-point__content > p {
    margin-bottom: 1rem;
}
.p-corporate-strong-point__table-wrap {
    display: flex;
    justify-content: space-between;
}
.p-corporate-strong-point__table-wrap table {
    width: 46%;
}
.p-corporate-strong-point__table-wrap table .label {
    background-color: #f3f3f3;
}
/* 保有機材 */
.p-corporate-equipments {
    margin-bottom: 8rem;
}
.p-corporate-equipments__list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 4rem;
}
.p-corporate-equipments__list li {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 6%;
}
.p-corporate-equipments__list li:nth-of-type(3n) {
    margin-right: 0;
}
.p-corporate-equipments__list li figure {
    margin-bottom: 1.4rem;
}
.p-corporate-equipments__list li dl {
    display: flex;
    flex-wrap: wrap;
}
.p-corporate-equipments__list li dl dt {
    background-color: #E5E5E5;
    width: 30%;
    font-weight: 500;
}
.p-corporate-equipments__list li dl dd {
    width: 70%;
}
.p-corporate-equipments__list li dl dt,
.p-corporate-equipments__list li dl dd {
    padding: 2% 3%;
    font-size: 1.3rem;
    border-bottom: 1px solid #bababa;
}
/* ピックアップ実績 */
.p-corporate-pickup-works .p-project-list li {
    margin-bottom: 4%;
}
.p-corporate-pickup-works__more {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}
/* データベース */
.p-corporate-works-database {

}
.p-corporate-works-database-search {
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
}
.p-corporate-works-database-print .c-button {
    padding: 1rem 2rem 1.2rem 2rem;
    font-size: 1.3rem;
    letter-spacing: 0;
    min-width: initial;
    max-width: initial;
    align-items: center;
}
.p-corporate-works-database-print .c-button img {
    width: 1.6rem;
    margin-right: 0.5rem;
}
.p-works-database-table {
    width: 100%;
    border-bottom: 1px solid #e7e7e7;
}
.p-works-database-table thead {
    background-color: #00A2E6;
    color: #fff;
}
.p-works-database-table thead th {
    padding: 1.3rem 1.7rem 1.5rem 1.7rem;
    font-size: 1.3rem;
    line-height: 1.4;
    min-width: 14rem;
}
.p-works-database-table tbody tr {
    border-left: 1px solid #e7e7e7;
}
.p-works-database-table tbody tr:nth-of-type(even) {
    background-color: #F3F3F3;
}
.p-works-database-table tbody tr td {
    padding: 1.3rem 1.7rem 1.2rem 1.7rem;
    font-size: 1.3rem;
    line-height: 1.75;
    border-right: 1px solid #e7e7e7;
}
.p-works-database-table .column-contract {
    width: 6rem;
}
.p-works-database-table tbody tr td p {
    margin-bottom: 1rem;
}
.p-works-database-table .icon {
    display: inline-block;
    background-color: #fff;
    border: 1px solid #CAC7C7;
    padding: 0.4rem 1rem 0.3rem 1rem;
    font-size: 1.2rem;
    line-height: 1;
    margin-bottom: 1rem;
}
.p-works-database-table .name {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 700;
}
.p-works-database-table .name a {
    color: #00A2E6;
}
@media only screen and (max-width: 1024px) {
    .p-corporate-category-list .item p {
        font-size: 1.8rem;
    }
    /* 保有機材 */
    .p-corporate-equipments__list li {
        width: 47.5%;
    }
    .p-corporate-equipments__list li:nth-of-type(2n) {
        margin-right: 0 !important;
    }
    .p-corporate-equipments__list li:nth-of-type(3n) {
        margin-right: 5%;
    }
}
@media only screen and (max-width: 767px) {
    .p-corporate-intro {
        font-size: 1.8rem;
        letter-spacing: 1px;
        text-align: left;
        padding: 8rem 0;
    }
    .p-corporate-intro br {
        display: none;
    }
    /* 最近の案件 */
    .p-corporate-recent-summary {
        padding: 6rem 0;
    }
    .p-corporate-recent-summary__wrap {
        flex-direction: column;
        margin-bottom: 0;
    }
    .p-corporate-recent-summary__wrap .content {
        width: 100%;
        margin-right: 0;
        margin-bottom: 4rem;
    }
    .p-corporate-recent-summary__wrap .content h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    .p-corporate-recent-summary__wrap .content h2::before {
        width: 0.6rem;
        height: 2.5rem;
        top: 0.8rem;
        left: -7%;
    }
    .p-corporate-recent-summary__wrap figure {
        width: 100%;
    }
    .p-corporate-recent-summary__navi {
        margin-top: 2rem;
        flex-direction: column;
    }
    .p-corporate-recent-summary__navi .c-button {
        min-width: 22rem;
        max-width: fit-content;
        margin-top: 2rem;
    }
    .p-corporate-recent-tab {
        margin-top: 6rem;
    }
    .p-corporate-recent-tab li span,
    .p-corporate-recent-tab li a {
        font-size: 1.5rem;
        padding: 1.3rem 0 1.4rem 0;
        font-weight: 700;
        letter-spacing: .1rem;
    }
    .p-corporate-recent-tab li span {
        padding: 1.5rem 0 1.2rem 0;
    }
    .p-corporate-content-lead {
        padding: 5rem 0 6rem 0;
        text-align: justify;
    }
    /* リード文 */
    .p-corporate-content-lead br {
        display: none;
    }
    /* カテゴリー */
    .p-corporate-category-list .item {
        width: 48%;
        margin-bottom: 4rem;
    }
    .p-corporate-category-list .item figure {
        margin-bottom: 1.2rem;
    }
    .p-corporate-category-list .item p {
        font-size: 1.6rem;
    }
    .p-corporate-category-list .item p span {
        font-size: 1rem;
    }
    /* 強み */
    .p-corporate-strong-point__list {
        flex-direction: column;
    }
    .p-corporate-strong-point dl {
        width: 100%;
    }
    .p-corporate-strong-point dl:first-of-type {
        margin-right: 0;
        margin-bottom: 4rem;
    }
    /* 保有機器 */
    .p-corporate-strong-point__table-wrap {
        flex-direction: column;
    }
    .p-corporate-strong-point__table-wrap table {
        width: 100%;
    }
    /* ピックアップ */
    .p-corporate-pickup-works .p-project-list li {
        margin-bottom: 6rem;
    }
    /* データベース */
    .p-project-search__param select {
        margin-right: initial;
        margin-bottom: 1rem;
    }
    .p-project-search__param {
        display: flex;
        flex-wrap: wrap;
    }
    .p-project-search__param select {
        width: 46%;
        margin-right: 4%;
    }
    .p-corporate-works-database-print {
        display: none;
    }
    .p-corporate-works-database__content {
        overflow-x: scroll;
        width: 93vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -43vw;
        margin-right: -50vw;
    }
    .p-works-database-table {
        width: 100%;
        min-width: 100rem;
        border-collapse: collapse;
    }
    .p-works-database-table thead tr th:first-of-type,
    .p-works-database-table tbody tr td:first-of-type {
        width: 25%;
    }
}
/*----------------------------------------
	法人向けページ：土木
----------------------------------------*/
/* 関連サービス */
.p-corporate-related-service {
}
.p-corporate-related-service__content {
}
.p-corporate-related-service__content dl {
    background-color: #F3F3F3;
    display: flex;
    align-items: center;
    padding: 4% 0;
    border-radius: .6rem;
}
.p-corporate-related-service__content dl:first-of-type {
    margin-bottom: 2rem;
}
.p-corporate-related-service__content dl dt {
    width: 32%;
    font-size: 1.8rem;
    line-height: 1.3;;
    font-weight: 700;
    border-left: 8px solid #00A2E6;
    padding: 0 2rem;
}
.p-corporate-related-service__content dl dd {
    width: 68%;
    padding: 0 3rem;
    border-left: 1px solid #C2CECD;
}
@media only screen and (max-width: 767px) {
    /* 関連サービス */
    .p-corporate-related-service__content dl {
        flex-direction: column;
        align-items: initial;
        padding: 2rem 0;
    }
    .p-corporate-related-service__content dl dt {
        width: 100%;
        margin-bottom: 1.4rem;
        border-left: 6px solid #00A2E6;
    }
    .p-corporate-related-service__content dl dd {
        width: 100%;
        padding: 0 2.8rem;
        border-left: none;
    }
}
/*----------------------------------------
	法人向けページ：環境整備
----------------------------------------*/
.p-corporate.environment {
}
.p-corporate.environment .p-corporate-category {
    margin-bottom: 2rem;
}
/*----------------------------------------
	個人のお客さま
----------------------------------------*/
.p-personal-intro {
    text-align: center;
    font-size: 2.2rem;
    letter-spacing: 2px;
    line-height: 1.9;
    font-weight: 700;
    padding: 10rem 0 14rem 0;
}
/* 提供サービス */
.p-personal-service {
    margin-bottom: 3rem;;
}
.p-personal-service .inner {
    max-width: 1050px;
}
.p-personal-service .c-section-title {
    margin-bottom: 6rem;
}
.p-personal-service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
}
.p-personal-service-list li {
    width: 46%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 4%;
}
.p-personal-service-list li figure {
    width: 28%;
    margin-right: 4%;
}
.p-personal-service-list__content {
    width: 68%;
}
.p-personal-service-list__content .heading {
    color: #00A2E6;
    line-height: 1;
    margin-bottom: 1.6rem;
}
.p-personal-service-list__content .heading span {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1.2rem;
    display: block;
    font-family: 'Montserrat', sans-serif;
}
.p-personal-service-list__content .heading h2 {
    font-size: 2.2rem;
    font-weight: 700;
}
.p-personal-service-list__content p {
    font-size: 1.5rem;
    text-align: justify;
}
/* 対応エリア */
.p-personal-service-area {
    background-color: #F1F5F9;
    padding: 10rem 0;
    margin-bottom: 10rem;
}
.p-personal-service-area .inner {
    max-width: 900px;
}
.p-personal-service-area__wrap {
    background-color: #fff;
    padding: 4% 6% 6% 6%;
    display: flex;
}
.p-personal-service-area__wrap .content {
    width: 50%;
    margin-right: 10%;
}
.p-personal-service-area__wrap .content h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    position: relative;
}
.p-personal-service-area__wrap .content h2::before {
    content: '';
    display: block;
    height: 2.8rem;
    width: 0.8rem;
    background-color: #00A2E6;
    position: absolute;
    top: 1.2rem;
    left: -14%;
}
.p-personal-service-area__wrap > figure {
    width: 40%;
}
.p-personal-contact {
    display: flex;
    line-height: 1;
    margin-top: 4rem;
}
.p-personal-contact > figure {
    width: 6rem;
    margin-right: 1.4rem;
}
.p-personal-contact__content {
    display: flex;
    flex-direction: column;
}
.p-personal-contact__content .label {
    font-size: 1.7rem;
    color: #00A2E6;
    font-weight: 700;
    letter-spacing: 0.03rem;
    margin-bottom: 0.5rem;
}
.p-personal-contact__content .tel {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 4.4rem;
    font-weight: 600;
    letter-spacing: .14rem;
    margin-bottom: 0.5rem;
}
.p-personal-contact__content .time {
    font-size: 1.3rem;
}
@media only screen and (max-width: 767px) {
    .p-personal-intro {
        font-size: 1.6rem;
        letter-spacing: .08rem;
        text-align: left;
        padding: 8rem 0 10rem 0;
    }
    /* サービスカテゴリ */
    .p-personal-service .c-section-title {
        margin-bottom: 4rem;
    }
    .p-personal-service-list li {
        width: 100%;
        align-items: initial;
        margin-bottom: 5rem;
    }
    .p-personal-service-list__content .heading {
        margin-bottom: 1.2rem;
    }
    .p-personal-service-list__content .heading span {
        margin-bottom: 1rem;
    }
    .p-personal-service-list__content .heading h2 {
        font-size: 1.8rem;
    }
    .p-personal-service-list__content p {
        font-size: 1.4rem;
        line-height: 1.6;
    }
    .p-personal-service-list__content p br {
        display: none;
    }
    /* 対応エリア */
    .p-personal-service-area {
        padding: 6rem 0;
        margin-bottom: 6rem;
    }
    .p-personal-service-area__wrap {
        flex-direction: column;
        margin-bottom: 0;
        padding: 8% 6% 10% 6%;
    }
    .p-personal-service-area__wrap .content {
        width: 100%;
        margin-right: 0;
        margin-bottom: 4rem;
    }
    .p-personal-service-area__wrap .content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .p-personal-service-area__wrap .content h2::before {
        width: 0.7rem;
        height: 2.3rem;
        top: 0.8rem;
        left: -23px;
    }
    .p-personal-service-area__wrap > figure {
        width: 100%;
    }
    .p-personal-contact__content .label {
        font-size: 1.6rem;
    }
}
/*----------------------------------------
	施工実績：リスト
----------------------------------------*/
.p-project-search {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5rem 0 3rem 0;
}
.p-project-search__result {
    font-weight: 700;
}
.p-project-search__param select {
    outline: none;
    color: #3c3c3c;
    text-indent: 11px;
    background: #EEE;
    height: 40px;
    vertical-align: middle;
    border: 1px solid #CCC;
    width: 170px;
    border-radius: 30px;
    margin-right: .5rem;
    font-size: 1.4rem;
}
.p-project-search__param select:last-of-type {
    margin-right: 0;
}
.p-project-list {
    display: flex;
    flex-wrap: wrap;
}
.p-project-list li {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 6%;
}
.p-project-list li:nth-of-type(3n) {
    margin-right: 0;
}
.p-project-list li a {
    display: block;
    text-decoration: none;
}
.p-project-list li a h2 {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.p-project-list li a figure {
    margin-bottom: 1.4rem;
    overflow: hidden;
    position: relative;
}
.p-project-list li a figure:before {
    display: block;
    padding-top: 75.38%;
    content: '';
}
.p-project-list li a figure img {
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    left: 50%;
    display: block;
    width: 100%;
    height: auto;
    -webkit-transition: 400ms;
    transition: 400ms;
    -webkit-transform: translate(-50%,-50%) scale(1.1);
    transform: translate(-50%,-50%) scale(1.1);
    -webkit-transform-origin: center;
    transform-origin: center;
}
.p-project-list li a:hover figure img {
    -webkit-transform: translate(-50%,-50%) scale(1.2);
    transform: translate(-50%,-50%) scale(1.2);
}
.p-project-list .p-project-meta {
    justify-content: space-between;
}
.p-project-meta {
    display: flex;
    align-items: center;
}
.p-project-meta .category span {
    display: inline-block;
    background-color: #dddddd;
    color: #343434;
    padding: 0.3rem 1rem 0.4rem 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .04em;
}
.p-project-meta .property {
    display: inline;
    font-size: 1.2rem;
    color: #7D7D7D;
}
.p-project-meta .property .released {
    padding-left: 1rem;
    margin-left: 0.7rem;
    border-left: 1px solid #b5b5b5;
}
/* ページ送り */
.wp-pagenavi {
    display: flex;
    justify-content: center;
}
.wp-pagenavi a:not(.nextpostslink),
.wp-pagenavi span:not(.extend) {
    text-decoration: none;
    border: none;
    padding: 0 0 0.3rem 0;
    height: 5rem;
    width: 5rem;
    border-radius: 4rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px;
}
.wp-pagenavi a.nextpostslink,
.wp-pagenavi span.extend {
    border: none;
}
.wp-pagenavi span.current {
    font-weight: bold;
    border: 1px solid #00A2E6;
    background-color: #00A2E6;
    color: #fff;
}
.wp-pagenavi a:hover,
.wp-pagenavi span.current {
    border: 1px solid #00A2E6;
    background-color: #00A2E6;
    color: #fff;
}
@media only screen and (max-width: 999px) {
    .p-project-list li {
        width: 47.5%;
    }
    .p-project-list li:nth-of-type(2n) {
        margin-right: 0;
    }
    .p-project-list li:nth-of-type(3n) {
        margin-right: 5%;
    }
}
@media only screen and (max-width: 767px) {
    .p-project-search {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .p-project-search__result {
        margin-bottom: 1rem;
    }
    .p-project-list li {
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 6rem;
    }
    .p-project-meta .property {
        font-size: 1.3rem;
    }
    .wp-pagenavi {
        margin: 6rem 0 0 0;
    }
}

/*----------------------------------------
	施工実績：詳細
----------------------------------------*/
.p-sub-project-title {
    padding: 10rem 0 8rem 0;
}
.p-sub-project-title h1 {
    display: flex;
    flex-direction: column;
}
.p-sub-project-title h1 .en {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: .1rem;
    text-indent: 0.4rem;
    line-height: 1;
    color: #00A2E6;
    margin-bottom: 2rem;
}
.p-sub-project-title h1 .jp {
    font-size: 4rem;
    line-height: 1.3;
    margin-bottom: 2rem;
}
.p-sub-project-title .category {
    margin-right: 2rem;
}
.p-project__content {
    max-width: 70rem;
    padding: 8rem 0;
}
.p-project__content .main-visual {
    margin-bottom: 4rem;
}
.p-project__content p {
    margin-bottom: 4rem;
}
/* 施工概要 */
.p-project__outline {
    max-width: 80rem;
    margin-bottom: 8rem;
}
.p-project__outline h2 {
    color: #00A2E6;
    font-size: 2.8rem;
    line-height: 1;
    margin-bottom: 4rem;
    text-align: center;
}
.p-project__outline dl {
    display: flex;
    flex-wrap: wrap;
}
.p-project__outline dl dt {
    width: 24%;
    padding: 2rem 2%;
    border-bottom: 1px solid #00A2E6;
    display: flex;
    align-items: center;
    font-weight: 600;
}
.p-project__outline dl dd {
    width: 76%;
    padding: 2rem 4%;
    border-bottom: 1px solid #E5E5E5;
}
.p-project__outline dl dd p {
    margin-bottom: 0;
}
.p-project__back-button {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-top: 6rem; */
}
@media only screen and (max-width: 767px) {
    .p-sub-project-title h1 .jp {
        font-size: 2.8rem;
    }
    .p-sub-project-title {
        padding: 8rem 0 6rem 0;
    }
    /* 施工概要 */
    .p-project__outline h2 {
        font-size: 2.4rem;
        margin-bottom: 3rem;
    }
    .p-project__outline dl dt {
        width: 100%;
        padding: 2rem 2% .5rem 2%;
        border-bottom: none;
    }
    .p-project__outline dl dd {
        width: 100%;
        padding: 0 2% 2rem 2%;
    }
}
/*----------------------------------------
	企業情報
----------------------------------------*/
.p-company-navi {
}
.p-company-navi nav {
    margin: 2rem auto 8rem auto;
}
.p-company-navi nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    width: 50%;
    margin-left: auto;
    margin-right: 0;
}
.p-company-navi nav ul li {
    margin: 1rem 0 2rem 3rem;
}
.p-company-navi nav ul li a {
    display: flex;
    text-decoration: none;
    background: url(../img/common/icon_allow_buttom.svg) no-repeat right .4rem center;
    background-size: 1.3rem auto;
    padding: 1rem 3rem 1rem 0.4rem;
    border-bottom: 1px solid #00A2E6;
    min-width: 12rem;
    font-weight: 700;
}
/* 会長挨拶 */
.p-chairman-greeting {
    margin-bottom: 12rem;
}
.p-chairman-greeting .inner {
    display: flex;
    justify-content: space-between;
}
.p-chairman-greeting__heading {
    width: 46%;
}
.p-chairman-greeting__heading > span {
    display: inline-block;
    background-color: #00A2E6;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
    padding: 0.5rem 1rem 0.7rem 1rem;
    margin-bottom: 1rem;
}
.p-chairman-greeting__heading > div {
    font-size: 3.2rem;
    line-height: 1.6;
    font-weight: bold;
}
.p-chairman-greeting__content {
    width: 46%;
}
.p-chairman-greeting__content p {
    text-align: justify;
    text-justify: inter-ideograph;
    line-height: 2;
    font-size: 1.5rem;
}
.p-chairman-profile {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-top: 3rem;
    line-height: 1;
}
.p-chairman-profile .position {
    margin-right: 2rem;
    font-size: 1.5rem;
}
.p-chairman-profile .name {
    font-size: 2.2rem;
    font-weight: 700;
}
/* 社長挨拶 */
.p-president-greeting {
    margin-bottom: 14rem;
}
.p-president-greeting .inner {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}
.p-president-greeting__image {
    width: 46%;
}
.p-president-greeting__content {
    width: 46%;
}
.p-president-greeting__content p {
    text-align: justify;
    text-justify: inter-ideograph;
}
.p-president-profile {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-top: 2rem;
}
.p-president-profile .position {
    margin-right: 2rem;
}
.p-president-profile .name {
    font-size: 2.2rem;
    font-weight: 700;
}
/* 会社概要 */
.p-company-section {
    margin-bottom: 16rem;
}
.p-company-section .inner {
    max-width: 90rem;
}
.p-company-section-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
    text-align: center;
    margin-bottom: 6rem;
}
.p-company-section-title .jp {
    font-size: 4rem;
    margin-bottom: 1.6rem;
    letter-spacing: .2rem;
}
.p-company-section-title .en {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .1rem;
    color: #00A2E6;
    margin-bottom: 1rem;
}
.p-company-outline .inner {
    max-width: 90rem;
}
.p-company-outline dl {
    display: flex;
    flex-wrap: wrap;
}
.p-company-outline dl dt {
    width: 24%;
    padding: 2rem 4% 2.4rem 4%;
    border-bottom: 1px solid #00A2E6;
    display: flex;
    align-items: center;
    font-weight: 600;
}
.p-company-outline dl dd {
    width: 76%;
    padding: 2rem 4% 2.4rem 4%;
    border-bottom: 1px solid #E5E5E5;
}
.p-company-outline dl dd h3 {
    font-size: 1.5rem;
}
/* 組織体制 */
.p-company-structure {
    
}
.p-company-structure__image {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}
.p-company-philoshopy__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6rem;
}
.p-company-philoshopy__heading figure {
    width: 46%;
}
.p-company-philoshopy__heading h2 {
    width: 46%;
    text-decoration: underline;
    font-size: 4rem;
}
.p-company-philoshopy__content {
    margin-bottom: 6rem;
}
.p-company-philoshopy__content h3 {
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 1.6rem;
}
.p-company-philoshopy-list {

}
.p-company-philoshopy-list__title {
    background-color: #00A2E6;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 2rem 2.4rem;
    line-height: 1;
}
.p-company-philoshopy-list__title .number {
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: .2rem;
    font-weight: bold;
    margin-right: 2rem;
}
.p-company-philoshopy-list__title .title {
    font-size: 2.4rem;
    font-weight: 500;
    margin-right: 2.8rem;
}
.p-company-philoshopy-list__title .supplement {
    font-weight: 700;
}
.p-company-philoshopy-list__content {
    background-color: #F3F3F3;
    padding: 4rem 6.2rem;
}
.p-company-philoshopy-list__content h3 {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}
.p-company-philoshopy-list__content ul li {
    list-style: disc;
    margin-left: 2rem;
    padding-bottom: 0.5rem;
}
/* 営業所 */
.p-company-office {
}
.p-company-office dl {
    display: flex;
    flex-wrap: wrap;
}
.p-company-office dl dt {
    width: 24%;
    padding: 2rem 2%;
    border-bottom: 1px solid #00A2E6;
    display: flex;
    align-items: center;
    font-weight: 600;
}
.p-company-office dl dd {
    width: 76%;
    padding: 2rem 4%;
    border-bottom: 1px solid #E5E5E5;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.p-company-office__content {
    flex: 1;
    margin-right: 2rem;
}
.p-company-office__content address {
    font-style: normal;
}
.p-company-office dl dd a {
    display: flex;
    width: fit-content;
    text-align: center;
    background: #00A2E6;
    color: #fff;
    border-radius: 4rem;
    text-decoration: none;
    line-height: 1;
    padding: 1rem 1.6rem;
    font-size: 1.4rem;
}
/* 沿革 */
.p-company-history {
}
.p-company-history dl {
    display: flex;
    flex-wrap: wrap;
}
.p-company-history dl dt {
    width: 30%;
    padding: 0.8rem 3% 1.2rem 3%;
    background-color: #EFEFEF;
    display: flex;
    align-items: center;
    font-weight: 600;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.p-company-history dl dd {
    width: 70%;
    padding: 0.8rem 3% 1.2rem 3%;
    background-color: #F7F7F7;
    border-bottom: 2px solid #fff;
}
/* 認証 */
.p-company-certification {}
.p-company-certification__content {
    display: flex;
    flex-wrap: wrap;
}
.p-company-certification__content .item {
    margin-right: 6rem;
    margin-bottom: 8rem;
}
.p-company-certification__content .item h3 {
    font-size: 2rem;
    line-height: 1;
    border-left: 6px solid #00A2E6;
    padding: .3rem 0 .3rem 2rem;
    margin-bottom: 1.4rem;
}
.p-company-certification__content .item img {
    max-height: 26rem;
    width: auto;
}
@media only screen and (max-width: 1024px) {
    .p-company-philoshopy__heading h2 {
        font-size: 3.2rem;
    }
}
@media only screen and (max-width: 767px) {
    .p-company-navi nav ul {
        width: 100%;
    }
    .p-company-navi nav ul li {
        margin: 0.5rem 0 1.6rem 3rem;
    }
    .p-company-navi nav ul li a {
        padding: 0.8rem 3rem 0.8rem 0.4rem
    }
    /* 会長挨拶 */
    .p-chairman-greeting .inner {
        flex-direction: column;
    }
    .p-chairman-greeting__heading {
        width: 100%;
        margin-bottom: 2rem;
    }
    .p-chairman-greeting__heading > div {
        font-size: 2.7rem;
        text-align: justify;
    }
    .p-chairman-greeting__content {
        width: 100%;
    }
    .p-chairman-greeting__content p {
        font-size: 1.4rem;
    }
    .p-chairman-profile .position {
        font-size: 1.3rem;
    }
    /* 社長挨拶 */
    .p-president-greeting .inner {
        flex-direction: column;
    }
    .p-president-greeting__content {
        width: 100%;
    }
    .p-president-greeting__image {
        width: 100%;
        margin-bottom: 2rem;
    }
    /* 会社概要 */
    .p-company-outline .p-company-section-title {
        margin-bottom: 1rem;
    }
    .p-company-outline dl dt {
        width: 100%;
        padding: 2rem 0 0 0;
        border-bottom: none;
    }
    .p-company-outline dl dd {
        width: 100%;
        padding: 0 0 2rem 0;
    }
    .p-company-outline dl dd h3 {
        font-size: 1.4rem;
    }
    .p-company-section-title .jp {
        font-size: 2.8rem;
    }
    .p-company-section-title {
        margin-bottom: 4rem
    }
    /* 企業理念 */
    .p-company-philoshopy__heading {
        flex-direction: column;
        margin-bottom: 8rem;
    }
    .p-company-philoshopy__heading figure {
        width: 100%;
    }
    .p-company-philoshopy__heading h2 {
        width: 100%;
        margin-top: 4rem;
        font-size: 3.2rem;
        text-align: center;
    }
    .p-company-philoshopy-list__content {
        padding: 3.2rem 3.2rem 4rem 3.2rem;
    }
    .p-company-philoshopy-list__content h3 {
        font-size: 1.8rem;
    }
    /* 支店・営業所 */
    .p-company-office dl dt {
        width: 100%;
        padding: 2rem 2% 0 2%;
        border-bottom: none;
    }
    .p-company-office dl dd {
        width: 100%;
        padding: 0 0 2.2rem 2%;
        flex-direction: column;
    }
    .p-company-office__content {
        flex: initial;
        margin-right: 0;
    }
    .p-company-office dl dd a {
        margin-top: 1rem;
    }
    /* 沿革 */
    .p-company-history {
        margin-bottom: 10rem;
    }
    .p-company-history.p-company-section .inner {
        width: 91.667vw;
        font-size: 1.3rem;
        line-height: 1.6;
    }
    .p-company-history dl dt {
        width: 17rem;
        padding: 1.6rem 2%;
    }
    .p-company-history dl dd {
        width: calc(100% - 17rem);
        padding: 1.6rem 2%;
    }
    /* 認証 */
    .p-company-certification {
        margin-bottom: 0;
    }
    .p-company-certification__content {
        flex-direction: column;
    }
    .p-company-certification__content .item {
        margin-right: 0;
        margin-bottom: 4rem;
    }
}
/*----------------------------------------
	先生・学生の皆さま
----------------------------------------*/
.p-entry-navi {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 999;
    background-color: #00A2E6;
    line-height: 1;
}
.p-entry-navi a {
    padding: 5rem 6.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: all .2s;
}
.p-entry-navi a:hover {
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 20%);
}
.p-entry-navi a span {
    position: relative;
}
.p-entry-navi span::after {
    content: '';
    display: block;
    height: 1px;
    border-bottom: 1px solid #fff;
    margin-top: 0.4rem;
}
.p-recruit-intro {
    padding: 10rem 0;
}
.p-recruit-intro .inner {
    display: flex;
    justify-content: space-between;
    max-width: 100rem;
    margin-bottom: 16rem;
}
.p-recruit-intro .inner > h2 {
    font-size: 4.2rem;
    line-height: 1.75;
    letter-spacing: .3rem;
    width: fit-content;
    min-width: fit-content;
    margin-right: 14%;
}
.p-recruit-intro .inner >div p {
    flex: 1;
    line-height: 2;
    padding: 1rem 0;
    margin-bottom: 2rem;
}
.p-recruit-intro__slide {
    display: flex;
    overflow: hidden;
    margin-top: 10rem;
}
.p-recruit-intro__slide ul {
    display: flex;
    animation: loop-slide 43.5s infinite linear 0s both;
}
.p-recruit-intro__slide ul li {
    width: 40vw;
}
@keyframes loop-slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
/* 働く人を知る */
.p-recruit-section {
    margin-bottom: 14rem;
    overflow: hidden;
}
.p-recruit-section-heading {
    text-align: center;
    margin-bottom: 6rem;
}
.p-recruit-section-heading h2 {
    display: flex;
    flex-direction: column;
    line-height: 1;
    padding: 3rem 0 4rem 0;
    position: relative;
    overflow: hidden;
}
.p-recruit-section-heading h2::before {
    content: attr(data-text);
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    font-size: 15rem;
    font-weight: 500;
    color: #F1F5F9;
    display: block;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.p-recruit-section-heading h2 span {
    position: relative;
}
.p-recruit-section-heading h2 .en {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: .1rem;
    font-size: 1.5rem;
    color: #00A2E6;
    margin-bottom: 2rem;
}
.p-recruit-section-heading h2 .jp {
    font-size: 4.5rem;
    letter-spacing: .2rem;
}
.p-recruit-section-heading > p {
}
/* 働く人を知る */
.p-recruit-section.people {
}
.p-people-list {
    max-width: 90rem;
}
.p-people-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6% 4%;
    background-color: #F1F5F9;
    border-left: 7px solid #00A2E6;
    position: relative;
}
.p-people-list li:not(:last-of-type) {
    margin-bottom: 2rem;
}
.p-people-list li::before {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11rem;
    letter-spacing: .3rem;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    content: attr(data-number);
    position: absolute;
    top: 6%;
    right: 4%;
}
.p-people-list li figure {
    width: 27%;
}
.p-people-content {
    width: 67%;
    z-index: 1;
}
.p-people-content__heading {
    line-height: 1;
    margin-bottom: 3rem;
}
.p-people-content__heading .division {
    display: block;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: .18rem;
}
.p-people-content__heading .name {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.4rem;
}
.p-people-content__heading .career {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}
.p-people-content__message span{
    color: #00A2E6;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: .08rem;
}
.p-people-content__message p {
    font-size: 1.4rem;
    line-height: 1.75;
    text-align: justify;
}
/* はたらく環境を知る */
.p-recruit-section.work-place {
}
.p-employee-development:not(.welfare) {
    margin-bottom: 12rem;
}
.p-employee-development__intro {

}
.p-employee-development__intro h3 {
    display: flex;
    align-items: center;
    font-size: 2.6rem;
    line-height: 1;
    margin-bottom: 3rem;
}
.p-employee-development__intro h3::before {
    display: block;
    content: '■';
    color: #00A2E6;
    font-size: 2.6rem;
    margin-right: 0.8rem;
}
.p-employee-development__intro > p {
    max-width: 60rem;
    margin-bottom: 6rem;
}
.p-employee-development__content {
    display: flex;
    justify-content:space-between;
}
.p-employee-development__content .item {
    width: 30%;
}
.p-employee-development__content .item > figure {
    margin-bottom: 2.4rem;
}
.p-employee-development__content .item > h4 {
    font-size: 2rem;
    line-height: 1;
    color: #00A2E6;
    margin-bottom: 1.7rem;
}
.p-employee-development__content .item > p {
    font-size: 1.4rem;
    line-height: 1.75;
    letter-spacing: 1px;
    text-align: justify;
}
/* 数字で知る */
.p-recruit-section.info-graphic {
    padding-bottom: 3rem;
}
.p-info-graphic-slide {
    position: relative;
}
.p-info-graphic-slide .swiper-slide {
    box-shadow: 0px 11px 21px 0px rgba(0, 0, 0, 0.07);
}
.p-info-graphic-slide .swiper-pagination {
    bottom: -36px;
}
.swiper-button-prev,
.swiper-button-next {
    width: 5rem;
    height: 5rem;
}
.swiper-button-next:after {
    background: url(../img/recruit/button_next.svg) no-repeat center;
}
.swiper-button-prev:after {
    background: url(../img/recruit/button_prev.svg) no-repeat center;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    width: 5rem;
    height: 5rem;
    font-size: 0;
    background-size: contain;
}
.swiper-pagination-bullet-active {
    background-color: #00A2E6;
}
/* 募集要項 */
.p-recruit-requirements nav {
    display: flex;
    justify-content: center;
}
.p-recruit-requirements nav a {
    margin: 0 1rem;
}
/* 募集要項（アーカイブ） */
.p-requirement-type-tab {
    margin-top: 8rem;
    margin-bottom: 2rem;
    max-width: 120rem;
}
.p-requirement-type-tab ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 4px solid #00A2E6;
}
.p-requirement-type-tab li {
    width: 32.6%;
}
.p-requirement-type-tab li:nth-of-type(2) {
    margin-left: 1.1%;
    margin-right: 1.1%;
}
.p-requirement-type-tab li.current,
.p-requirement-type-tab li a:hover {
    background-color: #00A2E6;
    color: #fff;
}
.p-requirement-type-tab li span,
.p-requirement-type-tab li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.6rem 0 1.7rem 0;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: .18rem;
    color: #fff;
    text-decoration: none;
    transition: .2s linear;
}
.p-requirement-type-tab li a {
    color: #1b2734;
    background-color: #E8EFEE;
    margin-bottom: 3%;
}
.p-requirement-type-tab li span {
    padding: 2.1rem 0 1.2rem 0;
}
/* 求人バナー */
.p-recruit-section.banner {

}
.p-recruit-section.banner nav {
    display: flex;
    justify-content: center;
}
.p-recruit-section.banner nav a {
    margin: 0 1rem;
    width: calc(50% - 2rem);
    max-width: 36rem;
    transition: .3s;
}
.p-recruit-section.banner nav a:hover {
    opacity: .75;
}
/* LINEお問い合わせ */
.p-line-contact {
    margin: 0 0 6rem 0;
}
.p-line-contact .inner {
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 80rem;
    border: 5px solid #06C755;
    padding: 2rem 2.4rem;
}
.p-line-contact .inner .content {
    width: calc(100% - 20rem);
}
.p-line-contact .inner .content h2 {
    display: flex;
    align-items: center;
    margin-bottom: 1.4rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid #06C755;
}
.p-line-contact .inner .content h2 > figure {
    width: 8rem;
    margin-right: 1.6rem;
}
.p-line-contact .inner .content h2 > p {
    font-size: 2.8rem;
    line-height: 1.4;
    color: #06C755;
    font-weight: 600;
}
.p-line-contact .inner .content > p {
    line-height: 1.6;
}
.p-line-contact .inner > figure {
    width: 17rem;
}
@media only screen and (max-width: 1024px) {
    .p-recruit-intro .inner > h2 {
        font-size: 3.2rem;
    }
    .p-recruit-intro .inner >div p br {
        display: none;
    }
}
@media only screen and (max-width: 767px) {
    .p-recruit-section {
        margin-bottom: 10rem;
    }
    .p-recruit-intro {
        padding: 7rem 0;
    }
    .p-recruit-intro .inner {
        flex-direction: column;
        margin-bottom: initial;
    }
    .p-recruit-intro .inner > h2 {
        font-size: 3.2rem;
        margin-right: 0;
        margin-bottom: 3rem;
    }
    .p-recruit-intro .inner >div p {
        flex: initial;
        line-height: 2;
        padding: 2rem 0;
    }
    .p-recruit-intro__slide ul li {
        width: 60vw;
    }
    .p-recruit-section-heading h2 .jp {
        font-size: 2.8rem;
        letter-spacing: .14rem;
    }
    .p-recruit-section-heading h2 .en {
        font-size: 1.2rem;
        margin-bottom: 1.6rem;
    }
    .p-recruit-section-heading h2::before {
        font-size: 7rem;
    }
    .p-recruit-section-heading > p {
        text-align: left;
    }
    .p-people-list li {
        align-items: initial;
        padding: 2rem 3vw;
        border-left: 4px solid #00A2E6;
    }
    .p-people-list li::before {
        display: block;
        font-size: 6rem;
        top: 1rem;
        right: 1.6rem;
    }
    .p-people-content {
        width: 68%;
    }
    .p-people-content__heading {
        margin-top: 0.5rem;
        margin-bottom: 2rem;
    }
    .p-people-content__heading .division {
        font-size: 1.3rem;
        margin-bottom: 1.6rem;
    }
    .p-people-content__heading .name {
        margin-bottom: 1rem;
    }
    .p-people-content__heading .career {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    .p-people-content__message {
        width: 77vw;
        transform: translateX(-24vw);
    }
    .p-people-content__message span {
        font-size: 1.2rem;
    }
    /* はたらく環境を知る */
    .p-employee-development__intro h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .p-employee-development__intro h3::before {
        font-size: 2rem;
    }
    .p-employee-development__content {
        flex-wrap: wrap;
    }
    .p-employee-development__content .item {
        width: 100%;
    }
    .p-employee-development__content .item:not(:last-of-type) {
        margin-bottom: 7rem;
    }
    .p-employee-development__content .item > h4 {
        font-size: 1.8rem;
    }
    /* 数字で知る */
    .p-info-graphic-slide {
        width: 100%;
    }
    .swiper-button-next:after,
    .swiper-button-prev:after {
        width: 4rem;
        height: 4rem;
    }
    /* 募集要項 */
    .p-recruit-section.requirementss {
        margin-bottom: 6rem;
    }
    .p-recruit-requirements nav {
        flex-direction: column;
        align-items: center;
    }
    .p-recruit-requirements nav a {
        margin: 0 0 1.6rem 0;
    }
    /* 求人バナー */
    .p-recruit-section.banner nav {
        align-items: center;
        flex-direction: column;
    }
    .p-recruit-section.banner nav a {
        margin: 0;
        width: 80%;
    }
    .p-recruit-section.banner nav a:not(:last-of-type) {
        margin-bottom: 3rem;
    }
    /* エントリーバナー */
    .p-entry-navi a {
        padding: 3.4rem 5rem 3.4rem 5rem;
        font-size: 2rem;
    }

    /* LINEお問い合わせ */
    .p-line-contact {
        margin: 8rem 0;
    }
    .p-line-contact .inner > figure {
        width: 0;
        display: none;
    }
    .p-line-contact .inner .content {
        width: 100%;
    }
    .p-line-contact .inner .content h2 > p {
        font-size: 2rem;
    }
    .p-line-contact .inner .content > p > a {
        width: 20rem;
        margin: 2rem auto;
        text-align: center;
    }
}
/*----------------------------------------
	アーカイブ
----------------------------------------*/
.p-post-archive {
    padding: 6rem 0;
}
.p-post-archive .inner {
    display: flex;
    justify-content: space-between;
}
.l-post-archive-side {
    width: 20rem;
}

.l-post-archive-list {
    width: calc( 100% - 30rem);
}
.p-archive-block {
    margin-bottom: 6rem;
}
.p-archive-block h2 {
    font-family: 'Montserrat', sans-serif;
    color: #00A2E6;
    font-size: 1.4rem;
    letter-spacing: .08rem;
    padding: 0 0 0.6rem 0;
}
.p-archive-block nav a {
    display: block;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 400;
    padding: .6rem 2rem .6rem 0;
    background: url(../img/common/icon_allow_blue.svg) no-repeat right center;
    background-size: .6rem auto;
}
.p-archive-block nav a:hover {
    text-decoration: underline;
}
.p-archive-block nav > ul {
    margin-left: 2rem;
}
.p-post-archive-list li {
    border-bottom: 1px solid #C4C4C4;;
    padding-bottom: 5rem;
    margin-bottom: 6rem;
}
.p-post-detail__heading .meta,
.p-post-archive-list li .meta {
    margin-bottom: 1rem;
    line-height: 1;
    display: flex;
    align-items: center;
}
.p-post-detail__heading .meta .date,
.p-post-archive-list li .meta .date {
    color: #989898;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: .15rem;
    color: #00A2E6;
    margin-right: 2rem;
}
.p-post-detail__heading .meta .category span,
.p-post-archive-list li .meta .category span {
    color: #00A2E6;
    border: 1px solid #00A2E6;
    padding: 0.2rem 1rem 0.3rem 1rem;
    font-size: 1.2rem;
    text-align: center;
    display: inline-block;
    margin-right: 1rem;
}
.p-post-archive-list li > a {
    text-decoration: none;
    display: block;
}
.p-post-archive-list li > a:hover {
    text-decoration: underline;
}
.p-post-archive-list li > a > h2 {
    line-height: 1.5;
    margin-bottom: 1.2rem;
    font-size: 2.8rem;
}
.p-post-detail__entry {
    display: flex;
    justify-content: space-around;
}
@media only screen and (max-width: 767px) {
    .p-post-archive {
        padding: 6rem 0 0 0;
    }
    .p-post-archive .inner {
        flex-direction: column-reverse;
    }
    .l-post-archive-side,
    .l-post-archive-list {
        width: 100%;
    }
    .l-post-archive-side {
        margin-top: 4rem;
    }
    .p-archive-block nav a {
        font-size: 1.6rem;
    }
    .p-archive-block:last-of-type {
        margin-bottom: 0;
    }
    .p-post-detail__heading .meta,
    .p-post-archive-list li .meta {
        margin-bottom: 1rem;
    }
    .p-post-archive-list li > a > h2 {
        font-size: 2rem;
    }
}
/*----------------------------------------
	投稿詳細
----------------------------------------*/
.p-post-detail {
    padding: 6rem 0;
}
.p-post-detail .inner {
    max-width: 80rem;
}
.p-post-detail__heading {
    margin-bottom: 5rem;
}
.p-post-detail__heading h1 {
    font-size: 3.2rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}
/* 本文 Style */
.p-post-detail__content > p {
    margin-bottom: 4rem;
}
.p-post-detail__content h1 {
    position: relative;
    padding-left: 3rem;
    display: flex;
}
.p-post-detail__content h1::before {
    content: '';
    display: block;
    position: absolute;
    top: .5rem;
    left: 0;
    width: 2rem;
    height: 2rem;
    background-color: #00A2E6;
    margin-right: 1rem;
}
.p-post-detail__content h1,
.p-post-detail__content h2,
.p-post-detail__content h3,
.p-post-detail__content h4,
.p-post-detail__content h5 {
    line-height: 1.4;
    margin-bottom: 2rem;
}
.p-post-detail__content h3,
.p-post-detail__content h4,
.p-post-detail__content h5 {
    margin-bottom: 1.5rem;
}
/* リスト */
.p-post-detail__content ul {
    margin-bottom: 4rem;
}
.p-post-detail__content ul li {
    list-style: initial;
    margin-left: 2rem;
}
/* 画像 */
.p-post-detail__content img {
    width: initial;
    margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
    .p-post-detail__heading h1 {
        font-size: 2.4rem;
    }
}
/*----------------------------------------
	WordPress Post Style
----------------------------------------*/
.wp-block-lazyblock-recruit {
    margin-bottom: 8rem;
}
/* 画像 */
.wp-block-image {
    margin: 0 0 4rem 0;
}
.wp-block-image img {
    margin-bottom: 0;
}
.wp-block-image figcaption {
    font-size: 1.4rem;
    margin-top: 0.4rem;
    margin-bottom: 0;
}
/* ギャラリー */
.wp-block-gallery {
    margin-bottom: 4rem;
}
.wp-block-gallery figcaption {
    font-size: 1.4rem;
}
/* 表 */
.wp-block-table {
    margin-bottom: 4rem;
}
.wp-block-table table {
    border-top: 1px solid #C7C7C7;
    border-left: 1px solid #C7C7C7;
}
.wp-block-table table tr {
    border-bottom: 1px solid #C7C7C7;
}
.wp-block-table table tr td {
    border-right: 1px solid #C7C7C7;
    padding: 1rem 1.4rem;
}
.wp-block-table figcaption {
    font-size: 1.4rem;
    margin-top: 0.4rem;
}
/* カラム */
.wp-block-columns {
    margin-bottom: 4rem;
}
/* 詩 */
.wp-block-verse {
    margin-bottom: 4rem;
}
/* ボタン */
.wp-block-buttons {
    margin-bottom: 4rem;
}
.wp-block-file .wp-block-file__button {
    background: #00A2E6;
    background: linear-gradient(to left, rgba(0, 162, 230, 1) 0, rgba(3, 135, 205, 1) 100%);
    font-weight: 700;
}
.wp-block-button__link {
    background: #00A2E6;
    background: linear-gradient(to left, rgba(0, 162, 230, 1) 0, rgba(3, 135, 205, 1) 100%);
    font-size: inherit;
    font-weight: 700;
    padding: 0.8rem 2rem 1rem 2rem;
}
/* 区切り線 */
.wp-block-separator {
    border-bottom: none;
    margin: 4rem 0;
}
/* メディアとテキスト */
.wp-block-media-text {
    margin-bottom: 4rem;
}
/* 添付ファイル */
.wp-block-file {
    margin-bottom: 4rem;
}
/* 引用 */
.wp-block-quote {
    overflow-wrap: break-word;
    line-height: 1.6;
    margin-bottom: 4rem;
}
.wp-block-quote p {
    border-left: 2px solid #727171;
    padding: 0 0 0 2rem;
}
.wp-block-quote cite {
    font-size: 1.2rem;
    padding: 0 0 0 2rem;
    color: #acacac;
}
/* その他見出し */
.has-large-font-size {
    font-size: 2.2rem !important;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}
@media only screen and (max-width: 767px) {
    .wp-block-file a.wp-block-file__button {
        display: inline-block;
        margin-left: 0;
    }
}

/*----------------------------------------
	フォーム
----------------------------------------*/
.p-form {}
.p-form .p-form__head {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: .1rem;
    line-height: 1;
    padding: 2rem 0 2.4rem 0;
    text-align: center;
    color: #fff;
    background: #00A2E6;
    border: 1px solid #00A2E6;
    border-radius: 10px 10px 0 0 / 10px 10px 0 0;
}
.p-form dl {
    padding: 3rem 0;
    border-left: 1px solid #C4C4C4;
    border-right: 1px solid #C4C4C4;
    border-bottom: 1px dotted #C4C4C4;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.p-form dl dt {
    width: 30%;
    padding: 0 5%;
    font-weight: 700;
    line-height: 1.4;
}
.p-form dl dd {
    width: 70%;
    padding: 0 5%;
}
.p-form .require {
    font-size: 1.3rem;
    color: #FF4C00;
    margin-left: 0.6rem;
}
.p-form p {
    line-height: 1.7;
}
.p-form .wpcf7-checkbox {
    display: flex;
    flex-direction: column;
}
.p-form span.wpcf7-list-item {
    display: inline-block;
    margin: 0 1.6rem 0 0;
}
.p-form span.wpcf7-list-item-label {
    margin-left: 0.6rem;
}
.p-form__time-select {
    display: flex;
    align-items: center;
}
.p-form__time-select p {
    display: flex;
}
.p-form__time-select:not(:last-of-type) {
    margin-bottom: 2rem;
}
.p-form__time-select .label {
    width: fit-content;
    margin-right: 2rem;
}
.p-form__graduate-input {
    display: flex;
    align-items: center;
}
.p-form__graduate-input .graduate-year .c-input {
    width: 12rem;
}
.p-form__graduate-input .graduate-month .c-input {
    width: 6rem;
}
.p-form__graduate-input .label {
    margin: 0 2rem 0 .6rem;
}
.p-form-attention {
    font-size: 1.3rem;
    font-weight: normal;
    padding: 8px 0 0 0;
}
.p-form__privacy {
    text-align: center;
    padding: 3rem 5%;
    border-left: 1px solid #C4C4C4;
    border-right: 1px solid #C4C4C4;
}
.p-form__privacy > p {
    margin-bottom: 2rem;
    font-size: 1.4rem;
}
.p-form__privacy span.wpcf7-list-item-label {
    font-weight: 700;
}
.p-form__button {
    text-align: center;
    padding: 3rem 0 6rem 0;
    border-left: 1px solid #C4C4C4;
    border-right: 1px solid #C4C4C4;
    border-bottom: 1px solid #C4C4C4;
    border-radius: 0 0 10px 10px / 0 0 10px 10px;
}
.p-form .c-button {
    min-width: 26rem;
    max-width: none;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 auto;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: initial;
}
.wpcf7 form .wpcf7-response-output {
    width: 90%;
    margin: 20px auto;
    color: #398f14;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    text-align: center;
    line-height: 1.4;
    padding: 12px;
    border: none;
}
span.wpcf7-not-valid-tip,
.wpcf7-not-valid-tip-no-ajax {
	color: #c00;
	text-decoration: underline;
}
.wpcf7 form.invalid .wpcf7-response-output,
div.wpcf7-validation-errors {
	color: #c00;
	font-weight: 700;
	text-decoration: underline;
	border: none;
}
.wpcf7 form.sent .wpcf7-response-output,
.wpcf7-mail-sent-ok {
	color: #365899;
	font-weight: 700;
	text-decoration: underline;
	border: none;
}
@media only screen and (max-width: 999px) {
    .p-form .p-form__head {
        font-size: 1.6rem;
        padding: 1.5rem 0 1.8rem 0;
    }
    .p-form dl {
        flex-direction: column;
        padding: 2rem 0 2.4rem 0;
    }
    .p-form dl dt,
    .p-form dl dd {
        width: 100%;
    }
    .p-form dl dt {
        padding-bottom: 1rem;
    }
    .p-form-attention {
        font-size: 1.2rem;
    }
    .p-form__time-select {
        align-items: initial;
        flex-direction: column;
    }
    .p-form__time-select .label {
        margin-right: initial;
        margin-bottom: 0.5rem;
    }
    .p-form span.wpcf7-list-item {
        display: block;
    }
    .p-form__privacy {
        text-align: left;
    }
    .p-form__button {
        padding: 0 0 3rem 0;
    }
}
/*----------------------------------------
	募集要項
----------------------------------------*/
.p-recruit-info__data {
    display: flex;
    flex-wrap: wrap;
}
.p-recruit-info__data dt {
    width: 24%;
    padding: 3rem 2%;
    border-bottom: 1px solid #00A2E6;
    display: flex;
    align-items: center;
    font-weight: 600;
}
.p-recruit-info__data dd {
    width: 76%;
    padding: 3rem 4%;
    border-bottom: 1px solid #E5E5E5;
}
@media only screen and (max-width: 767px) {
    .p-requirement-type-tab li span,
    .p-requirement-type-tab li a {
        font-size: 1.5rem;
        padding: 1.3rem 0 1.4rem 0;
        font-weight: 700;
        letter-spacing: .1rem;
    }
    .p-requirement-type-tab li span {
        padding: 1.5rem 0 1.2rem 0;
    }
}
/*----------------------------------------
	記事なし時の表示（共通）
----------------------------------------*/
.p-noposts {
    text-align: center;
    padding: 4rem 0 0 0;
}

/*----------------------------------------
	電子契約・請求の手続き
----------------------------------------*/
.p-online-app {

}
.p-online-app .c-button {
    padding: 2.2rem 2.4rem 2.6rem 2.4rem;
}
.p-online-app .t-red {
    color: #CB1318;
}
.p-online-app___section {
    margin-top: 14rem;
    margin-bottom: 14rem;
}
.p-online-app___heading {
    font-size: 3.2rem;
    line-height: 1.4;
    padding-left: 2rem;
    border-left: 6px solid #00A2E6;
    margin-bottom: 4rem;
}
.p-online-app__attention {
    margin-top: 5.2rem;
    background-color: #F5F5F5;
    padding: 3.2rem 4rem 4rem 4rem;
    color: #CB1318;
}
/* オンラインでの電子契約・請求の提出 */
.p-online-app___outline {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5.6rem;
}
.p-online-app___outline .content {
    flex: 1;
    margin-right: 6rem;
}
.p-online-app___outline figure {
    width: 35%;
    max-width: 36rem;
}

.p-online-app .navi-buttons {
    display: flex;
}
.p-online-app .navi-buttons .item:first-of-type {
    margin-right: 3.2rem;
}
.p-online-app .navi-buttons .item:last-of-type .c-button {
    background: #B34480;
}
.p-online-app .navi-buttons .item:last-of-type .c-button::before {
    background: #8A2267;
}

.p-online-app___outline .navi-buttons {
    margin-top: 4rem;
    text-align: center;
}
.p-online-app___outline .navi-buttons .item a:not(.c-button) {
    font-size: 1.3rem;
    margin-top: 2rem;
    display: block;
}
.p-online-app___fax .navi-buttons {
    margin-top: 3.2rem;
}

/* オンラインでの請求書提出の流れ */
.p-online-app___flow {

}
.p-online-app___flow h4 {
    font-size: 2rem;
    line-height: 1.45;
    display: flex;
    margin-top: 5rem;
    margin-bottom: 2rem;
}
.p-online-app___flow h4 span {
    flex: 1;
}
.p-online-app___flow h4::before {
    content: '';
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    border: 4px solid #00A2E6;
    border-radius: 2rem;
    margin-right: 1rem;
    margin-top: .8rem;
}
.p-online-app___flow-block {
    display: flex;
    margin-bottom: 4.8rem;
}
.p-online-app___flow-block .item {
    border: 5px solid #B9CED7;
    border-radius: 1.4rem;
    padding: 1.6rem 1.8rem 2.4rem 1.8rem;
    max-width: 25rem;
    position: relative;
}
.p-online-app___flow-block .item:not(:last-of-type) {
    margin-right: 3.2rem;
}
.p-online-app___flow-block .item:not(:last-of-type)::after {
    content: '';
    display: block;
    width: 3.2rem;
    height: 100%;
    position: absolute;
    right: -3.4rem;
    top: 50%;
    transform: translate(0, -50%);
    background: url(../img/online_app/icon_flow_allow.svg) no-repeat center;
}
.p-online-app___flow-block .step {
    background-color: #00A2E6;
    color: #fff;
    font-weight: 500;
    letter-spacing: .1em;
    text-align: center;
    border-radius: 4px;
    font-size: 1.4rem;
}
#flow-contract .p-online-app___flow-block .step {
    background-color: #8A2267;
}
.p-online-app___flow-block .title {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: bold;
    min-height: 8rem;
}
.p-online-app___flow-block .content {
    font-size: 1.4rem;
    line-height: 1.65;
}
.p-online-app___flow-block .content a {
    color: #00A2E6;
}
/* よくある質問 */
.p-online-app___faq {

}
.p-online-app___faq .navi-buttons {
    margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
    .p-online-app___section {
        margin-top: 8rem;
        margin-bottom: 10rem;
    }
    .p-online-app___heading {
        font-size: 2.2rem;
        line-height: 1.4;
        padding-left: 1.4rem;
        border-left: 5px solid #00A2E6;
    }
    .p-online-app___outline {
        flex-direction: column;
    }
    .p-online-app___outline .content {
        flex: inherit;
        margin-right: 0;
        margin-bottom: 5.6rem;
    }
    .p-online-app___outline figure {
        width: 100%;
        max-width: initial;
    }
    .p-online-app .navi-buttons {
        flex-direction: column;
    }
    .p-online-app .navi-buttons .item:first-of-type {
        margin-right: 0;
        margin-bottom: 2.4rem;
    }
    .p-online-app .c-button {
        max-width: initial;
    }
    .p-online-app__attention {
        margin-top: 3.2rem;
    }
    .p-online-app___flow h4 {
        font-size: 1.8rem;
    }
    .p-online-app___flow-block {
        flex-direction: column;
    }
    .p-online-app___flow-block .item {
        max-width: initial;
    }
    .p-online-app___flow-block .item:not(:last-of-type) {
        margin-right: 0;
        margin-bottom: 3.2rem;
    }
    .p-online-app___flow-block .item:not(:last-of-type)::after {
        content: '';
        display: block;
        width: 16rem;
        height: 5.2rem;
        position: absolute;
        right: calc(50% - 16rem);
        top: initial;
        bottom: -4.5rem;
        transform: translate(-50%, 0);
        background: url(../img/online_app/icon_flow_allow_sp.svg) no-repeat center;
        background-size: contain;
    }
    .p-online-app___flow-block .step {
        font-size: 1.7rem;
    }
}

/* よくある質問（一覧） */
.p-faq-list {
    border-top: 1px solid #E0E0E0;
}
.p-faq-list .item {
    display: flex;
    line-height: 1.65;
    padding: 2.4rem 0;
    border-bottom: 1px solid #E0E0E0;
    text-decoration: none;
}
.p-faq-list .item::before {
    content: '';
    display: block;
    width: 3.2rem;
    height: 3.2rem;
    background: url(../img/online_app/icon_faq.svg) no-repeat center;
    background-size: contain;
    margin-right: 1.6rem;
}
.p-faq-list.contract .item::before {
    background: url(../img/online_app/icon_faq_c.svg) no-repeat center;
    background-size: contain;
}
.p-faq-list .item span {
    flex: 1;
}

.p-faq-page {

}
.p-faq-page .p-faq-list {
    margin-top: 4rem;
    margin-bottom: 4rem;
}
.p-faq-search-tab {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 5.6rem;
    margin-bottom: 32px;
}
.p-faq-search-tab li {
    position: relative;
}
.p-faq-search-tab li.current::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 24px solid #0387CD;
    border-right: 24px solid transparent;
    border-left: 24px solid transparent;
}
.p-faq-search-tab li.current:last-of-type::after {
    border-top: 24px solid #8A2267;
}
.p-faq-search-tab li .c-button:hover {
    opacity: 1 !important;
    box-shadow: none;
}
.p-faq-search-tab li:not(.current) .c-button {
    /* opacity: .5; */
}
.p-faq-search-tab li:first-of-type {
    margin-right: 2.4rem;
}
.p-faq-search-tab li:first-of-type .c-button {
    background: #00A2E6;
}
.p-faq-search-tab li.current:first-of-type .c-button,
.p-faq-search-tab li:first-of-type .c-button::before {
    background: #0387CD;
}
.p-faq-search-tab li:last-of-type .c-button {
    background: #B34480;
}
.p-faq-search-tab li.current:last-of-type .c-button,
.p-faq-search-tab li:last-of-type .c-button::before {
    background: #8A2267;
}
.p-faq-search-form {
}
.p-faq-search-form form {
    display: flex;
}
.p-faq-search-form .c-input {
    flex: 1;
    height: 56px;
    border-radius: 4px 0 0 4px;
}
.p-faq-search-form input[type="submit"] {
    display: block;
    margin: 0;
	padding: 0;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
    font-size: 0;
    width: 56px;
    height: 56px;
    background: #00A2E6 url(../img/online_app/icon_search.svg) no-repeat center;
    background-size: 18px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}
.p-faq-search-form.contract input[type="submit"] {
    background: #B34480 url(../img/online_app/icon_search.svg) no-repeat center;
    background-size: 18px;
}
.p-faq-page__search {
    width: 84%;
    max-width: 68rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5.6rem;
}
@media only screen and (max-width: 767px) {
    .p-faq-page__search {
        width: 100%;
        max-width: initial;
        margin-bottom: 4rem;
    }
    .p-faq-search-tab {
        justify-content: space-between;
    }
    .p-faq-search-tab li {
        width: 48%;
    }
    .p-faq-search-tab li:first-of-type {
        margin-right: 0;
    }
    .p-faq-search-tab li.current::after {
        bottom: -12px;
    }
    .p-faq-search-tab li .c-button {
        font-size: 1.4rem;
        line-height: 1.45;
        min-width: initial;
        padding: 1.6rem 1.6rem 1.8rem 1.6rem;
        border-radius: 6px;
        max-width: initial;
    }
}

/* よくある質問（詳細） */
.p-faq-detail {
    margin-top: 5.6rem;
}
.wp-block-video {
    max-width: 70rem;
    border: 1.4rem solid #dfdfdf;
}
.p-faq-detail__title {
    font-size: 3.2rem;
    line-height: 1.55;
    font-weight: bold;
    color: #00A2E6;
    display: flex;
    margin-bottom: 4rem;
}
.p-faq-detail__title span {
    flex: 1;
}
.p-faq-detail__title::before {
    content: '';
    display: block;
    width: 4.8rem;
    height: 4.8rem;
    background: url(../img/online_app/icon_faq.svg) no-repeat center;
    background-size: contain;
    margin-right: 1rem;
    margin-top: .2rem;
}
.p-faq-detail__content {
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 7.2rem;
    margin-bottom: 4.8rem;
}
.p-faq-detail__related {
    margin-top: 4rem;
    margin-bottom: 12rem;
}
.p-faq-detail__related h3 {

    margin-bottom: 1rem;
}
.p-faq-detail__related ul {
    
}
.p-faq-detail__related ul li {
    
}
.p-faq-detail__related ul li a {
    display: flex;
    padding: .4rem 0;
    text-decoration: none;
}
.p-faq-detail__related ul li a::before {
    content: '';
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    background: url(../img/online_app/icon_faq.svg) no-repeat center;
    background-size: contain;
    margin-right: 1rem;
    margin-top: .4rem;
}
.p-faq-detail__related ul li a span {
    flex: 1;
}
@media only screen and (max-width: 767px) {
    .wp-block-video {
        border: 1rem solid #dfdfdf;
    }
    .p-faq-detail__title {
        font-size: 2rem;
    }
    .p-faq-detail__title::before {
        width: 4rem;
        height: 4rem;
    }
}

/* 企業登録フォーム */
.p-online-app-form {
    margin-bottom: 4rem;
}
.p-online-app-form .t-red {
    color: #CB1318;
    font-size: 1.4rem;
    line-height: 1.45;
    margin-top: 1rem;
}

@media only screen and (max-width: 767px) {
    .p-online-app-form .t-red {
        font-size: 1.3rem;
        line-height: inherit;
        margin-top: 1.6rem;
    }
}

.p-form dl dd .d-flex p {
    display: flex;
    align-items: center;
}
.p-company-navi.is-faq {
    margin-top: 7rem;
    margin-bottom: 14rem;
}
.p-company-navi.is-faq nav {
    margin: 0 auto 8rem auto;
}
.p-company-navi.is-faq .p-online-app___heading {
    margin-bottom: 0rem;
}
.p-company-navi.is-faq nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: end;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4rem;
    line-height: 1.4;
    gap: 2rem 3rem;
}
.p-company-navi.is-faq nav ul li {
    width: 22%;
    letter-spacing: 0;
    margin: 0;
}
@media only screen and (max-width: 767px) {
    .p-company-navi.is-faq {
        margin-top: 5rem;
        margin-bottom: 12rem;
    }
    .p-company-navi.is-faq nav ul {
        justify-content: space-between;
        gap: 2rem 0;
    }
    .p-company-navi.is-faq nav ul li {
        width: 47%;
        letter-spacing: 0;
    }
}

.p-invoice-upload-attention {
    background-color: #fff;
    border: 7px solid #F2F2F2;
    padding: 2.4rem;
    font-size: 1.5rem;
    margin-top: 2.4rem;
}
.p-invoice-upload-attention__content {
    margin-bottom: 2.4rem;
}
.p-invoice-upload-attention__content h3 {
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 1.45;
    margin-bottom: 1rem;
}
.p-invoice-upload-attention__content p {
    line-height: 1.65;
}
.p-invoice-upload-attention__image {
    max-width: 60rem;
    display: block;
}
.p-online-app___flow .p-invoice-upload-attention {
    margin-top: -2.4rem;
}

/* 土壌処理設備（再生水施設） */
.p-soli-system {

}
.p-soli-system .inner {
    max-width: 900px;
}
.p-soli-system___section {
    margin-top: 14rem;
    margin-bottom: 14rem;
}
.p-soli-system___heading {
    font-size: 3.2rem;
    line-height: 1.4;
    padding-left: 2rem;
    border-left: 6px solid #00A2E6;
    margin-bottom: 4rem;
}

.p-soli-system-overview {

}
.p-soli-system-overview__figure {
    display: flex;
    justify-content: space-between;
}
.p-soli-system-overview__figure .item {

}
.p-soli-system-overview__figure .item:first-of-type {
    width: 30%;
}
.p-soli-system-overview__figure .item:last-of-type {
    width: 58%;
}
.p-soli-system-overview__figure .item figure {
    border: 5px solid #B9CED7;
    border-radius: 1.4rem;
    overflow: hidden;
}
.p-soli-system-overview__figure .item figure a {
    display: flex;
}
.p-soli-system-overview__figure .item figure img {
    width: 100%;
    height: auto;
}
.cicle-heading {
    font-size: 2rem;
    line-height: 1.45;
    display: flex;
    margin-top: 5rem;
    margin-bottom: 2rem;
}
.cicle-heading::before {
    content: '';
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    border: 4px solid #00A2E6;
    border-radius: 2rem;
    margin-right: 1rem;
    margin-top: .8rem;
}
.p-soli-system-works-table {
    width: 100%;
    border-bottom: 1px solid #e7e7e7;
}
.p-soli-system-works-table thead {
    background-color: #00A2E6;
    color: #fff;
}
.p-soli-system-works-table thead th {
    padding: 1.3rem 1.7rem 1.5rem 1.7rem;
    font-size: 1.5rem;
    line-height: 1.4;
    min-width: 14rem;
}
.p-soli-system-works-table tbody tr:nth-of-type(even) {
    background-color: #F3F3F3;
}
.p-soli-system-works-table tbody tr td {
    padding: 2rem 1.7rem 2.2rem 1.7rem;
    font-size: 1.5rem;
    line-height: 1.75;
}
.p-soli-system-works-table tbody tr td.column-name {
    font-weight: bold;
}

.p-soli-system-flow-sheet__navi {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}
.p-soli-system-image {
    display: flex;
    justify-content: space-between;
}
.p-soli-system-image .item {
    width: 46%;
}
#soil_system_image .p-soli-system___heading {
    margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
    .p-soli-system___section {
        margin-top: 8rem;
        margin-bottom: 8rem;
    }
    .p-soli-system___heading {
        font-size: 2rem;
        padding-left: 1.4rem;
        border-left: 5px solid #00A2E6;
        margin-bottom: 3.2rem;
    }
    .p-soli-system-overview__figure {
        flex-direction: column;
        justify-content: initial;
    }
    .p-soli-system-overview__figure .item:first-of-type {
        width: 100%;
    }
    .p-soli-system-overview__figure .item:last-of-type {
        width: 100%;
    }
    .p-soli-system-overview__figure .item figure {
        border: 3px solid #B9CED7;
    }
    .p-soli-system-overview__figure .item:first-of-type figure {
        width: 20rem;
    }
    .cicle-heading {
        font-size: 1.6rem;
        margin-top: 3.2rem;
        margin-bottom: 1.6rem;
    }
    .cicle-heading::before {
        width: .8rem;
        height: .8rem;
        border: 3px solid #00A2E6;
        margin-right: .8rem;
        margin-top: .55rem;
    }
    .p-soli-system-works-table thead th {
        font-size: 1.3rem;
    }
    .p-soli-system-works-table tbody tr td {
        padding: 2rem 0.7rem 1.2rem 1.7rem;
        font-size: 1.3rem;
        line-height: 1.5;
    }
    .p-soli-system-image {
        flex-direction: column;
        justify-content: inherit;
    }
    .p-soli-system-image .item {
        width: 100%;
    }
}

/* 法人のお客さま 環境事業　土壌処理設備 */
.p-corporate-soilsytem {
    background-color: #F1F5F9;
    padding: 8rem 0;
}
.p-corporate-soilsytem .inner {
    background-color: #fff;
    padding: 5% 6%;
}
.p-corporate-soilsytem .inner .d-flex {
    display: flex;
    gap: 0 4rem;
}
.p-corporate-soilsytem .inner .d-flex .content {
    width: 55%;
}
.p-corporate-soilsytem .inner .d-flex .content .c-section-title {
    margin-bottom: 2.4rem;
}
.p-corporate-soilsytem .inner .d-flex picture {
    display: block;
    width: 40%;
}
.p-corporate-soilsytem .inner .d-flex .content nav {
    margin-top: 3.2rem;
}
@media only screen and (max-width: 767px) {
    .p-corporate-soilsytem .inner {
        padding: 4rem 2rem;
        width: 92vw;
    }
    .p-corporate-soilsytem .inner .d-flex {
        display: block;
        gap: initial;
    }
    .p-corporate-soilsytem .inner .d-flex .content {
        width: 100%;
    }
    .p-corporate-soilsytem .inner .d-flex .content nav {
        margin-top: 2.4rem;
        display: flex;
        justify-content: center;
    }
    .p-corporate-soilsytem .inner .d-flex picture {
        width: 100%;
        margin-top: 4.8rem;
    }
}