@charset "utf-8";
/*
theme Name: yuwa-clean
Description: 佑和クリーンのテーマです
version： 1.0
*/

/*----------------------------------------
	all
----------------------------------------*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Noto Sans JP', '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ ゴシック', sans-serif;
    font-optical-sizing: auto;
    font-size: 62.5%;
    color: #002456;
    -webkit-text-size-adjust: 100%;
    line-height: 1;
    font-weight: 500;
    scroll-behavior: smooth;
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 1.8rem;
}

a {
    text-decoration: none;
    color: #002456;
}

img {
    vertical-align: bottom;
    height: auto;
}

ul {
    list-style-type: none;
}

#container {
    overflow-x: hidden;
}

/*----------------------------------------
	common
----------------------------------------*/

.l-main {
    position: relative;
    z-index: 0;
    background: none;
}

.l-main:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/top_mv.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    z-index: -1;
    will-change: transform;
    transform: translateZ(0);
}

.c-inner1200 {
    width: 1200px;
    margin: auto;
}

.c-text {
    font-size: 1.8rem;
    line-height: 1.75;
}

.c-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 350px;
    height: 50px;
    font-size: 1.8rem;
    border: 1px solid #002456;
    color: #002456;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
    margin-left: auto;
    margin-right: auto;
}

@media (hover: hover) {
    .c-button:hover {
        background-color: #002456;
        color: #fff;
        box-shadow: 0 4px 15px rgba(0, 36, 86, 0.3);
    }
}

.op {
    transition: .3s;
}

.op:hover {
    opacity: 0.7;
}

.bold {
    font-weight: bold;
}

@media screen and (max-width:1300px) {
    .c-inner1200 {
        width: 100%;
        padding: 0 6.5%;
    }
}

@media screen and (max-width:1100px) {
    .c-inner1200 {
        width: 100%;
        padding: 0 5.5%;
    }
}

@media screen and (max-width:820px) {
    .c-text {
        font-size: 1.4rem;
    }

    .c-inner1200 {
        width: 100%;
        padding: 0 3.5%;
    }
}

@media screen and (max-width:590px) {
    .c-button {
        width: 90%;
        font-size: 1.4rem;
    }
}

/*----------------------------------------
	animation
----------------------------------------*/

.p-splash {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    background: transparent linear-gradient(132deg, #002456 0%, #6E80A3 100%) 0% 0% no-repeat padding-box;
}

.p-splash img {
    width: 220px;
    opacity: 0;
    transform: translateY(20px);
    animation: splashFadeIn 0.8s forwards;
}

.u-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s, transform 1s;
}

.u-fade-up.is-show {
    opacity: 1;
    transform: translateY(0);
}

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

@media screen and (max-width:590px) {
    .p-splash img {
        width: 200px;
    }
}

.appear {
    transform-origin: center top;
    animation: show 1s both;
}

span.appear {
    display: inline-block;
}

.d1 {
    animation-delay: 0.5s;
}

.d2 {
    animation-delay: 1s;
}

.d3 {
    animation-delay: 1.5s;
}

.d4 {
    animation-delay: 2s;
}

.d5 {
    animation-delay: 2.5s;
}

.d6 {
    animation-delay: 3s;
}

.d8 {
    animation-delay: 3.5s;
}

.d10 {
    animation-delay: 10s;
}

.d12 {
    animation-delay: 12s;
}

@keyframes show {
    0% {
        transform: translate(0, 2em);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
    transition: 0.8s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
}

.scroll_up.on {
    transform: translateY(0);
    opacity: 1.0;
}

.scroll_up__mv {
    transition: 0.8s ease-in-out;
    transform: translate(-50%, -35%);
    opacity: 0;
}

.scroll_up__mv.on {
    transform: translate(-50%, -50%);
    opacity: 1.0;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}

.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}

.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

.timing02 {
    transition-delay: .2s;
}

.timing03 {
    transition-delay: .4s;
}

.timing04 {
    transition-delay: .6s;
}

.timing05 {
    transition-delay: .8s;
}

/*----------------------------------------
	l-header
----------------------------------------*/

.l-header {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all 0.4s ease;
    background-color: #fff;
}

.l-header__inner {
    width: 100%;
    height: 100%;
    padding: 0 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9999;
}

.l-header__gnav {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.l-header__gnavLists {
    display: flex;
    align-items: center;
}

.l-header__gnavList a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 2rem;
    color: #002456;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    transition: all 0.3s ease;
}

.l-header__gnavList:not(:last-child) {
    margin: 0 60px 0 0;
}

.l-header__gnavContact a {
    width: 180px;
    height: 80px;
    font-size: 2rem;
    color: #fff;
    background-color: #002456;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.input-hidden {
    display: none;
}

.hamburger-demo-cover {
    display: none;
}

.logo a {
    display: block;
}

.l-header__gnavSp {
    display: none;
}

.l-header__gnavList a::after {
    content: attr(data-ja);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    font-size: 1.1rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    color: #002456;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
    transition: all 0.3s ease;
}

@media screen and (min-width: 1025px) {
    .l-header__gnavList a:hover {
        transform: translateY(-5px);
    }

    .l-header__gnavList a:hover::after {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@media screen and (max-width:1500px) {
    .l-header__gnavList:not(:last-child) {
        margin: 0px 35px 0 0;
    }

    .l-header__gnavList a {
        font-size: 1vw;
    }
}

@media screen and (max-width:1024px) {
    .l-header__gnavSp {
        display: flex;
    }

    .l-header__right {
        display: none;
    }

    #l-header {
        height: 70px;
    }

    .l-header__inner {
        padding: 0 0 0 35px;
    }

    .l-header__gnavLists {
        flex-direction: column;
    }

    .l-header__gnavList {
        width: 100%;
        height: auto;
    }

    .l-header__gnavList:not(:last-child) {
        margin: 0;
    }

    .l-header__gnavLists li > a {
        display: flex;
        flex-direction: column;
    }

    .l-header__gnavList a {
        font-size: 1.7rem;
        display: flex;
        flex-direction: column-reverse;
        padding: 1.5em 0;
        height: auto;
    }

    .l-header__gnavList a::after {
        position: static;
        /* 絶対配置を解除 */
        opacity: 1;
        transform: none;
        margin-top: 8px;
        font-size: 1.3rem;
        color: #666;
        display: block;
    }

    .l-header__gnavLists li.has-child > a {
        position: relative;
    }

    .l-header__gnavLists li.has-child > a:after {
        content: '';
        position: absolute;
        right: 40px;
        width: 12px;
        height: 12px;
        border-top: 2px solid #222;
        border-right: 2px solid #222;
        transform: rotate(135deg) translateY(-50%);
    }

    .l-header__gnavLists li.has-child.active > a:after {
        transform: rotate(-45deg);
    }

    nav ul li a {
        padding: 10px 20px;
        border-bottom: 1px dashed #ccc;
    }

    .nav ul li:last-child a {
        border-bottom: none;
    }

    nav ul li:first-child a {
        border-top: 1px dashed #ccc;
    }

    nav ul li li a {
        padding: 0;
    }

    .input-hidden {
        display: none;
    }

    .hamburger-demo-switch {
        cursor: pointer;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 9999;
        width: 70px;
        height: 70px;
        background-color: #002456;
    }

    .hamburger-switch-line1,
    .hamburger-switch-line1-before,
    .hamburger-switch-line1-after {
        width: 25px;
        height: 3px;
        background: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transition: .3s;
        border-radius: 100px;
        content: "";
    }

    .hamburger-switch-line1 {
        transform: translate(-50%, -50%);
    }

    .hamburger-switch-line1-before {
        transform: translate(-50%, -300%);
    }

    .hamburger-switch-line1-after {
        transform: translate(-50%, 200%);
    }

    #hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1 {
        width: 0;
    }

    #hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1-before {
        background-color: #fff;
        transform: rotate(45deg) translate(-40%, 325%);
    }

    #hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1-after {
        background-color: #fff;
        transform: rotate(-45deg) translate(-40%, -325%);
    }

    .l-header__gnav {
        position: fixed;
        height: 100vh;
        background: #fafafa;
        padding: 5em 3% 2em;
        z-index: 9998;
        transition: .3s;
        overflow-y: scroll;
        justify-content: flex-start;
        align-items: center;
        top: 0;
        left: 100%;
        width: 80%;
    }

    .l-header__gnavLists {
        width: 100%;
        margin-right: 3%;
        padding-left: 5% !important;
        list-style: none;
        margin-bottom: 40px;
    }

    .l-header__gnavLists li a {
        text-decoration: none;
        color: #002456;
        padding: 1.6em 0;
    }

    #hamburger-demo1:checked ~ .l-header__gnav {
        left: 20%;
    }

    #hamburger-demo1:checked ~ .hamburger-demo-cover {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        z-index: 9997;
        background: rgba(3, 3, 3, .5);
        display: block;
    }

    .l-header__gnavList > a {
        height: auto;
    }

    .l-header__gnavLists li a {
        padding: 1.5em 0;
    }

    .logo a {
        width: 300px;
    }

    .l-header__gnavContact {
        width: 100%;
        margin-top: 20px;
        padding: 0 20px;
    }

    .l-header__gnavContact a {
        width: 100%;
        height: 60px;
        font-size: 1.8rem;
        border-radius: 4px;
        border: none;
        color: #fff;
    }
}

@media screen and (max-width:590px) {

    #l-header {
        height: 55px;
    }

    .hamburger-demo-switch {
        width: 55px;
        height: 55px;
    }

    .l-header__gnav {
        padding: 4em 3% 2em;
    }

    .l-header__gnavList a {
        font-size: 1.5rem;
    }

    .l-header__inner {
        padding: 0 15px;
    }

    .l-header__gnavList {
        width: 100%;
    }

    .l-header__gnavLists li.has-child > a:after {
        right: 8px;
        width: 8px;
        height: 8px;
    }

    .logo a {
        width: 210px;
    }

    .l-header__gnavLists li a {
        padding: 0.9em 0;
    }

    .l-header__gnavWrap {
        flex-direction: column;
    }

    .l-header__gnavContact {
        margin-top: 15px;
        padding: 0 10px;
    }

    .l-header__gnavContact a {
        height: 50px;
        font-size: 1.6rem;
    }
}

/*----------------------------------------
	footer
----------------------------------------*/

.l-footer {
    background-image: url(images/footer_bg.jpg);
    color: #fff;
    padding: 147px 0 165px;
    position: relative;
    z-index: 10;
}

.home .l-footer {
    background-image: unset;
    background: transparent linear-gradient(132deg, #002456 0%, #6E80A3 100%) 0% 0% no-repeat padding-box;
}

.l-footerWrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.l-footerMenu {
    padding: 0;
    width: 241px;
}

.l-footerMenu__item:not(:last-child) {
    margin: 0 0 25px;
}

.l-footerMenu__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.l-footerMenu__item a {
    color: #fff;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 3.4rem;
    letter-spacing: 0.02em;
    line-height: 1.235;
}

.l-footer__logo {
    text-align: center;
}

.l-footer__info {
    text-align: right;
}

.footer-company {
    font-size: 2.4rem;
    border-bottom: 1px solid #fff;
    display: inline-block;
    padding-bottom: 5px;
    padding-left: 25px;
    margin-bottom: 37px;
}

.footer-company span {
    font-size: 1.6rem;
    margin: 0 9px 0 0;
}

.footer-lead {
    font-size: 2.6rem;
    line-height: 1.462;
    margin-bottom: 40px;
}

.footer-tel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 15px;
}

.footer-tel__label {
    display: inline-block;
    border: 1px solid #fff;
    margin: 0 0 10px;
    padding: 8px 14px;
    font-size: 1.9rem;
    vertical-align: middle;
}

.footer-tel__number {
    font-size: 3.2rem;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    color: #fff;
    text-decoration: none;
}

.footer-address {
    font-style: normal;
    font-size: 1.6rem;
    line-height: 1.375;
}

.footer-copyright {
    margin-top: 80px;
    font-size: 1.4;
}

@media screen and (max-width: 1500px) {
    .l-footer {
        padding: 100px 0;
    }

    .l-footerMenu__item a {
        font-size: 2.8rem;
    }

    .footer-lead {
        font-size: 2.2rem;
    }

    .footer-logo {
        width: 300px;
    }

    .l-footer__logo img {
        width: 100%;
    }
}

@media screen and (max-width: 820px) {
    .l-footer {
        padding: 60px 20px;
    }

    .l-footerWrap {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .l-footer__nav {
        width: 100%;
    }

    .l-footerMenu {
        width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .l-footerMenu__item a {
        font-size: 2.4rem;
    }

    .l-footer__info {
        text-align: center;
    }

    .footer-company {
        padding-left: 0;
        margin-bottom: 20px;
    }

    .footer-lead {
        margin-bottom: 25px;
    }

    .footer-tel {
        align-items: center;
    }

    .l-footer__logo img {
        width: 160px;
    }
}

@media screen and (max-width: 590px) {
    .l-footer {
        padding: 40px 15px 50px;
    }

    .l-footerWrap {
        gap: 30px;
    }

    .l-footerMenu__item {
        margin-bottom: 12px !important;
    }

    .l-footerMenu__item a {
        font-size: 2rem;
    }

    .footer-company {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .footer-lead {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .footer-tel__number {
        font-size: 2.4rem;
    }

    .footer-tel__label {
        font-size: 1.4rem;
        margin-bottom: 5px;
    }

    .footer-address {
        font-size: 1.3rem;
    }

    .footer-copyright {
        margin-top: 30px;
        font-size: 1.1rem;
    }
}

/*----------------------------------------
	topMv
----------------------------------------*/

.p-topMv {
    width: 100%;
    height: 100vh;
    background-image: none;
    background-color: transparent;
    position: relative;
}

.p-topMv:before {
    content: "";
    position: absolute;
    top: 50%;
    right: -3.9%;
    background-image: url(images/mv_logo.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 922px;
    height: 874px;
    opacity: 0;
    transform: translateY(-50%) scale(0.95);
    transition: opacity 1.5s ease 0.2s, transform 1.5s ease 0.2s;
}

.p-topMv h2 {
    font-size: 6.66vw;
    letter-spacing: 0.04em;
    line-height: 1.219;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 47.7%;
    left: 4.8%;
    z-index: 1;
    opacity: 0;
    transform: translateY(calc(-50% + 20px));
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.p-topMv h2 span {
    font-size: 2rem;
    font-weight: bold;
    margin: 12px 0 0;
    letter-spacing: 0.2em;
    line-height: 1.45;
    opacity: 0;
    transition: opacity 1s ease 0.5s;
}

.p-topMv.is-active h2 {
    opacity: 1;
    transform: translateY(-50%);
}

.p-topMv.is-active h2 span {
    opacity: 1;
}

.p-topMv.is-active:before {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

@media screen and (max-width: 1500px) {
    .p-topMv:before {
        width: 600px;
        height: 570px;
        right: -5%;
    }
}

@media screen and (max-width: 820px) {
    .p-topMv {
        height: 80vh;
        min-height: 500px;
        overflow: hidden;
    }

    .p-topMv:before {
        width: 400px;
        height: 380px;
        right: -10%;
    }

    .p-topMv h2 {
        font-size: 8vw;
        top: 50%;
        left: 5%;
    }

    .p-topMv h2 span {
        font-size: 1.7rem;
    }
}

@media screen and (max-width: 590px) {
    .p-topMv {
        height: 75vh;
    }

    .p-topMv:before {
        width: 280px;
        height: 265px;
        right: -6%;
        top: 52%;
    }

    .p-topMv h2 {
        font-size: 9vw;
        width: 90%;
    }

    .p-topMv h2 span {
        font-size: 1.5rem;
        letter-spacing: 0.1em;
    }
}

/*----------------------------------------
	topFeature
----------------------------------------*/

.p-topFeature {
    background-color: transparent;
    position: relative;
    padding: 108px 0 250px;
    position: relative;
}

.p-topFeature:after {
    content: "";
    width: 1px;
    height: 140px;
    background-color: #ECECEC;
    position: absolute;
    transform: translateX(-50%);
    bottom: 0;
    left: 50%;
}

.p-topFeature ul {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.p-topFeature ul li {
    box-shadow: 3px 3px 10px #283A53;
    border-radius: 50%;
}

.p-topFeature h3 {
    display: inline-block;
    font-size: 2.8rem;
    letter-spacing: 0.04em;
    color: #002456;
    text-align: center;
    background-color: #FFF500;
    line-height: 1.464;
    transform: rotate(-3deg);
    padding: 4px 19px 5px;
}

.p-topFeature__title {
    text-align: center;
    margin: 0 0 38px;
    color: #fff;
}

.p-topFeature .c-title {
    color: #fff;
}

@media screen and (max-width: 1500px) {
    .p-topFeature {
        padding: 80px 0 180px;
    }
}

@media screen and (max-width: 820px) {
    .p-topFeature {
        padding: 60px 20px 140px;
    }

    .p-topFeature ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .p-topFeature ul li {
        width: 100%;
        max-width: 270px;
    }

    .p-topFeature ul li img {
        width: 100%;
        height: auto;
    }

    .p-topFeature h3 {
        font-size: 2.2rem;
    }

    .p-topFeature:after {
        height: 80px;
    }
}

@media screen and (max-width: 590px) {
    .p-topFeature {
        padding: 50px 15px 100px;
    }

    .p-topFeature h3 {
        font-size: 1.8rem;
        padding: 4px 12px;
    }

    .p-topFeature__title {
        margin-bottom: 25px;
    }

    .p-topFeature:after {
        height: 60px;
    }
}

/*----------------------------------------
	topService
----------------------------------------*/

.p-topService {
    padding: 90px 0 150px;
    background-color: #E3E3E3;
}

.p-topService ul {
    display: flex;
    justify-content: space-between;
}

.p-topService ul li {
    width: 47.5%;
}

.p-topService__img {
    width: 100%;
    height: 250px;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.p-topService__img h3 {
    font-size: 3.2rem;
    letter-spacing: 0.04em;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    text-align: center;
}

.p-topService__img h3 span {
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.p-topService__img h3 span:before {
    content: "";
    display: block;
    width: 286px;
    height: 1px;
    margin: 10px auto 12px;
    background-color: #fff;
}

.p-topService ul li:nth-of-type(1) .p-topService__img {
    background-image: url(images/top_service_business.jpg);
}

.p-topService ul li:nth-of-type(2) .p-topService__img {
    background-image: url(images/top_service_personal.jpg);
}

.p-topService__text {
    background-color: #fff;
    padding: 34px 52px 43px;
    height: 320px;
}

.p-topService__text ul {
    display: flex;
    flex-direction: column;
}

.p-topService__text ul li {
    font-size: 2.2rem;
    width: 100%;
    display: flex;
    align-items: center;
    line-height: 1.5;
}

.p-topService__text ul li:not(:last-child) {
    margin: 0 0 10px;
}

.p-topService__text ul li:before {
    content: "";
    display: inline-block;
    width: 13px;
    height: 13px;
    background-color: #6E80A3;
    margin: 0 12px 0 0;
}

.p-topService__text ul li span {
    font-size: 1.6rem;
}

.p-topService ul li:nth-of-type(1) .c-button {
    margin-top: 76px;
    margin-left: auto;
    margin-right: auto;
}

.p-topService ul li:nth-of-type(2) .c-button {
    margin: 34px auto 0;
}

@media screen and (max-width: 1500px) {
    .p-topService__text {
        padding: 30px 40px;
        height: auto;
        min-height: 320px;
    }
}

@media screen and (max-width: 820px) {
    .p-topService {
        padding: 60px 20px 100px;
    }

    .p-topService > .c-inner1200 > ul {
        flex-direction: column;
        gap: 50px;
    }

    .p-topService ul li {
        width: 100%;
    }

    .p-topService__img {
        height: 200px;
    }

    .p-topService__img h3 {
        font-size: 2.6rem;
    }

    .p-topService__img h3 span:before {
        width: 200px;
    }

    .p-topService__text {
        height: auto;
        padding: 30px 25px;
        min-height: auto;
    }

    .p-topService__text ul li {
        font-size: 1.8rem;
    }

    .p-topService ul li:nth-of-type(1) .c-button,
    .p-topService ul li:nth-of-type(2) .c-button {
        margin-top: 40px;
    }
}

@media screen and (max-width: 590px) {
    .p-topService {
        padding: 50px 15px 60px;
    }

    .p-topService__img {
        height: 180px;
    }

    .p-topService__img h3 {
        font-size: 2rem;
    }

    .p-topService__img h3 span {
        font-size: 1.4rem;
    }

    .p-topService__img h3 span:before {
        width: 160px;
        margin: 8px auto 10px;
    }

    .p-topService__text ul li {
        font-size: 1.6rem;
        display: unset;
    }

    .p-topService__text ul li:before {
        margin-top: 6px;
        width: 10px;
        height: 10px;
    }

    .p-topService__text ul li span {
        font-size: 1.3rem;
        display: block;
    }

    .p-topService ul li:nth-of-type(1) .c-button,
    .p-topService ul li:nth-of-type(2) .c-button {
        margin-top: 20px;
    }
}

/*----------------------------------------
	topAbout
----------------------------------------*/

.p-topAbout {
    background-color: transparent;
    position: relative;
    padding: 120px 0 260px;
    position: relative;
}

.p-topAbout:after {
    content: "";
    width: 1px;
    height: 140px;
    background-color: #ECECEC;
    position: absolute;
    transform: translateX(-50%);
    bottom: 0;
    left: 50%;
}

.p-topAbout ul {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.p-topAbout ul li {
    border-radius: 50%;
    box-shadow: 3px 3px 10px #283A53;
}

.p-topAbout .c-title {
    color: #fff;
}

.p-topAbout__text {
    margin: 0 0 78px;
}

.p-topAbout__text .c-text {
    color: #fff;
    text-align: center;
    line-height: 2;
}

.p-topAbout__text .c-text:not(:last-child) {
    margin: 0 0 50px;
}

.p-topAbout .c-button {
    border: 1px solid #fff;
    color: #fff;
    margin: 80px auto 0;
}

@media screen and (max-width: 1500px) {
    .p-topAbout {
        padding: 100px 0 200px;
    }
}

@media screen and (max-width: 820px) {
    .p-topAbout {
        padding: 80px 20px 150px;
    }

    .p-topAbout ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .p-topAbout ul li {
        width: 100%;
        max-width: 500px;
    }

    .p-topAbout ul li img {
        width: 100%;
        height: auto;
    }

    .p-topAbout__text {
        margin-bottom: 50px;
    }

    .p-topAbout__text .c-text:not(:last-child) {
        margin-bottom: 30px;
    }

    .p-topAbout .c-button {
        margin-top: 60px;
    }

    .p-topAbout:after {
        height: 100px;
    }
}

@media screen and (max-width: 590px) {
    .p-topAbout {
        padding: 60px 15px 100px;
    }

    .p-topAbout__text .c-text {
        font-size: 1.4rem;
        text-align: left;
    }

    .p-topAbout .c-button {
        margin-top: 40px;
    }

    .p-topAbout:after {
        height: 60px;
    }

    .p-topAbout ul li {
        max-width: 270px;
    }
}

/*----------------------------------------
	topWorks
----------------------------------------*/

.p-topWorks {
    background-color: #E3E3E3;
    position: relative;
    z-index: 10;
    padding: 122px 0 135px;
}

.p-topWorks__archiveWrap {
    display: flex;
    gap: 2.5%;
    margin: 0 0 50px;
}

.p-topWorks__archiveWrap article {
    width: 31.6%;
}

.p-topWorks__archiveImg {
    margin: 0 0 10px;
}

.p-topWorks__archiveImg img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.p-topWorks__archiveInfo {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin: 0 0 7px;
}

.p-worksArchive__categoryWrap {
    display: flex;
    align-items: center;
    gap: 4px;
}

.p-topWorks__archiveCategory {
    width: 110px;
    height: 30px;
}

.p-topWorks__archiveCategory a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.6rem;
    line-height: 1;
    background-color: #fff;
}

.p-topWorks__archiveInfo time {
    font-size: 1.6rem;
    letter-spacing: 0.02em;
}

.p-topWorks__archiveTitle {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.06em;
    line-height: 1.5;
}

.p-topWorks__archiveArticle:nth-of-type(4) {
    display: none;
}

@media screen and (max-width: 1500px) {
    .p-topWorks {
        padding: 80px 0 100px;
    }

    .p-topWorks__archiveImg img {
        height: 300px;
    }

    .p-topWorks__archiveTitle {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 820px) {
    .p-topWorks {
        padding: 60px 20px;
    }

    .p-topWorks__archiveWrap {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 40px 20px;
        margin-bottom: 40px;
    }

    .p-topWorks__archiveWrap article {
        width: calc(50% - 10px);
    }

    .p-topWorks__archiveImg img {
        height: 240px;
    }

    .p-topWorks__archiveTitle {
        font-size: 1.5rem;
    }

    .p-topWorks__archiveCategory {
        width: 100px;
        height: 28px;
    }

    .p-topWorks__archiveCategory a,
    .p-topWorks__archiveInfo time {
        font-size: 1.4rem;
    }

    .p-topWorks__archiveArticle:nth-of-type(4) {
        display: block;
    }
}

@media screen and (max-width: 590px) {
    .p-topWorks {
        padding: 40px 15px 60px;
    }

    .p-topWorks__archiveWrap {
        gap: 25px 10px;
        margin-bottom: 30px;
    }

    .p-topWorks__archiveWrap article {
        width: calc(50% - 5px);
    }

    .p-topWorks__archiveImg img {
        height: 140px;
    }

    .p-topWorks__archiveTitle {
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .p-topWorks__archiveInfo {
        margin-bottom: 5px;
        flex-direction: column;
        align-items: flex-start;
    }

    .p-topWorks__archiveInfo time {
        margin: 0 0 5px;
    }

    .p-topWorks__archiveCategory {
        width: auto;
        height: 18px;
    }

    .p-topWorks__archiveCategory a {
        padding: 0 8px;
    }

    .p-topWorks__archiveCategory a,
    .p-topWorks__archiveInfo time {
        font-size: 1.1rem;
    }
}

/*----------------------------------------
	topBlog
----------------------------------------*/

.p-topBlog {
    background-color: #E3E3E3;
    position: relative;
    z-index: 10;
    padding: 0 0 160px;
}

.p-topBlog__archiveWrap {
    display: flex;
    gap: 2.5%;
    margin: 0 0 50px;
}

.p-topBlog__archiveWrap article {
    width: 31.6%;
}

.p-topBlog__archiveImg {
    margin: 0 0 10px;
}

.p-topBlog__archiveImg img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.p-topBlog__archiveTitle {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.02em;
    line-height: 1.556;
}

.p-topBlog__archiveArticle a {
    position: relative;
}

.p-topBlog__archiveCategory {
    width: 130px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #002456;
    color: #fff;
}

.p-topBlog__archiveArticle time {
    display: block;
    font-size: 1.6rem;
    margin: 0 0 10px;
}

.p-topBlog__archiveArticle:nth-of-type(4) {
    display: none;
}

@media screen and (max-width: 1500px) {
    .p-topBlog {
        padding-bottom: 100px;
    }

    .p-topBlog__archiveImg img {
        height: 300px;
    }

    .p-topBlog__archiveTitle {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 820px) {
    .p-topBlog {
        padding-bottom: 80px;
    }

    .p-topBlog__archiveWrap {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 40px 20px;
    }

    .p-topBlog__archiveWrap article {
        width: calc(50% - 10px);
        max-width: none;
    }

    .p-topBlog__archiveImg img {
        height: 240px;
    }

    .p-topBlog__archiveTitle {
        font-size: 1.5rem;
    }

    .p-topBlog__archiveCategory {
        width: 100px;
        height: 32px;
        font-size: 1.3rem;
    }

    .p-topBlog__archiveArticle:nth-of-type(4) {
        display: block;
    }
}

@media screen and (max-width: 590px) {
    .p-topBlog {
        padding-bottom: 60px;
    }

    .p-topBlog__archiveWrap {
        margin: 0 0 40px;
        gap: 25px 10px;
    }

    .p-topBlog__archiveWrap article {
        width: calc(50% - 5px);
    }

    .p-topBlog__archiveImg img {
        height: 140px;
    }

    .p-topBlog__archiveTitle {
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .p-topBlog__archiveArticle time {
        font-size: 1.2rem;
        margin-bottom: 3px;
    }

    .p-topBlog__archiveCategory {
        width: 80px;
        height: 26px;
        font-size: 1.1rem;
    }
}

/*----------------------------------------
	topPrice
----------------------------------------*/

.p-topPrice {
    background-color: #E3E3E3;
    position: relative;
    z-index: 10;
    padding: 0 0 120px;
}

.p-topPrice__wrap {
    background-color: #fff;
    padding: 78px 0 100px;
}

.p-topPrice ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0 0 26px;
}

.p-topPrice .c-text {
    text-align: center;
    line-height: 1.5;
    margin: 0 0 47px;
}

.p-topPrice__attention {
    text-align: center;
    margin: 0 0 32px;
    line-height: 1.5;
}

.p-topPrice__table {
    width: 100%;
    max-width: 900px;
    margin-top: 40px;
    border-collapse: separate;
    border-spacing: 0 10px;
    table-layout: fixed;
    margin: 0 auto 30px;
}

.p-topPrice__table thead th {
    background-color: #7284a6;
    color: #fff;
    padding: 10px 0;
    font-weight: bold;
    border: none;
    font-size: 1.8rem;
    line-height: 1.5;
    text-align: left;
}

.p-topPrice__table thead th:last-child {
    background-color: #001f4d;
    width: 25%;
}

.p-topPrice__table tbody td {
    background-color: #efefef;
    color: #001f4d;
    padding: 22px 0;
    font-size: 16px;
    font-weight: bold;
    vertical-align: middle;
    border: none;
    font-size: 1.8rem;
}

.p-topPrice__table tbody td.p-topPrice__table__price,
.p-topPrice__table tbody td.price-cell,
.p-topPrice__table tbody td:last-child {
    background-color: #001f4d;
    color: #fff;
    font-size: 20px;
    letter-spacing: 0.05em;
}

.p-topPrice__table thead th:nth-child(1),
.p-topPrice__table tbody td:nth-child(1) {
    width: 24.7%;
    padding-left: 42px;
}

.p-topPrice__table thead th:nth-child(2),
.p-topPrice__table tbody td:nth-child(2) {
    width: 21.8%;
}

.p-topPrice__table thead th:nth-child(3),
.p-topPrice__table tbody td:nth-child(3) {
    width: 31.1%;
}

.p-topPrice__table thead th:nth-child(4),
.p-topPrice__table tbody td:nth-child(4) {
    width: 22.2%;
    text-align: center;
}

.p-topPrice__table tbody td:nth-child(4) {
    font-size: 2.4rem;
}

.p-topPrice h3 {
    font-size: 2.4rem;
    letter-spacing: 0.06em;
    text-align: center;
    margin: 0 0 24px;
}

.p-topPrice .c-button {
    background-color: #FFF500;
}

@media (hover: hover) {
    .p-topPrice .c-button:hover {
        background-color: #002456;
        color: #fff;
    }
}

@media screen and (max-width: 1500px) {
    .p-topPrice {
        padding-bottom: 80px;
    }

    .p-topPrice__wrap {
        padding: 60px 40px;
    }
}

@media screen and (max-width: 820px) {
    .p-topPrice {
        padding-bottom: 60px;
    }

    .p-topPrice__wrap {
        padding: 50px 20px;
    }

    .p-topPrice ul {
        gap: 20px;
    }

    .p-topPrice ul li {
        width: 80px;
    }

    .p-topPrice ul li img {
        width: 100%;
        height: auto;
    }

    .p-topPrice .c-text {
        margin-bottom: 30px;
        font-size: 1.5rem;
    }

    .p-topPrice__table {
        display: block;
    }

    .p-topPrice__table thead {
        display: none;
    }

    .p-topPrice__table tbody,
    .p-topPrice__table tr,
    .p-topPrice__table td {
        display: block;
        width: 100% !important;
    }

    .p-topPrice__table tr {
        margin-bottom: 25px;
        border: 1px solid #efefef;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    }

    .p-topPrice__table tbody td {
        padding: 12px 15px;
        text-align: right;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #fff;
    }

    .p-topPrice__table tbody td:before {
        content: "カテゴリ";
        font-size: 1.2rem;
        color: #7284a6;
    }

    .p-topPrice__table tbody td:nth-child(1):before {
        content: "カテゴリ";
    }

    .p-topPrice__table tbody td:nth-child(2):before {
        content: "作業規模";
    }

    .p-topPrice__table tbody td:nth-child(3):before {
        content: "作業内容";
    }

    .p-topPrice__table tbody td:last-child {
        background-color: #001f4d;
        color: #fff;
        padding: 15px;
        justify-content: center;
        font-size: 2.2rem;
    }

    .p-topPrice__table tbody td:last-child:before {
        content: "費用：";
        color: rgba(255, 255, 255, 0.7);
        margin-right: 10px;
    }

    .p-topPrice__attention {
        margin-bottom: 25px;
        font-size: 1.4rem;
    }

    .p-topPrice__table thead th:nth-child(1),
    .p-topPrice__table tbody td:nth-child(1) {
        padding: 12px 15px;
    }
}

@media screen and (max-width: 590px) {
    .p-topPrice__wrap {
        padding: 40px 15px;
    }

    .p-topPrice ul {
        gap: 5px;
    }

    .p-topPrice ul li {
        width: 85px;
    }

    .p-topPrice h3 {
        font-size: 2rem;
    }

    .p-topPrice__table tbody td {
        font-size: 1.4rem;
    }

    .p-topPrice__table tbody td:last-child {
        font-size: 1.8rem;
    }
}

/*----------------------------------------
	topFaq
----------------------------------------*/

.p-topFaq {
    background-color: #E3E3E3;
    position: relative;
    z-index: 10;
    padding: 0 0 140px;
}

.p-topFaq .c-title {
    margin: 0 0 48px;
}

.p-qaLists {
    margin: 0 0 50px;
}

.p-qaList {
    background-color: #002456;
}

.p-qaList:not(:last-child) {
    margin: 0 0 20px;
}

.p-qaLists__title {
    padding: 23px 32px 20px 57px;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: all .5s ease;
    line-height: 1.444;
    color: #fff;
    font-weight: 700;
}

.p-qaLists__title:after {
    content: "Q.";
    color: #fff;
    display: inline-block;
    font-size: 2.2rem;
    letter-spacing: 0.04em;
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 28px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.p-qaLists__title span:first-child {
    font-size: 2.2rem;
    letter-spacing: 0.04em;
    margin: 0 15px 0 0;
}

.p-qaLists__box {
    padding: 26px 0 33px;
    width: 90%;
    border-top: 1px solid #fff;
    display: none;
    position: relative;
    margin: 0 auto;
}

.p-qaLists__box p {
    line-height: 1.667;
    letter-spacing: 0.08em;
    color: #fff;
    font-weight: 400;
}

.p-qaLists__title::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 8.5px 0 8.5px;
    border-color: #fff transparent transparent transparent;
    right: 27px;
    top: 50%;
    transform: translateY(-50%);
    transform: rotate(0deg) translateY(-50%);
}

.p-qaLists__title.close::before {
    transform: rotate(0deg) translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8.5px 15px 8.5px;
    border-color: transparent transparent #fff transparent;
}

.p-qaLists__text {
    display: inline-block;
    width: 85%;
}

@media screen and (max-width: 820px) {
    .p-topFaq {
        padding: 0 0 70px;
    }

    .p-topFaq .c-title {
        margin: 0 0 30px;
    }
}

@media screen and (max-width: 590px) {
    .p-topFaq {
        padding: 0 0 60px;
    }
}

/*----------------------------------------
	topContact
----------------------------------------*/

.p-topContact {
    background-color: #fff;
    padding: 80px 0 125px;
}

@media screen and (max-width: 820px) {
    .p-topContact {
        padding: 60px 0 70px;
    }
}

@media screen and (max-width: 590px) {
    .p-topContact {
        padding: 50px 0 60px;
    }
}


/*----------------------------------------
	bottomContact
----------------------------------------*/

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

.p-bottomContact li {
    width: 48.3%;
    height: 140px;
}

.p-bottomContact li a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid #002456;
}

.p-bottomContact li a h3 {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin: 0 0 10px;
    text-align: center;
}

.p-bottomContact li a h3:after {
    content: "";
    display: block;
    width: 480px;
    height: 1px;
    background-color: #002456;
    margin: 10px auto 0;
}

.p-bottomContact li a p {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    display: flex;
    align-items: center;
}

.p-bottomContact li:nth-of-type(1) a p {
    font-size: 5rem;
}

.p-bottomContact li:nth-of-type(1) a p span {
    display: inline-block;
    font-size: 1.9rem;
    margin: 0 13px 0 0;
    padding: 8px 14px;
    background-color: #002456;
    color: #fff;
}

.p-bottomContact li:nth-of-type(2) a p {
    font-size: 4.6rem;
}

@media screen and (max-width: 1500px) {
    .p-bottomContact li {
        height: 120px;
    }

    .p-bottomContact li a h3 {
        font-size: 1.6rem;
    }

    .p-bottomContact li a h3:after {
        width: 80%;
    }

    .p-bottomContact li:nth-of-type(1) a p {
        font-size: 4rem;
    }

    .p-bottomContact li:nth-of-type(2) a p {
        font-size: 3.6rem;
    }
}

@media screen and (max-width: 820px) {
    .p-bottomContact {
        flex-direction: column;
        gap: 20px;
    }

    .p-bottomContact li {
        width: 100%;
        height: auto;
        min-height: 100px;
    }

    .p-bottomContact li a {
        padding: 20px 10px;
    }

    .p-bottomContact li a h3 {
        font-size: 1.5rem;
    }

    .p-bottomContact li a h3:after {
        width: 90%;
        max-width: 300px;
    }

    .p-bottomContact li:nth-of-type(1) a p {
        font-size: 3.2rem;
    }

    .p-bottomContact li:nth-of-type(2) a p {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 590px) {
    .p-bottomContact {
        gap: 15px;
    }

    .p-bottomContact li a h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .p-bottomContact li a h3:after {
        width: 100px;
        margin-top: 8px;
    }

    .p-bottomContact li:nth-of-type(1) a p {
        font-size: 7vw;
    }

    .p-bottomContact li:nth-of-type(1) a p span {
        font-size: 1.4rem;
        padding: 4px 8px;
        margin-right: 8px;
    }

    .p-bottomContact li:nth-of-type(2) a p {
        font-size: 6.5vw;
    }
}

/*----------------------------------------
	page_common
----------------------------------------*/

.p-catch {
    height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    margin: 0 0 59px;
}

.u-zoom-bg {
    animation: bgZoom 0.8s forwards;
}

@keyframes bgZoom {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

.p-catch__textWrap {
    font-size: 6.6vw;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    position: absolute;
    left: 5.6%;
    top: 50%;
    transform: translateY(-50%);
}

.c-title {
    margin: 0 0 70px;
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
}

.c-title h2 {
    font-size: 1.6rem;
    margin-top: -10px;
}

.c-title span {
    font-size: 9rem;
    letter-spacing: 0.04em;
    line-height: 1.222;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.c-intro {
    margin: 0 0 129px;
}

.c-introTitle {
    display: flex;
    flex-direction: column-reverse;
}

.c-introTitle .c-title {
    margin: 0 0 60px;
}

.c-introTitle h1 {
    text-align: center;
    line-height: 1.5;
    margin: 0 0 78px;
}

.c-intro .c-text {
    line-height: 2;
    text-align: center;
}

.c-pageTitle01 {
    font-size: 3.2rem;
    font-weight: bold;
    margin: 0 0 23px;
    text-align: center;
}

.c-pageTitle01:after {
    content: "";
    display: block;
    width: 80px;
    height: 1px;
    background-color: #002456;
    margin: 20px auto 0;
}

.c-bottomContact {
    background-color: #ECECEC;
    padding: 100px 0 112px;
}

.c-bottomContact h2 {
    font-size: 3.6rem;
    font-weight: bold;
    text-align: center;
    margin: 0 0 38px;
}

.c-bottomContact .c-text {
    text-align: center;
    margin: 0 0 50px;
}

.c-bottomContact .p-bottomContact li a {
    background-color: #fff;
}

@media screen and (max-width: 1500px) {
    .p-catch {
        height: 380px;
    }

    .p-catch__textWrap {
        font-size: 6vw;
    }

    .c-title {
        margin-bottom: 50px;
    }

    .c-title span {
        font-size: 7.5rem;
    }

    .c-intro {
        margin-bottom: 100px;
    }

    .c-introTitle h1 {
        font-size: 2.4rem;
        margin-bottom: 60px;
    }

    .c-pageTitle01 {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }

    .c-bottomContact {
        padding: 80px 0 90px;
    }

    .c-bottomContact h2 {
        font-size: 3.2rem;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 820px) {
    .p-catch {
        height: 350px;
        margin-bottom: 40px;
    }

    .p-catch__textWrap {
        font-size: 8vw;
        left: 5%;
    }

    .c-title {
        margin-bottom: 40px;
    }

    .c-title span {
        font-size: 4.5rem;
        line-height: 1.1;
    }

    .c-title h2 {
        font-size: 1.5rem;
        margin-top: 5px;
    }

    .c-intro {
        margin-bottom: 80px;
    }

    .c-introTitle .c-title {
        margin-bottom: 40px;
    }

    .c-introTitle h1 {
        font-size: 2rem;
        margin-bottom: 30px;
        padding: 0;
    }

    .c-intro .c-text {
        font-size: 1.5rem;
        line-height: 1.8;
        padding: 0;
    }

    .c-pageTitle01 {
        font-size: 2.4rem;
        margin-bottom: 18px;
        padding: 0;
    }

    .c-pageTitle01:after {
        width: 60px;
        margin-top: 15px;
    }

    .c-bottomContact {
        padding: 60px 20px;
    }

    .c-bottomContact h2 {
        font-size: 2.6rem;
        margin-bottom: 25px;
        line-height: 1.4;
    }

    .c-bottomContact .c-text {
        margin-bottom: 40px;
    }

    .table_contact td input.text {
        padding: 0 0 0 10px;
    }

    .table_contact td textarea {
        padding: 10px 0 0 10px;
    }
}

@media screen and (max-width: 590px) {
    .p-catch {
        height: 200px;
        margin-bottom: 30px;
    }

    .p-catch__textWrap {
        font-size: 9vw;
        left: 20px;
        width: 90%;
        line-height: 1.2;
    }

    .c-title {
        margin-bottom: 30px;
    }

    .c-title span {
        font-size: 3.5rem;
        letter-spacing: 0.02em;
    }

    .c-title h2 {
        font-size: 1.4rem;
    }

    .c-intro {
        margin-bottom: 50px;
    }

    .c-introTitle .c-title {
        margin-bottom: 30px;
    }

    .c-introTitle h1 {
        font-size: 2rem;
        margin-bottom: 20px;
        text-align: center;
    }

    .c-intro .c-text {
        font-size: 1.4rem;
        line-height: 1.7;
        text-align: center;
    }

    .c-pageTitle01 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .c-pageTitle01:after {
        width: 40px;
        margin-top: 12px;
    }

    .c-bottomContact {
        padding: 50px 15px;
    }

    .c-bottomContact h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
        text-align: left;
    }

    .c-bottomContact .c-text {
        font-size: 1.4rem;
        text-align: left;
        margin-bottom: 30px;
    }
}

/*----------------------------------------
	service
----------------------------------------*/

.page-id-15 .p-catch {
    margin: 0;
}

.p-service .c-intro {
    background-color: #ECECEC;
    padding: 59px 0 100px;
}

.p-service .c-intro .c-title {
    margin: 0 0 48px;
}

.p-service .c-intro .c-title span {
    color: #fff;
}

.p-serviceTab ul {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 78px 0 0;
}

.p-serviceTab ul li {
    width: 400px;
    height: 90px;
}

.p-serviceTab ul li a {
    width: 100%;
    height: 100%;
    font-size: 2.6rem;
    background-color: #fff;
    border: 1px solid #002456;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.p-serviceDetail {
    position: relative;
}

.p-serviceDetail:before {
    content: "";
    writing-mode: vertical-rl;
    font-size: 7.29vw;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    position: absolute;
    top: 0;
    left: 5.6%;
}

.p-serviceDetail.p-serviceBusiness:before {
    content: "For Business.";
}

.p-serviceDetail.p-servicePersonal:before {
    content: "For Personal.";
    top: 100px;
}

.p-serviceBusiness {
    margin: 0 0 170px;
}

.p-servicePersonal {
    margin: 0 0 110px;
    padding: 100px 0 170px;
    background-color: #ECECEC;
}

.p-serviceDetail__intro {
    margin: 0 0 74px;
}

.p-serviceDetail__intro .c-text {
    text-align: center;
}

.p-serviceDetail__boxBg {
    width: 100%;
    height: 280px;
    font-size: 3.2rem;
    line-height: 1.469;
    color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 50px;
}

.p-serviceDetail__box:not(:last-child) {
    margin: 0 0 100px;
}

.p-serviceBusiness .p-serviceDetail__box:nth-of-type(1) .p-serviceDetail__boxBg {
    background-image: url(images/service_business_demolition.jpg);
}

.p-serviceBusiness .p-serviceDetail__box:nth-of-type(2) .p-serviceDetail__boxBg {
    background-image: url(images/service_business_waste.jpg);
}

.p-serviceBusiness .p-serviceDetail__box:nth-of-type(3) .p-serviceDetail__boxBg {
    background-image: url(images/service_business_management.jpg);
}

.p-servicePersonal .p-serviceDetail__box:nth-of-type(1) .p-serviceDetail__boxBg {
    background-image: url(images/service_personal_support.jpg);
}

.p-servicePersonal .p-serviceDetail__box:nth-of-type(2) .p-serviceDetail__boxBg {
    background-image: url(images/service_personal_maintenance.jpg);
}

.p-servicePersonal .p-serviceDetail__box:nth-of-type(3) .p-serviceDetail__boxBg {
    background-image: url(images/service_personal_convenience.jpg);
}

.p-serviceDetail__box ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
}

.p-serviceDetail__box ul li:not(:last-child) {
    margin-bottom: 30px;
}

.p-serviceDetail__boxImg {
    width: 37.5%;
}

.p-serviceDetail__boxImg img {
    width: 100%;
}

.p-serviceDetail__boxText {
    width: 58%;
}

.p-serviceDetail__boxText h3 {
    font-size: 2.4rem;
    line-height: 1.5;
    margin: 0 0 10px;
}

.p-serviceFlow {
    margin: 0 0 175px;
}

.p-serviceFlow li:not(:last-child) {
    margin: 0 0 66px;
}

.p-serviceFlow li {
    display: flex;
    align-items: center;
    background-color: #ECECEC;
    position: relative;
}

.p-serviceFlow li:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 32px 30.5px 0 30.5px;
    border-color: rgba(0, 36, 86, 0.9) transparent transparent transparent;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -49px;
}

.p-serviceFlow li:nth-of-type(1):after {
    border-color: rgba(0, 36, 86, 0.5) transparent transparent transparent;
}

.p-serviceFlow li:nth-of-type(2):after {
    border-color: rgba(0, 36, 86, 0.7) transparent transparent transparent;
}

.p-serviceFlow li:last-child:after {
    display: none;
}

.p-serviceFlow__title {
    max-width: 400px;
    width: 33%;
    height: 120px;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 0 0 20px;
}

.p-serviceFlow__title span {
    font-size: 8.9rem;
    letter-spacing: 0.06em;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    margin: 0 30px 0 0;
}

.p-serviceFlow li:nth-of-type(1) .p-serviceFlow__title {
    background-color: rgba(0, 36, 86, 0.4);
}

.p-serviceFlow li:nth-of-type(2) .p-serviceFlow__title {
    background-color: rgba(0, 36, 86, 0.6);
}

.p-serviceFlow li:nth-of-type(3) .p-serviceFlow__title {
    background-color: rgba(0, 36, 86, 0.8);
}

.p-serviceFlow li:nth-of-type(4) .p-serviceFlow__title {
    background-color: rgba(0, 36, 86);
}

.p-serviceFlow__text {
    width: 67%;
    padding: 0 0 0 46px;
}

.p-serviceFlow__text h3 {
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 1.469;
    margin: 0 0 6px;
}

.p-serviceFlow li:nth-of-type(1) .p-serviceFlow__text,
.p-serviceFlow li:nth-of-type(2) .p-serviceFlow__text {
    padding-right: 40px;
}

.p-serviceFlow__price {
    font-size: 8.8rem;
    letter-spacing: 0.02em;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    display: flex;
    align-items: center;
}

.p-serviceFlow__price span {
    font-size: 2.1rem;
    letter-spacing: 0.02em;
    width: 128px;
    height: 36px;
    background-color: #002456;
    color: #FFF500;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 23px 0 0;
}

.p-serviceFlow__text {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-serviceFlow__tel {
    font-size: 5.3rem;
    letter-spacing: 0.02em;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    line-height: 1.208;
}

.p-serviceFlow__tel span {
    display: block;
    font-size: 1.8rem;
    line-height: 1.5;
    margin: 0 0 -5px;
}

.p-serviceFlow__title h3 {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.5;
}

.p-serviceArea {
    background-color: #ECECEC;
    margin: 0 0 164px;
    padding: 110px 0 105px;
}

.p-serviceArea__wrap {
    display: flex;
    position: relative;
}

.p-serviceArea__textWrap {
    width: 68%;
}

.p-serviceArea__textWrap h3 {
    font-size: 5.4rem;
    line-height: 1.481;
    margin: 0 0 30px;
}

.p-serviceArea__textWrap ul {
    display: flex;
    justify-content: space-between;
}

.p-serviceArea__textWrap ul li {
    width: 31.25%;
    display: flex;
    flex-direction: column;
}

.p-serviceArea__textWrap ul li h4 {
    font-size: 2.4rem;
    line-height: 1.333;
    color: #fff;
    background-color: #4A608B;
    padding: 17px 5px 15px;
    text-align: center;
}

.p-serviceArea__text {
    background-color: #fff;
    line-height: 1.5;
    padding: 20px 23px 18px;
    flex-grow: 1;
}

.p-serviceArea__img {
    width: 571px;
    height: 859px;
    position: absolute;
    background-image: url(images/service_map.png);
    right: -20.5%;
    top: 24%;
    transform: translateY(-50%);
}

@media screen and (max-width: 1500px) {
    .p-serviceArea {
        overflow: hidden;
    }

    .p-serviceArea__img {
        right: -10%;
        transform: translateY(-50%) scale(0.8);
    }

    .p-serviceDetail:before {
        font-size: 5.29vw;
        left: 1%;
    }
}

@media screen and (max-width: 820px) {
    .p-service .c-intro {
        padding: 40px 0;
    }

    .p-serviceDetail:before {
        display: none;
    }

    .p-service .c-intro .c-title {
        margin: 0 0 28px;
    }

    .p-serviceTab ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
    }

    .p-serviceTab ul li {
        width: 100%;
        max-width: 400px;
        height: 50px;
    }

    .p-serviceTab ul li a {
        font-size: 1.7rem;
    }

    .p-serviceBusiness,
    .p-servicePersonal {
        margin-bottom: 80px;
        padding: 0;
    }

    .p-servicePersonal {
        padding: 60px 0;
    }

    .p-serviceDetail__boxBg {
        height: 200px;
        font-size: 2.4rem;
    }

    .p-serviceDetail__box ul li {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .p-serviceDetail__boxImg,
    .p-serviceDetail__boxText {
        width: 100%;
    }

    .p-serviceDetail__intro {
        margin: 0 0 30px;
    }

    .p-serviceFlow {
        margin-bottom: 70px;
        padding: 0 20px;
    }

    .p-serviceFlow li {
        flex-direction: column;
        align-items: flex-start;
    }

    .p-serviceFlow__title {
        width: 100%;
        max-width: none;
        height: 80px;
    }

    .p-serviceFlow__title span {
        font-size: 5rem;
    }

    .p-serviceFlow__text {
        width: 100%;
        padding: 30px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .p-serviceFlow__tel {
        font-size: 3.5rem;
    }

    .p-serviceFlow__price {
        font-size: 5rem;
        align-self: flex-end;
    }

    .p-serviceArea {
        padding: 60px 20px;
        margin-bottom: 80px;
    }

    .p-serviceArea__wrap {
        flex-direction: column;
    }

    .p-serviceArea__textWrap {
        width: 100%;
    }

    .p-serviceArea__textWrap h3 {
        font-size: 3.2rem;
        text-align: center;
    }

    .p-serviceArea__textWrap ul {
        flex-direction: column;
        gap: 20px;
    }

    .p-serviceArea__textWrap ul li {
        width: 100%;
    }

    .p-serviceArea__img {
        position: static;
        width: 100%;
        height: 400px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        transform: none;
        margin-top: 40px;
    }

    .p-serviceArea__text {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 590px) {
    .p-serviceArea {
        margin-bottom: 50px;
    }

    .p-service .c-intro h1 {
        font-size: 2.2rem;
        line-height: 1.4;
    }

    .p-serviceDetail__boxBg {
        font-size: 1.8rem;
        padding: 0 15px;
        text-align: center;
    }

    .p-serviceDetail__boxText h3 {
        font-size: 2rem;
    }

    .p-serviceFlow__tel {
        font-size: 2.4rem;
    }

    .p-serviceFlow__tel span {
        font-size: 1.4rem;
    }

    .p-serviceFlow__price {
        font-size: 4rem;
    }

    .p-serviceFlow__price span {
        width: 100px;
        font-size: 1.6rem;
        margin-right: 10px;
    }

    .p-serviceArea {
        padding: 55px 0;
    }

    .p-serviceArea__textWrap h3 {
        font-size: 2rem;
    }

    .p-serviceArea__textWrap ul li h4 {
        font-size: 1.8rem;
    }

    .p-serviceFlow {
        padding: 0;
    }

    .p-serviceFlow__title {
        height: 50px;
    }

    .p-serviceFlow__title span {
        font-size: 2.8rem;
        margin: 0 12px 0 0;
    }

    .p-serviceFlow__title h3 {
        font-size: 1.8rem;
    }

    .p-serviceFlow li:nth-of-type(1) .p-serviceFlow__text,
    .p-serviceFlow li:nth-of-type(2) .p-serviceFlow__text {
        padding-right: 15px;
    }

    .p-serviceFlow__text {
        padding: 15px;
    }

    .p-serviceFlow__tel {
        text-align: center;
        margin: 0 auto;
    }

    .p-serviceFlow__price {
        align-self: center;
    }

    .p-serviceFlow__price span {
        width: 80px;
        height: 30px;
    }

    .p-serviceFlow li:after {
        border-width: 15px 15.5px 0 15.5px;
        bottom: -30px;
    }

    .p-serviceFlow li:not(:last-child) {
        margin: 0 0 40px;
    }
}

/*----------------------------------------
	about
----------------------------------------*/

.p-aboutStrength {
    background-color: #ECECEC;
    margin: 0 0 100px;
    padding: 100px 0 160px;
}

.p-aboutStrength ul {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.p-aboutStrength ul li {
    width: 31.6%;
    display: flex;
    flex-direction: column;
}

.p-aboutStrength__text {
    background-color: #fff;
    padding: 30px 45px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.p-aboutStrength__text h2 {
    font-size: 3.2rem;
    line-height: 1.438;
    text-align: center;
    margin: 0 0 30px;
    padding: 0 0 20px;
    border-bottom: 1px solid #002456;
}

.p-aboutStrength__text .c-text {
    width: 96.8%;
    margin: 0 auto;
}

.p-aboutSocial {
    margin: 0 0 144px;
}

.p-aboutSocial__intro .c-title h2 {
    margin-top: 6px;
}

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

.p-aboutSocial__img {
    width: 38.3%;
}

.p-aboutSocial__text {
    width: 54%;
}

.p-aboutSocial__text ul li:not(:last-child) {
    margin: 0 0 35px;
}

.p-aboutSocial__intro {
    margin: 0 0 90px;
}

.p-aboutSocial__text h3 {
    display: inline-block;
    font-size: 2.4rem;
    line-height: 1.5;
    margin: 0 0 10px;
    padding: 7px 18px;
    border: 1px solid #002456;
}

.p-aboutOutline {
    background-color: #ECECEC;
    padding: 100px 0 167px;
}

.p-aboutOutline__wrap {
    background-color: #fff;
    padding: 100px 0 128px;
}

.table01 {
    display: block;
    width: 800px;
    margin: auto;
    font-size: 1.8rem;
    margin: 0 auto;
}

.table01 tbody {
    display: block;
    width: 100%;
}

.table01 tr {
    display: flex;
    justify-content: space-between;
}

.table01 tr:last-child {
    border-bottom: none;
}

.table01 tr:not(:last-child) {
    margin: 0 0 14px;
}

.table01 th {
    width: 22.5%;
    padding: 10px 8pxv;
    border-bottom: 2px solid #002456;
    font-weight: normal;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.table01 td {
    padding: 8px 46px;
    width: 77.5%;
    vertical-align: middle;
    border-bottom: 1px solid #6E80A3;
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: 0.06em;
}

.p-aboutOutline .c-title h2 {
    margin-top: 6px;
}

.p-aboutAccesss__map {
    position: relative;
    width: 100%;
    height: 450px;
}

.p-aboutAccesss__map iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

@media screen and (max-width: 1500px) {
    .p-aboutStrength {
        padding: 80px 0 100px;
    }

    .p-aboutStrength__text {
        padding: 25px 30px;
    }

    .p-aboutStrength__text h2 {
        font-size: 2.4rem;
    }

    .p-aboutSocial {
        margin-bottom: 100px;
    }

    .p-aboutSocial__intro {
        margin-bottom: 60px;
    }

    .p-aboutOutline {
        padding: 80px 0 100px;
    }

    .p-aboutOutline__wrap {
        padding: 60px 0;
    }
}

@media screen and (max-width: 820px) {
    .p-aboutStrength {
        padding: 60px 20px;
        margin-bottom: 60px;
    }

    .p-aboutStrength ul {
        flex-direction: column;
        gap: 40px;
    }

    .p-aboutStrength ul li {
        width: 100%;
    }

    .p-aboutStrength__text h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .p-aboutSocial {
        padding: 0 20px;
        margin-bottom: 80px;
    }

    .p-aboutSocial__wrap {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .p-aboutSocial__img,
    .p-aboutSocial__text {
        width: 100%;
    }

    .p-aboutSocial__text h3 {
        font-size: 2rem;
    }

    .p-aboutOutline {
        padding: 60px 0;
    }

    .p-aboutOutline__wrap {
        padding: 40px 20px;
    }

    .table01 {
        width: 100%;
    }

    .table01 th {
        width: 30%;
        font-size: 1.6rem;
    }

    .table01 td {
        width: 70%;
        padding: 8px 15px;
        font-size: 1.6rem;
    }

    .p-aboutAccesss__map {
        height: 350px;
    }
}

@media screen and (max-width: 590px) {
    .p-aboutStrength {
        padding: 50px 15px;
    }

    .p-aboutStrength__text {
        padding: 20px;
    }

    .p-aboutStrength__text h2 {
        font-size: 1.8rem;
    }

    .p-aboutStrength__text .c-text {
        width: 100%;
        text-align: left;
    }

    .p-aboutSocial__text h3 {
        font-size: 1.7rem;
        padding: 5px 10px;
        display: block;
        text-align: center;
    }

    .p-aboutSocial__text .c-text {
        font-size: 1.4rem;
        text-align: left;
    }

    .p-aboutOutline__wrap {
        padding: 30px 15px;
    }

    .table01 tr {
        flex-direction: column;
        margin-bottom: 20px !important;
    }

    .table01 th,
    .table01 td {
        width: 100%;
        border-bottom: 1px solid #6E80A3;
    }

    .table01 th {
        border-bottom: 2px solid #002456;
        padding: 5px 0;
    }

    .table01 td {
        padding: 10px 0;
    }

    .p-aboutAccesss__map {
        height: 300px;
    }
}

/*----------------------------------------
	works
----------------------------------------*/

.p-catchWorks {
    background-image: url(images/works_catch.jpg);
}

/*----- worksArchive -----*/

.p-worksArchive {
    margin: 0 0 410px;
}

.p-worksArchive__wrap {
    display: flex;
    flex-wrap: wrap;
    column-gap: 2.5%;
    row-gap: 69px;
    margin: 0;
}

.p-worksArchive__wrap article {
    width: 31.6%;
}

.p-worksArchive__img {
    margin: 0 0 10px;
}

.p-worksArchive__img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.p-worksArchive__info {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    margin: 0 0 7px;
}

.p-worksArchive__categoryWrap {
    display: flex;
    align-items: center;
    gap: 4px;
}

.p-worksArchive__category {
    width: 110px;
    height: 30px;
}

.p-worksArchive__category a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.6rem;
    line-height: 1;
    background-color: #6E80A3;
    color: #fff;
}

.p-worksArchive__info time {
    font-size: 1.6rem;
    letter-spacing: 0.02em;
}

.p-worksArchive__title {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.06em;
    line-height: 1.5;
}

.p-worksArchive .p-priceDetail__tab {
    margin: 0 0 95px;
    padding: 0 0 95px;
    border-bottom: 1px solid #002456;
}

.p-worksArchive .p-priceDetail__tabBox a {
    pointer-events: none;
}

.p-worksArchive__categoryTitle {
    font-size: 3.5rem;
    letter-spacing: 0.06em;
    font-weight: 700;
    margin: 0 0 60px;
    text-align: center;
}

@media screen and (max-width: 1500px) {
    .p-worksArchive {
        margin-bottom: 200px;
    }

    .p-worksArchive__img img {
        height: 300px;
    }

    .p-worksArchive__title {
        font-size: 1.6rem;
    }

    .p-worksArchive .p-priceDetail__tab {
        margin-bottom: 70px;
        padding-bottom: 70px;
    }

    .p-worksArchive__categoryTitle {
        font-size: 3rem;
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 820px) {
    .p-worksArchive {
        margin-bottom: 80px;
    }

    .p-worksArchive__wrap {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 40px 20px;
        margin-bottom: 40px;
    }

    .p-worksArchive__wrap article {
        width: calc(50% - 10px);
    }

    .p-worksArchive__img img {
        height: 240px;
    }

    .p-worksArchive__title {
        font-size: 1.5rem;
    }

    .p-worksArchive__category {
        width: 100px;
        height: 28px;
    }

    .p-worksArchive__category a,
    .p-worksArchive__info time {
        font-size: 1.4rem;
    }

    .p-worksArchive .p-priceDetail__tab {
        margin-bottom: 50px;
        padding-bottom: 50px;
    }

    .p-worksArchive__categoryTitle {
        font-size: 2.6rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }
}

@media screen and (max-width: 590px) {

    .p-worksArchive {
        margin-bottom: 60px;
    }

    .p-worksArchive__wrap {
        gap: 25px 10px;
        margin-bottom: 30px;
    }

    .p-worksArchive__wrap article {
        width: calc(50% - 5px);
    }

    .p-worksArchive__img img {
        height: 140px;
    }

    .p-worksArchive__title {
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .p-worksArchive__info {
        margin-bottom: 5px;
        flex-direction: column;
        align-items: flex-start;
    }

    .p-worksArchive__info time {
        margin: 0 0 5px;
    }

    .p-worksArchive__category {
        width: auto;
        height: 18px;
    }

    .p-worksArchive__category a {
        padding: 0 8px;
    }

    .p-worksArchive__category a,
    .p-worksArchive__info time {
        font-size: 1.1rem;
    }

    .p-worksArchive .p-priceDetail__tab {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .p-worksArchive__categoryTitle {
        font-size: 2.2rem;
        margin-bottom: 30px;
        line-height: 1.4;
    }
}

/*----- worksSingle -----*/

.single-works .p-catch {
    margin: 0 0 105px;
}

.p-worksSingle {
    margin: 0 0 110px;
}

.p-worksSingle__title {
    font-size: 3.6rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid #002456;
}

.p-worksSingle__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto 93px;
}

.p-worksSingle__info dl {
    display: flex;
    align-items: center;
}

.p-worksSingle__info dl:not(:last-child) {
    margin: 0 0 20px;
}

.p-worksSingle__info dt {
    width: 175px;
    background: #002456;
    color: #fff;
    margin: 0 20px 0 0;
    padding: 4px 0;
    font-size: 1.8rem;
    letter-spacing: 0.06em;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
}

.p-worksSingle__info dd {
    font-size: 1.8rem;
    letter-spacing: 0.06em;
    line-height: 1.3;
    width: 65%;
    margin: 0;
}

.p-worksSingle__images {
    margin-bottom: 100px;
}

.p-worksSingle__imageSet {
    display: flex;
    flex-direction: column;
    row-gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.p-worksSingle__imageBox {
    flex: 1;
    position: relative;
    background: #eee;
    min-height: 200px;
}

.p-worksSingle__imageBox img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
    object-fit: cover;
}

.p-worksSingle__label {
    position: absolute;
    top: 0;
    left: 0;
    background: #002251;
    color: #fff;
    padding: 14px 33px;
    font-weight: bold;
    z-index: 1;
    font-size: 3.2rem;
    letter-spacing: 0.04em;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.p-worksSingle__content {
    margin-bottom: 105px;
}

.p-worksSingle__block {
    background-color: #F5F8FA;
    padding: 0 0 50px;
}

.p-worksSingle__blockHead {
    background: #8897ad;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 2.8rem;
    letter-spacing: 0.06em;
    margin-bottom: 44px;
    font-weight: bold;
}

h4.p-worksSingle__blockHead {
    background: transparent;
    font-size: 2.4rem;
    line-height: 1.5;
    color: #002456;
    margin: 0 auto 30px;
    padding: 0;
    text-align: center;
    font-weight: bold;
}

.p-worksSingle__blockText {
    line-height: 2;
    font-size: 15px;
    padding: 0 10%;
    text-align: left;
}

.p-worksSingle__pointsMainTitle {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 42px;
    padding-bottom: 25px;
    font-weight: bold;
    position: relative;
    border-bottom: 1px solid #002456;
}

.p-worksSingle__pointsList {
    max-width: 1000px;
    margin: 0 auto;
}

.p-worksSingle__pointItem {
    display: flex;
    align-items: center;
}

.p-worksSingle__pointItem:not(:last-child) {
    margin-bottom: 30px;
}

.p-worksSingle__pointNum {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    background: #4a5f7e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.04em;
}

.p-worksSingle__pointItem:nth-of-type(1) .p-worksSingle__pointNum {
    background-color: rgba(0, 36, 86, 0.6);
}

.p-worksSingle__pointItem:nth-of-type(2) .p-worksSingle__pointNum {
    background-color: rgba(0, 36, 86, 0.7);
}

.p-worksSingle__pointItem:nth-of-type(3) .p-worksSingle__pointNum {
    background-color: rgba(0, 36, 86, 0.8);
}

.p-worksSingle__pointItem:nth-of-type(4) .p-worksSingle__pointNum {
    background-color: rgba(0, 36, 86, 0.9);
}

.p-worksSingle__pointItem:nth-of-type(5) .p-worksSingle__pointNum {
    background-color: rgba(0, 36, 86);
}

.p-worksSingle__pointNum span {
    font-size: 3.2rem;
    font-weight: bold;
}

.p-worksSingle__pointNum strong {
    font-size: 6.5rem;
}

.p-worksSingle__pointBody {
    padding: 0 0 0 32px;
}

.p-worksSingle__pointBody h4 {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 12px;
    line-height: 1.5;
    border-bottom: 1px solid #6E80A3;
}

.p-worksSingle__pointBody p {
    font-size: 1.8rem;
    line-height: 2;
    margin: 0;
}

.p-worksSingle .c-button {
    text-align: center;
    margin-top: 115px;
}

@media screen and (max-width: 1500px) {

    .p-worksSingle__imageSet,
    .p-worksSingle__pointsList {
        max-width: 90%;
    }
}

@media screen and (max-width: 820px) {
    .single-works .p-catch {
        margin-bottom: 40px;
    }

    .p-worksSingle {
        margin-bottom: 40px;
    }

    .p-worksSingle__title {
        font-size: 2.8rem;
        margin-bottom: 30px;
    }

    .p-worksSingle__info {
        margin-bottom: 60px;
        padding: 0;
    }

    .p-worksSingle__info dt {
        width: 140px;
        font-size: 1.6rem;
    }

    .p-worksSingle__info dd {
        font-size: 1.6rem;
    }

    .p-worksSingle__images {
        margin-bottom: 60px;
    }

    .p-worksSingle__imageSet,
    .p-worksSingle__pointsList {
        max-width: 100%;
    }

    .p-worksSingle__label {
        font-size: 1.6rem;
        padding: 6px 15px;
    }

    .p-worksSingle__blockHead {
        font-size: 2.2rem;
    }

    h4.p-worksSingle__blockHead {
        padding: 0 20px;
    }

    .p-worksSingle__pointItem {
        flex-direction: column;
        text-align: center;
    }

    .p-worksSingle__pointNum {
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
    }

    .p-worksSingle__pointNum strong {
        font-size: 4.5rem;
    }

    .p-worksSingle__pointBody {
        padding: 0;
    }

    .p-worksSingle__content {
        margin-bottom: 70px;
    }
}

@media screen and (max-width: 590px) {
    .p-worksSingle__title {
        font-size: 2.2rem;
        line-height: 1.4;
    }

    .p-worksSingle__info dl {
        flex-direction: column;
        align-items: flex-start;
    }

    .p-worksSingle__info dt {
        width: 100%;
        margin-bottom: 5px;
        text-align: left;
        padding-left: 15px;
    }

    .p-worksSingle__info dd {
        width: 100%;
        padding-left: 5px;
    }

    .p-worksSingle__imageSet {
        row-gap: 30px;
    }

    .p-worksSingle__blockText {
        padding: 0 20px;
        font-size: 1.4rem;
    }

    .p-worksSingle__blockHead {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    h4.p-worksSingle__blockHead {
        font-size: 2rem;
        margin: 0 auto 15px;
    }

    .p-worksSingle__block {
        padding: 0 0 25px;
    }

    .p-worksSingle__pointsMainTitle {
        font-size: 2.2rem;
    }

    .p-worksSingle__pointBody h4 {
        font-size: 1.8rem;
    }

    .p-worksSingle__pointBody p {
        font-size: 1.5rem;
        text-align: left;
    }

    .p-worksSingle .c-button {
        margin-top: 30px;
    }

    .p-worksSingle__pointNum {
        width: 110px;
        height: 110px;
    }

    .p-worksSingle__pointNum strong {
        font-size: 3.5rem;
    }

    .p-worksSingle__pointNum span {
        font-size: 2rem;
    }
}

/*----------------------------------------
	blog
----------------------------------------*/

.p-catchBlog {
    background-image: url(images/blog_catch.jpg);
}

/*----- blogArchive -----*/

.p-blogArchive {
    margin: 0 0 410px;
}

.post-type-archive-blog .p-catch {
    margin: 0;
}

.tax-blog_category .p-catch {
    margin: 0;
}

.p-blogArchive .c-intro {
    background-color: #ECECEC;
    margin: 0;
    padding: 59px 0 140px;
}

.p-blogArchive .c-intro .c-title {
    margin: 0 0 48px;
}

.p-blogArchive .c-intro .c-title span {
    color: #fff;
}

.p-blogArchive__tab {
    display: flex;
    column-gap: 2.6%;
    row-gap: 20px;
    margin: -45px 0 150px;
}

.p-blogArchive__tab a {
    font-size: 2.6rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 31.6%;
    height: 90px;
    background-color: #fff;
    border: 1px solid #002456;
    background-color: #fff;
}

.p-blogArchive__wrap {
    display: flex;
    flex-wrap: wrap;
    column-gap: 2.5%;
    row-gap: 69px;
    margin: 0 0 50px;
}

.p-blogArchive__wrap article {
    width: 31.6%;
}

.p-blogArchive__img {
    margin: 0 0 10px;
}

.p-blogArchive__img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.p-blogArchive__title {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.02em;
    line-height: 1.556;
}

.p-blogArchive__article a {
    position: relative;
}

.p-blogArchive__category {
    width: 130px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #002456;
    color: #fff;
}

.p-blogArchive__article time {
    display: block;
    font-size: 1.6rem;
    margin: 0 0 10px;
}

.p-blogArchive__categoryTitle {
    font-size: 3.5rem;
    letter-spacing: 0.06em;
    font-weight: 700;
    margin: 0 0 60px;
    text-align: center;
}

@media screen and (max-width: 1500px) {
    .p-blogArchive {
        margin-bottom: 200px;
    }

    .p-blogArchive .c-intro {
        padding-bottom: 80px;
    }

    .p-blogArchive__tab {
        margin-top: -45px;
        margin-bottom: 80px;
    }

    .p-blogArchive__tab a {
        font-size: 2rem;
        height: 70px;
    }

    .p-blogArchive__img img {
        height: 300px;
    }

    .p-blogArchive__title {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 820px) {
    .p-blogArchive {
        margin-bottom: 80px;
    }

    .p-blogArchive .c-intro .c-title {
        margin: 0 0 30px;
    }

    .p-blogArchive .c-intro {
        padding: 40px 0 60px;
    }

    .p-blogArchive__tab {
        flex-wrap: wrap;
        justify-content: center;
        column-gap: 2%;
        margin-top: -30px;
        margin-bottom: 60px;
    }

    .p-blogArchive__tab a {
        width: 48%;
        font-size: 1.8rem;
        height: 60px;
    }

    .p-blogArchive__wrap {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 40px 20px;
    }

    .p-blogArchive__wrap article {
        width: calc(50% - 10px);
        max-width: none;
    }

    .p-blogArchive__img img {
        height: 240px;
    }

    .p-blogArchive__title {
        font-size: 1.5rem;
    }

    .p-blogArchive__category {
        width: 100px;
        height: 32px;
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 590px) {
    .p-blogArchive {
        margin-bottom: 60px;
    }

    .p-blogArchive .c-intro {
        padding: 30px 0 50px;
    }

    .p-blogArchive__tab {
        margin-top: -25px;
        margin-bottom: 40px;
        gap: 10px;
    }

    .p-blogArchive__tab a {
        width: 100%;
        font-size: 1.6rem;
        height: 50px;
    }

    .p-blogArchive__wrap {
        gap: 25px 10px;
    }

    .p-blogArchive__wrap article {
        width: calc(50% - 5px);
    }

    .p-blogArchive__img img {
        height: 140px;
    }

    .p-blogArchive__title {
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .p-blogArchive__article time {
        font-size: 1.2rem;
        margin-bottom: 3px;
    }

    .p-blogArchive__category {
        width: 80px;
        height: 26px;
        font-size: 1.1rem;
    }
}

/*----- blogSingle -----*/

.p-singleBlog {
    padding: 150px 0 100px;
    background-color: #EFEFEF;
}

.p-singleBlog__info {
    display: flex;
    align-items: center;
    margin: 0 0 28px;
}

.p-singleBlog__time {
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    color: rgba(0, 0, 0, 0.53);
    margin: 0 20px 0 0;
}

.p-singleBlog__category a {
    font-size: 1.5rem;
    display: inline-block;
    padding: 4px 14px;
    background-color: #002456;
    letter-spacing: 0.08em;
    color: #fff;
    font-weight: 700;
}

.p-singleBlog h1 {
    font-size: 3.4rem;
    line-height: 1.486;
    letter-spacing: 0.08em;
    font-weight: bold;
    margin: 6px 0 50px;
    padding-bottom: 25px;
    border-bottom: 1px solid #7070704D;
}

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

.p-singleBlog article {
    width: 68%;
    background-color: #fff;
    padding: 40px 60px;
}

.p-singleBlog .aside {
    width: 23.4%;
}

.p-singleBlog .p-sidebar__archive {
    width: 100%;
}

.p-singleBlog__thumbnail img {
    width: 100%;
}

.p-singleBlog__text {
    margin: 70px 0;
}

.post_link_wrap {
    padding: 34px 0;
    border-top: 1px solid rgba(112, 112, 112, 0.5);
    border-bottom: 1px solid rgba(112, 112, 112, 0.5);
    display: flex;
    justify-content: space-between;
    margin: 0;
}

.post_link_wrap a {
    display: flex;
    align-items: center;
}

.post-info {
    width: 75%;
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.45;
}

a.prev_post:before {
    content: "";
    display: inline-block;
    width: 31px;
    height: 31px;
    background-image: url(images/post_arrow_left.svg);
    background-repeat: no-repeat;
    margin: 0 15px 0 0;
}

a.next_post:after {
    content: "";
    display: inline-block;
    width: 31px;
    height: 31px;
    background-image: url(images/post_arrow_right.svg);
    background-repeat: no-repeat;
    margin: 0 0 0 15px;
}

.next_post,
.prev_post {
    width: 30%;
    display: flex;
    align-items: center;
}

.next_post {
    justify-content: flex-end;
}

.post_link_all {
    letter-spacing: 0.08em;
    font-size: 2rem;
    font-weight: 700;
}

.p-singleBlog__related > h3 {
    font-size: 3.5rem;
    text-align: center;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin: 0 auto 70px;
    text-align: center;
}

.p-singleBlog__related > h3 span {
    display: inline-block;
    padding: 0 0 24px;
    border-bottom: 3px solid #333333;
}

.p-singleBlog__related .c-text {
    width: 100%;
}

.p-singleBlog aside {
    width: 28%;
}

.p-sidebarNews__list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p-sidebarNews__listText {
    width: 56%;
}

.p-sidebarNews__listText h2 {
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.p-sidebarNews__listInfo {
    margin: 0 0 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.p-sidebarNews__listInfo .p-blogCategory {
    display: inline-block;
    font-size: 1rem;
    padding: 4px 8px;
    background-color: #002456;
    color: #fff;
    margin: 0 0 0 5px;
}

.p-sidebarNews__listInfo .p-sidebarNews__listTime {
    font-size: 1rem;
    font-weight: 700;
}

.p-sidebarNews__lists {
    margin: 73px 0 0;
}

.p-sidebarNews__listImg {
    width: 38.8%;
}

.p-sidebarNews__listImg img {
    width: 100%;
}

.p-sidebarNews__list:not(:last-child) {
    margin: 0 0 35px;
}

.p-singleBlog__text > h2 {
    font-size: 2.8rem;
    border-bottom: 4px solid #002456;
    margin-top: 80px;
    font-weight: bold;
    padding-bottom: 10px;
    position: relative;
    line-height: 1.4;
}

.p-singleBlog__text > h3 {
    font-size: 2.4rem;
    border-left: 4px solid #002456;
    margin-top: 70px;
    padding: 8px 16px;
    background: #F3F0EB;
    line-height: 1.4;
}

.p-singleBlog__text > h4 {
    font-size: 2rem;
    margin-top: 70px;
    color: #002456;
}

.p-singleBlog__text > p {
    font-size: 1.8rem;
    margin-top: 30px;
    line-height: 2;
    padding: 0 8px;
}

@media screen and (max-width: 1300px) {
    .p-singleBlog {
        padding: 100px 0 80px;
    }

    .p-singleBlog article {
        padding: 30px 40px;
    }

    .p-sidebarNews__listText {
        width: 50%;
    }

    .p-sidebarNews__listImg {
        width: 45%;
    }
}

@media screen and (max-width: 820px) {
    .p-singleBlog {
        padding: 60px 0;
    }

    .p-singleBlog__wrap {
        display: block;
    }

    .p-singleBlog article {
        width: 100%;
        padding: 30px 20px;
        margin-bottom: 60px;
    }

    .p-singleBlog aside {
        width: 100%;
    }

    .p-singleBlog h1 {
        font-size: 2.6rem;
        margin-bottom: 30px;
    }

    .p-singleBlog__text > h2 {
        font-size: 2.2rem;
        margin-top: 50px;
    }

    .p-singleBlog__text > h3 {
        font-size: 1.8rem;
        margin-top: 40px;
    }

    .post_link_wrap {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .next_post,
    .prev_post {
        width: 100%;
        justify-content: center;
    }

    .post_link_all {
        order: -1;
        margin-bottom: 10px;
    }

    .p-sidebarNews__listImg img {
        object-fit: cover;
        height: 125px;
    }

}

@media screen and (max-width: 590px) {
    .p-singleBlog {
        padding: 40px 0;
    }

    .p-singleBlog h1 {
        font-size: 2.2rem;
    }

    .p-singleBlog__text {
        margin: 40px 0;
    }

    .p-singleBlog__text > p {
        font-size: 1.4rem;
        line-height: 1.8;
        padding: 0;
    }

    .p-singleBlog__related > h3 {
        font-size: 2.4rem;
        margin-bottom: 40px;
    }

    .p-sidebarNews__list a {
        align-items: flex-start;
    }

    .p-sidebarNews__listText h2 {
        font-size: 1.4rem;
    }

    a.prev_post:before,
    a.next_post:after {
        width: 20px;
        height: 20px;
        background-size: contain;
    }
}

/*----------------------------------------
	sidebar
----------------------------------------*/

.p-sidebar__archive {
    background-color: #fff;
    padding: 40px 26px;
}

.p-sidebar__archiveTitle {
    position: relative;
    color: #002456;
    text-align: center;
    font-weight: 500;
    line-height: 1.5;
    margin: 0 0 35px;
    padding: 0 0 8px;
    font-size: 2.6rem;
    letter-spacing: 0.08em;
    border-bottom: 2px solid #002456;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.p-sidebar__archiveLists li {
    padding: 20px 0;
    border-bottom: 1px solid rgba(112, 112, 112, 0.3);
    font-size: 2.2rem;
    letter-spacing: 0.08em;
    font-weight: bold;
    text-align: center;
}

.p-sidebar__archiveLists li:first-child {
    border-top: 1px solid rgba(112, 112, 112, 0.3);
}

@media screen and (max-width:768px) {
    .p-sidebar__archiveTitle {
        font-size: 1.8rem;
        margin: 0 0 20px;
    }

    .p-sidebar__archiveLists li {
        font-size: 1.8rem;
        padding: 15px 0;
    }

    .p-sidebar__archive {
        padding: 30px 12px;
    }

    .p-sidebar__archive {
        width: 100%;
    }
}

/*----------------------------------------
	prices
----------------------------------------*/

.p-priceDetail {
    margin: 0 0 200px;
}

.p-priceDetail__tab {
    display: flex;
    justify-content: space-between;
    margin: 0 0 143px;
}

.p-priceDetail__tabBox {
    width: 23.3%;
    background-color: #ECECEC;
    padding: 20px 0 23px;
}

.p-priceDetail__tabBox a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.p-priceDetail__tabBox h3 {
    width: 100%;
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.5;
    margin: 0 0 10px;
}

.p-priceDetail__tabBox h3:after {
    content: "";
    display: block;
    width: 71.4%;
    height: 1px;
    background-color: #002456;
    margin: 10px auto 0;
}

.p-priceDetail__tabBox .c-text {
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    line-height: 1.5;
    text-align: center;
}

.p-priceDetail__text h3 {
    font-size: 2.4rem;
    max-width: 360px;
    height: 50px;
    background-color: #002456;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    letter-spacing: 0.06em;
    margin: 0 0 30px;
}

.p-priceDetail__text .c-text {
    margin: 0 0 30px;
}

.p-priceDetail__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-priceDetail__list:not(:last-child) {
    margin: 0 0 100px;
}

.p-priceDetail__text {
    width: 47%;
}

.p-priceDetail__img {
    width: 44%;
}

.p-priceDetail__img img {
    width: 100%;
}

.p-priceDetail__text ul li {
    font-size: 2.4rem;
    line-height: 1.5;
    margin: 0 0 20px;
    padding: 0 0 4px;
    border-bottom: 1px solid #6E80A3;
}

.p-priceDetail__text ul li span {
    font-weight: bold;
}

.p-priceCostcut {
    background-color: #ECECEC;
    margin: 0 0 110px;
    padding: 88px 0 106px;
}

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

.p-priceCostcut__img {
    width: 33.3%;
}

.p-priceCostcut__img img {
    width: 100%;
}

.p-priceCostcut__text {
    width: 62.5%;
}

.p-priceCostcut__intro {
    margin: 0 0 40px;
}

.p-priceCostcut__intro > h3 {
    font-size: 3.6rem;
    line-height: 1.5;
    font-weight: bold;
    margin: 0 0 25px;
    color: #002456;
}

.p-priceCostcut__intro ul li:not(:last-child) {
    margin: 0 0 26px;
}

.p-priceCostcut__text ul li:not(:last-child) {
    margin: 0 0 26px;
}

.p-priceCostcut__text ul li h3 {
    font-size: 2.4rem;
    font-weight: bold;
    width: 200px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 13px;
    background-color: #fff;
}

.p-priceFlow {
    margin: 0 0 206px;
}

.p-priceFlow__list:not(:last-child) {
    margin: 0 0 40px;
}

.p-priceFlow__list {
    display: flex;
    align-items: center;
    background-color: #F5F8FA;
}

.p-priceFlow__number {
    width: 23%;
    height: 120px;
    color: #fff;
    font-size: 6.5rem;
    letter-spacing: 0.04em;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-priceFlow__number span {
    display: inline-block;
    font-size: 3.7rem;
    letter-spacing: 0.02em;
    margin: 0 8px 0 0;
}

.p-priceFlow__list:nth-of-type(1) .p-priceFlow__number {
    background-color: rgba(0, 36, 86, 0.6);
}

.p-priceFlow__list:nth-of-type(2) .p-priceFlow__number {
    background-color: rgba(0, 36, 86, 0.7);
}

.p-priceFlow__list:nth-of-type(3) .p-priceFlow__number {
    background-color: rgba(0, 36, 86, 0.8);
}

.p-priceFlow__list:nth-of-type(4) .p-priceFlow__number {
    background-color: rgba(0, 36, 86, 0.9);
}

.p-priceFlow__list:nth-of-type(5) .p-priceFlow__number {
    background-color: rgba(0, 36, 86);
}

.p-priceFlow__text {
    width: 77%;
    padding: 0 0 0 60px;
}

.p-priceFlow__text h3 {
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 1.469;
    margin: 0 0 6px;
}

.p-priceFlow__lists .p-bottomContact {
    margin: 0 0 40px;
}

@media screen and (max-width: 1500px) {
    .p-priceDetail {
        margin-bottom: 120px;
    }

    .p-priceDetail__tab {
        margin-bottom: 80px;
    }

    .p-priceDetail__tabBox h3 {
        font-size: 1.6rem;
    }

    .p-priceDetail__text h3 {
        font-size: 2rem;
        width: 300px;
    }

    .p-priceDetail__text ul li {
        font-size: 2rem;
    }

    .p-priceCostcut__intro > h3 {
        font-size: 2.8rem;
    }

    .p-priceFlow {
        margin-bottom: 120px;
    }

    .p-priceFlow__number {
        font-size: 5rem;
    }

    .p-priceFlow__text h3 {
        font-size: 2.6rem;
    }
}

@media screen and (max-width: 820px) {
    .p-priceFlow {
        margin-bottom: 70px;
    }

    .p-priceDetail {
        margin-bottom: 80px;
    }

    .p-priceDetail__tab {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 50px;
    }

    .p-priceDetail__tabBox {
        width: calc(50% - 5px);
        padding: 15px 10px;
    }

    .p-priceDetail__list {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .p-priceDetail__list:not(:last-child) {
        margin-bottom: 60px;
    }

    .p-priceDetail__text {
        width: 100%;
    }

    .p-priceDetail__img {
        width: 100%;
    }

    .p-priceDetail__text h3 {
        width: 100%;
        max-width: none;
        height: 45px;
        font-size: 1.8rem;
    }

    .p-priceDetail__text ul li {
        font-size: 1.8rem;
    }

    .p-priceCostcut {
        margin: 0 0 80px;
        padding: 60px 0;
    }

    .p-priceCostcut__wrap {
        flex-direction: column;
        gap: 30px;
    }

    .p-priceCostcut__img,
    .p-priceCostcut__text {
        width: 100%;
    }

    .p-priceCostcut__intro > h3 {
        font-size: 2.4rem;
    }

    .p-priceFlow__list {
        flex-direction: column;
        text-align: center;
        padding-bottom: 20px;
    }

    .p-priceFlow__number {
        width: 100%;
        height: 80px;
        font-size: 4rem;
    }

    .p-priceFlow__number span {
        font-size: 2.4rem;
    }

    .p-priceFlow__text {
        width: 100%;
        padding: 20px;
    }

    .p-priceFlow__text h3 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 590px) {
    .p-priceFlow {
        margin-bottom: 60px;
    }

    .p-priceDetail {
        margin-bottom: 60px;
    }

    .p-priceDetail__tabBox {
        width: 100%;
    }

    .p-priceDetail__tabBox .c-text {
        font-size: 1.3rem;
    }

    .p-priceDetail__text ul li {
        font-size: 1.5rem;
    }

    .p-priceDetail__text .c-text {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .p-priceCostcut {
        margin: 0 0 60px;
    }

    .p-priceCostcut__intro > h3 {
        font-size: 2rem;
    }

    .p-priceCostcut__text ul li h3 {
        width: 160px;
        height: 40px;
        font-size: 1.8rem;
    }

    .p-priceFlow__number {
        font-size: 3.2rem;
        height: 50px;
    }

    .p-priceFlow__number span {
        font-size: 1.8rem;
    }

    .p-priceFlow__text h3 {
        font-size: 1.8rem;
    }

    .p-priceFlow__text .c-text {
        font-size: 1.4rem;
        text-align: left;
    }
}

/*----------------------------------------
	faq
----------------------------------------*/

.p-faqTab {
    margin: 130px 0;
}

.p-faqTab ul {
    display: flex;
    justify-content: center;
    gap: 27px;
}

.p-faqTab ul li {
    width: 280px;
    height: 70px;
}

.p-faqTab ul li a {
    width: 100%;
    height: 100%;
    font-size: 2rem;
    background-color: #fff;
    border: 1px solid #002456;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.p-faqDetail {
    background-color: #ECECEC;
    margin: 0 0 100px;
    padding: 110px 0 150px;
}

.p-faqDetail .p-qaList {
    background-color: #fff;
}

.p-faqDetail .p-qaLists__title {
    font-size: 2.4rem;
    color: #002456;
    padding: 23px 32px 20px 72px;
}

.p-faqDetail .p-qaLists__box p {
    color: #002456;
}

.p-faqDetail .p-qaLists__title:after {
    font-size: 2.6rem;
    color: #002456;
}

.p-faqDetail .p-qaLists__box {
    width: 88%;
    border-top: 1px solid #002456;
}

.p-faqDetail__box > h3 {
    font-size: 2.4rem;
    text-align: center;
    margin: 0 0 24px;
}

.p-faqDetail .p-qaLists__title::before {
    border-width: 18px 10.5px 0 10.5px;
    border-color: #002456 transparent transparent transparent;
}

.p-faqDetail .p-qaLists__title.close::before {
    border-width: 0 10.5px 18px 10.5px;
    border-color: transparent transparent #002456 transparent;
}

.p-faqDetail .p-qaLists {
    margin: 0;
}

.p-faqDetail__box:not(:last-child) {
    margin: 0 0 70px;
}

.p-faqContact {
    margin: 0 0 112px;
}

.p-faqContact h2 {
    font-size: 3.6rem;
    font-weight: bold;
    text-align: center;
    margin: 0 0 38px;
}

.p-faqContact .c-text {
    text-align: center;
    margin: 0 0 50px;
}

@media screen and (max-width: 1500px) {
    .p-faqTab ul {
        gap: 15px;
    }

    .p-faqTab ul li {
        width: 22%;
        min-width: 200px;
    }

    .p-faqTab ul li a {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 820px) {
    .p-faqTab {
        margin: 60px 0;
    }

    .p-faqTab ul {
        flex-wrap: wrap;
        gap: 10px;
    }

    .p-faqTab ul li {
        width: calc(50% - 5px);
        height: 60px;
    }

    .p-faqTab ul li a {
        font-size: 1.4rem;
        padding: 0 10px;
        text-align: center;
    }

    .p-faqDetail {
        padding: 60px 0 80px;
        margin-bottom: 60px;
    }

    .p-faqDetail__box > h3 {
        font-size: 2rem;
    }

    .p-faqContact h2 {
        font-size: 2.4rem;
    }

    .p-bottomContact {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .p-bottomContact li {
        width: 100%;
    }

    .p-qaLists__title {
        padding-left: 15px;
        font-size: 1.6rem;
    }

    .p-qaLists__title span:first-child {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
        margin-right: 15px;
    }
}

@media screen and (max-width: 590px) {
    .p-faqTab {
        margin: 40px 0;
    }

    .p-faqTab ul li {
        width: 100%;
        height: 50px;
    }

    .p-faqTab ul li a {
        font-size: 1.3rem;
    }

    .p-faqDetail__box > h3 {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .p-faqDetail__box:not(:last-child) {
        margin-bottom: 40px;
    }

    .p-faqContact h2 {
        font-size: 2rem;
        line-height: 1.4;
    }

    .p-faqContact .c-text {
        font-size: 1.4rem;
        text-align: left;
        padding: 0 15px;
    }

    .p-faqDetail .p-qaLists__title::before {
        right: 15px;
    }

    .p-faqDetail .p-qaLists__title:after {
        font-size: 1.8rem;
    }

    .p-qaLists__title {
        font-size: 1.5rem;
    }

    .p-qaLists__text {
        width: 80%;
    }

    .p-qaLists__title::before {
        border-width: 12px 7.5px 0 7.5px;
        right: 6px;
    }

    .p-qaLists__title.close::before {
        border-width: 0 7.5px 12px 7.5px;
        right: 6px;
    }

    .p-qaLists__title::after {
        left: 12px;
    }

    .p-qaLists__title {
        font-size: 1.4rem;
        padding: 12px 25px 12px 50px;
    }

    .p-qaLists__title.close::before {
        border-width: 0px 5.5px 9px;
    }

    .p-qaLists__title::before {
        border-width: 9px 5.5px 0px;
    }

    .p-qaLists__box p {
        font-size: 1.3rem;
    }

    .p-qaLists__box {
        padding: 20px 0px 25px;
    }

    .p-qaList:not(:last-child) {
        margin: 0 0 15px;
    }

    .p-faqDetail .p-qaLists__title {
        font-size: 1.4rem;
        padding: 12px 25px 12px 50px;
    }

    .p-faqDetail .p-qaLists__title::before {
        border-width: 9px 5.5px 0px;
    }

    .p-faqDetail .p-qaLists__title.close::before {
        border-width: 0px 5.5px 9px;
    }
}

/*----------------------------------------
	contact
----------------------------------------*/

.p-contact {
    margin: 0 0 230px;
}

.p-contactTel {
    margin: 0 0 140px;
}

.p-contactTel__wrap {
    max-width: 822px;
    border: 2px solid #002456;
    padding: 29px 0 34px;
    margin: 0 auto;
}

.p-contactTel h3 {
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin: 0 0 14px;
    text-align: center;
    font-weight: bold;
}

.p-contactTel h3:after {
    content: "";
    display: block;
    width: 600px;
    height: 1px;
    background-color: #002456;
    margin: 10px auto 0;
}

.p-contactTel__wrap a p {
    font-size: 6rem;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.03em;
    margin: 0 0 6px;
    line-height: 1.217;
}

.p-contactTel__wrap a p span {
    display: inline-block;
    font-size: 2.2rem;
    margin: 0 24px 0 0;
    padding: 9px 17px;
    background-color: #002456;
    color: #fff;
}

.p-contactTel__time {
    text-align: center;
    font-weight: 500;
    margin: 0 0 14px;
    line-height: 1.5;
}

.p-contactForm {
    background-color: #F5F8FA;
    margin: 0 0 210px;
    padding: 70px 0 92px;
}

.p-contactForm .c-title {
    margin: 0 0 80px;
}

.p-contactForm .c-title span {
    font-size: 4rem;
    letter-spacing: 0.02em;
    line-height: 1.225;
}

.p-contactForm .c-title h2 {
    margin-top: 2px;
}

.table_contact_wrap {
    max-width: 966px;
    margin: 0 auto;
}

.table_contact {
    width: 100%;
    margin: 0 0 60px;
}

.table_contact th {
    width: 226px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 400;
    font-weight: bold;
}

.table_contact th .small {
    font-size: 1.2rem;
}

.table_contact th label {
    width: 100%;
    display: flex;
    align-items: baseline;
}

.contact_address_wrap div:first-child {
    margin: 0 0 20px;
}

.table_contact tbody {
    display: block;
}

.table_contact td {
    width: 76.6%;
    vertical-align: middle;
}

.table_contact td input.text {
    width: 100%;
    border: none;
    height: 32px;
    background-color: #fff;
    font-size: 1.6rem;
    padding: 0 0 0 15px;
}

.table_contact td input.text.zip {
    width: 54%;
}

.table_contact td textarea {
    width: 100%;
    height: 330px;
    background-color: #fff;
    border: none;
    padding: 20px 0 0 20px;
    font-size: 1.6rem;
}

.table_contact tr {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.table_contact tr:not(:last-child) {
    margin: 0 0 26px;
}

.table_contact tr:first-child th,
.table_contact tr:first-child td {
    padding-top: 0;
}

.table_contact tr:last-child th {
    width: 165px;
    flex-direction: column;
}

.table_contact tr:last-child th .notes {
    font-size: 1.6rem;
    font-weight: 500;
    text-align: left;
    margin-top: 10px;
    line-height: 1.5;
}

.required {
    background-color: #6E80A3;
    color: #fff;
    font-size: 1.4rem;
    font-weight: normal;
    letter-spacing: 0.08em;
    width: 48px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    margin: 0 0 0 8px;
}

.contact_button input {
    width: 400px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    background-color: #fff;
    border: 1px solid #002456 !important;
    font-size: 2.4rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 35px;
    color: #002456;
    margin: 50px auto 0;
}

.mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0;
}

.mwform-radio-field:last-child {
    margin: 0;
}

.agree_check {
    margin-bottom: 60px;
    color: #2B3A3F;
}

.agree_check a {
    color: #5BA560;
}

.mwform-checkbox-field {
    margin: 0 40px 0 0;
}

.mwform-checkbox-field label {
    display: flex;
    align-items: center;
}

.mwform-checkbox-field input,
.mwform-radio-field input {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    flex-shrink: 0;
}

.agree_check .mwform-checkbox-field {
    margin: 0;
}

.mw_wp_form_confirm .required,
.mw_wp_form_confirm .agree_check {
    display: none;
}

.selectbox {
    height: 40px;
    background-color: #EDEDED;
    border: 1px solid #DDDDDD;
    padding: 0 20px;
}

input {
    font-family: '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ ゴシック', sans-serif;
}

input::placeholder {
    color: #A0A0A0;
}

input[type="text"] {
    border: none;
}

input[type="text"]:focus {
    border: 1px solid #004DA0;
    outline: 0;
}

input::placeholder {
    color: #CECDCD;
}

.table_radio_wrap {
    display: flex;
    gap: 30px;
}

.table_radio_wrap span:not(:last-child) {
    margin: 0 0 15px;
}

.table_contact_privacy {
    color: #002456;
    display: block;
    text-align: center;
    margin: 45px auto 55px;
    padding: 0 0 8px;
    font-weight: bold;
}

.table_contact_privacy span {
    border-bottom: 1px solid #002456;
    padding: 0 0 8px;
}

.table_contact td select {
    width: 230px;
    border: none;
    height: 40px;
    padding: 0 0 0 10px;
    background-color: #fff;
    font-size: 1.6rem;
    border: 1px solid rgba(112, 112, 112, 0.3);
    border-radius: 3px;
}

.hidden-inputs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    z-index: 10;
}

.hidden-inputs input {
    cursor: pointer;
    height: 100%;
    width: 100%;
}

.hidden-inputs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.table_contact_box h3 {
    font-size: 2.4rem;
    margin: 0 0 53px;
}

.table_contact_box .table_radio_wrap {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
}

.table_contact_box:not(:last-child) {
    margin: 0 0 88px;
}

.table_contact_box .attention {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.table_contact_box .attention span {
    display: flex;
    flex-direction: column;
    font-size: 1.4rem;
    margin: 11px 0 0;
}

.file-upload-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.file-upload-item {
    flex: 1;
    min-width: 230px;
    height: 230px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.file-upload-item input[type="file"] {
    cursor: pointer;
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.file-upload-item::before {
    content: "ファイル選択";
    font-size: 1.4rem;
    z-index: 1;
}

.table_contact_promise {
    max-width: 342px;
    margin: 0 auto;
    line-height: 2;
}

.file-name-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 51, 102, 0.8);
    color: #fff;
    font-size: 11px;
    padding: 4px 2px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.mw_wp_form_confirm .table_contact tr:last-child th .notes {
    display: none;
}

.mw_wp_form_confirm .file-upload-container {
    flex-direction: column;
}

.mw_wp_form_confirm .table_contact_promise {
    display: none;
}

.mw_wp_form_confirm .file-upload-item::before {
    display: none;
}

.mw_wp_form_confirm .file-upload-item {
    background-color: transparent;
    justify-content: flex-start;
}

@media screen and (max-width: 1500px) {

    .table_contact th {
        width: 200px;
    }

    .p-contact {
        margin-bottom: 150px;
    }

    .p-contactTel {
        margin-bottom: 100px;
    }
}

@media screen and (max-width: 1300px) {

    .p-contactIntro,
    .p-contactForm {
        margin-bottom: 120px;
    }
}

@media screen and (max-width: 1014px) {
    .p-contact {
        margin-bottom: 80px;
    }

    .p-contactTel {
        margin-bottom: 80px;
    }

    .p-contactTel__wrap {
        width: 100%;
        padding: 20px 3%;
    }

    .p-contactTel h3 {
        font-size: 2rem;
        padding: 0 15px;
    }

    .p-contactTel h3:after {
        width: 80%;
    }

    .p-contactTel__wrap a p {
        font-size: 4.5rem;
    }

    .p-contactTel__wrap a p span {
        font-size: 1.8rem;
        margin-right: 15px;
        padding: 5px 12px;
    }

    .p-contactForm {
        margin-bottom: 70px;
        padding: 50px 4% 80px;
    }

    .p-contactForm .c-title {
        margin: 0 0 40px;
    }

    .table_contact tr {
        flex-direction: column;
        border-bottom: none;
        margin-bottom: 10px;
    }

    .table_contact th,
    .table_contact td {
        font-size: 1.4rem;
        width: 100% !important;
        padding: 10px 0 !important;
    }

    .table_contact th {
        border-bottom: 1px solid #002456;
    }

    .table_contact_box h3 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .table_contact_box:not(:last-child) {
        margin-bottom: 50px;
    }

    .contact_button {
        font-size: 1.4rem;
        width: 100%;
        height: 55px;
        max-width: 400px;
    }

    .table_contact_box .table_radio_wrap input.text {
        width: 100%;
    }

    .contact_button {
        margin: 20px auto 0;
    }

    .p-contactForm {
        margin-bottom: 80px;
    }

    .table_contact tr {
        flex-direction: column;
        align-items: flex-start;
    }

    .table_contact tr:not(:last-child) {
        margin-bottom: 28px;
    }

    .table_contact th,
    .table_contact td {
        width: 100% !important;
    }

    .table_contact th {
        margin-bottom: 10px;
    }

    .table_contact th label {
        justify-content: flex-start;
        gap: 15px;
    }

    .table_contact td textarea {
        height: 200px;
    }

    .contact_button {
        width: 100%;
        max-width: 300px;
    }

    .mwform-checkbox-field input,
    .mwform-radio-field input {
        width: 12px;
        height: 12px;
    }

    .table_contact td span {
        margin: 0;
    }

    .table_radio_wrap span:not(:last-child) {
        margin: 0px 0px 8px;
    }

    .required {
        width: 46px;
        height: 24px;
        font-size: 1.4rem;
    }

    .contact_button input {
        font-size: 1.4rem;
    }

    .p-contactForm .c-title {
        margin: 0 0 20px;
    }

    .table_radio_wrap {
        gap: 15px;
    }

    .file-upload-item {
        height: 150px;
    }

    .table_contact {
        margin: 0 0 20px;
    }
}

@media screen and (max-width: 590px) {
    .p-contact {
        margin-bottom: 60px;
    }

    .p-contactTel {
        margin-bottom: 60px;
    }

    .p-contactTel__wrap {
        border-width: 1px;
    }

    .p-contactTel h3 {
        font-size: 1.6rem;
    }

    .p-contactTel h3:after {
        width: 90%;
    }

    .p-contactTel__wrap a p {
        font-size: 8vw;
        flex-direction: column;
    }

    .p-contactTel__wrap a p span {
        font-size: 1.4rem;
        margin-right: 0;
    }

    .p-contactTel__time {
        font-size: 1.2rem;
        padding: 0 10px;
    }

    .table_contact td input.text.zip {
        width: 100%;
    }

    .table_contact td select {
        width: 100%;
    }

    .table_contact_box .table_radio_wrap {
        flex-direction: column;
        align-items: flex-start;
        line-height: 1.4;
    }

    .table_radio_wrap {
        line-height: 1.4;
    }

    .mwform-checkbox-field {
        margin: 0 0 10px 0;
        width: 100% !important;
    }

    .table_contact th {
        font-size: 1.4rem;
    }

    .table_contact td input.text.zip {
        width: 100%;
    }

    .table_radio_wrap {
        flex-direction: column;
        gap: 10px;
    }

    .mwform-checkbox-field,
    .mwform-radio-field {
        margin-right: 0;
    }

    .table_contact_box:not(:last-child) {
        margin-bottom: 12px;
    }

    .table_contact_box h3 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .p-policy-check {
        font-size: 1.4rem;
        flex-wrap: wrap;
    }

    .required {
        width: 42px;
        height: 22px;
        font-size: 1.2rem;
        letter-spacing: 0;
    }

    .p-policy-check {
        margin: 10px 0px 20px;
    }

    .table_contact td textarea {
        height: 150px;
    }

    .p-contactForm {
        padding: 50px 4%;
        margin-bottom: 30px;
    }

    .table_contact tr:not(:last-child) {
        margin-bottom: 0;
    }

    .p-contactForm .c-title span {
        font-size: 3rem;
    }

    .file-upload-item {
        height: 70px;
    }

    .contact_button input {
        width: 100%;
        height: 55px;
        margin: 30px auto 0;
    }

    .table_contact_promise {
        font-size: 1.4rem;
        max-width: unset;
        line-height: 1.8;
    }
}

/*----------------------------------------
	privacy policy
----------------------------------------*/

.privacy_title {
    font-size: 1.8rem;
    line-height: 1.4;
    padding: 0.5em;
    background-color: rgba(196, 221, 180, 0.09);
    border-left: 4px solid #002456;
    margin: 0 0 15px;
}

.privacy_title02 {
    font-size: 2.2rem;
    line-height: 1.4;
    padding: 0.5em;
    color: #fff;
    background-color: #002456;
    margin: 0 auto 30px;
    width: 500px;
    text-align: center;
}

.privacy_policy .text {
    margin: 0 0 30px;
}

.privacy_policy_list {
    font-weight: bold;
    color: #93C572;
    margin: 0 0 20px;
    line-height: 1.3;
}

.privacy_policy_lists li {
    line-height: 1.75;
}

.privacy_policy_list > ul {
    margin: 10px 0 0;
    color: #000;
    line-height: 1.7;
    font-weight: normal;
}

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

    .privacy_title02 {
        font-size: 1.8rem;
    }

    .privacy_policy_list {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 590px) {
    .privacy_title02 {
        width: 100%;
        margin: 0 auto 20px;
    }
}

/*----------------------------------------
	404 not found
----------------------------------------*/

.p-catch__404 {
    background-image: url(images/catch_404.jpg);
}

.error404 .c-button {
    margin: auto;
}
