/*------------------------------------------
  Base Layout
------------------------------------------*/
html {
    font-size: 62.5%;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(7px, 3.73333vw, 18px);
    letter-spacing: .07em;
    background: #f0e8d9;
    color: #0c1b2c;
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #0c1b2c;
    text-decoration: none;
}

.is-pc {
    display: none;
}

img {
    width: 100%;
}

@media only screen and (min-width: 501px) {
    a {
        transition: opacity .4s ease;
    }
    a:hover {
        opacity: .7;
    }
    a[href^="tel:"] {
        pointer-events: none;
        cursor: default;
    }
}

@media only screen and (min-width: 1024px) {
    body {
        font-size: 21px;
    }
    .is-pc {
        display: block;
    }
}

/*------------------------------------------
  layout
------------------------------------------*/
.l-wrapper {
    position: relative;
}

@media only screen and (min-width: 1024px) {
    .l-wrapper {
        max-width: 1174px;
        margin: auto;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
}

.l-main {
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    max-width: 500px;
    margin: auto;
}

@media only screen and (min-width: 1024px) {
    .l-main {
        max-width: 578px;
        margin: 0;
        height: 100vh;
        position: -webkit-sticky;
        position:         sticky;
        top: 0;
        right: 0;
    }
}

.l-inner {
    padding: 0 clamp(15px, 8vw, 40px);
}

@media only screen and (min-width: 501px) {
    .l-inner {
        padding: 0 40px;
    }
}

@media only screen and (min-width: 1024px) {
    .l-inner {
        padding: 0 45px;
    }
}

.l-center {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
}
.l-center__inner {
    width: 100%;
}

.pc-menu {
    width: calc(100% - 578px);
    position: relative;
    padding: 65px 0;
}
.pc-menu__inner {
    width: 90%;
    max-width: 496px;
    margin: auto;
}
.pc-menu__header {
    width: 200px;
    margin-bottom: 50px;
}
.pc-menu__nav .swiper-pagination {
    position: relative;
    top: 0;
    right: 0;
    transform: translate(0);
}
.pc-menu__nav .swiper-pagination-bullet {
    width: 100%;
    height: auto;
    border-radius: 0;
    background: none;
    opacity: 1 !important;
    margin: 0 !important;
    padding: 0;
    text-align: left;
    border-bottom: 1px solid #fff;
    padding: 15px 60px 15px 35px;
    position: relative;
    transition: background .3s;
}
.pc-menu__nav .swiper-pagination-bullet:before {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    margin-top: -12px;
    right: 35px;
    background: url(../images/arrow-pcnav.svg) no-repeat center;
    background-size: 100%;
}
.pc-menu__nav .swiper-pagination-bullet:hover {
    background: #fff;
}
.pc-menu__nav .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff;
}
.pc-menu__nav .swiper-pagination-bullet:first-child, .pc-menu__nav .swiper-pagination-bullet:nth-child(2) {
    display: none;
}
.pc-menu__nav .swiper-pagination-bullet span {
    display: block;
    position: relative;
}
.pc-menu__nav .swiper-pagination-bullet .label {
    font-size: 14px;
    padding-left: 12px;
    margin-bottom: .5em;
}
.pc-menu__nav .swiper-pagination-bullet .label:before {
    content: "";
    width: 8px;
    height: 8px;
    background: #de9d7a;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -4px;
}
.pc-menu__nav .swiper-pagination-bullet .txt {
    font-size: 17px;
    font-family: "Noto Serif JP", serif;
    letter-spacing: 0;
}
.pc-menu__footer {
    margin-top: 50px;
    display: flex;
}
.pc-menu__footer .footer-tel {
    width: 209px;
}
.pc-menu__footer .footer-info {
    width: calc(100% - 232px);
    margin-left: auto;
    font-size: 12px;
}
.pc-menu__footer .footer-info th {
    text-align: left;
    width: 6em;
}

/*------------------------------------------
  header
------------------------------------------*/
.l-header {
    width: 100%;
    max-width: 500px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}
.l-header:before {
    content: "";
    width: 100%;
    height: clamp(41px, 21.86667vw, 110px);
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/header-bg.png) no-repeat left top;
    background-size: 100%;
}
.l-header__inner {
    padding: clamp(8px, 4.26667vw, 21px) clamp(15px, 8vw, 40px);
    position: relative;
    z-index: 1;
}
.l-header .header-logo {
    position: relative;
    width: 35.73333vw;
    max-width: 178px;
}

@media only screen and (min-width: 1024px) {
    .l-header {
        display: none;
    }
}

/*------------------------------------------
  footer
------------------------------------------*/
.l-footer {
    width: 100%;
    max-width: 500px;
    height: clamp(65px, 34.66667vw, 172px);
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: 100;
    text-align: center;
    background: #fff;
    padding: clamp(7px, 3.73333vw, 18px) 0 0;
}
.l-footer .footer-btn {
    margin-bottom: .5em;
}

@media only screen and (min-width: 1024px) {
    .l-footer {
        display: none;
    }
}

/*------------------------------------------
  project
------------------------------------------*/
.p-sec {
    position: relative;
    background: #edf4f6;
}
.p-sec__inner {
    height: calc(100vh - 34.66667vw);
    height: calc(100svh - 34.66667vw);
    position: relative;
    z-index: 10;
}
.p-sec__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
}
.p-sec video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
}
.p-sec .sec-ttl {
    text-align: center;
}

.vertical .p-sec:after {
    content: "";
    width: 28px;
    height: 26px;
    background: url(../images/arrow-vertical.png) no-repeat center;
    background-size: 100%;
    position: absolute;
    bottom: clamp(65px, 34.66667vw, 172px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.vertical .p-sec:last-child:after {
    content: none;
}

.horizontal .page-arrow {
    position: absolute;
    z-index: 100;
    top: 40%;
    width: 26px;
    height: 28px;
    background: url(../images/arrow-horizontal.png) no-repeat center;
    background-size: 100%;
    cursor: pointer;
}
.horizontal .page-arrow:after {
    content: none;
}
.horizontal .page-arrow--prev {
    left: 10px;
    transform: rotate(180deg);
}
.horizontal .page-arrow--next {
    right: 10px;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

@media only screen and (min-width: 501px) {
    .p-sec__inner {
        height: calc(100svh - 172px);
    }
    .vertical .p-sec:after {
        width: 36px;
        height: 34px;
        bottom: 172px;
    }
    .horizontal .page-arrow {
        width: 35px;
        height: 38px;
    }
}

@media only screen and (min-width: 1024px) {
    .p-sec__inner {
        height: 100vh;
    }
    .vertical .p-sec:after {
        bottom: 0;
    }
}

.p-sec01 .sec-contents {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.p-sec01 .sec-ttl {
    text-align: center;
}
.p-sec01 .sec-ttl img {
    width: 23.73333vw;
    max-width: 118px;
}

@media only screen and (min-width: 1024px) {
    .p-sec01 .sec-contents {
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);
    }
    .p-sec01 .sec-ttl img {
        width: 134px;
        max-width: 100%;
    }
}

.p-sec02 .sec-ttl {
    height: calc(100svh - 109vw);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.p-sec02 .sec-ttl span {
    transform: translateY(1.5em);
}
.p-sec02 .sec-ttl img {
    width: 87.2vw;
    max-width: 435px;
}

.p-sec02 .sec-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.p-sec02 .video {
    height: calc(100vh - 109vw);
}

@media only screen and (min-width: 501px) {
    .p-sec02 .sec-ttl {
        height: calc(100vh - 545px);
    }
    .p-sec02 .video {
        height: calc(100vh - 545px);
    }
}

@media only screen and (min-width: 1024px) {
    .p-sec02 .sec-ttl {
        height: calc(100vh - 431px);
    }
    .p-sec02 .sec-ttl img {
        width: 490px;
        max-width: 100%;
    }
    .p-sec02 .video {
        height: calc(100vh - 431px);
    }
}

.p-sec03 {
    padding-top: clamp(28px, 14.93333vw, 74px);
}
.p-sec03 .sec-ttl {
    margin-bottom: 1.5em;
}
.p-sec03 .sec-txt {
    line-height: 2;
}
.p-sec03 .merit-inner {
    background: rgba(255, 255, 255, .82);
    padding: 1em;
}
.p-sec03 .merit-ttl {
    text-align: center;
    margin-bottom: 1em;
}
.p-sec03 .merit-ttl img {
    width: clamp(184px, 49.06667vw, 245px);
}
.p-sec03 .merit dt {
    margin-bottom: .5em;
}
.p-sec03 .merit dd {
    font-size: 93%;
    margin-bottom: 1em;
}
.p-sec03 .merit dd:last-child {
    margin-bottom: 0;
}
.p-sec03 .swiper-button-prev {
    left: 1em;
    width: clamp(12px, 6.66667vw, 33px);
    height: clamp(12px, 6.66667vw, 33px);
    z-index: 10;
    background: url(../images/flow-arrow-prev.svg) no-repeat center center;
    background-size: 100%;
    border-radius: 50%;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, .6);
}
.p-sec03 .swiper-button-prev:after {
    content: none;
}
.p-sec03 .swiper-button-next {
    right: 1em;
    width: clamp(12px, 6.66667vw, 33px);
    height: clamp(12px, 6.66667vw, 33px);
    z-index: 10;
    background: url(../images/flow-arrow-next.svg) no-repeat center center;
    background-size: 100%;
    border-radius: 50%;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, .6);
}
.p-sec03 .swiper-button-next:after {
    content: none;
}

@media only screen and (min-width: 1024px) {
    .p-sec03 {
        padding-top: 84px;
    }
    .p-sec03 .merit-ttl img {
        width: 276px;
    }
    .p-sec03 .swiper-button-prev {
        width: 38px;
        height: 38px;
    }
    .p-sec03 .swiper-button-next {
        width: 38px;
        height: 38px;
    }
}

.p-sec04 {
    padding-top: clamp(43px, 22.66667vw, 113px);
    overflow: hidden;
}
.p-sec04 .sec-ttl {
    margin-bottom: .3em;
}
.p-sec04 .sec-ttl img {
    width: 78.66667vw;
    max-width: 392px;
}
.p-sec04 .sec-slider {
    width: clamp(161px, 85.86667vw, 428px);
    margin: auto;
}
.p-sec04 .sec-slider .swiper {
    overflow: visible;
}
.p-sec04 .sec-slider .slide-item {
    padding: 0 .5em;
}
.p-sec04 .sec-slider .slide-item__inner {
    border: 1px solid #fff;
    padding: 3px;
}
.p-sec04 .sec-slider .slide-item .item-contents {
    background: rgba(255, 255, 255, .8);
    padding: clamp(18px, 9.6vw, 48px) clamp(12px, 6.4vw, 32px) clamp(12px, 6.4vw, 32px);
}
.p-sec04 .sec-slider .slide-item .item-ttl {
    border-bottom: 1px solid #847d64;
    padding-bottom: .5em;
    margin-bottom: 1em;
}
.p-sec04 .sec-slider .slide-item .item-ttl img {
    height: 6.93333vw;
    max-height: 34px;
    width: auto;
}
.p-sec04 .sec-slider .slide-item .item-img {
    margin-bottom: .5em;
}
.p-sec04 .sec-slider .slide-item .item-txt {
    font-family: "Noto Serif JP", serif;
    color: #78735e;
    font-size: clamp(9px, 4.53333vw, 22px);
    line-height: 1.47;
    letter-spacing: 0;
    min-height: 3em;
}
.p-sec04 .sec-slider .ttl--en {
    color: #276ecf;
    font-weight: 700;
    font-style: italic;
}
.p-sec04 .sec-slider .ttl--ja {
    font-size: 120%;
    padding-bottom: .5em;
    margin-bottom: 1em;
    border-bottom: 1px solid #276ecf;
}
.p-sec04 .child-pagination {
    text-align: center;
}
.p-sec04 .swiper-pagination-bullet {
    background: none;
    border: 1px solid #fff;
    width: clamp(3px, 1.6vw, 8px);
    height: clamp(3px, 1.6vw, 8px);
}
.p-sec04 .swiper-pagination-bullet-active {
    background: #fff;
}
.p-sec04 .swiper-button-prev {
    left: 0;
    width: clamp(12px, 6.66667vw, 33px);
    height: clamp(12px, 6.66667vw, 33px);
    z-index: 10;
    background: url(../images/flow-arrow-prev.svg) no-repeat center center;
    background-size: 100%;
    border-radius: 50%;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, .6);
}
.p-sec04 .swiper-button-prev:after {
    content: none;
}
.p-sec04 .swiper-button-next {
    right: 0;
    width: clamp(12px, 6.66667vw, 33px);
    height: clamp(12px, 6.66667vw, 33px);
    z-index: 10;
    background: url(../images/flow-arrow-next.svg) no-repeat center center;
    background-size: 100%;
    border-radius: 50%;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, .6);
}
.p-sec04 .swiper-button-next:after {
    content: none;
}

@media only screen and (min-width: 1024px) {
    .p-sec04 {
        padding-top: 128px;
    }
    .p-sec04 .sec-ttl {
        margin-bottom: 2em;
    }
    .p-sec04 .sec-ttl img {
        width: 442px;
        max-width: 100%;
    }
    .p-sec04 .sec-slider {
        width: 483px;
    }
    .p-sec04 .sec-slider .slide-item .item-contents {
        padding: 54px 36px 36px;
    }
    .p-sec04 .sec-slider .slide-item .item-ttl img {
        height: 39px;
        max-height: auto;
    }
    .p-sec04 .sec-slider .slide-item .item-txt {
        font-size: 25px;
    }
    .p-sec04 .swiper-pagination-bullet {
        width: 9px;
        height: 9px;
    }
    .p-sec04 .swiper-button-prev {
        width: 38px;
        height: 38px;
    }
    .p-sec04 .swiper-button-next {
        width: 38px;
        height: 38px;
    }
}

.p-sec05 {
    background: linear-gradient(135deg, #fff5e9 0%, #ece8e5 100%);
}
.p-sec05 .p-sec__inner {
    background: url(../images/sec05-bg.png) no-repeat right bottom;
    background-size: clamp(128px, 68.26667vw, 340px);
}
.p-sec05 .sec-head {
    position: relative;
    padding-top: clamp(34px, 18.13333vw, 90px);
}
.p-sec05 .sec-head .head-lead {
    position: absolute;
    text-align: center;
    width: 100%;
    left: 0;
    top: clamp(25px, 13.33333vw, 66px);
}
.p-sec05 .sec-head .head-lead img {
    width: 45.33333vw;
    max-width: 226px;
}
.p-sec05 .sec-head .head-ttl {
    position: absolute;
    bottom: 0;
    left: clamp(15px, 8vw, 40px);
    width: clamp(123px, 73.06667vw, 364);
}
.p-sec05 .sec-txt {
    margin-top: .5em;
    font-size: clamp(7px, 3.46667vw, 17px);
    line-height: 1.6;
    letter-spacing: 0;
}

@media only screen and (min-width: 1024px) {
    .p-sec05 .p-sec__inner {
        background-size: 384px;
    }
    .p-sec05 .sec-head {
        padding-top: 102px;
    }
    .p-sec05 .sec-head .head-lead {
        top: 75px;
    }
    .p-sec05 .sec-head .head-lead img {
        width: 255px;
        max-width: 100%;
    }
    .p-sec05 .sec-head .head-ttl {
        left: 45px;
        width: 411px;
    }
    .p-sec05 .sec-txt {
        font-size: 19px;
    }
}

.p-sec06 .sec-contents {
    margin-top: 1.5em;
    background: rgba(252, 247, 242, .84);
    padding: clamp(10px, 5.33333vw, 26px);
}

.p-sec06 .sec-ttl {
    margin-bottom: clamp(8px, 2.66667vw, 13px);
}
.p-sec06 .sec-ttl img {
    width: 54.4vw;
    max-width: 271px;
}

.p-sec06 .sec-img {
    margin-bottom: .5em;
}

.p-sec06 .case {
    margin-bottom: .5em;
}
.p-sec06 .case:last-child {
    margin-bottom: 0;
}
.p-sec06 .case-ttl {
    margin-bottom: .3em;
}
.p-sec06 .case-txt {
    letter-spacing: 0;
    line-height: 1.6;
    font-size: clamp(6px, 3.2vw, 16px);
}
.p-sec06 .case-txt strong {
    font-size: 116%;
    font-weight: 400;
}
.p-sec06 .case-txt .sub {
    font-size: 76%;
}
.p-sec06 .case-box {
    width: 48%;
}
.p-sec06 .case.col {
    display: flex;
    margin-bottom: 0;
    justify-content: space-between;
}

@media only screen and (min-width: 1024px) {
    .p-sec06 .sec-contents {
        padding: 36px 30px;
    }
    .p-sec06 .sec-ttl {
        margin-bottom: 22px;
    }
    .p-sec06 .sec-ttl img {
        width: 306px;
        max-width: 100%;
    }
    .p-sec06 .case-txt {
        font-size: 18px;
    }
}

.p-sec07 .sec-contents {
    position: relative;
}
.p-sec07 .sec-contents:after {
    content: "";
    width: 100%;
    height: clamp(21px, 11.2vw, 56px);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/sec07-lead.svg) no-repeat center;
    background-size: auto 100%;
}

.p-sec07 .profile {
    position: relative;
    font-family: "Noto Serif JP", serif;
    color: #fff;
    letter-spacing: 0;
}
.p-sec07 .profile-name {
    margin-bottom: .5em;
}
.p-sec07 .profile-name img {
    width: auto;
    height: 14.4vw;
    max-height: 72px;
}
.p-sec07 .profile-lead {
    line-height: 1.8;
    text-shadow: 0px 0px 6px #363222;
    margin-bottom: .5em;
}
.p-sec07 .profile-txt {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, .6);
    font-size: clamp(5px, 2.4vw, 12px);
    padding: 1em;
}

.p-sec07 .profile01 {
    padding-bottom: clamp(12px, 6.4vw, 32px);
}
.p-sec07 .profile01 .profile-name, .p-sec07 .profile01 .profile-lead {
    text-align: right;
}
.p-sec07 .profile01 .profile-txt {
    justify-content: center;
    gap: 0 6%;
}
.p-sec07 .profile01 .profile-txt p {
    width: 40%;
}

.p-sec07 .profile02 {
    padding-top: clamp(12px, 6.4vw, 32px);
}
.p-sec07 .profile02 .profile-txt {
    gap: 0 4%;
}
.p-sec07 .profile02 .profile-txt p {
    width: 40%;
}
.p-sec07 .profile02 .profile-txt p:nth-child(2n) {
    width: 56%;
}

@media only screen and (min-width: 1024px) {
    .p-sec07 .p-sec__inner {
        height: calc(100svh - 100px);
    }
    .p-sec07 .sec-contents:after {
        height: 63px;
    }
    .p-sec07 .profile-name img {
        height: 81px;
        max-height: auto;
    }
    .p-sec07 .profile-txt {
        font-size: 13px;
    }
    .p-sec07 .profile01 {
        padding-bottom: 36px;
    }
    .p-sec07 .profile02 {
        padding-top: 36px;
    }
}

.p-sec08 .sec-contents {
    margin-top: 1.5em;
    background: rgba(255, 255, 255, .82);
    padding: clamp(10px, 5.33333vw, 26px);
}

.p-sec08 .sec-ttl img {
    width: 44vw;
    max-width: 220px;
}

.p-sec08 table {
    width: 100%;
    letter-spacing: 0;
}
.p-sec08 table tr {
    border-bottom: 1px solid #beb8a2;
}
.p-sec08 table th, .p-sec08 table td {
    vertical-align: top;
    text-align: left;
    line-height: 1.8;
}
.p-sec08 table th {
    font-family: "Noto Serif JP", serif;
    color: #de9d7a;
    padding: .3em 0;
    width: 4.5em;
}
.p-sec08 table td {
    font-size: clamp(6px, 3.2vw, 16px);
    padding: .4em 0;
}

.p-sec08 .map {
    margin-top: 1em;
}
.p-sec08 .map iframe {
    width: 100%;
    height: 22.66667vw;
    max-height: 113px;
}

@media only screen and (min-width: 1024px) {
    .p-sec08 .sec-contents {
        padding: 30px;
    }
    .p-sec08 .sec-ttl img {
        width: 248px;
        max-width: 100%;
    }
    .p-sec08 table td {
        font-size: 18px;
    }
    .p-sec08 .map iframe {
        height: 128px;
        max-height: auto;
    }
}

/*------------------------------------------
  component
------------------------------------------*/
.swiper-container {
    width: 100%;
    height: 100svh;
}