@charset "utf-8";
/*
theme Name: katsura-kensetsu
Description: 桂建設のテーマです
version： 1.0
*/

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

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

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

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

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

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

ul {
    list-style-type: none;
}

#container {
    overflow: hidden;
}

.bold {
    font-weight: bold;
}


@media screen and (max-width:768px) {
    body {
        font-size: 1.6rem;
    }
}

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

.c-inner {
    width: 1300px;
    margin: auto;
}

.c-inner02 {
    width: 1250px;
    margin: auto;
}

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

.c-button {
    text-align: center;
    display: block;
    width: 300px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    color: #00613A;
    transition: all 0.3s;
    position: relative;
    font-weight: bold;
    transition: all 0.4s;
    border-radius: 100px;
    border: 1px solid #00613A;
    margin: 80px auto 0 0;
    transition: all 0.4s;
    background-size: 180% auto;
}

.c-button:after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url(images/button_arrow.svg);
    background-repeat: no-repeat;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    transition: all 0.4s;
}

.c-button02 {
    border: 1px solid #fff;
    color: #fff;
}

.c-button02:after {
    background-image: url(images/button_arrow02.svg);
}

.color {
    color: #00613A;
}

.op {
    transition: .3s;
}

.op:hover {
    opacity: 0.7;
}

.lookforward-close-btn {
    display: none;
}

@media screen and (min-width:769px) {
    .c-button:hover {
        background-color: #B5D1C6;
    }

    .c-button:hover:after {
        right: 4px;
    }

    .c-button02:hover:after {
        right: 4px;
    }
}

@media screen and (max-width:1400px) {
    .c-inner {
        width: 100%;
        padding: 0 6%;
    }
}

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

    .c-inner02 {
        width: 100%;
        padding: 0 4%;
    }
}

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

    .c-button {
        width: 200px;
        height: 45px;
        font-size: 1.4rem;
        margin: 40px auto 0 0;
    }

    .c-inner {
        width: 100%;
        padding: 0 4%;
    }

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

@media screen and (max-width:820px) {
    .c-inner {
        width: 100%;
        padding: 0 3.5%;
    }

    .c-inner02 {
        width: 100%;
        padding: 0 3%;
    }
}

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

.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: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all 0.4s ease;
    background-color: #fff;
    box-shadow: 1px 1px 10px #00000026;
}

/*.l-header.change-color {
    background-color: rgba(0, 0, 0, 0.5);
    transition: 0.3s;
}

.l-header.change-color02 {
    background-color: rgba(0, 0, 0, 0.5);
    transition: 0.3s;
}*/

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

.l-header__info {
    display: flex;
    align-items: center;
    margin: 0 0 26px;
}

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

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

.l-header__gnavList a {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 500;
    font-style: normal;
}

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

.l-header__gnavList:last-child {
    margin: 0 0 0 50px;
}

.l-header__gnavContact a {
    background-color: #00613A;
    width: 200px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    color: #fff;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 500;
    font-style: normal;
    transition: all 0.4s;
    background-size: 180% auto;
}

.l-header__gnavContact a span:before {
    content: "";
    display: inline-block;
    margin: 0 10px 0 0;
    width: 21px;
    height: 14px;
    background-image: url(images/header_contact_icon.svg);
}

.input-hidden {
    display: none;
}

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

.logo {
    width: 375px;
    height: 100%;
}

.logo a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00613A;
}

.logo a img.sp {
    display: none;
}

.l-header__gnavSp {
    display: none;
}

@media screen and (min-width:1001px) {
    .l-header__gnavList a {
        transition: .3s;
        padding: 0 0 12px;
    }

    .l-header__gnavList.current a,
    .l-header__gnavList a:hover {
        color: #00613A;
    }

    .l-header__gnavList a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: #00613A;
        transition: all .3s;
        transform: scale(0, 1);
        transform-origin: left top;
    }

    .l-header__gnavList.current a::after,
    .l-header__gnavList a:hover::after {
        transform: scale(1, 1);
    }

    .l-header__gnavContact a:hover {
        background-position: right center;
        background-image: linear-gradient(37deg, rgba(253, 255, 191, 0.7) 0%, rgba(183, 221, 132, 0.7) 50%, rgba(55, 116, 86, 0.7) 100%);
    }
}

@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:1300px) {
    .l-header {
        height: 90px;
    }

    .logo {
        width: 260px;
    }

    .logo a img {
        width: 88%;
    }
}

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

    .l-header__right {
        display: none;
    }

    #l-header {
        height: 70px;
    }

    .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;
    }

    .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: #00613A;
    }

    .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: #333;
        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 {
        width: 250px;
    }

    .logo a {
        background-color: transparent;
    }

    .logo a img.pc {
        display: none;
    }

    .logo a img.sp {
        display: block;
    }

    .l-header__gnavContact {
        width: 100%;
        margin-top: 40px;
    }

    .l-header__gnavContact a {
        width: 100%;
        border-bottom: none;
        color: #fff !important;
    }
}

@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__gnavList {
        width: 100%;
    }

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

    .logo a {
        width: 190px;
    }

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

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

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

.l-footer {
    background-color: #333333;
    padding: 210px 0 25px;
}

.l-footerWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 88px;
}

.l-footerLogo {
    display: block;
    margin: 0 0 35px;
}

.l-footerCopyright {
    color: #fff;
}

.l-footerInfo__text {
    font-size: 2.2rem;
    line-height: 1.364;
    color: #fff;
}

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

.l-footer ul li a {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    color: #fff;
}

.l-footer ul li:not(:last-child) {
    margin-right: 30px;
}

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

.l-footerInfo__map {
    text-align: center;
    display: block;
    width: 235px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: all 0.3s;
    position: relative;
    font-weight: bold;
    transition: all 0.4s;
    border-radius: 100px;
    border: 1px solid #fff;
    color: #fff;
    margin: 38px auto 0 0;
}

.l-footerInfo__map:after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url(images/button_arrow02.svg);
    background-repeat: no-repeat;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    transition: all 0.4s;
}

@media screen and (max-width:1400px) {
    .l-footerLogo {
        width: 350px;
    }

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

    .l-footerInfo__text {
        font-size: 1.8rem;
    }
}

@media screen and (max-width:1200px) {
    .l-footer ul {
        width: 82%;
    }

    .l-footer ul li a {
        font-size: 1.2vw;
    }

    .l-footerInfo__text {
        font-size: 1.5vw;
    }

    .l-footerLogo {
        width: 70%;
    }
}

@media screen and (max-width:820px) {
    .l-footerWrap {
        flex-direction: column;
    }

    .l-footer ul {
        width: 100%;
        flex-direction: column;
    }

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

    .l-footerLogo {
        margin: 0 auto;
    }

    .l-footerInfo__map {
        margin: 0 auto;
    }

    .l-footer ul li {
        width: 100%;
    }

    .l-footer ul li a {
        display: block;
        width: 100%;
        font-size: 1.4rem;
        border-bottom: 1px solid rgba(225, 225, 225, 0.7);
        padding: 20px 10px;
        position: relative;
    }

    .l-footer ul li a:after {
        content: "";
        display: inline-block;
        margin: 0 13px 0 0;
        background-image: url(images/footer_arrow.svg);
        background-repeat: no-repeat;
        width: 7px;
        height: 12px;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }

    .l-footer ul li:not(:last-child) {
        margin-right: 0;
    }

    .l-footerCopyright {
        font-size: 1.2rem;
    }

    .l-footerInfo__text {
        font-size: 1.6rem;
    }

    .l-footer {
        padding: 170px 0 25px;
    }

    .l-footerLogo {
        margin: 0 auto 30px;
    }

    .l-footerInfo__text {
        margin: 0 0 30px;
    }

    .l-footerInfo__map {
        font-size: 1.3rem;
    }

    .l-footerWrap {
        margin: 0 0 50px;
    }

    .l-footer ul li a {
        padding: 15px 10px;
    }

    .l-footerInfo__map {
        height: 45px;
    }

    .l-footerInfo {
        margin: 0 0 30px;
    }
}

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

/*----------------------------------------
	topCommon
----------------------------------------*/

.c-topTitle {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    margin: 0 0 80px;
}

.c-topTitle h2 {
    font-size: 3rem;
    letter-spacing: 0.05em;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.467;
    color: #00613A;
}

.c-topTitle__en {
    font-size: 9rem;
    letter-spacing: 0.01em;
    line-height: 1.211;
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    color: #333333;
}

@media screen and (max-width:1200px) {
    .c-topTitle__en {
        font-size: 7.5rem;
    }
}

@media screen and (max-width:820px) {
    .c-topTitle {
        margin: 0 0 30px;
    }

    .c-topTitle__en {
        font-size: 4.5rem;
    }

    .c-topTitle h2 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width:590px) {
    .c-topTitle__en {
        font-size: 3.6rem;
    }

    .c-topTitle h2 {
        font-size: 1.6rem;
    }
}

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

.p-topMv {
    width: 100%;
    height: 100vh;
    position: relative;
    margin: 0 0 148px;
    background-image: url(images/mv.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.p-topMv:after {
    content: "";
    width: 628px;
    height: 622px;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(images/mv_logo.svg);
    left: -141px;
    bottom: 140px;
    position: absolute;
}

.p-topMv:before {
    content: "";
    width: 100%;
    height: 299px;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(images/mv_deco.svg);
    left: 0;
    bottom: -97px;
    position: absolute;
}

.p-topMv__catch {
    position: absolute;
    top: 43.5%;
    left: 6.8%;
    z-index: 100;
}

.p-topMv h2 {
    font-size: 8.4rem;
    letter-spacing: 0.04em;
    margin: 0 0 35px;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    color: #fff;
    line-height: 1.357;
    text-shadow: 0px 3px 6px #3E79AC40;
}

.p-topMv h3 {
    font-size: 2.5rem;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    color: #fff;
    line-height: 2.64;
    text-shadow: 0px 3px 6px #3E79AC40;
}

@media screen and (max-width:820px) {
    .p-topMv {
        margin: 0 0 90px;
        background-image: url(images/mv_sp.jpg);
		background-position: bottom;
    }

    .p-topMv__catch {
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
        top: 15.5%;
        text-align: center;
    }

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

    .p-topMv h3 {
        font-size: 2.7rem;
        line-height: 1.8;
    }

    .p-topMv:after {
        background-size: 100%;
        width: 400px;
        height: 396px;
        bottom: auto;
        top: 15%;
        left: -10%;
    }
}

@media screen and (max-width:590px) {
    .p-topMv:before {
        height: 100px;
        bottom: -40px;
    }

    .p-topMv:after {
        width: 300px;
        height: 300px;
        top: 13%;
        left: -10%;
    }

    .p-topMv__catch {
        top: 20.5%;
    }

    .p-topMv {
        margin: 0 0 60px;
        background-image: url(images/mv_sp02.jpg);
    }

    .p-topMv h2 {
        font-size: 8.8vw;
    }

    .p-topMv h3 {
        font-size: 3.7vw;
    }
}

/*----------------------------------------
	top_intro
----------------------------------------*/

.p-topIntro {
    margin: 0 0 130px;
}

.p-topIntro__en {
    font-size: 10.5rem;
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.01em;
    margin: 0 0 20px;
    color: #00613A;
    text-align: center;
}

.p-topIntro h2 {
    font-size: 4.2rem;
    letter-spacing: 0.05em;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 500;
    font-style: normal;
    margin: 0 0 70px;
    text-align: center;
}

@media screen and (max-width:1300px) {
    .p-topIntro h2 {
        font-size: 3.2rem;
    }

    .p-topIntro__en {
        font-size: 6.5vw;
    }
}

@media screen and (max-width:820px) {
    .p-topIntro {
        margin: 0 0 50px;
    }

    .p-topIntro h2 {
        font-size: 2.2rem;
        margin: 0 0 40px;
    }

    .p-topIntro__en {
        font-size: 6.8vw;
        margin: 0 0 10px;
    }
}

@media screen and (max-width:590px) {
    .p-topIntro__en {
        font-size: 7.8vw;
    }

    .p-topIntro h2 {
        font-size: 4vw;
    }
}

/*----------------------------------------
	top_about
----------------------------------------*/

.p-topAbout {
    margin: 0 0 322px;
}

.p-topAbout__wrap {
    display: flex;
    justify-content: flex-start;
    position: relative;
}

.p-topAbout__deco {
    mix-blend-mode: multiply;
}

.p-topAbout__deco:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 525px;
    background-image: url(images/top_about_deco.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    top: -190px;
    left: 0;
}

.p-topAbout__img {
    width: 52.5%;
    height: 646px;
    background-image: url(images/top_about.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 90%;
    margin: 0 116px 0 0;
    border-radius: 0px 300px 0px 0px;
}

.p-topAbout__text {
    width: 651px;
}

.p-topAbout__text .c-text {
    line-height: 2.778;
    margin: 0 0 80px;
}

.p-topAbout:before {
    background-image: url(images/top_about_deco.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 525px;
}

@media screen and (max-width:1300px) {
    .p-topAbout__text .c-text {
        line-height: 2.2;
    }
}

@media screen and (max-width:820px) {
    .p-topAbout {
        margin: 0 0 200px;
    }

    .p-topAbout__img {
        width: 80%;
        height: 415px;
        margin: 0 0 40px;
        border-radius: 0px 250px 0px 0px;
    }

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

    .p-topAbout__text {
        width: 93%;
        margin: 0 auto;
    }

    .p-topAbout__text .c-text {
        margin: 0 0 40px;
    }
}

@media screen and (max-width:590px) {
    .p-topAbout {
        margin: 0 0 130px;
    }

    .p-topAbout__deco:before {
        height: 150px;
        top: 32%;
    }

    .p-topAbout__img {
        width: 90%;
        height: 250px;
        border-radius: 0px 190px 0px 0px;
        margin: 0 0 30px;
    }

    .p-topAbout__text .c-topTitle {
        margin: 0 0 20px;
    }

    .p-topAbout__text .c-button {
        margin: 30px auto 0;
    }
}

/*----------------------------------------
	top_service
----------------------------------------*/

.p-topService {
    background-color: #00613A;
    padding: 305px 0 100px;
    margin: 0 0 130px;
}

.p-topService__slide {
    margin: -497px 0 112px;
}

.p-topService__slide .slick-slide img {
    border-radius: 20px;
}

.p-topService__slide .slick-slide {
    padding: 0 17px;
}

.p-topService .c-topTitle {
    margin: 0 0 50px;
    text-align: center;
}

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

.p-topService__wrap {
    display: flex;
    justify-content: flex-end;
}

.p-topService__text {
    width: 44.7%;
}

.p-topService .c-topTitle__en {
    color: #fff;
}

.p-topService .c-topTitle h2 {
    color: #fff;
}

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

.p-topService__box a {
    background-color: #EAF6F0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    position: relative;
}

.p-topService__box a:after {
    content: "";
    background-image: url(images/top_service_arrow.svg);
    background-repeat: no-repeat;
    width: 32px;
    height: 32px;
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.p-topService__box a:nth-child(n+2) {
    margin: 30px 0 0;
}

.p-topService__box a:nth-of-type(1),
.p-topService__box a:nth-of-type(2) {
    width: 100%;
    padding: 30px;
}

.p-topService__box a:nth-of-type(3),
.p-topService__box a:nth-of-type(4) {
    width: 47.6%;
    padding: 20px;
}

.p-topService__box a:nth-of-type(1) .p-topService__boxImg,
.p-topService__box a:nth-of-type(2) .p-topService__boxImg {
    width: 25%;
    margin: 0 40px 0 0;
}

.p-topService__box a:nth-of-type(1) .p-topService__boxText,
.p-topService__box a:nth-of-type(2) .p-topService__boxText {
    width: 68%;
}

.p-topService__box a:nth-of-type(1) .p-topService__boxText h3,
.p-topService__box a:nth-of-type(2) .p-topService__boxText h3 {
    font-size: 3.8rem;
    letter-spacing: 0.04em;
    margin: 0 0 28px;
    font-weight: bold;
    color: #00613A;
}

.p-topService__box a:nth-of-type(3) .p-topService__boxImg,
.p-topService__box a:nth-of-type(4) .p-topService__boxImg {
    width: 30.8%;
    margin: 0 30px 0 0;
}

.p-topService__box a:nth-of-type(3) .p-topService__boxText h3,
.p-topService__box a:nth-of-type(4) .p-topService__boxText h3 {
    font-size: 2.5rem;
    letter-spacing: 0.04em;
    font-weight: bold;
    color: #00613A;
}

.p-topService__boxText .c-text {
    font-size: 1.6rem;
}

.p-topService__img {
    width: 38.125%;
    height: 1099px;
    background-image: url(images/top_service_img.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0 0 0 150px;
    border-radius: 20px 0 0 20px;
}

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

.p-topService__text .c-button {
    margin: 0 auto;
}

.p-topService .c-button {
    margin: 70px auto 0;
}

@media screen and (max-width:820px) {
    .slick-slide {
        width: 250px;
    }

    .p-topService__slide .slick-slide {
        padding: 0 10px
    }

    .slick-slide img {
        width: 100%;
    }

    .p-topService__slide {
        margin: -400px 0 70px;
    }

    .p-topService__wrap {
        flex-direction: column-reverse;
    }

    .p-topService__text {
        width: 93%;
        margin: 0 auto;
    }

    .p-topService__box a:nth-of-type(1) .p-topService__boxText h3,
    .p-topService__box a:nth-of-type(2) .p-topService__boxText h3 {
        font-size: 2.8rem;
    }

    .p-topService__img {
        width: 80%;
        height: 350px;
        background-image: url(images/top_service_img_sp.jpg);
        margin-left: auto;
        margin-bottom: 40px;
        border-radius: 10px 0 0 10px;
    }

    .p-topService .c-topTitle {
        margin: 0 0 30px;
    }

    .p-topService__textIntro {
        margin: 0 0 40px;
    }

    .p-topService .c-button {
        margin: 50px auto 0;
    }

    .p-topService {
        margin: 0 0 70px;
        padding: 305px 0 70px;
    }

    .p-topService__box a:after {
        background-size: 100%;
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width:590px) {
    .slick-slide {
        width: 180px;
    }

    .p-topService__slide .slick-slide img {
        border-radius: 10px;
    }

    .p-topService__slide {
        margin: -360px 0 70px;
    }

    .p-topService__img {
        width: 90%;
        height: 180px;
        margin-bottom: 30px;
    }

    .p-topService__box a:nth-of-type(1) .p-topService__boxImg,
    .p-topService__box a:nth-of-type(2) .p-topService__boxImg {
        width: 100%;
        margin: 0 auto 30px;
    }

    .p-topService__box a {
        flex-direction: column;
    }

    .p-topService__box a:nth-of-type(1) .p-topService__boxText,
    .p-topService__box a:nth-of-type(2) .p-topService__boxText {
        width: 100%;
    }

    .p-topService__box a:nth-of-type(1) .p-topService__boxText h3,
    .p-topService__box a:nth-of-type(2) .p-topService__boxText h3 {
        font-size: 2.2rem;
        margin: 0 0 15px;
    }

    .p-topService__box a:nth-of-type(3),
    .p-topService__box a:nth-of-type(4) {
        padding: 15px;
    }

    .p-topService__box a:nth-of-type(3) .p-topService__boxImg,
    .p-topService__box a:nth-of-type(4) .p-topService__boxImg {
        width: 100%;
        margin: 0 auto 20px;
    }

    .p-topService__box a:nth-of-type(3) .p-topService__boxText h3,
    .p-topService__box a:nth-of-type(4) .p-topService__boxText h3 {
        font-size: 1.8rem;
    }

    .p-topService__box a:nth-child(n+2) {
        margin: 15px 0 0;
    }
}

/*----------------------------------------
	top_works
----------------------------------------*/

.p-topWorks {
    margin: 0 0 140px;
}

.p-topWorks .c-topTitle {
    margin: 0 0 44px;
}

.p-topWorks__wrap {
    display: flex;
    align-items: center;
    position: relative;
}

.p-topWorks__deco {
    mix-blend-mode: multiply;
}

.p-topWorks__deco:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 525px;
    background-image: url(images/top_works_deco.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    bottom: -77px;
    left: 0;
}

.p-topWorks__img {
    width: 54.6%;
    height: 782px;
    background-image: url(images/top_works.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0 20px 20px 0;
    margin: 0 130px 0 0;
}

.p-topWorks__text {
    width: 534px;
}

.p-topWorks__text .c-button {
    margin: 70px auto 0 0;
}

@media screen and (max-width:1300px) {
    .p-topWorks__img {
        height: 520px;
    }
}

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

    .p-topWorks__img {
        width: 85%;
        height: 350px;
        margin-right: auto;
        margin-left: 0;
        margin-bottom: 30px;
        border-radius: 0 10px 10px 0;
    }

    .p-topWorks__text {
        width: 93%;
    }

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

    .p-topWorks .c-topTitle {
        margin: 0 0 25px;
    }

    .p-topWorks__deco:before {
        bottom: 100px;
        height: 200px;
    }

    .p-topWorks__text .c-button {
        margin: 40px auto 0 0;
    }
}

@media screen and (max-width:590px) {
    .p-topWorks__img {
        width: 90%;
        height: 240px;
    }

    .p-topWorks__deco:before {
        bottom: 27%;
        height: 140px;
    }

    .p-topWorks__text .c-button {
        margin: 20px auto 0;
    }
}

/*----------------------------------------
	top_citizenship
----------------------------------------*/

.p-topCitizen {
    margin: 0 0 130px;
}

.p-topCitizen__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

.p-topCitizen__img {
    width: 51%;
}

.p-topCitizen__img img {
    width: 100%;
    border-radius: 200px 0px 0px 0px;
}

.p-topCitizen__text {
    width: 43%;
}

.p-topCitizen__text .c-topTitle {
    margin: 0 0 55px;
}

.p-topCitizen .c-topTitle__en {
    line-height: 0.944;
}

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

    .p-topCitizen__wrap {
        align-items: flex-start;
    }

    .p-topCitizen__text .c-topTitle {
        margin: 0 0 30px;
    }
}

@media screen and (max-width:590px) {
    .p-topCitizen__wrap {
        flex-direction: column;
    }

    .p-topCitizen__text .c-topTitle {
        margin: 0 0 20px;
    }

    .p-topCitizen__img {
        margin-left: auto;
        margin-bottom: 30px;
        width: 90%;
    }

    .p-topCitizen__text {
        width: 100%;
    }

    .p-topCitizen__img img {
        border-radius: 190px 0px 0px 0px;
    }

    .p-topCitizen__text .c-button {
        margin: 20px auto 0;
    }
}

/*----------------------------------------
	top_company
----------------------------------------*/

.p-topCompany {
    margin: 0 0 130px;
}

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

.p-topCompany__img {
    width: 51%;
}

.p-topCompany__img img {
    width: 100%;
    border-radius: 0px 200px 0 0px;
}

.p-topCompany__text {
    width: 43%;
}

.p-topCompany__text .c-topTitle {
    margin: 0 0 55px;
}

.p-topCompany .c-topTitle__en {
    line-height: 0.944;
}

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

    .p-topCompany__wrap {
        align-items: flex-start;
    }

    .p-topCompany__text .c-topTitle {
        margin: 0 0 30px;
    }
}

@media screen and (max-width:590px) {
    .p-topCompany__wrap {
        flex-direction: column;
    }

    .p-topCompany__text .c-topTitle {
        margin: 0 0 20px;
    }

    .p-topCompany__img {
        margin-right: auto;
        margin-bottom: 30px;
        width: 90%;
    }

    .p-topCompany__text {
        width: 100%;
    }

    .p-topCompany__img img {
        border-radius: 0 190px 0px 0px;
    }

    .p-topCompany__text .c-button {
        margin: 30px auto 0;
    }
}

/*----------------------------------------
	top_recruit
----------------------------------------*/

.p-topRecruit {
    background-image: url(images/top_recruit_bg.jpg);
    margin: 0 0 128px;
    padding: 118px 0 100px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.p-topRecruit h3 {
    font-size: 4rem;
    font-weight: bold;
    margin: 0 0 45px;
    text-align: center;
    color: #fff;
}

.p-topRecruit .c-text {
    text-align: center;
    color: #fff;
}

.p-topRecruit .c-topTitle {
    text-align: center;
    margin: 0 0 45px;
}

.p-topRecruit .c-topTitle h2 {
    color: #fff;
}

.p-topRecruit .c-topTitle .c-topTitle__en {
    color: #fff;
}

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

    .p-topRecruit .c-topTitle {
        margin: 0 0 35px;
    }

    .p-topRecruit h3 {
        font-size: 3rem;
        margin: 0 0 35px;
    }
}

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

    .p-topRecruit h3 {
        font-size: 2rem;
        margin: 0 0 25px;
    }
}

/*----------------------------------------
	top_news
----------------------------------------*/

.p-topNews {
    margin: 0 0 130px;
}

.p-topNews .c-topTitle {
    margin: 0 0 58px;
    text-align: center;
}

.p-topNews__archiveWrap {
    width: 55.5%;
    margin: 0 0 150px;
}

.p-topNews__archiveArticle a {
    display: flex;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px dashed #969696;
    position: relative;
    transition: 0.3s;
}

.p-topNews__archiveArticle:nth-of-type(1) a {
    padding-top: 0;
}

.p-topNews__archiveArticle a:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 18px 18px;
    border-color: transparent transparent #00613A transparent;
    position: absolute;
    bottom: 0;
    right: 0;
}

.p-topNews__archiveArticle a:hover {
    opacity: 0.7;
}

.p-topNews__archiveInfo {
    display: flex;
    align-items: center;
    margin: 0 30px 0 0;
}

.p-topNews__archiveTime {
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.53);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin: 0 10px 0 0;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
}

.p-topNews__archiveTitle {
    font-size: 1.7rem;
    letter-spacing: 0.06em;
    font-weight: bold;
    color: #404040;
}

.p-topNews__archiveCategory {
    background-color: #00613A;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    height: 21px;
    border-radius: 11px;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    font-weight: bold;
}

.p-topNews__archiveInfo {
    display: flex;
    align-items: center;
    margin: 0 30px 0 0;
}

.p-topNews__archiveTime {
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.53);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin: 0 10px 0 0;
    font-family: 'Noto Sans JP', sans-serif;
}

.p-topNews .c-button {
    margin: 60px auto 0;
}

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

    .p-topNews__archiveArticle a {
        padding: 15px 0;
    }

    .p-topNews__archiveArticle a {
        flex-direction: column;
        align-items: flex-start;
    }

    .p-topNews__archiveTitle {
        font-size: 1.6rem;
        line-height: 1.2;
    }

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

    .p-topNews__archiveTime {
        font-size: 1.3rem;
    }

    .p-topNews__archiveCategory {
        font-size: 1.3rem;
    }

    .p-topNews .c-button {
        margin: 30px auto 0;
    }

    .p-topNews .c-topTitle {
        margin: 0 0 30px;
    }
}

/*----------------------------------------
	bottom_contact
----------------------------------------*/

.p-bottomContact {
    margin: 0 0 -122px;
    position: relative;
    z-index: 1;
}

.p-bottomContact__wrap {
    background-color: #00613A;
    border-radius: 20px;
    padding: 94px 110px 90px;
}

.p-bottomContact .c-topTitle {
    margin: 0 0 48px;
}

.p-bottomContact .c-topTitle h2 {
    color: #fff;
}

.p-bottomContact .c-topTitle__en {
    color: #fff;
}

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

.p-bottomContact__text .c-text {
    color: #fff;
}

.p-bottomContact__text {
    width: 45.7%;
}

.p-bottomContact__right {
    width: 40%;
}

.p-bottomContact__form,
.p-bottomContact__tel {
    text-align: center;
}

.p-bottomContact__form a {
    text-align: center;
    display: block;
    width: 436px;
    height: 89px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    letter-spacing: 0.06em;
    transition: all 0.3s;
    position: relative;
    font-weight: bold;
    transition: all 0.4s;
    border-radius: 100px;
    border: 1px solid #fff;
    color: #fff;
    margin: 50px auto 0 0;
}

.p-bottomContact__tel a {
    font-size: 4.4rem;
    letter-spacing: 0.02em;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.455;
    color: #fff;
}

.p-bottomContact__tel .c-text {
    margin: 2px 0 0;
    color: #fff;
}

.p-bottomContact__form .c-text {
    margin: 10px 0 0;
    color: #fff;
}

.p-bottomContact__form a span,
.p-bottomContact__tel a span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-bottomContact__form a span:before {
    content: "";
    display: inline-block;
    width: 48px;
    height: 48px;
    background-image: url(images/bottom_contact_icon.svg);
    background-repeat: no-repeat;
    margin-right: 15px;
}

.p-bottomContact__tel a span:before {
    content: "";
    display: inline-block;
    width: 48px;
    height: 48px;
    background-image: url(images/bottom_tel_icon.svg);
    background-repeat: no-repeat;
    margin-right: 10px;
}

@media screen and (max-width:1400px) {
    .p-bottomContact__wrap {
        padding: 64px 70px 60px;
    }

    .p-bottomContact__form a {
        width: 100%;
    }
}

@media screen and (max-width:1200px) {
    .p-bottomContact__wrap {
        padding: 64px 40px 60px;
    }

    .p-bottomContact__tel a {
        font-size: 3.2rem;
    }

    .p-bottomContact__form a {
        font-size: 1.8rem;
        height: 70px;
    }
}

@media screen and (max-width:820px) {
    .p-bottomContact .c-topTitle {
        margin: 0 0 30px;
    }

    .p-bottomContact__right {
        width: 50%;
    }

    .p-bottomContact__form a span:before {
        width: 30px;
        height: 30px;
        background-size: 100%;
    }

    .p-bottomContact__tel a span:before {
        width: 30px;
        height: 30px;
        background-size: 100%;
    }

    .p-bottomContact__tel a {
        font-size: 2.5rem;
    }

    .p-bottomContact__form a {
        font-size: 1.4rem;
    }

    .p-bottomContact__form a {
        height: 50px;
    }
}

@media screen and (max-width:590px) {
    .p-bottomContact__wrap {
        flex-direction: column;
        padding: 30px 20px;
    }

    .p-bottomContact__text {
        width: 100%;
    }

    .p-bottomContact__right {
        width: 100%;
    }

    .p-bottomContact .c-topTitle {
        text-align: center;
    }

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

    .p-bottomContact .c-topTitle {
        text-align: center;
        margin: 0 0 20px;
    }

    .p-bottomContact__form a {
        margin: 20px auto 0 0;
    }

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

    .p-bottomContact__wrap {
        border-radius: 10px;
    }
}

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

.breadcrumbs {
    position: absolute;
    top: 0;
    left: 0;
}

.breadcrumbs span {
    font-size: 1.5rem;
    margin: 0 0 65px;
}

.c-pageTitle {
    font-size: 4rem;
    letter-spacing: 0.06em;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 60px;
    text-align: center;
    color: #00613A;
}

.c-pageTitle:after {
    content: "";
    display: block;
    margin: 18px auto 0;
    width: 60px;
    height: 3px;
    background-color: #00613A;
}

.p-catch {
    width: 100%;
    margin: 120px 0 130px;
}

.p-catch__img {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 100px 0 0;
    position: relative;
}

.p-catch__img:before {
    content: "";
    display: block;
    width: 100%;
    height: 280px;
    background-image: url(images/catch_deco.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: -160px;
    left: 0;
    z-index: -1;
    background-position: center;
}

.p-catch__jp {
    font-size: 5rem;
    margin: 0 0 20px;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.08em;
}

.p-catch__en {
    font-size: 3rem;
    letter-spacing: 0.01em;
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    color: #00613A;
    line-height: 1.233;
    text-transform: uppercase;
}

.p-catch__textWrap {
    padding: 80px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.p-catch__text {
    width: 55%;
    font-weight: bold;
}

@media screen and (max-width:1300px) {
    .c-pageTitle {
        font-size: 3.5rem;
    }

    .p-catch {
        margin: 110px 0 130px;
    }
}

@media screen and (max-width:1200px) {
    .p-catch__jp {
        font-size: 4.5rem;
    }

    .p-catch__en {
        font-size: 2.6rem;
    }
}

@media screen and (max-width:820px) {
    .p-catch {
        margin: 80px 0 70px;
    }

    .c-pageTitle {
        font-size: 2.8rem;
        margin: 0 0 30px;
    }

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

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

    .breadcrumbs span {
        font-size: 1rem;
    }

    .c-pageTitle:after {
        width: 40px;
        height: 3px;
    }

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

    .p-catch__img {
        height: 250px;
        margin: 70px 0 0;
    }
}

@media screen and (max-width:590px) {
    .c-pageTitle {
        font-size: 2rem;
    }

    .c-pageTitle:after {
        width: 30px;
        height: 2px;
    }

    .p-catch {
        margin: 70px 0 50px;
    }

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

    .p-catch__jp {
        font-size: 2.8rem;
        margin: 0 0 8px;
    }

    .p-catch__en {
        font-size: 1.8rem;
    }

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

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

    .p-catch__textWrap {
        padding: 50px 0 0;
    }

    .p-catch__text {
        width: 100%;
    }

    .p-catch__img {
        height: 170px;
        margin: 50px 0 0;
    }
}

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

.p-aboutIntro__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 120px;
}

.p-aboutIntro h2 {
    font-size: 3.8rem;
    line-height: 1.447;
    letter-spacing: 0.06em;
    color: #00613A;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
}

.p-aboutIntro__text {
    width: 52%;
}

.p-aboutService {
    margin: 0 0 120px;
}

.p-aboutService ul {
    width: 100%;
    padding: 0 100px;
    display: flex;
}

.p-aboutService ul li {
    width: 25%;
    height: 643px;
}

.p-aboutService ul li a {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.8rem;
    letter-spacing: 0.04em;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    color: #fff;
    position: relative;
}

.p-aboutService ul li a:before {
    content: "";
    background-image: url(images/about_service_arrow.svg);
    width: 46px;
    height: 46px;
    position: absolute;
    bottom: 18px;
    right: 18px;
    background-repeat: no-repeat;
}

.p-aboutService ul li:nth-of-type(1) a {
    background-image: url(images/about_service_civil.jpg);
    border-radius: 20px 0px 0px 20px;
}

.p-aboutService ul li:nth-of-type(2) a {
    background-image: url(images/about_service_solar.jpg);
}

.p-aboutService ul li:nth-of-type(3) a {
    background-image: url(images/about_service_removal.jpg);
}

.p-aboutService ul li:nth-of-type(4) a {
    background-image: url(images/about_service_construction.jpg);
    border-radius: 0px 20px 20px 0px;
}

.p-aboutService ul li a span:before {
    content: "";
    display: inline-block;
    background-image: url(images/about_service_deco.svg);
    width: 32px;
    height: 39px;
    margin: 0 15px 0 0;
}

.p-aboutService .c-button {
    margin: 80px auto 0;
}

.p-aboutStrength {
    background-color: #EAF6F0;
    margin: 0 0 130px;
    padding: 90px 0 130px;
}

.p-aboutStrength ul li {
    display: flex;
    align-items: center;
}

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

.p-aboutStrength ul li:nth-of-type(odd) {
    justify-content: flex-end;
}

.p-aboutStrength ul li:nth-of-type(even) {
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.p-aboutStrength__img {
    width: 545px;
}

.p-aboutStrength__text {
    width: 55.8%;
    background-color: #fff;
    padding: 78px 0 78px 70px;
}

.p-aboutStrength__text h3 {
    font-size: 3.4rem;
    letter-spacing: 0.03em;
    margin: 0 0 36px;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    color: #00613A;
}

.p-aboutStrength ul li:nth-of-type(even) .p-aboutStrength__text {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-right: 70px;
    padding-left: 0;
}

.p-aboutStrength__textWrap {
    display: inline-block;
    width: 670px;
}

.p-aboutStrength ul li:nth-of-type(even) .p-aboutStrength__textWrap {
    margin-left: auto;
}

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

@media screen and (max-width:1400px) {
    .p-aboutStrength__textWrap {
        width: 92%;
    }

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

@media screen and (max-width:1300px) {
    .p-aboutIntro h2 {
        font-size: 3.2rem;
    }

    .p-aboutIntro__text {
        width: 48%;
    }

    .p-aboutStrength__text {
        padding: 50px 0 50px 40px;
    }

    .p-aboutStrength__text h3 {
        font-size: 3rem;
    }

    .p-aboutStrength ul li:nth-of-type(even) .p-aboutStrength__text {
        padding-right: 40px;
    }
}

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

    .p-aboutIntro h2 {
        font-size: 2.8rem;
        margin: 0 0 30px;
    }

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

    .p-aboutIntro__text {
        width: 100%;
    }

    .p-aboutIntro h2 {
        text-align: center;
    }

    .p-aboutService ul li a span:before {
        background-size: 100%;
        width: 25px;
        height: 25px;
    }

    .p-aboutService ul {
        padding: 0 30px;
        flex-direction: column;
    }

    .p-aboutService ul li {
        width: 100%;
        height: 280px;
    }

    .p-aboutService ul li a {
        background-position: center;
    }

    .p-aboutService ul li:nth-of-type(1) a {
        border-radius: 20px 20px 0px 0px;
        background-image: url(images/about_service_civil_sp.jpg);
    }

    .p-aboutService ul li:nth-of-type(2) a {
        background-image: url(images/about_service_solar_sp.jpg);
    }

    .p-aboutService ul li:nth-of-type(3) a {
        background-image: url(images/about_service_removal_sp.jpg);
    }

    .p-aboutService ul li:nth-of-type(4) a {
        background-image: url(images/about_service_construction_sp.jpg);
        border-radius: 0px 0px 20px 20px;
    }

    .p-aboutService ul li a:before {
        width: 50px;
        height: 50px;
    }

    .p-aboutStrength {
        margin: 0 0 60px;
        padding: 60px 0 70px;
    }

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

    .p-aboutStrength__text {
        padding: 28px 0 28px 40px;
    }

    .p-aboutStrength__text h3 {
        font-size: 2.5rem;
        margin: 0 0 20px;
    }

    .p-aboutStrength__img {
        width: 40%;
    }

    .p-aboutStrength__text {
        width: 60%;
    }
}

@media screen and (max-width:590px) {
    .p-aboutIntro h2 {
        font-size: 2rem;
    }

    .p-aboutService ul li {
        height: 150px;
    }

    .p-aboutService ul li a {
        font-size: 2rem;
    }

    .p-aboutService ul li a:before {
        width: 35px;
        height: 35px;
        bottom: 12px;
        right: 12px;
    }

    .p-aboutService ul li:nth-of-type(1) a {
        border-radius: 10px 10px 0px 0px;
    }

    .p-aboutService ul li:nth-of-type(4) a {
        border-radius: 0px 0px 10px 10px;
    }

    .p-aboutService .c-button {
        margin: 40px auto 0;
    }

    .p-aboutService ul li a span:before {
        width: 18px;
        height: 18px;
        margin: 0 10px 0 0;
    }

    .p-aboutService {
        margin: 0 0 60px;
    }

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

    .p-aboutService ul {
        padding: 0 20px;
    }

    .p-aboutStrength ul li {
        flex-direction: column;
    }

    .p-aboutStrength ul li:nth-of-type(even) {
        flex-direction: column;
    }

    .p-aboutStrength__img {
        width: 85%;
        margin: 0 0 -30px;
        z-index: 10;
    }

    .p-aboutStrength__text {
        width: 100%;
        padding: 60px 20px 25px;
    }

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

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

.p-service {
    margin: 0 0 130px;
}

.p-serviceIntro {
    margin: 0 0 148px;
}

.p-serviceIntro__text {
    width: 55.2%;
}

.p-serviceIntro h2 {
    font-size: 4rem;
    letter-spacing: 0.04em;
    line-height: 1.625;
    padding: 30px 0;
    border-top: 1px solid #00613A;
    border-bottom: 1px solid #00613A;
    color: #00613A;
    text-align: center;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    margin: 0 0 50px;
}

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

.p-serviceIntro h3 {
    font-size: 2.8rem;
    letter-spacing: 0.04em;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    line-height: 1.786;
}

.p-service ul li {
    display: flex;
    align-items: center;
}

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

.p-service ul li:nth-of-type(1) .p-serviceImg {
    background-image: url(images/service_civil.jpg);
}

.p-service ul li:nth-of-type(2) .p-serviceImg {
    background-image: url(images/service_solar.jpg);
}

.p-service ul li:nth-of-type(3) .p-serviceImg {
    background-image: url(images/service_removal.jpg);
}

.p-service ul li:nth-of-type(4) .p-serviceImg {
    background-image: url(images/service_construction.jpg);
}

.p-service ul li:nth-of-type(even) {
    flex-direction: row-reverse;
}

.p-serviceImg {
    width: 43.2%;
    height: 554px;
    background-size: cover;
    background-repeat: no-repeat;
}

.p-serviceText {
    width: 56.8%;
    padding: 60px 0 60px 80px;
    background-color: #EAF6F0;
    position: relative;
}

.p-serviceText .c-button {
    margin: 40px 0 0;
}

.p-serviceText__number {
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    color: #00613A;
    font-size: 10.3rem;
    position: absolute;
    right: 43px;
    top: -67px;
    display: flex;
    align-items: center;
}

.p-serviceText__number span {
    display: inline-block;
    font-size: 3.7rem;
    color: #00613A;
    margin: 0 20px 0 0;
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    position: relative;
    top: 15px;
}

.p-serviceText h2 {
    font-size: 4rem;
    letter-spacing: 0.04em;
    margin: 0 0 28px;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    display: flex;
    align-items: center;
}

.p-serviceText h2:before {
    content: "";
    display: inline-block;
    background-image: url(images/title_deco.svg);
    width: 35px;
    height: 43px;
    margin: 0 14px 0 0;
}

.p-serviceText h3 {
    font-size: 3rem;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 40px;
    color: #00613A;
    line-height: 1.667;
}

.p-serviceText .c-text {
    width: 70.6%;
}

@media screen and (max-width:1300px) {
    .p-serviceText {
        padding: 60px 50px;
    }

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

    .p-serviceText h2 {
        font-size: 3rem;
    }

    .p-serviceText h3 {
        font-size: 2.5rem;
    }

    .p-serviceText__number {
        font-size: 7.3rem;
        top: -46px;
    }

    .p-serviceText__number span {
        font-size: 2.7rem;
    }
}

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

    .p-serviceIntro {
        margin: 0 0 60px;
    }

    .p-serviceIntro h2 {
        font-size: 2.8rem;
        text-align: center;
        margin: 0 0 30px;
        padding: 15px 0;
    }

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

    .p-serviceIntro__text {
        width: 100%;
    }

    .p-serviceIntro h3 {
        font-size: 2.6rem;
        text-align: center;
        margin: 0 0 30px;
    }

    .p-serviceText {
        padding: 60px 30px;
    }

    .p-serviceText h3 {
        font-size: 2.2rem;
        margin: 0 0 20px;
    }

    .p-serviceText h2 {
        margin: 0 0 20px;
    }

    .p-serviceText h2:before {
        background-size: 100%;
        width: 25px;
        height: 25px;
    }

    .p-serviceText__number {
        font-size: 5.3rem;
        top: -32px;
    }

    .p-serviceText__number span {
        font-size: 2.4rem;
        margin: 0 10px 0 0;
    }

    .p-serviceText__number span {
        top: 7px;
    }

    .p-serviceImg {
        width: 100%;
    }

    .p-serviceText {
        width: 100%;
    }
}

@media screen and (max-width:590px) {
    .p-service ul li:not(:last-child) {
        margin: 0 0 70px;
    }

    .p-serviceIntro h3 {
        font-size: 2rem;
        line-height: 1.5;
        margin: 0 0 20px;
    }

    .p-serviceIntro h2 {
        font-size: 2.2rem;
    }

    .p-serviceText {
        padding: 40px 20px 50px;
    }

    .p-serviceImg {
        height: 200px;
        background-position: center;
    }

    .p-service ul li {
        flex-direction: column;
    }

    .p-service ul li:nth-of-type(even) {
        flex-direction: column;
    }

    .p-serviceText {
        width: 100%;
    }

    .p-serviceText .c-button {
        margin: 30px 0 0;
    }

    .p-serviceText h3 {
        font-size: 1.8rem;
        line-height: 1.5;
    }

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

    .p-serviceText__number {
        font-size: 4rem;
        right: 18px;
        top: -19px;
    }

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

    .p-serviceText .c-button {
        width: 100%;
    }
}

/*----------------------------------------
	page_service
----------------------------------------*/

.p-servicePage__intro {
    margin: 0 0 130px;
}

.p-servicePage__box {
    display: flex;
    position: relative;
    padding: 0 0 60px;
}

.p-servicePage__boxImg {
    width: 48%;
    height: 615px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 2;
}

.p-servicePage__boxText {
    width: 45%;
    padding: 150px 0 0 124px;
}

.p-servicePage__boxText .c-text {
    line-height: 2.111;
}

.p-servicePage__boxText h2 {
    font-size: 3.4rem;
    line-height: 1.441;
    margin: 0 0 40px;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    position: relative;
    z-index: 1;
    color: #00613A;
}

.p-servicePage__box:before {
    content: "";
    background-color: #EAF6F0;
    position: absolute;
    width: 82.5%;
    height: 100%;
    top: 0;
    z-index: -1;
}

.p-servicePage__box:after {
    content: "";
    background-color: #fff;
    position: absolute;
    width: 100%;
    height: 80px;
    top: 0;
    left: 0;
}

.p-servicePage__box:nth-of-type(odd):before {
    right: 0;
}

.p-servicePage__boxEn {
    font-size: 4.2rem;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    position: absolute;
    color: #00613A;
    opacity: 0.4;
    z-index: 2;
    top: 59px;
    right: 43px;
}

.p-servicePage__info {
    margin: 0 0 120px;
}

.p-servicePage__infoBg {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 110px 0 0;
}

.p-servicePage__infoBg .c-pageTitle {
    color: #fff;
    text-align: left;
}

.p-servicePage__infoBg .c-pageTitle:after {
    background-color: #fff;
    margin-left: 0;
}

.p-servicePage__infoBg .c-text {
    color: #fff;
}

.p-servicePage__infoLists {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    z-index: 10;
    margin: -148px 0 0;
}

.p-servicePage__infoList {
    width: 48%;
    padding: 45px 20px 45px 42px;
    background-color: #F6F5F3;
    border-radius: 10px;
    position: relative;
}

.p-servicePage__infoList:nth-child(n+3) {
    margin: 64px 0 0;
}

.p-servicePage__infoList h3 {
    font-size: 3.2rem;
    letter-spacing: 0.03em;
    margin: 0 0 20px;
    color: #00613A;
}

.p-servicePage__infoList li {
    font-weight: bold;
}

.p-servicePage__infoList li span {
    display: flex;
    align-items: center;
}

.p-servicePage__infoList li span:before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin: 0 10px 0 0;
    background-color: #00613A;
}

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

.p-servicePage__infoNumber {
    color: #C2D8CD;
    position: absolute;
    top: -30px;
    font-size: 5.5rem;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    left: 37px;
}

.p-serviceStrength {
    background-color: #EAF6F0;
    padding: 90px 0 256px;
}

.p-serviceStrength ul li {
    display: flex;
    align-items: center;
}

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

.p-serviceStrength ul li:nth-of-type(odd) {
    justify-content: flex-end;
}

.p-serviceStrength ul li:nth-of-type(even) {
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.p-serviceStrength__img {
    width: 545px;
}

.p-serviceStrength__text {
    width: 55.8%;
    background-color: #fff;
    padding: 78px 0 78px 70px;
}

.p-serviceStrength__text h3 {
    font-size: 3.4rem;
    letter-spacing: 0.03em;
    margin: 0 0 36px;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    color: #00613A;
}

.p-serviceStrength ul li:nth-of-type(even) .p-serviceStrength__text {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-right: 70px;
}

.p-serviceStrength__textWrap {
    display: inline-block;
    width: 670px;
}

.p-serviceStrength ul li:nth-of-type(even) .p-serviceStrength__textWrap {
    margin-left: auto;
}

.p-serviceMachine {
    margin: -126px 0 140px;
    padding: 70px 92px 0;
    background-color: #fff;
    border-radius: 10px;
}

.p-serviceMachine table {
    display: block;
    width: 100%;
    margin: 0 0 80px;
}

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

.p-serviceMachine table tr {
    width: 45.6%;
    padding: 20px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.45);
    display: flex;
    justify-content: space-between;
}

.p-serviceMachine table tr:nth-of-type(1),
.p-serviceMachine table tr:nth-of-type(2) {
    border-top: 1px dashed rgba(0, 0, 0, 0.45);
}

.p-serviceMachine table tr th {
    color: #00613A;
    letter-spacing: 0.12em;
    font-weight: bold;
}

.p-serviceMachine table tr td {
    font-size: 1.8rem;
    letter-spacing: 0.04em;
}

.p-worksArchive__wrap .no_text {
    width: 100%;
    text-align: center;
}

.p-serviceCivil .p-worksArchive,
.p-serviceSolar .p-worksArchive,
.p-serviceConstruction .p-worksArchive {
    position: relative;
    background-color: #F6F5F3;
    padding: 0 0 90px;
}

.p-serviceCivil .p-worksArchive .c-pageTitle,
.p-serviceSolar .p-worksArchive .c-pageTitle,
.p-serviceConstruction .p-worksArchive .c-pageTitle {
    position: relative;
    z-index: 1;
}


.p-serviceCivil .p-worksArchive .c-button,
.p-serviceSolar .p-worksArchive .c-button,
.p-serviceConstruction .p-worksArchive .c-button {
    margin-left: auto;
    margin-right: auto;
}

.p-serviceCivil .p-worksArchive:before,
.p-serviceSolar .p-worksArchive:before,
.p-serviceConstruction .p-worksArchive:before {
    content: "";
    width: 100%;
    height: 270px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
}

.no_text {
    position: relative;
    z-index: 1;
}

@media screen and (max-width:1400px) {
    .p-serviceStrength__textWrap {
        width: 92%;
    }

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

@media screen and (max-width:1300px) {
    .p-serviceStrength__text {
        padding: 50px 0 50px 40px;
    }

    .p-serviceStrength__text h3 {
        font-size: 3rem;
    }

    .p-serviceStrength ul li:nth-of-type(even) .p-serviceStrength__text {
        padding-right: 40px;
    }
}

@media screen and (max-width:1200px) {
    .p-servicePage__boxText {
        width: 48%;
        padding: 150px 0 0 80px;
    }
}

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

    .p-servicePage__intro {
        margin: 0 0 60px;
    }

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

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

    .p-servicePage__boxImg {
        width: 100%;
        height: 315px;
    }

    .p-servicePage__boxText {
        background-color: #EAF6F0;
        padding: 50px 30px;
        width: 90%;
        position: relative;
        z-index: 10;
        margin: -50px auto 0;
    }

    .p-servicePage__boxText h2 {
        font-size: 2.5rem;
        text-align: center;
    }

    .p-servicePage__box {
        padding: 0;
    }

    .p-servicePage__boxEn {
        font-size: 3.2rem;
        top: -22px;
        right: 20px;
        left: auto;
        z-index: 10;
        text-shadow: 2px 2px 2px #fff, -2px 2px 2px #fff, 2px -2px 2px #fff, -2px -2px 2px #fff, 2px 0px 2px #fff, 0px 2px 2px #fff, -2px 0px 2px #fff, 0px -2px 2px #fff;
    }

    .p-servicePage__infoList h3 {
        font-size: 2.5rem;
    }

    .p-servicePage__infoList {
        padding: 30px 20px;
    }

    .p-servicePage__infoNumber {
        font-size: 3.5rem;
        top: -20px;
        left: 20px;
    }

    .p-servicePage__infoList li {
        font-size: 1.6rem;
    }

    .p-servicePage__infoList:nth-child(n+3) {
        margin: 50px 0 0;
    }

    .p-servicePage__infoBg {
        height: 310px;
        padding: 70px 0 0;
    }

    .p-servicePage__infoLists {
        margin: -80px 0 0;
    }

    .p-servicePage__info {
        margin: 0 0 60px;
    }

    .p-serviceStrength {
        margin: 0 0 60px;
        padding: 60px 0 110px;
    }

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

    .p-serviceStrength__text {
        padding: 28px 0 28px 40px;
    }

    .p-serviceStrength__text h3 {
        font-size: 2.5rem;
        margin: 0 0 20px;
    }

    .p-serviceStrength__img {
        width: 40%;
    }

    .p-serviceStrength__text {
        width: 60%;
    }

    .p-serviceMachine {
        margin: -115px 0 60px;
        padding: 50px 30px 0;
    }

    .p-serviceMachine table tr:nth-of-type(1),
    .p-serviceMachine table tr:nth-of-type(2) {
        border-top: none;
    }

    .p-serviceCivil .p-worksArchive:before,
    .p-serviceSolar .p-worksArchive:before,
    .p-serviceConstruction .p-worksArchive:before {
        height: 130px;
    }

    .p-serviceCivil .p-worksArchive,
    .p-serviceSolar .p-worksArchive,
    .p-serviceConstruction .p-worksArchive {
        padding: 0 0 50px;
    }

    .p-serviceCivil .p-worksArchive .c-button,
    .p-serviceSolar .p-worksArchive .c-button,
    .p-serviceConstruction .p-worksArchive .c-button {
        margin: 40px auto 0;
    }
}

@media screen and (max-width:590px) {
    .p-servicePage__boxText h2 {
        font-size: 2rem;
        margin: 0 0 25px;
    }

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

    .p-servicePage__boxImg {
        height: 230px;
    }

    .p-servicePage__boxEn {
        font-size: 2rem;
        top: -14px;
    }

    .p-servicePage__infoList {
        width: 100%;
    }

    .p-servicePage__infoList:nth-child(n+2) {
        margin: 40px 0 0;
    }

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

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

    .p-servicePage__infoList li {
        font-size: 1.4rem;
    }

    .p-servicePage__infoBg {
        padding: 50px 0 0;
    }

    .p-servicePage__infoLists {
        margin: -100px 0 0;
    }

    .p-servicePage__infoNumber {
        font-size: 3rem;
        top: -17px;
    }

    .p-serviceStrength__text h3 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .p-serviceStrength ul li {
        flex-direction: column;
    }

    .p-serviceStrength ul li:nth-of-type(even) {
        flex-direction: column;
    }

    .p-serviceStrength__img {
        width: 85%;
        margin: 0 0 -30px;
        z-index: 10;
    }

    .p-serviceStrength__text {
        width: 100%;
        padding: 60px 20px 25px;
    }

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

    .p-serviceStrength__textWrap {
        width: 100%;
    }

    .p-serviceStrength ul li:nth-of-type(even) .p-serviceStrength__text {
        padding-right: 20px;
    }

    .p-serviceMachine {
        padding: 40px 20px 0;
    }

    .p-serviceMachine table tr {
        width: 100%;
        padding: 12px 0;
    }

    .p-serviceMachine table tr th {
        font-size: 1.4rem;
    }

    .p-serviceMachine table tr td {
        font-size: 1.5rem;
    }
}

/*------ civil engineering ------*/

.p-serviceCivil .p-servicePage__boxImg {
    background-image: url(images/service_intro_civil.jpg);
}

.p-serviceCivil .p-servicePage__infoBg {
    background-image: url(images/service_info_civil.jpg);
}

/*------ solar ------*/

.p-serviceSolar .p-servicePage__boxImg {
    background-image: url(images/service_intro_solar.jpg);
}

.p-serviceSolar .p-servicePage__infoBg {
    background-image: url(images/service_info_solar.jpg);
}

.p-serviceSolar .p-serviceStrength {
    margin: 0 0 130px;
    padding: 90px 0 130px;
}

@media screen and (max-width:820px) {
    .p-servicePage__infoBg {
        height: 245px;
        padding: 50px 0 0;
    }

    .p-serviceSolar .p-serviceStrength {
        margin: 0 0 70px;
        padding: 60px 0 70px;
    }
}

/*------ removal ------*/

.p-removal {
    margin: 0 0 130px;
}

.p-removalBox:not(:last-child) {
    margin: 0 0 150px;
}

.p-removalPlace {
    font-size: 3.2rem;
    letter-spacing: 0.06em;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 60px;
    padding: 22px 0 22px 62px;
    border-left: 12px solid #00613A;
    background-color: #EAF6F0;
    color: #00613A;
}

.p-removalBox table {
    width: 100%;
    border: none;
    border-collapse: collapse;
    margin: 0 0 38px;
    /* 横スクロール用に必要 */
}

.p-removalBox th,
.p-removalBox td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

.p-removalBox thead th {
    background-color: #2c5c42;
    color: white;
}

.p-removalBox tbody tr td {
    background-color: #EAF6F0;
}

.p-removalBox td small {
    font-size: 13px;
    color: #555;
}

.p-removalBox .table_title01 {
    background-color: transparent;
    border: none;
}

.p-removalBox .table_title02 {
    font-size: 2rem;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    padding: 10px 0;
}

.p-removalBox .table_title03 {
    font-size: 1.9rem;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    padding: 26px 0;
    width: 13.69%;
}

.p-removalBox .table_time {
    width: 17.7%;
    font-size: 2.8rem;
    background-color: #33634B;
    color: #fff;
    padding: 65px 0;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.06em;
}

.p-removalBox .table_time span {
    display: block;
    font-size: 1.8rem;
    letter-spacing: 0.06em;
    margin: 15px 0 0;
}

.p-removalBox .table_price {
    font-size: 2.6rem;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    color: #33634B;
}

.p-removalBox .table_price span {
    font-size: 1.8rem;
}

.p-removalBox .table_price:last-child {
    text-align: left;
    padding-left: 28px;
}

/* 横スクロール対応 */
.p-removalBox .table-container {
    overflow-x: auto;
}

.p-removalAttention {
    background-color: #EAF6F0;
    margin: 0 0 70px;
    padding: 47px 53px;
    border-radius: 10px;
}

.p-removalAttention li {
    color: #C60000;
}

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

.p-removalBox__accessText {
    display: flex;
    align-items: center;
    margin: 0 0 30px;
}

.p-removalBox__accessText h2 {
    font-size: 3.2rem;
    letter-spacing: 0.06em;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    display: flex;
    align-items: center;
    margin: 0 40px 0 0;
}

.p-removalBox__accessText h2:before {
    content: "";
    display: inline-block;
    width: 34px;
    height: 5px;
    background-color: #00613A;
    margin: 0 20px 0 0;
}

.p-removalBox__accessMap {
    position: relative;
    width: 100%;
    height: 425px;
}

.p-removalBox__accessMap 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);
    border-radius: 10px;
}

@media screen and (max-width: 820px) {
    .p-removalBox .table_price {
        font-size: 2rem;
    }

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

    .p-removalBox .table_time span {
        font-size: 1.3rem;
    }

    .p-removalAttention {
        padding: 40px 30px;
    }

    .p-sticky-table {
        white-space: nowrap;
        line-height: 1.6;
    }

    .p-sticky-table table {
        border-collapse: collapse;
        word-break: break-all;
        table-layout: fixed;
        display: block;
        overflow: scroll;
        max-height: 100vh;
    }

    .p-sticky-table th,
    .p-sticky-table td {
        min-width: 50px;
        text-align: left;
        position: relative;
        z-index: 0;
        vertical-align: middle !important;
    }

    .p-sticky-table tbody td:first-child {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        left: 0;
        z-index: 3;
    }

    .p-sticky-table tr {
        border-bottom: none !important;
    }

    .p-sticky-table img {
        margin: 10px auto;
        display: block;
        padding: 0;
        max-width: 80% !important;
    }

    .p-sticky-table table th::before,
    .p-sticky-table table td::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        z-index: -1;
    }

    .p-sticky-table table {
        max-height: 60vh;
        border: none;
    }

    .p-sticky-table thead th:first-child,
    .p-sticky-table tbody th:first-child {
        min-width: 25vw;
    }

    .p-removalBox .table_time {
        font-size: 2rem;
        padding: 20px 0;
        text-align: center;
    }

    .p-removalBox .table_time span {
        font-size: 1rem;
        margin: 0;
    }

    .p-removalBox .table_price {
        font-size: 1.8rem;
        text-align: center;
    }

    .p-removalBox .table_price span {
        font-size: 1rem;
    }

    .p-removalBox .table_title03 {
        font-size: 1.4rem;
        padding: 10px 0;
    }

    .p-removalBox .table_title02 {
        font-size: 1.4rem;
        padding: 5px 0;
    }

    .table_price .m_b15 {
        margin-bottom: 0 !important;
    }

    .p-removalBox .table_title03 {
        text-align: center;
    }

    .p-removalBox .table_title02 {
        text-align: center;
    }

    .p-removalBox .table_price:last-child {
        padding-left: 10px;
    }

    .p-removalBox .table_price {
        font-size: 1.5rem;
    }
}

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

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

    .p-removalBox__accessText {
        align-items: flex-start;
    }

    .p-removalBox__accessText h2 {
        font-size: 2.2rem;
        margin: 0 0 20px;
    }

    .p-removalBox__accessText h2:before {
        margin: 0 12px 0 0;
    }

    .p-removalPlace {
        font-size: 2.2rem;
        padding: 15px 0 15px 20px;
        border-left: 6px solid #00613A;
    }

    .p-removalAttention li {
        line-height: 1.4;
    }

    .p-removalAttention {
        margin: 0 0 50px;
        padding: 40px 20px;
    }

    .p-removalBox__accessText h2:before {
        width: 20px;
        height: 3px;
    }

    .p-removalBox__accessMap {
        height: 250px;
    }

    .p-removalBox__accessText {
        margin: 0 0 15px;
    }

    .p-removalBox:not(:last-child) {
        margin: 0 0 75px;
    }

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

/*------ construction ------*/

.p-serviceConstruction .p-servicePage__boxImg {
    background-image: url(images/service_intro_construction.jpg);
}

.p-serviceConstruction .p-servicePage__infoBg {
    background-image: url(images/service_info_construction.jpg);
}

.p-serviceConstruction .p-serviceStrength {
    margin: 0 0 130px;
    padding: 90px 0 130px;
}

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

    .p-serviceConstruction .p-serviceStrength {
        margin: 0 0 70px;
        padding: 60px 0 70px;
    }
}

/*----------------------------------------
	company
----------------------------------------*/

.p-companyGreeting {
    margin: 0 0 130px;
}

.p-companyGreeting h3 {
    font-size: 3.5rem;
    letter-spacing: 0.05em;
    margin: 0 0 40px;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    text-align: center;
}

.p-companyGreeting__name {
    margin: 75px 0 0;
    text-align: center;
}

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

.table01 {
    display: block;
    width: 1000px;
    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 th {
    width: 24.5%;
    padding: 15px 0;
    border-bottom: 1px solid #00613A;
    font-weight: normal;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.12em;
    line-height: 1.4;
    color: #00613A;
}

.table01 td {
    padding: 15px;
    width: 75.5%;
    vertical-align: middle;
    border-bottom: 1px solid #DDDDDD;
    line-height: 1.75;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.p-companyOutline {
    margin: 0 0 130px;
    padding: 90px 0 120px;
    background-color: #F6F5F3;
}

.p-companyAccess {
    margin: 0 0 120px;
}

.p-companyAccess__wrap {
    position: relative;
    width: 100%;
    height: 550px;
    margin: 0 0 120px;
}

.p-companyAccess__wrap 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);
    border-radius: 10px;
}

.p-company__access {
    margin: 0 0 130px;
}

.p-companyAccess__boxMap {
    position: relative;
    width: 53.8%;
    height: 450px;
}

.p-companyAccess__boxMap 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);
    border-radius: 10px;
}

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

.p-companyAccess__box:not(:last-child) {
    margin: 0 0 60px;
}

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

.p-companyAccess__boxText h3 {
    font-size: 2.5rem;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 20px;
    padding: 5px 0 5px 15px;
    border-left: 6px solid #00613A;
}

@media screen and (max-width:1000px) {
    .table01 {
        width: 100%;
    }

    .table01 th,
    .table01 td {
        font-size: 1.6rem;
        width: 100%;
    }

    .table01 th {
        width: 100%;
        font-weight: bold;
        margin: 0 0 8px;
        padding: 8px 2% 0 2%;
        border: none;
    }

    .table01 td {
        width: 100%;
        padding: 0 2% 8px 2%;
        line-height: 1.25;
    }

    .table01 tr {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .p-company__area:before {
        width: 100%;
        height: 100%;
        background-size: 100%;
    }
}

@media screen and (max-width:820px) {
    .p-company__outline {
        margin: 0 auto 70px;
    }

    .p-company__outline h3 {
        font-size: 3rem;
        width: 500px;
        height: 70px;
    }

    .p-companyOutline {
        margin: 0 0 60px;
        padding: 60px 0 70px;
    }

    .p-company__attention {
        font-size: 1.1rem;
    }

    .table01 th,
    .table01 td {
        font-size: 1.4rem;
        width: 100%;
    }

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

    .p-companyGreeting__name {
        width: 200px;
        margin: 30px auto 0;
    }

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

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

    .p-companyAccess__wrap {
        height: 300px;
        margin: 0 0 70px;
    }

    .p-companyAccess__boxMap {
        height: 300px;
    }

    .p-companyAccess__boxText {
        margin: 0 0 0 40px;
    }

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

    .p-companyGreeting h3 {
        font-size: 2.8rem;
    }
}

@media screen and (max-width:590px) {
    .p-company__outline h3 {
        width: 100%;
        height: 60px;
        font-size: 2rem;
    }

    .p-companyGreeting__name img {
        width: 180px;
    }

    .p-companyAccess__boxText h3 {
        font-size: 2rem;
        margin: 0 0 10px;
    }

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

    .p-companyAccess__boxMap {
        width: 100%;
        height: 250px;
    }

    .p-companyAccess__boxText {
        width: 100%;
        margin: 10px 0 0;
    }

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

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

/*----------------------------------------
	citizen
----------------------------------------*/

.p-citizen {
    margin: 0 0 120px;
}

.p-citizenIntro__text h2 {
    font-size: 4rem;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    color: #00613A;
    margin: 0 0 40px;
    text-align: center;
}

.p-citizenIntro__text {
    width: 1100px;
    margin: 0 auto;
    background-color: #EAF6F0;
    border-radius: 20px;
    margin: -80px auto 120px;
    padding: 70px 0 80px;
}

.p-citizenIntro__text .c-text {
    width: 68%;
    margin: auto;
    line-height: 2.111;
}

.p-citizenIntro__img {
    width: 100%;
    height: 394px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(images/citizen_intro.jpg);
    border-radius: 10px;
}

.p-citizenActivity {
    margin: 0 0 130px;
}

.p-citizenActivity h2 {
    font-size: 4rem;
    letter-spacing: 0.06em;
    margin: 0 0 55px;
    padding: 20px 0;
    color: #00613A;
    background-color: #EAF6F0;
    text-align: center;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
}

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

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

.p-citizenActivity__list:nth-of-type(even) {
    flex-direction: row-reverse;
}

.p-citizenActivity__img {
    width: 48.4%;
}

.p-citizenActivity__text {
    width: 45%;
}

.p-citizenActivity__text h3 {
    font-size: 3.2rem;
    letter-spacing: 0.03em;
    margin: 0 0 40px;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    display: flex;
    align-items: center;
}

.p-citizenActivity__text h3:before {
    content: "";
    display: inline-block;
    background-image: url(images/title_deco.svg);
    width: 35px;
    height: 43px;
    margin: 0 14px 0 0;
}

.p-citizenActivity__contents {
    background-color: #F6F5F3;
    border-radius: 10px;
    margin: 40px 0 0;
    padding: 27px 40px;
}

.p-citizenActivity__contents h4 {
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    color: #00613A;
    margin: 0 0 10px;
}

.p-citizenActivity__contents ul li {
    font-size: 1.6rem;
    letter-spacing: 0.03em;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.688;
}

.p-citizenAppreciation {
    position: relative;
}

.p-citizenAppreciation__img {
    width: 58%;
    margin: 48px auto 0;
    padding: 0 0 120px;
}

.p-citizenAppreciation:before {
    content: "";
    width: 100%;
    height: 561px;
    background-color: #F6F5F3;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

@media screen and (max-width:1200px) {
    .p-citizenIntro__img {
        height: 280px;
    }

    .p-citizenIntro__text {
        width: 90%;
        padding: 70px 0 80px;
    }

    .p-citizenIntro__text .c-text {
        width: 85%;
    }

    .p-citizenAppreciation:before {
        height: 350px;
    }
}

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

    .p-citizenIntro__text {
        width: 94%;
        padding: 30px 0 40px;
        border-radius: 10px;
    }

    .p-citizenIntro__text h2 {
        font-size: 3rem;
    }

    .p-citizenIntro__img {
        height: 240px;
    }

    .p-citizenIntro__text h2 {
        font-size: 2.5rem;
        margin: 0 0 30px;
        padding: 12px 0;
    }

    .p-citizenIntro__text {
        margin: -50px auto 70px;
    }

    .p-citizenActivity h2 {
        font-size: 3rem;
        margin: 0 0 30px;
    }

    .p-citizenActivity__text h3:before {
        background-size: 100%;
        width: 25px;
        height: 25px;
        margin: 0 8px 0 0;
    }

    .p-citizenActivity__text h3 {
        font-size: 2.5rem;
    }

    .p-citizenActivity__list:not(:last-child) {
        margin: 0 0 60px;
    }

    .p-citizenActivity {
        margin: 0 0 60px;
    }

    .p-citizenAppreciation:before {
        height: 250px;
    }
}

@media screen and (max-width:590px) {
    .p-citizenIntro__text h2 {
        font-size: 2rem;
    }

    .p-citizenIntro__img {
        height: 180px;
    }

    .p-citizenActivity h2 {
        font-size: 2.2rem;
        margin: 0 0 25px;
    }

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

    .p-citizenActivity__img {
        width: 100%;
        margin: 0 0 30px;
    }

    .p-citizenActivity__text {
        width: 100%;
    }

    .p-citizenActivity__text h3 {
        margin: 0 0 25px;
    }

    .p-citizenActivity__contents {
        margin: 20px 0 0;
    }

    .p-citizenActivity__list:nth-of-type(even) {
        flex-direction: column;
    }

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

    .p-citizenActivity__contents ul li {
        font-size: 1.4rem;
    }

    .p-citizenAppreciation__img {
        width: 90%;
    }

    .p-citizenAppreciation__img {
        margin: 30px auto 0;
        padding: 0 0 50px;
    }
}

/*----------------------------------------
	news
----------------------------------------*/

.p-catch.p-catchNews .p-catch__img {
    background-image: url(images/news_catch.jpg);
}

.single-news {
    margin: 0 0 120px;
}

.p-news__catch {
    background-image: url(images/catch_news.jpg);
}

.p-news__archiveWrap {
    width: 55.5%;
    margin: 0 0 150px;
}

.p-news__archiveArticle a {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(198, 198, 198, 0.4);
    position: relative;
    transition: 0.3s;
}

.p-news__archiveArticle a:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 18px 18px;
    border-color: transparent transparent #00613A transparent;
    position: absolute;
    bottom: 0;
    right: 0;
}

.p-news__archiveArticle a:hover {
    opacity: 0.7;
}

.p-news__archiveArticle:last-child a {
    border-bottom: 1px solid rgba(198, 198, 198, 0.4);
}

.p-news__archiveInfo {
    display: flex;
    align-items: center;
    margin: 0 30px 0 0;
}

.p-news__archiveTime {
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.53);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin: 0 10px 0 0;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
}

.p-news__archiveTitle {
    font-size: 1.7rem;
    letter-spacing: 0.06em;
    font-weight: bold;
    color: #404040;
}

.p-news__archiveCategory {
    background-color: #00613A;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    height: 21px;
    border-radius: 11px;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
}

.post-type-archive-news .p-news__archiveWrap,
.tax-news_category .p-news__archiveWrap {
    width: 100%;
}

.single-info {
    display: flex;
    align-items: center;
    margin: 0 0 28px;
}

.single-info__time {
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    color: rgba(0, 0, 0, 0.53);
}

.single-news__title {
    font-size: 3.7rem;
    line-height: 1.486;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.08em;
    font-weight: bold;
    margin: 6px 0 50px;
    padding-bottom: 25px;
    border-bottom: 1px solid #7070704D;
}

.single-news__text {
    margin: 0 0 120px;
}

.single-news__text pre {
    white-space: pre-wrap;
}

.single-all__button {
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    font-weight: bold;
}

.single-all__button:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 46px;
    height: 46px;
    background-image: url(images/single_all_arrow.svg);
    margin: 0 20px 0 0;
    background-repeat: no-repeat;
}

.single-news__box {
    width: 63.3%;
}

.single-news__wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.single-news .p-sidebar__archive {
    width: 30%;
}

.single-news .c-button {
    margin: auto;
}

.single-news__img {
    margin: 0 0 40px;
}

.single-news__img img {
    width: 100%;
}

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

    .p-news__archiveArticle a {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .p-news__archiveTitle {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .p-news__archiveTime {
        font-size: 1.3rem;
    }

    .p-news__archiveCategory {
        font-size: 1.3rem;
    }

    .single-news__text {
        margin: 0 0 70px;
    }

    .single-news__wrap {
        flex-direction: column;
    }

    .single-news__box {
        width: 100%;
        margin: 0 0 50px;
    }

    .single-news__title {
        font-size: 3rem;
        line-height: 1.2;
        margin: 6px 0 30px;
        padding-bottom: 15px;
    }

    .single-info {
        margin: 0 0 18px;
    }

    #toc_container p.toc_title {
        font-size: 1.8rem;
    }

    .single-news {
        margin: 0 0 60px;
    }

    .single-news .p-sidebar__archive {
        width: 100%;
    }

    .single-info__time {
        font-size: 1.2rem;
    }
}

@media screen and (max-width:590px) {
    .single-news .p-sidebar__archive {
        width: 100%;
    }

    .single-all__button {
        margin: 30px 0 0;
    }

    .single-news__title {
        font-size: 2.4rem;
    }

    .single-news__text.c-text {
        line-height: 2;
    }

    .single-news__text {
        margin: 0 0 50px;
    }
}

/*----------------------------------------
	sidebar
----------------------------------------*/

.p-sidebar__archive {
    background-color: #fff;
    border: 1px solid rgba(112, 112, 112, 0.3);
    border-radius: 5px;
    padding: 40px 26px;
}

.p-sidebar__archiveTitle {
    position: relative;
    color: #00613A;
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    line-height: 1.5;
    margin: 0 0 35px;
    padding: 0 0 8px;
    font-size: 2.6rem;
    letter-spacing: 0.08em;
    border-bottom: 2px solid #00613A;
    text-transform: uppercase;
}

.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%;
    }
}

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

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

/*---- archive_works ----*/

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

.p-worksArchive .p-worksArchive__wrap {
    display: flex;
    flex-wrap: wrap;
}

.p-worksArchive .p-worksArchive__article {
    width: 31.12%;
    margin: 0;
}

.p-worksArchive .p-worksArchive__article:nth-of-type(n+4) {
    margin: 90px 0 0;
}

.p-worksArchive .p-worksArchive__article:not(:nth-child(3n+3)) {

    margin-right: 3.3%;
}

.p-worksArchive .p-worksArchive__text {
    background-color: transparent;
    padding: 0;
}

.p-worksArchive .p-worksArchive__img {
    position: relative;
}

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

.p-worksArchive .p-worksArchive__category {
    top: auto;
    bottom: 0;
}

.p-worksArchive__time {
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    margin: 20px 0 12px;
    text-align: left;
}

.p-worksArchive .p-works__archiveTitle {
    font-size: 2rem;
    letter-spacing: 0.04em;
    text-align: left;
}

.p-worksCategory__wrap ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 75px;
}

.p-worksCategory__wrap ul li {
    width: 250px;
    border-bottom: 1px solid #707070;
    padding: 0 0 14px;
}

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

.p-worksCategory__wrap ul li a {
    font-size: 2.2rem;
    letter-spacing: 0.04em;
    display: block;
    width: 100%;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    position: relative;
}

.p-worksCategory__wrap ul li a:after {
    content: "";
    display: inline-block;
    width: 34px;
    height: 34px;
    background-image: url(images/category_arrow.svg);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.p-worksArchive__categoryTitle {
    font-size: 3.5rem;
    letter-spacing: 0.06em;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    margin: 0 0 40px;
    text-align: center;
}

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

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

.p-worksArchive__article {
    width: 420px;
    margin: 0 25px;
}

.p-worksArchive__text {
    font-size: 2rem;
    letter-spacing: 0.04em;
    background-color: #E6EBF1;
    padding: 30px 15px;
    text-align: center;
    position: relative;
}

.p-worksArchive__category {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 24px;
    background-color: #00613A;
    color: #fff;
    position: absolute;
    top: -30px;
    left: 0;
}

@media screen and (max-width: 1200px) {
    .p-worksArchive .p-worksArchive__img img {
        height: 190px;
    }

    .p-worksArchive .p-works__archiveTitle {
        font-size: 1.8rem;
    }

    .p-worksCategory__wrap ul li:not(:nth-child(3n+3)) {
        margin: 0 30px 0 0;
    }

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

    .p-worksCategory__wrap ul li a:after {
        width: 28px;
        height: 28px;
        background-size: 100%;
    }
}

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

    .p-worksArchive .p-works__archiveTitle {
        line-height: 1.2;
    }

    .p-worksArchive .p-worksArchive__img img {
        height: 160px;
    }

    .p-worksArchive .p-worksArchive__article:nth-of-type(n+4) {
        margin-top: 50px;
    }

    .p-worksArchive__category {
        font-size: 1.4rem;
        padding: 0 15px;
    }

    .p-worksArchive__categoryTitle {
        font-size: 3rem;
        margin: 0 0 20px;
    }
}

@media screen and (max-width: 590px) {
    .p-worksCategory__wrap ul {
        flex-direction: column;
        margin: 0 0 40px;
    }

    .p-worksCategory__wrap ul li:not(:nth-child(3n+3)) {
        margin: 0;
    }

    .p-worksCategory__wrap ul li:nth-of-type(n+2) {
        margin: 14px 0 0;
    }

    .p-worksArchive .p-worksArchive__article:not(:nth-child(3n+3)) {
        margin-right: 0;
    }

    .p-worksArchive .p-worksArchive__article:not(:nth-child(2n+2)) {
        margin-right: 3.3%;
    }

    .p-worksArchive .p-worksArchive__article {
        width: 47%;
    }

    .p-worksArchive .p-worksArchive__article:nth-of-type(n+3) {
        margin-top: 35px;
    }

    .p-worksArchive__time {
        font-size: 1rem;
        margin: 8px 0 5px;
    }

    .p-worksArchive .p-works__archiveTitle {
        font-size: 3.4vw;
    }

    .p-worksArchive__category {
        font-size: 1rem;
        padding: 0 10px;
        height: 23px;
    }

    .p-worksArchive .p-worksArchive__img img {
        height: 130px;
    }

    .p-worksCategory__wrap ul li a {
        font-size: 1.6rem;
    }

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

/*---- single_works ----*/

.p-singleWorks {
    margin: 0 0 120px;
}

.p-singleWorks__wrap .swiper {
    width: 1000px;
}

.p-singleWorks__wrap .c-button {
    margin: auto;
}

.thumb-wrapper {
    width: 1000px;
    margin: 20px auto 60px;
    display: flex;
    flex-wrap: wrap;
}

.thumb-media {
    width: 24.25%;
    cursor: pointer;
}

.thumb-media img {
    width: 100%;
    height: 161px;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
}

.thumb-media:not(:nth-child(4n+4)) {
    margin-right: 1%;
}

.thumb-media:nth-of-type(n+5) {
    margin-top: 10px;
}

.swiper-slide img {
    object-fit: contain;
    height: 707px;
    width: 100%;
}

.p-singleWorks__text {
    width: 1000px;
    margin: 0 auto 80px;
}

.p-singleWorks table {
    display: block;
    width: 1000px;
    margin: 0 auto 80px;
}

.p-singleWorks tbody {
    display: block;
    width: 100%;
}

.p-singleWorks table tr {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-top: 1px dashed #707070;
}

.p-singleWorks table tr:last-child {
    border-bottom: 1px dashed #707070;
}

.p-singleWorks table tr th {
    width: 23.9%;
    font-size: 2.2rem;
    letter-spacing: 0.04em;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    text-align: left;
}

.p-singleWorks table tr td {
    width: 76.1%;
    font-size: 2rem;
    letter-spacing: 0.04em;
    color: #30404F;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 500;
    font-style: normal;
}

.p-singleWorks h1 {
    text-align: center;
    font-size: 4rem;
    letter-spacing: 0.05em;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    line-height: 1.45;
}

.p-singleWorks h1:after {
    content: "";
    display: block;
    margin: 20px auto 70px;
    width: 105px;
    height: 3px;
    background-color: #00613A;
}

.p-singleWorks .p-singleWorks__category {
    text-align: center;
}

.p-singleWorks .p-singleWorks__category a {
    display: inline-block;
    font-size: 1.9rem;
    margin: 0 auto 20px;
    padding: 8px 15px;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    background-color: #00613A;
    color: #fff;
}

.p-worksImg__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F6F5F3;
    border-radius: 20px;
    margin: 0 0 70px;
    padding: 70px;
}

.p-worksImg {
    width: 47%;
}

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

.p-worksImg figcaption {
    font-size: 2.2rem;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 700;
    font-style: normal;
    margin: 20px 0 0;
}

@media screen and (max-width: 1200px) {
    .swiper-slide img {
        height: 600px;
    }
}

@media screen and (max-width: 1100px) {
    .p-singleWorks__wrap .swiper {
        width: 100%;
    }

    .thumb-wrapper {
        width: 100%;
    }

    .p-singleWorks__text {
        width: 100%;
        margin: 0 auto 60px;
    }

    .p-singleWorks table {
        width: 100%;
    }
}

@media screen and (max-width: 820px) {
    .swiper-slide img {
        height: 500px;
    }

    .thumb-media img {
        height: 115px;
    }

    .thumb-media img {
        font-size: 3rem;
    }

    .p-singleWorks h1:after {
        margin: 16px auto 30px;
        width: 80px;
    }

    .p-singleWorks .p-singleWorks__category a {
        font-size: 1.6rem;
        margin: 0 auto 15px;
    }

    .p-singleWorks table tr td {
        font-size: 1.8rem;
    }

    .p-singleWorks table tr th {
        font-size: 2rem;
    }

    .p-singleWorks__text {
        margin: 0 auto 30px;
    }

    .p-worksImg__wrap {
        padding: 50px 40px;
    }
    
    .p-singleWorks {
        margin: 0 0 60px;
    }
}

@media screen and (max-width: 590px) {
    .swiper-slide img {
        height: 370px;
    }

    .thumb-media img {
        height: 82px;
    }

    .thumb-wrapper {
        margin: 0 auto 50px;
    }

    .thumb-media:nth-of-type(n+5) {
        margin-top: 3px;
    }

    .thumb-media img {
        height: 62px;
    }

    .p-singleWorks h1 {
        font-size: 2.2rem;
    }

    .p-singleWorks h1:after {
        margin: 16px auto 18px;
    }

    .p-singleWorks .p-singleWorks__category a {
        margin: 0 auto 10px;
    }

    .p-singleWorks table tr {
        padding: 12px 0;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .p-singleWorks table tr th {
        width: 100%;
        margin: 0 0 10px;
    }

    .p-singleWorks table tr th {
        font-size: 1.7rem;
    }

    .p-singleWorks table tr td {
        font-size: 1.4rem;
        width: 100%;
    }

    .p-singleWorks table {
        margin: 0 auto 40px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 25px !important;
    }

    .p-worksImg__wrap {
        padding: 40px 20px;
        flex-direction: column;
    }

    .p-worksImg {
        width: 100%;
    }

    .p-worksImg:nth-of-type(1) {
        margin: 0 0 40px;
    }

    .p-worksImg figcaption {
        font-size: 1.6rem;
    }

    .p-worksImg__wrap {
        margin: 0 0 40px;
    }
}

@media screen and (max-width: 430px) {
    .swiper-slide img {
        height: 285px;
    }
}

@media screen and (max-width: 360px) {
    .swiper-slide img {
        height: 240px;
    }
}

/*----------------------------------------
	contact
----------------------------------------*/

.p-contactTel h2 {
    font-size: 2.6rem;
    width: 100%;
    margin: 0 0 16px;
    padding: 12px 0;
    background-color: #EAF6F0;
    letter-spacing: 0.08em;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    margin: 0 0 53px;
}

.p-contactTel__box h3 {
    font-size: 2rem;
    letter-spacing: 0.08em;
    margin: 0 0 34px;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    line-height: 1.45;
    margin: 0 0 5px;
    text-align: center;
}

.p-contactTel__box {
    position: relative;
}

.p-contactTel__wrap {
    display: flex;
    justify-content: center;
    margin: 0 0 150px;
}

.p-contactTel__time {
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    font-weight: bold;
    line-height: 1.563;
    text-align: center;
}

.p-contactTel__number,
.p-contactFax__number {
    font-size: 4.4rem;
    font-weight: bold;
    letter-spacing: 0.08em;
    line-height: 1.477;
}

.p-contactTel__number {
    display: block;
    margin: 0 0 16px;
}

.p-contactTel__number:before {
    content: "";
    display: inline-block;
    width: 48px;
    height: 48px;
    margin: 0 9px 0 0;
    background-image: url(images/contact_tel_icon.svg);
}

.p-contactFax__number:before {
    content: "";
    display: inline-block;
    width: 57px;
    height: 55px;
    margin: 0 9px 0 0;
    background-image: url(images/contact_fax_icon.svg);
}

.p-contactForm {
    background-color: #F6F5F3;
    margin: 0 0 115px;
    padding: 80px 0 106px;
    position: relative;
}

.p-contact__wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.table_contact_wrap {
    width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    background-color: #fff;
    padding: 80px 65px 90px;
    position: relative;
    z-index: 10;
}

.table_contact {
    display: block;
    width: 100%;
    margin: auto;
}

.table_contact th {
    color: #333333;
    width: 23.2%;
    padding: 20px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.8rem;
}

.table_contact th .small {
    font-size: 1.2rem;
}

.contact_address_wrap div:first-child {
    margin: 0 0 20px;
}

.table_contact tbody {
    display: block;
}

.table_contact td {
    padding: 20px;
    width: 76.8%;
    vertical-align: middle;
}

.table_contact td input.text {
    width: 100%;
    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;
}

.table_contact td input.text.zip {
    width: 54%;
}

.table_contact td span {
    margin: 0 20px 0 0;
}

.table_contact td span:last-of-type {
    font-weight: bold;
    margin: 0 0 15px;
}

.table_contact td textarea {
    width: 100%;
    border: none;
    height: 180px;
    padding: 20px 0 0 20px;
    border: 1px solid rgba(112, 112, 112, 0.3);
    background-color: #fff;
    font-size: 1.6rem;
    border-radius: 3px;
}

.table_contact td textarea.text_area_remarks {
    height: 237px;
}

.table_contact tr {
    display: flex;
    border-bottom: 1px solid #DDDDDD;
    width: 100%;
}

.table_contact tr:first-child {
    border-top: 1px solid #DDDDDD;
}

.required {
    display: inline-block;
    background-color: #00613A;
    color: #fff;
    margin-left: 20px;
    padding: 3px;
    font-weight: normal;
    letter-spacing: 0.06em;
    font-size: 1.1rem;
    border-radius: 2px;
}

.contact_button {
    width: 360px;
    height: 60px;
    margin: 40px auto 0;
    position: relative;
}

.contact_button input {
    background: none;
    border: none !important;
    background-color: #00613A !important;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.07em;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 33px;
}

.mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0;
}

.table_radio_wrap {
    display: flex;
}

.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;
}

.agree_check .mwform-checkbox-field {
    margin: 0;
}

.mw_wp_form_confirm {
    margin: 0 0 120px;
}

.mw_wp_form_confirm .required,
.mw_wp_form_confirm .option,
.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;
    flex-direction: column;
}

.table_radio_wrap span:not(:last-child) {
    margin: 0 0 15px;
}

.table_contact_privacy {
    color: #00613A;
    display: block;
    text-align: center;
    margin: 45px auto 55px;
    padding: 0 0 8px;
    font-weight: bold;
}

.table_contact_privacy span {
    border-bottom: 1px solid #00613A;
    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;
}

.contact_address_wrap input {
    width: 100%;
    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) !important;
}

.contact_address_box:not(:last-child) {
    margin: 0 0 13px;
}

.contact_address_box:nth-of-type(1) input {
    width: 45.6%;
    margin: 0 0 20px;
}

.contact_address_box:nth-of-type(2) input {
    width: 26%;
}

.contact_address_box:nth-of-type(n+3) input {
    width: 60%;
}

.contact_address_box span {
    display: inline-block;
    width: 74px;
}

.contact_address_wrap {
    display: flex;
    flex-direction: column;
}

.contact_address_wrap div:first-child {
    margin: 0 0 20px;
}

.p-contactTel__time {
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    font-weight: bold;
    line-height: 1.563;
    text-align: center;
}

@media screen and (max-width: 1300px) {
    .p-contact__tel {
        width: 30%;
        height: 210px;
    }
}

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

    .p-contactTel__number,
    .p-contactFax__number {
        font-size: 3.8rem;
    }

    .p-contactTel__number:before {
        background-size: 100%;
        width: 35px;
        height: 35px;
    }

    .p-contactFax__number:before {
        background-size: 100%;
        width: 37px;
        height: 35px;
    }

    .p-contactTel__box h2 {
        font-size: 2.5rem;
    }
}

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

    .p-contactTel__number,
    .p-contactFax__number {
        font-size: 3.5vw;
    }

    .table_contact_wrap {
        width: 100%;
        padding: 50px 40px 80px;
    }

    .page_contact_subtitle {
        width: 100%;
    }

    .table_contact td input.text {
        width: 80%;
    }

    .table_contact th {
        width: 37%;
    }

    .table_contact td {
        width: 63%;
    }

    .table_radio_wrap {
        flex-direction: column;
        line-height: 2;
    }

    .c-table__date_wrap {
        display: flex;
        flex-direction: column;
    }

    .table_contact td span {
        margin: 0 0 5px 0;
    }

    .p-contact__wrap {
        flex-direction: column;
        justify-content: center;
    }

    .p-contact__form {
        width: 100%;
    }

    .p-contact__tel {
        width: 80%;
        margin: 0 0 50px;
    }

    .table_contact_privacy {
        font-size: 1.2rem;
        margin: 25px auto 35px;
    }
}

@media screen and (max-width: 820px) {
    .p-contactTel__box h3 {
        font-size: 1.8rem;
    }

    .p-contactTel__number:before {
        width: 27px;
        height: 27px;
    }

    .p-contactFax__number:before {
        width: 30px;
        height: 29px;
    }

    .p-contactTel h2 {
        margin: 0 0 35px;
    }

    .p-contactTel__wrap {
        margin: 0 0 60px;
    }

    .table_contact tr:nth-of-type(1) td {
        display: flex;
        flex-direction: column;
        line-height: 2;
    }

    .mw_wp_form .bg01 {
        margin: 0 0 40px;
    }

    .table_contact tr {
        flex-direction: column;
        padding: 20px 0;
    }

    .table_contact th {
        width: 100%;
        font-size: 1.6rem;
        justify-content: flex-start;
        margin: 0 0 15px;
        padding: 0;
    }

    .table_contact td {
        width: 100%;
        padding: 0;
    }

    .mw_wp_form .bg01 {
        padding: 40px 0;
    }

    .table_contact td input.text {
        width: 60%;
        height: 35px;
    }

    .table_contact td input.text.addr {
        width: 85%;
    }

    .selectbox {
        height: 35px;
    }

    .contact_time_wrap {
        margin: 0 0 30px;
    }

    .agree_check {
        line-height: 1.75;
        margin-bottom: 30px;
    }

    .contact_time_wrap {
        font-size: 1.4rem;
    }

    .contact_button {
        width: 230px;
        height: 45px;
        margin: 30px auto 0;
    }

    .contact_button::before {
        left: 50px;
    }

    .mw_wp_form_confirm {
        margin: 0 0 80px;
    }

    .table_radio_wrap span:not(:last-child) {
        font-size: 1.4rem;
        margin: 0 0 8px;
    }

    .p-contact__list {
        width: 47%;
        font-size: 1.6rem;
    }

    .p-contact__flowTitle {
        font-size: 1.8rem;
        margin: 0 0 30px;
    }

    .p-contact__flowNumber {
        font-size: 2.8rem;
    }

    .p-contact__flowNumber span {
        font-size: 1.8rem;
    }

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

    .p-contact__introArrow {
        margin: 0 auto 35px;
    }

    .p-contact__listsWrap {
        margin: 0 auto 60px;
    }

    .p-contact__flowList h3 {
        margin: 0 0 15px;
    }

    .p-contact__flowImg {
        height: 150px;
    }

    .p-contact__tel {
        width: 100%;
        height: auto;
        border-radius: 5px;
        padding: 30px 10px;
    }

    .p-contact__telNumber a {
        font-size: 3rem;
    }

    .p-contact__telNumber a:before {
        background-size: 100%;
        width: 20px;
        height: 20px;
        margin-right: 5px;
    }

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

    .p-contact__telNumber span {
        font-size: 1.2rem;
    }

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

    .p-contact__tel h2 {
        margin: 0 0 20px;
    }

    .contact_button input {
        font-size: 1.4rem;
    }

    .table_contact td select {
        width: 200px;
    }

    .p-contactForm {
        padding: 40px 0 60px;
    }

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

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

    .p-contactTel__time {
        font-size: 1.1rem;
    }

    .p-contactTel__number,
    .p-contactFax__number {
        font-size: 4.5vw;
    }
}

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

    .p-contactTel h2 {
        font-size: 1.8rem;
        margin: 0 0 15px;
        padding: 8px 0;
    }

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

    .p-contactTel__box h3 {
        font-size: 1.5rem;
    }

    .p-contactTel__number,
    .p-contactFax__number {
        font-size: 2.7rem;
        text-align: center;
    }

    .p-contactTel__number:before {
        width: 25px;
        height: 25px;
    }

    .p-contactFax__number:before {
        width: 27px;
        height: 25px;
    }

    .table_contact_wrap {
        padding: 50px 20px 60px;
    }

    .table_contact td input.text {
        width: 100%;
        height: 45px;
        font-size: 1.5rem;
    }

    .p-contact__list {
        width: 47%;
        height: 40px;
    }

    .p-contact__list:not(:nth-child(2n+2)) {
        margin-right: 1.6%;
    }

    .p-contact__list:nth-of-type(2n) {
        margin-right: 0;
    }

    .p-contact__list:nth-child(n+3) {
        margin-top: 15px;
    }

    .p-contact__introArrow {
        width: 80px;
    }

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

    .p-contact__flowLists {
        margin: 0 0 60px;
    }

    .p-contact__flowList {
        width: 90%;
        padding: 40px 30px;
    }

    .p-contact__flowImg {
        margin: 0 0 -25px;
    }

    .table_contact td input.text.addr {
        width: 100%;
    }

    .table_contact td input.text.zip {
        width: 75%;
    }

    .p-recruit__entry {
        padding: 70px 3.7% 80px;
    }
}

/*----------------------------------------
	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 #00613A;
    margin: 0 0 15px;
}

.privacy_title02 {
    font-size: 2.2rem;
    line-height: 1.4;
    padding: 0.5em;
    color: #fff;
    background-color: #00613A;
    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-catch404 .p-catch__img {
    background-image: url(images/catch_404.jpg);
}

.p-catch404 .p-catch__jp {
    font-size: 4.5rem;
}

.error404 .c-button {
    margin: auto;
}
