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

/* ===== Reset ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li {
    margin: 0;
    padding: 0;
    font-weight: inherit;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Hiragino Mincho Pro", 游明朝, "Yu Mincho", YuMincho, HGS明朝E, serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
}

.inner {
    max-width: 1050px;
    width: 98%;

}

.pc {}

.sp {
    display: none;
}


/* ===== 画像ポップアップ ===== */
a[data-lightbox]{
    position: relative;
    margin-top: 2em;
}
a[data-lightbox]:before{
    content: "";
    background: url('../img/ico-zoom-plus.svg') center/contain no-repeat;
    width: 1.2em;
    height: 1.2em;
    display: block;
    position: absolute;
    top: -2em;
    right: 0.2em;
}
.lightboxOverlay{
    background-color: rgba(0, 0, 0, 0.7) !important
}
.lb-container:before{
    content: "";
    background: url('../img/ico-zoom-minus.svg') center/contain no-repeat;
    width: 1.9em;
    height: 1.9em;
    display: block;
    position: absolute;
    top: -2.5em;
    right: 0.2em;
    pointer-events: none;
    cursor: pointer;
}

/* ===== 縦書きユーティリティ ===== */
.u-vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* 中央寄せしたい場合 */
.u-vertical-center {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 右→左ではなく左→右にしたい場合 */
.u-vertical-lr {
    writing-mode: vertical-lr;
}

.font-notosan {
	font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
}

/* header */
.header {
    position: fixed;
    width: 100%;
    z-index: 1001;
    height: 70px;
    pointer-events: none;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.header h1.logo {
    position: fixed;
    right: 0;
    top: 0;
    /* background: #fff;
    padding: 24px 20px 24px 32px;
    border-radius: 0 0 0 25px; */
    padding: 24px 20px 0 0;
    z-index: 999;
}
.header h1.logo{
    pointer-events: all;
}
.header h1.logo img {
    width: 132px;
}

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

body.ham-open {
    overflow: hidden;
}

.hamburger {
    position: relative;
    width: 63px;
    height: 28px;
    margin-top: 29px;
    margin-left: 20px;
    cursor: pointer;
    z-index: 3000;
    pointer-events: all;
    display: flex;
    align-items: center;
}

.hamburger span{
    position: relative;
    display: block;
    width: 100%;
}
.hamburger span:before,
.hamburger span:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: #797979;
    left: 0;
    transition: 0.3s;
}
.hamburger span:before {
    top: -6px;
}
.hamburger span:after {
    top: 6px;
}
.hamburger.open span:before,
.hamburger.open span:after {
    background: #0f1745;
}
.hamburger.open span:before {
    transform: rotate(11deg);
    top: -1px;
}
.hamburger.open span:after {
    transform: rotate(-11deg);
    top: -1px;
}



.hamburger-nav {
    background-color: #fff;
    display: flex;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    transform: translateY(-200vh);
    transition: transform .6s ease;
    z-index: 2000;
    pointer-events: all;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.hamburger-nav.active {
    pointer-events: all;
    transform: translateY(0);
    transition: transform .6s ease;
}


.hamburger-links {
    margin-top: 163px;
    display: flex;
    width: 57vw;
    align-items: flex-start;
    justify-content: flex-start;
    margin-left: 4.5vw;
}

.hamburger-links ul {
    width: 250px;
}

.hamburger-links ul li {
    margin-bottom: 28px;
    font-size: clamp(16px, 2.2vw, 21px);
    margin-top: 0;
    letter-spacing: 2px;
    margin-left: 16px;
}

.hamburger-links ul li.logo {
    max-width: 30px;
    width: 100%;
}

.hamburger-links .has-child ul {
    display: none;
}

.hamburger-links .has-child ul li {
    font-size: 16px;
    margin-top: 11px;
    margin-bottom: 8px;
    margin-left: 0px;
}

.hamburger-links .has-child>a {
    position: relative;
}

.hamburger-links .has-child>a .toggle{
    position: relative;
    display: inline-block;
    width: 1.5em;
    height: 1em;
}
.hamburger-links .has-child>a .toggle::after {
    content: "";
    position: absolute;
    right: 5px;
    top: 50%;
    width: 12px;
    height: 12px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: translateY(-70%) rotate(135deg);
    transition: .3s;
}

.hamburger-links .has-child.open>a .toggle::after {
    transform: translateY(-30%) rotate(-45deg);
}

.hamburger-links ul li.contact {
    margin-left: 7px;
    margin-top: 40px;
}

.hamburger-links ul li.contact a {
    background: #0f1745;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
    font-size: 15px;
    padding: 18px;
    width: 210px;
    letter-spacing: 3px;
}

.hamburger-links ul li.contact a img {
    width: 26px;
    height: 20px;
}

.hamburger-nav .hamburger-side {
    width: 43vw;
    color: #fff;
    background: url('../img/hum-bg-pc.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1%;
}

.hamburger-nav .hamburger-side .hamburger-side-inner {
    width: 100%;
    max-width: 300px;
    margin-bottom: 200px;
}

.hamburger-nav .hamburger-side .logo {
    width: 158px;
    margin: auto;
    margin-bottom: 33px;
}

.hamburger-nav .hamburger-side .company-name {
    font-size: clamp(16px, 2.3vw, 20px);
    text-align: center;
}

.hamburger-nav .hamburger-side .area {
    font-size: 11.4px;
    margin: 10px 0 11px;
}

.hamburger-nav .hamburger-side .add {
    font-size: 14px;
    display: flex;
    gap: 11px;
    align-items: flex-end;
    justify-content: flex-start;
}

.hamburger-nav .hamburger-side .add a {
    width: 53px;
}

.hamburger-nav .hamburger-side .tel {
    font-size: 15px;
}

.hamburger-nav .hamburger-side .mail {
    width: 22px;
    display: block;
    margin-top: 4px;
    filter: invert(1);
}

.hamburger-nav .hamburger-links .sns {
    display: flex;
    gap: 0.5em;
}


/* footer */

.footer .footer-banner {
    background: url('../img/ft-bnr.png') no-repeat center/cover;
    margin: auto;
}

.footer .footer-banner a {
    padding: 35px 30px 22px 70px;
    display: block;
    color: #fff;
}

.footer .footer-banner .logo-wrap {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 15px;
}

.footer .footer-banner .logo-wrap img {
    width: 72px;
}

.footer .footer-banner .logo-wrap p {
    font-size: 14px;
    letter-spacing: 1.4px;
}

.footer .footer-banner .logo-wrap p span {
    font-size: 35px;
}

.footer .footer-banner a .vm-btn {
    margin-top: 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
    letter-spacing: 2px;
}

.footer .footer-banner a .vm-btn img {
    filter: invert();
    width: 40px;
    transition: transform 0.3s ease;
}

.footer .footer-banner .content .txt {
    line-height: 1.8;

}

.footer .footer-buttons {
    display: flex;
    border-top: 1px solid;
    border-bottom: 1px solid;
    justify-content: center;
    margin: 90px auto 85px;
    align-items: center;
    padding: 13px 0 43px;
}

.footer .footer-buttons a {
    margin: 20px 0 0;
    padding: 10px 0 0;
    min-height: 125px;
    border-right: 1px solid #000;
    text-align: center;
    width: 20%;
}

.footer .footer-buttons a img {
    margin: auto;
    max-height: 43px;
}

.footer .footer-buttons a:last-child {
    border: none;
}

.footer .footer-buttons a p {
    line-height: 2.5;
    margin-top: 23px;
}

.footer .footer-buttons a:nth-child(1) p {
    line-height: 1.5;
    margin-top: 20px;

}

.footer .footer-buttons a:nth-child(1) p span {
    font-size: 15px;
}

.footer .footer-buttons a:nth-child(5) p {
    line-height: 1.5;
    margin-top: 20px;
    font-size: 17px;
}

.footer .footer-buttons a:nth-child(5) p span {
    font-size: 13px;
}

.footer-nav {
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.footer-links {
    display: flex;
}

.footer-links ul {
    width: 173px;
}

.footer-links ul li {
    margin-bottom: 10px;
    font-size: 15px;
    margin-top: 10px;
}

.footer-links ul li.logo {
    max-width: 17px;
    width: 100%;
}

.footer-links .has-child ul {
    display: none;
}

.footer-links .has-child>a {
    position: relative;
}
.footer-links .has-child > a .toggle{
    position: relative;
    display: inline-block;
    width: 1.5em;
    height: 1em;
}

.footer-links .has-child > a .toggle::after {
    content: "";
    position: absolute;
    right: 5px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: translateY(-70%) rotate(135deg);
    transition: .3s;
}

.footer-links .has-child.open>a .toggle::after {
    transform: translateY(-30%) rotate(-45deg);
}

.footer-nav .footer-company {
    margin-right: 36px;
    margin-top: -8px;
}

.footer-nav .footer-company .logo img {
    width: 290px;
}

.footer-nav .footer-company .area {
    font-size: 11.5px;
    margin: 8px 0 24px;
}

.footer-nav .footer-company .add {
    font-size: 13px;
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.footer-nav .footer-company .add a {
    width: 53px;
}

.footer-nav .footer-company .tel {
    font-size: 14.5px;
}

.footer-nav .footer-company .mail {
    width: 20px;
    display: block;
    margin-top: 7px;
}


.footer .copy {
    text-align: center;
    font-size: 11px;
    margin: 170px auto 30px;
}

.footer-nav .footer-links .sns {
    display: flex;
    gap: 1em;
}

/* 追従バナー */
.contact-banner-pc {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 219px;
    padding: 20px 0;
    background: #0f1745;
    border: 1px solid #0f1745;
    color: #fff;
    text-decoration: none;
    gap: 15px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: all .3s ease;
}

.contact-banner-pc.is-show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(-50%) translateX(0);
}

.contact-banner-pc .contact-banner__icon {
    position: relative;
    width: 25px;
    height: 20px;
}


.contact-banner-pc .contact-banner__icon img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity .3s ease;
}

.contact-banner__icon .icon-white {
    opacity: 1;
}

.contact-banner__icon .icon-blue {
    opacity: 0;
}

.contact-banner-pc:hover .icon-white {
    opacity: 0;
}

.contact-banner-pc:hover .icon-blue {
    opacity: 1;
}

.contact-banner-pc .contact-banner__text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 0.1em;
    font-size: 17px;
    font-weight: 700;
}

.contact-banner-pc:hover {
    background: #fff;
    color: #0f1745;
}


/* ================= TOP ================= */
.p-top .fv-ttl {
    padding-top: 12vh;
    margin-bottom: -2vh;
}

.p-top .fv-ttl .fv-overlay {
    background: url('../img/top/fv-bg.png') no-repeat 47% 100%/240px;
    padding: 0 15px 33px;
    display: flex;
    justify-content: center;
}

/* 背景付き縦書き */
.p-top .fv-ttl .fv-title {
    font-size: 34px;
    letter-spacing: 0.2em;
    line-height: 1.8;
    font-weight: 400;
    padding-bottom: 2vh;
    color: #0f1745;
}

.p-top .fv {
    position: relative;
    margin-bottom: 183px;
}

.p-top .fv-track {
    position: relative;
    left: 0;
    aspect-ratio: 600 / 253;
}

.p-top .fv-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.p-top .fv-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.p-top .slider-track {
    position: relative;
}

.p-top .fv-slide:first-child {
  opacity: 1;
}


/* ドットラッパー */
.p-top .fv .fv-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

/* ドット */
.p-top .fv .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    opacity: 0.5;
    transition: 0.3s;
}

.p-top .fv .dot:hover {
    cursor: pointer;
}

.p-top .fv .dot.active {
    background: #777777;
    opacity: 1;
}

/* news */
.p-top .news {
    max-width: 750px;
    width: 100%;
    margin: 0 auto 200px;
}

.p-top .news h2 {
    text-align: center;
    margin-bottom: 76px;
    font-size: 1.9em;
    letter-spacing: 4px;
    color: #0f1745;
}

.p-top .news .news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 98px;
    justify-items: center;
    margin-bottom: 63px;
}

.p-top .news .news-list li {
}

.p-top .news .news-list li a .thumb {
    width: 182px;
    height: 182px;
}

.p-top .news .news-list li a .thumb img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.p-top .news .news-list li .news-tag {
    color: white;
    background-color: #0f1745;
    padding: 1px 10px;
    margin: 20px 0;
    display: inline-block;
    font-size: 14px;
}


.vm-btn {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.vm-btn.center {
    justify-content: center;
}

.vm-btn a {
    display: flex;
    width: fit-content;
    align-items: baseline;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
}

.vm-btn a span img {
    width: 40px;
    transition: transform 0.3s ease;
}

.vm-btn a:hover span img {
    transform: translateX(5px);
}

.border-line {
    width: 100%;
    height: 1px;
    background: #ddd;
    max-width: 1050px;
    margin: auto;
}

/* concept */
.p-top .concept h2 {
    text-align: center;
    font-size: 1.9em;
    letter-spacing: 4px;
    color: #0f1745;
}

.p-top .concept-inner {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    max-width: 675px;
    width: 100%;
    margin: auto;
    flex-wrap: wrap;
    margin-top: 140px;
}

.p-top .concept-inner:nth-of-type(2) {
    max-width: unset;
    justify-content: flex-end;
    margin-top: 180px;
    gap: 0;
}

.p-top .concept-inner:nth-of-type(3) {
    max-width: unset;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 11vw;
    align-items: flex-end;
    margin-top: 152px;
}

.p-top .concept-inner:nth-of-type(3) .concept-slider .slider-dots {
    bottom: -20px;
}

.p-top .concept-inner .concept-slider {
    width: 100%;
    max-width: 330px;
    position: relative;
}

.p-top .concept-inner:nth-of-type(2) .concept-slider {
    max-width: 652px;
    margin-left: 4vw;
    flex: 0 0 60vw;
}

.p-top .concept-inner:nth-of-type(3) .concept-slider {
    max-width: 628px;
    margin-left: -12vw;
}

.p-top .concept-inner .concept-slider .concept-slide {
    position: relative;
    aspect-ratio: 660 / 801;
    overflow: hidden;
}

.p-top .concept-inner:nth-of-type(2) .concept-slider .concept-slide {
    aspect-ratio: 1306 / 1326;
}

.p-top .concept-inner:nth-of-type(3) .concept-slider .concept-slide {
    aspect-ratio: 1248 / 736;
}

.p-top .concept-inner .concept-slider .concept-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
}

.p-top .concept-inner .concept-slider .concept-slide img:first-child {
    display: block;
}

.p-top .concept-inner .concept-slider .slider-dots {
    position: absolute;
    bottom: -6px;
    right: 0;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.p-top .concept-inner:nth-of-type(2) .concept-slider .slider-dots {
    left: 0;
    transform: translateX(0);
}

.p-top .concept-inner .concept-slider .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ccc;
    opacity: 0.5;
}

.p-top .concept-inner .concept-slider .dot.active {
    background: #333;
    opacity: 1;
}

.p-top .concept-inner .concept-text {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
}

.p-top .concept-inner:nth-of-type(2) .concept-text {
    justify-content: flex-end;
    margin-right: 2vw;
    flex: 0 0 20vw;
}

.p-top .concept-inner .concept-text h3,
.p-top .puzzle-text h3 {
    margin-left: 3vw;
    color: #0f1745;
    font-size: 1.4em;
    letter-spacing: 5px;
}

.p-top .concept-inner .concept-text .concept-text-detail,
.p-top .puzzle-text .puzzle-text-detail {
    line-height: 2.4;
    letter-spacing: 2px;
}

.p-top .concept-inner:nth-of-type(2) .concept-text .concept-link {
    width: 100%;
    margin-top: 62px;
}

.p-top .concept-inner:nth-of-type(2) .concept-text .concept-link ul {
    display: inline-block;
}

.p-top .concept-inner:nth-of-type(2) .concept-text .concept-link ul li {
    margin-bottom: 10px;
}

.p-top .concept-inner:nth-of-type(2) .concept-text .concept-link a {
    border: 1px solid;
    display: flex;
    border-radius: 10px;
    width: 100%;
    text-align: center;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
    max-width: 200px;
    min-height: 76px;
    padding: 0 5px 0 15px;
    transition: 0.3s;
}

.p-top .concept-inner:nth-of-type(2) .concept-text .concept-link a .txt {
    font-size: 21px;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.p-top .concept-inner:nth-of-type(2) .concept-text .concept-link a span {
    line-height: 1;
}

.p-top .concept-inner:nth-of-type(2) .concept-text .concept-link a span.num {
    font-size: 166%;
    margin-left: 2px;
}

.p-top .concept-inner:nth-of-type(2) .concept-text .concept-link a span.smaller-txt {
    font-size: 63%;
    line-height: 1.2;
    display: block;
    flex-basis: 100%;
}

.p-top .concept-inner:nth-of-type(2) .concept-text .concept-link a img {
    width: 15px;
    transition: 0.1s;
}

.p-top .concept-inner:nth-of-type(2) .concept-text .concept-link a:hover {
    background: #000;
}

.p-top .concept-inner:nth-of-type(2) .concept-text .concept-link a:hover .txt {
    color: #fff;
}

.p-top .concept-inner:nth-of-type(2) .concept-text .concept-link a:hover .img img {
    filter: invert(1);
}

.p-top .concept-inner:nth-of-type(3) .img-wrap {
    max-width: 170px;
    margin-bottom: -50px;
}

.p-top .concept-inner .vm-btn a {
    margin-right: 36px;
}

/* puzzle */
.p-top .puzzle {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 900px;
    width: 100%;
    margin: 287px auto 218px;
    flex-direction: row-reverse;
}

.p-top .puzzle .vm-btn {
    margin-top: 57px;
    margin-right: 2em;
}

.p-top .puzzle-grid {
    display: flex;
    flex-direction: column;
    width: 51%;
    margin-top: 0.8em;
}

.p-top .puzzle-grid p {
    font-size: 12px;
    text-align: center;
}

.p-top .puzzle-text {
    display: flex;
    flex-direction: row-reverse;
    margin-right: 1.2em;
}

.p-top .puzzle-text h3 {
    margin-left: 55px;
    font-size: 30px;
    font-weight: 500;
}

.p-top .puzzle-text .puzzle-text-detail {
    line-height: 2.5;
}
.p-top .puzzle-img{
    margin-top: 4.4em;
}

/* works */
.p-top .works {
    margin-top: 223px;
    margin-bottom: 200px;
}

.p-top .works h2 {
    text-align: center;
    font-size: 1.9em;
    letter-spacing: 4px;
    color: #0f1745;
}

.p-top .works .works-wrap {
    margin-top: 57px;
}

.p-top .works-track {
    display: flex;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.p-top .works-track::-webkit-scrollbar {
    display: none;
}

.p-top .work {
    min-width: 25%;
}

.p-top .work img {
    width: 100%;
}

.p-top .works .ttl-wrap {
    margin: 0 40px 0 29px;
}

.p-top .works .ttl-wrap .category {
    border: 1px solid;
    width: fit-content;
    padding: 0px 13px;
    margin: 27px 0 5px;
    font-size: 12px;
}

.p-top .works .ttl-wrap .address {
    font-size: 18px;
}

.p-top .works .ttl-wrap .address .date {
    margin-left: 10px;
    font-size: 78%;
}

.p-top .works .btn-wrap {
    display: flex;
    justify-content: center;
    margin: 36px auto 17px;
    gap: 20px;
}

.p-top .works .btn-wrap .c-arrow {
    width: 47px;
}

.p-top .works .btn-wrap .c-arrow:hover img {
    filter: invert(1);
    transition: .3s;
}


/* blog */

.p-top .blog {
    margin-top: 188px;
    margin-bottom: 207px;
}

.p-top .blog h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.9em;
    letter-spacing: 4px;
    color: #0f1745;
}

.p-top .blog-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px 50px;
    max-width: 900px;
    width: 100%;
    margin: 95px auto 70px;
}

.p-top .blog-list li {
    width: 29%;
}

.p-top .blog-list li p {
    margin-top: 20px;
    line-height: 1.8;
}

.p-top .blog-list li p span {
    display: block;
    font-size: 97%;
}

.p-top .blog-list li a img {
    border-radius: 10px;
    width: 260px;
    height: 200px;
    object-fit: cover;
}


/* ================= サブ共通 ================= */
.sub-fv {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.sub-fv .img {
    width: 56.5vw;
}

.sub-fv .txt {
    font-size: 35px;
    letter-spacing: 11px;
    color: #141e3f;
    font-weight: 600;
    margin: auto;
    padding-top: 1em;
}

/* ================= プライバシーポリシー ================= */


.p-privacy .privacy {
    max-width: 750px;
    width: 95%;
    margin: 135px auto 195px;
    line-height: 2.3;
}

.p-privacy .privacy span.ttl {
    font-size: 22px;
    letter-spacing: 3px;
    font-weight: 500;
}

.sub-inner {
    max-width: 900px;
    width: 98%;
    margin: auto;
}

/* ================= 美しい装い ================= */

.p-thinks .thinks-sub {
    margin: 239px auto 172px;
}

.p-thinks .thinks-sub h2 {
    text-align: center;
    margin-bottom: 64px;
    font-size: 1.9em;
    letter-spacing: 4px;
    color: #0f1745;
}

.p-thinks .thinks-sub p {
    font-size: clamp(14px, 3vw, 16px) !important;
    line-height: 2.2;
    margin: auto;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.p-thinks .thinks-longlife {
    background-color: #f8f6f2;
    padding: 100px 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 50px;
}

.p-thinks .thinks-longlife h3 {
    margin-bottom: 49px;
    font-size: 1.3em;
    letter-spacing: 4px;
    color: #0f1745;
    line-height: 2.3;
}

.p-thinks .thinks-longlife .img-wrap {
    width: 33%;
}

.p-thinks .thinks-longlife .txt-wrap {
    width: 51%;
}

.p-thinks .thinks-longlife .txt-wrap p {
    font-size: 1em;
    line-height: 2;
    margin-bottom: 20px;
}

.p-thinks .thinks-performance {
    margin-top: 144px;
    margin-bottom: 86px;
}

.p-thinks .thinks-performance h2 {
    text-align: center;
    margin-bottom: 76px;
    font-size: 1.9em;
    font-weight: 500;
    letter-spacing: 4px;
    color: #0f1745;
}

.p-thinks .thinks-performance .thinks-performance-wrap {
    display: flex;
    padding: 60px 0 66px;
    border-bottom: 1px solid;
    justify-content: flex-start;
    gap: 70px;
}

.p-thinks .thinks-performance .thinks-performance-wrap.thinks-performance-01 {
    padding-bottom: 77px;
}

.p-thinks .thinks-performance .thinks-performance-wrap.thinks-performance-02 {
    padding-top: 80px;
    padding-bottom: 65px;
}

.p-thinks .thinks-performance .thinks-performance-wrap.thinks-performance-03 {
    padding-top: 70px;
    padding-bottom: 68px;
}

.p-thinks .thinks-performance .thinks-performance-wrap.thinks-performance-04 {
    padding-top: 66px;
    padding-bottom: 55px;
}

.p-thinks .thinks-performance .thinks-performance-wrap.thinks-performance-05 {
    padding-top: 80px;
}

.p-thinks .thinks-performance .thinks-performance-wrap:last-child {
    border-bottom: none;
}

.p-thinks .thinks-performance .thinks-performance-wrap:nth-child(odd) {
    justify-content: space-between;
    flex-direction: row-reverse;
}

.p-thinks .thinks-performance .thinks-performance-wrap .img-wrap {
    width: 41.5%;
}

.p-thinks .thinks-performance .thinks-performance-wrap .txt-wrap {
    width: 66%;
}

.p-thinks .thinks-performance .thinks-performance-wrap .txt-wrap h3 {
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 500;
    letter-spacing: 3.5px;
    color: #0f1745;
    line-height: 1;
    margin-top: 5px;
}

.p-thinks .thinks-performance .thinks-performance-wrap .txt-wrap p {
    font-size: 1.5em;
    line-height: 1.55;
    margin-bottom: 20px;
}

.p-thinks .thinks-performance .thinks-performance-wrap .txt-wrap p span {
    font-size: 0.68em;
}

.p-thinks .thinks-performance .thinks-performance-wrap .txt-wrap .vm-btn {
    justify-content: flex-start;
    margin-left: 0.5em;
}

.p-thinks .thinks-performance .thinks-performance-wrap .txt-wrap .vm-btn a {
    font-size: 1em;
}

.p-thinks .thinks-logo {
    background-color: #f8f6f2;
    padding: 117px 0 139px;
    margin-bottom: 214px;
}

.p-thinks .thinks-logo .sub-inner {
    display: flex;
}

.p-thinks .thinks-logo .sub-inner .img-wrap {
    width: 54%;
    margin-right: 120px;
}

.p-thinks .thinks-logo .sub-inner .txt-wrap {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.p-thinks .thinks-logo .sub-inner .txt-wrap h2 {
    font-size: 1.9em;
    letter-spacing: 4px;
    color: #0f1745;
    margin-left: 20px;

}

.p-thinks .thinks-logo .sub-inner .txt-wrap p {
    line-height: 2.2;
    text-orientation: upright;
}

/* ================= 未完成 ================= */
.color-navy {
    color: #0f1745;
}

.p-evolving-home .evolving-home-sub {
    margin-top: 200px;
    margin-bottom: 143px;
}

.p-evolving-home .evolving-home-sub h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 1.9em;
    letter-spacing: 4px;
    color: #0f1745;
}

.p-evolving-home .evolving-home-sub h2+p {
    font-size: 1.4em;
    line-height: 2.2;
    letter-spacing: 1.4px;
    margin: 0 auto 76px;
    text-align: center;
}

.p-evolving-home .evolving-home-sub .about-name {
    border: 1px solid;
    padding: 30px 0 5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.p-evolving-home .evolving-home-sub .about-name span {
    color: #d4744c;
}

.p-evolving-home .evolving-home-sub .about-name .word-wrap {
    font-size: 30px;
    letter-spacing: 7px;
    width: 100%;
    text-align: center;
    margin-top: -30px;
}

.p-evolving-home .evolving-home-sub .about-name .meaning-wrap {
    width: 140%;
}

.p-evolving-home .evolving-home-sub .about-name .meaning-wrap h5 {
    font-size: 23px;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
}

.p-evolving-home .evolving-home-sub .about-name .meaning-wrap p {
    font-size: 16px;
    margin-bottom: 31px;
    line-height: 2;
}

.p-evolving-home .about-evolving-home-wrap {
    display: flex;
    padding: 0 0 105px;
    border-bottom: 1px solid;
    justify-content: flex-start;
    gap: 70px;
}

.p-evolving-home .about-evolving-home-wrap.diversity {
    border-bottom: none;
    padding-top: 95px;
    padding-bottom: 132px;
    justify-content: space-between;
}

.p-evolving-home .about-evolving-home-wrap:nth-child(even) {
    justify-content: space-between;
    flex-direction: row-reverse;
    padding-top: 124px;
}

.p-evolving-home .about-evolving-home-wrap .img-wrap {
    width: 45.5%;
}

.p-evolving-home .about-evolving-home-wrap.diversity .img-wrap {
    width: 32.5%;
    margin-right: 20px;
}

.p-evolving-home .about-evolving-home-wrap .txt-wrap {
    width: 66%;
}
.p-evolving-home .about-evolving-home-wrap.diversity .txt-wrap {
    width: 55%;
}

.p-evolving-home .about-evolving-home-wrap .txt-wrap h3 {
    margin-bottom: 27px;
    font-size: 1.34em;
    font-weight: 600;
    letter-spacing: 3px;
    color: #0f1745;
    line-height: 2;
}

.p-evolving-home .about-evolving-home-wrap .txt-wrap p {
    font-size: 1em;
    line-height: 2;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.p-evolving-home .about-evolving-home-02 {
    background-color: #f8f6f2;
    padding-bottom: 133px;
    margin-bottom: 225px;
}

.p-evolving-home .about-evolving-home-02 .sub-inner {
    display: flex;
    padding: 149px 0 60px;
    justify-content: flex-start;
    gap: 76px;
}

.p-evolving-home .about-evolving-home-02 .img-wrap {
    width: 45.5%;
}

.p-evolving-home .about-evolving-home-02 .txt-wrap {
    width: 66%;
    margin-top: -10px;
}

.p-evolving-home .about-evolving-home-02 .txt-wrap h3 {
    margin-bottom: 11px;
    font-size: 1.7em;
    letter-spacing: 3.5px;
    color: #0f1745;
}

.p-evolving-home .about-evolving-home-02 .txt-wrap p {
    font-size: 1em;
    line-height: 2.2;
    margin-bottom: 35px;
}

.p-evolving-home .about-evolving-home-02 .sub-inner+p {
    text-align: center;
    font-size: 20px;
    line-height: 1.8;
    margin-top: -15px;
}

/* ================= 会社案内 ================= */

.p-company .philosophy {
    margin-top: 200px;

}

.p-company .philosophy h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.9em;
    letter-spacing: 7px;
    color: #0f1745;
}

.p-company .philosophy h4 {
    text-align: center;
    margin-bottom: 150px;
    font-size: 1.4em;
    letter-spacing: 5px;
    color: #0f1745;
}

.p-company .philosophy .philosophy-piece {
    display: flex;
    margin-bottom: 165px;
    max-width: 95%;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.p-company .philosophy .philosophy-piece .ttl {
    margin-bottom: 48px;
    font-size: 1.9em;
    letter-spacing: 4px;
    color: #0f1745;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.p-company .philosophy .philosophy-piece .txt {
    font-size: 1em;
    line-height: 3.3vw;
    letter-spacing: 1.4px;
    margin-right: 5vw;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.p-company .philosophy .philosophy-piece .img-wrap {
    margin-top: 40px;
    flex: 0 0 24vw;
    margin-right: 10vw;
}

.p-company .philosophy .single-img {
    width: 67%;
    margin-left: auto;
}


.p-company .greeting {
    margin-bottom: 252px;
    margin-top: 180px;
}

.p-company .greeting h2 {
    text-align: center;
    margin-bottom: 55px;
    font-size: 1.9em;
    letter-spacing: 4px;
    color: #0f1745;
}

.p-company .greeting h4 {
    text-align: center;
    font-size: 1.4em;
    color: #0f1745;
    line-height: 2;
}

.p-company .greeting .greeting-wrap {
    display: flex;
    gap: 9vw;
    margin-top: 90px;

}

.p-company .greeting .greeting-wrap .img-wrap {
    flex: 0 0 31vw;
}

.p-company .greeting .greeting-wrap .txt-wrap {
    line-height: 2.45;
    flex: 0 0 55vw;
    letter-spacing: -0.5px;
}

.p-company .greeting .greeting-wrap+p {
    text-align: center;
    font-size: 1em;
    line-height: 2.6;
    margin: 117px auto 134px;
}

.p-company .greeting .greeting-wrap-02 {
    display: flex;
    justify-content: space-between;
    max-width: 974px;
    margin: auto;
    margin-left: 13vw;
}

.p-company .greeting .greeting-wrap-02 .txt-wrap {
    font-size: 1em;
    line-height: 2.4;
    flex: 0 0 45vw;
}

.p-company .greeting .greeting-wrap-02 .img-wrap {
    flex: 0 0 30vw;
}

.p-company .greeting .greeting-wrap-02 .img-wrap p {
    text-align: left;
    font-size: 0.9em;
    line-height: 2;
    letter-spacing: 0.7px;
    margin-top: 20px;
}

.p-company .info {
    display: flex;
    gap: 40px;
    margin-bottom: 247px;
    align-items: flex-start;
    justify-content: center;
}

.p-company .info h2 {
    font-size: 1.9em;
    letter-spacing: 9px;
    color: #0f1745;
}

.p-company .info table {
    max-width: 677px;
    width: 100%;
}

.p-company .info table tr {
    padding: 16px 0;
    border-bottom: 1px solid;
    display: flex;
}

.p-company .info table tr:first-child {
    padding-top: 0;
}

.p-company .info table tr th {
    width: 25%;
    text-align: left;
    font-weight: 400;
}

.p-company .info table tr td {
    width: 75%;
    text-align: left;
    line-height: 1.2;
}

.p-company .info table tr:nth-child(7) {
    border-bottom: none;
}

.p-company .info table tr:last-child {
    border: none;
    padding: 0;
}

.p-company .info table tr:last-child th {
    width: 100%;
}

.p-company .info table tr:last-child th .g-map iframe {
    width: 100%;
    min-height: 328px;
    height: 100%;
}

.p-company .info table tr:last-child td {
    width: 0;

}

/* ================= 高断熱について ================= */

.p-insulation .insulation-sub {
    margin-top: 200px;
    margin-bottom: 135px;
}

.p-insulation .insulation-sub h2 {
    text-align: center;
    font-size: 1.9em;
    letter-spacing: 4px;
    color: #0f1745;
}

.p-insulation .insulation-data h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.4em;
    letter-spacing: 2px;
    color: #0f1745;
}

.p-insulation .insulation-data .insulation-data-description {
    display: flex;
    justify-content: space-between;
}

.p-insulation .insulation-data .insulation-data-description div {
    width: 48%;
}

.p-insulation .insulation-data .insulation-data-description div h4 {
    color: #0f1745;
    font-weight: 500;
    margin-bottom: 15px;
}

.p-insulation .insulation-data .insulation-data-description div h4 span {
    line-height: 1;
}

.p-insulation .insulation-data .insulation-data-description div h4 .txt {
    font-size: 31px;
    letter-spacing: 3px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    justify-content: center;
}

.p-insulation .insulation-data .insulation-data-description div h4 span.num {
    font-size: 140%;
    margin-left: 25px;
}

.p-insulation .insulation-data .insulation-data-description div h4 span.smaller-txt {
    font-size: 63%;
    line-height: 1.2;
}

.p-insulation .insulation-data .insulation-data-description div p {
    display: flex;
}

.p-insulation .insulation-data .insulation-data-description div p span {
    font-size: 0.9em;
}

.p-insulation .insulation-data .insulation-data-description div p span.ttl {
    word-break: auto-phrase;
    font-size: 1.3em;
}

.p-insulation .insulation-data .ua-table {
    margin: 67px auto;
}

.p-insulation .insulation-data .ua-table__title {
    margin-bottom: 12px;
    text-align: center;
    font-size: 1.3em;
    font-weight: 500;
}

.p-insulation .insulation-data .ua-table__wrap {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.p-insulation .insulation-data .ua-table__side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

.p-insulation .insulation-data .ua-table__level {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px 0;
    padding-bottom: 4px;
}

.p-insulation .insulation-data .ua-table__vertical {
    padding: 12px 0;
    font-size: 1.2em;
}

.p-insulation .insulation-data .ua-table__scroll {
    overflow-x: auto;
    width: 100%;
}

.p-insulation .insulation-data .ua-table__table {
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 0.9em;
    letter-spacing: 1.5px;
    width: 100%;
}

.p-insulation .insulation-data .ua-table__table th,
.p-insulation .insulation-data .ua-table__table td {
    border: 1px solid #d5d5d5;
    padding: 11px 0;
    text-align: center;
    vertical-align: middle;
}

.p-insulation .insulation-data .ua-table__table td {
    width: 8.92%;
}

.p-insulation .insulation-data .ua-table__table thead tr:first-child th {
    background: #000;
    color: #fff;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 0;
    word-break: keep-all;
}

.p-insulation .insulation-data .ua-table__table thead tr:first-child th:first-child {
    width: 27%;
}

.p-insulation .insulation-data .ua-table__table tbody tr:first-child th:first-child {
    width: 27%;
}

.p-insulation .insulation-data .ua-table__table thead tr:nth-child(2) th,
.p-insulation .insulation-data .ua-table__table thead tr:nth-child(2) td {
    padding: 7px 0;
}

.p-insulation .insulation-data .ua-table__table thead tr th span:last-child {
    display: inline-block;
    align-items: center;
    justify-content: center;
    width: 1.4em;
    height: 1.4em;
    margin-left: 0.2em;
    border-radius: 50%;
    font-size: 0.75em;
    vertical-align: middle;
    background: #fff;
    color: #000;
    vertical-align: baseline;
    line-height: 1.3;
}

.p-insulation .insulation-data .ua-table__note {
    margin-top: 12px;
    font-size: 1.3em;
    line-height: 1.7;
    letter-spacing: 1px;
    margin-left: 2vw;
}

.p-insulation .insulation-data .ua-table__note p {
}

.p-insulation .insulation-data .ua-table__note p span {
}

.p-insulation .insulation-data .insulation-data-02 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 155px;
}

.p-insulation .insulation-data .insulation-data-02 p {
    line-height: 2.2;
    margin-top: 15px;
}

.p-insulation .insulation-advantage {
    background-color: #f8f6f2;
    padding: 135px 0 42px;
    margin-bottom: 177px;
}

.p-insulation .insulation-advantage h2 {
    text-align: center;
    margin-bottom: 86px;
    font-size: 1.5em;
    letter-spacing: 0;
    color: #0f1745;
    line-height: 1.7;
}

.p-insulation .insulation-advantage .insulation-advantage-wrap {
    display: flex;
    gap: 27px;
    flex-wrap: wrap;
    justify-content: center;
}

.p-insulation .insulation-advantage .insulation-advantage-wrap .insulation-advantage-box {
    width: 31%;
    margin-bottom: 48px;
}

.p-insulation .insulation-advantage .insulation-advantage-wrap .insulation-advantage-box .img-wrap {}

.p-insulation .insulation-advantage .insulation-advantage-wrap .insulation-advantage-box h3 {
    margin: 20px 0 12px;
    letter-spacing: 2px;
    line-height: 1.7;
    min-height: 63px;
}

.p-insulation .insulation-advantage .insulation-advantage-wrap .insulation-advantage-box p {
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.p-thinks-sub .thinks-links .other-link {
    display: flex;
    margin: 0 auto 156px;
    gap: 20px;
    justify-content: center;
}

.p-thinks-sub .thinks-links .other-link a {
    border: 1px solid;
    border-radius: 10px;
    padding: 13px 0 15px;
    text-align: center;
    max-width: 235px;
    width: 100%;
    font-size: 21px;
    letter-spacing: 2px;
    transition: 0.3s;
}
.p-thinks-sub .thinks-links .other-link a:hover {
    background: #000;
    color: #fff;
}

.p-thinks-sub .thinks-links h3 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.5em;
    letter-spacing: 1.5px;
    font-weight: 400;
}

.p-thinks-sub .thinks-links .links-group {
    display: flex;
    gap: 20px;
    margin-bottom: 297px;
    justify-content: center;
}

.p-thinks-sub .thinks-links .links-group .links-group-wrap {
    border: 1px solid;
    border-radius: 10px;
    width: 24%;
    overflow: hidden;
}

.p-thinks-sub .thinks-links .links-group .links-group-wrap a {
    padding: 10px 10px 12px;
    display: block;
    text-align: center;
    height: 100%;
    transition: 0.3s;
}
.p-thinks-sub .thinks-links .links-group .links-group-wrap a:hover{
    background: #000;
    color: #fff;
}

.p-thinks-sub .thinks-links .links-group .links-group-wrap a p {
    margin-top: 15px;
    font-size: 1.1em;
    letter-spacing: 2px;
    line-height: 1.7;
}

.p-thinks-sub .click-box {
    width: 50%;
}

.p-thinks-sub .click-box a {
    display: inline-block;
}

.p-thinks-sub .click-box img {
    max-width: 100%;
    height: auto;
    display: block;
    cursor: zoom-in;
    transition: opacity .3s;
}

.p-thinks-sub .click-box img:hover {
    opacity: .8;
}

.p-thinks-sub .light-box .lb-prev,
.p-thinks-sub .light-box .lb-next {
    display: none !important;
}


/* ================= 高気密について ================= */

.p-airtightness .airtightness-advantage {
    margin-top: 200px;
    margin-bottom: 126px;
}

.p-airtightness .airtightness-advantage h2 {
    text-align: center;
    font-size: 1.9em;
    letter-spacing: 4px;
    color: #0f1745;
    margin-bottom: 114px;
}

.p-airtightness .airtightness-advantage .airtightness-advantage-01 {
    display: flex;
    gap: 15%;
    padding-bottom: 113px;
    border-bottom: 1px #000 solid;
}

.p-airtightness .airtightness-advantage .airtightness-advantage-01 .img-wrap {
    width: 36%;
}

.p-airtightness .airtightness-advantage .airtightness-advantage-01 .txt-wrap {}

.p-airtightness .airtightness-advantage .airtightness-advantage-01 .txt-wrap h3 {
    color: #0f1745;
    font-size: 1.5em;
    letter-spacing: 1px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.p-airtightness .airtightness-advantage .airtightness-advantage-01 .txt-wrap p {
    line-height: 2;
    margin-bottom: 40px;
}

.p-airtightness .airtightness-advantage .airtightness-advantage-01 .txt-wrap div {
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 2em;
    gap: 2%;
    font-weight: 600;
}

.p-airtightness .airtightness-advantage .airtightness-advantage-01 .txt-wrap div span {
    font-size: 0.65em;
    text-align: center;
    display: inline-block;
}

.p-airtightness .airtightness-advantage .airtightness-advantage-02 {
    display: flex;
    padding-top: 130px;
    justify-content: space-between;
}

.p-airtightness .airtightness-advantage .airtightness-advantage-02 .txt-wrap {}

.p-airtightness .airtightness-advantage .airtightness-advantage-02 .txt-wrap h3 {
    color: #0f1745;
    font-size: 1.5em;
    margin-top: -22px;
    line-height: 1.7;
    margin-bottom: 19px;

}

.p-airtightness .airtightness-advantage .airtightness-advantage-02 .txt-wrap p {
    line-height: 2.1;
}

.p-airtightness .airtightness-advantage .airtightness-advantage-02 .img-wrap {
    width: 33%;
}

.p-airtightness .airtightness-data {
    background-color: #f8f6f2;
    padding-top: 120px;
    padding-bottom: 130px;
    margin-bottom: 145px;
}


.p-airtightness .airtightness-data h5 {
    color: #0f1745;
    text-align: center;
    font-size: 1.4em;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 11px;
}

.p-airtightness .airtightness-data-ttl {
    color: #0f1745;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 110px;
}

.p-airtightness .airtightness-data-ttl h4 {
    font-weight: 500;
}

.p-airtightness .airtightness-data-ttl h4 .txt {
    font-size: 31px;
    letter-spacing: 3px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    justify-content: center;
}

.p-airtightness .airtightness-data-ttl h4 span {
    line-height: 1;
}

.p-airtightness .airtightness-data-ttl h4 span.num {
    font-size: 140%;
    margin-left: 14px;
}

.p-airtightness .airtightness-data-ttl h4 span.smaller-txt {
    font-size: 63%;
    line-height: 1.2;
}

.p-airtightness .airtightness-data-wrap {
    display: flex;
    gap: 8%;
}

.p-airtightness .airtightness-data-wrap .img-wrap {
    width: 54%;
}

.p-airtightness .airtightness-data-wrap .txt-wrap {
    line-height: 2.2;
    width: 76%;
    margin-top: -10px;
}

.p-airtightness .airtightness-data .airtightness-note {
    margin-top: 82px;
    font-size: 1.3em;
    text-align: center;
    line-height: 1.9;
}

/* ================= 換気について ================= */

.p-ventilation .ventilation-advantage-01 {
    margin-top: 200px;
    margin-bottom: 126px;
}

.p-ventilation .ventilation-advantage-01 h2 {
    text-align: center;
    font-size: 1.9em;
    letter-spacing: 4px;
    color: #0f1745;
    margin-bottom: 104px;
}

.p-ventilation .ventilation-advantage-01 .ventilation-advantage-01-01 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 124px;
}

.p-ventilation .ventilation-advantage-01 .ventilation-advantage-01-01 h3 {
    margin-bottom: 30px;
    font-size: 1.4em;
    letter-spacing: 2px;
    color: #0f1745;
    margin-top: 35px;
}

.p-ventilation .ventilation-advantage-01 .ventilation-advantage-01-01 p {
    line-height: 2.1;
}

.p-ventilation .ventilation-advantage-01 .ventilation-advantage-01-01 .img-wrap {
    width: 38%;
}


.p-ventilation .ventilation-advantage-01 .ventilation-advantage-01-02-wrap {
    display: flex;
    border-top: 1px solid;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    align-items: center;
    justify-content: space-evenly;
    min-height: 145px;
}

.p-ventilation .ventilation-advantage-01 .ventilation-advantage-01-02-wrap:last-child {
    border-bottom: 1px solid;
}

.p-ventilation .ventilation-advantage-01 .ventilation-advantage-01-02-wrap .center-arrow {
    width: 40px;
    height: stretch;
    background: url("../img/thinks/arrow.svg") center / 100% 100% no-repeat;
}

.p-ventilation .ventilation-advantage-01 .ventilation-advantage-01-02-wrap .left,
.p-ventilation .ventilation-advantage-01 .ventilation-advantage-01-02-wrap .right {
    width: calc(50% - 40px);
    padding: 0 0 0 15px;
    line-height: 2;
    font-size: 1.1em;
}

.p-ventilation .ventilation-advantage-01 .ventilation-advantage-01-02-wrap .left {
    width: calc(50% - 75px);

}


.p-ventilation .ventilation-advantage-02 {
    background-color: #f8f6f2;
    padding-top: 142px;
    padding-bottom: 140px;
    margin-bottom: 118px;
}

.p-ventilation .ventilation-advantage-02 h2 {
    text-align: center;
    margin-bottom: 122px;
    font-size: 1.32em;
    letter-spacing: 3px;
    color: #0f1745;
    line-height: 2;
}


.p-ventilation .ventilation-advantage-02 .ventilation-advantage-02-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p-ventilation .ventilation-advantage-02 .ventilation-advantage-02-wrap.ventilation-advantage-02-wrap-01 {
    padding-bottom: 79px;
    border-bottom: 1px solid;
}

.p-ventilation .ventilation-advantage-02 .ventilation-advantage-02-wrap.ventilation-advantage-02-wrap-02 {
    padding-top: 97px;
}


.p-ventilation .ventilation-advantage-02 .ventilation-advantage-02-wrap .img-wrap {
    width: 50%;
}

.p-ventilation .ventilation-advantage-02 .ventilation-advantage-02-wrap .txt-wrap {
    margin-top: -52px;
}

.p-ventilation .ventilation-advantage-02 .ventilation-advantage-02-wrap.ventilation-advantage-02-wrap-02 .txt-wrap {
    width: 40%;
    font-size: 1.26em;
    letter-spacing: 3px;
    margin-top: 30px;
}

.p-ventilation .ventilation-advantage-02 .ventilation-advantage-02-wrap .txt-wrap p {
    line-height: 2.2;
}

.p-ventilation .ventilation-advantage-02 .ventilation-advantage-02-wrap.ventilation-advantage-02-wrap-02 .txt-wrap p {
    line-height: 1.8;
}


.p-ventilation .ventilation-advantage-02 .ventilation-advantage-02-wrap .formula {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 21px;
    line-height: 1;
    margin-top: 34px;
}

.p-ventilation .ventilation-advantage-02 .ventilation-advantage-02-wrap .fraction {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.p-ventilation .ventilation-advantage-02 .ventilation-advantage-02-wrap .fraction__top {
    padding: 0 6px 4px;
    border-bottom: 1px solid #000;
    white-space: nowrap;
}

.p-ventilation .ventilation-advantage-02 .ventilation-advantage-02-wrap .fraction__bottom {
    padding-top: 4px;
}

/* ================= 自然素材 ================= */

.p-nature .nature {
    margin-top: 200px;
    margin-bottom: 126px;

}

.p-nature .sub-fv .txt span {
    display: block;
    font-weight: 500;
    font-size: 30px;
    letter-spacing: 3px;
}

.p-nature .nature h2 {
    text-align: center;
    font-size: 1.9em;
    letter-spacing: 4px;
    color: #0f1745;
    margin-bottom: 129px;
}

.p-nature .nature-wrap {
    display: flex;
    gap: 9%;
    padding-bottom: 88px;
    border-bottom: 1px solid;
    margin-bottom: 95px;
}

.p-nature .nature-wrap.nature-03 {
    gap: 12%;
    padding-bottom: 109px;
    margin-bottom: 104px;
}

.p-nature .nature-wrap.nature-04 {
    gap: 7%;
    border-bottom: none;
}

.p-nature .nature-wrap .img-wrap {
    flex: 0 0 34%;
}

.p-nature .nature-wrap .txt-wrap {
    flex: 0 0 56%;
}

.p-nature .nature-wrap.nature-01 .img-wrap {
    flex: 0 0 38%;
}

.p-nature .nature-wrap.nature-01 .txt-wrap {
    flex: 0 0 53%;
}

.p-nature .nature-wrap.nature-04 .txt-wrap {
    flex: 0 0 59%;
}


.p-nature .nature-wrap .txt-wrap h3 {
    margin-bottom: 24px;
    font-size: 1.4em;
    letter-spacing: 2px;
    color: #0f1745;
}

.p-nature .nature-wrap .txt-wrap p {
    line-height: 2.17;
}


/* ================= 自然との調和 ================= */

.p-harmony .harmony {
    margin-top: 200px;
    margin-bottom: 26px;

}

.p-harmony .harmony h2 {
    text-align: center;
    font-size: 1.9em;
    letter-spacing: 4px;
    color: #0f1745;
    margin-bottom: 152px;
}

.p-harmony .harmony-wrap {
    display: flex;
    gap: 12%;
    padding-bottom: 110px;
    border-bottom: 1px solid;
    margin-bottom: 106px;
}

.p-harmony .harmony-wrap:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.p-harmony .harmony-wrap .img-wrap {
    flex: 0 0 34%;
}

.p-harmony .harmony-wrap .txt-wrap {
    flex: 0 0 54%;
}

.p-harmony .harmony-wrap .txt-wrap h3 {
    margin-bottom: 24px;
    font-size: 1.4em;
    letter-spacing: 2px;
    color: #0f1745;
}

.p-harmony .harmony-wrap .txt-wrap p {
    line-height: 2.17;

}

/* ================= plusalpha ================= */

.p-plusalpha .sub-fv .txt {
    text-orientation: upright;
}

.p-plusalpha .plusalpha-01 {
    margin-top: 200px;
}

.p-plusalpha .plusalpha-01 h2 {
    text-align: center;
    font-size: 1.9em;
    letter-spacing: 4px;
    color: #0f1745;
    margin-bottom: 90px;
}

.p-plusalpha .plusalpha-01 .plusalpha-01-wrap {
    border-bottom: 1px solid #000;
    display: flex;
    justify-content: space-between;
    padding-bottom: 94px;
}

.p-plusalpha .plusalpha-01 .plusalpha-01-wrap .img-wrap {
    flex: 0 0 44.4%;
}

.p-plusalpha .plusalpha-01 .plusalpha-01-wrap .txt-wrap {
    flex: 0 0 48%;
    margin-top: 25px;
}

.p-plusalpha .plusalpha-01 .plusalpha-01-wrap .txt-wrap p {
    line-height: 2.17;
}

.p-plusalpha .plusalpha-01 .plusalpha-01-wrap .txt-wrap table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 41px;
}

.p-plusalpha .plusalpha-01 .plusalpha-01-wrap .txt-wrap table tr th,
.p-plusalpha .plusalpha-01 .plusalpha-01-wrap .txt-wrap table tr td {
    text-align: center;
    border: 1px solid #000;
    padding: 1px 0;
    font-size: 0.95em;
    font-weight: 500;
    letter-spacing: 1px;

}

.p-plusalpha .plusalpha-01 .plusalpha-01-wrap .txt-wrap table tr td {
    width: 20%;
}

.p-plusalpha .plusalpha-02 {
    padding-top: 86px;
    margin-bottom: 126px;
}

.p-plusalpha .plusalpha-02 h3 {
    margin-bottom: 66px;
    font-size: 21px;
    font-weight: 500;
    letter-spacing: 0px;
    color: #0f1745;
    text-align: center;
    line-height: 1.7;
}

.p-plusalpha .plusalpha-02 .plusalpha-02-wrap-01 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 42px;

}

.p-plusalpha .plusalpha-02 .plusalpha-02-wrap-01 .img-wrap {
    flex: 0 0 44.5%;

}

.p-plusalpha .plusalpha-02 .plusalpha-02-wrap-01 .txt-wrap {
    line-height: 2.17;
    flex: 0 0 48%;
    margin-top: 14px;
}

.p-plusalpha .plusalpha-02 .plusalpha-02-wrap-01 .txt-wrap .click-box {
    width: 100%;
    margin-top: 35px;
}

.p-plusalpha .plusalpha-02 .plusalpha-02-wrap-02 {
    border: 1px solid;
    padding: 16px 0;
}

.p-plusalpha .plusalpha-02 .plusalpha-02-wrap-02 p {
    text-align: center;
    line-height: 2.3;
    font-size: 19px;
}

.p-plusalpha .plusalpha-02 .plusalpha-02-wrap-02 p span {
    display: block;
    font-size: 26px;
    line-height: 1.6;

}

.p-plusalpha .plusalpha-02 .plusalpha-02-wrap-03 {
    color: #0f1745;
    text-align: center;
}

.p-plusalpha .plusalpha-02 .plusalpha-02-wrap-03 .data-01 {
    font-size: 1.38em;
    margin-top: 35px;
    line-height: 1.8;
    letter-spacing: 1px;
}

.p-plusalpha .plusalpha-02 .plusalpha-02-wrap-03 .data-02 {
    margin-top: 30px;
    line-height: 2;
    letter-spacing: 1px;
}

.p-plusalpha .plusalpha-03 {
    background-color: #f8f6f2;
    padding-top: 93px;
    padding-bottom: 70px;
    margin-bottom: 168px;
}

.p-plusalpha .plusalpha-03 .plusalpha-03-wrap {
    display: flex;
    justify-content: space-between;
}

.p-plusalpha .plusalpha-03 .plusalpha-03-wrap .txt-wrap {
    flex: 0 0 44%;
    line-height: 2.2;
}

.p-plusalpha .plusalpha-03 .plusalpha-03-wrap .img-wrap {
    flex: 0 0 41%;
}

/* ================= 基礎について ================= */

.p-foundation .foundation-01 {
    margin-top: 200px;
    margin-bottom: 110px;
}

.p-foundation .foundation-01 h2 {
    text-align: center;
    font-size: 1.9em;
    letter-spacing: 4px;
    color: #0f1745;
    margin-bottom: 112px;
}

.p-foundation .foundation-01 h2 span {
    font-size: 0.73em;
    margin-top: 4px;
    display: block;
}

.p-foundation .foundation-01 h4 {
    text-align: center;
    font-size: 1.35em;
    letter-spacing: 3px;
    color: #0f1745;
    margin-bottom: 23px;
}

.p-foundation .foundation-01 h4+p {
    text-align: center;
    line-height: 2;
    font-size: 1em;
}

.p-foundation .foundation-01 .foundation-01-wrap {
    display: flex;
    justify-content: space-between;
    margin-top: 90px;
}

.p-foundation .foundation-01 .foundation-01-wrap div p {
    text-align: center;
    font-size: 1.1em;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.p-foundation .foundation-01 .foundation-01-wrap .left {
    flex: 0 0 42%;
}

.p-foundation .foundation-01 .foundation-01-wrap .border {
    width: 1px;
    height: stretch;
    background-color: #8C8C8C;
}

.p-foundation .foundation-01 .foundation-01-wrap .right {
    flex: 0 0 38%;
}

.p-foundation .foundation-02 {
    padding: 50px 0 56px;
    margin-bottom: 130px;
    background-color: #f8f6f2;
}

.p-foundation .foundation-02 .foundation-02-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p-foundation .foundation-02 .foundation-02-wrap .img-wrap {
    flex: 0 0 44.5%;
}

.p-foundation .foundation-02 .foundation-02-wrap .txt-wrap {
    flex: 0 0 42%;
    margin-top: -10px;
}

.p-foundation .foundation-02 .foundation-02-wrap .txt-wrap h3 {
    margin-bottom: 26px;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #0f1745;
    text-align: center;
}

.p-foundation .foundation-02 .foundation-02-wrap .txt-wrap p {
    line-height: 2.2;
}


.p-foundation .foundation-03 {
    margin-bottom: 215px;
}

.p-foundation .foundation-03 .foundation-03-wrap {
    display: flex;
    justify-content: space-between;
}

.p-foundation .foundation-03 .foundation-03-wrap .img-wrap {
    flex: 0 0 44%;
}

.p-foundation .foundation-03 .foundation-03-wrap .txt-wrap {
    flex: 0 0 47%;
}

.p-foundation .foundation-03 .foundation-03-wrap .txt-wrap h3 {
    margin-bottom: 24px;
    font-size: 21px;
    font-weight: 500;
    letter-spacing: 0px;
    color: #0f1745;
    text-align: left;
    line-height: 2;
}

.p-foundation .foundation-03 .foundation-03-wrap .txt-wrap p {
    line-height: 2.2;
}

/* ================= 通気について ================= */

.p-airflow .airflow-01 {
    margin-top: 200px;
    margin-bottom: 110px;
}

.p-airflow .airflow-01 h2 {
    text-align: center;
    font-size: 1.9em;
    letter-spacing: 4px;
    color: #0f1745;
    margin-bottom: 150px;
}

.p-airflow .airflow-01 .airflow-01-wrap {
    display: flex;
    justify-content: space-between;

}

.p-airflow .airflow-01 .airflow-01-wrap .txt-wrap {
    flex: 0 0 48%;
    margin-top: -8px;
}

.p-airflow .airflow-01 .airflow-01-wrap .txt-wrap h3 {
    margin-bottom: 16px;
    font-size: 21px;
    font-weight: 500;
    letter-spacing: 0px;
    color: #0f1745;
    text-align: left;
    line-height: 2;
}

.p-airflow .airflow-01 .airflow-01-wrap .txt-wrap p {
    line-height: 2.2;

}

.p-airflow .airflow-01 .airflow-01-wrap .img-wrap {
    flex: 0 0 44%;
}

.p-airflow .airflow-02 {
    padding: 90px 0;
    background-color: #f8f6f2;
    margin-bottom: 116px;
}

.p-airflow .airflow-02 p {
    line-height: 2.2;
    text-align: center;
}

.p-airflow .airflow-03 {
    margin-bottom: 200px;
}

.p-airflow .airflow-03 .airflow-03-01-wrap {
    display: flex;
    margin-bottom: 60px;
    justify-content: space-between;

}

.p-airflow .airflow-03 .airflow-03-01-wrap .img-wrap {
    flex: 0 0 53%;
}

.p-airflow .airflow-03 .airflow-03-01-wrap .txt-wrap {
    flex: 0 0 41%;
    line-height: 2.2;
    margin-top: -8px;
}


.p-airflow .airflow-03 .airflow-03-02-wrap {
    display: flex;
    justify-content: space-between;
}

.p-airflow .airflow-03 .airflow-03-02-wrap .img-wrap {
    flex: 0 0 36%;

}

.p-airflow .airflow-03 .airflow-03-02-wrap .txt-wrap {
    flex: 0 0 60%;

}

.p-airflow .airflow-03 .airflow-03-02-wrap .txt-wrap p {
    line-height: 2.1;
}

/* ================= 耐震について ================= */

.p-seismic .seismic-01 {
    margin-top: 200px;
    margin-bottom: 142px;
}

.p-seismic .seismic-01 h2 {
    text-align: center;
    font-size: 1.9em;
    letter-spacing: 4px;
    color: #0f1745;
    margin-bottom: 100px;
}

.p-seismic .seismic-01 h2 span {
    font-size: 0.73em;
    margin-top: 4px;
    display: block;
    font-weight: 400;
}

.p-seismic .seismic-01 h4 {
    text-align: center;
    font-size: 1.4em;
    letter-spacing: 1px;
    margin-bottom: 43px;
    line-height: 2;
}

.p-seismic .seismic-01 .seismic-01-wrap {
    display: flex;
    justify-content: space-between;
}

.p-seismic .seismic-01 .seismic-01-wrap .left {
    background-color: rgb(229, 229, 229);
    line-height: 2.2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 45.5%;
    min-height: 258px;
    padding: 0 40px;
}

.p-seismic .seismic-01 .seismic-01-wrap .right {
    border: 1px solid;
    line-height: 2.2;
    position: relative;
    flex: 0 0 45.5%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 258px;
}

.p-seismic .seismic-01 .seismic-01-wrap .right::before {
    content: "";
    position: relative;
    width: 30px;
    height: 20px;
    left: -58px;
    background: url(../img/thinks/seismic-arr.svg) center center / cover no-repeat;
}

.p-seismic .seismic-01 .seismic-01-wrap .right p {
    margin-left: -25px;
}

.p-seismic .seismic-02 {
    margin-bottom: 55px;
}

.p-seismic .seismic-02 h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5em;
    letter-spacing: 1px;
    font-weight: 500;
}

.p-seismic .seismic-02 h3 span {
    display: block;
    margin-bottom: 30px;
    font-size: 0.67em;
    line-height: 2;

}

.p-seismic .seismic-02 .img-wrap {
    width: 100%;
    margin-bottom: 15px;
}

.p-seismic .seismic-02 p {
    line-height: 1.7;
    font-size: 0.9em;
}

.p-seismic .seismic-03 {
    margin-bottom: 144px;
}

.p-seismic .seismic-03 h3 {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 40px;
    font-weight: 400;
}

.p-seismic .seismic-03 .seismic-03-wrap {
    display: flex;
    justify-content: flex-start;
    gap: 3%;
}

.p-seismic .seismic-03 .seismic-03-wrap .img-wrap {
    flex: 0 0 20%;
}


.p-seismic .seismic-03 .seismic-03-wrap .txt-wrap {
    flex: 0 0 27%;

}

.p-seismic .seismic-03 .seismic-03-wrap .txt-wrap h4 {
    font-size: 1.2em;
    margin-bottom: 9px;
    letter-spacing: 4px;
}

.p-seismic .seismic-03 .seismic-03-wrap .txt-wrap h4 span {
    font-size: 0.8em;
    margin-top: 9px;
    display: block;
    letter-spacing: 1px;
}

.p-seismic .seismic-03 .seismic-03-wrap .txt-wrap p {
    line-height: 2.2;
}

.p-seismic .seismic-04 {
    background-color: #f8f6f2;
    padding: 69px 0 72px;
    margin-bottom: 150px;
}

.p-seismic .seismic-04 h3 {
    line-height: 2;
    text-align: center;
    color: #0f1745;
    letter-spacing: 1.8px;
    margin-bottom: 30px;
    font-size: 1.4em;
}

.p-seismic .seismic-04 p {
    line-height: 2.2;
    font-size: 1.15em;
    max-width: 754px;
    margin: auto;
    width: 90%;
}

.p-seismic .seismic-05 {
    margin-bottom: 160px;
}

.p-seismic .seismic-05 .seismic-05-wrap {
    display: flex;
    justify-content: space-between;
}

.p-seismic .seismic-05 .seismic-05-wrap .img-wrap {
    flex: 0 0 38%;
}

.p-seismic .seismic-05 .seismic-05-wrap .txt-wrap {
    flex: 0 0 55%;
    line-height: 2.2;
    margin-top: -10px;
}

/* ================= 耐久について ================= */

.p-durability .durability-01 {
    margin-top: 200px;
    margin-bottom: 112px;
}

.p-durability .durability-01 h2 {

    text-align: center;
    font-size: 1.9em;
    letter-spacing: 4px;
    color: #0f1745;
    margin-bottom: 140px;

}

.p-durability .durability-01 .durability-01-wrap {
    display: flex;
    justify-content: space-between;
}

.p-durability .durability-01 .durability-01-wrap .img-wrap {
    flex: 0 0 38%;
}

.p-durability .durability-01 .durability-01-wrap .txt-wrap {
    flex: 0 0 55%;
    margin-top: -14px;
}

.p-durability .durability-01 .durability-01-wrap .txt-wrap h3 {
    line-height: 2.2;
    color: #0f1745;
    font-size: 1.3em;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.p-durability .durability-01 .durability-01-wrap .txt-wrap p {
    line-height: 2.2;
    letter-spacing: -0.03em;
}

.p-durability .durability-02 {
    background-color: #f8f6f2;
    padding: 105px 0 100px;
    margin-bottom: 156px;

}

.p-durability .durability-02 h2 {
    text-align: center;
    font-size: 1.4em;
    letter-spacing: 1px;
    color: #0f1745;
    line-height: 1.7;
    margin-bottom: 40px;
}

.p-durability .durability-02 .img-wrap {
    max-width: 630px;
    width: 100%;
    margin: auto;
    margin-top: 54px;
}

/* ================= 施工事例 ================= */


.p-works .new-build {
    margin-top: 200px;
    margin-bottom: 163px;
}

.p-works .renovation {
    margin-bottom: 270px;
}


.p-works .new-build h2,
.p-works .renovation h2 {
    color: #0f1745;
    font-size: 1.4em;
    border-bottom: 1px solid #000;
    padding-bottom: 13px;
    margin-bottom: 53px;
    font-weight: 400;
}

.p-works .renovation h2 {
    letter-spacing: 5px;
}

.p-works .new-build .new-build-wrap,
.p-works .renovation .renovation-wrap {
    display: flex;
    justify-content: flex-start;
    gap: 5%;
}


.p-works .new-build .new-build-wrap a,
.p-works .renovation .renovation-wrap a {
    flex: 0 0 30%;
}

.p-works .new-build .new-build-wrap a .img-wrap,
.p-works .renovation .renovation-wrap a .img-wrap {
    margin-bottom: 25px;
}


.p-works .new-build .new-build-wrap a .txt-wrap .tag,
.p-works .renovation .renovation-wrap a .txt-wrap .tag {
    border: 1px solid #000;
    padding: 0px 12px;
    font-size: 0.8em;
    display: inline-block;
}

.p-works .new-build .new-build-wrap a .txt-wrap .add,
.p-works .renovation .renovation-wrap a .txt-wrap .add {
    font-size: 1.4em;
    letter-spacing: 2px;
    font-weight: 500;
}

.p-works .new-build .new-build-wrap a .txt-wrap .add .date,
.p-works .renovation .renovation-wrap a .txt-wrap .add .date {
    font-size: 0.6em;
    margin-left: 12px;
    letter-spacing: 1px;
}

/* ================= 施工事例詳細 ================= */

.p-works-sub .sub-fv .txt span {

    display: block;
    font-weight: 500;
    font-size: 30px;
    letter-spacing: 3px;
}

.p-works-sub .works-sub-data {
    margin-top: 140px;
    padding-bottom: 124px;
}

.p-works-sub .works-sub-data h2 {
    text-align: center;
    font-size: 1.2em;
    letter-spacing: 3.5px;
    color: #0f1745;
    margin-bottom: 148px;
    line-height: 2;
    word-break: break-word;
    overflow-wrap: break-word;
}



.p-works-sub .works-sub-data .works-sub-data-wrap {
    display: flex;
    justify-content: flex-start;
    gap: 6%;
}

.p-works-sub .works-sub-data .works-sub-data-wrap .img-wrap {
    flex: 0 0 27.5%;
}

.p-works-sub .works-sub-data .works-sub-data-wrap .txt-wrap {
    flex: 0 0 67%;
}

.p-works-sub .works-sub-data .works-sub-data-wrap .txt-wrap h4 {
    font-size: 1.3em;
    margin-bottom: 1.5em;
    font-weight: 500;
    letter-spacing: 0.05em;
    display: flex;
    align-items: flex-start;
}

.p-works-sub .works-sub-data .works-sub-data-wrap .txt-wrap h4 .label {
    font-size: 0.75em;
    margin-right: 17px;
    border: 1px solid #000;
    padding: 4px 19px;
    letter-spacing: 2px;
    white-space: nowrap;
}

.p-works-sub .spec {
    display: flex;
    justify-content: space-between;
    font-size: 0.85em;
    letter-spacing: 2px;
}

.p-works-sub .spec-list:first-child {
    flex: 0 0 41%;
    display: grid;
    grid-template-columns: 5em auto;
    column-gap: 1em;
    margin: 0;
    align-content: start;
    align-items: baseline;
    justify-items: start;
    justify-content: start;
    line-height: 2.2;
}

.p-works-sub .spec-list {
    flex: 1;
    display: grid;
    grid-template-columns: 5em auto;
    column-gap: 1em;
    margin: 0;
    align-content: start;
    align-items: baseline;
    justify-items: start;
    justify-content: start;
    line-height: 2.2;
}

.p-works-sub .spec-list dt,
.p-works-sub .spec-list dd {
    margin: 0;
}


/* .p-works-sub.p-renovation-01 .spec-list dd:last-child,
.p-works-sub.p-renovation-02 .spec-list dd:last-child {
    letter-spacing: 1px;
} */

.p-works-sub .spec-list dt {
    white-space: nowrap;
}

.p-works-sub .spec-list dt:not(:empty)::after {
    content: "\FF1A";
}

.p-works-sub .works-block {
    border-top: 1px solid #000;
    padding-top: 70px;
    padding-bottom: 75px;
}

.p-works-sub .works-block h3 {
    font-size: 1.4em;
    margin-bottom: 20px;
    letter-spacing: 3px;
    font-weight: 500;
}

.p-works-sub .works-block h3 span {
    margin-left: 40px;
    font-size: 0.8em;
    letter-spacing: 1px;
}

.p-works-sub .works-block .main-view {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
}

.p-works-sub .works-block .main-view .img-wrap {
    flex: 0 0 48%;
}

.p-works-sub .works-block .main-view .txt-wrap {
    flex: 0 0 45%;
    margin-top: 44px;
}

.p-works-sub .works-block .main-view .txt-wrap p {
    line-height: 2.2;
    word-break: break-word;
}

.p-works-sub .works-block .photo-list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;

}

.p-works-sub .works-block .photo-list a {
    flex: 0 0 22%;
}

.p-renovation-01.p-works-sub .works-block .photo-list a {
    flex: 0 0 30%;
}

.p-works-sub .works-block .photo-list img {
    border-radius: 14px;
}

.p-works-sub .works-block .photo-gallery .main-view .img-wrap img {
    border-radius: 14px;
}

.p-renovation-01.p-works-sub .works-block .photo-list.photo-list2 a {
    flex: 0 0 48%;
}

.p-renovation-01.p-works-sub .works-block .photo-list.photo-list1 a {
    flex: 0 0 100%;
}

.p-renovation-01.p-works-sub .works-block .txt-wrap{
    margin-top: 3em;
    margin-bottom: 2em;
}


.p-works-sub .btn-back {
    margin: 160px auto 194px;
}

.p-works-sub .btn-back a.to-list {
    text-align: center;
    display: block;
    margin-bottom: 10px;
    font-size: 1.3em;
    letter-spacing: 5px;
}

.p-works-sub .btn-back .vm-btn {
    justify-content: center;

}

/* lightgallery */
body .lg-outer .lg-thumb-item {
    border: none !important;
}
body .lg-backdrop {
    background-color: rgb(113, 112, 113);
}
body .lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html {
    background-color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    margin: 0px 0 0;
    text-align: left;
    color: #000;
}
body .lg-next,
body .lg-prev {
    background-color: rgb(138 138 138 / 57%);
    color: #fff;
}
body .lg-next {
    right: 0;
}
body .lg-prev {
    left: 0;
}
body .lg-container .lg-content {
    top: 0 !important;
    bottom: 11vh !important;
}
body .lg-toolbar {
    z-index: +10000;
    background: rgba(113, 112, 113, 0.7);
}
body .lg-toolbar .lg-icon {
    color: #fff;
}


/* ================= お問い合わせ以外 ================= */
/* リキャプチャ非表示設定 */
body:has(main:not(.p-contact)) .grecaptcha-badge {
    visibility: hidden;
}

/* ================= お問い合わせ ================= */
:has(.p-contact) .contact-banner-pc,
:has(.p-contact) .contact-banner-sp {
    display: none;
}
.p-contact h2 {
    text-align: center;
    font-size: 1.45em;
    font-weight: 600;
    letter-spacing: 2px;
    color: #0f1745;
    margin-bottom: 22px;
    margin-top: 155px;
    line-height: 2.1;
}

.p-contact .snow-monkey-form[data-screen="confirm"] h2 {
    display: none;
}

.p-contact h2+p {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 85px;
}

.p-contact .snow-monkey-form[data-screen="confirm"] h2+p {
    display: none;
}

.p-contact h2+p span {
    color: #9f3232;
}

.p-contact .form-wrap {
    margin-top: 85px;
    margin-bottom: 207px;
}

.p-contact .form-wrap .snow-monkey-form {
    margin-top: 85px;
}
.p-contact .form-wrap .snow-monkey-form .smf-label{
    font-size: 1.1em;
}

.p-contact .form-wrap .snow-monkey-form input,
.p-contact .form-wrap .snow-monkey-form select,
.p-contact .form-wrap .snow-monkey-form textarea{
    font-family: inherit;
}
.p-contact .form-wrap span.smf-item__label__text span {
    font-size: 1em;
    color: #9f3232;
}

.p-contact .form-wrap .smf-item__label {
    margin-bottom: 6px;
    font-size: 1.1em;
}

.p-contact .form-wrap .smf-form .smf-text-control__control,
.p-contact .form-wrap .smf-form .smf-select-control__control {
    max-width: 485px;
    width: 100%;
    padding: 1.3rem 1rem;
    font-size: 1em;
    border-radius: 0;
}

.p-contact .form-wrap .smf-form .smf-select-control {
    max-width: 485px;
    width: 100%;
}
.p-contact .form-wrap .smf-form .smf-select-control__toggle:before{
    width: 0.95em;
    height: 0.95em;
    border: none;
    transform: rotate(0deg);
    background: url('../img/contact-select-toggle.png') center/contain no-repeat;
    right: 1.5em;
    top: 40%;
}


.p-contact .form-wrap .smf-form .wp-block-snow-monkey-forms-item.smf-item {
    margin-bottom: 35px;
}
.p-contact .form-wrap .smf-form .wp-block-snow-monkey-forms-item.tel .smf-text-control__control,
.p-contact .form-wrap .smf-form .wp-block-snow-monkey-forms-item.email .smf-text-control__control,
.p-contact .form-wrap .smf-form .wp-block-snow-monkey-forms-item.email-check .smf-text-control__control {
    max-width: unset;
}

.p-contact .form-wrap .smf-form .wp-block-snow-monkey-forms-item.smf-item.brochure_request {
    margin: 60px 0 78px;
}
.p-contact .form-wrap .smf-form .wp-block-snow-monkey-forms-item.smf-item.brochure_request .smf-label:first-child{
    margin-right: 70px;
}

.p-contact .form-wrap .smf-form .wp-block-snow-monkey-forms-item.smf-item.message {
    margin-bottom: 60px;
}

.p-contact .form-wrap .smf-form .wp-block-snow-monkey-forms-item.smf-item.heard_about_us {
    margin-bottom: 67px;
}

.p-contact .form-wrap .smf-form .wp-block-snow-monkey-forms-item.smf-item.contact-method {
    margin-bottom: 52px;
}
.p-contact .form-wrap .smf-form .wp-block-snow-monkey-forms-item.smf-item.contact-method .smf-label {
    margin: 20px 0 15px;
    letter-spacing: 2px;
}
.p-contact .form-wrap .smf-form .wp-block-snow-monkey-forms-item.smf-item.contact-method .smf-label + .smf-label{
    margin-top: 15px;
}
.p-contact .form-wrap .smf-form .wp-block-snow-monkey-forms-item.smf-item.preferred_contact_time .smf-item__label {
    font-size: 1em;
}



.p-contact .form-wrap .smf-form .smf-textarea-control__control {
    font-size: 1.2em;
    font-size: 1em;
    padding: 1.3rem 1rem;
}

.p-contact .form-wrap [data-name="privacy_policy"] {
    margin-top: 100px;
    margin-bottom: 47px;
    text-align: center;
    font-size: 1.25em;
    font-weight: 600;
    letter-spacing: 1px;
}

.p-contact .form-wrap .smf-form .smf-checkbox-control {
    align-items: center;
}

.p-contact .form-wrap .smf-form .smf-checkbox-control .smf-checkbox-control__control {
    border-radius: 0;
    border-color: #000;
}

.p-contact .form-wrap .snow-monkey-form [data-name="privacy_policy"] .smf-label{
    font-size: 1em;
}
.p-contact .form-wrap [data-name="privacy_policy"] .smf-checkbox-control__label a {
    border-bottom: 1px solid #000;
    padding-bottom: 2px;
}


.p-contact .form-wrap .smf-action .smf-button-control__control {
    max-width: 235px;
    width: 100%;
    color: #fff;
    border-color: #999;
    background-color: #999;
    display: inline-block;
    line-height: 1.25;
    text-align: left;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 20px 10px 20px 20px;
    font-size: 1rem;
    border-radius: 3rem;
    font-family: inherit;
    font-weight: 400;
    text-shadow: none;
    margin: 10px 0;
    background-image: url('../img/arr-contact-rt.svg');
    background-size: 21px;
    background-repeat: no-repeat;
    background-position: 92% 50%;
    transition: background-position .3s ease;
}

.p-contact .form-wrap .smf-action .smf-button-control__control:hover {
    background-position: right 10px center;
}

.p-contact .form-wrap .smf-action {
    text-align: center;
}

.p-contact .form-wrap .smf-action .smf-button-control__control[data-action="back"] {
    background-image: url(../img/arr-contact-lf.svg);
    padding: 20px 10px;
    text-align: center;
    background-position: 8% 50%;
}

.p-contact .form-wrap .smf-action .smf-button-control__control[data-action="back"]:hover {
    background-position: left 10px center;

}

.p-contact .form-wrap .smf-action .smf-button-control__control[data-action="complete"] {
    text-align: center;
    padding: 20px 10px;
}

.p-contact .form-wrap .smf-form .smf-radio-button-control__control:checked {
    background-color: #fff;
    border-color: #000;
}


.p-contact .form-wrap .smf-form .smf-radio-button-control__control:before {
    background-color: #000000;
    height: 8px;
    left: calc(50% - 4px);
    top: calc(50% - 4px);
    width: 8px;
}

.smf-complete-content {
    margin: 200px 0 400px;
    line-height: 2.2;
    font-size: 1.2em;
}

/* ================= お知らせ・ブログ ================= */


.news_wrap .news-contents {
    display: flex;
    gap: 5%;
    justify-content: space-between;
    margin-top: 160px;
}

.news_wrap .left-contents {
    width: 70%;
}


.nav_year {
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.1em;
    position: relative;
    margin-bottom: 4em;
    margin-left: 1em;
}

.nav_year li,
.nav_year li a {
    padding: 0;
    margin: 0;
    position: relative;
}

.nav_year li {
    display: inline;
}

.nav_year li.active a {
    color: #000;
    font-weight: bold;
}

.nav_year li:after {
    content: "";
    width: 1px;
    height: 1em;
    margin: 0 1.2em 0 1em;
    background: #A6A6A6;
    display: inline-block;
    transform: rotate(45deg);
}

.nav_year li:last-of-type:after {
    display: none;
}

.top-page .news_list {
    margin: 1em 0 2.7em;
}

.news_list {
    text-align: left;
}

.news_list li {
    line-height: 1.4;
    letter-spacing: 0.2em;
    position: relative;
    display: flex;
    align-items: flex-start;
    border-bottom: solid 1px #CCCCCC;
}

.top-page .news_list li {
    border-bottom: solid 1px #CCCCCC;
}

.news_list li a {
    display: flex;
    align-items: flex-start;
    padding: 2em 0.5em;
}

.news_wrap .news_list li a {
    width: 100%;
    gap: 4%;
}

.news_wrap .news_list li a .left-news-list {
    width: 23%;
}

.news_wrap .news_list li a .left-news-list .thumbnail {
    width: 120px;
    height: 120px;
    overflow: hidden;
    display: block;
}

.news_wrap .news_list li a .left-news-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_wrap .news_list li a .right-news-list {
    width: 73%;
}

.news_wrap .news_list li .tit {
    font-size: 1.3em;
}

.news_list li .tit {
    word-break: break-word;
    overflow-wrap: break-word;
    flex: 1;
    font-size: 0.85em;
    letter-spacing: 0.01em;
    transition: .3s;
}

.news_wrap .news_list .right-news-list .date-category {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.date-category {
    display: flex;
    gap: 2em;
}

.news_wrap .news_list .right-news-list .thumbnail {
    display: block;
    margin-bottom: 57px;
}

.news_wrap .news_list li .date {
    margin-right: 0em;
}

.news_list li .date {
    font-size: 1em;
    letter-spacing: 0.01em;
    margin-right: 5.5em;
    font-weight: 300;
}

.news_wrap .news_list .right-news-list .category {
    padding: 0 0.5em;
    border: 1px solid #cccccc;
    font-size: 0.95em;
    letter-spacing: 0.01em;
}

.news_wrap .right-contents {
    width: 25%;
}

.side-bar {
    padding-bottom: 0.5em;
    margin-bottom: 3.6em;
    border-bottom: solid 1px #CCCCCC;
    border-top: solid 1px #CCCCCC;
    text-align: center;
}

.side-bar h2 {
    background-color: #EEEFF1;
    padding: 0.7em;
    text-align: center;
    margin-bottom: 1.5em;
    font-weight: 600;
    font-size: 0.92em !important;
}

.search-bar form {
    margin-bottom: 0.5em;
    text-align: center;
}

.search-bar form input {
    border: solid 2px #EDEDED;
    height: 2.5em;
    border-radius: 2px;
    font-size: 17px;
    padding: 5px 10px;
    width: 85%;
}

.search-bar button {
    width: 100%;
}

.search-bar button img {
    width: 6em;
    margin: auto;
    margin-top: 7%;
}

.category-name {
    border: solid 2px #EDEDED;
    padding: 0.7em;
    width: 85%;
    margin-bottom: 24px;
}

.archive {
    border-bottom: none;
}

.archive .archive-year {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5em;
}

.archive .archive-year button {
    display: flex;
    align-items: center;
}

.archive .archive-year button img {
    width: 0.7em;
}

.archive .archive-year .date {
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0;
    font-size: 0.9em;
}

.archive ul ol {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: #c9c9c9;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
    border-bottom: 1px solid #CCCCCC;
    font-size: 0.77em;
}

.archive ul ol:has(a) {
    display: block;
    padding: 0;
    margin: 0;
    border: none;
}

.archive ul ol a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: #858585;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
    border-bottom: 1px solid #CCCCCC;
}

.archive ul ol img {
    width: 0.5em;
    display: inline-block;
    margin-left: 12px;
}

.news_wrap .pagination {
    margin: 3.5em auto 14.2em;
    font-weight: 500;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
}

.pagination .nav-links::after {
    content: "";
    width: auto;
    flex-shrink: 0;
    margin: 0.2em auto 0.2em 0.1em;
    padding: 1em 0.5em;
}

.pagination .nav-links::before {
    content: "";
    width: auto;
    flex-shrink: 0;
    margin: 0.2em 0.1em 0.2em auto;
    padding: 1em 0.5em;
}

.pagination .nav-links:has(.prev)::before {
    content: none;
}

.pagination .nav-links:has(.next)::after {
    content: none;
}

.pagination .page-numbers {
    text-align: center;
    box-sizing: border-box;
    padding: 1em;
    margin: 0.1em 0.5em 0.1em 0.5em;
    font-size: 0.9em;
    font-weight: 500;
    border-radius: 4px;
    letter-spacing: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border: solid 1px transparent;
}

.pagination .page-numbers.current {
    border: solid 1px #D9D9D9;
}

.pagination .page-numbers.prev {
    margin: 0.2em auto 0.2em 0.1em;
    color: #8c8c8c;
    font-size: 0.8em;
    padding: 1em 0.5em;
}

.pagination .page-numbers.next {
    margin: 0.2em 0.1em 0.2em auto;
    color: #8c8c8c;
    font-size: 0.8em;
    padding: 1em 0.5em;
}

/* ================= お知らせ・ブログ 詳細ページ ================= */

.news_wrap .news_list .right-news-list .date-category {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.news_wrap .date-category {
    gap: 1em;
}

.date-category {
    display: flex;
    gap: 1em;
}

.news_wrap .news_list li .date {
    margin-right: 0em;
}

.news_list li .date {
    font-size: 0.9em;
    letter-spacing: 0.01em;
    margin-right: 5.5em;
}

.news_wrap .left-contents .news-detail.news_list li {
    border: none;
}

.news_wrap .news-detail .right-news-list .tit {
    font-size: 1.7em;
    display: block;
    margin-top: 0.5em;
    margin-bottom: 0.6em;
    font-weight: 600;
}

.news_wrap .connection-news {
    border-top: 1px solid #cccccc;
    padding-top: 2em;
    margin-bottom: 7em;
}

.news_wrap .left-contents .news-detail.news_list {
    border: none;
    margin-bottom: 8em;
}


.news_wrap .connection-news h2 {
    font-size: 0.9em;
}

.right-news-list h2.wp-block-heading {
    margin: 40px 0;
}

.right-news-list .wp-block-paragraph {
    line-height: 2.4;
}
.right-news-list img{
    display: inline-block;
}



@media (max-width:900px) {
    .sub-fv .txt {
        font-size: 4vw;
    }

    .p-top .concept-inner:nth-of-type(2) .concept-text {
        margin-right: 0vw;
        flex: 0 0 28vw;
    }

    .p-top .concept-inner:nth-of-type(2) .concept-text .concept-link a .txt {
        font-size: 2.5vw;
    }

    .p-top .concept-inner:nth-of-type(2) .concept-text .concept-link a {
        width: 20vw;
    }

    .p-top .concept-inner:nth-of-type(2) .concept-text .concept-link a span.num {
        font-size: 4vw;
    }

    .p-top .concept-inner:nth-of-type(2) .concept-text .concept-link a span.smaller-txt {
        font-size: 1.8vw;
    }

    .p-top .blog-list {
        gap: 80px 3vw;
    }

    .p-top .puzzle-text .puzzle-text-detail {
        line-height: 4.5vw;
    }

    .p-company .philosophy h2 {
        font-size: clamp(22px, 4.5vw, 32px);
        margin-bottom: 4vw;
    }

    .p-company .philosophy h4 {
        font-size: clamp(13px, 2vw, 17px);
        margin-bottom: 17vw;
    }



}

@media (max-width:768px) {
    body {
        font-size: 3.3vw;
    }

    p {
        font-size: 2.3vw;
        line-height: 2;
    }

    h2 {
        font-size: 4.5vw;
    }

    .pc {
        display: none !important;
    }

    .sp {
        display: block;
    }

    .vm-btn {
        justify-content: center;
    }

    .vm-btn a {
        gap: 2vw;
        font-size: 3.1vw;
        letter-spacing: 0.05em;
    }

    .vm-btn a span img {
        width: 7.3vw;
    }

    .border-line {
        width: 90%;
    }

    .hamburger {
        position: relative;
        width: 7vw;
        height: 3vw;
        margin-top: 3vw;
        margin-left: 2vw;
    }
    .hamburger span:before,
    .hamburger span:after{
        height: 1px;
    }
    .hamburger span:before{
        top: -0.8vw;
    }
    .hamburger span:after{
        top: 0.8vw;
    }
    .hamburger.open span:before{
        top: 0;
    }
    .hamburger.open span:after{
        top: 0;
    }

    .hamburger-nav {
        flex-direction: column;
        height: 101vh;
        background: url(../img/hum-bg-pc.png) bottom center / cover no-repeat;
    }

    .hamburger-nav.active {
        overflow-y: auto;
        overflow-x: hidden;
    }

    .hamburger-links {
        width: 100%;
        margin: 0 0 0 0;
        padding-top: 21vw;
        padding-left: 15vw;
        padding-bottom: 10vw;
        gap: 6vw;
        background: #fff;
    }

    .hamburger-nav .hamburger-side {
        width: 100%;
        margin-top: 5vw;
        background: none;
    }

    .hamburger-links ul {
        width: 30vw;
    }

    .hamburger-links ul:nth-child(2) {
        width: 40vw;

    }

    .hamburger-links ul li {
        letter-spacing: 0.7vw;
        font-size: 3vw;
        margin-bottom: 5vw;
        white-space: nowrap;
        margin-left: 0;
    }

    .hamburger-links .has-child ul li {
        font-size: 2.3vw;
        margin-top: 1.9vw;
        margin-bottom: 2vw;
    }


    .hamburger-links ul li.logo {
        max-width: none;
        width: 6vw;
    }

    .hamburger-links .has-child>a .toggle::after {
        width: 2vw;
        height: 2vw;
        right: 1vw;
        top: 55%;
    }

    .hamburger-nav .hamburger-side .logo {
        width: 26.5vw;
        margin: auto;
        margin-bottom: 2vw;
        margin-top: 5vw;
    }

    .hamburger-nav .hamburger-side .hamburger-side-inner {
        max-width: fit-content;
        margin-bottom: 27vw;
    }

    .hamburger-nav .hamburger-side .area {
        font-size: 2.3vw !important;
        margin: 1vw 0 1vw;
        margin-left: -1vw;
    }

    .hamburger-nav .hamburger-side .company-name {
        font-size: 3.4vw !important;
        letter-spacing: 0.2vw;
    }

    .hamburger-nav .hamburger-side .add {
        font-size: 2.3vw !important;
        letter-spacing: 0.2vw;
        align-items: center;
    }

    .hamburger-nav .hamburger-side .tel {
        font-size: 2.8vw !important;
    }

    .hamburger-nav .hamburger-side .add a {
        width: 9vw;
    }

    .hamburger-nav .hamburger-side .mail {
        width: 5vw;
    }

    .header {
        height: 6.667vw;
    }

    .header-inner {
        padding: 1.111vw 2vw;
    }

    .header h1.logo {
        padding: 2vw 3vw 2.5vw 4vw;
        border-radius: 0 0 0 3vw;
        background: #fff;
    }
    .header h1.logo img {
        width: 16vw;
    }

    .footer .footer-banner {
        width: 90%;
    }

    .footer .footer-banner .logo-wrap {
        gap: 1.5vw;
        margin-bottom: 1vw;
    }

    .footer .footer-banner .logo-wrap p {
        font-size: 2vw;
    }

    .footer .footer-banner .logo-wrap p span {
        font-size: 4.8vw;
        letter-spacing: 0.4vw;
    }

    .footer .footer-banner .logo-wrap img {
        width: 10vw;
    }

    .footer .footer-banner a {
        padding: 4vw;
    }

    .footer .footer-banner .content .txt {
        line-height: 1.8;
        font-size: 2.4vw !important;
    }

    .footer .footer-banner a .vm-btn {
        justify-content: flex-start;
        margin-top: 5vw;
        font-size: 3vw;
        gap: 1.5vw;
    }

    .footer .footer-banner a .vm-btn img {
        width: 7.2vw;
    }

    .footer .footer-buttons {
        width: 90%;
        margin: 16.8vw auto 7.2vw;
        flex-direction: column;
        padding: 0 0 0 0;
    }

    .footer .footer-buttons a {
        border-right: none;
        width: 100%;
        text-align: left;
        display: flex;
        justify-content: flex-start;
        min-height: 18.5vw;
        align-items: center;
        border-bottom: 1px solid;
        margin: 0;
        gap: 5vw;
        padding: 0;
        padding-left: 5vw;
    }
    .footer .footer-buttons a p{
        font-size: 3vw;
    }

    .footer .footer-buttons a:nth-child(1) p {
        margin-top: 0;
        font-size: 3vw;
        line-height: 1.3;
    }
    .footer .footer-buttons a:nth-child(1) p span{
        font-size: 2.4vw;
    }

    .footer .footer-buttons a:nth-child(5) p {
        margin-top: 0;
        font-size: 3vw;
        line-height: 1.3;
    }

    .footer .footer-buttons a:nth-child(5) p span {
        font-size: 2.3vw;
    }

    .footer .footer-buttons a p {
        margin-top: 0;

    }

    .footer .footer-buttons a img {
        margin: 0;
        max-height: 5.6vw;
        max-width: 6vw;
    }

    .footer-nav {
        width: 90%;
        flex-direction: column;
    }

    .footer-links {
        padding-left: 4vw;
    }

    .footer-links ul {
        width: 29vw;
    }

    .footer-links ul li {
        font-size: 2.5vw;
        margin-bottom: 1.7vw;
        margin-top: 1vw;
        white-space: nowrap;
    }

    .footer-links ul li.logo {
        max-width: 3.5vw;
        margin-top: 2.5vw;
    }

    .footer-links ul ul {
        width: 100%;
    }
    .footer-links .has-child > a .toggle::after{
        width: 2vw;
        height: 2vw;
        right: 0;
        top: 55%;
    }

    .footer-nav .footer-company {
        margin: auto;
        margin-right: 0;
        margin-top: 12.5vw;
        display: flex;
        gap: 0vw;
        justify-content: space-between;
        width: 84vw;
    }

    .footer-nav .footer-company .logo img {
        width: 34vw;
    }


    .footer-nav .footer-company .area {
        font-size: 1.8vw !important;
        margin: 0 0 0;
    }

    .footer-nav .footer-company .add {
        font-size: 1.8vw !important;
        gap: 3vw;
        margin-left: 0.5em;
        margin-top: 0.1em;
        align-items: center;
    }

    .footer-nav .footer-company .add a {
        width: 7vw;
    }

    .footer-nav .footer-company .company-info .contact-info {
        display: flex;
        align-items: center;
        gap: 0.5em;
        margin-left: 0.5em;
        margin-top: 0.1em;
    }

    .footer-nav .footer-company .tel {
        font-size: 2vw;
    }

    .footer-nav .footer-company .mail {
        width: 3vw;
        margin-top: 0;
    }

    .footer .copy {
        font-size: 1.5vw !important;
        margin: 6vw auto 12vw;
    }

    .contact-banner-sp {
        display: flex;
        padding: 3.1vw 0;
        background: #0f1745;
        border: 1px solid #0f1745;
        color: #fff;
        transition: all .3s ease;
        align-items: center;
        justify-content: center;
        gap: 4vw;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1002;
    }

    .contact-banner-sp:hover {
        background: #fff;
        color: #0f1745;
    }

    .contact-banner-sp .contact-banner__icon {
        width: 5.6vw;
        height: 4.2vw;
        position: relative;
    }

    .contact-banner-sp .contact-banner__icon img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        transition: opacity .3s ease;
    }

    .contact-banner-sp:hover .icon-white {
        opacity: 0;
    }

    .contact-banner-sp:hover .icon-blue {
        opacity: 1;
    }


    .contact-banner-sp .contact-banner__text {
        letter-spacing: 0.7vw;
        font-size: 2.6vw;
    }

    /* ================= TOP ================= */
    .p-top .fv {
        margin-bottom: 0;
    }

    .p-top .fv-ttl .fv-title {
        font-size: 7vw;
        letter-spacing: 1.1vw;
    }


    .p-top .fv-ttl {
        padding-top: 29.5vw;
    }

    .p-top .fv-ttl .fv-overlay {
        background: url('../img/top/fv-bg.png') no-repeat 45% 53vw/40vw;
        padding: 5vw 0 19vw;
        margin-right: 3vw;
    }

    .p-top .fv-slide img {
        height: auto;
    }

    .p-top .fv-track {
        aspect-ratio: 450 / 253;
    }

    .p-top .fv .fv-dots {
        gap: 2vw;
        bottom: 2vw;
    }

    .p-top .fv .dot {
        width: 1.5vw;
        height: 1.5vw;
    }

    .p-top .news {
        margin: 0 auto 26vw;
    }

    .p-top .news h2 {
        font-size: 4.5vw;
        margin-bottom: 15vw;
        margin-top: 26vw;
    }

    .p-top .news .news-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 7.3vw;
        margin-bottom: 11.3vw;
    }

    .p-top .news .news-list li {
        width: 85%;
    }

    .p-top .news .news-list li a {
        display: flex;
        align-items: flex-start;
        gap: 6vw;
        justify-content: space-between;
    }

    .p-top .news .news-list li a .thumb {
        flex: 0 0 33vw;
        height: 100%;
    }

    .p-top .news .news-list li a .thumb+div {
        flex: 0 0 43vw;

    }


    .p-top .news .news-list li a img+div {
        width: 42vw;
    }

    .p-top .news .news-list li .news-tag {
        padding: 0.2vw 1.5vw;
        margin: 0;
        margin-bottom: 2.33vw;
        font-size: 2vw;
    }

    .p-top .news .news-list li .news-tag+p {
        font-size: 2.4vw;
    }

    .p-top .concept h2 {
        font-size: 4.5vw;
    }

    .p-top .concept-inner {
        margin-top: 13vw;
        width: 90%;
        gap: 5vw;
    }

    .p-top .concept-inner .concept-slider {
        max-width: 65vw;
    }

    .p-top .concept-inner .concept-slider .slider-dots {
        bottom: -3vw;
        gap: 1.5vw;
    }

    .p-top .concept-inner .concept-text {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: flex-start;
        margin-top: 2vw;
    }

    .p-top .concept-inner .concept-text h3,
    .p-top .puzzle-text h3 {
        writing-mode: unset;
        margin-left: 0;
        font-size: 3.8vw;
        letter-spacing: 0.7vw;
    }

    .p-top .concept-inner .concept-text .concept-text-detail {
        writing-mode: unset;
        line-height: 2;
        margin-top: 4.1vw;
        font-size: 4vw;
        letter-spacing: 0;
    }

    .p-top .concept-inner .vm-btn {
        justify-content: flex-start;
        margin-top: 1vw;
    }

    .p-top .concept-inner .vm-btn a {
        margin-right: 0;
    }

    .p-top .concept-inner:nth-of-type(2) {
        max-width: unset;
        justify-content: flex-end;
        margin-top: 27.7vw;
        gap: 0;
    }

    .p-top .concept-inner:nth-of-type(2) .concept-text {
        justify-content: flex-end;
        width: 100%;
        margin-right: 0;
        margin-bottom: 8.4vw;
    }

    .p-top .concept-inner:nth-of-type(2) .concept-text .concept-link {
        margin-top: 8vw;
    }

    .p-top .concept-inner:nth-of-type(2) .concept-text .concept-link ul {
        display: flex;
        gap: 2vw;
        align-items: center;
        justify-content: center;
    }

    .p-top .concept-inner:nth-of-type(2) .concept-text .concept-link ul li {
        width: 28vw;
        margin-bottom: 1vw;
    }

    .p-top .concept-inner:nth-of-type(2) .concept-text .concept-link ul li:nth-child(2) a,
    .p-top .concept-inner:nth-of-type(2) .concept-text .concept-link ul li:nth-child(3) a {
        gap: 0;
    }

    .p-top .concept-inner:nth-of-type(2) .concept-text .concept-link a {
        min-height: 10.4vw;
        gap: 0;
        max-width: unset;
        width: 100%;
        border-radius: 1vw;
        padding: 0 1vw 0 1vw;
    }

    .p-top .concept-inner:nth-of-type(2) .concept-text .concept-link a .txt {
        font-size: 3vw;
        letter-spacing: 0.05em;
        flex: 1;
    }
    .p-top .concept-inner:nth-of-type(2) .concept-text .concept-link a img{
        width: 3vw;
    }

    .p-top .concept-inner:nth-of-type(2) .concept-slider {
        margin-left: 6vw;
        margin-right: -5%;
        flex: 0 0 86vw;
        max-width: unset;
    }

    .p-top .concept-inner:nth-of-type(3) {
        flex-direction: column;
        margin-top: 11vw;
        gap: 0;
        width: 64vw;
    }

    .p-top .concept-inner:nth-of-type(3) .concept-slider {
        width: 67vw;
        margin-left: 0;
        margin-right: 9vw;
    }

    .p-top .concept-inner:nth-of-type(3) .concept-slider .slider-dots {
        bottom: -2.6vw;
    }

    .p-top .concept-inner:nth-of-type(3) .img-wrap {
        width: 27vw;
        margin-top: -1vw;
        max-width: unset;
    }

    .p-top .concept-inner .concept-slider .dot {
        width: 1vw;
        height: 1vw;
    }

    .p-top .puzzle {
        margin: 20.5vw auto 20vw;
        width: auto;
        justify-content: center;
        flex-direction: row;
    }

    .p-top .puzzle-text {
        order: 1;
        flex-direction: column;
        align-items: center;
        margin-bottom: 10vw;
        margin-right: 0;
    }

    .p-top .puzzle-text h3 {
        font-size: 3.8vw;
        margin-top: 7vw;
    }

    .p-top .puzzle-text .puzzle-text-detail {
        line-height: 2.5;
        writing-mode: unset;
        font-size: 2vw;
        letter-spacing: 0;
        margin-top: 5vw;
        text-align: center;
    }

    .p-top .puzzle-grid {
        order: 2;
        width: 75%;
        margin-top: 4.4vw;
    }

    .p-top .puzzle-grid p {
        font-size: 2.2vw;
    }
    .p-top .puzzle-img{
        margin-top: 5vw;
    }


    .p-top .puzzle .vm-btn {
        order: 3;
        margin-top: 8vw;
        margin-right: 0;
    }

    .p-top .works {
        margin-top: 24.33vw;
        margin-bottom: 25vw;
    }

    .p-top .works h2 {
        font-size: 4.5vw;
    }

    .p-top .works .works-wrap {
        margin-top: 7.33vw;
    }

    .p-top .work {
        min-width: 33.5%;
    }

    .p-top .works-track {
        display: flex;
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .p-top .works-track::-webkit-scrollbar {
        display: none;
    }

    .p-top .work {
        min-width: 33.3333%;
        flex: 0 0 33.3333%;
    }

    .p-top .work img {
        display: block;
        width: 100%;
    }

    .p-top .works .ttl-wrap {
        margin: 0 0 0 2vw;
    }

    .p-top .works .ttl-wrap .category {
        padding: 0 1.56vw;
        margin: 3.7vw 0 0;
        font-size: 2.2vw;
        line-height: 1.4 !important;
    }

    .p-top .works .ttl-wrap .address {
        font-size: 2.4vw;
    }

    .p-top .works .ttl-wrap .address .date {
        font-size: 93%;
    }

    .p-top .works .btn-wrap {
        margin: 15vw auto 3vw;
        gap: 3vw;
    }

    .p-top .works .btn-wrap .c-arrow {
        width: 7vw;
    }

    .p-top .blog {
        margin-top: 24.5vw;
        margin-bottom: 32vw;
    }

    .p-top .blog h2 {
        font-size: 4.5vw;
    }

    .p-top .blog-list {
        gap: 7.5vw 0;
        margin: 15vw auto 12vw;
        flex-direction: column;
        align-content: center;
    }

    .p-top .blog-list li {
        width: 81vw;
    }

    .p-top .blog-list li a {
        display: flex;
    }

    .p-top .blog-list li a img {
        width: 41%;
        height: 25vw;
        flex: 0 0 33vw;
    }

    .p-top .blog-list li a p {
        margin-left: 5.33vw;
        margin-top: 0;
        line-height: 1.5;
        width: 100%;
    }

    .p-top .blog-list li p span {
        font-size: 2.1vw;
        letter-spacing: 0.1em;
        margin-top: 1.33vw;
    }

    /* ================= サブ共通 ================= */
    .sub-fv {
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
    }

    .sub-fv .img {
        width: 91vw;
    }

    .sub-fv .txt {
        width: 100%;
        font-size: 4.6vw;
        letter-spacing: 0.2em;
        text-align: center;
        margin-top: 11vw;
    }

    .sub-fv+section {
        margin-top: 20vw !important;
    }

    /* ================= 会社案内 ================= */

    .p-company .philosophy {
        margin-top: 20vw;
    }
    .p-company .philosophy h2{
        font-size: 4.5vw;
    }
    .p-company .philosophy h4{
        font-size: 3vw;
        width: 95%;
        margin: 0 auto 20vw;
    }

    .p-company .philosophy .philosophy-piece {
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 100%;
        margin-bottom: 25vw;
        flex-direction: row;
    }

    .p-company .philosophy .philosophy-piece .ttl {
        font-size: 4.5vw;
        width: 100%;
        margin-bottom: 0;
        writing-mode: horizontal-tb;
        order: 1;
    }

    .p-company .philosophy .philosophy-piece .txt {
        margin-right: 0;
        font-size: 3vw;
        width: 90%;
        margin: auto;
        line-height: 2.2;
        writing-mode: horizontal-tb;
        order: 3;
    }

    .p-company .philosophy .philosophy-piece .img-wrap {
        flex: 0 0 60%;
        margin-right: 0;
        margin-bottom: 20vw;
        order: 2;
    }


    .p-company .philosophy .single-img {
        width: 82vw;
    }

    .p-company .greeting {
        margin-bottom: 40vw;
        margin-top: 20vw;
    }

    .p-company .greeting h2 {
        font-size: 4.5vw;
        margin-bottom: 6vw;
    }

    .p-company .greeting h4 {
        font-size: 3vw;
    }

    .p-company .greeting .greeting-wrap {
        flex-direction: column;
        margin-top: 8vw;
    }

    .p-company .greeting .greeting-wrap .img-wrap {
        width: 60%;
    }

    .p-company .greeting .greeting-wrap .txt-wrap {
        line-height: 2.2;
        width: 90%;
        margin: auto;
        font-size: 3vw;
        letter-spacing: 0.1em;
        flex: 0;
    }

    .p-company .greeting .greeting-wrap+p {
        text-align: left;
        width: 90%;
        font-size: 2.3vw;
        margin: 40px auto 20vw;
        margin: 10vw auto 20vw;
        line-height: 2.2;
        letter-spacing: 0.1em;

    }

    .p-company .greeting .greeting-wrap-02 {
        flex-direction: column;
        margin-left: 0;
    }

    .p-company .greeting .greeting-wrap-02 .txt-wrap {
        order: 2;
        font-size: 3vw;
        flex: 0;
        width: 90%;
        margin: auto;
        line-height: 2.2;
        letter-spacing: 0.1em;
    }

    .p-company .greeting .greeting-wrap-02 .img-wrap {
        width: 70%;
        margin: 0 auto 6vw;
    }

    .p-company .info {
        width: 90%;
        margin: auto;
        gap: 0;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin-bottom: 40vw;
    }

    .p-company .info h2 {
        font-size: 4.5vw;
        writing-mode: unset;
        margin-bottom: 10vw;
    }

    .p-company .info table {
        font-size: 3vw;
    }

    /* ================= プライバシーポリシー ================= */

    .p-privacy .privacy {
        width: 90%;
        font-size: 3vw;
    }

    .p-privacy .privacy span.ttl {
        font-size: 3vw;
    }

    /* ================= 未完成 ================= */

    .p-evolving-home .evolving-home-sub h2 {
        font-weight: 500;
        font-size: 4.5vw;
    }
    .p-evolving-home .evolving-home-sub h2+p{
        font-size: 2.8vw;
    }

    .p-evolving-home .about-evolving-home-wrap {
        flex-direction: column;
        align-items: center;
        padding: 0 0 20vw;
    }

    .p-evolving-home .about-evolving-home-wrap.diversity {
        padding: 20vw 0 20vw;
    }

    .p-evolving-home .about-evolving-home-wrap .txt-wrap,
    .p-evolving-home .about-evolving-home-wrap.diversity .txt-wrap {
        width: 90%;
    }

    .p-evolving-home .about-evolving-home-wrap .img-wrap{
        width: 90%;
    }
    .p-evolving-home .about-evolving-home-wrap.diversity .img-wrap {
        width: 80%;
    }

    .p-evolving-home .about-evolving-home-wrap .txt-wrap h3 {
        text-align: center;
        font-size: 4.5vw;
    }

    .p-evolving-home .about-evolving-home-wrap:nth-child(even) {
        flex-direction: column;
        padding-top: 20vw;
    }

    .p-evolving-home .about-evolving-home-02 {
        margin-bottom: 20vw;
        padding-bottom: 20vw;
    }

    .p-evolving-home .about-evolving-home-02 .sub-inner {
        flex-direction: column;
        width: 90%;
        align-items: center;
        padding: 20vw 0;
    }

    .p-evolving-home .about-evolving-home-02 .img-wrap {
        width: 100%;
        order: 2;
    }

    .p-evolving-home .about-evolving-home-02 .txt-wrap {
        width: 100%;
    }

    .p-evolving-home .evolving-home-sub {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20vw;
    }
    .p-evolving-home .evolving-home-sub .about-name{
        flex-wrap: wrap;
    }
    .p-evolving-home .evolving-home-sub .about-name .meaning-wrap p {
        font-size: 3vw;
    }

    .p-evolving-home .evolving-home-sub .about-name .meaning-wrap h5 {
        font-size: 4vw;
    }

    .p-evolving-home .evolving-home-sub .about-name .word-wrap {
        font-size: 4.5vw;
        margin: 0 auto 1em;
    }
    .p-evolving-home .evolving-home-sub .about-name .word-wrap p{
        font-size: 5vw;
    }

    .p-evolving-home .evolving-home-sub .about-name {
        padding: 30px 10px 5px;
    }

    .p-evolving-home .about-evolving-home-02 .txt-wrap{
        margin-top: 0;
    }
    .p-evolving-home .about-evolving-home-02 .txt-wrap h3 {
        font-size: 4.5vw;
        margin-bottom: 2vw;
        letter-spacing: 0.15em;
    }
    .p-evolving-home .about-evolving-home-02 .txt-wrap p{
        margin-bottom: 8vw;
    }

    .p-evolving-home .about-evolving-home-02 .sub-inner+p {
        font-size: 4vw;
        padding: 0 4vw;
    }

    /* ================= 高断熱について ================= */

    .p-insulation .insulation-sub {
        margin-bottom: 20vw;
    }
    .p-insulation .insulation-sub h2{
        font-size: 4.5vw;
    }

    .p-insulation .insulation-data {
        width: 90%;
        margin: auto;
    }

    .p-insulation .insulation-data .ua-table {
        margin: 8vw auto;
    }

    .p-insulation .insulation-data .ua-table__wrap {
        gap: 2.8vw;
    }

    .p-insulation .insulation-data .ua-table__title {
        font-size: 4vw;
        margin-bottom: 3vw;
    }

    .p-insulation .insulation-data .ua-table__level {
        width: 6vw;
        height: 6vw;
        font-size: 3vw;
        align-items: baseline;

    }

    .p-insulation .insulation-data .ua-table__table thead tr th span:last-child {
        width: 3vw;
        height: 3vw;
        font-size: 3vw;
        line-height: 3vw;
    }

    .p-insulation .insulation-data .ua-table__note p {
        white-space: normal;
    }

    .p-insulation .insulation-data .ua-table__vertical {
        font-size: 3vw;

    }

    .p-insulation .insulation-data .ua-table__table {
        min-width: 860px;
        font-size: 3vw;

    }

    .p-insulation .insulation-data .ua-table__table th,
    .p-insulation .insulation-data .ua-table__table td {
        padding: 2vw;
    }

    .p-insulation .insulation-data .ua-table__table thead tr:first-child th{
        font-size: 3vw;
        letter-spacing: 0.01em;
    }
    .p-insulation .insulation-data .ua-table__table thead tr:nth-child(2) th,
    .p-insulation .insulation-data .ua-table__table thead tr:nth-child(2) td{
        padding: 2vw 0;
    }
    .p-insulation .insulation-data .ua-table__note {
        font-size: 4vw;
    }

    .p-insulation .insulation-data .insulation-data-description {
        width: 90%;
        margin: auto;
        flex-direction: column;
    }

    .p-insulation .insulation-data .insulation-data-description div {
        width: 100%;
        margin-bottom: 5vw;
    }

    .p-insulation .insulation-data .insulation-data-description div h4 .txt {
        font-size: 4vw;
    }

    .p-insulation .insulation-data .insulation-data-description div p span.ttl {
        font-size: 1em;
        white-space: nowrap;
    }

    .p-insulation .insulation-data .insulation-data-02 {
        gap: 3vw;
        margin-bottom: 20vw;
    }

    .p-insulation .insulation-data .insulation-data-02 p {
        margin-top: 0;
    }

    .p-insulation .insulation-data h3 {
        font-size: 4vw;
    }

    .p-thinks-sub .click-box {
        width: 65%;
    }

    .p-insulation .insulation-advantage .sub-inner {
        width: 90%;
        margin: auto;
    }

    .p-insulation .insulation-advantage h2 {
        font-size: 4.5vw;
    }

    .p-insulation .insulation-advantage .insulation-advantage-wrap .insulation-advantage-box {
        width: 100%;
        margin-bottom: 5vw;
    }

    .p-insulation .insulation-advantage .insulation-advantage-wrap .insulation-advantage-box h3 {
        font-size: 4vw;
        font-weight: 500;
        line-height: 1.4;
        min-height: unset;
    }

    .p-insulation .insulation-advantage {
        margin-bottom: 20vw;
    }

    .p-thinks-sub .thinks-links .other-link {
        width: 90%;
        margin-bottom: 20vw;
        flex-direction: column;
        align-items: center;
    }

    .p-thinks-sub .thinks-links .other-link a {
        font-size: 3vw;
        padding: 3vw 0 3vw;
    }

    .p-thinks-sub .thinks-links .links-group {
        width: 90%;
        flex-wrap: wrap;
        gap: 5vw 0;
        margin-bottom: 20vw;
        justify-content: space-around;
    }

    .p-thinks-sub .thinks-links .links-group .links-group-wrap {
        width: 42%;
    }
    .p-thinks-sub .thinks-links .links-group .links-group-wrap a{
        padding: 2.8vw;
    }


    /* ================= お知らせ・ブログ ================= */

    .news_wrap .news-contents {
        flex-direction: column;
    }

    .news_wrap .left-contents {
        width: 90%;
        margin: auto;
    }

    .news_wrap .right-contents {
        width: 90%;
        margin: 20vw auto 0;
    }

    .news_wrap .news-contents {
        margin-top: 20vw;
    }

    .nav_year {
        margin-bottom: 1em;
    }
    .news_list li,
    .news_list li a {
        flex-wrap: wrap;
    }

    .news_wrap .news_list li a .left-news-list .thumbnail {
        width: 5em;
        height: 5em;
    }
    .news_wrap .news_list .right-news-list .thumbnail{
        margin: 6vw auto;
    }

    .news_wrap .news_list li .tit {
        font-size: 3vw;
    }

    .news_wrap .news_list .right-news-list .date-category+span {
        font-size: 3vw;

    }

    .news_wrap .news_list .right-news-list .category {
        font-size: 3vw;
    }
    .side-bar{
        margin-bottom: 6em;
    }
    .search-bar form input{
        border-radius: 1vw;
        font-size: 3.6vw;
        padding: 1em 1em;
        height: auto;
    }
    .category-name{
        font-size: 3.6vw;
        margin-bottom: 2em;
        padding: 1em 1em;
    }
    .news_wrap .pagination{
        margin: 3.5em auto 4em;
    }

    /* ================= 問い合わせ ================= */
    .p-contact h2 {
        margin-top: 0;
        font-size: 3vw;
    }

    .p-contact h2+p {
        font-size: 3vw;
    }

    .p-contact .form-wrap {
        width: 90%;
    }

    .p-contact .form-wrap .smf-form .smf-text-control__control,
    .p-contact .form-wrap .smf-form .smf-select-control__control {
        padding: 3vw;
        font-size: 3vw;
        line-height: 2.2;
    }

    .p-contact .form-wrap span.smf-item__label__text {
        font-size: 3vw;
    }

    .p-contact .form-wrap .smf-form .smf-checkbox-control {
        white-space: nowrap;
    }

    .smf-complete-content {
        margin: 20vw 0 30vw;
    }

    /* ================= 施工事例 ================= */

    .p-works-sub .sub-fv .txt span {
        font-size: 4.6vw;
    }

    .p-works .new-build {
        width: 90%;
        margin-bottom: 40vw;
    }
    .p-works .new-build .new-build-wrap a .img-wrap,
    .p-works .renovation .renovation-wrap a .img-wrap{
        margin-bottom: 3vw;
    }

    .p-works .new-build .new-build-wrap a .txt-wrap .tag,
    .p-works .renovation .renovation-wrap a .txt-wrap .tag {
        font-size: 2.2vw;
        line-height: 1.3 !important;
        padding: 0 1.56vw;
        white-space: nowrap;
    }

    .p-works .new-build .new-build-wrap a .txt-wrap .add,
    .p-works .renovation .renovation-wrap a .txt-wrap .add {
        font-size: 3vw;
        line-height: 1 !important;
        margin-top: 3vw;
    }

    .p-works .new-build .new-build-wrap a .txt-wrap .add .date,
    .p-works .renovation .renovation-wrap a .txt-wrap .add .date {
        font-size: 0.6em;
        margin-left: 0;
        margin-top: 2vw;
    }

    .p-works .renovation {
        width: 90%;
        margin-bottom: 50vw;
    }

    .p-works-sub .works-sub-data {
        width: 90%;
        margin: auto;
        padding-bottom: 20vw;
    }

    .p-works-sub .works-sub-data h2 {
        font-size: 4vw;
        margin-bottom: 20vw;
    }

    .p-works-sub .works-sub-data .works-sub-data-wrap .txt-wrap h4 {
        font-size: 4vw;
        white-space: wrap;
        flex-direction: column;
    }

    .p-works-sub .works-sub-data .works-sub-data-wrap .txt-wrap h4 .label {
        font-size: 3vw;
        margin-right: 3vw;
        margin-bottom: 2vw;
        padding: 0.5vw 3vw;
        white-space: nowrap;
    }

    .p-works-sub .spec {
        flex-direction: column;
        font-size: 3vw;
    }

    .p-works-sub .works-block {
        width: 90%;
        margin: auto;
        padding-top: 10vw;
    }

    .p-works-sub .works-block .photo-list {
        gap: 3vw;
    }

    .p-works-sub .btn-back {
        margin: 10vw auto 20vw;
    }

    .p-works-sub .works-block .main-view {
        align-items: center;
    }

    .p-works-sub .works-block .main-view .txt-wrap {
        margin-top: 0;
    }

    .p-works-sub .works-block .photo-list img {
        border-radius: 6px;
    }

    .p-works-sub .works-block .photo-gallery .main-view .img-wrap img {
        border-radius: 6px;
    }

    .p-renovation-01.p-works-sub .works-block .txt-wrap {
        margin-top: 2em;
        margin-bottom: 1em;
    }

    /* ================= 耐震について ================= */
    .p-seismic .seismic-01,
    .p-seismic .seismic-03,
    .p-seismic .seismic-04 .sub-inner,
    .p-seismic .seismic-05,
    .p-seismic .seismic-02 {
        width: 90%;
        margin: auto;
    }
    .p-seismic .seismic-01 h2{
        font-size: 4.5vw;
    }
    .p-seismic .seismic-01 .seismic-01-wrap {
        flex-direction: column;
        gap: 12vw;
        margin-bottom: 20vw;
    }

    .p-seismic .seismic-01 h4 {
        font-size: 3vw;
    }

    .p-seismic .seismic-01 .seismic-01-wrap .left {
        padding: 5vw 7vw;
        min-height: unset;
    }

    .p-seismic .seismic-01 .seismic-01-wrap .right {
        min-height: unset;

    }

    .p-seismic .seismic-01 .seismic-01-wrap .right p {
        margin-left: 0;
        padding: 5vw 7vw;
    }

    .p-seismic .seismic-01 .seismic-01-wrap .right::before {
        position: absolute;
        left: unset;
        top: -4vw;
        width: 6vw;
        height: 4vw;
        transform: rotate(90deg);
    }

    .p-seismic .seismic-02 h3 {
        font-size: 3vw;
    }

    .p-seismic .seismic-03 h3 {
        font-size: 3vw;

    }

    .p-seismic .seismic-03 .seismic-03-wrap {
        flex-direction: column;
        align-items: center;

    }

    .p-seismic .seismic-03 .seismic-03-wrap .txt-wrap h4 {
        font-size: 3vw;
        margin-top: 4vw;
    }

    .p-seismic .seismic-03 .seismic-03-wrap .txt-wrap {
        margin-bottom: 10vw;
        width: 100%;
    }

    .p-seismic .seismic-04 {
        margin-bottom: 20vw;
    }

    .p-seismic .seismic-04 h3 {
        font-size: 4vw;

    }

    .p-seismic .seismic-04 p {
        width: 95%;
        font-size: 3vw;
    }

    .p-seismic .seismic-05 .seismic-05-wrap {

        flex-direction: column;
    }

    .p-seismic .seismic-05 .seismic-05-wrap .img-wrap {
        margin-bottom: 10vw;
    }

    .p-seismic .seismic-03 {
        margin-top: 20vw !important;
    }

    .p-seismic .seismic-05 {
        margin-bottom: 20vw !important;
    }

    .p-thinks-sub .thinks-links h3 {
        font-size: 4vw;

    }

    /* ================= 高気密について ================= */
    .p-airtightness .airtightness-advantage {
        width: 90%;
        margin: auto;
    }

    .p-airtightness .airtightness-advantage .airtightness-advantage-01 {
        flex-direction: column;
        align-items: center;
        padding-bottom: 10vw;

    }

    .p-airtightness .airtightness-advantage h2 {
        margin-bottom: 20vw;
        font-size: 4.5vw;
    }


    .p-airtightness .airtightness-data h5 {
        font-size: 4.5vw;
    }
    .p-airtightness .airtightness-advantage .airtightness-advantage-01 .img-wrap {
        width: 80%;
        margin-bottom: 10vw;
    }

    .p-airtightness .airtightness-advantage .airtightness-advantage-01 .txt-wrap {
        width: 100%;
    }

    .p-airtightness .airtightness-advantage .airtightness-advantage-01 .txt-wrap div {
        font-size: 4w;
    }

    .p-airtightness .airtightness-advantage .airtightness-advantage-01 .txt-wrap h3 {
        font-size: 3vw;
    }
    .p-airtightness .airtightness-advantage .airtightness-advantage-01 .txt-wrap div span{
        font-size: 3.4vw;
    }

    .p-airtightness .airtightness-advantage .airtightness-advantage-02 {
        padding-top: 10vw;
        padding-bottom: 10vw;
        flex-direction: column;
    }
    .p-airtightness .airtightness-advantage .airtightness-advantage-02 .txt-wrap h3 {
        font-size: 3vw;
        margin-top: 0;
    }

    .p-airtightness .airtightness-advantage .airtightness-advantage-02 .img-wrap {
        width: 100%;
        margin-top: 10vw;
    }

    .p-airtightness .airtightness-data .sub-inner {
        width: 90%;
        margin: auto;
    }

    .p-airtightness .airtightness-data {
        padding-top: 10vw;
        padding-bottom: 10vw;
        margin-bottom: 20vw;
    }
    .p-airtightness .airtightness-data .airtightness-note{
        margin-top: 15vw;
        font-size: 4vw;
    }


    .p-airtightness .airtightness-data-wrap {
        flex-direction: column;
        align-items: center;
    }

    .p-airtightness .airtightness-data-wrap .img-wrap {
        width: 100%;
        margin-bottom: 10vw;
    }

    .p-airtightness .airtightness-data-wrap .txt-wrap {
        width: 100%;
        margin-top: 0;
    }

    .p-airtightness .airtightness-data-ttl {
        margin-bottom: 10vw;
        margin-top: 10vw;
    }

    .p-airtightness .airtightness-data-ttl h4 .txt {
        font-size: 4vw;
    }

    /* ================= 換気について ================= */

    .p-ventilation .ventilation-advantage-01 {
        margin-bottom: 20vw;
    }

    .p-ventilation .ventilation-advantage-01 h2 {
        margin-bottom: 20vw;
        font-size: 4.5vw;
    }

    .p-ventilation .ventilation-advantage-01 .ventilation-advantage-01-01 {
        width: 90%;
        margin: auto;
        margin-bottom: 20vw;
        flex-direction: column;
        align-items: center;
    }

    .p-ventilation .ventilation-advantage-01 .ventilation-advantage-01-01 h3 {
        font-size: 3vw;
        margin-top: 0;

    }

    .p-ventilation .ventilation-advantage-01 .ventilation-advantage-01-01 .img-wrap {
        width: 100%;
        margin-top: 10vw;
    }

    .p-ventilation .ventilation-advantage-01 .ventilation-advantage-01-01 .txt-wrap {
        width: 100%;

    }

    .p-ventilation .ventilation-advantage-01 .ventilation-advantage-01-02-wrap {
        width: 90%;
        margin: auto;
    }

    .p-ventilation .ventilation-advantage-01 .ventilation-advantage-01-02-wrap .left,
    .p-ventilation .ventilation-advantage-01 .ventilation-advantage-01-02-wrap .right {
        line-height: 1.6;
        font-size: 3vw;
        padding: 0 0 0 2vw;
    }

    .p-ventilation .ventilation-advantage-02 {
        padding-top: 10vw;
        padding-bottom: 10vw;
        margin-bottom: 20vw;
    }

    .p-ventilation .ventilation-advantage-02 .sub-inner {
        width: 90%;
        margin: auto;
    }

    .p-ventilation .ventilation-advantage-02 h2 {
        margin-bottom: 10vw;
        font-size: 3vw;
    }

    .p-ventilation .ventilation-advantage-02 .ventilation-advantage-02-wrap {
        flex-direction: column;
    }

    .p-ventilation .ventilation-advantage-02 .ventilation-advantage-02-wrap .img-wrap {
        width: 100%;
        margin-top: 0;
        margin-bottom: 10vw;
        order: 1;
    }

    .p-ventilation .ventilation-advantage-02 .ventilation-advantage-02-wrap .txt-wrap {
        margin-top: 0;
        order: 2;
        width: 100%;
        text-align: center;
    }

    .p-ventilation .ventilation-advantage-02 .ventilation-advantage-02-wrap .formula {
        justify-content: center;
        gap: 3vw;
        font-size: 4.5vw;
    }

    .p-ventilation .ventilation-advantage-02 .ventilation-advantage-02-wrap.ventilation-advantage-02-wrap-01 {
        padding-bottom: 10vw;
    }

    .p-ventilation .ventilation-advantage-02 .ventilation-advantage-02-wrap.ventilation-advantage-02-wrap-02 {
        padding-top: 10vw;
    }

    .p-ventilation .ventilation-advantage-02 .ventilation-advantage-02-wrap.ventilation-advantage-02-wrap-02 .txt-wrap {
        width: 100%;
        margin-top: 0;
    }

    /* =================高耐久について ================= */
    .p-durability .durability-01 h2 {
        margin-bottom: 20vw;
        font-size: 4.5vw;
    }

    .p-durability .durability-01 {
        margin-bottom: 20vw;
    }

    .p-durability .durability-01 .durability-01-wrap {
        flex-direction: column;
        width: 90%;
        margin: auto;
    }

    .p-durability .durability-01 .durability-01-wrap .img-wrap {
        width: 100%;
        margin-bottom: 10vw;
    }

    .p-durability .durability-02 {
        padding: 15vw 5%;
        margin-bottom: 20vw;
    }

    .p-durability .durability-01 .durability-01-wrap .txt-wrap h3 {
        font-size: 4vw;
    }

    .p-durability .durability-02 h2 {
        font-size: 4vw;
    }
    .p-durability .durability-02 .img-wrap{
        margin-top: 3vw;
    }

    .p-thinks-sub .thinks-links .links-group .links-group-wrap a p {
        font-size: 3.2vw;

    }

    /* =================通気について ================= */
    .p-airflow .airflow-01 {
        margin: auto;
        width: 90%;
        margin-bottom: 20vw;
    }

    .p-airflow .airflow-01 h2 {
        margin-bottom: 20vw;
        font-size: 4.5vw;
    }

    .p-airflow .airflow-01 .airflow-01-wrap {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin: auto;
    }

    .p-airflow .airflow-01 .airflow-01-wrap .img-wrap {
        width: 100%;
        margin-top: 10vw;
    }

    .p-airflow .airflow-02 {
        padding: 15vw 5%;
        margin-bottom: 20vw;
    }

    .p-airflow .airflow-03 {
        width: 90%;
        margin: auto;
        margin-bottom: 20vw;
    }

    .p-airflow .airflow-03 .airflow-03-01-wrap {
        margin-bottom: 10vw;
        flex-direction: column;
        align-items: center;
    }

    .p-airflow .airflow-03 .airflow-03-01-wrap .img-wrap {
        width: 100%;
        margin-bottom: 10vw;
    }

    .p-airflow .airflow-03 .airflow-03-02-wrap {
        flex-direction: column;
        align-items: center;
    }

    .p-airflow .airflow-03 .airflow-03-02-wrap .txt-wrap {
        width: 100%;
        order: 2;
    }

    .p-airflow .airflow-03 .airflow-03-02-wrap .img-wrap {
        order: 1;
        width: 100%;
        margin-bottom: 10vw;

    }

    .p-airflow .airflow-01 .airflow-01-wrap .txt-wrap {
        margin-top: 0;
        width: 100%;
    }

    .p-airflow .airflow-01 .airflow-01-wrap .txt-wrap h3 {
        font-size: 4vw;
    }

    .p-airflow .airflow-03 .airflow-03-01-wrap .txt-wrap {
        margin-top: 0;
        width: 100%;
    }

    /* =================基礎について ================= */
    .p-foundation .foundation-01 {
        width: 90%;
        margin: auto;
        margin-bottom: 20vw;
    }

    .p-foundation .foundation-01 h2 {
        margin-bottom: 20vw;
        font-size: 4.5vw;
    }

    .p-foundation .foundation-01 h4 {
        margin-bottom: 10vw;
        font-size: 4vw;
    }

    .p-foundation .foundation-01 .foundation-01-wrap {
        margin-top: 10vw;
    }

    .p-foundation .foundation-02 .foundation-02-wrap .txt-wrap {
        margin-top: 0;
        width: 100%;
        text-align: center;
    }

    .p-foundation .foundation-02 {
        padding: 10vw 5%;
        margin-bottom: 20vw;
    }

    .p-foundation .foundation-02 .foundation-02-wrap {
        flex-direction: column;
    }

    .p-foundation .foundation-02 .foundation-02-wrap .img-wrap {
        margin-bottom: 10vw;
        width: 100%;
    }

    .p-foundation .foundation-02 .foundation-02-wrap .txt-wrap h3 {
        font-size: 4vw;
    }

    .p-foundation .foundation-03 .foundation-03-wrap {
        width: 90%;
        margin: auto;
        flex-direction: column;
    }

    .p-foundation .foundation-03 {
        margin-bottom: 20vw;
    }

    .p-foundation .foundation-03 .foundation-03-wrap .txt-wrap {
        margin-bottom: 10vw;
    }

    .p-foundation .foundation-03 .foundation-03-wrap .txt-wrap h3 {
        font-size: 4vw;
    }


    /* =================自然との調和 ================= */
    
    .p-harmony .harmony{
        margin: auto;
        width: 90%;
        margin-bottom: 20vw;
    }
    .p-harmony .harmony h2{
        font-size: 4.5vw;
        margin-bottom: 20vw;
    }
    .p-harmony .harmony-wrap{
        padding-bottom: 15vw;
        margin-bottom: 15vw;
        flex-direction: column;
        gap: 5vw 0;
    }
    .p-harmony .harmony-wrap .txt-wrap{
        width: 100%;
        order: 2;
    }
    .p-harmony .harmony-wrap .img-wrap{
        width: 100%;
        margin: auto;
    }
    .p-harmony .harmony-wrap .txt-wrap h3{
        font-size: 4vw;
        margin-bottom: 1em;
        letter-spacing: 0.1em;
    }


    /* =================自然素材について ================= */

    .p-nature .nature {
        margin: auto;
        width: 90%;
        margin-bottom: 20vw;
    }
    .p-nature .sub-fv .txt span{
        font-size: 6vw;
        letter-spacing: 0.1em;
    }

    .p-nature .nature h2 {
        margin-bottom: 20vw;
        font-size: 4.5vw;
    }

    .p-nature .nature-wrap {
        padding-bottom: 15vw;
        margin-bottom: 15vw;
        flex-direction: column;
        gap: 5vw 0;
    }

    .p-nature .nature-wrap.nature-01 .img-wrap {
        width: 100%;
        margin: auto;
    }

    .p-nature .nature-wrap .img-wrap {
        width: 100%;
        order: 1;
    }

    .p-nature .nature-wrap .txt-wrap {
        width: 100%;
        order: 2;

    }

    .p-nature .nature-wrap.nature-03 {
        gap: 5vw 0;
        padding-bottom: 15vw;
        margin-bottom: 15vw;
    }

    .p-nature .nature-wrap.nature-04 {
        gap: 5vw 0;
        padding-bottom: 0;
    }

    .p-nature .nature-wrap .txt-wrap h3 {
        margin-bottom: 3vw;
        font-size: 4vw;
    }

    /* =================plusalpha ================= */
    .p-plusalpha .plusalpha-01 h2{
        font-size: 4.5vw;
        letter-spacing: 0.1em;
        margin-bottom: 20vw;
    }
    .p-plusalpha .plusalpha-01 .plusalpha-01-wrap {
        padding-bottom: 20vw;
        flex-direction: column;
        align-items: center;
        width: 90%;
        margin: auto;
    }
    .p-plusalpha .plusalpha-01 .plusalpha-01-wrap .txt-wrap {
        margin-top: 10vw;
        width: 100%;
        text-align: center;
    }

    .p-plusalpha .plusalpha-02 {
        padding-top: 20vw;
        margin: auto;
        width: 90%;
        margin-bottom: 20vw;
    }

    .p-plusalpha .plusalpha-02 h3 {
        margin-bottom: 20vw;
        font-size: 4vw;
        letter-spacing: 0.01em;
    }

    .p-plusalpha .plusalpha-02 .plusalpha-02-wrap-01 {
        margin-bottom: 10vw;
        flex-direction: column;
        text-align: center;
    }
    .p-plusalpha .plusalpha-02 .plusalpha-02-wrap-01 .img-wrap{
        margin: 0 auto;
    }
    .p-plusalpha .plusalpha-02 .plusalpha-02-wrap-02 p{
        font-size: 3vw;
    }

    .p-plusalpha .plusalpha-02 .plusalpha-02-wrap-02 p span {
        font-size: 4vw;
    }
    .p-plusalpha .plusalpha-02 .plusalpha-02-wrap-03 .data-01{
        font-size: 3vw;
    }
    

    .p-plusalpha .plusalpha-03 {
        padding: 5%;
        padding-top: 10vw;
        padding-bottom: 10vw;
        margin-bottom: 20vw;
    }

    .p-plusalpha .plusalpha-03 .plusalpha-03-wrap {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .p-plusalpha .plusalpha-03 .plusalpha-03-wrap .txt-wrap {
        margin-bottom: 10vw;
        width: 100%;
        text-align: center;
    }


    /* ================= 美しい装い ================= */
    .p-thinks .thinks-sub {
        margin: 20vw auto;
        width: 90%;
    }
    .p-thinks .thinks-sub h2{
        margin-bottom: 2em;
        font-size: 4vw;
    }
    .p-thinks .thinks-sub p {
        writing-mode: unset;
        font-size: 3vw !important;
    }

    .p-thinks .thinks-longlife {
        padding: 20vw 0 10vw;
        flex-direction: column;
        align-items: flex-end
    }

    .p-thinks .thinks-longlife .txt-wrap {
        width: 90%;
        margin: auto;
        order: 2;
    }

    .p-thinks .thinks-longlife .txt-wrap p {
        text-align: center;
    }

    .p-thinks .thinks-longlife .img-wrap {
        width: 60%;
    }

    .p-thinks .thinks-longlife h3 {
        font-size: 4vw;
        line-height: 2;
    }

    .p-thinks .thinks-performance {
        margin-top: 20vw;
        margin-bottom: 20vw;
    }


    .p-thinks .thinks-performance .thinks-performance-wrap {
        width: 90%;
        margin: auto;
        align-items: center;
        flex-direction: column !important;
        gap: 5vw;
    }

    .p-thinks .thinks-performance .thinks-performance-wrap .img-wrap {
        width: 100%;
    }

    .p-thinks .thinks-performance .thinks-performance-wrap .txt-wrap {
        width: 100%;
    }
    .p-thinks .thinks-performance .thinks-performance-wrap .txt-wrap h3 {
        font-size: 4.5vw;
        margin-bottom: 3vw;
    }
    .p-thinks .thinks-performance .thinks-performance-wrap .txt-wrap p{
        font-size: 1.2em;
    }
    

    .p-thinks .thinks-performance h2 {
        margin-bottom: 0;
        font-size: 4.5vw;
    }

    .p-thinks .thinks-logo {
        padding: 10vw 5%;
        margin-bottom: 20vw;
    }

    .p-thinks .thinks-logo .sub-inner {
        flex-direction: column;
        align-items: center;
    }

    .p-thinks .thinks-logo .sub-inner .img-wrap {
        width: 40%;
        margin-right: auto;
        margin: auto;
        margin-bottom: 10vw;
    }

    .p-thinks .thinks-logo .sub-inner .txt-wrap{
        writing-mode: unset;
    }
    .p-thinks .thinks-logo .sub-inner .txt-wrap h2 {
        margin-left: 0;
        margin-bottom: 8vw;
        text-align: center;
        font-size: 4.5vw;
    }

}
