@charset "UTF-8";

html {
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
    counter-reset: number 0;
    color: #131314;
}

section {
    padding-inline: 16px;
}

/* 共通パーツ */

.return__button {
    display: block;
    width: 267px;
    max-width: 100%;
    padding-inline: 10px;
    padding-block: 26px;
    background: #FFFFFF;
    color: #BF9C66;
    font-size: 1.6rem;
    font-weight: 400;
    text-align: center;
    border: 1.6px solid #BF9C66;
    margin-inline: auto;
    border-radius: 4px;
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 400;
}


.detail__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.5em 1.3em;
    position: relative;
}

.detail__link::before {
    content: "";
    background: #ffffff;
    width: 100%;
    height: 100%;
    position: absolute;
    transform: scale(1);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.detail__link:hover::before {
    transform: scale(1.1);
}

.detail__link-text {
    font-size: 1.6rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    font-family: "Sawarabi Mincho", serif;
}

.detail__link-icon {
    display: inline-block;
    position: relative;
    width: 1.4rem;
    aspect-ratio: 1;
    border: 1px solid #131314;
    border-radius: 50%;
    background: #ffffff;
    margin-top: 0.1rem;
    z-index: 1;
    transition: background .3s ease;
}

.detail__link-icon:after {
    content: "\f061";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    font-size: 0.8rem;
    color: #131314;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: color .3s ease;
}

.detail__link:hover .detail__link-icon {
    background: #131314;
}

.detail__link:hover .detail__link-icon::after {
    color: #ffffff;
}

.detail__link.__border {
    margin-top: 56px;
}


.detail__link.__border::before {
    border: 1px solid #131314;
}

.pc-disp {
    display: block;
}

.sp-disp {
    display: none;
}

/* breadcrumbs */
.breadcrumbs {
    width: 1032px;
    max-width: 100%;
    margin-inline: auto;
    margin-bottom: 60px;
    font-size: 1.2rem;
    padding-inline: 16px;
    line-height: calc(24 / 12);
}

.breadcrumbs.__mb40 {
    margin-bottom: 40px;
    padding-inline: 0px;
}

.breadcrumbs.__single {
    width: 1132px;
    padding-inline: 1.6rem;
}

.breadcrumbs.__news {
    width: auto;
    padding-left: 10px;
    padding-inline: 16px;
}

.breadcrumbs span:not(:last-of-type) {
    text-decoration: underline;
}

/* header--pc */

.header {
    padding: 32px 0 0;
    max-width: 100%;
    height: 100dvh;
    overflow: hidden;
}

.header.__top {
    width: 176px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
}

.header.__main {
    background: #F8F5EF;
    /* z-index: -2; */
}

.header.__top.__main.__fixed {
    position: fixed;
    left: -180px;
    top: 0;
    bottom: 0;
    /* transition: all 0.2s ease-in-out; */
}

.header.__top.__main.__fixed.is-active {
    left: 0;
}

.header.__fixed {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
}

.header.__child {
    width: 240px;
    z-index: 4;
}

.header__logo {
    width: 125px;
    margin-inline: auto;
    display: block;
    margin-bottom: 90px;
    padding-top: 25px;
}

.header__logo-img {
    width: 50%;
    margin-inline: auto;
    margin-bottom: 1.6rem;
}


.header__border {
    position: relative;
    width: 129px;
    height: 10px;
    margin-inline: auto;
    border: none;
    margin-bottom: 42px;
}

.header__border.__child {
    width: 176px;
}

.header__border::before,
.header__border::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.1px;
    background-color: #B3B3B2;
}

.header__border::before {
    top: 0;
}

.header__border::after {
    top: 3px;
}

.header__menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header__nav {
    margin-inline: auto;
    padding-bottom: 82px;
}

.header__nav-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 32px
}

.header__nav-item {
    font-size: 1.2rem;
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 1.2px;
    color: #393939;
    writing-mode: vertical-rl;
    position: relative;
    padding-top: 15px;
}

.header__nav-item a {
    font-size: 1.4rem;
}

.header__nav-item::before,
.header__nav-item::after {
    content: "";
    display: block;
    width: 7.5px;
    height: 2px;
    background-color: #E9B830;
    position: absolute;
}

.header__nav-item::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.header__nav-item::after {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.header__nav-item::after {
    bottom: 0;
    right: 25%;
    transform: translateX(50%);
    transform: rotate(90deg);
}

.header__nav-label {
    display: block;
    font-size: 1.2rem;
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 1.2px;
    color: #B17D2E;
    text-align: center;
    margin-inline: auto;
    width: 140px;
    padding-block: 5px;
    background: #FFFFFF;
    margin-bottom: 36px;
}

.header__nav-label.__child {
    width: 176px;
}

.header__link-en {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 1.2px;
    color: #131314;
    background: #FFFFFF;
    text-align: center;
}

.header__link {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.header__link-en {
    display: block;
    width: 100%;
    text-align: center;
    color: #131314;
    background: #FFFFFF;
    padding-block: 7px;
    font-family: "Sawarabi Mincho", serif;
    font-weight: 400;
    font-style: normal;
    line-height: calc(20 / 14);
}

.header__link-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    width: 100%;
    color: #FFFFFF;
    background: #BF9C66;
    padding-block: 1.5em;
    font-size: 1.6rem;
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    font-weight: 400;
}

.header__link-contact:before {
    content: "";
    display: inline-block;
    width: 1.3em;
    height: 0.9em;
    background-image: url(../images/header-contact-icon.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header__staff-name.__icon::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../images/corporate-icon.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-15%, -15%) rotate(0deg);
    background-color: transparent;
}

/* header--sp */

.header--sp {
    display: none;
}

.nav__wrap--sp {
    display: none;
}

/* toggle menu */

.toggle-button {
    position: fixed;
    top: 50%;
    left: 220px;
    width: 56px;
    height: 56px;
    background: #BF9C66;
    z-index: 5;
    box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.4);
    transform: translate(0, -50%);
}

.toggle-button.__top {
    top: 5%;
    left: 2%;
    z-index: 1000;
    opacity: 0;
}

.toggle-button.__top.is-show {
    opacity: 1;
}


.toggle-button__line {
    display: block;
    width: 36px;
    height: 2px;
    background: #FFFFFF;
    margin-inline: auto;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    opacity: 1;
    transition: all 0.2s ease-in-out;
}

.toggle-button__line.is-active {
    opacity: 0;
    width: 0;
}

.toggle-button__line--none {
    display: block;
    width: 0px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 2px;
    margin-inline: auto;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    opacity: 0;
    transition: all 0.2s ease-in-out;
}

.toggle-button__line--none.is-active {
    opacity: 1;
    width: 36px;
}

.toggle-button .toggle-button__line:nth-child(1) {
    top: 12px;
}

.toggle-button .toggle-button__line:nth-child(2) {
    top: 20px;
}

.toggle-button .toggle-button__line:nth-child(3) {
    top: 28px;
}

.toggle-button__line--none:nth-child(4),
.toggle-button__line--none:nth-child(5) {
    top: 20px;
}

.toggle-button__line--none.is-active:nth-child(4) {
    top: 16px;
}
.toggle-button__line--none.is-active:nth-child(5) {
    top: 24px;
}

.toggle-button__arrow--left.is-active::before {
    content: "";
    display: block;
    width: 10px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 2px;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(135deg) translate(-2px, 3px);
}

.toggle-button__arrow--right.is-active::before {
    content: "";
    display: block;
    width: 10px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 2px;
    position: absolute;
    top: 0;
    right: 0;
    transform: rotate(315deg) translate(-2px, 3px);
}



.toggle-button__label {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translate(-50%, 0);
}

.header.__fixed.is-stopped {
    position: absolute;
}

.header.__top.__main.__fixed.is-stopped {
    position: absolute;
}

.toggle-button.is-stopped{
    position: absolute;
}


/* header sub */
.header.__sub {
    background: #E3DBCF;
    display: block;
}

.header.__sub.is-active {
    display: none;
}

.header__nav-sub-wrap {
    margin-inline: 30px;
}

.header__nav-sub {
    display: flex;
    flex-direction: column;
    font-family: "Noto Sans JP", sans-serif;
}

.header__nav-this-page {
    margin-bottom: 14px;
}

.header__nav-this-page-link {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: calc(42 / 14);
    color: #131314;;
    position: relative;
    padding-left: 24px;
}

.header__nav-this-page-item {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: calc(30 / 14);
    color: #131314;
    position: relative;
    padding-left: 24px;
}

.header__nav-item-sub-item {
    margin-bottom: 2rem;
}

.header__nav-item-sub-link  {
    font-size: 1.4rem;
    font-weight: 300;
    color: #131314;
    position: relative;
    padding-left: 24px;
    display: block;
}

.header__nav-item-sub-link.__icon {
    font-weight: 500;
}

.header__nav-item-sub > ul {
    margin-bottom: 3px;
    margin-top: 2.0rem;
}

.header__nav-item-sub-link.__icon::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../images/nav-icon.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-15%, -15%) rotate(0deg);
    background-color: transparent;
}

.header__nav-item-sub-item ul {
    margin-left: 2.4rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.header__nav-item-sub-item ul li {
    font-size: 1.4rem;
    font-weight: 300;
    color: #131314;
    position: relative;
    padding-left: 24px;
}

.header__nav-item-sub-link::before,
.header__nav-item-sub-item ul li::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: #BF9C66;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(50%, 75%) rotate(45deg);
}




/* kv */

.kv {
    width: calc(100% - 176px);
    height: 100%;
    margin-left: 176px;
    overflow: hidden;
    position: relative;
}

.kv__slider {
    width: 100%;
    height: 100%;
    margin-left: 0;
    list-style: none;
    padding: 0;
}

.kv__slider-item {
    width: 100%;
    height: 100dvh;
}

.kv__slider-item-01 {
    background-image: url(../images/kv-01_pc.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.kv__slider-item-02 {
    background-image: url(../images/kv-02_pc.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.kv__slider-item-03 {
    background-image: url(../images/kv-03_pc.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.kv__slider-item-01-inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
}

.kv__copy {
    width: 226px;
    background: radial-gradient(circle at bottom left,
    transparent 0%,
    transparent 40%,
    #ffffff 100%);
    padding-inline: 21px 35px;
    padding-top: 44px;
}

.kv__copy > img {
    width: 100%;
    object-fit: cover;
}

.kv__slider-item-02-inner,
.kv__slider-item-03-inner {
    position: relative;
    width: 100%;
    height: 100%;
    padding-right: 45px;
    padding-top: 44px;
    display: flex;
    justify-content: flex-end;
}

.kv__slider-item-02-inner::before,
.kv__slider-item-03-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        #d7b377 0%,
        #c69e5e 50%,
        #b58949 100%
    );
    clip-path: polygon(0 79%, 100% 62%, 100% 100%, 0 100%);
    z-index: 0; /* 背景用 */
}


.kv__slider-item-02__title,
.kv__slider-item-03__title {
    display: block;
}

.kv__slider-item-02__title > span,
.kv__slider-item-03__title > span {
    font-family: "Sawarabi Mincho", serif;
    font-style: normal;
    font-weight:lighter;
    font-size: 3.2rem;
    color: #131314;
    background: #FFFFFF;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4.3rem;
    height: 4.3rem;
    border: 1px solid #BF9C66;
}


.kv__slider-item-body {
    position: absolute;
    bottom: 0;
    margin-bottom: 140px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 16px;
    z-index: 1;
}

.kv__slider-item-02__link,
.kv__slider-item-03__link {
    font-size: 1.6rem;
    font-weight: 400;
    color: #FFFFFF;
    display: inline-block;
    position: relative;
    padding-right: 24px;
}

.kv__slider-item-02__link:before,
.kv__slider-item-03__link:before {
    content: "";
    display: block;
    width: 16px;
    aspect-ratio: 1;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}

.kv__slider-item-02__link::after,
.kv__slider-item-03__link::after {
    content: "\f061";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    font-size: 0.8rem;
    color: #FFFFFF;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-50%, -50%);
}

.kv__inner {
    width: calc(100% - 70px);
    height: calc(100% - 30px);
    margin-inline: auto;
    position: relative;
}

.kv-news {
    max-width: 100%;
    width: 1130px;
    position: absolute;
    bottom: 30px;
    right: 0;
    background: #FFFFFF;
    padding-inline: 56px;
    padding-block: 10px;
    border-radius: 37px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-family: "Noto Sans JP", sans-serif;
}

.kv-news__text-wrap > a {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.kv-news__text-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    width: 100%;
    min-width: 0;
}

.kv-news__date {
    font-size: 1.6rem;
    font-weight: 400;
    color: #131314;
    flex-shrink: 0;
}

.kv-news__bar {
    width: 1px;
    height: 26px;
    background: #131314;
    flex-shrink: 0;
}

.kv-news__title {
    font-size: 1.6rem;
    font-weight: 400;
    color: #131314;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.kv-news__link-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.kv-news__bar--gray {
    width: 2px;
    height: 54px;
    background: #F7F7F7;
    flex-shrink: 0;
}

.kv-news__link {
    font-size: 1.4rem;
    font-family: "Sawarabi Mincho", serif;
    font-weight: 200;
    font-style: normal;
    color: #131314;
    position: relative;
    padding-right: 14px;
    flex-shrink: 0;
    display: block;
    max-width: 100%;
}

.kv-news__link::after {
    content: "";
    width: 14px;
    height: 14px;
    background-image: url(../images/arrow-icon.webp);
    background-size: cover;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 4px;
}

.dots-wrap {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;

}

.dots-wrap li {
    width: 8px;
    height: 8px;
    margin: 0 5px;
    background: #F2F2F2;
    border-radius: 50%;
    cursor: pointer;
}

.dots-wrap li:hover,
.dots-wrap li.slick-active {
    background: #AAAAAA;
}
.dots-wrap li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}

/* concept */
.concept {
    background: #F7F7F7;
    padding-top: 121px;
}

.concept__inner {
    width: 100%;
    max-width: 1052px;
    background: #FFFFFF;
    margin-inline: auto;
    padding-block: 72px 80px;
    padding-inline: 16px;
    text-align: center;
    margin-bottom: 85px;
}

.concept__title {
    width: 468px;
    max-width: 100%;
    margin-inline: auto;
}

.concept__title > img {
    width: 100%;
    object-fit: cover;
}

.concept__text {
    margin-top: 40px;
    font-size: 1.6rem;
    line-height: calc(40 / 16);
    font-family: "Sawarabi Mincho", serif;
    font-style: normal;
    font-weight: 400;
}

.concept__slider {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
}

.slick-slide > img {
    height: 100%;
    object-fit: cover;
}

/* service */
.service {
    background: #F0E7D5;
    padding-block: 80px 120px;
}

.service__inner {
    width: 100%;
    max-width: 1062px;
    margin-inline: auto;
}

.service__title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.section-title-ja.__top {
    font-size: 6.0rem;
    font-weight: 400;
    letter-spacing: 0.07em;
    color: #131314;
    font-family: "Sawarabi Mincho", serif;
    font-style: normal;
}

.section-title-en.__top {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: #B17D2E;
    font-family: "Noto Sans JP", sans-serif;
}

.section-text.__top {
    font-family: "Sawarabi Mincho", serif;
    font-style: normal;
}

.section-text.__service.__top {
    font-size: 2.6rem;
    font-weight: 400;
    line-height: calc(38 / 26);
    color: #4B4B4B;
    margin-left: 40px;
}

.service__body {
    margin-top: 64px;
    margin-left: 40px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
}

.service__block {
    display: flex;
    width: 100%;
    opacity: 0;
    visibility: 0;
    transition: all 1.4s;
    transform: translateY(150px);
}

.service__block.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.service__content {
    width: 557px;
    max-width: 100%;
    background: linear-gradient(
        to bottom,
        #d7b377 0%,
        #c69e5e 50%,
        #b58949 100%
    );
    padding-block: 45px 43px;
    display: flex;
    flex-flow: column;
    align-items: center;
}

.service__content.__second {
    padding-block: 31px 34px;
}

.service__content-title {
    display: flex;
    flex-flow: column;
    align-items: center;
}

.service__content-title > span {
    display: block;
    font-family: "Noto Sans JP", sans-serif;
}

.service__content-title-en {
    color: #ffffff;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.service__content-title-bar {
    width: 156px;
    height: 1px;
    background: #ffffff;
    margin-bottom: 35px;
}

.service__content-title-bar.__second {
    margin-bottom: 28px;
}

.service__content-title-ja {
    margin-bottom: 32px;
}

.service__content-title-ja.__second {
    margin-bottom: 30px;
}

.service__content-title-ja > span {
    font-family: "Sawarabi Mincho", serif;
    font-style: normal;
    font-weight:lighter;
    font-size: 3.2rem;
    color: #131314;
    background: #FFFFFF;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4.0rem;
    height: 4.0rem;
    border: 1px solid #BF9C66;
}

.service__content-text {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: calc(26 / 15);
    color: #131314;
    font-family: "Sawarabi Mincho", serif;
    font-style: normal;
    margin-bottom: 36px;
}

.service__content-text.__second {
    margin-bottom: 28px;
}

.service__img {
    width: 468px;
}

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

.service__block-bottom {
    background: #C7B79F;
    width: 100%;
}

.service__block-bottom-inner {
    width: 100%;
    padding-block: 36px;
    text-align: center;
}

.service__block-bottom-lead {
    font-size: 2.8rem;
    font-weight: 400;
    color: #FFFFFF;
    font-family: "Sawarabi Mincho", serif;
    font-style: normal;
    margin-bottom: 16px;
}

.service__block-bottom-text {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: calc(24 / 14);
    color: #131314;
    font-family: "Sawarabi Mincho", serif;
    font-style: normal;
    margin-bottom: 26px;
}

.service__block-bottom-slider-item {
    width: 190px;
    position: relative;
    margin-left: 20px;
}


.service__block-bottom-slider-item-text {
    font-size: 2.0rem;
    font-weight: 400;
    color: #FFFFFF;
    font-family: "Sawarabi Mincho", serif;
    font-style: normal;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.service__block-bottom-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.service__block-bottom-slider .slick-list {
    width: 610px;
}

.service-slider-arrow {
    display: block;
    width: 28px;
    max-width: 100%;
    aspect-ratio: 1;
    background-image: url(../images/service-slider-arrow.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 0;
}


.service-slider-arrow.prev-arrow {
    transform: rotate(180deg);
}

.service__block-bottom-slider .slick-disabled {
    opacity: 0;
    pointer-events: none;
}

/* information */

.information {
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), #F0E7D5 calc(100% - 1px)),
                    linear-gradient(90deg, transparent calc(100% - 1px), #F0E7D5 calc(100% - 1px));
    background-size: 40px 40px;
    background-repeat: repeat;
    background-position: center center;
    padding-block: 100px 125px;
}

.information__inner {
    width: 100%;
    max-width: 1233px;
    margin-inline: auto;

}

.information__title {
    text-align: right;
}

.section-title-ja.__information.__top {
    margin-bottom: 12px;
    display: inline-block;
}

.section-title-en.__information.__top {
    display: block;
    margin-right: 16px;
}

.information__content {
    display: flex;
    gap: 60px;
}

.information__copy-text.__sp {
    display: none;
}

.information__copy-img {
    width: 96px;
    max-width: 100%;
    flex-shrink: 0;
}

.information__body {
    margin-top: 61px;
}

.information__block-link {
    box-shadow: 0px 0px #C7B79F;
    transform: translate(10px, 10px);
    display: block;
    transition: box-shadow .3s ease, transform .3s ease;
}

.information__block-link:hover {
    box-shadow: 10px 10px #C7B79F;
    transform: translate(0px, 0px);
}

.information__block {
    width: 100%;
    max-width: 980px;
    background: #FFFFFF;
    border: 1.25px solid #B17D2E;
    display: grid;
    grid-template-areas: 
    "img text title";
    position: relative;
    
}

.information__block:first-child {
    margin-bottom: 42px;
}

.information__block-img {
    width: 350px;
    margin-right: 24px;
    grid-area: img;
}

.information__block-text-wrap {
    display: flex;
    align-items: flex-end;
    grid-area: text;
}

.information__block-text {
    font-size: 1.5rem;
    line-height: calc(24 / 15);
    font-weight: 400;
    color: #131314;
    font-family: "Sawarabi Mincho", serif;
    font-style: normal;
    margin-bottom: 24px;
    margin-right: 84px;
}

.information__block-title-wrap {
    margin-top: 30px;
    grid-area: title;
}

.information__block-title {
    font-size: 3.0rem;
    color: #131314;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.12em;
    line-height: calc(40 / 30);
}

.information__block-title span {
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl; 
    -ms-writing-mode: vertical-rl; 
    width: 1em;
    margin-right: 40px;
}

.information__block-arrow { 
    display: block;
    width: 48px;
    position: absolute;
    bottom: -1px;
    right: -1px;
}

/* cta */

.cta {
    background: #FAE367;
    padding-block: 96px 84px;
    padding-inline: 38px;
    position: relative;
}

.cta__inner {
    text-align: center;
}

.cta__title {
    margin: 0 auto;
    margin-bottom: 17px;
    font-size: 3.2rem;
    font-weight: 500;
}

.cta__price {
    font-size: 2.6rem;
}

.cta__price-tax {
    font-size: 1.4rem;
}

.cta__price-text {
    font-size: 1.4rem;
    margin-top: 5px;
    margin-bottom: 22px;
}


.cta__img {
    width: 64px;
    margin-inline: auto;
    margin-bottom: 25px;
}

.cta__text {
    font-size: 1.8rem;
    line-height: calc(32 / 18);
    font-weight: 400;
    color: #131314;
    margin-bottom: 60px;
}

.cta__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 2.2em 3.0em;
    position: relative;
}

.cta__link::before {
    content: "";
    background: #ffffff;
    width: 100%;
    height: 100%;
    position: absolute;
    transform: scale(1);
    transform-origin: center;
    transition: transform 0.3s ease;
    border: 3px solid #C6A252;
}

.cta__link:hover::before {
    transform: scale(1.1);
}

.cta__link-text {
    font-size: 2.2rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    font-family: "Sawarabi Mincho", serif;
}

.cta__link-icon {
    display: inline-block;
    position: relative;
    width: 2.2rem;
    aspect-ratio: 1;
    border: 1px solid #131314;
    border-radius: 50%;
    background: #ffffff;
    z-index: 1;
    transition: background .3s ease;
}

.cta__link-icon:after {
    content: "\f061";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    font-size: 1rem;
    color: #131314;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: color .3s ease;
}

.cta__link:hover .cta__link-icon {
    background: #131314;
}

.cta__link:hover .cta__link-icon::after {
    color: #ffffff;
}



/* footer */

.footer {
    background: #F2F2F2;
    padding-top: 98px;
    padding-inline: 35px;
    position: relative;
}

.footer__inner {
    width: 1148px;
    max-width: 100%;
    margin-inline: auto;
}

.footer__logo-img-wrap {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer__logo-img {
    width: 58px;
}

.footer__logo-text {
    width: 186px;
}


.footer__nav-wrap {
    display: flex;
    justify-content: space-between;
    margin-left: 6%;
    margin-right: 3%;
}

.footer__nav {
    display: flex;
    gap: 80px;
    font-family: "Noto Sans JP", sans-serif;
}

.footer__nav-body > a,
.footer__nav-body > span {
    font-size: 1.6rem;
    color: #805900;
    display: block;
    margin-bottom: 14px;
}

.footer__nav-block > a {
    font-size: 1.1rem;
    color: #805900;
    display: block;
    margin-bottom: 10px;
}

.footer__nav-list {
    display: flex;
    flex-flow: column;
    gap: 10px;
    margin-bottom: 22px;
}

.footer__nav-item {
    font-size: 1.4rem;
}

.footer__nav-item > a {
    position: relative;
    padding-left: 14px;
}

.footer__nav-item > a::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent transparent #131314;
    border-width: 5px 0px 5px 8.66px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.footer__copyright-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #805900;
    padding-block: 32px;
}

.footer__copyright-wrap > p,
.footer__copyright-wrap > a {
    font-size: 1.0rem;
    font-family: "Sawarabi Mincho", serif;
    font-style: normal;
    font-weight: 400;
}

/* service */

.page-service__wrap {
    width: calc(100% - 260px);
    margin-left: 260px;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    /* position: relative; */
    min-height: 100dvh;

}

.page-service__title-wrap {
    background: #BF9C66;
    margin-top: 105px;
    padding-left: 118px;
    border-radius: 4px;
    margin-bottom: 96px;
}

.page-service__title-inner {
    width: 1062px;
    max-width: 100%;
    margin-inline: auto;
    padding-top: 100px;
    display: flex;
    justify-content: space-between;
    min-height: 328px;
}

.page-service__title {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-service__title-en {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    margin-bottom: 24px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    display: inline-block;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 6.5px;
    padding-inline: 4px;
}
.page-service__title-ja {
    display: block;
    text-align: left;
}

.page-service__title-ja.__executive {
    text-align: left;
}

.page-service__title-ja > span {
    font-family: "Sawarabi Mincho", serif;
    font-style: normal;
    font-weight:lighter;
    font-size: 4.2rem;
    color: #131314;
    background: #FFFFFF;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 5.3rem;
    height: 5.3rem;
    border: 1px solid #BF9C66;
}

.page-service__title-img {
    width: 544px;
    margin-top: -150px;
}

.page-service__content-inner {
    width: 1032px;
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 16px;
}   

.page-service__list {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-bottom: 300px;
    counter-reset: num;
}

.page-service__item-title {
    font-size: 2.0rem;
    font-weight: 400;
    color: #131314;
    padding-bottom: 12px;
    margin-bottom: 36px;
    border-bottom: 1px solid #131314;
    counter-increment: num;
}

.page-service__item-title:before {
    content: counter(num)'. ';
}

.page-service__body {
    width: 91.7%;
}

.page-service__lead {
    font-size: 2.8rem;
    line-height: calc(39 / 28);
    margin-bottom: 16px;
}

.page-service__tag-list-wrap ul {
    display: flex;
    gap: 16px;
    background: #F7F2E9;
    padding-inline: 16px;
    padding-block: 9px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.page-service__tag-list-wrap ul li {
    font-size: 1.5rem;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    line-height: calc(19 / 15);
    font-style: normal;
    color: #131314;
}

.page-service__tag-item::before {
    content: "#";
    padding-right: 2px;
}

.page-service__content {
    display: flex;
    justify-content: space-between;
    gap: calc(35 / 920 * 100%);
}

.page-service__content.__reverse {
    flex-direction: row-reverse;
}

.page-service__text-wrap {
    text-align: center;
}

.page-service__text {
    font-size: 1.6rem;
    line-height: calc(32 / 16);
    letter-spacing: 0.01em;
    font-weight: 400;
    color: #131314;
    text-align: left;
}

.page-service__link {
    font-size: 1.6rem;
    font-weight: 400;
    color: #131314;
    display: inline-block;
    border: 1px solid #131314;
    padding-block: 8px;
    padding-inline: 20px 40px;
    margin-top: 56px;
}

.page-service__content-img {
    width: calc(359 / 920 * 100%);
    flex-shrink: 0;
}

.page-service__content-img > img {
    object-fit: cover;
    width: 100%;
}

/* service detail */

.page-service__title-wrap.__detail {
    padding-left: 10px;
}

.page-service__title-inner.__detail {
    width: 1062px;
    padding-top: 68px;
    min-height: 235px;
    padding-inline: 16px;
}

.page-service__title-img.__detail {
    top: 0;
}
.page-service__title.__detail {
    display: block;
}

.page-detail__content-title {
    font-size: 2.8rem;
}



/* page */

.page__wrap {
    width: calc(100% - 240px);
    margin-left: 240px;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.page__inner {
    width: 100%;
    max-width: 1070px;
    padding-top: 120px;
    margin-inline: auto;
    padding-inline: 24px;
    position: relative;
}

.page__bgi-img {
    width: 400px;
    max-width: 100%;
    position: fixed;
    top: 200px;
    left: calc(50% + min(29.166666666666668vw,420px));
    z-index: -100;
}

.page__title {
    margin-bottom: 150px;
}

.page__title-ja {
    font-size: 6.0rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #131314;
    display: block;
    margin-bottom: 22px;
}

.page__title-ja.__brown {
    margin-bottom: 0;
    color: #B17D2E;
    font-family: "Noto Sans JP", sans-serif;
}

.page__title-en {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: #B17D2E;
    display: block;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* detail */
.page-service-detail__body {
    display: flex;
    flex-direction: column;
    gap: 140px;
    margin-bottom: 300px;
}

.page-service-detail__block-title {
    font-size: 2.8rem;
    line-height: calc(39 / 28);
    margin-bottom: 60px;
}

.page-service-detail__block-title-number {
    content:"none";
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 60px;
    height: 60px;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.page-service-detail__block-title-number.__num01 {
    background-image: url(../images/title-num01.webp);
}

.page-service-detail__block-title-number.__num02 {
    background-image: url(../images/title-num02.webp);
}

.page-service-detail__block-title-number.__num03 {
    background-image: url(../images/title-num03.webp);
}

.page-service-detail__block-title-number.__num04 {
    background-image: url(../images/title-num04.webp);
}

.page-service-detail__list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.page-service-detail__list.__counter {
    counter-reset: num;
}

.page-service-detail__item.__counter {
    counter-increment: num;
}

.page-service-detail__item-title {
    font-size: 2.8rem;
    line-height: calc(39 / 28);
    color: #BF9C66;
    margin-bottom: 20px;
}

.page-service-detail__item-title.__black {
    color: #131314;
    font-size: 2.8rem;
    line-height: calc(39 / 28);
    margin-bottom: 20px;

    span::before {
        content: "事例"counter(num)"：";
    }
}

.page-service-detail__item-lead {
    font-size: 1.6rem;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    padding: 10px 16px;
    margin-bottom: 16px;
    background: #D5D5D5;
}

.page-service-detail__item-content-text {
    font-size: 1.6rem;
    line-height: calc(32 / 16);
}

.page-service-detail__item-content.__row {
    display: flex;
    gap: 28px;
}

.page-service-detail__item-img.__row {
    max-width: 360px;
    width: 100%;
    flex-shrink: 0;

}

.page-service-detail__item-content.__column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.page-service-detail__item-img.__column {
    max-width: 627px;
    width: 100%;
}

.page-service-detail__flow {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.flow-item__wrap {
    position: relative;
}

.flow-item__wrap::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 18px solid transparent;
    border-left: 18px solid transparent;
    border-top: 14px solid #bf9c66;
    border-bottom: 0;
    position: absolute;
    bottom: calc(0 + 5px);
    left: 50%;
    transform: translate(-50% ) translateY(50%);
}

.flow-item__wrap:last-of-type::after {
    display: none;
}

.page-service-detail__flow-item {
    display: flex;
    border-radius: 6px;
    background: #F7F2E9;
    overflow: hidden;
}

.flow-item__term {
    width: 20%;
    flex-shrink: 0;
    background: #BF9C66;
    padding: 32px 24px;
}

.flow-item__term > span {
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 12px;
    display: block;
}

.flow-item__term-date {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.flow-item__term-date > span {
    font-size: 1.5rem;
    color: #6F7070;
    background: #FFFFFF;
    font-family: "Noto Sans JP", sans-serif;
    line-height: calc(30 / 16);
    padding: 0.5rem 0.8rem;
    border-radius: 100%;
    flex-shrink: 0;
}

.flow-item__term-date > span.__double {
    font-size: 1.5rem;
    color: #6F7070;
    background: #FFFFFF;
    font-family: "Noto Sans JP", sans-serif;
    line-height: calc(30 / 16);
    padding: 0.5rem 0.3rem;
    border-radius: 100%;
    flex-shrink: 0;
}

.flow-item__content {
    padding: 22px 94px 22px 40px;
    position: relative;
}

.flow-item__content > h4 {
    font-size: 1.8rem;
    line-height: calc(32 / 18);
    font-family: "Noto Sans JP", sans-serif;
    border-bottom: 1px solid #BF9C66;
    margin-bottom: 16px;
    display: inline-block
}

.flow-item__content > p {
    font-size: 1.4rem;
    line-height: calc(28 / 14);
}

.page-service-detail__card-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    counter-reset: num;
}

.page-service-detail__card-item {
    padding: 16px 16px 40px;
    border: 1px solid #BF9C66;
    counter-increment: num;
}

.page-service-detail__card-item > span:before {
    content: "No."counter(num);
    font-size: 1.4rem;
    display: inline-block;
    margin-bottom: 25px;
}

.page-service-detail__card-item-content {
    text-align: center;
    padding-inline: 19px;
}

.page-service-detail__card-item-title {
    font-size: 2.4rem;
    color: #BF9C66;
    margin-bottom: 14px;
}

.page-service-detail__card-item-lead {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.7rem;
    line-height: calc(29 / 17);
    padding-bottom: 5px;
    border-bottom: 1px solid #BF9C66;
    margin-bottom: 16px;
    margin-inline: 18px
}

.page-service-detail__card-item-text {
    font-size: 1.4rem;
    line-height: calc(27 / 14);
    margin-bottom: 20px;
}

.page-service-detail__card-item-img {
    margin-inline: 25px;
}


/* job openings */

.job-openings__body {
    display: flex;
    flex-direction: column;
    gap: 120px;
    margin-bottom: 300px;
}

.job-openings__block-title {
    font-size: 2.0rem;
    font-weight: 400;
    border-bottom: 1px solid #131314;
    padding-bottom: 12px;
}

.job-openings__block-title.border-none {
    border-bottom: none;
}

.job-openings__block-inner {
    margin-top: 28px;
}

.job-openings__block-intro {
    font-size: 2.8rem;
    line-height: calc(39 / 28);
    font-weight: 400;
    margin-bottom: 50px;
}

.job-openings__block-grid {
    display: grid;
    grid-template: 
    "copy img" 70px
    "text img" 1fr
    / 1fr 359px;
    gap: 12px 90px;
    justify-self: left;
    align-items:flex-start
}

.job-openings__block-copy-img {
    grid-area: copy;
    object-fit: cover;
    height: 100%;
}

.job-openings__block-copy-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job-openings__block-text {
    font-size: 1.6rem;
    line-height: calc(32 / 16);
    letter-spacing: 0.01em;
    font-weight: 400;
    grid-area: text;
}

.job-openings__block-img {
    grid-area: img;
}

.job-openings__block-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job-openings__box-title {
    font-size: 2.8rem;
    font-weight: 400;
    position: relative;
}

.job-openings__box-title.__toggle::before,
.job-openings__box-title.__toggle::after {
    content: "";
    width: 3.2rem;
    height: 0.1rem;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: #131314;
    margin-right: 30px;
    transition: 1s cubic-bezier(.19,1,.22,1);
}

.job-openings__box-title.__toggle::after {
    opacity: 0;
}

.job-openings__box-title.__toggle.is-active::before {
    transform: rotate(90deg);
}

.job-openings__box-title.__toggle.is-active::after {
    transform: rotate(180deg);
    opacity: 1;
}

.job-openings__box-wrap {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.job-openings__box {
    padding-block: 28px;
    border-top: 1px solid #131314;
    border-bottom: 1px solid #131314;
}

.job-openings__accordion {
    height: 0;
    overflow: hidden;
    transition: height 0.6s ease;
}

.job-openings__box-text-wrap {
    font-size: 1.6rem;
    line-height: calc(32 / 16);
    letter-spacing: 0.01em;
    font-weight: 400;
    padding-block: 42px;
    padding-inline: 28px;
    background:#F7F2E9;
    width: 920px;
    max-width: 100%;
    margin-top: 28px;
}

.job-openings__br--sp {
    display: none;
}

.job-openings__box-text-wrap p:last-of-type {
    white-space: pre-wrap;
}

.job-openings__item {
    margin-bottom: 74px;
}

.job-openings__item:last-of-type {
    margin-bottom: 0;
}

.job-openings__item-title {
    font-size: 2.8rem;
    line-height: calc(39 / 28);
    font-weight: 400;
    margin-bottom: 26px;
}

.job-openings__block-inner h4 {
    position: relative;
    padding-left: 78px;
}

.job-openings__block-inner h4::before {
    content: "";
    display: inline-block;
    width: 6.8rem;
    height: 6.4rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 10px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.num01::before {
    background-image: url(../images/title-num01.webp);
}

.num02::before {
    background-image: url(../images/title-num02.webp);
}

.num03::before {
    background-image: url(../images/title-num03.webp);
}

.num04::before {
    background-image: url(../images/title-num04.webp);
}

.job-openings__item-text {
    font-size: 1.6rem;
    line-height: calc(32 / 16);
    letter-spacing: 0.01em;
}

/* office */

.office__title {
    font-size: 2.8rem;
    font-weight: 400;
    line-height: calc(39 / 28);
    margin-bottom: 90px;
}

.office__block-title {
    font-size: 2.0rem;
    padding: 10px;
    background: #D5D5D5;
    margin-bottom: 44px;
}

.office__body {
    display: flex;
    flex-direction: column;
    gap: 90px;
    margin-bottom: 300px;
}

.office__table {
    width: 100%;
    border-collapse: collapse;
}

.office__table.__english span {
    display: inline-block;
    font-size: 2rem;
}

.office__table.__english p {
    font-size: 1.5rem;
}

.office__table.__english .office__tag {
    display: flex;
    flex-wrap: wrap;
    gap: 0px 10px;
    margin-bottom: 24px;
}

.office__table.__english .office__tag span {
    font-size: 1.4rem;
}

.office__table tr {
    display: flex;
    flex-flow: column;
    margin-bottom: 32px;
}

.office__table tr:last-of-type {
    margin-bottom: 0;
}

.office__table th {
    font-size: 1.6rem;
    font-weight: 400;
    width: 100%;
    border-bottom: 1px solid #131314;
    padding-bottom: 12px;
    text-align: left;
}

.office__table td {
    font-size: 2.0rem;
    line-height: calc(29 / 20);
    font-weight: 400;
    width: 100%;
    padding-top: 12px;
}

.office-history__table {
    width: 100%;
}

.office-history__table tr {
    margin-bottom: 14px;
    display: flex;
    gap: 3.2rem;
    font-size: 1.6rem;
    line-height: calc(29 / 16);
    font-weight: 400;
}

.office-history__table tr:last-of-type {
    margin-bottom: 0;
}

.office-history__table th {
    text-align: left;
    font-weight: 400;
    flex-shrink: 0;
}

.office-history__table td {
    display: flex;
    gap: 3.2rem;
}

.office-history__table td span {
    flex-shrink: 0;
}

.office-access__list {
    margin-bottom: 48px;
}

.office-access__item {
    font-size: 2rem;
    line-height: calc(29 / 20);
    font-weight: 400;
}

.office__map iframe {
    width: 920px;
    max-width: 100%;
    aspect-ratio: 920 / 480;
}

.office__list {
    font-size: 2.0rem;
    line-height: calc(34 / 20);
}

.office__list li::before {
    content: "・";
    padding-right: 10px;
}

.office__address {
    font-size: 2.0rem;
    line-height: calc(29 / 16);
    font-weight: 400;
    margin-bottom: 14px;
}

.office-access--en {
    line-height: calc(29 / 15);
    font-weight: 400;
    font-size: 1.5rem;
}

.office-access--en span {
    line-height: 1;
}

.office-access__item--en:before {
    content: "・";
}

/* professional service */

.professional-service__body {
    display: flex;
    flex-direction: column;
    gap: 120px;
    margin-bottom: 300px;
}

.professional-service__block-title {
    font-size: 2.0rem;
    font-weight: 400;
    border-bottom: 1px solid #131314;
    padding-bottom: 12px;
}

.professional-service__block-inner {
    margin-top: 28px;
    width: calc(920 / 1000 * 100%);
}

.professional-service__block-inner.__pr88 {
    padding-right: 88px;
}

.professional-service__block-intro {
    font-size: 2.8rem;
    line-height: calc(46 / 28);
    font-weight: 400;
    margin-bottom: 50px;
}

.professional-service__block-intro.__mb16 {
    margin-bottom: 16px;
}

.professional-service__block-tag-list-wrap {

    ul {
        display: flex;
        gap: 16px;
        background: #F7F2E9;
        padding-inline: 16px;
        padding-block: 9px;
        margin-bottom: 32px;
        flex-wrap: wrap;

        li {
            font-size: 1.5rem;
            font-family: "Noto Sans JP", sans-serif;
            font-optical-sizing: auto;
            font-weight: 500;
            line-height: calc(19 / 15);
            font-style: normal;
            color: #131314;
        }
    }
}

.professional-service__block-grid {
    display: flex;
    gap: 44px;
}

.professional-service-staff__flex-box {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.professional-service-staff__flex-item {
    width: 280px;
    text-align: center;
}

.professional-service-staff__img {
    margin-bottom: 16px;
    width: 280px;
    height: 200px;
    position: relative;
}

.professional-service-staff__img-hover,
.professional-service-staff__img-main {
    width: 100%;
    height: 200px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.professional-service-staff__img-main {
    z-index: 1;
    object-position: center top;
}

.professional-service-staff__img-hover {
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.professional-service-staff__img:hover .professional-service-staff__img-hover {
    opacity: 1;
}

.professional-service-staff__name {
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 18px;
}

.professional-service-staff__position {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    padding-left: 26px;
}

.professional-service-staff__position::before {
    content: "";
    display: inline-block;
    width: 2.6rem;
    height: 2.6rem;
    background-image: url(../images/corporate-icon.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
}


.professional-service-staff__link {
    background: #EBEBEB;
    width: 68px;
    margin-inline: auto;
}

.professional-service-staff__link a {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 400;
    padding-block: 8px;
    text-align: center;
    position: relative;
    padding-right: 18px;
}

.professional-service-staff__link a::after {
    content: "";
    display: inline-block;
    width: 1.3rem;
    height: 1.3rem;
    background-image: url(../images/staff-arrow.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.professional-service__block-text {
    font-size: 1.6rem;
    line-height: calc(32 / 16);
    letter-spacing: 0.01em;
    font-weight: 400;
}

.professional-service__block-img {
    flex-shrink: 0;
    width: 38%;
}

/* staff */

.staff__block {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
}

.staff__box {
    padding-top: 18px;
    padding-right: 8px;
}

.staff__position--pc {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    display: inline-block;
    position: relative;
    padding-left: 26px;
}

.staff__position--sp {
    display: none;
}

.staff__position--pc::before {
    content: "";
    display: inline-block;
    width: 2.6rem;
    height: 2.6rem;
    background-image: url(../images/corporate-icon.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
}

.staff__name {
    margin-bottom: 65px; 
}

.staff__name-ja {
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 16px;
    display: block;
}

.staff__name-en {
    font-size: 1.6rem;
    color: #BF9C66;
    display: block;
}

.staff__text {
    font-size: 1.6rem;
    line-height: calc(32 / 16);
    letter-spacing: 0.01em;
    font-weight: 400;
}

.staff__text p {
    white-space: pre-wrap;
}

.staff__text p:first-of-type {
    margin-bottom: 32px;
}

.staff-license--pc {
    display: block;
}

.staff-license--sp {
    display: none;
}

.staff__img {
    width: 40%;
    flex-shrink: 0;
}

.staff__table-wrap {
    padding-block: 24px 34px;
    padding-inline: 38px;
    border: 1px solid #BF9C66;
    margin-bottom: 170px;
    width: 900px;
    max-width: 100%;
    border-radius: 6px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.staff__table-title {
    display: block;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 16px;
    color: #BF9C66;
}

.staff__table tr {
    display: block;
    margin-bottom: 16px;
}

.staff__table tr:last-of-type {
    margin-bottom: 0;
}

.staff__table th,
.staff__table td {
    font-size: 1.6rem;
    font-weight: 400;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.staff__table td {
    padding-left: 32px;
}

.staff__table th {
    max-width: 100%;
}

/* 404 */

.page404 {
    background: #F0F0F0;
}

.page404__inner {
    height: 100dvh;
    padding-block: 150px 0;
    text-align: center;
    padding-inline: 15px;
}

.page404__lead {
    font-size: 2rem;
    width: 417px;
    max-width: 100%;
    margin-inline: auto;
    margin-bottom: 48px;
    color: #FFFFFF;
    background: #ACACAC;
    border-radius: 6px;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
    padding-inline: 10px;
    padding-block: 16px;
}

.page404__img {
    width: 240px;
    max-width: 100%;
    margin-inline: auto;
    margin-bottom: 32px;
}

.page404__text {
    font-size: 1.8rem;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: #131314;
    font-weight: 400;
    margin-bottom: 108px;
    line-height: calc(32 / 18);
}

/* news */
.page-service__title-ja.__news {
    font-size: 4.2rem;
    font-weight: 400;
    color: #FFFFFF;
    
}

.page-service__content-inner.__news {
    width: 1100px;
}

.page-news__list {
    width: 100%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.page-news__item > a {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    display: flex;
    align-items: center;
    gap: 24px;
}

.page-news__label-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
}


.page-news__label {
    display: inline-block;
    font-size: 1.4rem;
    color: #BF9C66;
    border: 1px solid #BF9C66;
    text-align: center;
    padding-block: 4px;
    padding-inline: 4px;
    width: 148px;
    flex-shrink: 0;
}

.page-news__date {
    font-size: 1.4rem;
    color: #AAAAAA;
    text-align: center;
}

.page-news__title {
    font-size: 1.6rem;
    color: #131314;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.navigation.pagination {
    margin-top: 100px;
    text-align: center;
    font-size: 2rem;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 200px;
}

.page-numbers {
    display: inline-block;
    width: 30px;
    text-align: center;
    padding-block: 10px;
    
}

.page-numbers.current {
    border-bottom: 1px solid #BF9C66;
}

.prev.page-numbers,
.next.page-numbers {
    width: 50px;
    height: 50px;
    color: #FFFFFF;
    background: #BF9C66;
    position: relative;
}

.prev.page-numbers::before,
.next.page-numbers::before {
    content: "";
    width: 12px;
    height: 12px;
    border: 0;
    border-top: solid 2px #FFFFFF;
    border-left: solid 2px #FFFFFF;
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-25%, -50%) rotate(-45deg);
}

.next.page-numbers::before {
    transform: translate(-75%, -50%) rotate(-224deg);
}



/* single */

.page-single__inner {
    width: 1100px;
    max-width: 100%;
    margin-inline: auto;
    padding-top: 130px;
    min-height: 100dvh;
    margin-bottom: 120px;
}


.page-single__title-wrap {
    padding-bottom: 40px;
    border-bottom: 1px solid #AAAAAA;
    padding-inline: 1.6rem;
}

.page-single__label {
    font-size: 1.4rem;
    color: #FFFFFF;
    background: #BF9C66;
    text-align: center;
    padding-block: 0.6rem;
    padding-inline: 0.1rem;
    width: 10.8rem;
    display: inline-block;
    border-radius: 4px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 24px;
}

.page-single__date {
    font-size: 1.8rem;
    color: #AAAAAA;
    margin-left: 16px;
    margin-bottom: 24px;
}

.page-single__title {
    font-size: 4.2rem;
}

.page-single__content {
    padding-block: 64px;
    padding-inline: 50px
}

.page-single__content-img {
    width: 50%;
}

.page-single__content p {
    font-size: 1.6rem;
    line-height: calc(38 / 16);
} 


/* privacy policy */

.privacy-policy__intro {
    font-size: 1.6rem;
    line-height: calc(32 / 16);
    font-weight: 400;
    margin-bottom: 40px;
}

.privacy-policy__table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 200px;
}

.privacy-policy__table tr {
    display: flex;
    flex-flow: column;
}

.privacy-policy__table th {
    font-size: 2.0rem;
    font-weight: 400;
    width: 100%;
    border-bottom: 1px solid #131314;
    padding-bottom: 12px;
    text-align: left;
    line-height: calc(32 / 20);
}

.privacy-policy__table td {
    font-size: 1.6rem;
    line-height: calc(32 / 16);
    font-weight: 400;
    width: 100%;
    padding-top: 12px;
    margin-bottom: 32px;
    display: flex;
    flex-flow: column;
    gap: 1.6rem;
}

.privacy-policy__table td ul li {
    font-size: 1.6rem;
    line-height: calc(32 / 16);
    font-weight: 400;
}

.privacy-policy__table td ul li::before {
    content: "・";
}

.hidden-field {
    display: none !important;
}

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

    .professional-service__block-inner {
        width: 100%;
        padding-inline: 8px;;
    }

    .job-openings__block-copy-img {
        height: auto;
    }

    .professional-service__block-grid {
        flex-flow: column-reverse;
    }

    .professional-service__block-img {
        width: 100%;
    }

}

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

    .staff__block {
        margin-bottom: 16px;
    }

    .staff__box {
        padding-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .staff__position--pc {
        display: none;
    }

    .staff__position--sp {
        display: block;
        font-size: 1.5rem;
        font-weight: 400;
        margin-bottom: 16px;
        display: inline-block;
        position: relative;
        padding-left: 26px;

    }

    .staff__position--sp::before {
        content: "";
        display: inline-block;
        width: 2.6rem;
        height: 2.6rem;
        background-image: url(../images/corporate-icon.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .staff__text p:first-of-type {
        margin-bottom: 0;
    }

    .staff-license--pc {
        display: none;
    }

    .staff-license--sp {
        display: block;
        font-size: 1.6rem;
        line-height: calc(32 / 16);
        letter-spacing: 0.01em;
        font-weight: 400;
        white-space: pre-wrap;
        margin-bottom: 40px;
    }

    .footer__nav-wrap {
        flex-flow: column;
        margin-right: 0;
        margin-left: 0;
        align-items: center;
        gap: 64px;
        margin-bottom: 36px;
    }
}


@media screen and (max-width: 925px) {
    /* information */

    .information__block-link {
        transform: none;  
        box-shadow: 10px 10px #C7B79F;         /* ← translate(0,0) ではなく完全に解除 */
    }

    .information__block {
        display: grid;
        grid-template-areas:
            "img  title"
            "text title";
        grid-template-columns: minmax(0,1fr) max-content; /* 左は可変/右は内容幅 */
        align-items: start;
    }
    .information__block-img {
        width: 100%; margin: 0; }

    .information__block-text-wrap {
        min-width: 0; }     /* ← はみ出し防止の要 */

    /* .information__block-title > span{ 
        writing-mode: vertical-rl;
        text-orientation: upright;
        -webkit-writing-mode: vertical-rl; 
    } */

    .information__copy-img {
        display: none;
    }

    .information__copy-text.__sp {
        display: block;
        text-align: right;
        margin-top: 12px;
        font-size: 2.8rem;
        line-height: calc(48 / 28);
        color: #4B4B4B;
    }

    .information__block-img {
        width: 75%;
    }

    .information__block-text{
        margin-top: 16px;
        margin-left: 18px;
        margin-right: 18px;
    }


    
}

@media screen and (min-width: 831px) and (max-height: 796px) {
    .header__logo {
        padding-top: 12px;
    }
}

@media screen and (min-width: 831px) and (max-height: 766px) {
    .header__logo {
        margin-bottom: 45px;
    }
}

@media screen and (min-width: 831px) and (max-height: 720px) {

    .header__logo {
        margin-bottom: 20px;
    }

    .header__nav {
        padding-bottom: 40px;
    }
}

/* タブレット縦のブレイクポイント */

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

    .pc-disp {
        display: none;
    }

    .sp-disp {
        display: block;
    }

    .drawer__cover {
        position: fixed; 
        inset: 0;
        background: rgba(0,0,0,.4);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .25s ease, visibility .25s ease;
        z-index: 999;
    }

    .drawer__cover.is-active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .cta--sp {
        display: block;
        width: 100%;
        background: #BF9C66;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 10000;
        padding-block: 15px;
        padding-inline: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .cta--sp::before {
        content: "";
        display: inline-block;
        width: 2.1em;
        height: 1.5em;
        background-image: url(../images/header-contact-icon.svg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .cta--sp-text {
        font-size: 1.4rem;
        font-family: "Noto Sans JP", sans-serif;
        font-weight: 400;
        color: #FFFFFF;
        font-style: normal;
        font-optical-sizing: auto;
        font-weight: 400;
    }

    .breadcrumbs {
        margin-top: 18px;
    }

    /* page */

    .page__wrap {
        width: 100%;
        margin-left: 0;
    }
    
    .page__title-ja {
        font-size: 4.5rem;
    }

    .header {
        display: none;
    }

    .header.__sub {
        display: none;
    }

    .header--sp {
        display: block;
        background: #F8F5EF;
        padding: 12px 20px 12px 10px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        width: 100%;
    }
    
    .header__inner--sp {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .header__logo--sp {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .header__logo--sp-img {
        width: 35px;
    }
    
    .header__logo--sp-text {
        width: 110px;
    }
    
    .header__button--sp {
        width: 40px;
        height: 40px;
        background: #FFF;
        padding: 10px 7px;
    }
    
    .header__button--sp-line-wrap {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    
    .header__button--sp-line {
        width: 100%;
        height: 2px;
        background: #BF9C66;
    }
    
    .nav__wrap--sp {
        display: block;
        background: #F8F5EF;
        padding-top: 10px;
        padding-left: 24px;
        width: 320px;
        max-width: 100%;
        height: 100dvh;
        position: fixed;
        z-index: 10000;
        top: 0;
        right: 0;
        transform: translateX(100%);
        transition: all 0.3s ease-in-out;
        overflow: auto;
    }

    .nav__wrap--sp.is-open {
        transform: translateX(0);
    }

    .nav__button--sp-wrap {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 10px;
    }

    .nav__button--sp {
        width: 40px;
        height: 40px;
        padding: 10px 6px 4px;
        background: #BF9C66;
        margin-right: 20px;
        display: flex;
        justify-content: space-between;
        flex-flow: column;
        align-items: center;
        
    }

    .nav__button-arrow--left,
    .nav__button-arrow--right {
        display: block;
        width: 25px;
        height: 2px;
        background: #FFFFFF; 
        position: relative;
        border-radius: 2px;
    }

    .nav__button-arrow--left::before,
    .nav__button-arrow--right::before {
        content: "";
        display: block;
        width: 8px;
        height: 2px;
        background: #FFFFFF;
        position: absolute;
        border-radius: 2px;
    }
    .nav__button-arrow--left::before {
        top: -3px;
        left: 0;
        transform:translate(-7%, 20%) rotate(135deg);
    }
    .nav__button-arrow--right::before {
        top: 3px;
        right: 0;
        transform:translate(5%, -20%) rotate(135deg);
    }

    .nav__button-arrow--right {
        margin-top: 5px;
    }

    .nav__button-label {
        font-size: 0.8rem;
        font-weight: 400;
        color: #FFFFFF;
        font-family: "Noto Sans JP", sans-serif;
        letter-spacing: 0.14em;
    }

    .nav--sp {
        margin-top: 10px;
    }

    .nav__item--sp {
        padding: 20px 20px 20px 0;
        border-bottom: 1px solid #CBCBCB;
    }

    .nav__item--sp-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav__item--sp:last-of-type {
        border-bottom: none;
    }

    .nav__link--sp {
        font-size: 1.6rem;
        font-weight: 400;
        font-family: "Noto Sans JP", sans-serif;
    }

    .nav__toggle--sp {
        width: 16px;
        height: 16px;
        position: relative;
    }

    .nav__toggle-line--sp {
        display: block;
        width: 16px;
        height: 2px;
        background: #BF9C66;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        transition: all 0.3s ease-in-out;
    }

    .nav__toggle-line--sp:last-child {
        transform: translateY(-50%) rotate(90deg);
    }

    .nav__toggle-line--sp.is-active:first-child {
        transform: translateY(-50%) rotate(180deg);
    }

    .nav__toggle-line--sp.is-active:last-child {
        transform: translateY(-50%) rotate(180deg);
    }

    .nav-sub__list--sp {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding-left: 26px;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease-in-out;
    }

    .nav-sub__list--sp > li:first-of-type {
        margin-top: 20px;
    }

    .nav-sub__item--sp {
        font-size: 1.4rem;
        font-weight: 400;
        font-family: "Noto Sans JP", sans-serif;
    }

    .toggle-button {
        display: none;
    }

    /* kv */

    .kv {
        width: 100%;
        margin-left: 0;
        height: calc(100svh - 46px);
    }
    
    .kv__copy {
        margin-top: 64px;
    }

    .kv-news {
        display: none;
    }

    .kv__slider-item {
        height: calc(100svh - 46px);
    }

    .kv__slider-item-body {
        margin-bottom: 90px;
    }

    .kv__slider-item-02-inner::before,
    .kv__slider-item-03-inner::before {
        clip-path: polygon(0 82%, 100% 65%, 100% 100%, 0 100%);
    }

    .kv__slider-item-01 {
        background-image: url(../images/kv-01_sp.webp);
        background-position: bottom;
    }

    .kv__slider-item-02 {
        background-image: url(../images/kv-02_sp.webp);
        background-position: top;
        background-size: cover;
    }

    .kv__slider-item-03 {
        background-image: url(../images/kv-03_sp.webp);
    }

    .information__body {
        margin-inline: auto
    }

    .information__block {
        display: grid;
        grid-template-areas: 
        "img title"
        "text title";
        grid-template-columns: 1fr auto; /* ← 左は可変, 右は必要分だけ */
        align-items: start;
    }

    .information__block-title span {
        margin-right: 12px;
    }
    
    .information__block-text-wrap {
        min-width: 0; /* Safariでのはみ出し防止 */
    }

    /* service */

    .section-text.__service.__top {
        margin-left: 18px;
    }

    .service__body {
        margin-left: 0;
    }

    .service__block {
        flex-flow: column;
        align-items: center;
    }

    .service__block.__reverse {
        flex-flow: column-reverse;
    }

    .service__content {
        width: 100%;
        padding-inline: 30px;
    }

    .service__img {
        width: 100%;
        aspect-ratio: 340 / 180;
        overflow: hidden;
    }

    .service__img > img {
        object-position: top;
    }

    .service__img.__center > img {
        object-position: center;
    }

    .service__block-bottom-inner {
        padding-inline: 24px;
    }

    .service__block-bottom-slider-sp {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
        margin-bottom: 28px;
    }

    .service__block-bottom-slider-item-sp {
        font-size: 1.4rem;
        font-weight: 400;
        font-family: "Noto Sans JP", sans-serif;
        padding: 5px 10px;
        background: #967B52;
        color: #FFF;
        border-radius: 16px;
    }


    /* information */

    .information__title {
        display: flex;
        flex-flow: column-reverse;
        gap: 12px;
    }
    /* footer */


    .page-service__wrap {
        width: 100%;
        margin-left: 0;
        padding-inline: 16px;
        margin-top: 79px;
    }

    .page-service__list {
        gap: 80px;
    }

    .page-service__title-wrap {
        margin-top: 0;
        padding-left: 0;
        margin-bottom: 36px;
    }

    .page-service__title-inner {
        justify-content: center;
        padding: 20px 15px 48px;
        min-height: 0;
    }

    .page-service__content {
        flex-flow: column-reverse;
    }

    .page-service__item-title {
        margin-bottom: 10px;
    }

    .page-service__body {
        width: 100%;
        margin-bottom: 16px;
    }

    .detail__link.__border {
        margin-top: 40px;
    }

    .page-service__content-img {
        width: 100%;
        margin-bottom: 16px;
    }

    .page-service__content.__reverse {
        flex-flow: column-reverse;
    }

    .page-service__title.__detail {
        text-align: center;

    }

    .page-service__title-inner.__detail {
        padding: 20px 15px 48px;
        min-height: auto;
    }

    .page-service-detail__item-content.__row {
        flex-flow: column-reverse;
    }

    .page-service-detail__item-img.__row {
        max-width: 100%;
    }

    .page-service-detail__item-img.__column {
        max-width: 100%;
    }

    .page-service-detail__flow-item {
        flex-flow: column;
    }

    .flow-item__term {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 6px 15px;
    }

    .flow-item__term > span {
        margin-bottom: 0;
    }

    .flow-item__content {
        padding: 22px 16px 22px 16px;
    }

    .page__inner {
        padding-top: 64px;
    }

    .page__bgi-img {
        width: 30%;
        top: 120px;
        left: auto;
        right: 0;
        transform: translateX(10%);
    }

    .job-openings__body {
        gap: 80px;
    }

    .job-openings__block-intro {
        margin-bottom: 10px;
        text-align: center;
    }

    .job-openings__block-inner {
        padding-inline: 13px;
    }

    .job-openings__block-grid {
        grid-template: 
            "copy" auto
            "img" auto
            "text" auto
            / 1fr
        }
    

    .job-openings__block-copy-img {
        transform: translate(5%, 45%) rotate(-4deg);
    }

    .page-news__label {
        width: 136px;
    }

    .page-single__inner {
        padding-block: 0;
    }

    .page-single__title-wrap {
        padding-inline: 0;
        padding-bottom: 32px;
    }

    .page-single__title {
        font-size: 3.2rem;
    }

    .page-single__content {
        padding-inline: 0;
        padding-block: 32px;
    }

    .page404__text {
        font-size: 1.6rem;
    }
}

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

    .page-service-detail__card-list {
        grid-template-columns: repeat(1, 1fr);
    }
}

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

    .concept__inner {
        padding-block: 48px 40px;
    }

    .concept__text {
        font-size: 1.4rem;
        line-height: calc(28 / 14);
    }

    .section-title-ja.__top {
        font-size: 4.8rem;
    }

    .service__title {
        margin-left: 6px;
        margin-bottom: 20px;
    }

    .section-text.__service.__top {
        font-size: 2.0rem;
        line-height: calc(32 / 20);
    }

    .service__body {
        margin-top: 24px;
    }

    .information__copy-text.__sp {
        font-size: 2rem;
        line-height: calc(32 / 20);
    }

    .cta__link {
        padding: 1.6em 1.0em;;
        gap: 0.4rem;
        width: 100%;
    }
    
    .cta__link::before {
        border: 2px solid #C6A252;
    }
    
    
    .cta__link-text {
        font-size: 1.6rem;
    }
    
    .cta__link-icon {
        width: 1.6rem;
    }
    
    .cta__link-icon:after {
        font-size: 0.8rem;
    }

    .footer {
        z-index: 1;
    }

}

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

    .kv__copy {
        width: 146px;
        margin-top: 64px;
    }

    .kv__slider-item-02-inner,
    .kv__slider-item-03-inner {
        padding-right: 20px;
    }

    .kv__slider-item-02__title > span,
    .kv__slider-item-03__title > span {
        font-size: 2.2rem;
        width: 2.8rem;
        height: 2.8rem;
    }

    .detail__link {
        padding: 8px 20px;
    }
    
    .breadcrumbs {
        margin-bottom: 40px;
    }

    .page-service__title-wrap {
        margin-bottom: 18px;
    }


    .page-service__title-inner {
        padding: 20px 15px 30px;
    }

    .page-service__title-ja {
        text-align: center;
    }

    .page-service__title-en {
        margin-bottom: 12px;
        padding-bottom: 4px;
    }

    .page-service__title-ja > span {
        font-size: 2.2rem;
        width: 2.8rem;
        height: 2.8rem;
    }

    .page-service__body {
        width: 97%;
        margin-inline: auto;
    }

    .page-service__list {
        margin-bottom: 120px;
    }

    .page-service__item-title {
        font-size: 1.4rem;
        padding-bottom: 8px;
    }

    .page-service__lead {
        font-size: 2rem;
    }

    .page-service__tag-list {
        padding-block: 6px;
        margin-bottom: 20px;
        gap:8px;

    }

    .page-service__tag-item {
        font-size: 1.1rem;
    }

    .page-service__text {
        font-size: 1.4rem;
        line-height: calc(32 / 14);
        margin-bottom: 0;
    }

    .page-service__title-wrap.__detail {
        padding-left: 0;
    }

    .page-service__title-inner.__detail {
        padding: 20px 15px 30px;
    }

    .page-service-detail__body {
        gap: 96px;
        margin-bottom: 120px;
    }

    .page-service-detail__block-title {
        font-size: 2rem;
        line-height: calc(30 / 20);
        margin-bottom: 30px;
    }

    .page-service-detail__block-title-number {
        width: 42px;
        height: 42px;
        margin-right: 6px;
    }

    .page-service-detail__item-title {
        font-size: 2.3rem;
        line-height: calc(39 / 23);
        margin-bottom: 12px;
    }

    .page-service-detail__item-title.__black {
        font-size: 2.3rem;
        line-height: calc(39 / 23);
        margin-bottom: 12px;
    }

    .page-service-detail__item-lead {
        font-size: 1.2rem;
        padding: 8px 10px;
    }

    .page-service-detail__item-content-text {
        font-size: 1.4rem;
        line-height: calc(32 / 14);
        padding-inline: 10px;
    }

    .page-service-detail__flow {
        gap: 30px;
    }

    .flow-item__wrap::after {
        transform: translate(-50% ) translateY(60%);
    }

    .flow-item__content {
        padding: 15px 15px 26px 15px;
    }

    .flow-item__term > span {
        font-size: 1.7rem;
    }

    .flow-item__term-date > span {
        font-size: 1rem;
        line-height: calc(29 / 10);
        padding: 0rem 0.7rem;
    }

    .flow-item__term-date > span.__double {
        font-size: 1rem;
        padding: 0.5rem 0.4rem;
        line-height: calc(20 / 10);
    }

    .flow-item__content > h4 {
        font-size: 1.5rem;
    }

    .flow-item__content > p {
        font-size: 1.3rem;
        line-height: calc(25 / 13);
    }

    .page-service-detail__card-list {
        gap: 15px;
    }

    .page-service-detail__card-item {
        padding: 12px 10px 38px;
    }

    .page-service-detail__card-item > span:before {
        font-size: 1.2rem;
        margin-bottom: 13px;
    }

    .page-service-detail__card-item-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .page-service-detail__card-item-lead {
        font-size: 1.3rem;
        padding-bottom: 3px;
        margin-bottom: 12px;
        margin-inline: auto;
    }

    .page-service-detail__card-item-text {
        font-size: 1.3rem;
        line-height: calc(25 / 13);
        margin-bottom: 18px;
    }

    .page-service-detail__card-item-img {
        margin-inline: auto;
    }

    .page__title {
        margin-bottom: 80px;
    }

    .page__title-ja {
        font-size: 2.2rem;
        font-weight: 500;
        margin-bottom: 6px;
    }

    .page__title-en {
        font-size: 1.4rem;
    }

    .job-openings__body {
        margin-bottom: 120px;
    }

    .job-openings__block-title {
        font-size: 1.4rem;
        padding-bottom: 8px;
    }

    .job-openings__block-inner {
        margin-top: 10px;
    }

    .job-openings__block-intro {
        font-size: 1.8rem;
        margin-bottom: 0;
    }

    .job-openings__block-grid {
        margin-top: -20px;
    }

    .job-openings__block-text {
        font-size: 1.4rem;
        line-height: calc(32 / 14);
    }

    .job-openings__box-wrap {
        gap: 40px;
    }

    .job-openings__box {
        padding-block: 16px;
    }

    .job-openings__box-text-wrap {
        font-size: 1.4rem;
        line-height: calc(22 / 14);
        padding-block: 20px;
        padding-inline: 10px;
    }

    .job-openings__box-title {
        font-size: 1.8rem; 
        line-height: calc(26 / 18);
    }

    .job-openings__br--sp {
        display: block;
    }

    .job-openings__box-title.__toggle::before,
    .job-openings__box-title.__toggle::after {
        width: 2rem;
    }

    .job-openings__box-text-wrap p:last-of-type {
        font-size: 1.4rem;
    }

    .job-openings__item {
        margin-bottom: 50px;
    }

    .job-openings__item-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .job-openings__block-inner h4 {
        padding-left: 48px;
    }

    .job-openings__block-inner h4::before {
        width: 4.5rem;
        height: 4.2rem;
        transform: translateY(-42%);
    }

    .job-openings__item-text {
        font-size: 1.4rem;
        line-height: calc(32 / 14);
    }

    .office__title {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }

    .office__body {
        gap: 80px;
        margin-bottom: 120px;
    }

    .office__block-title {
        font-size: 1.4rem;
        padding: 7px 10px;
        margin-bottom: 24px;
    }

    .office__table th {
        font-size: 1.4rem;
        padding-bottom: 8px;
    }

    .office__table td {
        padding-top: 10px;
        font-size: 1.6rem;
    }

    .office-history__table tr {
        gap: 10px;
        font-size: 1.4rem;
        line-height: calc(18 / 14);
    }

    .office-access__list {
        margin-bottom: 16px;
    }

    .office-access__item {
        font-size: 1.6em;
        line-height: calc(24 /16);
    }

    .office__list {
        font-size: 1.4rem;
    }

    .office-history__table td {
        flex-flow: column;
        gap: 0px;
    }

    .office__address {
        font-size: 1.6rem;
        line-height: calc(24 /16);
    }

    .office-access--en {
        font-size: 1.4rem;
        line-height: calc(24 /14);
    }

    .professional-service__body {
        gap: 80px;
        margin-bottom: 120px;
    }

    .professional-service__block-title {
        font-size: 1.4rem;
        padding-bottom: 8px;
    }

    .professional-service__block-inner {
        margin-top: 10px;
    }

    .professional-service__block-intro {
        font-size: 1.8rem;
        margin-bottom: 18px;
    }

    .professional-service__block-grid {
        gap: 12px;
    }

    .professional-service__block-text {
        font-size: 1.4rem;
        line-height: calc(32 / 14);
    }

    .professional-service__block-tag-list-wrap {
        ul {
            gap: 8px;
            margin-bottom: 20px;
        }
    }

    .professional-service__block-tag-item {
        font-size: 1.1rem;
    }

    .professional-service-staff__flex-box {
        flex-flow: column;
        justify-content: center;
        gap: 48px;
    }

    .professional-service-staff__flex-item {
        margin-inline: auto;
    }

    .professional-service-staff__img {
        margin-bottom: 12px;
    }

    .professional-service-staff__name {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .professional-service-staff__position {
        font-size: 1.4rem;
        margin-bottom: 18px;
    }

    .staff__block {
        margin-bottom: 12px;
    }

    .staff__position--sp {
        font-size: 1.2rem;
    }
    .staff__name {
        margin-bottom: 12px;
    }

    .staff__name-ja {
        font-size: 2.2rem;
        margin-bottom: 6px;
    }

    .staff__name-en {
        font-size: 1.2rem;
        margin-bottom: 0px;
    }

    .staff__text {
        font-size: 1.2rem;
        line-height: calc(24 / 12);
    }

    .staff-license--sp {
        font-size: 1.2rem;
        line-height: calc(24 / 12);
    }

    .staff__table-wrap {
        padding-inline: 18px;
        margin-bottom: 120px;
    }

    .staff__table {
        width: 100%;
    }

    .staff__table tr {
        display: flex;
    }

    .staff__table th,
    .staff__table td {
        font-size: 1.2rem;
        line-height: calc(24 / 12);
    }

    .staff__table th {
        flex-shrink: 0;
    }

    .staff__table td {
        padding-left: 12px;

    }

    .privacy-policy__intro {
        font-size: 1.4rem;
        line-height: calc(28 / 14);
    }

    .privacy-policy__table {
        margin-bottom: 100px;
    }

    .page-service__title-ja.__news {
        font-size: 2.2rem;
    }

    .page-news__item > a {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .page-news__label-wrap {
        gap: 12px;
    }

    .page-news__label {
        font-size: 1.2rem;
        width: 100px;
    }

    .page-news__date {
        font-size: 1.2rem;
    }

    .page-news__title {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        display: -webkit-box;
        -webkit-line-clamp: unset;
        -webkit-box-orient: vertical;
        line-height: calc(24 / 16);
    }

    .navigation.pagination {
        margin-top: 60px;
        font-size: 1.6rem;
    }

    .nav-links {
        margin-bottom: 120px;
    }

    .prev.page-numbers,
    .next.page-numbers {
        width: 30px;
        height: 30px;
    }

    .page-single__label {
        font-size: 1.2rem;

    }

    .page-single__date {
        font-size: 1.6rem;
        margin-left: 10px;
    }

    .page-single__title-wrap {
        padding-bottom: 22px;
    }

    .page-single__title {
        font-size: 2.2rem;
        line-height: calc(32 / 22);
    }

    .page-single__content {
        padding-block: 22px;
    }

    .page-single__content p {
        padding-block: 22px;
    }

    .footer__nav {
        flex-flow: column;
        gap: 4px;
    }

}

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

    .concept {
        padding-top: 48px;
    }

    .concept__inner {
        margin-bottom: 42px;
    }

    .section-title-ja.__top {
        font-size: 2.8rem;
    }

    .section-title-en.__top {
        font-size: 1.4rem;
    }

    .service {
        padding-block: 80px 60px;
    }

    .section-text.__service.__top {
        font-size: 1.5rem;
        line-height: calc(23 / 15);
    }

    .service__content {
        padding-block: 14px 24px;
    }

    .service__content-title-en {
        font-size: 1.2rem;
        margin-bottom: 4px;
    }

    .service__content-title-bar {
        width: 140px;
        margin-bottom: 14px;
    }

    .service__content-title-bar.__second {
        width: 140px;
        margin-bottom: 14px;
    }

    .service__content-title-ja {
        margin-bottom: 16px;
    }

    .service__content-title-ja.__second {
        margin-bottom: 16px;
    }

    .service__content-title-ja > span {
        font-size: 2.1rem;
        width: 30px;
        height: 30px;
    }

    .service__content-text {
        font-size: 1.4rem;
        line-height: calc(20 / 14);
        margin-bottom: 15px;
    }

    .service__content-text.__second {
        margin-bottom: 15px;
    }

    .detail__link {
        padding: 0.8em 2rem;
    }

    .service__block-bottom-lead {
        font-size: 2rem;
        line-height: calc(24 / 20);
    }

    .information {
        padding-block: 80px 60px;
    }

    .information__copy-text.__sp {
        font-size: 1.5rem;
        line-height: calc(23 / 15);
        margin-top: 0;
    }

    .information__body {
        margin-top: 30px;
    }

    .information__block-link {
        transform: none;
        box-shadow: 10px 10px #C7B79F;
    }

    .information__block-img {
        width: 85%;
        aspect-ratio: 252 / 146;
    }

    .information__block-img > img {
        object-fit: cover;
        height: 100%;
    }

    .information__block-text {
        font-size: 1.3rem;
    }

    .information__block-title-wrap {
        margin-top: 100px;
    }

    .information__block-title {
        font-size: 2.4rem;
    }

    .information__block-arrow {
        width: 32px;
        height: 32px;
    }

    .cta {
        padding-block: 54px;
    }

    .cta__title {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }

    .cta__price {
        font-size: 1.6rem;
    }

    .cta__price-tax {
        font-size: 1.2rem;
    }

    .cta__price-text {
        font-size: 1.2rem;
        margin-top: 8px;
        margin-bottom: 12px;
    }

    .cta__img {
        margin-bottom: 22px;
    }

    .cta__text {
        font-size: 1.4rem;
        margin-bottom: 40px;
    }

    .cta__link-text {
        font-size: 1.2rem;
    }

    .cta__link-icon {
        width: 1.3rem;
    }

    .cta__link-icon:after {
        font-size: 0.6rem;
    }

    .footer {
        padding-top: 29px;
    }

    .footer__nav-body {
        text-align: center;
    }
    
    .footer__nav-block > a {
        color: #fff;
        background: #967B52;
        width: 120px;
        margin-inline: auto;
        padding-block: 2px;
    }

    .footer__nav-list {
        gap: 12px;
    }

    .footer__nav-body > a,
    .footer__nav-body > span {
        margin-bottom: 18px;
    }

    .footer__copyright-wrap {
        flex-flow: column-reverse;
        gap: 8px;
        text-align: center;
        padding-block: 28px 60px;
    }



}

@media screen and (max-width: 363px) { 
    .cta {
        padding-inline: 24px;
    }
}