@charset "UTF-8";

/*  media query PC or Mobile: 1024px;
*/

/*  color
================================================ */
:root {
    --clr_default: #1F1F1F;
    --clr_txt_gray: #757575;
    --clr_txt_white: #FFF;
    --clr_primary: #1D2953;
    --clr_secondary: #BE9960;
    --clr_border: #DBDBDB;
    --clr_border_secondary: #EFEFEF;
    --clr_bg: #F8F7F5;
    --clr_bg_secondary: #F5F6F8;

    --fnt_en: "Cormorant Garamond", serif;
}

/*  reset
================================================ */
* {
  margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	box-sizing: border-box;
}

html {
	word-break: break-all;
}
body {
  -webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;

}
img, picture, video, canvas, svg {
	width: 100%;
	vertical-align: bottom;
}
input, button, textarea, select {
  font: inherit;
}
span {
	font-weight: inherit;
}
a {
	color: inherit;
}
a[class] {
	text-decoration: none;
}
mark {
	background-color:#ff9;
	font-weight:bold;
}
blockquote, q {
	quotes:none;
}
ul[class],
ol[class] {
	list-style:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}
table {
	width: 100%;
	table-layout: fixed;
	border-collapse:collapse;
	border-spacing:0;
}
#root, #__next {
  isolation: isolate;
}
/*//form*/
input[type="text"],input[type="email"],input[type="tel"], textarea, button, select, option {
	display: block;
	width: 100%;
	font: inherit;
	outline: none;
	border-radius: 0;
}
textarea {
	resize: vertical;
}
button {
	cursor: pointer;
}

/*  base
================================================ */
html {
	overflow: auto;
    font-size: 62.5%;
}

body {
	min-width: 320px;
	font-feature-settings: "palt";
    font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
	color: var(--clr_default);
	line-height: 1.6;
	letter-spacing: .05em;
	font-weight: 400;
	font-size: 1.6rem;
}

/*  utility
================================================ */

/*  view
---------------------------------------- */
@media all and (min-width: 769px) {
    .u-view-small {
        display: none !important;
    }
}

@media all and (max-width: 768px) {
    .u-view-medium {
        display: none !important;
    }

    .u-view-upper-medium {
        display: none !important;
    }
}

@media all and (min-width: 1025px) {
    .u-view-medium {
        display: none !important;
    }

    .u-view-under-medium {
        display: none !important;
    }
}

@media all and (max-width: 1024px) {
    .u-view-large {
        display: none !important;
    }
}

/*  tel-link
---------------------------------------- */
@media all and (min-width: 1025px) {
    .u-tellink {
        pointer-events: none;
    }
}

/*  scrollshow
---------------------------------------- */
.js-scrollshow {
	opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity ease 1.4s, transform cubic-bezier(0.32, 1, 0.67, 1) 1.4s;
}

.js-scrollshow.show {
	opacity: 1;
    transform: translate3d(0, 0, 0);
}

/*  component
================================================ */

/*  btn
---------------------------------------- */
.c-gradient-btn {
    height: 65px;
    padding: 4px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.08em;
    font-size: 1.8rem;
	font-family: 'Noto Serif JP', serif;
    color: var(--clr_txt_white);
	background: #765E39 repeat-y center;
    background-size: 100% auto;
}

.c-gradient-btn:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background: -webkit-linear-gradient(right, #C7A774, #765E39);
	background: 		linear-gradient(to left, #C7A774, #765E39);
    transition: opacity ease 0.4s;
}

.c-gradient-btn:hover:before {
    opacity: 0;
}

.c-gradient-btn__arrow {
    width: 10%;
    height: 1px;
    position: absolute;
    top: calc(50% - (1px / 2));
    right: 6%;
    transition: width ease 0.3s, right ease 0.3s;
}

.c-gradient-btn:hover .c-gradient-btn__arrow {
    width: 17%;
    right: calc(5% - 3px);
}

.c-gradient-btn__arrow:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: var(--clr_txt_white);
    transform: translateY(-50%);
}

.c-gradient-btn__arrow:after {
    content: "";
    width: 14px;
    height: 14px;
    display: block;
    position: absolute;
    top: 0;
    right: -1px;
    border-right: 1px solid var(--clr_txt_white);
    border-top: 1px solid var(--clr_txt_white);
    transform: scaleY(0.7) rotate(45deg);
    transform-origin: top right;
}

.c-gradient-btn__arrow.-small:after {
    width: 10px;
    height: 10px;
}

.c-gradient-btn-header {
    position: absolute;
    bottom: calc(100% - 10px);
    left: 0;
    right: 0;
}

.c-gradient-btn-header__text {
    padding: 6px 16px;
    display: inline-block;
    line-height: 1.2;
    letter-spacing: 0;
    font-size: 1.1rem;
    background: #5C4219;
}

.c-gradient-btn__content {
    position: relative;
    z-index: 2;
}

.c-gradient-btn small {
    display: block;
    line-height: 1.2;
    font-size: 0.7em;
}

@media all and (min-width: 769px) {
    .c-gradient-btn-header__text {
        font-size: 1.2rem;
    }
}

@media all and (min-width: 1025px) {
    .c-gradient-btn {
        height: 55px;
        font-size: 1.4rem;
    }

    .c-gradient-btn__arrow:not(.-small):after {
        width: 16px;
        height: 16px;
    }

    .c-gradient-btn-header__text {
        font-size: 1.3rem;
    }
}

@media all and (min-width: 1441px) {
    .c-gradient-btn {
        font-size: 1.6rem;
    }

    .c-gradient-btn__arrow:not(.-small):after {
        width: 18px;
        height: 18px;
    }

    .c-gradient-btn-header__text {
        font-size: 1.5rem;
    }
}

/*  text
---------------------------------------- */
.c-text-caution {
    display: block;
    line-height: 1.5;
    font-size: 1.4rem;
    color: var(--clr_txt_gray);
}

@media all and (min-width: 1025px) {
    .c-text-caution {
        font-size: 1.3rem;
    }
}

@media all and (min-width: 1441px) {
    .c-text-caution {
        font-size: 1.4rem;
    }
}

/*  table
---------------------------------------- */
.c-table {
    position: relative;
}

.c-table-header {
    padding: 16px 20px;
    color: var(--clr_txt_white);
    background: var(--clr_primary);
}

.c-table-header--center {
    text-align: center;
}

.c-table__title {
    line-height: 1.4;
    font-family: 'Noto Serif JP', serif;
}
.c-table__head{
    font-weight: 700;
}
.c-table__head-mt{
    margin-top: 15px;
}
.c-table-body {
    padding: 16px 20px;
    background: #fff;
}

.c-table-body--right {
    text-align: right;
}

.c-table-body--gray {
    background: var(--clr_bg_secondary);
}

.c-table-body--beige {
    background: var(--clr_bg);
}

.c-table-body--text-primary {
    font-family: 'Noto Serif JP', serif;
    color: var(--clr_primary);
}

.c-table__caution {
    margin-top: 0.3em;
}

.c-table__redtext {
    font-size: 1.00em;
    color: red;
}

.c-table__sup {
    line-height: 0;
    font-size: 0.8em;
}

.c-table__inline-block-text {
    display: inline-block;
}

.c-table-list:not(:first-child) {
    margin-top: 0.9em;
}

.c-table-list__item {
    padding-left: 18px;
    line-height: 1.4;
    position: relative;
}

.c-table-list__item:not(:first-child) {
    margin-top: 0.4em;
}

.c-table-list__item:before {
    content: "-";
    position: absolute;
    top: 0;
    left: 0;
    font-family: "Lucida Console", Monaco, "monospace";
    color: var(--clr_txt_gray);
}

.c-table-list__item small {
    font-size: 0.9em;
}

.c-table-row {
    display: flex;
}

.c-table-row:not(:first-child) {
    border-top: 1px solid var(--clr_border);
}

.c-table-row .c-table-header:not(:first-child) {
    border-left: 1px solid var(--clr_border);
}

.c-table-row .c-table-body:not(:first-child) {
    border-left: 1px solid var(--clr_border);
}

@media all and (min-width: 1441px) {
    .c-table-header {
        padding: 16px 30px;
    }

    .c-table-body {
        padding: 16px 30px;
    }
}

/*  contact-tel
---------------------------------------- */
.c-contact-tel {
    margin-top: 30px;
    padding-bottom: 12px;
    text-align: center;
    border-bottom: 1px solid var(--clr_border);
}

.c-contact-tel__text {
    margin-bottom: 16px;
    padding-bottom: 4px;
    line-height: 1.2;
    font-size: 1.3rem;
    font-family: 'Noto Serif JP', serif;
    border-bottom: 1px solid var(--clr_border);
}

.c-contact-tel__text:before {
    content: "";
    width: 24px;
    height: 24px;
    margin-right: 2px;
    display: inline-block;
    position: relative;
    top: -0.16em;
    vertical-align: middle;
    background: url(../img/common/icon-tel.svg) no-repeat center;
    background-size: contain;
}

.c-contact-tel__tel {
    line-height: 1.1;
    font-size: 3.4rem;
	font-family: 'Noto Serif JP', serif;
    transition: opacity ease 0.4s;
}

.c-contact-tel__tel:hover {
    opacity: 0.7;
}

.c-contact-tel__time {
    margin-top: 6px;
    line-height: 1.2;
    font-size: 1.4rem;
}

@media all and (min-width: 1025px) {
    .c-contact-tel__text {
        font-size: 1.5rem;
    }
}

@media all and (min-width: 1441px) {
    .c-contact-tel {
        padding-bottom: 16px;
    }

    .c-contact-tel__text {
        margin-bottom: 20px;
        padding-bottom: 8px;
        font-size: 1.6rem;
    }

    .c-contact-tel__time {
        font-size: 1.5rem;
    }
}

/*  content
---------------------------------------- */
.c-content {
    position: relative;
}

.c-section {
    padding: 65px 0;
    position: relative;
}

.c-section__inner {
    width: min(100%, 1080px);
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.c-section-header {
    margin-bottom: 40px;
}

.c-section-header__text {
    margin-bottom: 0.64em;
    text-align: center;
    line-height: 1.1;
    letter-spacing: 0.02em;
    font-size: 1.6rem;
    font-family: var(--fnt_en);
    color: var(--clr_primary);
}

.c-section-header__title {
    text-align: center;
    line-height: 1.4;
    font-size: 3rem;
    font-weight: normal;
    font-family: 'Noto Serif JP', serif;
}

.c-section-secondary-header {
    margin-bottom: 20px;
    padding-left: 12px;
    border-left: 2px solid var(--clr_primary);
}

.c-section-secondary-header__title {
    line-height: 1.6;
    font-size: 2rem;
    font-weight: normal;
    font-family: 'Noto Serif JP', serif;
}

.c-section-secondary-header__title small {
    vertical-align: text-bottom;
    font-size: 0.8em;
}

.c-section-secondary-header__caution {
    margin-top: 8px;
}

@media all and (min-width: 769px) {
    .c-section {
        padding: 80px 0;
    }

    .c-section-header {
        margin-bottom: 50px;
    }
}

@media all and (min-width: 1025px) {
    .c-section {
        padding: 100px 0;
    }

    .c-section__inner {
        padding: 0 15px;
    }

    .c-section-header {
        margin-bottom: 60px;
    }

    .c-section-header__title {
        font-size: 3.4rem;
    }

    .c-section-secondary-header {
        padding-left: 16px;
        display: flex;
        align-items: center;
        border-left-width: 3px;
    }

    .c-section-secondary-header__title {
        font-size: 2.2rem;
    }

    .c-section-secondary-header__caution {
        margin-top: 2px;
        margin-left: 5px;
    }
}

@media all and (min-width: 1441px) {
    .c-section {
        padding: 120px 0;
    }

    .c-section__inner {
        width: min(100%, 1320px);
    }

    .c-section-header {
        margin-bottom: 70px;
    }

    .c-section-header__text {
        font-size: 1.7rem;
    }

    .c-section-header__title {
        font-size: 4.6rem;
    }

    .c-section-secondary-header__title {
        font-size: 2.8rem;
    }
}

/*  layout
================================================ */

/*  wrapper
---------------------------------------- */
.l-wrapper {
    padding-bottom: 65px;
}

@media all and (min-width: 1025px) {
    .l-wrapper {
        padding-bottom: 92px;
    }
}
.-sub .l-wrapper{
    padding-bottom: 0;
}

/*  header
---------------------------------------- */
.l-header {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.l-header .l-header-logo {
    position: relative;
    z-index: 2;
}

.l-header .l-header-logo__link {
    padding: 20px;
    display: block;
    transition: opacity ease 0.4s;
}

.l-header .l-header-logo__link:hover {
    opacity: 0.7;
}

.l-header .l-header-logo__image {
    width: auto;
    height: 15px;
    display: block;
}

.l-header .l-hamburger {
    width: 60px;
    height: 60px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2;
    background: var(--clr_primary);
    border-radius: 0;
}

.l-header .l-hamburger__line {
    width: 20px;
    height: 15px;
    margin: 0 auto;
    display: block;
    position: relative;
}

.l-header .l-hamburger__line span {
    height: 1px;
    margin: auto;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--clr_txt_white);
    transition: background ease 0.4s, transform ease 0.4s;
}

.l-header .l-hamburger__line span:nth-child(1) {
    transform: translate3d(0, -7px, 0);
}

.l-header .l-hamburger__line span:nth-child(3) {
    transform: translate3d(0, 7px, 0);
}

.l-header.menu-open .l-hamburger__line span:nth-child(1) {
    transform: rotate(45deg) translate3d(0, 0, 0);
    transform-origin: center;
}

.l-header.menu-open .l-hamburger__line span:nth-child(2) {
    transform: scale3d(0, 1, 1);
    transition-duration: 0.2s;
}

.l-header.menu-open .l-hamburger__line span:nth-child(3) {
    transform: rotate(-45deg) translate3d(0, 0, 0);
    transform-origin: center;
}

.l-header .l-hamburger__text {
    margin-top: 7px;
    display: block;
    line-height: 1;
	letter-spacing: 0.02em;
    font-size: 1.24rem;
    font-family: var(--fnt_en);
    color: var(--clr_txt_white);
}

.l-header .l-hamburger__text:before {
    content: "MENU";
}

.l-header.menu-open .l-hamburger__text:before {
    content: "CLOSE";
}

.l-gnav {
    height: 0;
    padding: 0 20px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    background: #fff;
    opacity: 0;
    transition: height 0s 0.6s, opacity ease 0.5s;
}

.l-header.menu-open .l-gnav {
    height: 100%;
    opacity: 1;
    transition-delay: 0s, 0.1s;
}

.l-gnav__inner {
    padding: 80px 0 20px;
}

.l-gnav .l-gnav-list {
    height: calc(100% + 1px);
}

.l-gnav .l-gnav-list-item {
    font-size: 1.6rem;
    font-family: 'Noto Serif JP', serif;
    border-bottom: 1px solid var(--clr_border);
}

.l-gnav .l-gnav-list-item__link {
    padding: 20px 0;
    display: block;
    position: relative;
}

.l-gnav .l-gnav-list-item__link:after {
    content: "";
    width: 7px;
    height: 15px;
    display: inline-block;
    position: absolute;
    top: calc(50% - (15px / 2));
    right: 0;
    background: url(../img/common/check_arrow.svg) no-repeat center;
    background-size: contain;
}

.l-gnav .l-gnav-contact {
    max-width: 480px;
    margin: 45px auto;
    padding: 0 20px;
    align-items: center;
}

.l-gnav .l-gnav-contact .c-gradient-btn:not(:first-child) {
    margin-top: 5px;
}

@media all and (min-width: 426px) {
    .l-header .l-header-logo__image {
        height: 20px;
    }
}

@media all and (min-width: 769px) {
    .l-header .l-header-logo__image {
        height: 22px;
    }

    .l-gnav .l-gnav-list {
        display: flex;
        flex-wrap: wrap;
    }

    .l-gnav .l-gnav-list-item {
        width: 46%;
        margin: 0 2%;
    }

    .l-gnav .l-gnav-list-item:first-child {
        width: 100%;
    }
}

@media all and (min-width: 1025px) {
    .l-header {
        height: auto;
        padding-left: 20px;
        position: absolute;
        color: var(--clr_txt_white);
    }

    .l-header .l-header-logo__link {
        padding: 10px;
    }

    .l-gnav {
        height: auto;
        padding: 0;
        position: static;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        overflow-y: visible;
        opacity: 1;
        background: none;
    }

    .l-gnav__inner {
        padding: 0;
        display: flex;
        flex-direction: column-reverse;
    }

    .l-gnav .l-gnav-list {
        height: auto;
        margin-top: 12px;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-end;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
    }

    .l-gnav .l-gnav-list-item {
        width: auto;
        margin: 0;
        padding: 0 0.4%;
        position: relative;
        text-align: center;
        font-size: 1.2rem;
        font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
        border-bottom: none;
    }

    .l-gnav .l-gnav-list-item:not(:first-child):before {
        content: "";
        width: 1px;
        height: 0.8em;
        position: absolute;
        top: calc(50% - 0.4em);
        left: 0;
        background: rgba(255, 255, 255, 0.3);
    }

    .l-gnav .l-gnav-list-item:first-child {
        width: auto;
    }

    .l-gnav .l-gnav-list-item__link {
        padding: 0.5em 20px 0.6em;
    }

    .l-gnav .l-gnav-list-item__link:before {
        content: "";
        height: 1px;
        display: block;
        position: absolute;
        bottom: 0.4em;
        left: 20px;
        right: 20px;
        background: var(--clr_txt_white);
        transform: scale3d(0, 1, 1);
        transform-origin: left;
        transition: transform cubic-bezier(0.2, 1, 0.2, 1) 0.9s;
    }

    .l-gnav .l-gnav-list-item__link:hover:before {
        transform: scale3d(1, 1, 1);
    }

    .l-gnav .l-gnav-list-item__link:after {
        content: none;
    }

    .l-gnav .l-gnav-contact {
        max-width: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: row-reverse;
    }

    .l-gnav .l-gnav-contact-cv {
        min-width: 200px;
    }

    .l-gnav .c-contact-tel {
        margin-top: 2px;
        padding: 0 30px;
        border-bottom: none;
    }

     .l-gnav .c-contact-tel__tel {
        font-size: 1.9rem;
    }

    .l-gnav .c-contact-tel__time {
        margin-top: 0;
        font-size: 1.2rem;
    }
}

@media all and (min-width: 1291px) {
    .l-gnav .l-gnav-list {
        margin-top: 14px;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
    }

    .l-gnav .l-gnav-list-item {
        padding: 0;
        font-size: 1.35rem;
    }
}

@media all and (min-width: 1441px) {
    .l-header .l-header-logo__image {
        height: 24px;
    }

    .l-gnav .l-gnav-list {
        margin-top: 16px;
    }

    .l-gnav .l-gnav-list-item {
        font-size: 1.6rem;
    }

    .l-gnav .l-gnav-list-item__link {
        padding-left: 24px;
        padding-right: 24px;
    }

    .l-gnav .l-gnav-list-item__link:before {
        left: 24px;
        right: 24px;
    }

    .l-gnav .c-contact-tel__tel {
        font-size: 2.4rem;
    }

    .l-gnav .c-contact-tel__time {
        font-size: 1.4rem;
    }
}

@media all and (min-width: 1920px) {
    .l-gnav .l-gnav-list-item {
        font-size: 1.7rem;
    }

    .l-gnav .l-gnav-list-item__link {
        padding-left: 30px;
        padding-right: 30px;
    }

    .l-gnav .l-gnav-list-item__link:before {
        left: 30px;
        right: 30px;
    }
}

/*  roof-header
---------------------------------------- */
@media all and (min-width: 1025px) and (max-width: 1439px) {
    .l-header.roof-header .l-header-logo__image {
        height: 18px;
    }

    .l-header.roof-header .l-gnav {
        min-width: 720px;
        padding: 10px 10px 10px 0;
    }

    .l-header.roof-header .l-gnav .l-gnav-list-item {
        font-size: 1.1rem;
    }

    .l-header.roof-header .l-gnav .l-gnav-list-item__link {
        padding: 5px 12px;
    }
}

@media all and (min-width: 1025px) {
    .l-header.roof-header {
        position: fixed;
        color: var(--clr_default);
        background: #fff;
        opacity: 0;
        transform: translateY(-100%);
        transition: opacity ease 0.4s, transform ease 0.3s;
    }

    .l-header.roof-header--show {
        opacity: 1;
        transform: translateY(0);
    }

    .l-header.roof-header .l-gnav {
        padding: 12px 10px 12px 0;
    }

    .l-header.roof-header .l-gnav .l-gnav-list {
        margin-top: 0;
        position: static;
    }

    .l-header.roof-header .l-gnav .l-gnav-list-item:not(:first-child):before {
        background: rgba(31, 31, 31, 0.3);
    }

    .l-header.roof-header .l-gnav .l-gnav-list-item__link:before {
        background: var(--clr_default);
    }

    .l-header.roof-header .l-gnav .l-gnav-contact {
        display: none;
    }
}

/*  footer
---------------------------------------- */
.l-footer .l-info {
    padding: 40px 0 20px;
    background: #F0F8FA;
}

.l-footer .l-info__inner {
    width: min(100%, 1080px);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.l-footer .l-info-box {
    margin-bottom: 30px;
}

.l-footer .l-info-box__logo {
    padding: 40px 20px;
    background: #DBDBDB;
}

.l-footer .l-info-box__image {
    width: auto;
    height: 30px;
    margin: auto;
    display: block;
}

.l-footer .l-info-box__content {
    padding: 15px 20px;
    background: #fff;
}

.l-footer .l-info-box__text {
    max-width: 460px;
    margin: 0 auto;
    font-weight: bold;
}

.l-footer .l-info-box__text:not(:first-child) {
    margin-top: 0.8em;
}

.l-footer .l-info-box__text small {
    font-size: 0.9em;
    font-weight: normal;
}

.l-footer .l-info-box__tel {
    transition: opacity ease 0.4s;
}

.l-footer .l-info-box__tel:hover {
    opacity: 0.7;
}

.l-footer .l-info-text {
    margin: 16px auto;
    padding: 16px 0;
    border-top: 1px solid #EAEAEA;
    border-bottom: 1px solid #EAEAEA;
    font-size: 1.1rem;
}

.l-footer .l-info-links-item {
    line-height: 1.2;
    font-size: 1.1rem;
}

.l-footer .l-info-links-item__link {
    padding: 3px 0;
    display: inline-block;
    transition: opacity ease 0.4s;
}

.l-footer .l-info-links-item__link:hover {
    opacity: 0.7;
}

.l-footer .l-info-links-item__link:after {
    content: "";
    width: 0.9em;
    height: 0.9em;
    margin-left: 4px;
    display: inline-block;
    position: relative;
    top: -0.1em;
    vertical-align: middle;
    background: url(../img/common/blank.svg) no-repeat center;
    background-size: contain;
}

.l-footer .l-company {
    padding: 20px 0 40px;
}

.l-footer .l-company__inner {
    width: min(100%, 1080px);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.l-footer .l-company-logo img {
    width: 100px;
}

.l-footer .l-company-text {
    margin-top: 10px;
    font-size: 1.1rem;
}

.l-footer .l-company-text__logo {
    width: auto;
    height: 1em;
    margin-right: 5px;
    display: inline-block;
    position: relative;
    top: -0.1em;
    vertical-align: middle;
}

.l-footer .l-company-privacy {
    width: 60px;
    position: absolute;
    bottom: 0;
    right: 20px;
    transition: opacity ease 0.4s;
}

.l-footer .l-company-privacy:hover {
    opacity: 0.7;
}

.l-footer .l-footer__cr {
    padding: 20px;
    text-align: center;
    font-size: 0.8rem;
    border-top: 1px solid var(--clr_border_secondary);
}

@media all and (min-width: 769px) {
    .l-footer .l-info-box {
        display: flex;
    }

    .l-footer .l-info-box__logo {
        padding: 70px 40px;
    }

    .l-footer .l-info-box__content {
        padding: 30px 40px;
        flex-grow: 1;
    }

    .l-footer .l-info-box__text {
        max-width: none;
    }

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

    .l-footer .l-company-text {
        margin-top: 0;
        margin-left: 20px;
    }

    .l-footer .l-company-text__mobilebr {
        display: none;
    }
}

@media all and (min-width: 1025px) {
    .l-footer .l-info {
        padding: 40px 0;
    }

    .l-footer .l-info-text {
        margin: 20px auto;
        padding: 20px 0;
        font-size: 1.2rem;
    }

    .l-footer .l-info-links {
        max-width: 720px;
    }

    .l-footer .l-info-links-item {
        margin-right: 20px;
        display: inline-block;
        font-size: 1.2rem;
    }

    .l-footer .l-company {
        padding: 30px 0;
    }

    .l-footer .l-company-text {
        font-size: 1.2rem;
    }

    .l-footer .l-company-privacy {
        right: 35px;
    }
}

@media all and (min-width: 1441px) {
    .l-footer .l-info__inner {
        width: min(100%, 1320px);
    }

    .l-footer .l-info-box {
        margin-bottom: 50px;
    }

    .l-footer .l-info-box__image {
        height: 39px;
    }

    .l-footer .l-info-text {
        font-size: 1.4rem;
    }

    .l-footer .l-info-links-item {
        font-size: 1.4rem;
    }

    .l-footer .l-company__inner {
        width: min(100%, 1320px);
    }

    .l-footer .l-company-text {
        font-size: 1.4rem;
    }
}

/*  fixcv
---------------------------------------- */
.l-fixcv {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
    pointer-events: none;
    background: #003288;
    opacity: 0;
    transition: opacity ease 0.4s;
}

.l-fixcv.after-hero {
    pointer-events: auto;
    opacity: 1;
}

.l-fixcv .l-fixcv-info {
    width: calc(100% - 125px);
    padding: 10px 10px;
    text-align: center;
    color: var(--clr_txt_white);
}

.l-fixcv .l-fixcv-info__tel {
    line-height: 1.1;
    font-size: 1.8rem;
    font-family: 'Noto Serif JP', serif;
    transition: opacity ease 0.4s;
}

.l-fixcv .l-fixcv-info__tel:hover {
    opacity: 0.7;
}

.l-fixcv .l-fixcv-info__time {
    line-height: 1.2;
    font-size: 1.1rem;
}

.l-fixcv .c-gradient-btn {
    width: 125px;
    letter-spacing: 0.02em;
    font-size: 1.3rem;
}

@media all and (min-width: 426px) {
    .l-fixcv .l-fixcv-info {
        width: calc(100% - 150px);
    }

    .l-fixcv .c-gradient-btn {
        width: 150px;
    }
}

@media all and (min-width: 769px) {
    .l-fixcv .l-fixcv-info {
        width: calc(100% - 200px);
    }

    .l-fixcv .c-gradient-btn {
        width: 200px;
    }
}

@media all and (min-width: 1025px) {
    .l-fixcv {
        padding: 10px;
    }

    .l-fixcv .l-fixcv-info {
        width: auto;
    }

    .l-fixcv .c-gradient-btn {
        width: 260px;
        margin-left: 30px;
        font-size: 1.4rem;
    }
}

@media all and (min-width: 1441px) {
    .l-fixcv {
        padding: 15px;
    }

    .l-fixcv .l-fixcv-info__tel {
        font-size: 2rem;
    }

    .l-fixcv .l-fixcv-info__time {
        margin-top: 2px;
        font-size: 1.2rem;
    }

    .l-fixcv .c-gradient-btn {
        width: 320px;
        margin-left: 40px;
        font-size: 1.6rem;
    }
}

/*  fixpopup
---------------------------------------- */
.l-fixpopup {
    display: flex;
    position: fixed;
    bottom: 100px;
    right: 0;
    z-index: 8;
    background: var(--clr_bg);
    border: 1px solid #BE9960;
    transform: translateX(calc(100% - 50px));
}

.l-fixpopup .l-fixpopup-header {
    width: 50px;
    padding: 10px 5px 8px;
    color: var(--clr_txt_white);
    background: #BE9960;
}

.l-fixpopup .l-fixpopup-header__text {
    margin: 0 auto;
    padding-right: 0.1em;
    line-height: 1.3;
    font-size: 1.4rem;
    font-family: 'Noto Serif JP', serif;
    writing-mode: vertical-rl;
}

.l-fixpopup .l-fixpopup-header:before {
    content: "";
    width: 30px;
    height: 30px;
    margin: 0 auto 8px;
    display: block;
    background: url(../img/common/fixpopup_badge.svg) no-repeat center;
    background-size: contain;
}

.l-fixpopup .l-fixpopup-content {
    padding-left: 80px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.l-fixpopup .l-fixpopup-content:before {
    content: "";
    width: 80px;
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    background: url(../img/common/fixpopup_image.jpg) no-repeat center;
    background-size: cover;
}

.l-fixpopup .l-fixpopup-content__inner {
    padding: 20px;
}

.l-fixpopup .l-fixpopup-content__text {
    line-height: 1.4;
    font-size: 1.5rem;
    font-family: 'Noto Serif JP', serif;
}

.l-fixpopup .l-fixpopup-content__more {
    margin-top: 6px;
    display: block;
    line-height: 1.2;
    font-size: 1.1rem;
    color: var(--clr_txt_gray);
}

.l-fixpopup .l-fixpopup-content__more:after {
    content: "";
    width: 21px;
    height: 9px;
    margin-left: 8px;
    display: inline-block;
    position: relative;
    top: -0.1em;
    vertical-align: middle;
    background: url(../img/common/fixpopup_arrow.svg) no-repeat center;
    background-size: contain;
    transition: transform ease 0.3s;
}

.l-fixpopup .l-fixpopup-content__inner:hover .l-fixpopup-content__more:after {
    transform: translateX(3px);
}

@media all and (min-width: 1025px) {
    .l-fixpopup {
        top: calc(50vh + 40px);
        bottom: auto;
        transition: transform ease 0.5s;
    }

    .l-fixpopup:not(.after-hero),
    .l-fixpopup.after-hero:hover {
        transform: translateX(0);
    }

    .l-fixpopup .l-fixpopup-header {
        width: 54px;
    }

    .l-fixpopup .l-fixpopup-header__text {
        font-size: 1.5rem;
    }
}

@media all and (min-width: 1441px) {
    .l-fixpopup {
        top: calc(50vh + 80px);
    }

    .l-fixpopup .l-fixpopup-header {
        width: 56px;
    }

    .l-fixpopup .l-fixpopup-header__text {
        font-size: 1.6rem;
    }

    .l-fixpopup .l-fixpopup-content__text {
        font-size: 1.6rem;
    }

    .l-fixpopup .l-fixpopup-content__more {
        font-size: 1.2rem;
    }
}

/*  main
---------------------------------------- */
.l-hero {
    height: 720px;
    position: relative;
    background: url(../img/home/main_mb.jpg) no-repeat center bottom;
    background-size: cover;
}

.l-hero .l-hero__inner {
    width: min(100%, 1320px);
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.l-hero-content {
    max-width: 430px;
    margin: 0 auto;
    padding-top: 80px;
}

.l-hero .l-hero-copy__title {
    line-height: 1.5;
    font-size: 1.3rem;
	font-family: 'Noto Serif JP', serif;
}

.l-hero .l-hero-copy__title strong {
    margin-top: 0.06em;
    display: inline-block;
    line-height: 1.3;
    font-size: 1.5em;
    font-weight: normal;
}

.l-hero .l-hero-copy__text {
    margin-top: 0.8em;
    font-size: 1.0rem;
    color: rgba(31, 31, 31, 0.8);
}

.l-hero .l-points {
    width: calc(100% + 20px);
    margin-top: 30px;
    display: flex;
    position: relative;
    left: -10px;
}

.l-hero .l-points-item {
    width: 50%;
    padding: 0 10px;
    font-weight: bold;
}

.l-hero .l-points-item:nth-child(2) {
    width: 60%;
}

.l-hero .l-points-item:not(:first-child) {
    border-left: 1px solid rgba(31, 31, 31, 0.3);
}

.l-hero .l-points-item__title {
    text-align: center;
    line-height: 1.2;
    font-size: 1.3rem;
	font-family: 'Noto Serif JP', serif;
}

.l-hero .l-points-item-content {
    min-height: 64px;
    margin-top: 4px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.l-hero .l-points-item-content__text {
    text-align: left;
    line-height: 1.2;
    font-size: 1.4rem;
	font-family: 'Noto Serif JP', serif;
}

.l-hero .l-points-item:first-child .l-points-item-content__text {
    text-align: center;
}

.l-hero .l-points-item-content__text strong {
    font-size: 1.6em;
    font-weight: normal;
}

.l-hero .l-points-item__annotation {
    margin-top: 4px;
    text-align: left;
    line-height: 1.2;
    font-size: 1.1rem;
    color: rgba(31, 31, 31, 0.8);
}

.l-hero .l-points-item__annotation small {
    margin-top: 4px;
    display: inline-block;
    color: rgba(117, 117, 117, 0.8);
}

.l-hero .l-hero-cv {
    margin-top: 10px;
}

.l-hero .l-hero-cv .c-gradient-btn {
    height: 68px;
}

.l-hero .l-hero-cv .c-gradient-btn__content {
    font-size: 1.2em;
}
.l-details {
    width: 100%;
    margin: 10px auto 0px;
    text-align: center;
    font-size: 2rem;
  }

@media all and (min-width: 426px) {
    .l-hero {
        background-position: 10% -600px;
        background-size: 768px auto;
    }

    .l-hero .l-hero-content {
        padding-top: 100px;
    }
}

@media all and (min-width: 769px) {
    .l-hero {
        height: calc(100vh - 200px);
        min-height: 600px;
        max-height: 760px;
        background-image: url(../img/home/main_pc.jpg);
        background-position: 20% center;
        background-size: cover;
    }

    .l-hero:before {
        content: "";
        height: 200px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: -webkit-linear-gradient(top, #988E85, rgba(255,255,255,0));
        background: 		linear-gradient(to bottom, #988E85, rgba(255,255,255,0));
        mix-blend-mode: multiply;
    }

    .l-hero .l-hero-content {
        margin-left: 0;
        padding-top: 40px;
        position: absolute;
        top: 50%;
        left: 60px;
        transform: translateY(-50%);
    }

    .l-hero .l-hero-copy__mobilebr {
        display: none;
    }

    .l-hero .l-hero-copy__text {
        font-size: 1.3rem;
    }

    .l-hero .l-points-item__title {
        font-size: 1.2rem;
    }

    .l-hero .l-points-item-content__text {
        font-size: 1.3rem;
    }

    .l-hero .l-points-item__annotation {
        font-size: 1rem;
    }
}

@media all and (min-width: 1025px) {
    .l-hero {
        min-height: 640px;
        background-position: 28% center;
    }

    .l-hero .l-hero-content {
        width: 100%;
        max-width: 480px;
        padding-top: 100px;
    }

    .l-hero .l-hero-copy__title {
        font-size: 2.4rem;
    }

    .l-hero .l-hero-copy__text {
        font-size: 1.5rem;
    }

    .l-hero .l-points-item:nth-child(2) {
        width: 66%;
    }

    .l-hero .l-points-item__title {
        font-size: 1.4rem;
    }

    .l-hero .l-points-item-content {
        min-height: 54px;
        margin-top: 6px;
    }

    .l-hero .l-points-item-content__text {
        font-size: 1.6rem;
    }

    .l-hero .l-points-item__annotation {
        text-align: center;
        font-size: 1.2rem;
    }

    .l-hero .l-hero-cv {
        max-width: 360px;
    }

    .l-hero .l-hero-cv .c-gradient-btn__content {
        font-size: 1.6em;
    }
}

@media all and (min-width: 1441px) {
    .l-hero {
        min-height: 700px;
        max-height: 960px;
        background-position: 34% center;
    }

    .l-hero .l-hero__inner {
        width: min(100%, 1820px);
    }

    .l-hero .l-hero-content {
        max-width: 680px;
        left: 100px;
    }

    .l-hero .l-hero-copy__title {
        font-size: 3rem;
    }

    .l-hero .l-hero-copy__text {
        font-size: 1.8rem;
    }

    .l-hero .l-points {
        margin-top: 45px;
    }

    .l-hero .l-points-item:nth-child(2) {
        width: 68%;
    }

    .l-hero .l-points-item__title {
        font-size: 1.7rem;
    }

    .l-hero .l-points-item-content {
        min-height: 64px;
        margin-top: 10px;
    }

    .l-hero .l-points-item-content__text {
        font-size: 2.5rem;
    }

    .l-hero .l-points-item__annotation {
        font-size: 1.5rem;
    }

    .l-hero .l-hero-cv {
        max-width: 515px;
    }

    .l-hero .l-hero-cv .c-gradient-btn {
        height: 94px;
    }

    .l-hero .l-hero-cv .c-gradient-btn__content {
        font-size: 2em;
    }
}

/*  object
================================================ */

/*  home - reason
---------------------------------------- */
.p-home-reason-header {
    margin-bottom: 20px;
}

.p-home-reason-header__text {
    margin-bottom: 0.64em;
    line-height: 1.1;
    letter-spacing: 0.02em;
    font-size: 1.6rem;
    font-family: var(--fnt_en);
    color: var(--clr_primary);
}

.p-home-reason-header__title {
    line-height: 1.4;
    font-size: 2.9rem;
    font-weight: normal;
    font-family: 'Noto Serif JP', serif;
}

.p-home-reason-header__title small {
    display: block;
    font-size: 0.52em;
}

.p-home-reason-nav-list {
    width: calc(100% + 20px);
    display: flex;
    flex-wrap: wrap;
    position: relative;
    left: -10px;
}

.p-home-reason-nav-list-item {
    width: 50%;
    margin-top: 12px;
    padding: 0 10px;
    line-height: 1.4;
    font-size: 1.5rem;
}

.p-home-reason-nav-list-item__link {
    padding: 12px 0;
    display: block;
    position: relative;
    color: var(--clr_primary);
    border-bottom: 1px solid var(--clr_primary);
}

.p-home-reason-nav-list-item__link:after {
    content: "";
    width: 5px;
    height: 11px;
    display: inline-block;
    position: absolute;
    top: calc(50% - (15px / 2));
    right: 0;
    background: url(../img/common/check_arrow.svg) no-repeat center;
    background-size: contain;
    transform: rotate(90deg);
}

.p-home-reason-nav-list-item__link small {
    margin-right: 8px;
    position: relative;
    top: -0.2em;
    vertical-align: middle;
    line-height: 1;
    font-size: 1em;
    font-family: var(--fnt_en);
}

.p-home-reason-body {
    margin-top: 60px;
}

.p-home-reason-section:not(:first-child) {
    margin-top: 60px;
}

.p-home-reason-section-header {
    margin-bottom: 30px;
}

.p-home-reason-section__text {
    padding-bottom: 8px;
    position: relative;
    line-height: 1.4;
    font-weight: normal;
    font-family: 'Noto Serif JP', serif;
    color: var(--clr_primary);
    border-bottom: 1px solid var(--clr_border);
}

.p-home-reason-section__text:before {
    content: "";
    width: 90px;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid var(--clr_primary);
}

.p-home-reason-section__text small {
    margin-left: 8px;
    position: relative;
    top: -0.2em;
    vertical-align: middle;
    line-height: 1;
    font-size: 1.1em;
    font-family: var(--fnt_en);
}

.p-home-reason-section__title {
    margin-top: 20px;
    line-height: 1.4;
    font-size: 2.8rem;
    font-weight: normal;
    font-family: 'Noto Serif JP', serif;
}

.p-home-reason-picture {
    height: 223px;
}

.p-home-reason-picture__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-home-reason-beigebox {
    margin-top: 30px;
    padding: 16px 20px;
    background: var(--clr_bg);
}

.p-home-reason-beigebox__text {
    margin-bottom: 0.4em;
    padding-left: 30px;
    position: relative;
    font-family: 'Noto Serif JP', serif;
}

.p-home-reason-beigebox__text:before {
    content: "";
    width: 18px;
    height: 18px;
    position: absolute;
    top: 0.3em;
    left: 0;
    background: url(../img/home/reason_circle.svg) no-repeat center;
    background-size: contain;
}

.p-home-reason__question {
    margin-top: 20px;
    font-size: 1.8rem;
    font-family: 'Noto Serif JP', serif;
    color: var(--clr_primary);
}

.p-home-reason__question:before {
    content: "？";
    width: 22px;
    height: 22px;
    margin-right: 8px;
    display: inline-block;
    position: relative;
    top: -2px;
    text-align: center;
    vertical-align: middle;
    line-height: 22px;
    font-size: 13px;
    border-radius: 20px;
    border: 1px solid var(--clr_txt_gray);
}

.p-home-reason .c-table {
    margin-top: 16px;
}

@media all and (min-width: 426px) {
    .p-home-reason-picture {
        height: auto;
    }

    .p-home-reason-picture__image {
        height: auto;
    }
}

@media all and (min-width: 769px) {
    .p-home-reason-nav-list-item {
        width: 25%;
    }
}

@media all and (min-width: 1025px) {
    .p-home-reason .c-section__inner {
        display: flex;
        align-items: flex-start;
    }

    .p-home-reason-nav {
        width: 280px;
        position: -webkit-sticky;
        position: sticky;
        top: 50px;
    }

    .p-home-reason-header {
        padding: 40px 0;
        position: relative;
        color: var(--clr_txt_white);
        background: var(--clr_primary);
    }

    .p-home-reason-header:before {
        content: "";
        width: calc((100vw - min(100vw, 1080px)) / 2 + 15px);
        /* 1080px = max width, 15px = padding-left */
        position: absolute;
        top: 0;
        bottom: 0;
        right: 100%;
        background: var(--clr_primary);
    }

    .p-home-reason-header__text {
        color: var(--clr_txt_white);
    }

    .p-home-reason-nav-list {
        display: block;
    }

    .p-home-reason-nav-list-item {
        width: auto;
        margin-top: 0;
    }

    .p-home-reason-nav-list-item.current .p-home-reason-nav-list-item__link {
        color: var(--clr_primary);
    }

    .p-home-reason-nav-list-item__link {
        padding: 6px 6px 6px 0;
        display: inline-block;
        color: var(--clr_txt_gray);
        border-bottom: none;
        transition: color ease 0.3s;
    }

    .p-home-reason-nav-list-item__link:hover {
        color: var(--clr_primary);
    }

    .p-home-reason-nav-list-item__link:after {
        display: none;
    }

    .p-home-reason-body {
        width: calc(100% - 280px);
        margin-top: 0;
        padding-left: 50px;
    }

    .p-home-reason-section:not(:first-child) {
        margin-top: 80px;
    }

    .p-home-reason-section-header {
        margin-bottom: 40px;
    }

    .p-home-reason-section__title {
        font-size: 3rem;
    }

    .p-home-reason-beigebox {
        margin-top: 40px;
    }

    .p-home-reason__question {
        margin-top: 40px;
    }
}

@media all and (min-width: 1441px) {
    .p-home-reason-nav {
        width: 340px;
        top: 58px;
    }

    .p-home-reason-header {
        margin-bottom: 30px;
    }

    .p-home-reason-header:before {
        width: calc((100vw - min(100vw, 1320px)) / 2 + 15px);
        /* 1320px = max width, 20px = padding-left */
    }

    .p-home-reason-header__title {
        font-size: 3.1rem;
    }

    .p-home-reason-nav-list-item {
        font-size: 1.6rem;
    }

    .p-home-reason-body {
        width: calc(100% - 340px);
        padding-left: 70px;
    }

    .p-home-reason-section:not(:first-child) {
        margin-top: 100px;
    }

    .p-home-reason-section__title {
        font-size: 4.2rem;
    }
}

/*  home - reason 01
---------------------------------------- */
@media all and (min-width: 769px) {
    .p-home-reason-01-table .c-table-list {
        display: flex;
    }

    .p-home-reason-01-table .c-table-list__item {
        margin-right: 60px;
    }

    .p-home-reason-01-table .c-table-list__item:not(:first-child) {
        margin-top: 0;
    }
}

/*  home - reason 02
---------------------------------------- */
.p-home-reason-02-table__wrapper {
    width: calc(100% + 40px);
    padding: 0 20px;
    position: relative;
    left: -20px;
    overflow-x: auto;
}

.p-home-reason .p-home-reason-02-table {
    min-width: 590px;
    margin-top: 30px;
    border-bottom: 1px solid var(--clr_border);
    border-right: 1px solid var(--clr_border);
}

.p-home-reason-02-table .c-table-blank,
.p-home-reason-02-table__grayheader {
    width: 20%;
}

.p-home-reason-02-table .c-table-header:not(.p-home-reason-02-table__grayheader),
.p-home-reason-02-table .c-table-body {
    width: 40%;
}

.p-home-reason-02-table__grayheader {
    padding-left: 10px;
    padding-right: 8px;
    display: flex;
    align-items: center;
    background: var(--clr_txt_gray);
}

.p-home-reason-02-table__grayheader .c-table__title {
    font-size: 0.95em;
}

.p-home-reason-02-table .c-table-body {
    padding-left: 12px;
    padding-right: 4px;
}

@media all and (min-width: 426px) {
    .p-home-reason-02-table .c-table-blank,
    .p-home-reason-02-table__grayheader {
        width: 24%;
    }

    .p-home-reason-02-table .c-table-header:not(.p-home-reason-02-table__grayheader),
    .p-home-reason-02-table .c-table-body {
        width: 38%;
    }

    .p-home-reason-02-table__grayheader .c-table__title {
        font-size: 1em;
    }
}

@media all and (min-width: 1025px) {
    .p-home-reason-02-table__wrapper {
        width: auto;
        padding: 0;
        left: 0;
    }

    .p-home-reason .p-home-reason-02-table {
        min-width: 0;
        margin-top: 40px;
    }

    .p-home-reason-02-table .c-table-blank,
    .p-home-reason-02-table__grayheader {
        width: calc(28% - 80px);
    }

    .p-home-reason-02-table .c-table-header:not(.p-home-reason-02-table__grayheader),
    .p-home-reason-02-table .c-table-body {
        width: calc(36% + 40px);
    }
}

@media all and (min-width: 1441px) {
    .p-home-reason-02-table .c-table-blank,
    .p-home-reason-02-table__grayheader {
        width: calc(30% - 40px);
    }

    .p-home-reason-02-table .c-table-header:not(.p-home-reason-02-table__grayheader),
    .p-home-reason-02-table .c-table-body {
        width: calc(35% + 20px);
    }
}

/*  home - reason 03
---------------------------------------- */
.p-home-reason-03-item {
    margin-top: 40px;
}

.p-home-reason-03-list-item:not(:first-child) {
    max-width: 420px;
    margin: 25px auto 0;
    padding-top: 30px;
    border-top: 1px solid var(--clr_border);
}

.p-home-reason-03-list-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 10px;
    background: var(--clr_bg_secondary);
    border-radius: 50px;
}

.p-home-reason-03-list-icon__image {
    transform: scale(0.6);
}

.p-home-reason-03-list__title {
    text-align: center;
    line-height: 1.4;
    font-size: 2rem;
    font-weight: normal;
    font-family: 'Noto Serif JP', serif;
    color: var(--clr_primary);
}

.p-home-reason-03-list .c-table-list {
    max-width: 275px;
    margin: 15px auto 0;
}

@media all and (min-width: 769px) {
    .p-home-reason-03-item {
        margin-top: 60px;
    }

    .p-home-reason-03-list {
        display: flex;
    }

    .p-home-reason-03-list-item {
        width: calc(100% / 3);
        padding: 0 30px;
    }

    .p-home-reason-03-list-item:not(:first-child) {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        border-left: 1px solid var(--clr_border);
    }
}

@media all and (min-width: 1441px) {
    .p-home-reason-03-list-icon {
        width: 110px;
        height: 110px;
    }
}

/*  home - reason 04
---------------------------------------- */
@media all and (min-width: 769px) {
    .p-home-reason-04-table {
        display: flex;
    }

    .p-home-reason-04-table .c-table-item {
        width: 50%;
        display: flex;
        flex-wrap: wrap;
    }

    .p-home-reason-04-table .c-table-item:not(:first-child) {
        margin-top: 0;
    }

    .p-home-reason-04-table .c-table-item + .c-table-item {
        border-left: 1px solid var(--clr_border);
    }

    .p-home-reason-04-table .c-table-header {
        width: 100%;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .p-home-reason-04-table .c-table-body {
        width: 100%;
        height: calc(100% - 37px);
    }
}

@media all and (min-width: 1441px) {
    .p-home-reason-04-table .c-table-body {
        width: 100%;
        height: calc(100% - 38px);
    }
}

/*  home - case
---------------------------------------- */
.p-home-case {
    background: var(--clr_bg);
}

.p-home-case-slider__wrapper {
    width: calc(100% + 20px);
    padding-bottom: 20px;
    position: relative;
    left: -10px;
}

.p-home-case-item {
    padding: 0 10px;
}

.p-home-case-picture {
    height: 150px;
    margin-bottom: 15px;
}

.p-home-case-picture__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-home-case-header {
    display: flex;
    align-items: center;
}

.p-home-case-header__label {
    margin-right: 10px;
    padding: 0.3em 0.5em;
    text-align: center;
    line-height: 1.2;
    font-size: 1.3rem;
    color: var(--clr_txt_white);
    background: var(--clr_primary);
}

.p-home-case-header__title {
    padding-bottom: 0.1em;
    line-height: 1.4;
    font-size: 2.4rem;
    font-weight: normal;
	font-family: 'Noto Serif JP', serif;
    color: var(--clr_primary);
}

.p-home-case-content__notes {
    margin-top: 4px;
    line-height: 1.4;
    font-size: 1.2rem;
    color: var(--clr_txt_gray);
}

.p-home-case-use {
    margin-top: 20px;
}

.p-home-case-use__lable {
    margin-bottom: 10px;
    padding-bottom: 5px;
    line-height: 1.4;
    font-size: 1.7rem;
	font-family: 'Noto Serif JP', serif;
    color: var(--clr_primary);
    border-bottom: 1px solid var(--clr_border);
}

.p-home-case-table {
    margin-top: 20px;
}

.p-home-case-table .c-table-item + .c-table-item {
    margin-top: 10px;
}

.p-home-case-table .c-table-header {
    padding-top: 8px;
    padding-bottom: 8px;
}

.p-home-case-table .c-table__title {
    font-size: 1.7rem;
}

.p-home-case-slider__controller {
    display: none;
    position: absolute;
    top: 40%;
    left: -10px;
    right: -10px;
}

.p-home-case-slider__controller button {
    width: 40px;
    height: 40px;
    position: absolute;
    line-height: 0;
    font-size: 16px;
    border-radius: 20px;
    color: var(--clr_txt_white);
    background: #D7D9DF;
    transition: background ease 0.3s;
}

.p-home-case-slider__controller button:hover {
    background: var(--clr_primary);
}

.p-home-case-slider__controller button:before {
    display: block;
    position: absolute;
    top: 48%;
    left: 0;
    right: 0;
}

.p-home-case-slider__controller button.prev {
    right: 100%;
}

.p-home-case-slider__controller button.prev:before {
    content: "←";
}

.p-home-case-slider__controller button.next {
    left: 100%;
}

.p-home-case-slider__controller button.next:before {
    content: "→";
}

.p-home-case-slider__dots {
    position: relative;
}

.p-home-case-subdots__wrapper {
    height: 1px;
    margin-bottom: 60px;
}

.p-home-case-slider__dots .slick-dots li {
    margin: 0;
}

.p-home-case-slider__dots .slick-dots li button:before {
    font-size: 8px;
    color: var(--clr_txt_gray);
    opacity: 1;
    transform: scale(0.8);
    transition: color ease 0.2s, transform ease 0.2s;
}

.p-home-case-slider__dots .slick-dots li.slick-active button:before,
.p-home-case-slider__dots .slick-dots li button:hover:before {
    color: var(--clr_primary);
    transform: scale(1.3);
}

@media all and (min-width: 426px) {
    .p-home-case-picture {
        height: 250px;
    }
}

@media all and (min-width: 769px) {
    .p-home-case-item__inner {
        display: flex;
    }

    .p-home-case-picture {
        width: 40%;
        height: 320px;
        margin-bottom: 0;
    }

    .p-home-case-content {
        width: 60%;
        padding-left: 20px;
    }
}

@media all and (min-width: 1025px) {
    .p-home-case-slider__wrapper {
        width: auto;
        margin: 0 60px;
        left: auto;
    }

    .p-home-case-item {
        padding: 0 15px;
    }

    .p-home-case-picture {
        height: 360px;
    }

    .p-home-case-content {
        padding-left: 30px;
    }

    .p-home-case-use {
        display: flex;
    }

    .p-home-case-use {
        margin-top: 40px;
    }

    .p-home-case-use__lable {
        min-width: 72px;
        margin-bottom: 0;
        margin-right: 15px;
        padding-bottom: 0;
        padding-right: 15px;
        border-bottom: none;
        border-right: 1px solid var(--clr_border);
    }

    .p-home-case-slider__controller {
        display: block;
    }
}

@media all and (min-width: 1441px) {
    .p-home-case-slider__wrapper {
        margin: 0 10px;
    }

    .p-home-case-item {
        padding: 0 30px;
    }

    .p-home-case-picture {
        width: 440px;
        height: 440px;
    }

    .p-home-case-content {
        width: calc(100% - 440px);
        padding-left: 60px;
    }

    .p-home-case-header__title {
        font-size: 2.8rem;
    }

    .p-home-case-use__lable {
        min-width: 74px;
    }
}

/*  home - simulation
---------------------------------------- */
.p-home-simulation {
    padding-bottom: 0;
}

.p-home-simulation-item:not(:first-child) {
    margin-top: 40px;
}

.p-home-simulation-item__tabletitle {
    margin-top: 25px;
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 1.7rem;
    font-family: 'Noto Serif JP', serif;
    color: var(--clr_primary);
}

.p-home-simulation-item__tabletitle:before {
    content: "・";
}

.p-home-simulation-table {
    font-size: 1.5rem;
    border: 1px solid var(--clr_border);
}

.p-home-simulation-table .c-table-header {
    width: 50%;
    padding-top: 8px;
    padding-bottom: 8px;
    display: flex;
    align-items: center;
}

.p-home-simulation-table .c-table-body {
    width: 50%;
}

.p-home-simulation-buttons {
    margin: 10px 0;
    text-align: center;
    font-size: 0;
}

.p-home-simulation-buttons__link {
    margin: 5px 10px;
    padding: 12px 35px 12px 45px;
    display: inline-block;
    position: relative;
    text-align: center;
    line-height: 1.4;
    font-size: 1.4rem;
    color: var(--clr_primary);
    border: 1px solid var(--clr_primary);
    transition: color ease 0.3s, background ease 0.3s;
}

.p-home-simulation-buttons__link:hover {
    color: var(--clr_txt_white);
    background: var(--clr_primary);
}

.p-home-simulation-buttons__link:before {
    content: "";
    width: 27px;
    height: 27px;
    margin-right: 6px;
    display: inline-block;
    position: absolute;
    top: calc(50% - 13px);
    left: 13px;
    background: url(../img/common/icon-pdf.svg) no-repeat center;
    background-size: contain;
    transition: filter ease 0.3s;
}

.p-home-simulation-buttons__link:hover:before {
    filter: brightness(0) invert(1);
}

.p-home-simulation__caution {
    margin-top: 20px;
}

@media all and (min-width: 1025px) {
    .p-home-simulation-item__mobile {
        display: flex;
        justify-content: center;
    }

    .p-home-simulation-table .c-table-header {
        width: 65%;
    }

    .p-home-simulation-table .c-table-body {
        padding-left: 10px;
    }

    .p-home-simulation-table .c-table__text {
        font-size: 1.12em;
    }

    .p-home-simulation-buttons {
        margin-top: 15px;
    }
}

@media all and (min-width: 1441px) {
    .p-home-simulation-buttons__link {
        font-size: 1.6rem;
    }
}

/*  home - flow
---------------------------------------- */
.p-home-flow-chart {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 5px 0 10px;
    display: flex;
}

.p-home-flow-chart-tag {
    width: 38px;
    margin-right: 10px;
}

.p-home-flow-chart-tag__inner {
    height: calc(100% - 28px);
    padding: 20px 2px;
    display: flex;
    justify-content: center;
    position: relative;
    color: var(--clr_txt_white);
    background: var(--clr_primary);
}

.p-home-flow-chart-tag__inner:before {
    content: "";
    height: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 19px solid transparent;
    border-top: 28px solid var(--clr_primary);
}

.p-home-flow-chart-tag__text {
    line-height: 1.4;
    font-size: 1.3rem;
    font-family: 'Noto Serif JP', serif;
    writing-mode: vertical-rl;
}

.p-home-flow-chart__wrapper {
    width: calc(100% - 38px);
}

.p-home-flow-chart-item {
    position: relative;
}

.p-home-flow-chart-item:not(:first-child) {
    margin-top: 50px;
}

.p-home-flow-chart-item:not(:first-child):before {
    content: "";
    width: 11px;
    height: 15px;
    margin: 0 auto;
    display: block;
    position: absolute;
    bottom: calc(100% + 18px);
    left: 0;
    right: 0;
    background: url(../img/home/flow-chart_arrow.svg) no-repeat center;
    background-size: contain;
}

.p-home-flow-chart-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 10px;
    background: var(--clr_primary);
    border-radius: 45px;
}

.p-home-flow-chart-icon__image {
    transform: scale(0.6);
}

.p-home-flow-chart__title {
    text-align: center;
    line-height: 1.4;
    font-size: 2rem;
    font-weight: normal;
    font-family: 'Noto Serif JP', serif;
    color: var(--clr_primary);
}

.p-home-flow-chart-list__item {
    text-align: center;
    line-height: 1.4;
}

.p-home-flow-chart-list {
    margin-top: 12px;
}

.p-home-flow-chart-list__item {
    padding: 10px;
    color: var(--clr_primary);
    background: var(--clr_bg_secondary);
}

.p-home-flow-chart-list__item:not(:first-child) {
    margin-top: 5px;
}

.p-home-flow-document {
    margin-top: 40px;
}

.p-home-flow-document-table .c-table-item:not(:first-child) {
    margin-top: 10px;
}

.p-home-flow-document-table .c-table__title {
    font-size: 1.8rem;
}

.p-home-flow-document-table .c-table-body {
    padding-bottom: 25px;
}

.p-home-flow-document-table .c-table__caution {
    margin-top: 20px;
}

@media all and (min-width: 769px) {
    .p-home-flow-chart {
        max-width: 600px;
    }

    .p-home-flow-chart-tag__text {
        font-size: 1.6rem;
    }

    .p-home-flow-document-table {
        display: flex;
    }

    .p-home-flow-document-table .c-table-item {
        width: 50%;
        display: flex;
        flex-wrap: wrap;
    }

    .p-home-flow-document-table .c-table-item:not(:first-child) {
        margin-top: 0;
    }

    .p-home-flow-document-table .c-table-item + .c-table-item {
        border-left: 1px solid var(--clr_border);
    }

    .p-home-flow-document-table .c-table-header {
        width: 100%;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .p-home-flow-document-table .c-table-body {
        width: 100%;
        height: calc(100% - 38px);
    }
}

@media all and (min-width: 1025px) {
    .p-home-flow-chart {
        max-width: none;
        padding: 0;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .p-home-flow-chart-tag {
        width: 100%;
        height: 38px;
        margin-top: 20px;
        margin-right: 0;
    }

    .p-home-flow-chart-tag__inner {
        width: calc(100% - 28px);
        height: 100%;
        padding: 2px 20px 2px 48px;
        align-items: center;
    }

    .p-home-flow-chart-tag__inner:before {
        top: 0;
        left: 100%;
        border: 19px solid transparent;
        border-left: 28px solid var(--clr_primary);
    }

    .p-home-flow-chart-tag__text {
        writing-mode: horizontal-tb;
    }

    .p-home-flow-chart__wrapper {
        width: 100%;
        padding: 0 25px;
        display: flex;
    }

    .p-home-flow-chart-item {
        width: 25%;
    }

    .p-home-flow-chart-item:not(:first-child) {
        margin-top: 0;
        margin-left: 30px;
    }

    .p-home-flow-chart-item:not(:first-child):before {
        top: 38px;
        bottom: auto;
        left: auto;
        right: calc(100% + 10px);
        transform: rotate(-90deg);
    }

    .p-home-flow-document {
        margin-top: 55px;
    }

    .p-home-flow-document-table .c-table-body {
        font-size: 1.7rem;
    }
}

@media all and (min-width: 1441px) {
    .p-home-flow-chart-item:not(:first-child) {
        margin-left: 70px;
    }

    .p-home-flow-document-table .c-table-body {
        height: calc(100% - 40px);
    }

    .p-home-flow-chart-item:not(:first-child):before {
        right: calc(100% + 28px);
    }

    .p-home-flow-chart-tag__text {
        font-size: 1.7rem;
    }

    .p-home-flow-document-table .c-table-body {
        font-size: 2rem;
    }

    .p-home-flow-document-table .c-table-list__item small {
        font-size: 0.8em;
    }
}

/*  home - details
---------------------------------------- */
.p-home-details {
    background: var(--clr_bg);
}

.p-home-details-table {
    border: 1px solid var(--clr_border);
}

.p-home-details-table + .p-home-details-table {
    border-top: none;
}

.p-home-details-table .c-table-header {
    padding-left: 20px;
    padding-right: 20px;
}

.p-home-details__caution {
    margin-top: 1.2em;
}

@media all and (min-width: 769px) {
    .p-home-details-table .c-table-item {
        display: flex;
    }

    .p-home-details-table .c-table-item:not(:first-child) {
        border-top: 1px solid var(--clr_border);
    }

    .p-home-details-table .c-table-header {
        width: 220px;
    }

    .p-home-details-table .c-table-body {
        width: calc(100% - 220px);
    }
}

@media all and (min-width: 1025px) {
    .p-home-details-table__wrapper {
        width: calc(100% + 10px);
        display: flex;
        align-items: flex-start;
        position: relative;
        left: -5px;
    }

    .p-home-details-table {
        width: 50%;
        margin: 5px;
    }

    .p-home-details-table .c-table-header {
        width: 190px;
        display: flex;
        align-items: center;
    }

    .p-home-details-table .c-table-body {
        width: calc(100% - 190px);
    }
}

@media all and (min-width: 1441px) {
    .p-home-details-table__wrapper {
        width: calc(100% + 50px);
        left: -25px;
    }

    .p-home-details-table {
        margin: 0 25px;
    }
}

/*  home - qa
---------------------------------------- */
.p-home-qa-content:not(:first-child) {
    margin-top: 40px;
}

.p-home-qa-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 10px;
    background: var(--clr_primary);
    border-radius: 32px;
}

.p-home-qa-icon__image {
    transform: scale(0.6);
}

.p-home-qa__title {
    text-align: center;
    line-height: 1.4;
    font-size: 2rem;
    font-weight: normal;
    font-family: 'Noto Serif JP', serif;
    color: var(--clr_primary);
}

.p-home-qa-items {
    margin-top: 40px;
}

.p-home-qa-item:not(:first-child) {
    margin-top: 30px;
}

.p-home-qa-question {
    padding-bottom: 15px;
    display: flex;
    position: relative;
    list-style: none;
    cursor: pointer;
    border-bottom: 1px solid var(--clr_border);
    transition: opacity ease 0.3s;
}

.p-home-qa-question:hover {
    opacity: 0.7;
}

.p-home-qa-question::-webkit-details-marker {
    display: none;
}

.p-home-qa-question__label {
    margin-right: 16px;
    line-height: 1;
	letter-spacing: 0.02em;
    font-size: 4rem;
    font-family: var(--fnt_en);
    color: var(--clr_primary);
}

.p-home-qa-question__title {
    padding-right: 40px;
    padding-top: 0.3em;
    font-size: 1.8rem;
    font-family: 'Noto Serif JP', serif;
}

.p-home-qa-question__toggle {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 10px;
    right: 0;
    transition: transform ease 0.6s;
}

.p-home-qa-question:hover .p-home-qa-question__toggle,
.p-home-qa-item.open .p-home-qa-question__toggle {
    transform: rotate(180deg);
}

.p-home-qa-question__toggle:before,
.p-home-qa-question__toggle:after {
    content: "";
    position: absolute;
    background: var(--clr_primary);
}

.p-home-qa-question__toggle:before {
    width: 100%;
    height: 1px;
    display: block;
    top: 50%;
    left: 0;
    right: 0;
}

.p-home-qa-question__toggle:after {
    width: 1px;
    height: 100%;
    display: block;
    top: 0;
    bottom: 0;
    left: 50%;
    transition: transform ease 0.3s;
}

.p-home-qa-item.open .p-home-qa-question__toggle:after {
    transform: scaleY(0);
}

.p-home-qa-answer {
    margin-top: 15px;
    display: none;
    font-size: 1.7rem;
}

@media all and (min-width: 1025px) {
    .p-home-qa-header {
        display: flex;
        align-items: center;
    }

    .p-home-qa-icon {
        margin: 0 16px 0 0;
    }

    .p-home-qa-items {
        width: calc(100% + 60px);
        display: flex;
        flex-wrap: wrap;
        position: relative;
        left: -30px;
    }

    .p-home-qa-item {
        width: 50%;
        padding: 0 30px 30px;
    }

    .p-home-qa-item:not(:first-child) {
        margin-top: 0;
    }
}

@media all and (min-width: 1441px) {
    .p-home-qa-icon {
        width: 70px;
        height: 70px;
        border-radius: 35px;
    }

    .p-home-qa__title {
        font-size: 2.2rem;
    }

    .p-home-qa-items {
        width: calc(100% + 80px);
        display: flex;
        flex-wrap: wrap;
        position: relative;
        left: -40px;
    }

    .p-home-qa-item {
        width: 50%;
        padding: 0 40px 30px;
    }

    .p-home-qa-question__title {
        font-size: 2rem;
    }
}

/*  home - separate-image
---------------------------------------- */
.p-home-separate-image {
    height: 114px;
    margin: 15px auto 0;
    overflow: hidden;
}

.p-home-separate-image__list {
    height: 100%;
    display: flex;
    animation: bgSlider 80s linear infinite;
}

.p-home-separate-image__item {
    height: 100%;
    display: flex;
}

.p-home-separate-image__item img {
    width: auto;
    height: 100%;
    margin-right: 10px;
    display: block;
}

@keyframes bgSlider {
	to {
        transform: translate3d(-50%, 0, 0);
	}
}

@media all and (min-width: 426px) {
    .p-home-separate-image {
        height: 160px;
    }
}

@media all and (min-width: 769px) {
    .p-home-separate-image {
        height: 240px;
    }
}

@media all and (min-width: 1025px) {
    .p-home-separate-image {
        height: 300px;
        margin-top: 30px;
    }

    .p-home-separate-image__item img {
        margin-right: 20px;
    }
}

@media all and (min-width: 1441px) {
    .p-home-separate-image {
        height: 425px;
    }

    .p-home-separate-image__item img {
        margin-right: 30px;
    }
}

/*  home - forcontact
---------------------------------------- */
.p-home-forcontact {
    position: relative;
}

.p-home-forcontact:before {
    content: "";
    height: calc(100% - 70px);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(../img/home/forcontact_image.jpg) no-repeat top right;
    background-size: cover;
}

.p-home-forcontact__inner {
    width: min(100%, 1080px);
    height: 100%;
    margin: 0 auto;
    padding: 0 20px 40px;
    position: relative;
    z-index: 2;
}

.p-home-forcontact-box {
    padding: 30px 10px;
    background: var(--clr_primary);
}

.p-home-forcontact-box__inner {
    max-width: 400px;
    margin: 0 auto;
}

.p-home-forcontact-header {
    padding-top: 5px;
    text-align: center;
    line-height: 1.4;
    color: var(--clr_txt_white);
}

.p-home-forcontact-header__text {
    margin-bottom: 0.2em;
    font-size: 1.2rem;
    font-family: 'Noto Serif JP', serif;
}

.p-home-forcontact-header__title {
    line-height: 1.1;
    letter-spacing: 0.02em;
    font-size: 4rem;
    font-family: var(--fnt_en);
}

.p-home-forcontact-cv {
    margin-top: 50px;
}

.p-home-forcontact .c-contact-tel {
    max-width: 320px;
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
    color: var(--clr_txt_white);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.p-home-forcontact .c-contact-tel__text:before {
    filter: brightness(0) invert(1);
}

.p-home-forcontact .c-contact-tel__text {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.p-home-forcontact .c-gradient-btn {
    font-size: 2rem;
}

@media all and (min-width: 769px) {
    .p-home-forcontact-box {
        padding: 40px 20px;
    }

    .p-home-forcontact-cv {
        margin-top: 40px;
    }
}

@media all and (min-width: 1025px) {
    .p-home-forcontact__inner {
        padding-bottom: 60px;
    }

    .p-home-forcontact-box__inner {
        max-width: 520px;
    }

    .p-home-forcontact .c-contact-tel {
        max-width: 350px;
    }

    .p-home-forcontact .c-gradient-btn {
        height: 75px;
        font-size: 2.6rem;
    }

    .p-home-forcontact .c-gradient-btn:after {
        width: 54px;
        height: 24px;
    }
}

@media all and (min-width: 1441px) {
    .p-home-forcontact__inner {
        width: min(100%, 1320px);
        padding-bottom: 80px;
    }

    .p-home-forcontact-box {
        padding: 50px 20px 60px;
    }

    .p-home-forcontact-box__inner {
        max-width: 690px;
    }

    .p-home-forcontact-header__text {
        font-size: 1.5rem;
    }

    .p-home-forcontact-header__title {
        font-size: 5.2rem;
    }

    .p-home-forcontact .c-gradient-btn {
        height: 95px;
        font-size: 3.4rem;
    }

    .p-home-forcontact .c-contact-tel {
        max-width: 360px;
        margin-top: 40px;
    }
}
