<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import "../base.css";
@import "../fonts.css";
@import "../aos.css";
@import "../slick.css";
@import "../slick-theme.css";
@import "../lightbox.css";
/* @import "https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&amp;display=swap"; */

:root {
    --content-width: 1130px;
    --font-yugothic: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
    --font-yumincho: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝B", serif;
    --font-meiryo: "Meiryo UI", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
    --font-arial: Arial, Helvetica, sans-serif;
    --font-zenkaku: "Zen Kaku Gothic New", serif;
    --font-zenmaru: "Zen Maru Gothic", serif;
    --font-roboto: "Roboto", serif;
    --main-cl: #beaf87;
    --2nd-cl: #a28d5b;
    --b-cl: #414042;
    --w-cl: #fff;
    --lh: 1.8em;
    --font-family: "Zen Kaku Gothic New", serif;
    --noto: "Noto Sans JP", sans-serif;
    --body-color: #333333;
}

h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
textarea,
select,
p,
blockquote,
th,
td,
pre,
address,
li,
dt,
dd {
    font-size: 160%;
    -webkit-text-size-adjust: none;
    font-family: var(--font-family);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
    width: 100%;
    border: solid 1px #999;
    padding: 16px 20px;
}

::placeholder {
    opacity: 0.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.6em;
}

a {
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: var(--font-family);
    color: var(--body-color);
}

select {
    visibility: visible !important;
}

[href^="tel:"] {
    word-break: keep-all;
    white-space: nowrap;
}

img {
    vertical-align: middle;
    max-width: 100%;
    flex-shrink: 0;
    height: auto;
    object-fit: cover;
}

table {
    width: 100%;
}

p {
    margin-bottom: 15px;
    line-height: var(--lh);
}

p:last-child {
    margin-bottom: 0;
}

button {
    cursor: pointer;
    border: solid 1px #333;
    border-radius: 0;
    outline: none;
    box-shadow: none;
}

*,
::before,
::after {
    box-sizing: border-box;
    outline: none;
}

html {
    background: #fff;
}

body {
    min-width: 320px;
    -webkit-text-size-adjust: none;
    color: var(--body-color);
}

#wrapper {
    max-width: 1920px;
    min-width: 1260px;
    margin: 0 auto;
    overflow: hidden;
}

.inner {
    width: var(--content-width);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.inner-fluid {
    width: 1380px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.lk-full {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.customize-support #header {
    margin-top: 32px;
}

@media screen and (max-width: 782px) {
    .customize-support #header {
        margin-top: 46px !important;
    }
}

@media screen and (max-width: 600px) {
    .customize-support #header {
        margin-top: 0px !important;
    }
}

.hamburger-btn {
    width: 70px;
    height: 70px;
    position: fixed;
    top: 0;
    right: 0;
    cursor: pointer;
    background: #a28d5b;
    border-bottom-left-radius: 20px;
    display: none;
    z-index: 99;
}

.hamburger-btn .bar {
    width: 22px;
    height: 2px;
    position: absolute;
    top: calc(50% - 2px);
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--w-cl);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn .bar::before,
.hamburger-btn .bar::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    border-radius: 2px;
    background-color: var(--w-cl);
    transition: all 0.3s ease;
}

.hamburger-btn .bar::before {
    top: -7px;
}

.hamburger-btn .bar::after {
    top: 7px;
}

.hamburger-btn.--active .bar {
    background-color: rgba(0, 0, 0, 0);
}

.hamburger-btn.--active .bar::before {
    top: 0;
    transform: rotate(45deg);
}

.hamburger-btn.--active .bar::after {
    top: 0;
    transform: rotate(135deg);
}

.to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    cursor: pointer;
    z-index: 5;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.to-top.show {
    opacity: 1;
    visibility: visible;
}

.to-top a {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    background:
        url(../../images/top_souzoku/ico_totop.svg) center/18px auto no-repeat,
        var(--2nd-cl);
    border: 1px var(--2nd-cl) solid;
    border-radius: 10px;
}

.d-flex {
    display: flex;
}

.d-flex-column {
    display: flex;
    flex-direction: column;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

.flex-center-all {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.left {
    text-align: left;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.bold {
    font-weight: 700;
}

.iline {
    --cl: var(--main-cl);
    --t: 75%;
    --b: 100%;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    background-image: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) var(--t),
        var(--cl) var(--t),
        var(--cl) var(--b),
        rgba(255, 255, 255, 0) var(--b)
    );
}

.iline-radius {
    --underline-color: var(--w-cl);
    --underline-height: 5px;
    background:
        radial-gradient(farthest-side, var(--underline-color) 98%, transparent 100%) bottom
            right/var(--underline-height) var(--underline-height),
        radial-gradient(farthest-side, var(--underline-color) 98%, transparent 100%) bottom left/var(--underline-height)
            var(--underline-height),
        linear-gradient(var(--underline-color), var(--underline-color)) bottom/calc(100% - var(--underline-height))
            var(--underline-height);
    background-repeat: no-repeat;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.mb0 {
    margin-bottom: 0px !important;
}

.mb5 {
    margin-bottom: 5px !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.mb15 {
    margin-bottom: 15px !important;
}

.mb20 {
    margin-bottom: 20px !important;
}

.mb25 {
    margin-bottom: 25px !important;
}

.mb30 {
    margin-bottom: 30px !important;
}

.mb35 {
    margin-bottom: 35px !important;
}

.mb40 {
    margin-bottom: 40px !important;
}

.mb45 {
    margin-bottom: 45px !important;
}

.mb50 {
    margin-bottom: 50px !important;
}

.mt0 {
    margin-top: 0px !important;
}

.mt5 {
    margin-top: 5px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mt15 {
    margin-top: 15px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mt25 {
    margin-top: 25px !important;
}

.mt30 {
    margin-top: 30px !important;
}

.mt35 {
    margin-top: 35px !important;
}

.mt40 {
    margin-top: 40px !important;
}

.mt45 {
    margin-top: 45px !important;
}

.mt50 {
    margin-top: 50px !important;
}

.ml-0 {
    margin-left: 0px !important;
}

.ml-5 {
    margin-left: 5px !important;
}

.ml-10 {
    margin-left: 10px !important;
}

.ml-15 {
    margin-left: 15px !important;
}

.ml-20 {
    margin-left: 20px !important;
}

.ml-25 {
    margin-left: 25px !important;
}

.ml-30 {
    margin-left: 30px !important;
}

.ml-35 {
    margin-left: 35px !important;
}

.ml-40 {
    margin-left: 40px !important;
}

.ml-45 {
    margin-left: 45px !important;
}

.ml-50 {
    margin-left: 50px !important;
}

.mr-0 {
    margin-right: 0px !important;
}

.mr-5 {
    margin-right: 5px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.mr-15 {
    margin-right: 15px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.mr-25 {
    margin-right: 25px !important;
}

.mr-30 {
    margin-right: 30px !important;
}

.mr-35 {
    margin-right: 35px !important;
}

.mr-40 {
    margin-right: 40px !important;
}

.mr-45 {
    margin-right: 45px !important;
}

.mr-50 {
    margin-right: 50px !important;
}

.mx-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.mx-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
}

.mx-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
}

.mx-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
}

.mx-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
}

.mx-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
}

.mx-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
}

.mx-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
}

.mx-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
}

.mx-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
}

.mx-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
}

.my-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.my-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

.my-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.my-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.my-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.my-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
}

.my-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

.my-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
}

.my-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.my-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
}

.my-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}

.w0 {
    width: 0%;
}

.w5 {
    width: 5%;
}

.w10 {
    width: 10%;
}

.w15 {
    width: 15%;
}

.w20 {
    width: 20%;
}

.w25 {
    width: 25%;
}

.w30 {
    width: 30%;
}

.w35 {
    width: 35%;
}

.w40 {
    width: 40%;
}

.w45 {
    width: 45%;
}

.w50 {
    width: 50%;
}

.iBtn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 396px;
    max-width: 100%;
    min-height: 71px;
    background: var(--b-cl);
    border-radius: 36px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--w-cl);
    letter-spacing: 0.05em;
    transition: 0.3s ease;
}

.iBtn::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    width: 27px;
    aspect-ratio: 1/1;
    background: var(--w-cl);
    border-radius: 50%;
}

.iBtn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 31px;
    transform: translateY(-50%);
    width: 8px;
    aspect-ratio: 5/9;
    background: url(../../images/top_souzoku/ico_btn02.svg) center/100% auto no-repeat;
}

.iBtn.sm {
    width: 302px;
}

.iBtn.large {
    width: 572px;
}

.iBtn.st02 {
    background: var(--2nd-cl);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: 0.3s ease;
    z-index: 10;
}

.header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 146px;
    background: url(../../images/top_souzoku/header_overlay.png) center/1920px auto repeat-x;
    z-index: -1;
}

.header_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s ease;
}

.header_logo {
    margin-bottom: 0;
    padding: 3px 41px 0;
    transition: 0.3s ease;
}

.header_logo a {
    display: inline-block;
}

.header_content {
    display: flex;
    align-items: center;
}

.header_menu {
    align-self: stretch;
    display: flex;
    column-gap: 43px;
    transition: 0.3s ease;
}

.header_menu-item {
    padding-top: 3px;
    display: flex;
    align-items: center;
}

.header_menu-item &gt; span {
    padding-right: 20px;
    cursor: context-menu;
}

.header_menu-item &gt; span::after {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    right: 0;
    width: 11px;
    aspect-ratio: 1/1;
    background: url(../../images/top_souzoku/ico_arr_submenu.svg) center/100% auto no-repeat;
    transition: 0.3s ease;
}

.header_menu-item &gt; span,
.header_menu-item &gt; a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    font-size: 16px;
    font-family: var(--font-zenkaku);
    font-weight: 700;
    color: var(--w-cl);
}

.header_menu-item &gt; span::before,
.header_menu-item &gt; a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--w-cl);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s;
}

.header_menu .submenu {
    padding: 50px 0;
    position: absolute;
    top: 100px;
    left: calc(50% - 550px);
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    min-width: 1100px;
    width: 1100px;
    background: var(--b-cl);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 5;
}

.header_menu .submenu::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: max(200vw, 1260px);
    height: 100%;
    background: var(--b-cl);
    z-index: -1;
}

.header_menu .submenu_item a {
    padding: 16px 30px 15px 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 56px;
    border-radius: 5px;
    border: 1px solid #707070;
    font-size: 15px;
    font-family: var(--font-zenkaku);
    font-weight: 700;
    color: var(--w-cl);
    letter-spacing: 0.05em;
    background: url(../../images/top_souzoku/ico_arr_sub.svg) calc(100% - 17px) 50%/8px auto no-repeat;
}

.header_btn {
    display: flex;
    align-items: center;
}

.header_btn-item a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    min-height: 100px;
}

.header_btn-item a &gt; span {
    padding-top: 36px;
    font-size: 15px;
    font-family: var(--font-zenkaku);
    font-weight: 700;
    color: var(--w-cl);
    letter-spacing: 0.04em;
    text-align: center;
}

.header_btn-item .line {
    background: #06c755;
}

.header_btn-item .line &gt; span {
    background: url(../../images/top_souzoku/ico_line.svg) 50% 0px/31px auto no-repeat;
}

.header_btn-item .contact {
    background: var(--2nd-cl);
}

.header_btn-item .contact &gt; span {
    background: url(../../images/top_souzoku/ico_letter.svg) calc(50% - 1px) 5px/27px auto no-repeat;
}

.header_btn-item .tel {
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header_btn-item .tel .num {
    margin-bottom: 3px;
    font-size: 32px;
    font-family: var(--font-roboto);
    font-weight: 700;
    color: var(--w-cl);
    line-height: 1.125em;
}

.header_btn-item .tel .desc {
    text-align: center;
    font-size: 15px;
    font-family: var(--font-zenkaku);
    font-weight: 500;
    color: var(--w-cl);
    letter-spacing: 0.04em;
    line-height: 1.4em;
}

.header.active,
.header.under {
    padding: 0 15px;
    top: 10px;
    display: flex;
    justify-content: center;
}

.header.active::after,
.header.under::after {
    display: none;
}

.header.active .header_wrap,
.header.under .header_wrap {
    width: 1820px;
    max-width: 100%;
    background: var(--w-cl);
    border-radius: 10px;
    filter: drop-shadow(0px 3px rgba(0, 0, 0, 0.16));
}

.header.active .header_logo,
.header.under .header_logo {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    flex-grow: 1;
    padding: 4px 35px 0;
    opacity: 0.825;
}

.header.active .header_logo::after,
.header.under .header_logo::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 0;
    width: 1px;
    height: calc(100% - 40px);
    background: #dbdbdb;
}

.header.active .header_logo img,
.header.under .header_logo img {
    filter: brightness(0);
}

.header.active .header_menu,
.header.under .header_menu {
    padding: 0 40px;
    column-gap: 25px;
}

.header.active .header_menu-item,
.header.under .header_menu-item {
    padding-top: 0;
}

.header.active .header_menu-item &gt; span,
.header.active .header_menu-item &gt; a,
.header.under .header_menu-item &gt; span,
.header.under .header_menu-item &gt; a {
    color: #414042;
    letter-spacing: 0.03em;
}

.header.active .header_menu-item &gt; span,
.header.under .header_menu-item &gt; span {
    padding-right: 19px;
}

.header.active .header_btn,
.header.under .header_btn {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.header.active .header_btn::before,
.header.under .header_btn::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    width: 1px;
    height: calc(100% - 40px);
    background: #dbdbdb;
}

.header.active .header_btn-item .tel .num,
.header.under .header_btn-item .tel .num {
    color: var(--2nd-cl);
}

.header.active .header_btn-item .tel .desc,
.header.under .header_btn-item .tel .desc {
    color: #808285;
}

.iVisual {
    padding: 126px 0 60px;
    position: relative;
}

.iVisual::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../../images/top_souzoku/iVisual_overlay.png) center/cover no-repeat;
}

.iVisual_slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
}

.iVisual_slider.slick-initialized.slick-slider{
    opacity: 1;
}

.iVisual_slider .slick-list,
.iVisual_slider .slick-track {
    height: 100%;
}

.iVisual_slider-item {
    height: 100%;
}

.iVisual_slider-item .img {
    height: 100%;
}

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

.iVisual_content {
    width: 433px;
    margin-bottom: 31px;
    margin-left: -87px;
    position: relative;
    z-index: 2;
    opacity: 0;
}
.iVisual_content.slick-initialized.slick-slider{
    opacity: 1;
}

.iVisual_content .slick-list {
    overflow: visible;
}

.iVisual_content-item {
    position: relative;
    padding: 53px 66px 48px 70px;
    display: inline-flex;
    flex-direction: column;
    background: var(--w-cl);
    border-radius: 30px;
    filter: drop-shadow(8px 8px rgba(0, 0, 0, 0.16));
}

.iVisual_content-item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -23px;
    transform: translateY(-50%);
    width: 45px;
    aspect-ratio: 1/1;
    background: url(../../images/top_souzoku/ico_visual.svg) center/100% auto no-repeat;
}

.iVisual_content-item .content_sub {
    margin-bottom: 9px;
    font-size: 23px;
    font-family: var(--font-zenmaru);
    font-weight: 700;
    color: var(--main-cl);
    letter-spacing: 0.125em;
    text-align: center;
}

.iVisual_content-item .content_list {
    margin-bottom: 13px;
    display: flex;
    column-gap: 5px;
}

.iVisual_content-item .content_list-item {
    padding: 5px 20px 7px;
    background: var(--main-cl);
    font-size: 22px;
    font-family: var(--font-zenmaru);
    font-weight: 700;
    color: var(--w-cl);
    letter-spacing: 0.03em;
    border-radius: 25px;
}

.iVisual_content-item .content_title {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 54px;
    font-family: var(--font-zenmaru);
    font-weight: 700;
    color: var(--main-cl);
    letter-spacing: 0.1em;
    line-height: 1.75em;
    text-align: center;
}

.iVisual_content-item .content_title::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: calc(100% - 8px);
    height: 9px;
    background: var(--main-cl);
    border-radius: 5px;
    pointer-events: none;
}

.iVisual_bottom {
    position: relative;
    z-index: 2;
}

.iVisual_bottom .title {
    margin-bottom: 26px;
    font-size: 35px;
    font-family: var(--font-zenmaru);
    font-weight: 700;
    color: var(--w-cl);
    letter-spacing: 0.1em;
    text-align: center;
}

.iVisual_bottom .title &gt; span {
    margin-right: 18px;
    padding: 3px 61px 7px 23px;
    border: 3px solid var(--w-cl);
    border-radius: 38px;
    background: url(../../images/top_souzoku/ico_check_circle.svg) calc(100% - 16px) 50%/35px auto no-repeat;
}

.iVisual_btn {
    display: flex;
    column-gap: 20px;
}

.iVisual_btn-item {
    width: calc((100% - 60px) / 4);
    filter: drop-shadow(5px 5px rgba(0, 0, 0, 0.16));
}

.iVisual_btn-item a {
    position: relative;
    padding: 25px 20px 54px;
    display: flex;
    flex-direction: column;
    background: var(--main-cl);
    border-radius: 30px;
    z-index: 2;
    overflow: hidden;
}

.iVisual_btn-item a::before {
    content: "";
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 25px;
    aspect-ratio: 1/1;
    background: url(../../images/top_souzoku/ico_btn.svg) center/100% auto no-repeat;
}

.iVisual_btn-item a::after {
    content: "";
    position: absolute;
    top: 43px;
    left: 0;
    width: 110%;
    height: 100%;
    transform: rotate(-16deg);
    background: #b4a170;
    transform-origin: right;
    z-index: -1;
    transition: all 0.3s ease;
}

.iVisual_btn-item a .sub {
    margin-bottom: 6px;
    font-size: 15px;
    font-family: var(--font-zenkaku);
    font-weight: 500;
    color: var(--w-cl);
    letter-spacing: 0.045em;
}

.iVisual_btn-item a .txt {
    font-size: 23px;
    font-family: var(--font-zenmaru);
    font-weight: 700;
    color: var(--w-cl);
    letter-spacing: 0.05em;
}

@keyframes mainvisual_zoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

.iCase_top {
    padding: 25px 0;
}

.iCase_wrap {
    display: flex;
    align-items: center;
    column-gap: 49px;
}

.iCase_wrap .top_title {
    flex-shrink: 0;
    margin-bottom: 0;
    font-size: 22px;
    font-family: var(--font-zenmaru);
    font-weight: 700;
    color: var(--main-cl);
    letter-spacing: 0.05em;
}

.iCase_wrap .top_list {
    flex-grow: 1;
}

.iCase_wrap .top_list-item a {
    position: relative;
    margin-top: 2px;
    padding-left: 28px;
    display: inline-flex;
    align-items: center;
}

.iCase_wrap .top_list-item a::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: "";
    border-left: solid 9px var(--2nd-cl);
    border-top: solid 5.5px rgba(0, 0, 0, 0);
    border-bottom: solid 5.5px rgba(0, 0, 0, 0);
}

.iCase_wrap .top_list-item .date {
    margin-right: 20px;
    font-size: 14px;
    font-family: var(--font-zenkaku);
    font-weight: 700;
    color: #808285;
    line-height: 1.8em;
    letter-spacing: 0.05em;
}

.iCase_wrap .top_list-item .title {
    display: -webkit-inline-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 16px;
    font-family: var(--font-zenkaku);
    font-weight: 700;
    color: var(--b-cl);
    letter-spacing: 0.05em;
}

.iCase_wrap .top_btn {
    flex-shrink: 0;
}

.iCase_wrap .top_btn a {
    padding: 11px 39px 10px;
    display: inline-block;
    background: var(--b-cl);
    font-size: 14px;
    font-family: var(--font-zenkaku);
    font-weight: 700;
    color: var(--w-cl);
    letter-spacing: 0.04em;
    border-radius: 28px;
}

.iCase_bottom {
    padding: 100px 0 96px;
    background: var(--main-cl);
}

.iCase_heading {
    margin-bottom: 55px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.iCase_heading-en {
    position: absolute;
    top: -1px;
    left: calc(50% + 8px);
    transform: translateX(-50%);
    font-size: 163px;
    font-family: var(--font-roboto);
    font-weight: 700;
    color: var(--w-cl);
    letter-spacing: 0.1em;
    line-height: 1em;
    opacity: 0.15;
}

.iCase_heading-sub {
    position: relative;
    margin-bottom: 26px;
    padding: 6px 14px;
    font-size: 20px;
    font-family: var(--font-zenkaku);
    font-weight: 700;
    color: var(--main-cl);
    letter-spacing: 0.04em;
    background: var(--w-cl);
    border-radius: 8px;
}

.iCase_heading-sub::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-top: solid 8px var(--w-cl);
    border-right: solid 5px rgba(0, 0, 0, 0);
    border-left: solid 5px rgba(0, 0, 0, 0);
}

.iCase_heading-jp {
    position: relative;
    padding: 0 102px;
    text-align: center;
    font-size: 40px;
    font-family: var(--font-zenmaru);
    font-weight: 700;
    color: var(--w-cl);
    letter-spacing: 0.08em;
    line-height: 1.475em;
    letter-spacing: 0.09em;
}

.iCase_heading-jp::before,
.iCase_heading-jp::after {
    content: "";
    position: absolute;
    bottom: 4px;
    width: 4px;
    height: 116px;
    background: var(--w-cl);
    border-radius: 2px;
}

.iCase_heading-jp::before {
    left: 0;
    rotate: -34.5deg;
}

.iCase_heading-jp::after {
    right: 0;
    rotate: 34.5deg;
}

.iCase_heading-jp .large {
    font-size: 50px;
}

.iCase_heading-jp .sm {
    font-size: 33px;
    letter-spacing: 0.05em;
}

.iCase_list {
    margin-bottom: 132px !important;
}

.iCase_list.hidden {
    display: none;
}

.iCase_list .slick-slide {
    margin: 0 15px;
    height: inherit !important;
}

.iCase_list .slick-track {
    display: flex !important;
}

.iCase_list .slick-list {
    margin: 0 -15px;
    overflow: visible;
}

.iCase_list .slick-arrow {
    top: calc(50% - 17px);
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: var(--b-cl);
    background-size: 11px auto;
    background-position: center;
    background-repeat: no-repeat;
    transition: 0.3s ease;
    z-index: 2;
}

.iCase_list .slick-arrow::before {
    display: none;
}

.iCase_list .slick-arrow.slick-prev {
    left: 70px;
    background-image: url(../../images/top_souzoku/ico_arr_prev.svg);
}

.iCase_list .slick-arrow.slick-next {
    right: 70px;
    background-image: url(../../images/top_souzoku/ico_arr_next.svg);
}

.iCase_list .slick-dots {
    bottom: -71px;
}

.iCase_list .slick-dots li {
    margin: 0;
    width: 12px;
    height: 12px;
}

.iCase_list .slick-dots li:not(:last-child) {
    margin-right: 15px;
}

.iCase_list .slick-dots li.slick-active button {
    background: var(--b-cl);
    pointer-events: none;
}

.iCase_list .slick-dots li button {
    padding: 0;
    width: 100%;
    height: 100%;
    background: var(--w-cl);
    border-radius: 50%;
    transition: 0.3s ease;
}

.iCase_list .slick-dots li button::before {
    display: none;
}

.iCase_list-item {
    position: relative;
    padding: 37px 40px 36px;
    background: var(--w-cl);
    border-radius: 30px;
    transition: 0.3s ease;
    filter: drop-shadow(0 5px rgba(0, 0, 0, 0.16));
    opacity: 0.5;
}

.iCase_list-item::after {
    content: "";
    position: absolute;
    bottom: -19px;
    right: 63px;
    border-right: solid 25px var(--w-cl);
    border-bottom: solid 25px rgba(0, 0, 0, 0);
    border-left: solid 25px rgba(0, 0, 0, 0);
    transition: 0.3s ease;
}

.iCase_list-item.slick-active {
    opacity: 1;
}

.iCase_list-item .url {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    z-index: 2;
}

.iCase_list-item .title {
    margin-bottom: 11px;
    display: -webkit-inline-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 18px;
    font-family: var(--font-zenkaku);
    font-weight: 700;
    color: var(--2nd-cl);
    letter-spacing: 0.05em;
    line-height: 1.8em;
}

.iCase_list-item .desc {
    margin-bottom: 21px;
    padding-top: 17px;
    border-top: 2px solid #e5e5e5;
}

.iCase_list-item .desc p {
    display: -webkit-inline-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 14px;
    letter-spacing: 0.05em;
}

.iCase_list-item .date {
    font-size: 14px;
    font-family: var(--font-zenkaku);
    font-weight: 700;
    color: #808285;
    letter-spacing: 0.05em;
}

.iCase_btn {
    text-align: center;
}

.iGreeting {
    position: relative;
    padding-bottom: 94px;
    background: var(--main-cl);
    z-index: 2;
    overflow: hidden;
}

.iGreeting::after {
    content: "";
    position: absolute;
    top: 148px;
    left: 0;
    width: 110%;
    height: 100%;
    transform: rotate(-15deg);
    background: #b2a278;
    transform-origin: right;
    z-index: -1;
    transition: all 0.3s ease;
}

.iGreeting_wrap {
    display: flex;
    column-gap: 170px;
}

.iGreeting_img {
    margin-bottom: 0;
    margin-left: min(max((100vw - 100%)/-2, -460px), -30px);
    filter: drop-shadow(0 10px rgba(0, 0, 0, 0.16));
}

.iGreeting_img img {
    border-radius: 0 100px 100px 0;
}

.iGreeting_content {
    flex-shrink: 0;
    width: 613px;
}

.iGreeting_heading {
    position: relative;
    margin-bottom: 35px;
    padding-top: 67px;
}

.iGreeting_heading-en {
    position: absolute;
    top: -10px;
    left: 101px;
    font-size: 163px;
    font-family: var(--font-roboto);
    font-weight: 700;
    color: var(--w-cl);
    letter-spacing: 0.1em;
    line-height: 1em;
    opacity: 0.15;
}

.iGreeting_heading-sub {
    position: relative;
    margin-bottom: 23px;
    padding: 6px 14px;
    display: inline-flex;
    font-size: 20px;
    font-family: var(--font-zenkaku);
    font-weight: 700;
    color: var(--main-cl);
    letter-spacing: 0.04em;
    background: var(--w-cl);
    border-radius: 8px;
}

.iGreeting_heading-sub::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-top: solid 8px var(--w-cl);
    border-right: solid 5px rgba(0, 0, 0, 0);
    border-left: solid 5px rgba(0, 0, 0, 0);
}

.iGreeting_heading-jp {
    font-size: 35px;
    font-family: var(--font-zenmaru);
    font-weight: 700;
    color: var(--w-cl);
    letter-spacing: 0.1em;
    line-height: 2.315em;
    white-space: nowrap;
}

.iGreeting_heading-jp .underline {
    position: relative;
}

.iGreeting_heading-jp .underline::after {
    content: "";
    position: absolute;
    bottom: -17px;
    left: -3px;
    height: 5px;
    width: calc(100% + 3px);
    background: var(--w-cl);
    border-radius: 3px;
}

.iGreeting_desc {
    margin-bottom: 50px;
}

.iGreeting_desc p {
    color: var(--w-cl);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.875em;
}

.iContact {
    position: relative;
    padding: 106px 0 210px;
    background: url(../../images/top_souzoku/iContact_bg.jpg) center/cover no-repeat;
    z-index: 2;
}

.iContact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--b-cl);
    opacity: 0.6;
    z-index: -1;
}

.iContact_wrap {
    position: relative;
    z-index: 2;
}

.iContact_wrap::after {
    content: "";
    position: absolute;
    bottom: -210px;
    right: -275px;
    width: 790px;
    aspect-ratio: 790/925;
    background: url(../../images/top_souzoku/iContact_img01.png) center/100% auto no-repeat;
    z-index: -1;
}

.iContact_box {
    position: relative;
    margin-bottom: 105px;
    padding: 102px 120px 101px;
    background: var(--b-cl);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.16);
}

.iContact_box::after {
    content: "";
    position: absolute;
    bottom: -61px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    aspect-ratio: 5/3;
    background: url(../../images/top_souzoku/ico_arr_down.svg) center/100% auto no-repeat;
    filter: drop-shadow(0 5px rgba(0, 0, 0, 0.16));
}

.iContact_box-heading {
    position: relative;
    margin-bottom: 0;
    padding: 0 43px;
    font-size: 32px;
    font-family: var(--font-zenmaru);
    font-weight: 700;
    color: var(--w-cl);
    letter-spacing: 0.1em;
    line-height: 1.825em;
    z-index: 2;
}

.iContact_box-heading::before {
    content: "";
    position: absolute;
    top: -25px;
    left: -24px;
    width: 47px;
    height: 65px;
    rotate: -29deg;
    background: url(../../images/top_souzoku/ico_heading01.svg) center/100% auto no-repeat;
    z-index: -1;
}

.iContact_box-heading::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: calc(50% - 2px);
    width: 223px;
    height: 245px;
    transform: translate(-50%, -50%) rotate(18deg);
    background: url(../../images/top_souzoku/ico_heading02.svg) center/100% auto no-repeat;
    z-index: -1;
}

.iContact_box-heading .hl {
    color: var(--main-cl);
}

.iContact_list {
    width: 559px;
}

.iContact_list-item {
    padding-left: 45px;
    font-size: 18px;
    font-family: var(--font-zenkaku);
    font-weight: 500;
    color: var(--w-cl);
    letter-spacing: 0.05em;
    line-height: 1.6em;
    background: url(../../images/top_souzoku/ico_check_rec.svg) 0px 3px/25px auto no-repeat;
}

.iContact_list-item:not(:last-child) {
    margin-bottom: 22px;
}

.iContact_heading {
    margin-bottom: 38px;
}

.iContact_heading-sub {
    position: relative;
    display: inline-block;
    margin-bottom: 42px;
    padding: 6px 14px;
    font-size: 20px;
    font-family: var(--font-zenkaku);
    font-weight: 700;
    color: var(--2nd-cl);
    letter-spacing: 0.05em;
    background: var(--w-cl);
    border-radius: 8px;
}

.iContact_heading-sub::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-top: solid 8px var(--w-cl);
    border-right: solid 5px rgba(0, 0, 0, 0);
    border-left: solid 5px rgba(0, 0, 0, 0);
}

.iContact_heading-jp {
    font-size: 43px;
    font-family: var(--font-zenmaru);
    font-weight: 700;
    color: var(--w-cl);
    letter-spacing: 0.1em;
    line-height: 1.585em;
}

.iContact_heading-jp .hl {
    position: relative;
}

.iContact_heading-jp .hl::before {
    content: "";
    position: absolute;
    top: -10px;
    left: calc(50% - 2px);
    transform: translateX(-50%);
    width: 40px;
    height: 12px;
    background: url(../../images/top_souzoku/ico_heading03.svg) center/100% auto no-repeat;
}

.iContact_desc {
    margin-bottom: 53px;
}

.iContact_desc p {
    font-size: 20px;
    font-family: var(--font-zenkaku);
    font-weight: 700;
    color: var(--w-cl);
    letter-spacing: 0.05em;
    line-height: 1.825em;
}

.iContact_btn {
    display: flex;
    column-gap: 25px;
}

.iContact_btn-item {
    width: calc((100% - 50px) / 3);
}

.iContact_btn-item a {
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 149px;
    border-radius: 15px;
    filter: drop-shadow(0 5px rgba(0, 0, 0, 0.16));
    z-index: 2;
    overflow: hidden;
}

.iContact_btn-item a::after {
    content: "";
    position: absolute;
    top: 14px;
    left: 0;
    width: 110%;
    height: 100%;
    transform: rotate(-17deg);
    transform-origin: right;
    z-index: -1;
    transition: all 0.3s ease;
}

.iContact_btn-item .line {
    background: #06c755;
}

.iContact_btn-item .line::after {
    background: #01ba4d;
}

.iContact_btn-item .line &gt; span {
    padding-top: 46px;
    padding-bottom: 1px;
    font-size: 22px;
    font-family: var(--font-zenkaku);
    font-weight: 700;
    color: var(--w-cl);
    letter-spacing: 0.05em;
    background: url(../../images/top_souzoku/ico_line.svg) 50% 0px/39px auto no-repeat;
}

.iContact_btn-item .contact {
    background: var(--main-cl);
}

.iContact_btn-item .contact::after {
    background: #b4a378;
}

.iContact_btn-item .contact::before {
    content: "無料";
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 54px;
    aspect-ratio: 1/1;
    border: 1px solid var(--w-cl);
    border-radius: 50%;
    font-size: 12px;
    font-family: var(--font-zenkaku);
    font-weight: 700;
    color: var(--w-cl);
    letter-spacing: 0.05em;
}

.iContact_btn-item .contact &gt; span {
    padding-top: 37px;
    font-size: 20px;
    font-family: var(--font-zenkaku);
    font-weight: 700;
    color: var(--w-cl);
    letter-spacing: 0.05em;
    line-height: 1.25em;
    text-align: center;
    background: url(../../images/top_souzoku/ico_letter.svg) 50% 1px/33px auto no-repeat;
}

.iContact_btn-item .contact &gt; span .sm {
    font-size: 14px;
}

.iContact_btn-item .tel {
    background: var(--b-cl);
}

.iContact_btn-item .tel::after {
    background: #353436;
}

.iContact_btn-item .tel_num {
    margin-bottom: 4px;
    padding-left: 32px;
    font-size: 31px;
    font-family: var(--font-roboto);
    font-weight: 700;
    color: var(--w-cl);
    background: url(../../images/top_souzoku/ico_tel.svg) 1px 8px/25px auto no-repeat;
}

.iContact_btn-item .tel_desc {
    margin-bottom: 3px;
    font-size: 14px;
    font-family: var(--font-zenkaku);
    font-weight: 500;
    color: var(--w-cl);
    letter-spacing: 0.05em;
    line-height: 1.45em;
    text-align: center;
}

.iContact.contact-2 {
    padding: 120px 0 117px;
    background: url(../../images/top_souzoku/iContact_bg02.jpg) center/cover no-repeat;
}

.iContact.contact-2 .iContact_btn{
    justify-content: center;
}

.iContact.contact-2 .iContact_wrap::after {
    display: none;
}

.iContact.contact-2 .iContact_heading {
    margin-bottom: 33px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.iContact.contact-2 .iContact_heading-sub {
    margin-bottom: 44px;
}

.iContact.contact-2 .iContact_heading-jp {
    text-align: center;
}

.iContact.contact-2 .iContact_desc p {
    text-align: center;
    font-weight: 400;
}

.iAbout {
    background: #f7f7f7;
}

.iAbout_wrap {
    position: relative;
    margin-top: -96px;
    padding: 96px 0 130px;
    z-index: 2;
}

.iAbout_wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: max(min(100% + 250px, 100vw - 30px), 1230px);
    background: #f7f7f7;
    height: 100%;
    border-radius: 30px 30px 0 0;
    z-index: -1;
}

.iAbout_heading {
    margin-bottom: 86px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.iAbout_heading-sub {
    position: relative;
    margin-bottom: 33px;
    padding: 6px 14px;
    display: inline-flex;
    font-size: 20px;
    font-family: var(--font-zenkaku);
    font-weight: 700;
    color: var(--w-cl);
    letter-spacing: 0.05em;
    background: var(--2nd-cl);
    border-radius: 8px;
}

.iAbout_heading-sub::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-top: solid 8px var(--2nd-cl);
    border-right: solid 5px rgba(0, 0, 0, 0);
    border-left: solid 5px rgba(0, 0, 0, 0);
}

.iAbout_heading-jp {
    font-size: 34px;
    font-family: var(--font-zenmaru);
    font-weight: 700;
    color: var(--b-cl);
    letter-spacing: 0.1em;
    text-align: center;
}

.iAbout_heading-jp .hl {
    color: var(--2nd-cl);
}

.iAbout_box {
    margin-bottom: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 40px;
}

.iAbout_location {
    position: relative;
    margin: 41px 31px 0;
}

.iAbout_location::after {
    content: "";
    position: absolute;
    top: -482px;
    left: -1402px;
    width: 2881px;
    aspect-ratio: 2881/1462;
    background: url(../../images/top_souzoku/iAbout_img02.svg) center/100% auto no-repeat;
    z-index: -1;
}

.iAbout_location-img {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.iAbout_location-img .track {
    position: absolute;
    z-index: 1;
    left: -38%;
    top: -92%;
    max-width: 159%;
}

.iAbout_location-city li {
    position: absolute;
    z-index: 2;
    font-size: 13px;
    font-family: var(--font-zenkaku);
    font-weight: 400;
    color: var(--w-cl);
    letter-spacing: 0.05em;
}

.iAbout_location-city li:first-child {
    top: 55.5%;
    left: 8.6%;
}

.iAbout_location-city li:last-child {
    top: 26%;
    right: 3.9%;
}

.iAbout_location-marker li {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 15px;
    font-family: var(--font-zenkaku);
    font-weight: 700;
    color: var(--w-cl);
    letter-spacing: 0.05em;
}

.iAbout_location-marker li:first-child {
    top: 38.5%;
    left: 45.3%;
}

.iAbout_location-marker li:first-child img {
    margin-left: 7px;
}

.iAbout_location-marker li:last-child {
    top: 34.7%;
    right: 18.3%;
}

.iAbout_location-marker li:last-child img {
    margin-bottom: 1px;
    margin-left: 3px;
}

.iAbout_location-marker li img {
    animation: bound 2.8s infinite;
}

@keyframes bound {
    0% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

.iAbout_content {
    position: relative;
    z-index: 2;
    width: 527px;
}

.iAbout_content-heading {
    margin-bottom: 22px;
    font-size: 25px;
    font-family: var(--font-zenmaru);
    font-weight: 700;
    color: var(--2nd-cl);
    letter-spacing: 0.1em;
    line-height: 1.8em;
}

.iAbout_content-desc p {
    letter-spacing: 0.05em;
    line-height: 1.875em;
}

.iAbout_banner {
    margin-bottom: 130px;
    position: relative;
    display: flex;
    min-height: 353px;
    border-radius: 30px;
    overflow: hidden;
    filter: drop-shadow(5px 5px rgba(0, 0, 0, 0.16));
}

.iAbout_banner-content {
    position: relative;
    padding: 30px 60px 31px 67px;
    width: 429px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--b-cl);
    z-index: 2;
}

.iAbout_banner-content::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -47px;
    transform: translateY(-50%);
    width: 1034px;
    aspect-ratio: 1/1;
    background: var(--b-cl);
    border-radius: 50%;
    z-index: -1;
}

.iAbout_banner-content .title {
    margin-bottom: 27px;
    font-size: 25px;
    font-family: var(--font-zenmaru);
    font-weight: 700;
    color: var(--w-cl);
    letter-spacing: 0.1em;
    line-height: 1.85em;
    white-space: nowrap;
}

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

.iAbout_service:not(:last-child) {
    margin-bottom: 80px;
}

.iAbout_service-item {
    display: flex;
    column-gap: 91px;
}

.iAbout_service-item:not(:last-child) {
    margin-bottom: 80px;
}

.iAbout_service .wrap {
    flex-shrink: 0;
    width: 493px;
}

.iAbout_service .img {
    margin-top: 91px;
    margin-right: min(max((100vw - 100%)/-2, -460px), -81px);
    filter: drop-shadow(0 10px rgba(0, 0, 0, 0.16));
}

.iAbout_service .img img {
    border-radius: 50px 0 0 50px;
}

.iAbout_service .box {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    min-height: 445px;
    padding: 60px 80px 48px;
    background: var(--main-cl);
    border-radius: 30px;
    filter: drop-shadow(5px 5px rgba(0, 0, 0, 0.16));
}

.iAbout_service .box::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -31px;
    transform: translateY(-50%);
    border-left: solid 37px var(--main-cl);
    border-top: solid 22px rgba(0, 0, 0, 0);
    border-bottom: solid 22px rgba(0, 0, 0, 0);
}

.iAbout_service .box .sub {
    margin-bottom: 19px;
    padding: 5px 20px 6px;
    background: var(--w-cl);
    border-radius: 25px;
    font-size: 20px;
    font-family: var(--font-zenmaru);
    font-weight: 700;
    color: var(--main-cl);
    letter-spacing: 0.055em;
}

.iAbout_service .box .title {
    font-size: 30px;
    font-family: var(--font-zenmaru);
    font-weight: 700;
    color: var(--w-cl);
    letter-spacing: 0.1em;
    line-height: 2.255em;
}

.iAbout_service .box .title .underline {
    position: relative;
}

.iAbout_service .box .title .underline::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    height: 5px;
    width: 100%;
    background: var(--w-cl);
    border-radius: 3px;
}

.iAbout_service .content {
    position: relative;
    padding: 56px 0 56px 46px;
    min-height: 401px;
}

.iAbout_service .content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: max(200vw, 1920px);
    height: calc(100% + 117px);
    background: var(--w-cl);
    z-index: -1;
}

.iAbout_service .content_title {
    position: relative;
    margin-bottom: 17px;
    font-size: 25px;
    font-family: var(--font-zenmaru);
    font-weight: 700;
    color: var(--2nd-cl);
    letter-spacing: 0.1em;
    line-height: 1.8em;
}

.iAbout_service .content_title::before {
    content: "";
    position: absolute;
    top: 5px;
    left: -51px;
    width: 39px;
    aspect-ratio: 30/23;
    background: url(../../images/top_souzoku/ico_check.svg) center/100% auto no-repeat;
}

.iAbout_service .content_desc p {
    letter-spacing: 0.05em;
    line-height: 1.875em;
}

.iAbout_service .content_desc p .sm {
    font-size: 12px;
}

.iAbout_btn {
    text-align: center;
}

.iArea {
    position: relative;
    padding: 203px 0 331px;
    background: url(../../images/top_souzoku/iArea_bg.jpg) center/cover no-repeat;
}

.iArea::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--b-cl);
    opacity: 0.6;
}

.iArea::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 221px;
    background: url(../../images/top_souzoku/iArea_bg02.svg) center top/1920px auto no-repeat;
}

.iArea_wrap {
    position: relative;
    z-index: 3;
}

.iArea_box {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 125px;
    padding: 36px 108px 35px 79px;
    background: var(--w-cl);
    border-radius: 30px;
}

.iArea_box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 26px;
    width: 505px;
    aspect-ratio: 505/287;
    background: url(../../images/top_souzoku/iArea_img02.png) center/100% auto no-repeat;
}

.iArea_note {
    margin-bottom: 0;
    position: absolute;
    top: -31px;
    left: -32px;
    width: 158px;
    aspect-ratio: 1/1;
    background: var(--2nd-cl);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-family: var(--font-zenmaru);
    font-weight: 700;
    color: var(--w-cl);
    letter-spacing: 0.1em;
    line-height: 1.55em;
    text-align: center;
}

.iArea_note &gt; span {
    display: none;
}

.iArea_note::after {
    content: "";
    display: inline-block;
    width: 109px;
    aspect-ratio: 109/79;
    background: url(../../images/top_souzoku/iArea_img03.png) center/100% auto no-repeat;
}

.iArea_img {
    margin-bottom: 0;
}

.iArea_content {
    padding-top: 52px;
    width: 389px;
    display: flex;
    flex-direction: column;
}

.iArea_content-heading {
    margin-bottom: 22px;
    font-size: 29px;
    font-family: var(--font-zenmaru);
    font-weight: 700;
    color: var(--b-cl);
    letter-spacing: 0.1em;
    line-height: 1.525em;
}

.iArea_content-heading .hl {
    color: var(--2nd-cl);
}

.iArea_content-heading .sm {
    letter-spacing: 0.1em;
    font-size: 25px;
}

.iArea_content-desc {
    margin-bottom: 52px;
}

.iArea_content-desc p {
    letter-spacing: 0.05em;
    line-height: 1.875em;
}

.iArea_content-btn {
    margin-right: -63px;
    align-self: flex-end;
}

.iKnowledge {
    padding: 14px 0 124px;
    background: var(--main-cl);
}

.iKnowledge_heading {
    margin-bottom: 46px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.iKnowledge_heading-en {
    position: absolute;
    top: -35px;
    left: calc(50% + 8px);
    transform: translateX(-50%);
    font-size: 163px;
    font-family: var(--font-roboto);
    font-weight: 700;
    color: var(--w-cl);
    letter-spacing: 0.1em;
    line-height: 1em;
    opacity: 0.15;
}

.iKnowledge_heading-sub {
    position: relative;
    margin-bottom: 35px;
    padding: 6px 14px;
    font-size: 20px;
    font-family: var(--font-zenkaku);
    font-weight: 700;
    color: var(--main-cl);
    letter-spacing: 0.05em;
    background: var(--w-cl);
    border-radius: 8px;
}

.iKnowledge_heading-sub::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-top: solid 8px var(--w-cl);
    border-right: solid 5px rgba(0, 0, 0, 0);
    border-left: solid 5px rgba(0, 0, 0, 0);
}

.iKnowledge_heading-jp {
    text-align: center;
    font-size: 34px;
    font-family: var(--font-zenmaru);
    font-weight: 700;
    color: var(--w-cl);
    letter-spacing: 0.1em;
    line-height: 1.475em;
}

.iKnowledge_list {
    margin-bottom: 67px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.iKnowledge_list-item a {
    position: relative;
    padding: 40px 38px 61px 40px;
    display: flex;
    flex-direction: column;
    background: var(--2nd-cl);
    border-radius: 30px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.16);
}

.iKnowledge_list-item a::before {
    content: "";
    position: absolute;
    bottom: 22px;
    right: 19px;
    width: 34px;
    aspect-ratio: 1/1;
    background: url(../../images/top_souzoku/ico_btn03.svg) center/100% auto no-repeat;
}

.iKnowledge_list-item a::after {
    content: "";
    position: absolute;
    top: 43px;
    left: 0;
    width: 110%;
    height: 100%;
    transform: rotate(-15deg);
    background: #9a8550;
    transform-origin: right;
    z-index: -1;
    transition: all 0.3s ease;
}

.iKnowledge_list-item a .stt {
    margin-bottom: 11px;
    font-size: 18px;
    font-family: var(--font-zenmaru);
    font-weight: 700;
    color: var(--w-cl);
    letter-spacing: 0.105em;
}

.iKnowledge_list-item a .stt .num {
    font-size: 25px;
}

.iKnowledge_list-item a .title {
    font-size: 25px;
    font-family: var(--font-zenmaru);
    font-weight: 700;
    color: var(--w-cl);
    letter-spacing: 0.1em;
    line-height: 1.625em;
}

.iKnowledge_btn {
    text-align: center;
}

.iSolution {
    position: relative;
    padding: 113px 0 95px;
    overflow: hidden;
}

.iSolution .inner {
    width: 1327px;
}

.iSolution_heading {
    margin-bottom: 27px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.iSolution_heading-en {
    position: absolute;
    top: 9px;
    left: calc(50% + 8px);
    transform: translateX(-50%);
    font-size: 163px;
    font-family: var(--font-roboto);
    font-weight: 700;
    color: var(--w-cl);
    letter-spacing: 0.1em;
    line-height: 1em;
    z-index: -1;
}

.iSolution_heading-sub {
    position: relative;
    margin-bottom: 38px;
    padding: 6px 14px;
    font-size: 20px;
    font-family: var(--font-zenkaku);
    font-weight: 700;
    color: var(--w-cl);
    letter-spacing: 0.05em;
    background: var(--2nd-cl);
    border-radius: 8px;
}

.iSolution_heading-sub::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-top: solid 8px var(--2nd-cl);
    border-right: solid 5px rgba(0, 0, 0, 0);
    border-left: solid 5px rgba(0, 0, 0, 0);
}

.iSolution_heading-jp {
    text-align: center;
    font-size: 34px;
    font-family: var(--font-zenmaru);
    font-weight: 700;
    color: var(--b-cl);
    letter-spacing: 0.1em;
    line-height: 1.475em;
}

.iSolution_heading-jp .hl {
    color: var(--2nd-cl);
}

.iSolution_desc {
    position: relative;
    margin-bottom: 50px;
    z-index: 2;
}

.iSolution_desc p {
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.85em;
}

.iSolution_list {
    position: relative;
    margin-bottom: 53px;
    display: flex;
    column-gap: 56px;
}

.iSolution_list::before {
    content: "";
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    height: max(100vh, 890px);
    width: max(100vw, 1920px);
    background: #f7f7f7;
    z-index: -1;
}

.iSolution_list-item {
    position: relative;
    width: calc((100% - 112px) / 3);
}

.iSolution_list-item .stt {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 111px;
    aspect-ratio: 1/1;
    background: var(--2nd-cl);
    border-radius: 50%;
    font-size: 14px;
    font-family: var(--font-zenmaru);
    font-weight: 900;
    color: var(--w-cl);
    letter-spacing: 0.105em;
    z-index: 3;
}

.iSolution_list-item .stt &gt; span {
    padding-top: 25px;
    padding-right: 4px;
    padding-bottom: 7px;
    background: url(../../images/top_souzoku/ico_check_w.svg) 50% 2px/33px auto no-repeat;
}

.iSolution_list-item .stt_num {
    font-size: 23px;
}

.iSolution_list-item a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
}

.iSolution_list-item a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--b-cl);
    opacity: 0.6;
    border-radius: 50%;
    z-index: -1;
}

.iSolution_list-item a .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: 0.4s ease;
    z-index: -2;
}

.iSolution_list-item a .title {
    margin-bottom: 15px;
    font-size: 26px;
    font-family: var(--font-zenmaru);
    font-weight: 700;
    color: var(--w-cl);
    letter-spacing: 0.1em;
    line-height: 1.625em;
    text-align: center;
}

.iSolution_list-item a .desc {
    color: var(--w-cl);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.825em;
    text-align: center;
}

.iSolution_btn {
    text-align: center;
}

.footer {
    background: var(--b-cl);
}

.footer_wrap {
    padding: 100px 0 96px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer_content {
    width: 454px;
}

.footer_logo {
    margin-bottom: 38px;
}

.footer_logo a {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer_logo img {
    margin-bottom: 10px;
}

.footer_logo .sub {
    padding: 3px 18px 3px 20px;
    margin-left: 12px;
    color: var(--w-cl);
    font-weight: 700;
    letter-spacing: 0.05em;
    border: 3px solid var(--w-cl);
    border-radius: 8px;
}

.footer_address {
    margin-bottom: 40px;
}

.footer_address-title {
    margin-bottom: 2px;
    color: var(--w-cl);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.footer_address-txt {
    margin-bottom: 13px;
    color: var(--w-cl);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.footer_address-btn a {
    display: inline-block;
    padding: 0px 29px 4px 30px;
    background: #2e2e2f;
    border-radius: 20px;
}

.footer_address-btn a &gt; span {
    padding-left: 19px;
    color: var(--w-cl);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    background: url(../../images/top_souzoku/ico_map.svg) 1px 5px/9px auto no-repeat;
}

.footer_partner {
    margin-bottom: 26px;
    display: flex;
    flex-direction: column;
}

.footer_partner-item:not(:last-child) {
    margin-bottom: 10px;
}

.footer_partner-item a {
    padding: 14px 58px 14px 14px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    min-height: 77px;
    background:
        url(../../images/top_souzoku/ico_link.svg) calc(100% - 23px) 50%/15px auto no-repeat,
        #2e2e2f;
    border-radius: 8px;
}

.footer_partner-item a.space {
    padding-left: 20px;
}

.footer_partner-item a .title {
    flex-shrink: 0;
    padding-top: 3px;
    color: var(--w-cl);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.footer address {
    color: #9c9fa3;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 2em;
}

.footer_menu-wrap {
    margin-top: 4px;
    width: 461px;
}

.footer_menu {
    display: flex;
    flex-wrap: wrap;
    column-gap: 50px;
}

.footer_menu-item:not(:last-child) {
    margin-bottom: 41px;
}

.footer_menu-item &gt; span,
.footer_menu-item &gt; a {
    padding-left: 2px;
    color: var(--w-cl);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.footer_menu-item &gt; span {
    margin-bottom: 18px;
    display: inline-block;
}

.footer_menu-item &gt; a {
    padding-right: 38px;
    background: url(../../images/top_souzoku/ico_menu.svg) 100% 50%/24px auto no-repeat;
}

.footer_menu .submenu {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 46px;
}

.footer_menu .submenu_item {
    width: 150px;
}

.footer_menu .submenu_item a {
    position: relative;
    padding-left: 14px;
    color: var(--w-cl);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.footer_menu .submenu_item a::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 6px;
    height: 1px;
    background: var(--w-cl);
}

.footer_bottom {
    padding: 50px 0;
    background: #2e2e2f;
}

.footer_img {
    text-align: center;
}
</pre></body></html>