@charset "UTF-8";

/* フォント読み込み
-----------------------------------------------*/

@font-face {
    font-family: "Harenosora";
    src: url("../font/Harenosora.otf") format("opentype");
}

/* 共通css
-----------------------------------------------*/

html {
    font-size: 62.5%;
    scroll-behavior: smooth;

    @media (min-width: 768px) and (max-width: 1040px) {
        font-size: calc(10 / 1040 * 100vw);
    }

    @media (max-width: 576px) {
        font-size: calc(10 / 576 * 100vw);
    }
}

body {
    color: #292929;
    font-size: 1.6rem;
    font-weight: 400;
    font-family: "Noto Sans JP", "source-han-serif-japanese", "Harenosora", serif;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a,
span {
    display: inline-block;
}

@media screen and (min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}

.c-title {
    position: relative;
    display: inline-block;
    padding: 5px;
    font-size: 4.4rem;
    font-weight: 700;
    font-family: "source-han-serif-japanese", serif;
    letter-spacing: 0.08em;
    border-top: 1px solid #d1bfa3;
    border-bottom: 1px solid #d1bfa3;
}

.c-title__wrapper--center {
    text-align: center;
}

.c-title__wrapper--layout {
    text-align: left;
}

.p-news__title,
.p-service__title,
.p-feature__title,
.p-flow__title,
.p-message__title,
.p-recruit__title,
.p-contact__title,
.p-company__title {
    color: #502200;
}

.p-works__title {
    color: #fff;
}

.p-about__title {
    background: linear-gradient(14deg, #d99730 0%, #ffd84b 28%,#f4efa2 51%,#ffd84b 74%,#d99730 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.swiper-button-box {
    display: none;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: "";
}

.u-sp-only {
    display: none;
}

.u-pc-only {
    display: block;
}

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

    .c-title__wrapper--layout {
        text-align: center;
    }

    .swiper-button-prev,
    .swiper-button-next  {
        position: static;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        color: #382414;
        font-size: 1.3rem;
        border: 1px solid #382414;
        border-radius: 50%;
        transition: all 0.3s;
    }

    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        color: #fff;
        background-color: #382414;
    }

    .swiper-button-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .swiper-pagination-bullet-active {
        background-color: #382414;
    }

    .u-sp-only {
        display: block;
    }

    .u-pc-only {
        display: none;
    }
}

/* ヘッダー
-----------------------------------------------*/

.l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 100;
    transition: background-color 0.3s;
}

.l-header.open {
    background-color: #502200;
}

.l-header.is-colored {
    background-color: #502200;
}

.l-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1320px;
    height: 100%;
    margin-inline: auto;
    padding-inline: 20px;
}

.l-header__logo {
    height: 100%;
}

.l-header__logo a {
    display: flex;
    align-items: center;
    height: 100%;
    transition: opacity 0.3s;
}

.l-header__logo a:hover {
    opacity: 0.7;
}

.l-header__logo img {
    width: 55px;
    height: auto;
}

.l-header__logo span {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    font-family: "source-han-serif-japanese", serif;
}

.p-nav-pc {
    width: calc(920 / 1320 * 100%);
    height: 100%;
}

.p-nav-pc__list {
    display: flex;
    align-items: center;
    gap: calc(20 / 870 * 100%);
    height: 100%;
}

.p-nav-pc__item {
    height: 100%;
}

.p-nav-pc__item a {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    transition: opacity 0.3s;
}

.p-nav-pc__item a:hover {
    opacity: 0.7;
}

.p-nav-pc__item a::after {
    content: "";
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
}

.p-nav-pc__item a:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
}

.p-button__contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(10 / 200 * 100%);
    width: 200px;
    height: 40px;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    border: 1px solid #fff;
    border-radius: 10px;
    background-color: #674598;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
    transition: opacity 0.3s;
}

.p-button__contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: calc(10 / 200 * 100%);
}

.p-button__contact:hover {
    opacity: 0.7;
}

.p-button__contact img {
    width: calc(20 / 200 * 100%);
    height: auto;
}

.p-nav-sp {
    display: none;
}

.c-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.c-overlay.open {
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 1400px) {
    .p-nav-pc {
        width: calc(1010 / 1320 * 100%);
    }
}

@media screen and (max-width: 1200px) {
    .l-header {
        height: 60px;
        padding: 10px 0;
    }

    .p-nav-pc {
        display: none;
    }

    .p-nav-sp {
        position: fixed;
        top: 60px;
        right: -100%;
        z-index: 100;
        display: flex;
        flex-direction: column;
        width: 50%;
        height: 100vh;
        background-color: #502200;
        transition: all 0.3s;
        opacity: 0.95;
    }

    .p-nav-sp.open {
        right: 0;
    }

    .p-nav-sp__list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding-top: 20px;
    }

    .p-nav-sp__item {
        width: 100%;
        height: 60px;
    }

    .p-nav-sp__item a {
        display: flex;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: 12px 0 13px 20px;
        color: #fff;
        font-size: 3rem;
        transition: all 0.3s;
    }

    .p-nav-sp__item a:hover {
        color: #502200;
        background-color: #fff;
    }

    .p-button__contact a {
        justify-content: center;
        height: 100%;
    }

    .p-nav-sp__item.p-button__contact img {
        width: calc(10 / 200 * 100%);
        height: auto;
    }

    .p-nav-sp__logo {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        margin-top: 10%;
        margin-inline: auto;
        transition: opacity 0.3s;
    }

    .p-nav-sp__logo:hover {
        opacity: 0.7;
    }

    .p-nav-sp__logo img {
        width: 55px;
        height: auto;
    }

    .p-nav-sp__logo span {
        color: #fff;
        font-size: 2.2rem;
        font-weight: 700;
        font-family: "source-han-serif-japanese", serif;
    }

    .p-nav-sp .p-button__contact {
        width: 90%;
        margin-inline: 20px;
    }

    .p-nav-sp .p-button__contact img {
        width: calc(20 / 200 * 100%);
    }
}

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

    .p-nav-sp {
        width: 100%;
    }

    .p-nav-sp__list {
        gap: 0;
    }

    .p-nav-sp__item a {
        padding: 5px 0 5px 20px;
    }
}

/* ハンバーガーメニュー */

.p-hamburger {
    display: none;
}
@media screen and (max-width: 1200px) {
    .p-hamburger {
        position: relative;
        top: 0;
        right: -20px;
        z-index: 200;
        display: block;
        width: 72px;
        height: 50px;
        transition: all 0.3s;
    }

    .p-hamburger__line,
    .p-hamburger__line::before,
    .p-hamburger__line::after {
        content: "";
        position: absolute;
        width: 32px;
        height: 4px;
        background-color: #fff;
        border-radius: 4px;
        transition: all 0.3s;
    }

    .p-hamburger__line {
        top: 23px;
        left: 20px;
    }

    .p-hamburger__line::before {
        top: 10px;
        transition: all 0.3s;
    }

    .p-hamburger__line::after {
        bottom: 10px;
        transition: all 0.3s;
    }

    .p-hamburger.open .p-hamburger__line {
        background-color: transparent;
    }

    .p-hamburger.open .p-hamburger__line::before {
        top: 0;
        transform: rotate(45deg);
    }

    .p-hamburger.open .p-hamburger__line::after {
        bottom: 0;
        transform: rotate(-45deg);
    }
}


/* ファーストビュー
-----------------------------------------------*/

.p-fv {
    position: relative;
    height: 100vh;
}

.p-fv__img {
    height: 100%;
}

.p-fv__title {
    position: absolute;
    bottom: 15%;
    left: 0;
    width: calc(980 / 1440 * 100%);
    padding: 35px 0;
    padding-left: calc(200 / 1440 * 100%);
    background: linear-gradient(to right, rgb(80, 34, 0, 0.7) 0%, rgb(80, 34, 0, 0.7) 70%, rgba(80, 34, 0, 0) 100%);
}

.p-fv__title h2 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 4.8rem;
    font-family: "Harenosora", serif;
    letter-spacing: 0.08em;
    text-shadow: 4px 4px 4px rgb(0, 0, 0, 0.5);
}

.p-fv__title span {
    color: #fff;
    font-size: 2.4rem;
    font-family: "source-han-serif-japanese", serif;
    letter-spacing: 0.08em;
}

@media screen and (max-width: 1400px) {
    .p-fv__title {
        width: calc(1010 / 1320 * 100%);
    }
}

@media screen and (max-width: 1200px) {
    .p-fv__title {
        width: calc(1100 / 1320 * 100%);
    }
}

@media screen and (max-width: 767px) {
    .p-fv__title {
        bottom: 10%;
        width: calc(1200 / 1320 * 100%);
        padding-left: calc(120 / 1440 * 100%);
    }
}

/* 理念
-----------------------------------------------*/

.p-concept {
    position: relative;
}

.p-concept__bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.p-concept__flex {
    display: flex;
}

.p-concept__flex-text-box-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc(770 / 1440 * 100%);
}

.p-concept__flex-text-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 700px;
    margin-left: auto;
    padding-top: 210px;
    padding-right: calc(84 / 770 * 100%);
    padding-left: 20px;
}

.p-concept__text-contents-wrapper {
    width: 100%;
}

.p-concept__text-contents {
    max-width: 500px;
}

.p-concept__title {
    margin-bottom: 80px;
    color: #502200;
    font-size: 4.4rem;
    font-weight: 700;
    font-family: "source-han-serif-japanese", serif;
    letter-spacing: 0.08em;
}

.p-concept__subtitle {
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.08em;
}

.p-concept__text {
    line-height: 1.5;
    letter-spacing: 0.08em;
}

.p-concept__flex-img-box {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5px;
    width: calc(670 / 1440 * 100%);
}

/* swiper */

.swiper01,
.swiper02 {
    height: 100vh;
}

.swiper01 .swiper-wrapper,
.swiper02 .swiper-wrapper {
    transition-timing-function: linear;
}

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

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

    .p-concept__flex-text-box-wrapper {
        width: 100%;
    }

    .p-concept__flex-text-box {
        max-width: 600px;
        margin-inline: auto;
        padding-top: 90px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .p-concept__flex-img-box {
        width: 100%;
    }

    .p-concept__title {
        margin-bottom: 30px;
    }

    .swiper01,
    .swiper02 {
        height: 50vh;
    }
}

/* ニュース
-----------------------------------------------*/

.p-news {
    padding: 170px 0 180px 0;
}

.p-news__inner {
    max-width: 1080px;
    margin-inline: auto;
    padding-inline: 20px;
}

.p-news__list {
    display: grid;
    justify-content: center;
    row-gap: 15px;
    margin-top: 80px;
}

.p-news__item-link {
    display: flex;
    gap: 25px;
    letter-spacing: 0.08em;
    transition: opacity 0.3s;
}

.p-news__item-link:hover {
    text-decoration: underline;
    opacity: 0.7;
}

@media screen and (max-width: 767px) {
    .p-news {
        padding: 90px 0;
    }

    .p-news__list {
        margin-top: 30px;
    }

    .p-news__item-link {
        flex-direction: column;
        gap: 10px;
    }
}



/* 当社について
-----------------------------------------------*/

.p-about {
    position: relative;
}

.p-about__bg-img {
    position: relative;
}

.p-about__bg-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-118deg,transparent 0%, rgb(80, 34, 0, 0) 33%, rgb(80, 34, 0, 1) 62%);
}

.p-about__text-box {
    position: absolute;
    top: 23%;
    left: calc(200 / 1440 * 100%);
    width: calc(420 / 1440 * 100%);
}

.p-about__subtitle {
    margin-top: calc(60 / 320 * 100%);
    margin-bottom: 20px;
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5;
}

.p-about__text {
    color: #fff;
    line-height: 1.5;
    letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
    .p-about__bg-img::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(-30deg,transparent 0%, rgb(80, 34, 0, 0) 8%, rgb(80, 34, 0, 1) 74%);
    }

    .p-about__text-box {
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        padding-inline: 20px;
    }

    .p-about__subtitle {
        margin-top: calc(30 / 320 * 100%);
    }
}

/* 事業内容
-----------------------------------------------*/

.p-service {
    padding: 120px 0;
}

.p-service__inner {
    max-width: 1080px;
    margin-inline: auto;
    padding-inline: 20px;
}

.p-service__subtitle {
    margin-top: 25px;
    margin-bottom: 80px;
    color: #502200;
    font-size: 2.6rem;
    font-weight: 700;
    font-family: "source-han-serif-japanese", serif;
    letter-spacing: 0.08em;
    text-align: center;
}

.p-service__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.p-service__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.p-service__item img {
    height: auto;
    margin-bottom: 30px;
}

.p-service__item-title {
    position: relative;
    margin-bottom: 8.6%;
    font-size: 2.6rem;
    font-weight: 700;
    font-family: "source-han-serif-japanese", serif;
    letter-spacing: 0.08em;
}

.p-service__item-title::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
}

.p-service__item:nth-child(1) .p-service__item-title::after,
.p-service__item:nth-child(2) .p-service__item-title::after {
    background-image: url("../img/service-bar01.webp");
}

.p-service__item:nth-child(3) .p-service__item-title::after {
    background-image: url("../img/service-bar02.webp");
}

.p-service__item:nth-child(4) .p-service__item-title::after {
    background-image: url("../img/service-bar03.webp");
}

.p-service__item-text {
    line-height: 1.5;
    letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
    .p-service {
        padding: 80px 0;
    }

    .p-service__list {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 15px;
        row-gap: 35px;
    }
}

/* 特徴
-----------------------------------------------*/

.p-feature {
    position: relative;
}

.p-feature__bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.p-feature__inner {
    max-width: 1080px;
    margin-inline: auto;
    padding: 180px 20px 130px 20px;
}

.p-feature__subtitle {
    margin-top: 25px;
    margin-bottom: 80px;
    color: #502200;
    font-size: 2.6rem;
    font-weight: 700;
    font-family: "source-han-serif-japanese", serif;
    letter-spacing: 0.08em;
}

.p-feature__list--pc {
    display: flex;
    gap: 10px;
}

.p-feature__list--sp {
    display: none;
}

.p-feature__list.js-hover01 .p-feature__item01 {
    flex: 2;
}
.p-feature__list.js-hover01 .p-feature__item02,
.p-feature__list.js-hover01 .p-feature__item03 {
    flex: 1;
}

.p-feature__list.js-hover02 .p-feature__item02 {
    flex: 2;
}
.p-feature__list.js-hover02 .p-feature__item01,
.p-feature__list.js-hover02 .p-feature__item03 {
    flex: 1;
}

.p-feature__list.js-hover03 .p-feature__item03 {
    flex: 2;
}
.p-feature__list.js-hover03 .p-feature__item01,
.p-feature__list.js-hover03 .p-feature__item02 {
    flex: 1;
}

.p-feature__item {
    position: relative;
    flex: 1;
    transition: flex 0.8s ease;
}

.p-feature__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 29, 71, 0.4);
    border-radius: 155px;
}

.p-feature__item img {
    height: 320px;
    border-radius: 155px;
}

.p-feature__item-text-box {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: calc(400 / 508 * 100%);
    height: 100%;
    border-radius: 155px;
    transition: width 0.4s ease;
}

.p-feature__item-text-box.is--active {
    width: calc(270 / 508 * 100%);
}

.p-feature__item-text-box.is--negative {
    width: calc(410 / 508 * 100%);
}

.p-feature__item-title {
    margin-bottom: 50px;
    color: #fff;
    font-size: 2.6rem;
    font-weight: 700;
    font-family: "source-han-serif-japanese", serif;
    letter-spacing: 0.08em;
    text-align: center;
}

.p-feature__item-title.is--negative {
    margin-bottom: 30px;
    font-size: 2rem;
}

.p-feature__item-text {
    color: #fff;
    line-height: 1.5;
    letter-spacing: 0.08em;
}

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

    .p-feature__inner {
        padding: 65px 20px 55px 20px;
    }

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

    .p-feature__list--pc {
        display: none;
    }

    .p-feature__list--sp {
        display: block;
    }

    .p-feature__item {
        flex: 0 0 100%;
    }

    .p-feature__item-text-box {
        width: calc(250 / 508 * 100%);
    }

    .swiper03 .swiper-button-box {
        margin-top: 25px;
    }
}

@media screen and (max-width: 576px) {
    .p-feature__item-text-box {
        width: calc(400 / 508 * 100%);
    }

    .p-feature__item-title {
        font-size: 3rem;
    }

    .p-feature__item-text {
        font-size: 2rem;
    }
}

/* 施工事例
-----------------------------------------------*/

.p-works {
    padding: 165px 0;
    background-color: #502200;
}

.p-works__inner {
    max-width: 1080px;
    margin-inline: auto;
    padding-inline: 20px;
}

.p-works__subtitle {
    margin-top: 25px;
    margin-bottom: 80px;
    color: #fff;
    font-size: 2.6rem;
    font-weight: 700;
    font-family: "source-han-serif-japanese", serif;
    letter-spacing: 0.08em;
    text-align: center;
}

.p-works__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.p-works__item {
    padding-bottom: 50px;
    border-left: 3px solid #fff;
}

.p-works__item-img {
    position: relative;
    margin-bottom: 35px;
    transition: opacity 0.3s;
}

.p-works__item-img:hover {
    opacity: 0.7;
}

.p-works__item-img span {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
    background-color: #fff;
    color: #292929;
    font-size: 2.6rem;
    font-weight: 700;
    font-family: "source-han-serif-japanese", serif;
    letter-spacing: 0.08em;
}

.p-works__item-text-box {
    padding-left: 20px;
    color: #fff;
}

.p-works__item-title {
    margin-bottom: 25px;
    font-size: 2.6rem;
    font-weight: 700;
    font-family: "source-han-serif-japanese", serif;
    letter-spacing: 0.08em;
}

.p-works__item-text {
    letter-spacing: 0.08em;
}

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

    .p-works__list {
        grid-template-columns: repeat(1, 1fr);
        gap: 25px;
    }
}

/* 流れ
-----------------------------------------------*/

.p-flow {
    padding-top: 80px;
}

.p-flow__inner {
    width: calc(1360 / 1440 * 100%);
    padding: calc(120 / 1360 * 100%) calc(120 / 1360 * 100%) calc(120 / 1360 * 100%) calc(200 / 1360 * 100%);
    background-color: #fbe8db;
    border-radius: 0 180px 0 0;
}

.p-flow__subtitle {
    margin-top: 25px;
    margin-bottom: 80px;
    color: #502200;
    font-size: 2.6rem;
    font-weight: 700;
    font-family: "source-han-serif-japanese", serif;
    letter-spacing: 0.08em;
}

.p-flow__list--pc {
    display: flex;
    gap: 10px;
}

.p-flow__list--sp {
    display: none;
}

.p-flow__list--pc:nth-of-type(1) {
    margin-bottom: calc(145 / 1040 * 100%);
}

.p-flow__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: calc(300 / 1040 * 100%);
}

.p-flow__item-img {
    width: calc(200 / 300 * 100%);
    margin-bottom: 25px;
}

.p-flow__item-title {
    margin-bottom: 20px;
    font-size: 2.6rem;
    font-weight: 700;
    font-family: "source-han-serif-japanese", serif;
    letter-spacing: 0.08em;
}

.p-flow__item-text {
    line-height: 1.5;
    letter-spacing: 0.08em;
}

.p-flow__item--triangle {
    margin-top: calc(70 / 1040 * 100%);
}

.triangle {
    display: inline-block;
    width: 25px;
    height: 70px;
    background: linear-gradient(90deg, #502200 0%, #b64d00 100%);
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}

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

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

    .p-flow__inner {
        width: 100%;
    }

    .p-flow__subtitle {
        margin-bottom: 20px;
        text-align: center;
    }

    .p-flow__list--pc {
        display: none;
    }

    .p-flow__list--sp {
        display: block;
    }

    .p-flow__item {
        width: 100%;
    }

    .p-flow__item-img {
        margin-bottom: 10px;
    }

    .p-flow__item-title {
        margin-bottom: 10px;
    }

    .swiper04 .swiper-button-box {
        margin-top: 60px;
    }
}

/* メッセージ
-----------------------------------------------*/

.p-message {
    position: relative;
    padding: calc(210 / 1440 * 100%) 0 calc(120 / 1440 * 100%) 0;
}

.p-message__bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.p-message__bg-img img {
    position: relative;
}

.p-message__bg-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgb(255, 255, 255, 0) 17%, rgb(255, 255, 255, 1) 34%, #fff 100%);
}

.p-message__inner {
    position: relative;
    width: calc(720 / 1440 * 100%);
    max-width: 720px;
    margin-inline: auto;
    padding-inline: 20px;
}

.p-message__img--sp {
    display: none;
}

.p-message__subtitle {
    margin-top: calc(70 / 720 * 100%);
    margin-bottom: calc(55 / 720 * 100%);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.08em;
}

.p-message__text {
    margin-bottom: calc(55 / 720 * 100%);
    line-height: 1.5;
    letter-spacing: 0.08em;
}

.p-message__president {
    margin-bottom: 15px;
    color: #000;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.p-message__president-name {
    color: #000;
    font-size: 2.6rem;
    font-weight: 700;
    font-family: "source-han-serif-japanese", serif;
    letter-spacing: 0.08em;
}

.p-message__logo {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
}

@media screen and (max-width: 1400px) {
    .p-message {
        padding: calc(160 / 1440 * 100%) 0 calc(120 / 1440 * 100%) 0;
    }
}

@media screen and (max-width: 1200px) {
    .p-message {
        padding: calc(60 / 1440 * 100%) 0 calc(120 / 1440 * 100%) 0;
    }
    .p-message__inner {
        width: calc(1000 / 1440 * 100%);
        margin-left: 50px;
    }
}

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

    .p-message {
        padding: 70px 0;
    }

    .p-message__inner {
        width: 100%;
        margin-inline: auto;
    }

    .p-message__bg-img {
        display: none;
    }

    .p-message__img--sp {
        display: block;
        margin-top: 30px;
        padding-inline: 25px;
    }
}


/* 採用情報
-----------------------------------------------*/

.p-recruit {
    padding-top: 130px;
}

.p-recruit__img-wrapper {
    position: relative;
    max-width: 1440px;
    margin-inline: auto;
    padding-bottom: 240px;
}

.p-recruit__img01,
.p-recruit__img02,
.p-recruit__img03,
.p-recruit__img04 {
    position: absolute;
}

.p-recruit__img01 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: calc(320 / 1440 * 100%);
}

.p-recruit__img02 {
    top: 68%;
    left: 10%;
    width: calc(240 / 1440 * 100%);
}

.p-recruit__img03 {
    top: 15%;
    right: 0;
    width: calc(200 / 1440 * 100%);
}

.p-recruit__img04 {
    bottom: 0;
    right: 0;
    width: calc(390 / 1440 * 100%);
}


.p-recruit__inner {
    max-width: 1080px;
    margin-inline: auto;
    padding-inline: 20px;
}

.p-recruit__img--sp {
    display: none;
}

.p-recruit__text-box {
    position: relative;
    width: calc(600 / 1080 * 100%);
    margin-top: 90px;
    margin-inline: auto;
}

.p-recruit__text--strong {
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.08em;
}

.p-recruit__text {
    margin-bottom: 16px;
    line-height: 1.5;
    letter-spacing: 0.08em;
}

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

    .p-recruit {
        padding-top: 80px;
    }

    .p-recruit__img-wrapper {
        padding-bottom: 75px;
    }

    .p-recruit__img--pc {
        display: none;
    }

    .p-recruit__img--sp {
        display: block;
    }

    .p-recruit__img--top {
        position: relative;
        margin-top: 30px;
    }

    .p-recruit__img--top02 {
        position: absolute;
        right: -20px;
        bottom: -30px;
        width: calc(130 / 290 * 100%);
        height: calc(85 / 185 * 100%);
    }

    .p-recruit__text-box {
        width: 100%;
        margin-top: 40px;
    }

    .p-recruit__img--bottom {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .p-recruit__img--bottom01 {
        width: calc(110 / 290 * 100%);
    }

    .p-recruit__img--bottom02 {
        width: calc(180 / 290 * 100%);
        margin-top: 15%;
    }
}

/* お問い合わせ
-----------------------------------------------*/

.p-contact {
    padding: 140px 0 130px 0;
}

.p-contact__inner {
    max-width: 1080px;
    margin-inline: auto;
    padding-inline: 20px;
}

.p-contact__subtitle {
    margin-top: 25px;
    margin-bottom: 35px;
    color: #502200;
    font-size: 2.6rem;
    font-weight: 700;
    font-family: "source-han-serif-japanese", serif;
    letter-spacing: 0.08em;
    text-align: center;
}

.p-contact__text {
    margin-bottom: 65px;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.08em;
    text-align: center;
}

.p-contact__question-flex {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.p-contact__question-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    padding: 15px;
    border: 1px solid #292929;
    border-radius: 10px;
}

.p-contact__question-title {
    margin-bottom: 15px;
    font-size: 2.6rem;
    font-weight: 700;
    font-family: "source-han-serif-japanese", serif;
    letter-spacing: 0.08em;
}

.p-contact__question-item {
    line-height: 1.5;
    letter-spacing: 0.08em;
}

.p-contact__form-wrapper {
    display: flex;
    gap: 30px;
}

.p-contact__contents {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 50%;
}

.p-contact__tel-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 10px;
    background-color: #f0f0f0;
    border-radius: 10px;
}

.p-contact__tel-title {
    margin-bottom: 10px;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5;
}

.p-contact__tel-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #674598;
    font-size: 3.2rem;
    font-weight: 700;
    font-family: "Arial", serif;
    transition: opacity 0.3s ease;
}

.p-contact__tel-link:hover {
    text-decoration: underline;
    opacity: 0.7;
}

.p-contact__tel-link span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #674598;
    border-radius: 50%;
}

.p-contact__tel-link img {
    width: 15px;
    height: 18px;
}

.p-contact__tel-text-wrapper {
    width: calc(260 / 510 * 100%);
}

.p-contact__tel-text {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.5;
}

.p-contact__logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    border-radius: 10px;
}

.p-contact__logo-img {
    width: calc(180 / 510 * 100%);
}

/* フォーム */

.p-form {
    width: 50%;
    padding: 15px 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
}

.p-form__title {
    margin-bottom: 15px;
    font-size: 2rem;
    font-weight: 500;
    list-style: 1.5;
}

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

.c-label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.6;
}

.c-label__tag,
.p-checkbox__tag {
    width: 45px;
    margin-left: 10px;
    padding: 2px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    background-color: #e71e1e;
    border-radius: 54px;
}

.c-input {
    width: 100%;
    padding: 10px;
    font-size: 1.4rem;
    line-height: 1.6;
    border: 1px solid #999999;
    background-color: #fff;
    border-radius: 4px;
}

.c-textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    font-size: 1.4rem;
    line-height: 1.6;
    border: 1px solid #999999;
    background-color: #fff;
    border-radius: 4px;
}

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

.p-checkbox__label {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
    font-size: 1.4rem;
    line-height: 1.6;
}

.p-checkbox__label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #999999;
    border-radius: 4px;
}

.p-checkbox__input:checked + .p-checkbox__label::before {
    border-color: #3498db;
}

.p-checkbox__input:checked + .p-checkbox__label::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%) rotate(45deg);
    display: block;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
}

.p-checkbox__input:focus + .p-checkbox__label::before {
    outline: 2px solid #3498db;
}

.p-checkbox__label a {
    color: #674598;
}

.p-form__item__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #674598;
    border-radius: 8px;
}

.p-button__submit {
    width: 100%;
    padding: 17px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
}

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

    .p-contact {
        padding: 80px 0 70px 0;
    }

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

    .p-contact__text {
        margin-bottom: 35px;
        text-align: left;
    }

    .p-contact__question-flex {
        flex-direction: column;
        gap: 15px;
    }

    .p-contact__question-box {
        width: 100%;
    }

    .p-contact__form-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .p-contact__contents {
        width: 100%;
    }

    .p-contact__logo-box {
        display: none;
    }

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

/* 会社概要
-----------------------------------------------*/

.p-company__flex {
    display: flex;
}

.p-company__inner {
    width: 50%;
    padding: calc(150 / 1440 * 100%) calc(50 / 1440 * 100%) calc(150 / 1440 * 100%) 0;
    background-color: #fbe8db;
}

.p-company__inner-wrapper {
    width: calc(500 / 720 * 100%);
    margin-left: auto;
    padding-inline: 20px;
}

.p-company__list {
    margin-top: calc(80 / 500 * 100%);
}

.p-company__item {
    display: flex;
    align-items: center;
    /* gap: 70px; */
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #000;
}

.p-company__item a {
    transition: opacity 0.3s ease;
}

.p-company__item a:hover {
    text-decoration: underline;
    opacity: 0.7;
}

.p-company__item-title {
    flex: 0.5;
    color: #000;
    letter-spacing: 0.08em;
}

.p-company__item-text {
    flex: 1;
    color: #000;
    letter-spacing: 0.08em;
}

.p-company__map {
    width: 50%;
    aspect-ratio: 720 / 757;
}

.p-company__map iframe {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1400px) {
    .p-company__inner-wrapper {
        width: calc(600 / 720 * 100%);
    }
}

@media screen and (max-width: 1200px) {
    .p-company__inner-wrapper {
        width: calc(670 / 720 * 100%);
    }
}

@media screen and (max-width: 992px) {
    .p-company__inner-wrapper {
        width: calc(690 / 720 * 100%);
    }
}

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

    .p-company {
        padding-bottom: 40px;
        background-color: #fbe8db;
    }

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

    .p-company__inner {
        width: 100%;
        padding: 80px 0 40px 0;
    }

    .p-company__inner-wrapper {
        margin-inline: auto;
    }

    .p-company__list {
        margin-top: 30px;
    }

    .p-company__item {
        padding: 15px 0;
    }

    .p-company__map {
        width: 100%;
        aspect-ratio: 290 / 217;
        padding-inline: 20px;
    }
}


/* フッター
-----------------------------------------------*/

.l-footer {
    padding: 70px 0;
    background-color: #502200;
}

.l-footer__inner {
    max-width: 1340px;
    margin-inline: auto;
    padding-inline: 20px;
}

.l-footer__flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 85px;
}

.p-nav__footer {
    display: flex;
    gap: 20px;
}

.p-nav__footer-item {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
}

.l-footer__flex a {
    transition: opacity 0.3s;
}

.l-footer__flex a:hover {
    opacity: 0.7;
}

.l-footer__logo {
    width: calc(250 / 1340 * 100%);
    height: 100%;
}

.l-footer__logo a {
    display: block;
    transition: opacity 0.3s;
}

.l-footer__logo a:hover {
    opacity: 0.7;
}

.l-footer__copyright {
    color: #fff;
    letter-spacing: 0.08em;
    text-align: right;
}

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

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

    .p-nav__footer {
        flex-direction: column;
        align-items: center;
        order: 2;
        gap: 25px;
    }

    .l-footer__flex .p-button__contact {
        order: 1;
        margin-bottom: 30px;
    }

    .l-footer__logo {
        width: calc(100 / 320 * 100%);
        margin-inline: auto;
    }

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