@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/* 変数 */
:root {
    --main-color: #459E30;
    --sb-color: #387D44;
    --sb-sb-color: #016436;
    --main-txt-color: #365442;
    --accent-color: #EBD963;
    --main-background-color: #fff;
    --section-background-color: #F6F4EF;
    --section-r-background-color: #a7d39b;
    --main-border-color: #fff;
    --main-font-size: 16px;
    --headding-font-size: 32px;
    --headding-font-size-sp: 24px;
    --font-weight-400: 400;
    --font-weight-500: 500;
    --font-weight-700: 700;
    --main-border-radius: 6px;
    --hover-transition: .4s;
}

/* アニメーション */
@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    10% {
        transform: translateY(-5px);
    }
    20% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-5px);
    }
    40% {
        transform: translateY(0);
    }
    }
    .anime-object {
    animation: bounce2 6s linear infinite;
}

/* 基本設定
------------------------------------------*/
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: var(--font-weight-400);
    font-style: normal;
    font-size: var(--main-font-size);
    color: var(--main-txt-color);
    line-height: 1.6;
    letter-spacing: 0.1em;
    text-align: left;
    background: var(--main-background-color);
}
html, body {
    width: 100%;
    height: 100%;
}
img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 0;
}
.header {
    display: flex;
    flex-direction: column;
    gap: 7vw;
    position: fixed;
    top: 0;
    left: 0;
    padding: 1.6vw 2vw;
    z-index: 30;
    transition: var(--hover-transition);
}
.header-logo a img {
    width: 12vw;
}
.hamburger,
.sp-nav-menu {
    display: none;
}
.globalnav-list {
    display: flex;
    flex-direction: column;
    font-size: 1vw;
    gap: 12px;
    text-align: right;
    padding: 0 32px;
    font-weight: var(--font-weight-500);
    color: #459E30;
}
.globalnav-list li a {
    display: inline-block;
    position: relative;
    transition: var(--hover-transition);
    overflow: hidden;
}
.globalnav-list li a::after{
    position: absolute;
    content: '';
    right: 0%;
    width: 300%;
    height: 1px;
    bottom: 0;
    background: linear-gradient(to left, #fff 34%,#52c439 100%,#52c439 70%,#ffffff 70%);
    transition: var(--hover-transition);
}

.globalnav-list li a:hover::after{
    right: -200%;
}
.globalnav-list li a:hover {
    background: var(--section-background-color);
}
.sb-globalnav-list {
    transition: var(--hover-transition);
    padding-top: 8px;
}
.globalnav-item p {
    font-size: .7vw;
}
.globalnav-item:hover .sb-globalnav-list {
    display: inherit;
    transition: var(--hover-transition);
}
.fv {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.fv-img img {
    width: 50%;
    display: block;
    margin-left: auto;
}
.fv-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
}
.fv-back img {
    width: 100vw;
    margin-top: -6vw;
    height: 110vh;
}
.fv-copy {
    position: absolute;
    top: 60%;
    left: 33%;
    transform: translate(-50%,-50%);
    z-index: 1;
}
.fv-copy img {
    width: 4.4vw;
}
.fv-ill {
    position: absolute;
    bottom: -0;
    right: 1%;
    z-index: 1;
}
.fv-ill img {
    width: 30vw;
}
.headding {
    color: var(--main-color);
    position: relative;
    margin-bottom: 40px;
}
.headding span {
    font-size: 15px;
}
.headding h2 {
    font-size: 28px;
    font-weight: var(--font-weight-500);
    margin-top: 8px;
}
.back-l {
    position: absolute;
    top: -88px;
    left: -120px;
}
.btn a {
    display: block;
    margin: 40px auto 0;
    width: fit-content;
    padding: 16px 48px;
    border-radius: 50px;
    color: var(--main-color);
    font-weight: var(--font-weight-500);
    background: var(--accent-color);
    transition: var(--hover-transition);
}
.btn a:hover {
    transition: var(--hover-transition);
    box-shadow: rgba(149, 165, 153, 0.3) 0px 6px 12px;
}
.about-content {
    max-width: 800px;
    margin: 120px auto;
    /* text-align: center; */
}
.about-content h2 {
    font-size: 32px;
    margin-bottom: 40px;
    line-height: 1.8;
    color: var(--main-color);
    font-weight: var(--font-weight-500);
}
.about-content p {
    font-size: 18px;
    line-height: 2.2;
    color: var(--main-color);
    font-weight: var(--font-weight-500);
}
.back-l img {
    width: 88px;
}
.back-l1 img {
    width: 188px;
}
.icon-img3 img {
    width: 120px;
}
.icon-img4 img {
    width: 208px;
}
.icon-img5 img {
    width: 208px;
}
.service-content ul {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.service-content ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    transition: var(--hover-transition);
}
.service-content ul li a:hover .s-btn::before {
    border: 8px solid var(--main-color);
}
.s-img {
    width: 360px;
    overflow: hidden;
    border-radius: 80px;
}
.s-img img {
    border-radius: 80px;
    transition: var(--hover-transition);
}
.service-content ul li a:hover .s-img img {
    transform: scale(1.1);
    transition: var(--hover-transition);
    opacity: .8;
}
.s-box {
    width: 70%;
}
.s-box h3 {
    font-size: 20px;
    font-weight: var(--font-weight-500);
    margin-bottom: 24px;
}
.arrow{
	position: relative;
	display: inline-block;
	padding: 0 0 0 16px;
	color: #000;
	vertical-align: middle;
	text-decoration: none;
	width: 100%;
    margin-top: 40px;
    transition: var(--hover-transition);
}
.arrow::before,
.arrow::after{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
    transition: var(--hover-transition);
}
.s-btn::before {
    width: 40px;
	height: 40px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: var(--main-color);
    border: 1px solid var(--main-background-color);
    transition: var(--hover-transition);
}
.s-btn::after {
    right: 16px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
    transition: var(--hover-transition);
}
.works {
    background: var(--section-background-color);
}
.works-content ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
}
.works-content ul article {
    width: calc((100% - 32px*2)/3);
}
.works-item {
    position: relative;
    transition: var(--hover-transition);
}
.cate {
    position: absolute;
    top: 20px;
    right: 0;
    font-size: 14px;
    font-weight: var(--font-weight-500);
}
.landscaping {
    background: var(--main-color);
    color: var(--main-background-color);
    padding: 2px 12px;
    border-radius: 24px 0 0 24px;
}
.management {
    background: var(--accent-color);
    color: var(--main-color);
    padding: 2px 12px;
    border-radius: 24px 0 0 24px;
}
.design {
    background: var(--sb-sb-color);
    color: var(--accent-color);
    padding: 2px 12px;
    border-radius: 24px 0 0 24px;
}
.works-img {
    overflow: hidden;
    border-radius: 32px;
}
.works-img img {
    border-radius: 32px;
}
.works-item:hover {
    opacity: .8;
    transition: var(--hover-transition);
}
.works-item h3 {
    font-size: 18px;
    font-weight: var(--font-weight-500);
    color: var(--main-color);
    margin-top: 12px;
}
.recruit {
    background: var(--section-r-background-color);
    color: var(--sb-sb-color);
    position: relative;
}
.back-l1 {
    position: absolute;
    top: -112px;
    right: 48px;
}
.r-headding {
    color: var(--sb-sb-color);
}
.recruit-content ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}
.recruit-content ul li {
    width: calc((100% - 80px)/2);
}
.recruit-img img {
    width: 80%;
    aspect-ratio: 1;
    border-radius: 500px;
}
.r-btn-area {
    position: relative;
}
.icon-img3 {
    position: absolute;
    top: 16px;
    left: -112px;
}
.r-btn a {
    margin-left: 0;
}
.r-headding p {
    margin: 24px 0 80px;
}
.c-headding {
    text-align: center;
}
.c-headding p {
    margin-top: 24px;
}
.contact-content ul {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.contact-content ul li {
    box-shadow: rgba(149, 165, 153, 0.3) 0px 6px 12px;
    padding: 40px;
    width: calc(100% - 16px);
    text-align: center;
}
.contact-content ul li span {
    font-size: 18px;
    font-weight: 500;
    display: block;
}
.c-tel {
    display: block;
    margin-top: 16px;
    font-size: 36px;
    font-weight: 500;
    color: var(--main-color);
}
.contact-content ul li p {
    color: var(--main-color);
    font-size: 14px;
    letter-spacing: .02em;
}
.footer {
    background: #BAE391;
    position: relative;
    overflow: hidden;
    padding-top: 40px;
}
.back-l2 {
    position: absolute;
    top: 0;
    left: 0;
}
.f-content {
    text-align: center;
    position: relative;
}
.icon-img4 {
    position: absolute;
    top: -120px;
    right: -120px;
}
.icon-img5 {
    position: absolute;
    top: -88px;
    left: 0;
}
.icon-img6 {
    position: absolute;
    bottom: -100px;
    left: -240px;
}
.icon-img7 {
    position: absolute;
    bottom: -100px;
    right: -240px;
}
.icon-img6 img {
    width: 248px;
}
.icon-img7 img {
    width: 320px;
}
.f-logo img {
    width: 224px;
}
.footer-others {
    color: var(--main-color);
    margin-top: 24px;
    margin-bottom: 40px;
    font-size: 15px;
    font-weight: var(--font-weight-500);
    letter-spacing: .01em;
}
small {
    color: var(--main-color);
    font-weight: var(--font-weight-500);
}
.u-page {
    position: relative;
    overflow: hidden;
}
.u-back-l {
    position: absolute;
    top: 0;
    right: 0;
    width: 60vw;
    height: 50vh;
    content: '';
    background: #BAE391;
}
.u-wrap {
    max-width: 56vw;
}
.u-top-img {
    position: relative;
    z-index: 1;
}
.u-top-img img {
    width: 74vw;
    height: 50vh;
    border-radius: 64px;
}
.icon-img8 {
    position: absolute;
    bottom: 8vw;
    right: 2vw;
    z-index: 2;
}
.icon-img8 img {
    width: 12vw;
}
.u-page-title {
    margin-top: 2vw;
    padding-bottom: 2vw;
    border-bottom: 2px dotted #BAE391;
    color: var(--main-color);
}
.u-page-title span {
    display: block;
    font-size: .9vw;
}
.u-page-title h2 {
    font-size: 1.6vw;
    font-weight: var(--font-weight-500);
}
.u-headding {
    position: relative;
    padding: 16px 0;
    margin-bottom: 80px;
    border-radius: 50px;
    background: var(--section-background-color);
}
.u-h-icon {
    position: absolute;
    top: -16px;
    left: 4px;
}
.u-h-icon img {
    width: 72px;
}
.u-headding h3 {
    font-size: 24px;
    font-weight: var(--font-weight-500);
    margin-left: 96px;
}
.u-content ul {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 80px;
}
.u-content ul li:first-child {
    width: 60%;
}
.u-content ul li:last-child {
    width: 40%;
}

.u-service-inner h4 {
    font-size: 24px;
    font-weight: var(--font-weight-500);
    margin-bottom: 24px;
}
.txt-color {
    /* 好みの色と高さを変数化 */
    --marker-color: #fcec9b;
    --marker-height: 0.5em; /* 塗る高さ */

    background: linear-gradient(
        to bottom,
        transparent calc(100% - var(--marker-height)),
        var(--marker-color) 0
    );
    /* 文字にくっつきすぎるときは行間を少し広げる */
    line-height: 1.6;
    font-weight: var(--font-weight-500);
}

.u-service-img img {
    border-radius: 80px;
}
.u-s-works {
    background: var(--section-background-color);
}
.u-sb-headding {
    font-size: 32px;
    font-weight: var(--font-weight-500);
    text-align: center;
    margin-bottom: 64px;
}
.u-s-works-content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}
.u-s-works-content ul li {
    width: calc((100% - 32px*2)/3);
    position: relative;
}
/* .g-w-content ul {
    justify-content: center;
}
.g-w-content ul li {
    width: calc((100% - 32px)/2);
} */
.u-s-works-img img {
    border-radius: 40px;
}
.u-s-works-tag {
    position: absolute;
    top: -16px;
    right: -16px;
}
.u-s-works-tag img {
    width: 80px;
}
.u-flow-content ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.u-flow-content ul li {
    display: flex;
    align-items: center;
    background: var(--main-background-color);
    border: 8px solid var(--section-background-color);
    padding: 32px 40px;
    border-radius: 32px;
}
.flow-step {
    color: var(--main-color);
    text-align: center;
    line-height: 1.2;
    padding-right: 24px;
    border-right: 2px solid #F6F4EF;
}
.step-txt {
    display: block;
    letter-spacing: .01em;
    font-size: 14px;
}
.step-nub {
    font-size: 32px;
    font-weight: var(--font-weight-500);
}
.flow-inner {
    padding-left: 24px;
}
.flow-inner h4 {
    font-size: 24px;
    font-weight: var(--font-weight-500);
    margin-bottom: 16px;
}
.u-s-works-content ul li p {
    margin-top: 24px;
}
.u-cate {
    display: flex;
    align-items: center;
    gap: 64px;
    color: var(--main-color);
    margin-bottom: 80px;
}
.u-cate-title p {
    font-weight: var(--font-weight-500);
    font-size: 18px;
}
.u-cate-tag ul {
    display: flex;
    gap: 16px;
    font-weight: var(--font-weight-500);
}
.u-cate-tag ul li a {
    padding: 16px 32px;
    background: var(--section-background-color);
    border-radius: 50px;
    transition: var(--hover-transition);
}
.u-cate-tag ul li a:hover {
    background: var(--main-color);
    color: var(--section-background-color);
    transition: var(--hover-transition);
}
.u-cate-tag ul .active a {
    background: var(--main-color);
    color: var(--section-background-color);
}
.s-top-img {
    position: relative;
    z-index: 1;
}
.s-top-img img {
    height: 70vh;
    border-radius: 64px;
}
.s-cate {
    font-size: 18px;
}
.s-news-body {
    padding: 80px 0;
}
table {
    width: 100%;
}
.t-th,
.t-td {
    padding: 16px 0;
    border-bottom: 1px solid var(--section-background-color);
    font-weight: var(--font-weight-400);
}
.ricruit-content {
    background: var(--main-background-color);
    border: 8px solid var(--section-background-color);
    padding: 80px;
    border-radius: 32px;
}
.r-th {
    background: #d5efbb;
    padding-left: 24px;
    border-bottom: 1px solid var(--main-border-color);
}
.r-td {
    padding-left: 24px;
}
.ricruit-inner h4 {
    margin-bottom: 0;
}
.u-contact-headding {
    margin-bottom: 80px;
}
.u-tel-contact ul {
    display: flex;
    align-items: center;
    gap: 24px;
}
.u-tel-contact ul li {
    margin: 0 auto 80px;
    width: 50%;
    text-align: center;
    box-shadow: rgba(149, 165, 153, 0.3) 0px 6px 12px;
    padding: 40px;
}
.u-tel-contact ul li .tel-time {
    display: block;
    color: var(--main-color);
    font-size: 14px;
    letter-spacing: .02em;
}
.u-tel-contact ul li a {
    display: block;
    margin-top: 16px;
    font-size: 36px;
    font-weight: 500;
    color: var(--main-color);
}
.u-tel-contact ul li .fax {
    margin-top: 24px;
    font-size: 24px;
    font-weight: 500;
}
.u-tel-contact ul li .tel-size {
    font-size: 18px;
}
.u-form {
    margin-top: 40px;
}
.u-form input, .u-form textarea {
  width: 100%;
  background: #F9F9F9;
  border: 1px solid #e0e0e0;
  padding: 16px;
  border-radius: 8px;
}
.c_tr {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.c_tr_b {
  display: flex;
  flex-direction: column;
}
.c_th, .c_th_b {
  width: 100%;
  padding: 16px 0;
  display: flex;
  align-items: center;
}
.c_td {
  width: 100%;
}
.required {
  font-size: 18px;
  color: #DF1E00;
  margin-left: 8px;
}
.mw_wp_form .error {
  color: #DF1E00 !important;
  margin-top: 8px;
}
::placeholder{
  color:#ccc;
}
.u-contact-content {
  text-align: center;
}
select {
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
}
input:focus, textarea:focus {
  outline: auto;
}
.send__btn {
  max-width: 540px;
  margin: 0 auto;
  margin-top: 40px;
  text-align: center;
}
.send {
  padding: 32px !important;
  border-radius: 50px !important;
  background: var(--accent-color) !important;
  color: var(--main-color);
  font-size: 20px !important;
  font-weight: 500 !important;
  transition: var(--hover-transition);
  border: none !important;
}
.send:hover {
  box-shadow: rgba(149, 165, 153, 0.3) 0px 6px 12px;
  transition: var(--hover-transition);
}
.privacy {
    margin: 40px 0;
}
.privacy-box {
    border: 1px solid #e4e4e4;
    border: 8px solid var(--section-background-color);
    padding: 40px;
    border-radius: 32px;
    margin-top: 24px;
    line-height: 2;
}
.privacy h3 {
    font-weight: var(--font-weight-700);
    margin-bottom: 16px;
}
.wpcf7 form .wpcf7-response-output {
    border: none !important;
    text-align: center;
    color: #DF1E00 !important;
}
/* Width Adjustment
-------------------------------------*/
@media only screen and (min-width: 1440px) {}
@media only screen and (max-width: 1440px) {
}
/* タブレット
-------------------------------------*/
@media screen and (max-width: 1140px) {
    .header {
        padding: 16px;
        width: 100%;
    }
    .header-logo a img {
        width: 180px;
    }
    .globalnav {
        display: none;
    }
    /* hamburger
    -------------------------------------*/
    .hamburger, .sp-nav-menu, .sp-line-contact {
        display: inherit;
    }
    .hamburger {
        position: fixed;
        width: 100%;
        right: 0;
        z-index: 32;
    }

    .hamburger-menu  {
        width: inherit;
        height: 100%;
        border: none;
    }

    .icon {
        width: 80px;
        height: 80px;
        display: block;
        position: relative;
        position: fixed;
        background: #fff;
        border-radius: 50px;
        top: 27px;
        right: 27px;
        box-shadow: rgb(155 147 138 / 20%) 0px 8px 24px;
    }

    .icon span {
        width: 34%;
        height: 3px;
        border-radius: 10px;
        position: absolute;
        background: var(--main-color);
        transition: opacity .3s,transform .3s;
    }

    .icon span:first-child {
        top: 26px;
        left: 26px;
    }

    .icon span:nth-child(2) {
        left: 26px;
        bottom: 42px;
    }
    .icon span:nth-child(3) {
        left: 26px;
        bottom: 32px;
    }

    .clicked .icon span:first-child {
        transform: rotate(45deg);
        left: 26px;
        top: 36px;
    }

    .clicked .icon span:nth-of-type(2) {
        left: 26px;
        bottom: 41px;
        opacity: 0;
    }
    .clicked .icon span:nth-of-type(3) {
        transform: rotate(-45deg);
        left: 25px;
        bottom: 41px;
    }

    .clicked .menu {
        opacity: 0;
    }

    .clicked .close {
        opacity: 1;
        right: 2px;
    }

    .h-txt {
        width: 34px;
        height: 14px;
        display: block;
        position: absolute;
        top: 62px;
        right: 49px;
        font-size: 10px;
        letter-spacing: .1em;
        z-index: 1;
    }

    .menu {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        transition: visibility .3s,opacity .3s;
    }

    .close {
        opacity: 0;
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        z-index: 11;
        transition: visibility .3s,opacity .3s;
    }
    .sp-nav-menu {
        transition: .4s;
    }
    .sp-menu-content {
        width: 100%;
        height: 100vh;
        position: fixed;
        opacity: 0;
        visibility: hidden;
        transition: var(--hover-transition);
        left: 80px;
        top: 0;
    }

    .clicked .sp-menu-content {
        top: 0;
        left: 0;
        opacity: 1;
        z-index: 31;
        visibility: visible;
        transition: var(--hover-transition);
    }

    .sp-menu-content {
        text-align: left;
        padding: 280px 120px;
        overflow: scroll;
        overflow-x: scroll;
        overflow-y: scroll;
        display: flex;
        flex-direction: column;
        gap: 40px;
        color: #3d9129;
        background: #BAE391;
    }

    .sp-globalnav-item {
        position: relative;
        font-size: 24px;
        margin-bottom: 40px;
        line-height: 1.4;
    }
    .sb-globalnav-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .sb-globalnav-item {
        padding-left: 24px;
        font-size: 20px;
    }
    .sp-menu-back-l {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
    }
    .sp-menu-back-l img {
        height: 100vh;
    }
    .fv {
        height: 100vw;
        position: relative;
    }
    .fv-img {
        position: absolute;
        top: 0;
        right: -20vw;
    }
    .fv-img img {
        width: 80%;
        display: block;
        margin-left: auto;
    }
    .fv-back img {
        height: 46vh;
    }
    .fv-ill {
        bottom: -0;
        right: 0;
    }
    .fv-ill img {
        width: 46vw;
    }
    .fv-copy {
        top: 73%;
        left: 18%;
    }
    .fv-copy img {
        width: 8vw;
    }
    .wrap {
        padding: 80px;
    }
    .about-content h2 {
        font-size: 28px;
    }
    .about-content {
        margin: 80px 0;
    }
    .back-l {
        top: -40px;
        left: -80px;
    }
    .back-l img {
        width: 64px;
    }
    .back-l1 {
        top: -88px;
        right: 24px;
    }
    .back-l1 img {
        width: 148px;
    }
    .icon-img3 {
        top: 24px;
        left: -96px;
    }
    .icon-img3 img {
        width: 108px;
    }
    .recruit-content ul {
        gap: 64px;
    }
    .contact-content ul {
        flex-direction: column;
    }
    .icon-img4 {
        top: -120px;
        right: -80px;
    }
    .icon-img4 img {
        width: 164px;
    }
    .icon-img5 {
        top: -96px;
        left: 0;
    }
    .icon-img5 img {
        width: 140px;
    }
    .icon-img6 {
        bottom: -64px;
        left: -140px;
    }
    .icon-img6 img {
        width: 224px;
    }
    .icon-img7 {
        bottom: -56px;
        right: -240px;
    }
    .footer-others {
        margin-bottom: 80px;
    }
    .u-wrap {
        max-width: 100%;
        padding-bottom: 0;
    }
    .u-top-img img {
        width: 100%;
        height: 30vh;
        border-radius: 48px;
    }
    .u-back-l {
        width: 50vw;
        height: 30vh;
    }
    .u-page-title span {
        font-size: 14px;
    }
    .u-page-title h2 {
        font-size: 24px;
    }
    .icon-img8 {
        bottom: 9vw;
        right: 5vw;
    }
    .icon-img8 img {
        width: 14vw;
    }
    .u-h-icon {
        top: -4px;
        left: 4px;
    }
    .u-h-icon img {
        width: 48px;
    }
    .u-headding h3 {
        margin-left: 64px;
    }
    .u-headding {
        padding: 12px 0;
        margin-bottom: 40px;
    }
    .u-service-inner h4 {
        font-size: 20px;
    }
    .u-content ul {
        gap: 80px;
        padding: 0 64px;
        flex-direction: column;
    }
    .u-content ul li:first-child {
        width: 100%;
    }
    .u-content ul li:last-child {
        width: 80%;
    }
    .u-service-img img {
        border-radius: 64px;
    }
    .u-s-works-content ul li {
        width: calc((100% - 32px) / 2);
    }
    .u-s-works-tag img {
        width: 64px;
    }
    .u-sb-headding {
        font-size: 28px;
        margin-bottom: 48px;
    }
    .u-cate {
        gap: 24px;
        margin-bottom: 40px;
        font-size: 14px;
    }
    .u-cate-tag ul {
        gap: 8px;
    }
    .u-cate-tag ul li a {
        padding: 8px 12px;
    }
    .works-content ul article {
        width: calc((100% - 32px) / 2);
    }
    .u-cate-title p {
        font-size: 13px;
    }
    .s-top-img img {
        height: 40vh;
        border-radius: 64px;
    }
    .s-wrap {
        padding-bottom: 80px;
    }
    .ricruit-content {
        padding: 40px;
        font-size: 14px;
    }
    .r-th {
        padding-left: 16px;
    }
    .t-th, .t-td {
        line-height: 1.4;
    }
    .u-tel-contact ul li {
        width: 80%;
    }
}
/* スマートフォン
-------------------------------------*/
@media screen and (max-width: 767px) {
    .header-logo a img {
        width: 124px;
    }
    .hamburger,
    .sp-nav-menu {
        display: inherit;
    }
    .icon {
        width: 56px;
        height: 56px;
        top: 8px;
        right: 8px;
        box-shadow: rgb(155 147 138 / 20%) 0px 8px 24px;
    }
    .icon span:first-child {
        top: 16px;
        left: 19px;
    }
    .icon span:nth-child(2) {
        left: 19px;
        bottom: 32px;
    }
    .icon span:nth-child(3) {
        left: 19px;
        bottom: 27px;
    }
    .clicked .icon span:first-child {
        transform: rotate(45deg);
        left: 19px;
        top: 21px;
    }
    .clicked .icon span:nth-of-type(2) {
        left: 19px;
        bottom: 32px;
        opacity: 0;
    }
    .clicked .icon span:nth-of-type(3) {
        transform: rotate(-45deg);
        left: 19px;
        bottom: 32px;
    }
    .h-txt {
        top: 24px;
        right: 17px;
        letter-spacing: .01em;
        color: var(--main-color)
    }
    .menu {
        right: -1px;
    }
    .clicked .close {
        opacity: 1;
        right: -3px;
    }
    .sp-menu-content {
        padding: 80px;
        gap: 16px;
    }
    .sp-globalnav-item {
        position: relative;
        font-size: 16px;
        margin-bottom: 24px;
        line-height: 1.4;
        font-weight: var(--font-weight-500);
    }
    .sb-globalnav-list {
        gap: 12px;
        margin-top: 10px;
    }
    .sb-globalnav-item {
        padding-left: 8px;
        font-size: 16px;
    }
    .fv {
        height: 100vw;
        position: relative;
    }
    .fv-img {
        position: absolute;
        top: 0;
        right: -20vw;
    }
    .fv-img img {
        width: 80%;
        display: block;
        margin-left: auto;
    }
    .fv-back img {
        height: 46vh;
    }
    .fv-ill {
        bottom: -0;
        right: 0;
    }
    .fv-ill img {
        width: 46vw;
    }
    .fv-copy {
        top: 73%;
        left: 18%;
    }
    .fv-copy img {
        width: 8vw;
    }
    .wrap {
        padding: 40px 24px;
    }
    .about-content h2 {
        font-size: 20px;
        margin-bottom: 24px;
        line-height: 1.8;
    }
    .about-content p {
        font-size: 15px;
        line-height: 2;
    }
    .about-content {
        margin: 120px 0 40px;
    }
    .headding span {
        font-size: 12px;
    }
    .headding h2 {
        font-size: 18px;
    }
    .back-l {
        top: -32px;
        left: inherit;
        right: 4px;
    }
    .back-l img {
        width: 48px;
    }
    .service-content ul {
        gap: 40px;
    }
    .service-content ul li a {
        gap: 16px;
        flex-direction: column;
    }
    .s-img {
        width: 100%;
        border-radius: 64px;
    }
    .s-img img {
        border-radius: 64px;
    }
    .s-box {
        width: 90%;
    }
    .s-box h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }
    .s-box p {
        font-size: 14px;
    }
    .s-btn::before {
        width: 32px;
        height: 32px;
    }
    .s-btn::after {
        right: 13px;
        width: 8px;
        height: 8px;
    }
    .works-content ul {
        gap: 16px;
        width: 100%;
        height: auto;
        overflow-x: scroll;
        flex-wrap: inherit;
    }
    .works-content ul article {
        width: 80%;
        flex-shrink: 0;
    }
    .works-item h3 {
        font-size: 16px;
    }
    .cate {
        font-size: 13px;
        letter-spacing: .01em;
    }
    .btn a {
        display: block;
        margin: 40px auto 0;
        padding: 16px 24px;
        font-size: 14px;
    }
    .r-btn a {
        padding: 16px 48px;
    }
    .back-l1 {
        top: -48px;
        right: 4px;
    }
    .back-l1 img {
        width: 96px;
    }
    .recruit-content ul {
        gap: 40px;
        flex-direction: column;
    }
    .recruit-content ul li {
        width: 90%;
    }
    .r-headding p {
        margin: 24px 0 40px;
        font-size: 14px;
    }
    .icon-img3 {
        top: 24px;
        left: -24px;
    }
    .icon-img3 img {
        width: 80px;
    }
    .recruit-img img {
        width: 70%;
        display: block;
        margin: 0 auto;
    }
    .c-headding p {
        margin-top: 24px;
        font-size: 14px;
    }
    .contact-content ul li {
        width: 100%;
    }
    .contact-content ul li span {
        font-size: 15px;
        letter-spacing: .01em;
    }
    .c-tel {
        display: block;
        margin-top: 12px;
        font-size: 24px;
    }
    .contact-content ul li p {
        font-size: 12px;
        letter-spacing: .02em;
    }
    .f-logo img {
        width: 140px;
    }
    address {
        font-style: inherit;
        font-size: 12px;
    }
    small {
        font-size: 70%;
    }
    .footer-others {
        margin-bottom: 64px;
    }
    .icon-img4 {
        top: -80px;
        right: -16px;
    }
    .icon-img4 img {
        width: 88px;
    }
    .icon-img5 {
        top: -40px;
        left: 0;
    }
    .icon-img5 img {
        width: 72px;
    }
    .icon-img6 {
        bottom: -44px;
        left: -32px;
    }
    .icon-img6 img {
        width: 108px;
    }
    .icon-img7 img {
        width: 156px;
    }
    .icon-img7 {
        bottom: -32px;
        right: -96px;
    }
    .u-wrap {
        padding: 64px 24px 0;
    }
    .u-top-img img {
        border-radius: 40px;
    }
    .u-page-title span {
        font-size: 12px;
    }
    .u-page-title h2 {
        font-size: 20px;
        line-height: 1.4;
    }
    .u-page-title {
        margin-top: 16px;
        padding-bottom: 8px;
    }
    .icon-img8 {
        bottom: 16vw;
        right: 3vw;
    }
    .icon-img8 img {
        width: 72px;
    }
    .u-h-icon {
        top: 0px;
        left: 4px;
    }
    .u-h-icon img {
        width: 32px;
    }
    .u-headding {
        padding: 10px 0;
        margin-bottom: 24px;
    }
    .u-headding h3 {
        margin-left: 48px;
        font-size: 18px;
    }
    .u-content ul {
        gap: 40px;
        padding: 0;
    }
    .u-service-inner h4 {
        font-size: 18px;
    }
    .u-service-inner p {
        font-size: 15px;
    }
    .u-service-img img {
        border-radius: 48px;
    }
    .u-sb-headding {
        font-size: 20px;
        margin-bottom: 24px;
    }
    .u-s-works-content ul li {
        width: 80%;
        margin: 0 auto;
    }
    .u-s-works-tag {
        right: -32px;
    }
    .u-flow-content ul {
        gap: 12px;
    }
    .u-flow-content ul li {
        border: 6px solid var(--section-background-color);
        padding: 24px 16px;
        border-radius: 24px;
        flex-direction: column;
        gap: 16px;
    }
    .flow-step {
        color: var(--main-color);
        text-align: center;
        line-height: 1.2;
        padding-right: 0;
        padding-bottom: 8px;
        border-right: none;
        border-bottom: 1px solid var(--main-color);
    }
    .flow-inner {
        padding-left: 0;
    }
    .flow-inner h4 {
        font-size: 18px;
        font-weight: var(--font-weight-500);
        margin-bottom: 16px;
        line-height: 1.4;
        text-align: center;
        margin-right: 16px;
    }
    .flow-inner p {
        font-size: 15px;
    }
    .u-s-works-content ul li p {
        margin-top: 16px;
        font-size: 14px;
    }
    .u-cate {
        flex-direction: column;
    }
    .u-cate-tag ul {
        gap: 24px 8px;
        flex-wrap: wrap;
        font-size: 13px;
        justify-content: center;
    }
    .u-works-content ul {
        gap: 24px;
        width: 100%;
        height: inherit;
        overflow-x: inherit;
        flex-wrap: wrap;
    }
    .works-content ul article {
        width: 100%;
    }
    .s-top-img img {
        height: 36vh;
        border-radius: 32px;
    }
    .s-news-body {
        padding: 24px 0;
        font-size: 15px;
    }
    .s-wrap {
        padding-bottom: 80px;
    }
    .ricruit-content {
        padding: 16px;
        font-size: 14px;
        border: 6px solid var(--section-background-color);
    }
    .r-tr {
        display: flex;
    flex-direction: column;
    }
    .r-th {
        width: 100%;
        padding: 12px;
    }
    .t-td {
        padding-left: 8px;
    }
    .r-td {
        padding: 18px 0;
    }
    .company-content {
        font-size: 14px;
    }
    .u-contact-headding {
        margin-bottom: 24px;
    }
    .u-contact-headding p,
    .u-contact-form p {
        font-size: 15px;
    }
    .u-tel-contact ul li {
        width: 100%;
        margin: 0 auto 48px;
        padding: 32px;
    }
    .u-tel-contact ul li a {
        margin-top: 0;
        font-size: 28px;
        letter-spacing: .01em;
    }
    .u-tel-contact ul li .tel-time {
        font-size: 13px;
    }
    .u-tel-contact ul li .tel-size {
        font-size: 14px;
    }
    .u-tel-contact ul li .fax {
        margin-top: 16px;
        font-size: 20px;
    }
    .wpcf7-list-item {
        display: inline-block;
        margin: 0;
        font-size: 14px;
    }
    .privacy {
        margin: 24px 0;
    }
    .privacy-box {
        border: 6px solid var(--section-background-color);
        padding: 24px;
        border-radius: 32px;
        margin-top: 24px;
        line-height: 1.8;
    }
    .privacy-box ul li p {
        font-size: 14px;
    }
    .send__btn {
        margin-top: 24px;
    }
    .send {
        padding: 16px !important;
        font-size: 18px !important;
    }
}
/* tel-sp
-------------------------------------*/
@media (min-width: 767px) {
    a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    }
}
@media screen and (max-width: 350px) {}