@charset "utf-8";

/* ==============================

    サイト設定　適宜変更箇所

============================== */

body,
html {
    font-size: 18px;
}

body {
    color: #2d322c;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
}

body:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 9px solid #5c9458;
    /* border-radius: 30px; */
    pointer-events: none;
    z-index: 9999;
    box-sizing: border-box;
}

body:after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 17px solid #5c9458;
    border-radius: 30px;
    pointer-events: none;
    z-index: 9999;
    box-sizing: border-box;
}

strong {
    color: #5c9458;
}

/*html {
    scroll-behavior: smooth;
}*/

a,
a img {
    color: #2d322c;
    text-decoration: none;
    transition: all 0.2s ease 0s;
}

/*下層ページタイトル*/
.under-v {
    padding: 0;
    text-align: center;
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/contact-v.png);
    width: 90%;
    margin: 0 auto;
    border-radius: 40px;
    height: 466px;
    position: relative;
    background-position: center;
    background-size: cover;
}

.under-v h1:before {
    content: 'NEWS';
    color: #5c9458;
    font-size: 24px;
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    margin: auto;
}

.under-v h1 {
    padding-top: 45px;
    height: fit-content;
    position: absolute;
    bottom: 0;
    top: 0;
    margin: auto;
    left: 0;
    right: 0;
    text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
}

h2 {
    font-size: 3.6rem;
}

h2::before {
    font-size: 2.0em;
}

h2[data-name]::before {
    line-height: 0.6;
    font-size: 0.6em;
    font-weight: bold;
}

h3 {
    font-size: 2.6rem;
}

.wp-block-button {
    font-size: 1.2rem;
}

.wp-block-button[data-name]::before {
    font-size: 0.8em;
    font-weight: bold;
}

/*PCでは不要な場合*/
.nav-wrapper {
    display: none;
}

/* ==============================

    サイト設定

============================== */

.inner-s {
    max-width: 960px;
    margin: 0 auto;
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
}

.inner-l {
    max-width: 1440px;
    margin: 0 auto;
}

/* カラー */
.red {
    color: #6E0B0B;
    font-weight: bold;
}

/*画像ホバー時*/

.img-hover {
    transition: .6s;
}

.img-hover:hover {
    opacity: .6;
}

.flex-row {
    flex-direction: row-reverse;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

/* ==============================

　　固定メニュー

　============================== */

.fix_nav.sp_disp.sp {
    position: fixed;
    z-index: 300;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: black;
}

.wp-block-group.fix_nav.sp_disp-inner {
    gap: 0;
}

.kotei-menu {
    color: #fff;
    padding: 5px 0;
    text-align: center;
    border-right: 0.5px solid #fff;
    position: relative;
}

.kotei-menu:last-child {
    border-right: none;
}

/*メニュー数*/

.sp_disp-4 .kotei-menu {
    width: 25%;
}

.sp_disp-3 .kotei-menu {
    width: 33.3333333333%;
}

.sp_disp-2 .kotei-menu {
    width: 50%;
}

.sp_disp-1 .kotei-menu {
    width: 100%;
}

/* ==============================

ヘッダーの設定

　============================== */

header {
    width: 100%;
    transition: .6s;
}

.header-inner {
    transition: .6s;
}

/*適宜修正*/

header {
    position: fixed;
    top: 38px;
    width: 100%;
    z-index: 300;
    max-width: 1100px;
    right: 34px;
    background-color: #5c9458;
    border-radius: 40px;
    padding: 11px 19px 8px 41px;
}

.fix_nav.sp_disp.sp {
    display: none;
}

/* ==============================
    
    メインビジュアル
    
　============================== */

/*メインビジュアル　relative*/

.mainv {
    z-index: 0;
    position: relative;
    height: 100vh;
}

.slider-01 {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-height: 785px;
    height: 90%;
    position: absolute;
    top: 1px;
    bottom: 0;
    margin: auto;
    border-radius: 60px;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.slider-01 .slides {
    display: flex;
    gap: 30px;
    position: relative;
}

.slider-01 .slide {
    display: none;
    flex: 0 0 65%;
}

.slider-01 .slide.showing {
    display: block;
}

/* ポワンと浮かび上がるアニメーション（slide用） */
.powan-effect {
    animation: powanAnimation 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes powanAnimation {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* 右から左へ流れるアニメーション（PCプレビュー用） */
.flow-left {
    animation: flowLeftEffect 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes flowLeftEffect {
    0% {
        transform: translateX(50px);
        opacity: 0.5;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


/* ポワンと浮かび上がる（〜1400pxのスマホ用） */
.powan-effect {
    animation: powanAnimation 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes powanAnimation {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.slider-01 .slide {
    flex: 0 0 65%;
}

.slider-01 .slide img,
.slider-01 .preview-item img,
.slider-01 .left-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 60px;
}

/* 右から左へ流れるアニメーション */
.flow-left {
    animation: flowLeftEffect 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes flowLeftEffect {
    0% {
        transform: translateX(100px);
        opacity: 0.5;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.slider-01 .preview-area {
    display: flex;
    flex: 1;
    gap: 55px;
    margin-top: 13px;
}

.slider-01 .preview-item,
.slider-01 .left-preview-item {
    cursor: pointer;
    flex: 1;
    height: 230px;
    border-radius: 60px;
    overflow: hidden;
}

.wp-block-group.copy-box {
    position: absolute;
    bottom: 51px;
    right: 4%;
    z-index: 999;
}

.slider-01 .wp-block-group.next-prev {
    display: none;
}

.slider-01 .slide,
.slider-01 .slide img,
.slider-01 .wp-block-group.slide.showing,
.slider-01 .wp-block-group.slide.showing img {
    border-radius: 60px !important;
}


/* ==============================
    
    特定商取引に基づく表記・テーブル
    
　============================== */

.wp-block-group.tokusho-wrap {
    padding: 80px 0;
}

figure.wp-block-table td,
figure.wp-block-table th {
    border: none;
    padding: 18px 17px;
}

figure.wp-block-table {
    border: 1px solid #ccc;
}

.wp-block-table td:first-of-type {
    width: 50%;
    background-color: #ccc;
    border-bottom: 1px solid #fff;
}

.wp-block-table tr td {
    border-bottom: 1px solid #ccc;
}

.wp-block-table tr:last-of-type td {
    border-bottom: none;
}

/* ==============================
    
    個人情報保護方針
    
　============================== */

.wp-block-group.policy-wrap {
    padding: 80px 0;
    font-size: 16px;
    line-height: 2;
}

.wp-block-group.policy-wrap p {
    margin-bottom: 35px;
}

.wp-block-group.policy-wrap li {
    margin-bottom: 26px;
}

/* ==============================
    
    スペーサー
    
　============================== */

.vk_spacer-display-tablet,
.vk_spacer-display-mobile {
    display: none !important;
}

/* ==============================

　　↓　PC版テーマ専用CSSは下記から記述　↓

　============================== */
br.sp2 {
    display: none;
}

body {
    background: #fffef2;
}

figure.wp-block-image.size-full.logo.img-hover {
    max-width: 175px;
}

.wp-block-buttons {
    padding: 0;
}

header .wp-block-buttons {
    background: #5c9458;
    width: 199px !important;
}

header .wp-block-buttons .wp-block-button a {
    font-size: 18px;
    background: #fff;
    color: #5c9458;
    padding: 9px 0 10px;
}

.wp-block-buttons .wp-block-button,
.wp-block-buttons .wp-block-button a {
    background: none;
    padding: 0;
    width: 100%;
}

.wp-block-buttons.recruit-btn .wp-block-button a {
    background: #446a42;
    position: relative;
    padding-left: 17px;
    color: #fff;
}

.wp-block-buttons.recruit-btn.is-layout-flex.wp-block-buttons-is-layout-flex {
    margin-right: 12px;
}

.wp-block-navigation-submenu .wp-block-navigation__submenu-icon svg {
    display: none;
}

nav.header-inner-menu ul li a {
    color: #fff !important;
}

.wp-block-buttons.recruit-btn .wp-block-button a:before {
    content: '';
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/recruitico.png);
    background-size: contain;
    display: inline-block;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 5px;
    left: 34px;
    bottom: 0;
    margin: auto;
    background-repeat: no-repeat;
}

ul.wp-block-navigation__submenu-container.wp-block-navigation-submenu {
    border: none !important;
    top: 26px !important;
    min-width: 400px !important;
    background: none !important;
}

.wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content {
    background: #5c9458 !important;
    font-size: 16px !important;
    padding: 20px 18px 0 !important;
}

.wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item:first-of-type>.wp-block-navigation-item__content {
    border-radius: 10px 10px 0 0 !important;
}

.wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item:last-of-type>.wp-block-navigation-item__content {
    border-radius: 0 0 10px 10px !important;
    padding-bottom: 20px !important;
}

.wp-block-group.news-title .wp-block-group.midashi h2 {
    margin-bottom: 20px;
}

.wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content:hover {
    color: #446a42 !important;
}

/* 通常時のスタイル設定 */
header .wp-block-buttons .wp-block-button a {
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
    transition: transform 0.3s ease;
}

/*
header .wp-block-buttons .wp-block-button a:hover {
    color: #fff;
}*/

/* 背景の「流れ」を作るための擬似要素 */
header .wp-block-buttons .wp-block-button a::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #f2f6e6;
    transition: left 0.4s ease;
    z-index: -1;
}


header .wp-block-buttons.recruit-btn .wp-block-button a::after {
    background-color: #355533;
}

/* ホバー時の動き */
header .wp-block-buttons .wp-block-button a:hover {
    transform: scale(1.02);
}

header .wp-block-buttons .wp-block-button a:hover::after {
    left: 0;
    /* 左からスッと入ってくる */
}

figure.wp-block-image.size-full.kikuyaco {
    max-width: 220px;
}

figure.wp-block-image.size-full.touching {
    max-width: 713px;
    margin: 24px 0 36px;
}

h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
    font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

.wp-block-group.mainv h1 {
    font-size: 56px;
    letter-spacing: 2px;
}

.mainv h2 {
    font-size: 28px;
    margin: 16px 0 21px;
}

.mainv h3 span {
    font-size: 28px;
    padding: 0 8px;
}

.mainv h3 {
    font-size: 20px;
    color: #5c9458;
}

.wp-block-group.mainv {
    max-width: 1750px;
    width: 90%;
    margin: auto;
    position: relative;
}

figure.wp-block-image.size-full.is-resized.mainv-illust {
    position: absolute;
    top: 62px;
    right: -53px;
}




.wp-block-group.news-title .wp-block-group.midashi h3 {
    margin-bottom: 2px;
}

.wp-block-group.midashi h2 {
    font-size: 36px;
}

.wp-block-group.midashi h3 {
    font-size: 20px;
    color: #5c9458;
    margin-bottom: 12px;
}

.wp-block-group.news-title {
    width: 409px;
}

ul.top-news-list li a {
    padding: 25px 0;
    border-bottom: 2px dotted #446a42;
}

ul.top-news-list {
    width: 90%;
}

.wp-block-buttons.btn {
    width: fit-content;
}

.wp-block-group.under-business-box p {
    height: 113px;
}

.wp-block-buttons.green-btn {
    margin-left: auto;
    margin-right: auto;
}

.wp-block-buttons.btn .wp-block-button a:hover:before,
.wp-block-group.foot-btn-flex .wp-block-buttons .wp-block-button a:hover:before,
.wp-block-buttons.green-btn .wp-block-button a:hover:before {
    right: 0;
    background: #5c9458;
    width: 70px;
    height: 70px;
    border: none;
    color: #fff;
}

.wp-block-buttons.btn .wp-block-button a:before,
.wp-block-group.foot-btn-flex .wp-block-buttons .wp-block-button a:before,
.wp-block-buttons.green-btn .wp-block-button a:before {
    content: '→';
    width: 72px;
    height: 72px;
    display: block;
    border-radius: 50%;
    border: 1px solid;
    line-height: 2.8;
    transform: rotate(-20deg);
    text-align: center;
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: .6s;
}

.wp-block-buttons.btn .wp-block-button a:hover {
    color: #5c9458;
    font-size: 21px;
}

.wp-block-buttons.btn .wp-block-button a {
    color: inherit;
    font-size: 22px;
    font-weight: 600;
    text-align: left;
    padding: 27px 96px 27px 10px;
    position: relative;
    transition: .6s;
}

.wp-block-group.top-news-flex {
    padding: 80px 0 100px;
}

.wp-block-group.top-about-wrap {
    padding-bottom: 144px;
}

.wp-block-group.midashi h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

h2,
h3,
h4,
h5,
h6 {
    line-height: 1.7;
    font-weight: 600;
}

p strong {
    font-weight: 700;
}

p.has-text-align-right.owner-name-txt {
    margin-top: 10px;
}

p {
    line-height: 2.1;
}

.wp-block-group.btn-flex {
    margin-top: 59px;
    gap: 41px !important;
}

figure.wp-block-image.size-full.top-about-illust.il {
    top: -46px;
    right: 90px;
}

figure.wp-block-image.il {
    max-width: fit-content;
    position: absolute;
}

.wp-block-group.top-about-wrap .inner {
    position: relative;
}

figure.wp-block-image.size-full.top-about-illust2.il {
    top: 264px;
    left: 65px;
}

.wp-block-group.top-about-wrap {
    padding-bottom: 195px;
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/03/top-about1.png), url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/03/top-about2.png);
    background-repeat: no-repeat;
    background-position: top right, bottom 198px left;
    padding-top: 38px;
}

.wp-block-group.top-about-wrap p.has-text-align-center {
    line-height: 2.5;
}

.wp-block-group.bk {
    background-color: #f2f6e6;
    border-radius: 60px;
    width: 99%;
    margin: 0 auto;
    position: relative;
}

h2 {
    font-size: 36px;
}

.wp-block-group.en-midashi-wrap h2 {
    margin-top: 20px;
    color: #5c9458;
}

.wp-block-group.en-midashi-wrap {
    position: relative;
    top: -35px;
    margin-bottom: 44px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.wp-block-group.top-business-txt {
    width: 50%;
}

figure.wp-block-image.size-full.top-business-img img {
    border-radius: 40px;
    object-fit: cover;
}

figure.wp-block-image.size-full.top-business-img {
    width: 45%;
}

.wp-block-group.top-business-txt h3 {
    font-size: 36px;
    color: #5c9458;
    max-width: fit-content;
    margin: 0 auto;
    padding-left: 100px;
    position: relative;
}

.wp-block-group.top-business-txt h4 {
    font-size: 28px;
    text-align: center;
    margin: 14px 0 22px;
}

.wp-block-buttons.btn {
    margin-left: auto;
    margin-right: auto;
}

.wp-block-group.bk .wp-block-buttons.btn .wp-block-button a:before {
    background-color: #5c9458;
    color: #fff;
    border: 1px solid;
}

.wp-block-group.top-business-flex .wp-block-buttons.btn .wp-block-button a {
    margin-top: 17px;
}

.wp-block-group.bk .wp-block-buttons.btn .wp-block-button a:hover:before {
    background-color: #79a476;
}

.wp-block-group.top-business-txt h3:before {
    content: '';
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/01-3.png);
    background-size: contain;
    display: inline-block;
    width: 77px;
    height: 54px;
    background-repeat: no-repeat;
    background-position: center;
    top: 0;
    position: absolute;
    left: 4px;
    bottom: 0;
    margin: auto;
}


.wp-block-group.top-business-flex:nth-of-type(2) .wp-block-group.top-business-txt h3:before {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/02.png);
}

.wp-block-group.top-business-flex:nth-of-type(3) .wp-block-group.top-business-txt h3:before {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/03.png);
}

.wp-block-group.top-business-flex:nth-of-type(4) .wp-block-group.top-business-txt h3:before {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/04.png);
}

.wp-block-group.top-business-flex:nth-of-type(5) .wp-block-group.top-business-txt h3:before {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/05.png);
}

.wp-block-group.top-business-flex:nth-of-type(6) .wp-block-group.top-business-txt h3:before {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/06.png);
}


.wp-block-group.top-business-flex:nth-of-type(even) {
    flex-direction: row-reverse;
}

.wp-block-group.top-business-flex {
    margin-bottom: 56px;
}

.wp-block-group.top-business-wrap {
    padding-bottom: 59px;
}

.wp-block-group.btn-flex .wp-block-buttons.btn,
.wp-block-group.news-title .wp-block-buttons.btn {
    margin-left: 0;
    margin-right: 0;
}

.wp-block-group.top-business-txt {
    position: relative;
}

.wp-block-group.top-business-txt:after {
    content: '';
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/03/illust5.png);
    background-size: contain;
    display: inline-block;
    width: 39px;
    height: 93px;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    right: 0;
}

.wp-block-group.top-business-flex:nth-of-type(2) .wp-block-group.top-business-txt:after {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/03/illust6.png);
    width: 115px;
    height: 129px;
}

.wp-block-group.top-business-flex:nth-of-type(even) .wp-block-group.top-business-txt:after {
    right: auto;
    left: -90px;
    bottom: -45px;
}

.wp-block-group.top-business-flex:nth-of-type(3) .wp-block-group.top-business-txt:after {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/03/illust7.png);
    width: 58px;
    height: 146px;
    right: -12px;
    bottom: -8px;
}

.wp-block-group.top-business-flex:nth-of-type(4) .wp-block-group.top-business-txt:after {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/03/illust8.png);
    width: 60px;
    height: 101px;
    bottom: 23px;
    left: -73px;
}

.wp-block-group.top-business-flex:nth-of-type(5) .wp-block-group.top-business-txt:after {
    width: 65px;
    height: 155px;
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/03/illust9.png);
    bottom: -33px;
    right: -49px;
}

.wp-block-group.top-business-flex:nth-of-type(6) .wp-block-group.top-business-txt:after {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/03/tubame.png);
    width: 83px;
    height: 75px;
    left: -28px;
    bottom: 2px;
}

.wp-block-group.top-business-wrap.bk .inner {
    position: relative;
}

figure.wp-block-image.size-full.top-business-illust.il {
    right: 0;
    top: -11px;
}

.wp-block-group.top-about-wrap .inner {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/03/tizu.png);
    background-repeat: no-repeat;
    background-position: center;
}

.wp-block-group.inner.diamond-wrap {
    padding: 111px 0 145px;
}

.wp-block-group.daiya-title figure.wp-block-image.size-full {
    max-width: 642px;
    margin: 0 auto;
}

.wp-block-group.daiya-title h2 {
    font-size: 30px;
    color: #5c9458;
    position: absolute;
    top: 19px;
    right: 21px;
}

.wp-block-group.daiya-title {
    position: relative;
    max-width: fit-content;
    margin: 0 auto;
}

.wp-block-image.card-img {
    margin: 74px auto 60px;
    position: relative;
    max-width: fit-content;
}

.wp-block-image.card-img:after {
    content: '';
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/03/free.png);
    width: 159px;
    height: 160px;
    background-size: contain;
    display: inline-block;
    background-repeat: no-repeat;
    position: absolute;
    top: -48px;
    left: -88px;
}

.wp-block-image.card-img {
    margin: 74px auto 60px;
    position: relative;
    max-width: fit-content;
}

figure.wp-block-image.size-full.daiya-illust.il {
    max-width: fit-content;
    bottom: -65px;
    right: -9px;
}

.wp-block-group.inner.diamond-wrap {
    position: relative;
}

figure.wp-block-image.size-full.daiya-illust2.il {
    bottom: 261px;
    left: 12%;
}

figure.wp-block-image.size-full.en-midashi img,
figure.wp-block-image.size-full.en-midashi {
    height: 81px;
    object-fit: contain;
}

figure.wp-block-image.size-full.top-recruit-title {
    max-width: 622px;
    margin: 0 auto 18px;
}

.wp-block-group.top-recruit-wrap .wp-block-buttons.btn {
    margin-top: 33px;
}

.wp-block-group.top-recruit-wrap .inner {
    padding-bottom: 385px;
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/03/ki.png);
    background-repeat: no-repeat;
    background-position: center bottom -131px;
}

.wp-block-group.top-recruit-wrap {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/03/recruit-bk2-1.png), url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/03/recruit-bk1.png);
    background-repeat: no-repeat;
    background-position: right top 168px, left top 230px;
}

.wp-block-group.inner.footcontact-wrap p.has-text-align-center {
    padding-top: 59px;
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/03/CONTACT.png);
    background-repeat: no-repeat;
    background-position: top center;
    font-size: 24px;
    margin-bottom: 35px;
}

.wp-block-group.inner.footcontact-wrap {
    margin-top: 85px;
    margin-bottom: 85px;
}

.wp-block-group.foot-btn-flex .wp-block-buttons:nth-of-type(2) .wp-block-button a span {
    font-size: 18px;
}

.wp-block-group.foot-btn-flex .wp-block-buttons .wp-block-button a,
.wp-block-buttons.green-btn .wp-block-button a {
    padding: 35px 66px 35px 0;
    background-color: #5c9458;
    border-radius: 10px;
    font-size: 22px;
    position: relative;
    text-align: center;
}

.wp-block-group.foot-btn-flex .wp-block-buttons:nth-of-type(2) .wp-block-button a {
    padding-top: 19px;
    padding-bottom: 19px;
}

.wp-block-group.foot-btn-flex {
    gap: 73px !important;
}

.wp-block-group.foot-inner {
    background: #5c9458;
    border-radius: 60px 60px 0 0;
    color: #fff;
    width: 99%;
    margin: auto;
    padding: 55px 0;
    position: relative;
}

figure.wp-block-image.size-full.il.foot-illust {
    top: -75px;
    right: 81px;
}

.wp-block-group.foot-btn-flex .wp-block-buttons,
.wp-block-buttons.green-btn {
    max-width: 533px;
    width: 100%;
    position: relative;
}

.wp-block-group.foot-btn-flex .wp-block-buttons .wp-block-button a:before,
.wp-block-buttons.green-btn .wp-block-button a:before {
    background: #fff;
    color: #5c9458;
    right: 20px;
}

.wp-block-group.foot-logo-wrap p {
    font-size: 16px;
}

.wp-block-group.foot-logo-wrap {
    width: 342px;
}

figure.wp-block-image.size-full.img-hover.foot-logo {
    max-width: 178px;
    margin-bottom: 12px;
}

.wp-block-group.foot-logo-wrap a {
    color: #fff;
}

p.foot-menu-title a {
    color: #fff;
}

p.foot-menu-title,
.wp-block-group.foot-menu-box p {
    position: relative;
    padding-left: 13px;
}

.wp-block-group.foot-menu-box p a {
    color: #fff;
}

p.foot-menu-title:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

.wp-block-group.foot-menu-box-wrap {
    margin-left: 67px;
    font-size: 16px;
}

.wp-block-group.foot-btn-flex .wp-block-buttons .wp-block-button a:hover:before,
.wp-block-buttons.green-btn .wp-block-button a:hover:before {
    right: 11px;
    border: 1px solid #fff;
}

/* オープニングで出す要素と、スクロールで出す要素をどちらも隠す */
#top header,
#top .slider-01,
#top .copy-box,
#top .other-section {
    opacity: 0;
    visibility: hidden;
}

.slider-01 .wp-block-group.slides>.wp-block-group__inner-container {
    width: 44%;
}

.preview-area {
    width: 60%;
}


h3.wp-block-heading.tab-copy {
    display: none;
    color: #5c9458;
    font-size: 20px;
    text-align: center;
}

html.lenis,
html.lenis body {
    height: auto;
}


.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

body {
    padding-top: 80px;
}

article.entry_item a {
    display: flex;
    align-items: baseline;
    padding: 25px 0;
    border-bottom: 2px dotted #446a42;
}

.post-title {
    border-bottom: 2px dotted #446a42;
}

body#diamond-member .under-v {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/member-v.png);
}

body#diamond-member .under-v h1:before {
    content: 'MEMBER PARTNER STORES';
}

body#diamond-member .wp-block-group.inner.diamond-wrap .wp-block-buttons.btn {
    margin-top: 38px;
}

body#diamond-member figure.wp-block-image.size-full.daiya-illust.il {
    top: auto;
    bottom: 146px;
    right: 12%;
}

.wp-block-group.shoplist-wrap .inner {
    position: relative;
    padding-bottom: 87px;
}

figure.wp-block-image.size-full.shoplist-illust.il {
    top: -53px;
    left: 14%;
}

figure.wp-block-image.size-full.contact-illust {
    max-width: fit-content;
    margin: 0 auto 22px;
}

p.has-text-align-center.contact-txt {
    padding-bottom: 45px;
}

.wp-block-group.inner.contactform-wrap {
    padding: 46px 0 102px;
}

body#contactus .wp-block-group.inner.footcontact-wrap {
    display: none;
}

body#top {
    padding-top: 0;
}

.wp-block-group.inner.contactform-wrap .wp-block-buttons.green-btn .wp-block-button a {
    padding-top: 12px;
    padding-bottom: 16px;
}

.wp-block-buttons.green-btn span {
    font-size: 16px;
}

.wp-block-group.inner.contactform-wrap .wp-block-buttons.green-btn {
    margin-bottom: 30px;
}

.wp-block-snow-monkey-forms-item.smf-item.hissu .smf-item__col.smf-item__col--label:before {
    content: '必須';
    position: absolute;
    left: 0;
    top: 3px;
    background: #5c9458;
    color: #fff;
    display: block;
    font-size: 16px;
    width: 56px;
    text-align: center;
    line-height: 1;
    padding: 4px 0;
}

.smf-item__col.smf-item__col--label {
    position: relative;
}

.wp-block-snow-monkey-forms-item.smf-item.hissu .smf-item__col.smf-item__col--label .smf-item__label {
    padding-left: 71px;
    position: relative;
}

.wp-block-snow-monkey-forms-item.smf-item.hissu.name .smf-item__controls {
    display: flex;
    gap: 10px !important;
}

.wp-block-snow-monkey-forms-item.smf-item.yubin .smf-text-control {
    position: relative;
}

.wp-block-snow-monkey-forms-item.smf-item.yubin .smf-text-control:before {
    content: '〒';
    position: absolute;
    left: 0;
    display: block;
    top: 16px;
}

.wp-block-snow-monkey-forms-item.smf-item.yubin input#zip {
    margin-left: 28px;
    width: 300px;
}

.smf-form--letter .smf-text-control__control {
    padding: 8px !important;
    border: 1px solid #5c9458 !important;
}

input.smf-radio-button-control__control,
input.smf-checkbox-control__control,
textarea.smf-textarea-control__control {
    border: 1px solid #5c9458 !important;
}

div#--description {
    color: #5c9458 !important;
}

body#contactus .under-v h1:before {
    content: 'CONTACT';
}

.smf-item__controls {
    width: 100%;
    max-width: 800px;
}

.wp-block-snow-monkey-forms-item.smf-item.textarea .smf-item__controls {
    max-width: 100%;
}

.wp-block-group.inner.policy-wrap ul.wp-block-list {
    padding-left: 20px;
}

.smf-action .smf-button-control__control {
    background: #5c9458 !important;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    color: #fff !important;
    border: none !important;
    transition: .6s;
    width: 300px !important;
    padding: 20px 0 !important;
}

.smf-action .smf-button-control__control:hover {
    opacity: .8;
}

.wp-block-snow-monkey-forms-item.smf-item a {
    text-decoration: underline;
}

body#privacy .under-v h1:before {
    content: 'PRIVACY POLICY';
}

body#philosophy .under-v h1:before {
    content: 'PHILOSOPHY';
}

body#philosophy .under-v {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/philo-v.png);
}

.wp-block-group.owner-txt {
    width: 50%;
}

.wp-block-group.owner-img-wrap {
    width: 44%;
    max-width: 538px;
    position: relative;
}

.wp-block-group.owner-flex {
    padding: 96px 0 81px;
}

figure.wp-block-image.size-full.il.owner-icon {
    bottom: -75px;
    right: -65px;
}

.wp-block-group.rinen-wrap {
    padding-bottom: 165px;
    position: relative;
}

.wp-block-group.rinen-box h2 {
    color: #5c9458;
    margin-bottom: 25px;
}

.wp-block-group.rinen-box {
    margin-top: 25px;
    padding: 38px 0 45px;
}

.wp-block-group.rinen-box.bk p {
    text-align: center;
}

.wp-block-group.rinen-box.bk p,
.wp-block-group.rinen-box.bk ul {
    font-size: 22px;
    max-width: fit-content;
    margin: 0 auto;
    line-height: 2;
}

figure.wp-block-image.size-full.il.rinen-illust-1 {
    top: 32px;
}

figure.wp-block-image.size-full.il.rinen-illust-2 {
    bottom: 118px;
    right: 35px;
}

.wp-block-group.top-business-wrap .wp-block-group.en-midashi-wrap {
    margin-bottom: 0;
}

p.has-text-align-center.under-business-txt {
    padding-bottom: 57px;
}

figure.wp-block-image.size-full.under-business-img,
figure.wp-block-image.size-full.under-business-img img {
    border-radius: 30px;
}

figure.wp-block-image.size-full.under-business-img {
    max-width: 332px;
    width: 100%;
    margin: 0 auto;
}

.wp-block-group.under-business-box h3 {
    font-size: 30px;
    color: #5c9458;
    line-height: 1.5;
    margin: 17px 0 6px;
}

.wp-block-group.under-business-flex>.wp-block-group__inner-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2%;
}

.wp-block-group.under-business-box {
    width: 31%;
    max-width: 370px;
    margin-bottom: 46px;
}

figure.wp-block-image.size-full.under-business-tsubame.il {
    top: -22px;
    right: 0;
    z-index: 10;
}

.wp-block-group.under-business-box.tsubame-box {
    position: relative;
}

.wp-block-group.under-business-box .wp-block-buttons.btn {
    margin-top: 16px;
}

figure.wp-block-image.size-full.under-business-illust2 {
    top: 73px;
    left: 2%;
}

figure.wp-block-image.size-full.under-business-illust3.il {
    bottom: 20px;
    right: -10%;
}

figure.wp-block-image.size-full.is-resized.loca-title {
    max-width: 251px;
    margin: 0 auto 50px;
}

.wp-block-group.inner.location-wrap {
    padding: 99px 0 20px;
}

.wp-block-group.location-btns>.wp-block-group__inner-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 83px;
}

.wp-block-group.location-btns .wp-block-buttons.green-btn {
    max-width: 384px;
    width: 32%;
    margin: 0;
}

.wp-block-group.location-btns .wp-block-buttons.green-btn .wp-block-button a {
    padding: 28px 0 28px 23px;
    text-align: left;
}

.wp-block-buttons.green-btn.green-btn2 .wp-block-button a {
    line-height: 1.3;
    padding-top: 19px !important;
    padding-bottom: 19px !important;
}

.location-flex-wrap .wp-block-group.slider-05 {
    width: 50%;
}

.wp-block-group.location-box-left {
    width: 45%;
}

div#mainoffice figure.wp-block-image.il {
    left: 0;
    bottom: 0;
}

.wp-block-group.location-txt-box-wrap h3 {
    font-size: 30px;
    color: #5c9458;
    line-height: 1.3;
    margin-bottom: 21px;
}

p.location-txt-title {
    width: 113px;
}

p.location-txt {
    width: 80%;
}

.wp-block-group.location-txt-flex {
    margin-bottom: 11px;
}

.wp-block-group.location-txt-flex p {
    line-height: 2;
}

p.map-link a {
    text-decoration: underline;
    color: #5c9458;
    display: block;
    margin-top: 24px;
    margin-bottom: 24px;
}

.wp-block-group.location-box-wrap-flex {
    margin-top: 40px;
    margin-bottom: 40px;
}

.wp-block-group.location-box-wrap-flex .wp-block-group.location-txt-box-wrap {
    width: 50%;
}

.location-flex-wrap {
    margin-bottom: 120px;
    position: relative;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #a4c6a2;
    display: block;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #5c9458;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    /* top: 0; */
    position: absolute;
    bottom: -41px;
    left: 0;
    right: 0;
}

.slider-05 .wp-block-group.next-prev {
    display: none;
}

.video-wrap {
    margin-top: 120px;
}

.video-wrap .wp-block-group.location-flex-wrap {
    margin-bottom: 92px;
}

.wp-block-group.video {
    max-width: fit-content;
    margin: 0 auto;
}

div#mainoffice figure.wp-block-image.il {
    left: -8%;
    bottom: -33px;
}

div#hikami figure.wp-block-image.size-full.il {
    right: -14px;
    z-index: 10;
    bottom: 0;
}

div#tsubametokaze figure.wp-block-image.size-full.il {
    z-index: 10;
    top: -36px;
    left: -78px;
}

div#sasayama figure.wp-block-image.size-full.il {
    z-index: 10;
    bottom: 0;
    right: 0;
}

div#kaibara figure.wp-block-image.size-full.il {
    z-index: 10;
    left: -65px;
    bottom: -81px;
}

/* 全ページ共通：JSで動かす要素は最初隠しておく */
header,
.under-v,
.slider-01,
.copy-box,
.other-section {
    opacity: 0;
}

body#aboutus .under-v h1:before {
    content: 'ABOUT US';
}

body#aboutus .under-v {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/about-v.png);
}

.wp-block-group.inner.company-prof {
    padding: 80px 0 165px;
    position: relative;
}

.wp-block-group.inner.company-prof .wp-block-group.en-midashi-wrap {
    top: 0;
}

.wp-block-table td:first-of-type {
    width: 22%;
    background-color: #5c9458;
    border-bottom: 1px solid #fff;
    color: #fff;
}

figure.wp-block-table {
    border: none;
    background: #fff;
    border-radius: 10px;
}

.wp-block-table tr td {
    border-bottom: 1px solid #5c9458;
}

table.has-fixed-layout {
    line-height: 2;
}

.wp-block-group.inner.company-prof figure.wp-block-image.il {
    bottom: 158px;
    left: -52px;
}

.wp-block-group.inner.company-prof figure.wp-block-table tr {
    display: flex;
}

.wp-block-table td {
    width: 78%;
}

figure.wp-block-image.size-full.sdgs-img {
    margin: 74px auto 140px;
}

figure.wp-block-image.size-full.sdgs-illust1.il {
    top: 214px;
    left: 67px;
}

body#aboutus .wp-block-group.top-business-txt:after {
    display: none;
}

body#aboutus .wp-block-group.top-business-txt h3:before {
    content: '';
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/sdgs-bk.png);
    background-size: contain;
    display: inline-block;
    width: 91px;
    height: 91px;
    position: absolute;
    left: -60px;
}

body#aboutus .wp-block-group.top-business-txt h3 {
    padding-left: 0;
    margin-bottom: 24px;
}

body#aboutus .wp-block-group.top-business-flex:nth-of-type(1) figure.wp-block-image.size-full.il {
    bottom: -77px;
    right: -61px;
    max-width: 90px;
}

body#aboutus .wp-block-group.top-business-flex:nth-of-type(2) figure.wp-block-image.size-full.il {
    left: -67px;
    max-width: 48px;
    bottom: -82px;
}

body#aboutus .wp-block-group.top-business-flex:nth-of-type(3) figure.wp-block-image.size-full.il {
    right: -25px;
    bottom: -41px;
}

body#aboutus .wp-block-group.top-business-flex {
    margin-bottom: 87px;
}

p.has-text-align-center.sdgs-txt {
    margin-top: 25px;
}

body#aboutus .wp-block-group.top-business-flex:nth-of-type(1) figure.wp-block-image.size-full.top-business-img:before {
    content: '';
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/sdgs-1-icon.png);
    background-size: contain;
    display: inline-block;
    width: 253px;
    height: 119px;
    background-repeat: no-repeat;
    position: absolute;
    top: -28px;
    left: -26px;
}

body#aboutus .wp-block-group.top-business-flex:nth-of-type(2) figure.wp-block-image.size-full.top-business-img:before {
    content: '';
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/sdgs-2-icon.png);
    background-size: contain;
    display: inline-block;
    width: 119px;
    height: 119px;
    background-repeat: no-repeat;
    position: absolute;
    top: -28px;
    right: -26px;
}

body#aboutus .wp-block-group.top-business-flex:nth-of-type(3) figure.wp-block-image.size-full.top-business-img:before {
    content: '';
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/sdgs-3-icon.png);
    background-size: contain;
    display: inline-block;
    width: 119px;
    height: 119px;
    background-repeat: no-repeat;
    position: absolute;
    top: -28px;
    left: -26px;
}

span.table-kikuyatitle {
    font-size: 21px;
}

.wp-block-group.sousai-box.inner>.wp-block-group__inner-container {
    width: 60%;
}

.wp-block-group.sousai-about-wrap {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/kando-bk-1.png);
    background-repeat: no-repeat;
    background-position: top right;
    padding: 100px 0 150px;
    background-size: 50%;
}

.wp-block-group.sousai-about-wrap h2 {
    margin-bottom: 34px;
}

.wp-block-group.common-box-flex>.wp-block-group__inner-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8%;
    margin-top: 82px;
}

.wp-block-group.common-box {
    width: 46%;
    margin-bottom: 55px;
}

figure.wp-block-image.size-full.common-box-img {
    max-width: 557px;
    margin: 0 auto 20px;
}

figure.wp-block-image.size-full.common-box-num img,
figure.wp-block-image.size-full.common-box-num {
    height: 60px;
    object-fit: contain;
}

figure.wp-block-image.size-full.common-box-num {
    width: fit-content;
    margin: 0 auto 20px;
}

.wp-block-group.common-box h3 {
    font-size: 30px;
    color: #5c9458;
    line-height: 1.5;
    margin-bottom: 23px;
}

figure.wp-block-image.size-full.st-illust3.il {
    right: 40px;
    bottom: 0;
    top: auto;
}

figure.wp-block-image.size-full.st-illust1.il {
    top: 214px;
}

.wp-block-group.top-business-wrap.bk .wp-block-group.btn-flex {
    margin-top: 0;
}

body#funeral .under-v h1:before {
    content: 'FUNERAL SERVICES';
}

body#funeral .under-v {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/sousai-v-1.png);
}

body#funeral .wp-block-group.inner.diamond-wrap {
    padding-bottom: 36px;
}

.wp-block-group.common-bk-wrap {
    padding-bottom: 86px;
}

.wp-block-group.common-box h3 strong:before {
    content: '';
    height: 5px;
    width: 100%;
    display: inline-block;
    background: #fff;
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    z-index: 0;
}

.wp-block-group.common-box h3 strong {
    font-weight: 700;
    position: relative;
}

body#gift .under-v h1:before {
    content: 'GIFT SERVICES';
}

body#gift .under-v {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/gift-v.png);
}

.wp-block-group.inner.gift-txt-wrap {
    padding: 111px 0 230px;
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/03/tizu.png);
    background-repeat: no-repeat;
    background-position: bottom 90px right;
}

figure.wp-block-image.size-full.gift-img {
    max-width: fit-content;
    margin: 0 auto 53px;
}

.wp-block-group.gift-img-wrap {
    max-width: fit-content;
    margin: 0 auto;
    position: relative;
}

figure.wp-block-image.size-full.il.git-il1 {
    top: -73px;
    left: -55px;
}

figure.wp-block-image.size-full.is-resized.il.git-il2 {
    right: -33px;
    bottom: -143px;
}

.wp-block-group.gift-type-wrap {
    margin: 150px 0 10px;
}

.wp-block-group.gift-type-wrap .wp-block-group.slider-05.inner {
    background-color: #f2f6e6;
    border-radius: 40px;
    position: relative;
    padding: 39px;
}

.wp-block-group.gift-title {
    max-width: fit-content;
    position: absolute;
    top: -46px;
    left: 0;
    right: 0;
    margin: auto;
}

.wp-block-group.gift-title h2 {
    color: #5c9458;
    margin-right: 30px;
}

.wp-block-group.gifttype-txt {
    width: 62%;
}

.wp-block-group.gifttype-img {
    max-width: 473px;
    width: 34%;
}

.wp-block-group.gifttype-txt h3 {
    font-size: 30px;
    color: #5c9458;
}

.wp-block-group.gifttype-txt h4 {
    font-size: 23px;
    margin: 11px 0 16px;
}

.wp-block-group.gift-type-wrap .wp-block-group.slider-05.inner .slider-dots {
    display: none;
}

.wp-block-group.gift-type-wrap h5 {
    font-size: 24px;
    color: #5c9458;
    line-height: 1;
    position: absolute;
    right: 0;
}

figure.fade-blur-on-scroll.gifttype1 {
    top: -64px;
    right: -53px;
}

figure.wp-block-image.size-full.il.gifttype2 {
    max-width: 85px;
    bottom: -14px;
    left: -14px;
}

.wp-block-group.gift-title .wp-block-image.en-midashi {
    max-width: 536px;
}

.wp-block-group.gift-type-wrap .wp-block-group.slider-05.inner {
    background-color: #f2f6e6;
    border-radius: 40px;
    position: relative;
    padding: 39px;
    height: 459px;
}

.wp-block-group.gifttype-flex {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    width: 91%;
}

.wp-block-group.gift-type-wrap .slider-05 .slide:before {
    content: 'TYPE 1/7';
    font-size: 20px;
    color: #5c9458;
    position: absolute;
    right: 21px;
    bottom: 13px;
}

.wp-block-group.gift-type-wrap .slider-05 .slide:nth-of-type(2):before {
    content: 'TYPE 2/7';
}

.wp-block-group.gift-type-wrap .slider-05 .slide:nth-of-type(3):before {
    content: 'TYPE 3/7';
}

.wp-block-group.gift-type-wrap .slider-05 .slide:nth-of-type(4):before {
    content: 'TYPE 4/7';
}

.wp-block-group.gift-type-wrap .slider-05 .slide:nth-of-type(5):before {
    content: 'TYPE 5/7';
}

.wp-block-group.gift-type-wrap .slider-05 .slide:nth-of-type(6):before {
    content: 'TYPE 6/7';
}

.wp-block-group.gift-type-wrap .slider-05 .slide:nth-of-type(7):before {
    content: 'TYPE 7/7';
}


.wp-block-group.gift-type-wrap .slider-05 .wp-block-group.next-prev {
    display: block;
    top: 200px;
}

p.prev:before {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/prev.png);
    background-size: contain;
    display: inline-block;
    border: none;
    transform: inherit;
    width: 21px;
    height: 50px;
}

p.next:before {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/next.png);
    background-size: contain;
    display: inline-block;
    border: none;
    transform: inherit;
    width: 21px;
    height: 50px;
}

p.prev {
    left: -77px;
    top: -13px;
    right: auto;
}

p.next {
    right: 0;
    top: -13px;
}

.wp-block-group.gifttype-txt p {
    line-height: 1.8;
}

body#ec .under-v h1:before {
    content: 'E-COMMERCE SERVICES';
}

body#ec .under-v {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/ec-v.png);
}

body#ec .under-v h1:before {
    content: 'E-COMMERCE SERVICES';
}

body#ec .under-v {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/ec-v.png);
}

.wp-block-group.ec-flex {
    padding: 110px 0 135px;
    position: relative;
}

.wp-block-group.ec-txt {
    width: 51%;
}

.wp-block-group.ec-img.pc {
    width: 43%;
}

h2 span.small {
    font-size: 28px;
}

.wp-block-group.ec-flex figure.wp-block-image.size-full.il {
    max-width: 100px;
    right: 0;
    bottom: 24px;
}

.wp-block-group.ourdepartments h2 {
    color: #5c9458;
    margin-top: 10px;
}

.wp-block-image.en-title-2 figure.aligncenter.size-full.wp-block-image.en-title-2 figure.aligncenter.size-full img {
    height: 172px;
    object-fit: contain;
    width: fit-content;
}

.wp-block-group.bumon-title {
    margin-bottom: 45px;
}

.wp-block-group.ourdepartments.inner {
    max-width: 90%;
}

.wp-block-group.ourdepartments.inner figure.wp-block-image.size-full.il {
    left: 19%;
    top: 100px;
}

.wp-block-group.ourdepartments.inner {
    max-width: 90%;
    position: relative;
}

.wp-block-group.bumon-txt {
    width: 419px;
    margin-right: 60px;
}

.wp-block-group.bumon-flex {
    width: 72%;
    max-width: 1246px;
    gap: 2% !important;
}

.wp-block-group.bumon-txt h3 {
    font-size: 35px;
    margin-bottom: 24px;
}

.wp-block-group.bumon-txt h4:before {
    content: '';
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/tap.png);
    background-size: contain;
    display: inline-block;
    width: 45px;
    height: 45px;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.wp-block-group.bumon-txt h4 {
    margin-top: 34px;
    color: #5c9458;
    font-size: 20px;
    padding-left: 60px;
    position: relative;
}

.bumon-flex {
    display: flex;
    gap: 10px;
    align-items: stretch;
    width: 100%;
}

.bumon-box {
    flex: 1;
    height: auto;
    overflow: hidden;
    transition: flex 0.5s ease, background 0.3s ease;
    cursor: pointer;
    position: relative;
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/ec1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;
    border-radius: 30px;
    height: 555px;
}

.bumon-box:nth-of-type(2) {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/ec2.png);
}

.bumon-box:nth-of-type(3) {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/ec3.png);
}

/*.bumon-box:hover {
    flex: 2;
}
*/
.bumon-box-inner {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 15px;
}

.bumon-box-txt {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s, max-height 0.4s ease;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
}

p.bumon-box-txt {
    line-height: 1.7;
}

.wp-block-group.bumon-box:hover p.bumon-box-txt {
    opacity: 1;
    transform: translateY(0);
    z-index: 10;
    max-height: 398px;
    margin-top: 15px;
    text-align: left;
}

.bumon-box h3 {
    margin: 0;
    transition: color 0.3s ease;
}

.bumon-box figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

figure.wp-block-image.size-full.bumon-num {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    margin: auto;
}

figure.wp-block-image.size-full.bumon-num,
figure.wp-block-image.size-full.bumon-num img {
    height: 56px;
    object-fit: contain;
    width: fit-content;
}

.wp-block-group.bumon-box h3 {
    font-size: 30px;
    line-height: 1.2;
    position: relative;
}

.wp-block-group.bumon-flex-wrap {
    margin-bottom: 170px;
}

.wp-block-group.stores-wrap .wp-block-group.en-midashi-wrap {
    margin-bottom: 0;
}

p.has-text-align-center.store-txt {
    margin-bottom: 55px;
}

.wp-block-group.logo-flex {
    max-width: 778px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto 75px;
    gap: 5% !important;
}

figure.wp-block-image.size-full.il.store-il4 {
    bottom: 114px;
    left: 20%;
}

.wp-block-group.review-box-wrap {
    max-width: 895px;
    margin: 0 auto;
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/review2.png), url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/review1.png);
    background-repeat: no-repeat;
    background-position: center left, right center;
    margin-bottom: 76px;
    position: relative;
}

.wp-block-group.review-box-wrap h4 {
    font-size: 30px;
}

.wp-block-group.review-box-wrap h3 strong {
    color: inherit;
    font-size: 48px;
}

.wp-block-group.review-box-wrap h3 {
    font-size: 36px;
    line-height: 1.5;
    margin-bottom: 30px;
}

p.has-text-align-center.hyoka {
    max-width: fit-content;
    font-size: 22px;
    background-color: #fff;
    border-radius: 30px;
    line-height: 1;
    padding: 12px 27px;
    margin: 0 auto 2px;
}

h2.wp-block-heading.has-text-align-center.review-number {
    font-size: 72px;
    color: #b92d2d;
    line-height: 1;
}

p.has-text-align-center.star {
    font-size: 36px;
    color: #d4b35c;
    line-height: 1;
    margin: 14px 0 25px;
}

p.review-kazu span {
    font-size: 41px;
}

.wp-block-group.review-kazu-flex p {
    line-height: 1;
}

.wp-block-group.review-kazu-flex {
    font-size: 24px;
    gap: 20px !important;
    margin-bottom: 15px;
}

p.has-text-align-center.review-nitizi {
    font-size: 16px;
}

p.has-text-align-center.store-txt2 {
    margin-bottom: 65px !important;
}

.slide.loopslide-img-1 {
    width: 555px;
    margin-top: 20px;
}

.slide.loopslide-img-2 {
    width: 453px;
    margin-top: 173px;
}

.slide.loopslide-img-3 {
    width: 491px;
    margin-top: 36px;
}

.slide.loopslide-img-4 {
    width: 795px;
}

.wp-block-group.stores-wrap.bk .inner {
    position: relative;
}

figure.wp-block-image.size-full.il.store-il3 {
    right: 0;
    top: -34px;
    left: 54%;
    margin: auto;
}

.wp-block-group.slider02-wrap {
    position: relative;
}

figure.wp-block-image.size-full.il.store-il1 {
    top: -87px;
    right: 8%;
    z-index: 10;
}

figure.wp-block-image.size-full.il.store-il2 {
    bottom: -20px;
    left: 15%;
    z-index: 10;
}

.wp-block-group.stores-wrap {
    padding-bottom: 71px;
}

p.has-text-align-center.store-txt strong {
    font-size: 22px;
}

/* 背景に重ねる黒い層の追加 */
.bumon-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 30px;
    z-index: 1;
}

/* ホバー時に黒くする */
.bumon-box:hover::after {
    opacity: 1;
}

/* テキストや画像が黒い層の下に隠れないよう前面に出す */
.bumon-box-inner,
.bumon-num {
    z-index: 2;
}

.wp-block-image.en-title-2 figure.aligncenter.size-full img,
.wp-block-image.en-title-2 figure.aligncenter.size-full {
    height: 188px;
    object-fit: contain;
    width: fit-content;
}

body#corporate-service .under-v {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/corp-v.png);
}

body#corporate-service .under-v {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/corp-v.png);
}

body#corporate-service figure.wp-block-image.size-full.il.corp-il2 {
    right: 0;
    bottom: 214px;
    max-width: fit-content;
    left: auto;
    z-index: 10;
    top: auto;
}

body#corporate-service figure.wp-block-image.size-full.il.corp-il1 {
    max-width: 72px;
    left: -40px;
    bottom: auto;
    top: 143px;
}

.wp-block-group.zimoto-wrap {
    position: relative;
}

figure.wp-block-image.size-full.zimoto-img2 {
    max-width: 564px;
    position: absolute;
    bottom: -21px;
    right: 10px;
    z-index: 10;
}

figure.wp-block-image.size-full.zimoto-img {
    max-width: fit-content;
    margin: 0 auto 31px;
}

.wp-block-group.zimoto-wrap {
    position: relative;
    padding-bottom: 180px;
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/zimoto-bk.png);
    background-repeat: no-repeat;
    background-position: top -60px left;
    background-size: 32%;
}

.wp-block-group.product-flex {
    max-width: 580px;
    width: 48%;
    margin-bottom: 40px;
}

.wp-block-group.product-flex-wrap>.wp-block-group__inner-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
}

.wp-block-group.product-txt h3 {
    color: #5c9458;
    font-size: 30px;
    margin-bottom: 12px;
}

figure.wp-block-image.size-full.product-img {
    width: 226px;
    margin-right: 21px;
}

.wp-block-group.product-txt {
    width: 57%;
}

.wp-block-group.stores-wrap figure.wp-block-image.size-full.il.store-il3 {
    right: 63%;
    left: 0;
    top: 77px;
}

.wp-block-group.product-flex-wrap {
    margin-top: 37px;
}

body#corporate-service .under-v h1:before {
    content: 'CORPORATE SALES DIVISION';
}

body#furusato-tax .under-v {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/hurusato-v.png);
}

body#furusato-tax .under-v h1:before {
    content: 'HOMETOWN TAX DONATION DIVISION';
}

body#furusato-tax figure.wp-block-image.size-full.il.git-il1 {
    top: -43px;
}

body#furusato-tax .wp-block-group.inner.gift-txt-wrap {
    padding-bottom: 147px;
}

p span.small {
    font-size: 16px;
}

figure.wp-block-image.size-full.vision-image {
    max-width: 539px;
    margin: 0 auto 50px;
}

p.has-text-align-center.vision-txt1 span,
p.has-text-align-center.vision-txt2 span {
    font-weight: 800;
}

.wp-block-group.yon-box {
    margin: 49px auto;
    background-color: #fff;
    border-radius: 30px;
    padding: 36px 33px 36px;
    max-width: 1060px;
}

.wp-block-group.yon-flex:last-of-type {
    margin-bottom: 0;
}

.wp-block-group.yon-flex {
    margin-bottom: 20px;
}

.wp-block-group.yon-flex h3 {
    width: 146px;
    background-color: #5c9458;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    padding: 7px 0;
    margin-right: 14px;
}

.wp-block-group.our-vision.bk.common-bk-wrap .inner {
    position: relative;
}

figure.wp-block-image.size-full.il.fvision-il-1 {
    left: 43%;
    right: 0;
    margin: auto;
    top: 58px;
}

figure.wp-block-image.size-full.il.fvision-il-2 {
    bottom: 20px;
}

.wp-block-group.inner.hurusato-list {
    padding: 87px 0 10px;
}

figure.wp-block-image.size-full.partner-title {
    max-width: 186px;
    margin: 0 auto 45px;
}

.wp-block-group.hurusato-banner-flex>.wp-block-group__inner-container {
    max-width: 980px;
    margin: 55px auto 0;
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    gap: 3%;
    align-items: center;
}

figure.wp-block-image.size-full.banner {
    margin-bottom: 24px;
    width: 31%;
}

figure.wp-block-image.size-full.banner img {
    object-fit: contain;
    object-position: center;
}

.wp-block-group.our-vision {
    padding-bottom: 97px;
}

body#furusato-tax figure.wp-block-image.size-full.gift-img {
    margin: 61px auto 62px;
}

.wp-block-group.inner.tsubame-wrap {
    padding: 121px 0 145px;
    position: relative;
}

figure.wp-block-image.size-full.tsubame-logo {
    margin: 0 auto 35px;
    max-width: fit-content;
}

.wp-block-group.tsubame-image-wrap {
    max-width: fit-content;
    margin: 0 auto 50px;
    position: relative;
}

figure.wp-block-image.size-full.huro {
    bottom: -80px;
    position: absolute;
    right: -130px;
}

.wp-block-group.inner.tsubame-wrap h2 {
    margin-bottom: 33px;
}

.wp-block-group.tsubame-concept-wrap.bk .inner {
    padding: 0 0 265px;
    max-width: 1400px;
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/concept-bk.png);
    background-repeat: no-repeat;
    background-position: top 75px center;
}

.wp-block-group.tsubame-concept-wrap.bk {
    background-color: #f2f6e6;
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/yama.png);
    background-repeat: no-repeat;
    background-position: bottom center;
}

.wp-block-group.tsubame-concept-wrap .wp-block-group.en-midashi-wrap {
    margin-bottom: 17px;
}

.wp-block-group.tsubame-concept-wrap h3 {
    font-size: 36px;
    color: #5c9458;
    margin-bottom: 37px;
}

.wp-block-group.inner.tsubame-kodawari-wrap {
    padding: 86px 0 145px;
}

figure.wp-block-image.size-full.tsubame-kodawari-title {
    max-width: 259px;
    margin: 0 auto 44px;
}

.wp-block-group.tsubame-point-flex {
    margin-top: 93px;
}

.wp-block-group.tsubame-point figure.wp-block-image.size-full:after {
    content: '';
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/tsu-01.png);
    background-size: contain;
    display: inline-block;
    height: 59px;
    width: 84px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -36px;
    left: 0;
    right: 0;
    margin: auto;
}

.wp-block-group.tsubame-point:nth-of-type(2) figure.wp-block-image.size-full:after {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/tsu02.png);
}

.wp-block-group.tsubame-point:nth-of-type(3) figure.wp-block-image.size-full:after {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/tsu03.png);
}

.wp-block-group.tsubame-point figure.wp-block-image.size-full {
    max-width: 319px;
    margin: 0 auto 15px;
    position: relative;
}

.wp-block-group.tsubame-point {
    max-width: 360px;
    width: 29%;
}

.wp-block-group.tsubame-point h3 {
    font-size: 30px;
    color: #5c9458;
    margin-bottom: 8px;
}

.wp-block-group.tsubame-pro-wrap figure.wp-block-image.size-full.il {
    right: auto;
    left: 13%;
    top: -26px;
}

.wp-block-group.tsubame-pro-wrap .wp-block-group.en-midashi-wrap {
    margin-bottom: 46px;
}

.wp-block-group.tsubame-pro-wrap .wp-block-group.top-business-txt:after,
.wp-block-group.tsubame-pro-wrap .wp-block-group.top-business-txt h3:before {
    display: none;
}

.wp-block-group.tsubame-pro-wrap .wp-block-group.top-business-txt h3 {
    padding: 0;
}

figure.wp-block-image.size-full.top-business-img.hukidashi:after {
    content: '';
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/hukidashi.png);
    background-size: contain;
    display: inline-block;
    width: 279px;
    height: 178px;
    background-repeat: no-repeat;
    position: absolute;
    top: -75px;
    left: -95px;
}

figure.wp-block-image.size-full.top-business-img.hukidashi {
    position: relative;
}

.wp-block-group.bk.insta-box {
    margin: 67px auto 90px;
    max-width: 600px;
    padding: 34px 0 32px;
}

.wp-block-group.bk.insta-box h4 {
    margin-bottom: 21px;
    font-size: 24px;
    color: #5c9458;
}

.wp-block-group.insta.has-link figure.wp-block-image.size-full {
    max-width: fit-content;
    margin: 0 auto 15px;
}

.wp-block-group.insta.has-link p {
    line-height: 1.5;
    font-size: 16px;
}

.wp-block-group.insta-flex {
    gap: 44px !important;
}

.wp-block-group.bk.insta-box figure.wp-block-image.size-full.il {
    top: -41px;
    left: -12px;
}

body#tsubame-to-kaze .under-v h1:before {
    content: 'TSUBAME TO KAZE';
}

body#tsubame-to-kaze .under-v {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/tsubame-v.png);
}

.wp-block-group.inner.tsubame-wrap .inner {
    position: relative;
}

.wp-block-group.inner.tsubame-wrap figure.wp-block-image.size-full.il {
    top: 57px;
    left: 21%;
    right: 0;
}

p.has-text-align-center.tsubame-center {
    margin-bottom: 30px;
}

.wp-block-group.tsubame-concept-wrap p {
    line-height: 2.5;
}

body#careers .under-v {
    background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/career-v.png);
}

body#careers .under-v h1:before {
    content: 'CAREERS';
}

body#careers .wp-block-group.top-recruit-wrap {
    padding-top: 95px;
}

.sp2 {
    display: none;
}

figure.wp-block-image.size-full.il.fade-blur-on-scroll.mission-il-1 {
    top: 97px;
    right: 20px;
    max-width: 120px;
}

body#careers .wp-block-group.common-box-flex>.wp-block-group__inner-container {
    margin-top: 50px;
}

.wp-block-group.common-box {
    position: relative;
}

figure.wp-block-image.size-full.il.mission-il-2 {
    bottom: -46px;
    left: -132px;
}

.wp-block-group.inner.aboutthebusiness-wrap {
    padding: 77px 0 120px;
}

figure.wp-block-image.size-full.aboutthebusiness-title {
    max-width: 277px;
    margin: 0 auto 37px;
}

figure.wp-block-image.size-full.interview-img {
    width: 364px;
    margin-right: 32px;
}

.wp-block-group.interview-txt {
    width: 66%;
    padding-top: 69px;
}

.wp-block-group.interview-txt h3 {
    font-size: 28px;
}

.wp-block-group.busyo-flex p {
    color: #5c9458;
}

.wp-block-group.busyo-flex h5 {
    font-size: 18px;
    width: 85px;
    background: #5c9458;
    color: #fff;
    text-align: center;
    line-height: 1;
    padding: 4px 0;
    margin-right: 11px;
}

.wp-block-group.interview-txt h6 {
    color: #5c9458;
    font-size: 20px;
    margin: 5px 0 13px;
}

.wp-block-group.interview-flex {
    margin-bottom: 70px;
    align-items: flex-start;
}

.wp-block-group.faq-box .wp-block-vk-blocks-accordion.vk_accordion {
    background: #5c9458;
    border-radius: 10px;
    color: #fff;
    border: none !important;
    margin-bottom: 11px;
}

.wp-block-group.faq-box .wp-block-vk-blocks-accordion.vk_accordion .wp-block-vk-blocks-accordion-trigger.vk_accordion-trigger {
    padding: 20px 0 20px 70px;
    position: relative;
}

.wp-block-group.faq-box .wp-block-vk-blocks-accordion-trigger.vk_accordion-trigger p {
    font-size: 20px;
}

.wp-block-group.faq-box .vk_accordion-trigger .vk_accordion-toggle-open {
    border: none !important;
}

.wp-block-group.faq-box .wp-block-vk-blocks-accordion-target.vk_accordion-target.vk_accordion-target-open {
    border: none !important;
    background-color: #fff;
    border-radius: 10px;
    color: #2d322c;
    width: 98%;
    margin: 0 auto 11px;
}

.wp-block-group.faq-box .wp-block-vk-blocks-accordion.vk_accordion:before {
    content: 'Q';
    width: 43px;
    height: 43px;
    display: block;
    border-radius: 50%;
    background: #fff;
    color: #5c9458;
    font-size: 20px;
    line-height: 2;
    text-align: center;
    position: absolute;
    top: 19px;
    left: 13px;
}

.wp-block-group.message-box h4 {
    font-size: 30px;
    color: #5c9458;
    margin-bottom: 11px;
}

.wp-block-group.message-box {
    background-color: #fff;
    padding: 26px;
    border-radius: 20px;
}

/* インタビューエリア内のスライダー05だけに適用 */
.interview-wrap .slider-05 {
    position: relative;
    width: 100%;

    /* 【打ち消し】共通設定の比率や高さをリセット */
    aspect-ratio: auto !important;
    height: auto !important;
    min-height: 0 !important;

    overflow: visible;
    /* アコーディオンがはみ出さないように */
}

/* 全スライド：基本は absolute で重ねる */
.interview-wrap .slider-05 .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    opacity: 0;
    pointer-events: none;

    /* 1.2秒のフェードアニメーション */
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

/* 【最重要】アクティブなスライドだけを relative に戻す */
/* これで中身のアコーディオンに応じて親の高さが動くようになります */
.interview-wrap .slider-05 .slide.active {
    position: relative !important;
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

/* 画像やコンテンツの調整 */
.interview-wrap .slider-05 .slide img {
    display: block;
    width: 100%;
    height: auto;
}

.wp-block-group.interview-wrap {
    padding-bottom: 100px;
}

.wp-block-group.interview-wrap .slider-05 .wp-block-group.next-prev {
    display: block;
}

.wp-block-group.next-prev {
    top: 160px;
}

.wp-block-group.interview-wrap p.prev,
.wp-block-group.interview-wrap p.next {
    bottom: auto;
    top: 0;
    margin: 0;
}

.wp-block-group.interview-wrap .slider-05 .wp-block-group.next-prev {
    display: block;
    left: 0;
    right: 0;
    margin: auto;
    top: 160px;
}

.wp-block-group.interview-wrap p.next {
    right: -43px;
}

.wp-block-group.interview-wrap p.prev {
    left: -43px;
}

.vk_accordion-trigger .vk_accordion-toggle-close::after,
.vk_accordion-trigger .vk_accordion-toggle-open::after {
    border-right: 1px solid #fff !important;
    border-top: 1px solid #fff !important;
}

figure.wp-block-image.size-full.interview-il-3.il {
    bottom: -113px;
    left: -129px;
}

figure.wp-block-image.size-full.interview-il-1.il {
    right: 15%;
    top: -16px;
}

figure.wp-block-image.size-full.interview-il-2.il {
    top: 457px;
    left: -63px;
}

body#careers .wp-block-group.top-recruit-wrap p {
    text-shadow: 0 0 5px #fffef2, 0 0 5px #fffef2, 0 0 5px #fffef2, 0 0 5px #fffef2, 0 0 5px #fffef2, 0 0 5px #fffef2, 0 0 5px #fffef2, 0 0 5px #fffef2, 0 0 5px #fffef2;
}

.wp-block-group.interview-wrap .vk_accordion-target-close {
    height: auto !important;
    padding: inherit !important;
    opacity: 1 !important;
    border: none !important;
    background-color: #fff;
    border-radius: 10px;
    color: #2d322c;
    width: 98%;
    margin: 0 auto 11px;
    padding: 20px !important;
}

.wp-block-group.interview-wrap .vk_accordion-trigger .vk_accordion-toggle-close,
.wp-block-group.interview-wrap .vk_accordion-trigger .vk_accordion-toggle-open {
    display: none !important;
}

figure.wp-block-image.size-full.hoshi {
    max-width: 167px;
    margin: 13px auto 20px;
}

.location-flex-wrap .wp-block-group.slider-05 .slider-dots {
    display: none;
}

.smf-item__controls {
    position: relative;
}

.custom-error-msg {
    display: block;
    position: absolute;
    bottom: -26px;
}

.snow-monkey-form.has-custom-error .smf-action::before {
    content: "入力内容に不備があります。";
    display: block;
    width: 100%;
    color: #e62323;
    padding: 0;
    font-size: inherit;
    font-weight: bold;
    margin-bottom: 36px;
    text-align: center;
}

.snow-monkey-form.has-custom-error .smf-button-control__button[name="confirm"] {
    opacity: 0.5 !important;
    pointer-events: none !important;
    cursor: not-allowed !important;
}


/* ==============================

    タブレット横以下

============================== */

@media screen and (max-width: 1900px) and (max-height: 880px) {


    .wp-block-group.copy-box {
        bottom: 50px;
        right: 0;
    }

    .mainv h3 {
        display: none;
    }

    h3.wp-block-heading.tab-copy {
        display: block;
    }

    .mainv {
        height: 800px;
    }

}

@media screen and (max-width: 1900px) and (max-height: 700px) {
    .mainv {
        height: 800px;
    }

}

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

    .wp-block-group.copy-box {
        bottom: 62px;
        z-index: 999;
    }
}

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


    figure.wp-block-image.size-full.touching {
        max-width: 680px;
    }

    .wp-block-group.mainv h1 {
        font-size: 50px;
    }

    .wp-block-group.copy-box {
        bottom: 57px;
        right: 0;
    }
}

/* 1700px以下で3枚目を消す */
@media (max-width: 1700px) {
    .preview-item.item-3 {
        display: none !important;
    }

    .wp-block-group.mainv h1 {
        font-size: 44px;
    }

    .mainv h3 br.pc {
        display: none;
    }

    .wp-block-group.copy-box {
        max-width: 52%;
    }

    .mainv {
        height: 865px;
    }

    .slider-01 .wp-block-group.slide.showing img,
    .slider-01 .wp-block-group.slide.showing {
        height: 640px;
    }

    .wp-block-group.copy-box {
        bottom: 56px;
        right: 0;
        left: 50%;
        margin: 0;
    }

    .wp-block-group.mainv h1 {
        font-size: 42px;
    }

    figure.wp-block-image.size-full.touching {
        max-width: 595px;
    }

    .slider-01 .wp-block-group.slide.showing {
        margin-top: 9%;
    }

    .mainv h3 {
        display: none;
    }

    .preview-area {
        margin-top: 54px;
    }

    .slider-01 {
        width: 100%;
        overflow: hidden;
        max-height: 700px;
    }

    figure.wp-block-image.size-full.is-resized.mainv-illust {
        position: absolute;
        top: 58px;
        right: -54px;
        width: 81px;
    }

    h3.wp-block-heading.tab-copy {
        display: block;
    }


}

@media screen and (min-width: 1401px) {

    .left-preview-item {
        display: none !important;
    }
}


/* 1400px以下：メイン真ん中・左右見切れ */
@media screen and (max-width: 1400px) {

    .slider-01 .preview-item,
    .slider-01 .left-preview-item {
        height: auto;
    }

    .wp-block-group.sousai-box.inner>.wp-block-group__inner-container {
        width: 100%;
        text-shadow: 0 0 5px #fffef2, 0 0 5px #fffef2, 0 0 5px #fffef2, 0 0 5px #fffef2, 0 0 5px #fffef2;
    }

    .wp-block-group.copy-box {
        position: relative;
        bottom: auto;
        top: auto;
        left: auto;
        right: auto;
        margin: auto;
    }

    .slider-01 .slides {
        display: flex !important;
        justify-content: center !important;
        align-items: baseline !important;
        gap: 15px !important;
    }

    /* 左プレビュー（最後） */
    .left-preview-item {
        display: block !important;
        flex: 0 0 25% !important;
        /* height: 180px !important; */
    }

    /* 中央のメイン（現在）: ここで初めてデカくする */
    .slider-01 .slide.showing {
        display: block !important;
        flex: 0 0 70% !important;
        /* 1400以下のみデカく */
        height: 400px !important;
        /* 1400以下のみの高さ */
        margin: 0 !important;
    }


    /* 1400以下では右側の1枚目(item-1)は不要なので消す */
    .preview-item.item-1 {
        display: none !important;
    }

    .slider-01 {
        position: relative;
        padding-top: 142px;
        top: 0;
    }

    .slider-01 .wp-block-group.slide.showing figure.wp-block-image.size-full img {
        border-radius: 40px !important;
    }

    .slider-01 .wp-block-group.slide.showing img,
    .slider-01 .wp-block-group.slide.showing {
        height: 352px;
    }

    .preview-area {
        flex: 0 0 25% !important;
        margin: 0 !important;
    }

    .preview-item.item-2 {
        display: block !important;
        width: 100% !important;
        height: auto !important;
    }

    .left-preview-item {
        display: block !important;
        flex: 0 0 25% !important;
        height: auto;
    }

    .left-preview-item img,
    .preview-item.item-2 img {
        border-radius: 40px !important;
    }

    h3.wp-block-heading.tab-copy {
        display: none;
    }

    .wp-block-group.copy-box {
        max-width: fit-content;
        margin-top: 41px !important;
    }

    .mainv {
        height: auto;
    }

    .wp-block-group.mainv h1 {
        text-align: center;
    }

    .wp-block-group.mainv h1 br.sp {
        display: none;
    }

    .mainv h2 {
        text-align: center;
    }

    .mainv h3 {
        display: block;
        max-width: 590px;
        margin: 0 auto;
    }

    figure.wp-block-image.size-full.is-resized.mainv-illust {
        position: absolute;
        top: -78px;
        right: 0;
        width: 81px;
    }

    header {
        width: 90%;
        right: 0;
        left: 0;
        margin: auto;
    }

    nav.header-inner-menu.wp-block-navigation.is-layout-flex.wp-block-navigation-is-layout-flex {
        font-size: 16px;
    }

    header .wp-block-buttons {
        width: 185px !important;
    }

    .under-v {
        height: 400px;
    }

}

@media screen and (max-width:1650px) {
    p.bumon-box-txt {
        line-height: 2;
    }

    .wp-block-group.under-business-box h3 {
        font-size: 26px;
    }

    figure.wp-block-image.size-full.il.fvision-il-1 {
        left: 56%;
    }

    .wp-block-group.inner.contactform-wrap .wp-block-buttons.green-btn {
        margin-bottom: 49px;
    }

    .smf-form--letter .smf-text-control__control {
        max-width: 80%;
    }

    .wp-block-snow-monkey-forms-item.smf-item.hissu.name .smf-item__controls input.smf-text-control__control {
        max-width: 100%;
        width: 200px;
    }

    .inner-s,
    .inner,
    .inner-l {
        width: 90%;
    }

    .wp-block-group.top-about-wrap {
        padding-bottom: 250px;
        background-position: top right, bottom 133px left;
        padding-top: 131px;
        background-size: 341px;
    }

    figure.wp-block-image.size-full.top-about-illust.il {
        top: -163px;
        right: 96px;
    }

    figure.wp-block-image.size-full.top-about-illust2.il {
        top: auto;
        left: 4px;
        bottom: 38px;
    }

    .wp-block-group.top-about-wrap .wp-block-buttons.btn .wp-block-button a {
        text-shadow: 0 0 4px #fffef2, 0 0 4px #fffef2, 0 0 4px #fffef2, 0 0 4px #fffef2;
    }

    .wp-block-group.top-about-wrap .wp-block-buttons.btn .wp-block-button a:before {
        text-shadow: 0 0 0;
    }

    .wp-block-group.top-business-flex:nth-of-type(even) .wp-block-group.top-business-txt:after {
        right: auto;
        left: -52px;
        bottom: -55px;
    }

    .wp-block-group.top-business-flex:nth-of-type(6) .wp-block-group.top-business-txt:after {
        bottom: 2px;
        right: auto;
        left: -36px;
        bottom: 22px;
    }

    .wp-block-group.top-business-flex:nth-of-type(4) .wp-block-group.top-business-txt:after {
        bottom: 0;
    }

    figure.wp-block-image.size-full.daiya-illust2.il {
        bottom: 261px;
        left: 5%;
    }

    .wp-block-group.top-recruit-wrap {
        background-position: right bottom 316px, left bottom 339px;
        background-size: 45%;
    }

    .wp-block-group.top-recruit-wrap .inner {
        padding-bottom: 672px;
        background-position: center bottom -144px;
    }

    .wp-block-group.foot-box-flex {
        display: block;
    }

    .wp-block-group.foot-logo-wrap {
        width: 100%;
        max-width: fit-content;
        margin: 0 auto 29px;
    }

    .wp-block-group.foot-menu-box-flex {
        justify-content: center;
    }

    .vk_accordion-trigger .vk_accordion-toggle-open {
        border-bottom: none !important;
    }

    .wp-block-vk-blocks-accordion-target.vk_accordion-target.vk_accordion-target-open {
        background-color: #446a42 !important;
        border-radius: 10px;
        color: #fff !important;
        font-size: 16px !important;
    }

    .wp-block-vk-blocks-accordion.vk_accordion {
        margin-bottom: 0 !important;
        border: none !important;
    }

    .vk_accordion-trigger .vk_accordion-toggle-close::after,
    .vk_accordion-trigger .vk_accordion-toggle-open::after {
        border-right: 1px solid #fff !important;
        border-top: 1px solid #fff !important;
    }


    .wp-block-vk-blocks-accordion-target.vk_accordion-target.vk_accordion-target-open p.home-link a {
        color: #fff !important;
    }

    .wp-block-vk-blocks-accordion-trigger.vk_accordion-trigger {
        padding: 11px 0;
    }

    .wp-block-vk-blocks-accordion-trigger.vk_accordion-trigger p,
    .wp-block-vk-blocks-accordion-trigger.vk_accordion-trigger a {
        color: #fff !important;
    }

    .wp-block-vk-blocks-accordion-trigger.vk_accordion-trigger {
        padding: 10px 0;
    }

    .wp-block-group.sp-navmenu {
        margin-top: 47px;
    }

    .wp-block-group.sp-nav-inner .wp-block-group.header-btn-flex {
        display: flex;
        justify-content: center;
        margin-top: 100px;
    }

    figure.wp-block-image.size-full.logo.img-hover {
        z-index: 9999999;
    }

    figure.wp-block-image.size-full.il.owner-icon {
        bottom: -75px;
        right: -25px;
        max-width: 100px;
    }

    figure.wp-block-image.size-full.top-business-illust.il {
        right: 0;
        top: 58px;
    }

    figure.wp-block-image.size-full.under-business-illust3.il {
        bottom: -24px;
        right: -12px;
    }

    .wp-block-group.location-btns .wp-block-buttons.green-btn {
        max-width: 384px;
        width: 40%;
        margin: 0;
    }

    .wp-block-group.location-btns>.wp-block-group__inner-container {
        justify-content: center;
        gap: 18px;
    }

    div#mainoffice figure.wp-block-image.il {
        display: none;
    }

    div#tsubametokaze figure.wp-block-image.size-full.il {
        z-index: 10;
        top: auto;
        left: 38%;
        bottom: 0;
    }

    div#kaibara figure.wp-block-image.size-full.il {
        z-index: 10;
        left: -14px;
        bottom: -75px;
        max-width: 80px;
    }

    figure.wp-block-image.size-full.il.rinen-illust-1 {
        top: 76px;
        max-width: 91px;
        left: -18px;
    }

    figure.wp-block-image.size-full.top-business-illust.il {
        right: -48px;
        top: 49px;
    }

    figure.wp-block-image.size-full.sdgs-illust1.il {
        top: 276px;
        left: -31px;
    }

    body#aboutus .wp-block-group.top-business-flex:nth-of-type(1) figure.wp-block-image.size-full.il,
    body#aboutus .wp-block-group.top-business-flex:nth-of-type(2) figure.wp-block-image.size-full.il,
    body#aboutus .wp-block-group.top-business-flex:nth-of-type(3) figure.wp-block-image.size-full.il {
        display: none;
    }

    body#funeral figure.wp-block-image.size-full.top-business-illust.il {
        right: -30px;
        top: 62px;
    }

    figure.wp-block-image.size-full.st-illust1.il {
        left: -28px;
    }

    .wp-block-group.common-bk-wrap {
        padding-bottom: 38px;
    }

    .wp-block-group.gift-title {
        top: -58px;
    }

    figure.fade-blur-on-scroll.gifttype1 {
        top: -47px;
        right: -33px;
        max-width: 95px;
    }

    p.prev {
        left: -65px;
    }

    .next-prev .prev,
    .next-prev .next {
        top: 0;
    }

    p.next:before,
    p.prev:before {
        width: 14px;
        height: 34px;
        background-repeat: no-repeat;
    }

    p.next {
        right: 12px;
    }

    h2 span.small {
        font-size: 25px;
    }

    .wp-block-group.ourdepartments.inner figure.wp-block-image.size-full.il {
        left: 0;
        top: 127px;
        max-width: 73px;
    }

    .wp-block-group.bumon-flex-wrap {
        margin-bottom: 149px;
        display: block;
    }

    .wp-block-group.bumon-txt h3,
    .wp-block-group.bumon-txt h4 {
        text-align: center;
        max-width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .wp-block-group.bumon-txt {
        width: 100%;
        max-width: fit-content;
        margin: 0 auto 50px;
    }

    .wp-block-group.bumon-flex {
        width: 100%;
        max-width: 100%;
    }

    figure.wp-block-image.size-full.il.store-il3 {
        right: 8%;
        top: -34px;
        left: auto;
        margin: auto;
    }

    body#corporate-service figure.wp-block-image.size-full.il.corp-il1 {
        max-width: 72px;
        left: -31px;
        bottom: auto;
        top: 79px;
    }

    body#corporate-service .wp-block-group.ec-flex {
        padding: 110px 0 95px;
    }

    .wp-block-group.zimoto-wrap {
        position: relative;
        padding-bottom: 226px;
    }

    figure.wp-block-image.size-full.zimoto-img2 {
        max-width: 377px;
        bottom: 36px;
        right: 10px;
        z-index: 0;
    }

    .wp-block-group.stores-wrap figure.wp-block-image.size-full.il.store-il3 {
        right: auto;
        left: 24px;
        top: 77px;
    }


    .wp-block-group.inner.tsubame-wrap figure.wp-block-image.size-full.il {
        /* top: -60px; */
        left: 18%;
    }

    .wp-block-group.tsubame-concept-wrap.bk .inner {
        background-size: 100%;
    }

    .wp-block-group.tsubame-concept-wrap p {
        text-shadow: 0 0 5px #f2f6e6, 0 0 5px #f2f6e6, 0 0 5px #f2f6e6, 0 0 5px #f2f6e6, 0 0 5px #f2f6e6, 0 0 5px #f2f6e6, 0 0 5px #f2f6e6;
    }

    figure.wp-block-image.size-full.interview-il-1.il {
        right: 6%;
        top: -16px;
        max-width: 98px;
    }

    figure.wp-block-image.size-full.interview-il-2.il {
        top: 416px;
        left: -25px;
        max-width: 77px;
        z-index: 10;
    }

    figure.wp-block-image.size-full.interview-il-3.il {
        bottom: -113px;
        left: -32px;
        max-width: 87px;
    }

    .wp-block-group.faq-box .wp-block-vk-blocks-accordion.vk_accordion {
        margin-bottom: 10px !important;
    }

    .wp-block-group.interview-wrap .wp-block-vk-blocks-accordion-target.vk_accordion-target.vk_accordion-target-open {
        background: #fff !important;
        color: #2d322c !important;
    }
}

/* ==============================

    スマホ・タブレット縦

============================== */

@media screen and (max-width:1100px) {
    figure.wp-block-image.size-full.under-business-illust3.il {
        bottom: -27px;
        right: -12px;
        max-width: 83px;
    }

    .wp-block-group.hurusato-banner-flex>.wp-block-group__inner-container {
        max-width: 712px;
    }

    .wp-block-group.btn-flex.btn-flex2 {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .wp-block-group.btn-flex.btn-flex2 .wp-block-buttons.btn {
        max-width: fit-content;
        margin: auto;
    }

    .wp-block-group.btn-flex.btn-flex2 .wp-block-buttons.btn .wp-block-button a {
        width: 351px;
    }

    .wp-block-group.inner.location-wrap figure.wp-block-image.size-full.il {
        display: none;
    }

    body#diamond-member .wp-block-group.inner.diamond-wrap p.has-text-align-center {
        text-align: left;
    }

    figure.wp-block-image.size-full.img-hover.foot-logo {
        margin: 0 auto 12px;
    }

    p.foot-com-title {
        text-align: center;
    }

    .wp-block-group.foot-menu-box-wrap {
        margin-left: 45px;
    }

    body#diamond-member figure.wp-block-image.size-full.daiya-illust.il {
        top: auto;
        bottom: 46px;
        right: 9px;
    }

    figure.wp-block-image.size-full.shoplist-illust.il {
        top: auto;
        left: 7px;
        bottom: -23px;
    }

    .wp-block-buttons.green-btn {
        margin-top: -20px;
    }

    .open.icon-style-6 p.hamburger__line.hamburger__line--1,
    .open.icon-style-6 p.hamburger__line.hamburger__line--3 {
        top: 28px;
    }

    /*ハンバーガーメニュー表示*/
    .nav-wrapper {
        display: block;
        top: -3px;
        right: 2%;
    }

    .is-layout-flex>nav.header-inner-menu {
        display: none;
    }

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .wp-block-group.header-btn-flex {
        display: none;
    }

    header {
        width: 90%;
    }

    .hamburger-wrapper {
        width: 80px;
        height: 77px;
    }

    .hamburger .wp-block-group__inner-container::after,
    .hamburger .wp-block-group__inner-container::before {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 14px;
        letter-spacing: 1px;
        color: #fff;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .icon-style-6 p.hamburger__line.hamburger__line--1 {
        top: 22px;
    }

    .icon-style-6 p.hamburger__line.hamburger__line--3 {
        top: 36px;
    }

    .hamburger__line {
        background-color: #fff;
    }

    .menu-style-4::before {
        background: #5c9458;
        color: #fff;
    }

    .menu-style-4::before {
        top: 86px;
        left: auto;
        right: 86px;
    }

    .wp-block-group.top-news-flex {
        padding: 73px 0 107px;
        display: block;
    }

    .wp-block-group.news-title .wp-block-buttons.btn {
        position: absolute;
        top: 79px;
        right: 43px;
    }

    .wp-block-group.sp-nav-inner .wp-block-group.header-btn-flex {
        margin-top: 129px;
    }

    .wp-block-group.sp-navmenu {
        width: 90%;
        margin: 32px auto 0;
    }

    ul.top-news-list {
        width: 100%;
    }

    .wp-block-group.top-about-wrap {
        background-position: top 245px right;
        background-size: 560px;
        padding: 39px 0 180px;
        background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/top-about-sp.png);
    }

    .wp-block-group.midashi h2 {
        font-size: 36px;
    }

    .wp-block-group.top-about-wrap .wp-block-group.midashi h2 {
        margin-bottom: 414px;
    }

    .wp-block-group.top-about-wrap .inner {
        background-position: center bottom 97px;
    }

    figure.wp-block-image.size-full.top-about-illust2.il {
        top: 246px;
        left: 0;
        bottom: auto;
        right: 24%;
        margin: auto;
        max-width: 58px;
    }

    figure.wp-block-image.size-full.top-about-illust.il {
        top: 463px;
        right: 0;
        max-width: 82px;
    }

    .wp-block-image.en-midashi.sp figure.aligncenter.size-full,
    .wp-block-image.en-midashi.sp figure.aligncenter.size-full img {
        height: 168px;
    }

    .wp-block-image.en-midashi.sp img,
    .wp-block-image.en-midashi.sp {
        height: 168px;
        object-fit: contain;
    }

    .wp-block-group.top-business-flex {
        margin-bottom: 56px;
        display: block;
    }

    figure.wp-block-image.size-full.top-business-img {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 26px;
    }

    .wp-block-group.top-business-txt {
        width: 100%;
    }

    .wp-block-group.top-business-flex:nth-of-type(even) .wp-block-group.top-business-txt:after {
        right: auto;
        left: -6px;
        bottom: -59px;
    }

    figure.wp-block-image.size-full.top-business-illust.il {
        right: 24px;
        top: -47px;
        max-width: 110px;
    }

    .wp-block-group.top-business-txt p {
        max-width: fit-content;
        margin: 0 auto;
    }

    .wp-block-group.top-business-flex:nth-of-type(5) .wp-block-group.top-business-txt:after {
        right: 16px;
    }

    .wp-block-group.top-business-flex:nth-of-type(even) .wp-block-group.top-business-txt:after {
        right: auto;
        left: 17px;
        bottom: -38px;
        width: 69px;
    }

    figure.wp-block-image.size-full.daiya-illust2.il {
        bottom: 272px;
        left: 1%;
        max-width: 58px;
    }

    .wp-block-group.foot-btn-flex {
        margin: 0 auto;
        width: 533px;
    }

    .wp-block-group.foot-btn-flex .wp-block-buttons,
    .wp-block-buttons.green-btn {
        margin-top: 14px;
    }

    .wp-block-group.foot-btn-flex {
        display: block;
    }

    .wp-block-group.top-business-txt:after {
        width: 30px;
    }

    .wp-block-group.top-business-flex:nth-of-type(even) .wp-block-group.top-business-txt:after {
        right: auto;
        left: 17px;
        bottom: -38px;
        width: 79px;
    }

    .wp-block-group.top-business-flex:nth-of-type(3) .wp-block-group.top-business-txt:after {
        width: 54px;
        height: 118px;
        right: 4px;
        bottom: 44px;
    }


    .wp-block-group.top-business-flex:nth-of-type(5) .wp-block-group.top-business-txt:after {
        width: 50px;
        height: 117px;
    }

    .wp-block-group.top-business-flex:nth-of-type(4) .wp-block-group.top-business-txt:after {
        width: 46px;
    }

    figure.wp-block-image.size-full.il.foot-illust {
        right: 63px;
        width: 73px;
    }

    /*    .wp-block-group.inner.diamond-wrap .wp-block-group.btn-flex {
        width: 641px;
        margin-left: auto;
        margin-right: auto;
    }

    .wp-block-group.inner.diamond-wrap .wp-block-group.btn-flex .wp-block-buttons.btn {
        margin-left: auto;
        margin-right: auto;
        width: 341px;
    }*/

    .wp-block-group.daiya-title h2 {
        font-size: 30px;
        top: 6px;
        right: 0;
    }

    br.sp2 {
        display: none;
    }

    .under-v {
        height: 300px;
    }

    .wp-block-group.owner-flex {
        padding: 96px 0 109px;
        display: block;
    }

    .wp-block-group.owner-img-wrap,
    .wp-block-group.owner-txt {
        width: 100%;
    }

    .wp-block-group.owner-img-wrap {
        max-width: 500px;
        margin: 49px auto 59px;
    }

    .wp-block-group.midashi h2 {
        margin-bottom: 30px;
    }

    figure.wp-block-image.size-full.il.rinen-illust-1 {
        top: 182px;
        max-width: 90px;
        left: -13px;
    }

    figure.wp-block-image.size-full.il.owner-icon {
        bottom: -44px;
    }

    .wp-block-group.rinen-box {
        margin-top: 25px;
        padding: 26px 16px 38px;
    }

    .wp-block-group.rinen-box h2 {
        color: #5c9458;
        margin-bottom: 10px;
    }

    .wp-block-group.rinen-box.bk p {
        text-align: left;
        width: 90%;
    }

    .wp-block-group.rinen-box.bk ul {
        margin: 0 auto;
        line-height: 2;
        width: 90%;
        padding-left: 20px;
    }

    figure.wp-block-image.size-full.il.rinen-illust-2 {
        bottom: 118px;
        right: 0;
        max-width: 50px;
    }

    p.has-text-align-center.under-business-txt {
        text-align: left;
        max-width: fit-content;
        margin: 0 auto 0;
        padding-bottom: 41px;
    }

    figure.wp-block-image.size-full.under-business-illust2 {
        top: 142px;
        left: 2%;
        max-width: 59px;
    }

    .wp-block-group.under-business-flex>.wp-block-group__inner-container {
        gap: 5%;
    }

    .wp-block-group.under-business-box {
        width: 47%;
        margin-bottom: 35px;
    }

    .wp-block-group.location-btns .wp-block-buttons.green-btn {
        width: 48%;
    }

    .location-flex-wrap {
        display: block !important;
    }

    .location-flex-wrap .wp-block-group.slider-05 {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 43px;
    }

    .wp-block-group.location-box-left {
        width: 100%;
        max-width: 600px;
        margin: 65px auto 0;
    }

    .wp-block-group.location-txt-box-wrap h3 {
        text-align: center;
    }

    div#mainoffice figure.wp-block-image.il {
        left: -13px;
        bottom: -100px;
    }

    .location-flex-wrap {
        margin-bottom: 82px;
    }

    .wp-block-group.bk.insta-box {
        margin: 61px auto 76px;
        max-width: 450px;
        padding: 23px 0 29px;
        border-radius: 30px;
    }

    div#hikami figure.wp-block-image.size-full.il {
        right: 0;
        z-index: 10;
        bottom: -45px;
    }

    div#tsubametokaze figure.wp-block-image.size-full.il {
        top: -36px;
        left: 10%;
    }

    .video-wrap {
        margin-top: 80px;
    }

    div#kaibara figure.wp-block-image.size-full.il {
        left: -6px;
        bottom: -81px;
        max-width: 74px;
    }

    .wp-block-group.inner.location-wrap {
        padding: 89px 0 20px;
    }

    .wp-block-group.location-btns>.wp-block-group__inner-container {
        gap: 16px;
        margin-bottom: 83px;
        justify-content: center;
    }

    .wp-block-group.inner.company-prof .wp-block-group.en-midashi-wrap {
        top: 0;
        max-width: 594px;
    }

    .wp-block-group.inner.company-prof {
        padding: 64px 0 116px;
    }

    .wp-block-group.inner.company-prof figure.wp-block-image.il {
        bottom: 74px;
        left: auto;
        max-width: 74px;
        right: -14px;
    }

    .wp-block-group.inner.company-prof figure.wp-block-table tr {
        display: block;
    }

    .wp-block-table td:first-of-type {
        width: 100% !important;
        display: block;
        border: none !important;
    }

    figure.wp-block-table td,
    figure.wp-block-table th {
        padding: 9px 15px;
    }

    .wp-block-table td {
        width: 100%;
        display: block;
    }

    figure.wp-block-image.size-full.top-business-illust.il {
        display: none;
    }

    figure.wp-block-image.size-full.sdgs-illust1.il {
        top: 153px;
        left: -31px;
    }

    body#aboutus figure.wp-block-image.size-full.top-business-img {
        margin-bottom: 35px;
    }

    body#aboutus .wp-block-group.top-business-flex {
        margin-bottom: 75px;
    }

    .wp-block-group.tsubame-pro-wrap.bk {
        padding-bottom: 40px;
    }

    .wp-block-group.top-business-wrap {
        padding-bottom: 1px;
    }

    .wp-block-group.sousai-about-wrap {
        padding: 100px 0 119px;
        background-size: 50%;
    }

    figure.wp-block-image.size-full.st-illust1.il {
        left: 0px;
        max-width: 76px;
        top: 150px;
    }

    p.has-text-align-center.common-txt {
        text-align: left;
        max-width: fit-content;
        margin-right: auto;
        margin-left: auto;
    }

    .wp-block-group.common-box-flex>.wp-block-group__inner-container {
        display: block;
        margin-top: 53px;
    }

    .wp-block-group.common-box {
        width: 100%;
        max-width: 550px;
        margin: 0 auto 40px;
    }

    .wp-block-group.common-bk-wrap {
        padding-bottom: 53px;
    }

    figure.wp-block-image.size-full.st-illust3.il {
        display: none;
    }

    body#funeral .wp-block-group.inner.diamond-wrap {
        padding: 103px 0 0px;
    }

    body#funeral figure.wp-block-image.size-full.daiya-illust2.il {
        bottom: 100px;
    }

    .wp-block-group.gifttype-flex {
        width: 90%;
        display: block;
    }

    .wp-block-group.gifttype-txt {
        width: 100%;
    }

    .wp-block-group.gifttype-img {
        max-width: 300px;
        width: 100%;
        margin: 28px auto 18px;
    }

    .wp-block-group.gift-type-wrap .wp-block-group.slider-05.inner {
        border-radius: 40px;
        padding: 39px;
        height: 775px;
    }

    .wp-block-group.gifttype-txt h3,
    .wp-block-group.gifttype-txt h4 {
        text-align: center;
    }

    .wp-block-group.gifttype-txt h4 {
        font-size: 20px;
        margin: 6px 0 16px;
    }

    .wp-block-group.gift-title {
        top: -191px;
        display: block;
        position: relative;
    }

    .wp-block-group.gift-title h2 {
        margin: 6px 0 0 0;
    }

    figure.fade-blur-on-scroll.gifttype1 {
        top: -21px;
        right: 0;
        max-width: 95px;
    }

    figure.wp-block-image.size-full.il.gifttype2 {
        max-width: 85px;
        bottom: auto;
        left: 0;
        top: 265px;
        right: 49%;
        margin: auto;
        z-index: 10;
    }

    .wp-block-group.gift-type-wrap {
        margin: 235px auto 10px;
        width: 95%;
    }

    .wp-block-group.gift-img-wrap {
        max-width: 499px;
        margin: 0 auto;
        position: relative;
    }

    figure.wp-block-image.size-full.is-resized.il.git-il2 {
        bottom: -74px;
        max-width: 54px;
    }

    figure.wp-block-image.size-full.il.git-il1 {
        top: -41px;
        left: -55px;
        max-width: 92px;
    }

    figure.wp-block-image.size-full.gift-img {
        margin: 47px auto 53px;
    }

    .wp-block-group.inner.gift-txt-wrap {
        padding: 111px 0 159px;
        background-position: bottom 90px right;
        background-size: 400px;
    }

    .wp-block-group.inner.gift-txt-wrap p.has-text-align-center {
        text-align: left;
        max-width: 700px;
        margin: 0 auto;
    }

    .wp-block-group.ec-txt {
        width: 100%;
    }

    .wp-block-group.ec-flex figure.wp-block-image.size-full.il {
        max-width: 100px;
        right: 10%;
        bottom: auto;
        top: 630px;
    }

    figure.wp-block-image.size-full.ec-img.sp {
        max-width: 450px;
        margin: 46px auto 49px;
    }

    .wp-block-group.ec-flex {
        padding: 81px 0 60px;
    }

    .wp-block-group.ourdepartments.inner figure.wp-block-image.size-full.il {
        left: 0;
        top: 181px;
        max-width: 73px;
    }

    .wp-block-group.bumon-title {
        margin-bottom: 26px;
    }

    .wp-block-group.bumon-flex {
        display: block;
    }

    .wp-block-group.bumon-box {
        margin-bottom: 30px;
    }

    .wp-block-group.bumon-box p.bumon-box-txt {
        opacity: 1;
        transform: translateY(0);
        z-index: 10;
        max-height: 300px;
        margin-top: 15px;
        text-align: left;
    }

    .bumon-box {
        height: 401px;
    }

    .bumon-box-inner {
        bottom: auto;
        left: 0;
        right: 0;
        top: 100px;
    }

    .wp-block-group.bumon-flex-wrap {
        margin-bottom: 116px;
        display: block;
    }

    .wp-block-group.bumon-txt h4 {
        display: none;
    }

    .wp-block-group.bumon-txt {
        width: 100%;
        max-width: fit-content;
        margin: 35px auto 37px;
    }

    figure.wp-block-image.size-full.il.store-il3 {
        right: 12px;
        top: 68px;
        left: auto;
        margin: auto;
        max-width: 100px;
    }

    .wp-block-group.logo-flex {
        gap: 20px !important;
    }

    .wp-block-group.review-box-wrap {
        max-width: 895px;
        margin-bottom: 61px;
        position: relative;
        background-size: 80px;
    }

    .slide.loopslide-img-2 {
        width: 380px;
        margin-top: 113px;
    }

    .slide.loopslide-img-1 {
        width: 500px;
    }

    .slide.loopslide-img-3 {
        width: 400px;
    }

    .slide.loopslide-img-4 {
        width: 672px;
    }

    figure.wp-block-image.size-full.il.store-il1 {
        top: -36px;
        right: 27px;
        z-index: 10;
        max-width: 149px;
    }

    figure.wp-block-image.size-full.il.store-il2 {
        bottom: -20px;
        left: 51px;
        z-index: 10;
        max-width: 75px;
    }

    .wp-block-group.review-box-wrap h4 {
        font-size: 26px;
    }

    .wp-block-group.review-box-wrap h3 strong {
        font-size: 43px;
    }

    .wp-block-group.review-box-wrap h3 {
        font-size: 33px;
        margin-bottom: 24px;
    }

    p.has-text-align-center.store-txt2 {
        text-align: left;
        max-width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    body#corporate-service .wp-block-group.ec-flex {
        padding: 91px 0 100px;
    }

    body#corporate-service figure.wp-block-image.size-full.il.corp-il1 {
        max-width: 72px;
        left: 3%;
        bottom: auto;
        top: 60px;
    }

    body#corporate-service figure.wp-block-image.size-full.il.corp-il2 {
        right: 0;
        bottom: auto;
        max-width: fit-content;
        left: 76%;
        z-index: 10;
        top: 455px;
    }

    .wp-block-group.zimoto-wrap {
        position: relative;
        padding-bottom: 142px;
        background-size: 53%;
    }

    .wp-block-group.zimoto-wrap p.has-text-align-center {
        text-align: left;
        max-width: fit-content;
        margin-left: auto;
        margin-right: auto;
        text-shadow: 0 0 3px #fffef2, 0 0 3px #fffef2, 0 0 3px #fffef2, 0 0 3px #fffef2, 0 0 3px #fffef2, 0 0 3px #fffef2;
        z-index: 2;
        position: relative;
    }

    .wp-block-image.en-title-2 figure.aligncenter.size-full img,
    .wp-block-image.en-title-2 figure.aligncenter.size-full {
        height: 172px;
    }

    .wp-block-group.stores-wrap figure.wp-block-image.size-full.il.store-il3 {
        right: auto;
        left: 6px;
        top: 128px;
        max-width: 83px;
    }

    .wp-block-group.product-flex-wrap>.wp-block-group__inner-container {
        display: block;
    }

    .wp-block-group.product-flex-wrap {
        margin-top: 26px;
    }

    .wp-block-group.product-flex {
        max-width: 650px;
        width: 100%;
        margin: 0 auto 36px;
    }

    .wp-block-group.habeguro {
        max-width: 500px;
        margin: 75px auto 0;
    }

    figure.wp-block-image.size-full.zimoto-img {
        margin: 49px auto 47px;
    }

    body#furusato-tax figure.wp-block-image.size-full.is-resized.il.git-il2 {
        bottom: -45px;
        max-width: 54px;
    }

    body#furusato-tax .wp-block-group.inner.gift-txt-wrap {
        padding-bottom: 136px;
        padding-top: 98px;
    }

    figure.wp-block-image.size-full.il.fvision-il-1 {
        left: auto;
        right: 0;
    }

    .wp-block-group.yon-flex p {
        width: 72%;
    }

    .wp-block-group.yon-box {
        margin: 45px auto;
        padding: 30px 29px 30px;
        max-width: 1060px;
    }

    figure.wp-block-image.size-full.il.fvision-il-2 {
        bottom: auto;
        top: 477px;
    }

    p.has-text-align-center.vision-txt1,
    p.has-text-align-center.vision-txt2 {
        text-align: left;
        max-width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    figure.wp-block-image.size-full.banner {
        margin-bottom: 24px;
        width: 44%;
    }

    .wp-block-group.hurusato-banner-flex>.wp-block-group__inner-container {
        justify-content: center;
    }

    .wp-block-group.inner.hurusato-list {
        padding: 77px 0 0;
    }

    .wp-block-group.tsubame-concept-wrap.bk .inner {
        padding: 0 0 231px;
        max-width: 1400px;
        background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/concept-bk-sp-1.png), url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/concept-bk-sp2.png);
        background-repeat: no-repeat;
        background-position: bottom 117px center, top 100px center;
        background-size: 900px, 100%;
    }

    p.has-text-align-center.tsubame-kodawari-txt {
        text-align: left;
        max-width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .wp-block-group.tsubame-concept-wrap.bk {
        background-size: 150%;
    }

    .wp-block-group.tsubame-image-wrap {
        max-width: 490px;
    }

    figure.wp-block-image.size-full.huro {
        bottom: -50px;
        position: absolute;
        right: -76px;
        max-width: 158px;
    }

    figure.wp-block-image.size-full.tsubame-logo {
        margin: 0 auto 26px;
        max-width: 340px;
    }

    .wp-block-group.inner.tsubame-wrap figure.wp-block-image.size-full.il {
        /* top: -48px; */
        left: 11%;
        max-width: 63px;
    }

    .wp-block-group.inner.tsubame-wrap p.has-text-align-center {
        text-align: left;
        max-width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .wp-block-group.inner.tsubame-wrap {
        padding: 96px 0 107px;
    }

    .wp-block-group.tsubame-concept-wrap.bk p.has-text-align-center {
        text-align: left;
        max-width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }


    .wp-block-group.tsubame-point-flex {
        margin-top: 93px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10% !important;
    }

    .wp-block-group.tsubame-point {
        max-width: fit-content;
        width: 45%;
        margin-bottom: 53px;
    }

    .wp-block-group.inner.tsubame-kodawari-wrap {
        padding: 93px 0 57px;
    }

    .wp-block-group.bk.insta-box figure.wp-block-image.size-full.il {
        display: block;
    }

    .wp-block-group.tsubame-pro-wrap figure.wp-block-image.size-full.il {
        right: -23px;
        left: auto;
        top: 120px;
        display: block;
        max-width: 56px;
    }

    figure.wp-block-image.size-full.il.fade-blur-on-scroll.mission-il-1 {
        top: 124px;
        right: 11px;
        max-width: 91px;
    }

    figure.wp-block-image.size-full.il.mission-il-2 {
        display: none;
    }

    figure.wp-block-image.size-full.interview-il-1.il {
        right: 0;
        top: 51px;
        max-width: 98px;
    }

    figure.wp-block-image.size-full.interview-il-2.il {
        display: none;
    }

    .wp-block-group.interview-flex {
        margin-bottom: 54px;
    }

    figure.wp-block-image.size-full.interview-img {
        width: 225px;
        margin-right: 28px;
    }

    .wp-block-group.interview-wrap {
        padding-bottom: 73px;
    }

    figure.wp-block-image.size-full.interview-il-3.il {
        bottom: -91px;
        left: -18px;
        max-width: 87px;
    }

    .wp-block-image.en-midashi figure.aligncenter.size-full,
    .wp-block-image.en-midashi figure.aligncenter.size-full img {
        height: 68px;
        object-fit: contain;
    }

    .wp-block-group.interview-wrap p.prev {
        left: -21px;
    }

    .wp-block-group.interview-wrap p.next {
        right: -21px;
    }

    .wp-block-group.interview-wrap .slider-05 .wp-block-group.next-prev {
        top: 96px;
    }

    .wp-block-group.gift-type-wrap .slider-05 .wp-block-group.next-prev {
        display: block;
        top: 50%;
    }

    figure.wp-block-image.size-full.vision-image {
        max-width: 450px;
    }

    p.has-text-align-center.contact-head-title {
        font-size: 14px;
        line-height: 1;
        margin-top: 2px;
    }

    .wp-block-group.contact-head.sp {
        color: #fff;
        position: fixed;
        top: 8px;
        right: 113px;
    }

    .wp-block-group.interview-txt {
        padding-top: 8px;
    }

    .wp-block-group.interview-txt h3 {
        font-size: 23px;
    }

}



/* ==============================

    タブレット縦のみ

============================== */

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


    .tel-menu-flex {
        max-width: 374px;
    }

    .vk_spacer-display-tablet {
        display: block !important;
    }

    .vk_spacer-display-pc,
    .vk_spacer-display-mobile {
        display: none !important;
    }

}


/* ==============================

    スマホ以下　

============================== */

@media screen and (max-width: 710px) {
    .wp-block-group.inner.location-wrap figure.wp-block-image.size-full.il {
        display: block;
    }

    div#mainoffice figure.wp-block-image.il {
        display: block;
    }

    .fix_nav.sp_disp.sp {
        display: block;
    }


    .inner-s,
    .inner,
    .inner-l {
        width: 90%;
    }


    /*スマホ版文字サイズ*/
    p {
        font-size: 14px;
        line-height: 2;
    }

    .vk_spacer-display-mobile {
        display: block !important;
    }

    .vk_spacer-display-pc,
    .vk_spacer-display-tablet {
        display: none !important;
    }

    /* ==============================
    
        特定商取引に基づく表記・テーブル

    ============================== */

    .wp-block-table tr td {
        display: block;
        width: 100%;
    }

    .wp-block-table td:first-of-type {
        width: 100%;
    }

    figure.wp-block-table td,
    figure.wp-block-table th {
        border: none;
        padding: 10px 13px;
    }

    figure.wp-block-table {
        font-size: 14px;
    }

    .wp-block-group.tokusho-wrap {
        padding: 59px 0 94px;
    }


    /* ==============================
    
    個人情報保護方針
    
　============================== */

    .wp-block-group.policy-wrap {
        font-size: 14px;
        padding: 53px 0 4px;
    }

    .wp-block-group.policy-wrap p {
        margin-bottom: 23px;
    }

    .wp-block-group.policy-wrap li {
        margin-bottom: 20px;
    }

    /* ==============================
    
        以下テーマ専用CSS
    
    ============================== */
    .wp-block-group.foot-btn-flex {
        width: 260px;
    }

    .wp-block-group.foot-menu-box-flex {
        display: none;
    }

    figure.wp-block-image.size-full.logo.img-hover {
        max-width: 109px;
    }

    header {
        width: 88%;
        top: 27px;
        padding: 10px 15px 9px 21px;
    }

    .hamburger-wrapper {
        width: 58px;
        height: 58px;
    }

    .hamburger .wp-block-group__inner-container::after,
    .hamburger .wp-block-group__inner-container::before {
        bottom: 9px;
        font-size: 10px;
        white-space: nowrap;
    }

    .icon-style-6 p.hamburger__line.hamburger__line--3 {
        top: 26px;
    }

    .icon-style-6 p.hamburger__line.hamburger__line--1 {
        top: 16px;
    }

    header .wp-block-buttons .wp-block-button a {
        font-size: 15px;
        padding: 11px 0 11px;
    }

    .open.icon-style-6 p.hamburger__line.hamburger__line--1,
    .open.icon-style-6 p.hamburger__line.hamburger__line--3 {
        top: 19px;
    }


    .wp-block-group.copy-box {
        max-width: fit-content;
        margin-top: 0 !important;
        bottom: 62px;
    }

    figure.wp-block-image.size-full.kikuyaco {
        max-width: 156px;
    }

    figure.wp-block-image.size-full.touching {
        max-width: 400px;
        margin: 13px auto 14px;
    }

    .wp-block-group.mainv h1 br.sp {
        display: block;
    }

    .wp-block-group.mainv h1 {
        font-size: 31px;
    }

    .mainv h2 {
        font-size: 16px;
        margin: 10px 0 20px;
    }

    .mainv h3 span {
        font-size: 18px;
        padding: 0 4px;
    }

    .mainv h3 {
        display: block;
        max-width: 350px;
        margin: 0 auto;
        font-size: 14px;
        width: 92%;
    }

    body:after {
        border: 10px solid #5c9458;
    }

    figure.wp-block-image.size-full.is-resized.mainv-illust {
        position: absolute;
        top: -37px;
        right: 0;
        width: 49px;
    }

    .wp-block-group.mainv {
        width: 100%;
    }

    .wp-block-group.kikuyaco-sp {
        max-width: 350px;
        width: 95%;
        margin: auto;
    }

    .wp-block-group.top-news-flex {
        padding: 0px 0 30px;
        display: block;
    }

    .wp-block-group.midashi h3 {
        font-size: 16px;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    h2,
    .wp-block-group.midashi h2 {
        font-size: 24px;
        line-height: 1.5;
    }

    .wp-block-group.news-title .wp-block-group.midashi h2 {
        margin-bottom: 11px;
    }

    ul.top-news-list li a {
        padding: 12px 0;
        border-bottom: 1px dotted #446a42;
    }

    .wp-block-buttons.btn .wp-block-button a:hover:before,
    .wp-block-group.foot-btn-flex .wp-block-buttons .wp-block-button a:hover:before,
    .wp-block-buttons.green-btn .wp-block-button a:hover:before {
        right: 0;
        font-size: 15px;
    }

    .wp-block-buttons.btn .wp-block-button a:before,
    .wp-block-group.foot-btn-flex .wp-block-buttons .wp-block-button a:before,
    .wp-block-buttons.green-btn .wp-block-button a:before {
        width: 40px;
        height: 40px;
        line-height: 2.5;
        font-size: 16px;
    }

    .wp-block-buttons.btn .wp-block-button a {
        font-size: 14px;
        padding: 10px 57px 10px 10px;
    }

    .wp-block-group.news-title .wp-block-buttons.btn {
        position: absolute;
        top: 11px;
        right: 21px;
    }

    .wp-block-buttons.btn .wp-block-button a:hover {
        font-size: 15px;
    }

    .wp-block-buttons.btn .wp-block-button a:hover:before,
    .wp-block-group.foot-btn-flex .wp-block-buttons .wp-block-button a:hover:before,
    .wp-block-buttons.green-btn .wp-block-button a:hover:before {
        right: 10px;
        font-size: 15px;
        width: 38px;
        height: 38px;
    }

    .wp-block-group.news-title {
        width: auto;
    }

    .wp-block-group.top-about-wrap {
        background-position: top 217px right;
        background-size: 350px;
        padding: 50px 0 54px;
    }

    .wp-block-group.top-about-wrap .wp-block-group.midashi h2 {
        margin-bottom: 260px;
    }

    figure.wp-block-image.size-full.top-about-illust2.il {
        top: 184px;
        left: 0;
        bottom: auto;
        right: 60%;
        margin: auto;
        max-width: 38px;
    }

    figure.wp-block-image.size-full.top-about-illust.il {
        top: 322px;
        right: 23px;
        max-width: 54px;
    }

    .wp-block-group.top-about-wrap p.has-text-align-center {
        line-height: 2;
        text-align: left;
    }

    .wp-block-group.btn-flex {
        margin-top: 31px;
        display: block;
    }

    .wp-block-group.btn-flex .wp-block-buttons.btn.is-layout-flex.wp-block-buttons-is-layout-flex {
        width: 229px;
        margin: 0 auto 10px;
    }

    .wp-block-group.top-about-wrap .inner {
        background-position: center top 472px;
        background-size: 330px;
    }

    .wp-block-group.bk {
        border-radius: 50px;
        width: 95%;
    }

    .wp-block-image.en-midashi.sp img,
    .wp-block-image.en-midashi.sp {
        height: 96px;
    }

    .wp-block-group.en-midashi-wrap {
        position: relative;
        top: -20px;
        margin-bottom: 14px;
    }

    .wp-block-group.en-midashi-wrap h2 {
        margin-top: 13px;
    }

    figure.wp-block-image.size-full.top-business-illust.il {
        right: 22px;
        top: -35px;
        max-width: 64px;
    }

    .wp-block-group.top-business-wrap .inner {
        width: 100%;
    }

    figure.wp-block-image.size-full.top-business-img img {
        border-radius: 40px 0 0 40px;
    }

    figure.wp-block-image.size-full.top-business-img {
        width: 100%;
        max-width: 300px;
        margin: 0 0 0 auto;
    }

    .wp-block-group.top-business-txt h3 {
        font-size: 22px;
        margin: 0 auto;
        padding-left: 68px;
    }

    .wp-block-group.top-business-txt h3:before {
        width: 53px;
        height: 42px;
        top: 0;
        left: 4px;
    }

    .wp-block-group.top-business-txt h4 {
        font-size: 18px;
        margin: 17px 0 13px;
    }

    .wp-block-group.top-business-txt {
        width: 90%;
        margin: 23px auto 0;
    }

    .wp-block-group.top-business-flex {
        margin-bottom: 31px;
    }

    .wp-block-group.top-business-flex:nth-of-type(even) figure.wp-block-image.size-full.top-business-img img {
        border-radius: 0 40px 40px 0;
    }

    .wp-block-group.top-business-flex:nth-of-type(even) figure.wp-block-image.size-full.top-business-img {
        margin: 0 auto 0 0;
    }

    .wp-block-group.top-business-wrap {
        padding-bottom: 19px;
    }

    .wp-block-group.top-business-txt:after {
        width: 24px;
        bottom: -34px;
    }

    .wp-block-group.top-business-flex:nth-of-type(even) .wp-block-group.top-business-txt:after {
        right: auto;
        left: 0;
        bottom: -27px;
        width: 52px;
        height: 65px;
    }

    .wp-block-group.top-business-flex:nth-of-type(3) .wp-block-group.top-business-txt:after {
        width: 32px;
        height: 78px;
        right: 4px;
        bottom: 0;
    }

    .wp-block-group.top-business-flex:nth-of-type(4) .wp-block-group.top-business-txt:after {
        width: 35px;
        height: 62px;
    }

    .wp-block-group.top-business-flex:nth-of-type(5) .wp-block-group.top-business-txt:after {
        width: 35px;
        height: 87px;
        bottom: -16px;
        right: 4px;
    }

    .wp-block-group.inner.diamond-wrap {
        padding: 67px 0 58px;
    }

    .wp-block-group.daiya-title h2 {
        font-size: 23px;
        top: -16px;
        right: -5px;
        line-height: 1.2;
    }

    figure.wp-block-image.size-full.st-illust1.il {
        left: 0px;
        max-width: 49px;
        top: 84px;
    }

    figure.wp-block-image.size-full.daiya-illust.il {
        max-width: 58px !important;
        bottom: -65px;
        right: 0;
    }

    .wp-block-image.card-img {
        margin: 62px auto 38px;
        position: relative;
        max-width: 245px;
    }

    .wp-block-image.card-img:after {
        width: 100px;
        height: 100px;
        background-size: contain;
        display: inline-block;
        background-repeat: no-repeat;
        position: absolute;
        top: -33px;
        left: -48px;
    }

    figure.wp-block-image.size-full.daiya-illust2.il {
        display: none;
    }

    figure.wp-block-image.size-full.en-midashi img,
    figure.wp-block-image.size-full.en-midashi {
        height: 43px;
    }

    figure.wp-block-image.size-full.top-recruit-title {
        max-width: 400px;
        margin: 0 auto 24px;
    }

    .wp-block-group.daiya-title figure.wp-block-image.size-full {
        max-width: 338px;
    }

    .wp-block-group.top-recruit-wrap.bk {
        background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/rec-sp-bk.png);
        background-size: 100%;
        background-position: bottom 75px center;
    }

    .wp-block-group.top-recruit-wrap .inner {
        padding-bottom: 305px;
        background-position: center bottom -51px;
        background-size: 213px;
        position: relative;
    }

    figure.wp-block-image.size-full.il.rec-il-1.sp2 {
        max-width: 50px;
        top: 40px;
    }

    figure.wp-block-image.size-full.il.rec-il-2.sp2 {
        max-width: 50px;
        right: 23px;
        bottom: 207px;
    }

    .wp-block-group.inner.footcontact-wrap {
        margin-top: 35px;
        margin-bottom: 58px;
    }

    .wp-block-group.inner.footcontact-wrap p.has-text-align-center {
        padding-top: 33px;
        font-size: 16px;
        margin-bottom: 26px;
        background-size: 300px;
    }

    .wp-block-group.foot-btn-flex {
        width: 300px;
    }

    .wp-block-group.foot-btn-flex .wp-block-buttons .wp-block-button a,
    .wp-block-buttons.green-btn .wp-block-button a {
        padding: 20px 41px 21px 0;
        font-size: 15px;
    }

    .wp-block-group.foot-btn-flex .wp-block-buttons:nth-of-type(2) .wp-block-button a span {
        font-size: 13px;
    }

    .wp-block-group.foot-btn-flex .wp-block-buttons:nth-of-type(2) .wp-block-button a {
        padding-top: 8px;
        padding-bottom: 11px;
    }

    figure.wp-block-image.size-full.il.foot-illust {
        right: 25px;
        width: 50px;
        top: -41px;
    }

    .wp-block-group.foot-inner {
        border-radius: 40px 40px 0 0;
        width: 96%;
        margin: auto;
        padding: 34px 0 1px;
        position: relative;
    }

    figure.wp-block-image.size-full.img-hover.foot-logo {
        max-width: 130px;
        margin: 0 auto 16px;
    }

    .wp-block-group.foot-logo-wrap p {
        font-size: 14px;
    }

    p.foot-com-title {
        text-align: center;
    }

    .inner {
        width: 87%;
    }

    br.sp2 {
        display: block;
    }

    #loading-screen .loading-logo {
        max-width: 150px !important;
        width: 150px !important;
    }

    /*    .wp-block-group.inner.diamond-wrap .wp-block-group.btn-flex .wp-block-buttons.btn {
        margin-left: auto;
        margin-right: auto;
        width: 214px;
    }*/

    .wp-block-group.inner.diamond-wrap .wp-block-group.btn-flex {
        display: block;
        width: 214px;
    }

    .under-v {
        height: 172px;
        border-radius: 30px;
    }

    body {
        padding-top: 60px;
    }

    .under-v h1:before {
        font-size: 14px;
        top: 4px;
    }

    .under-v h1 {
        padding-top: 28px;
        font-size: 21px;
    }

    .post-title {
        border-bottom: 1px dotted #446a42;
    }

    .wp-block-group.inner.diamond-wrap {
        padding: 39px 0 68px;
    }

    .wp-block-group.inner.diamond-wrap {
        padding: 39px 0 68px;
    }

    body#diamond-member .wp-block-image.card-img {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    body#diamond-member .wp-block-group.inner.diamond-wrap .wp-block-buttons.btn {
        margin-top: 26px;
    }

    figure.wp-block-image.size-full.shoplist-illust.il {
        top: auto;
        left: 7px;
        bottom: -39px;
        max-width: 35px;
    }

    .wp-block-group.shoplist-wrap .inner {
        padding-bottom: 67px;
    }

    .wp-block-image.en-midashi img,
    .wp-block-image.en-midashi {
        height: 38px;
    }

    body#diamond-member figure.wp-block-image.size-full.daiya-illust.il {
        top: 272px;
        bottom: auto;
        right: 0;
        z-index: 10;
    }

    .nav-wrapper {
        right: 2%;
        top: -2px;
    }

    .wp-block-group.sp-nav-inner .wp-block-group.header-btn-flex {
        max-width: 90%;
        margin: 116px auto 0;
    }

    .wp-block-group.sp-nav-inner .wp-block-group.header-btn-flex .wp-block-buttons.recruit-btn.is-layout-flex.wp-block-buttons-is-layout-flex {
        width: 167px !important;
    }

    .menu-style-4::before {
        top: 53px;
        left: auto;
        right: 50px;
    }

    .wp-block-buttons.green-btn {
        max-width: 300px;
    }

    .wp-block-group.owner-flex {
        padding: 47px 0 47px;
        display: block;
    }

    .wp-block-group.midashi h2 {
        margin-bottom: 17px;
    }

    p.has-text-align-right.owner-name-txt {
        margin-top: 4px;
    }

    .wp-block-group.owner-img-wrap {
        max-width: 275px;
        margin: 31px auto 31px;
    }

    figure.wp-block-image.size-full.il.owner-icon {
        bottom: -32px;
        right: -25px;
        max-width: 55px;
    }

    .wp-block-group.rinen-box {
        margin-top: 14px;
        padding: 18px 11px 23px;
    }

    .wp-block-group.rinen-box h2 {
        margin-bottom: 7px;
        font-size: 18px;
    }

    .wp-block-group.rinen-box.bk p,
    .wp-block-group.rinen-box.bk ul {
        font-size: 15px;
    }

    .wp-block-group.rinen-wrap {
        padding-bottom: 74px;
    }

    figure.wp-block-image.size-full.il.rinen-illust-2 {
        bottom: 34px;
        right: 0;
        max-width: 32px;
    }

    figure.wp-block-image.size-full.il.rinen-illust-1 {
        top: 96px;
        max-width: 43px;
        left: 6px;
    }

    body#philosophy figure.wp-block-image.size-full.top-business-illust.il {
        top: -29px;
        right: auto;
        left: 14px;
    }

    figure.wp-block-image.size-full.under-business-illust2 {
        display: none;
    }

    p.has-text-align-center.under-business-txt {
        margin: 0 auto 0;
        padding-bottom: 39px;
        width: 90%;
    }

    .wp-block-group.under-business-flex>.wp-block-group__inner-container {
        display: block;
    }

    .wp-block-group.under-business-box {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 27px;
    }

    .wp-block-group.under-business-box h3 {
        font-size: 22px;
        margin: 14px 0 7px;
    }

    figure.wp-block-image.size-full.under-business-tsubame.il {
        max-width: 56px;
    }

    figure.wp-block-image.size-full.under-business-illust3.il {
        bottom: -34px;
        right: 26px;
        max-width: 56px;
    }

    figure.wp-block-image.size-full.is-resized.loca-title {
        max-width: 153px;
        margin: 0 auto 34px;
    }

    .wp-block-group.location-btns>.wp-block-group__inner-container {
        margin-bottom: 29px;
        gap: 0%;
    }

    .wp-block-group.location-btns .wp-block-buttons.green-btn .wp-block-button a:before {
        display: none;
    }

    .wp-block-group.location-btns .wp-block-buttons.green-btn .wp-block-button a {
        padding: 13px 0 13px 0;
        text-align: center;
    }

    .wp-block-group.location-btns .wp-block-buttons.green-btn {
        width: 48%;
        max-width: 250px;
        margin: 0 auto 9px;
    }

    .wp-block-group.location-btns .wp-block-buttons.green-btn .wp-block-button a {
        padding: 13px 0 13px 0;
        text-align: center;
    }

    .wp-block-group.location-box-wrap-flex .wp-block-group.location-txt-box-wrap {
        width: 100%;
    }

    .wp-block-group.location-btns .wp-block-buttons.green-btn .wp-block-button a {
        padding: 12px 0 13px 0;
        text-align: center;
    }

    .wp-block-buttons.green-btn.green-btn2 .wp-block-button a {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }

    .wp-block-group.inner.location-wrap {
        padding: 40px 0 20px;
    }

    .location-flex-wrap .wp-block-group.slider-05 {
        width: 100%;
        max-width: 280px;
        margin: 0 auto 20px;
    }

    .dot {
        width: 6px;
        height: 6px;
    }

    .slider-dots {
        gap: 6px;
        bottom: -20px;
    }

    .wp-block-group.location-txt-box-wrap h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    p.location-txt-title {
        width: 84px;
    }

    p.map-link a {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .wp-block-group.location-box-wrap-flex {
        margin-top: 23px;
        margin-bottom: 23px;
        display: block;
    }

    .wp-block-group.location-txt-flex {
        margin-bottom: 10px;
        display: block;
        border-bottom: 1px dotted #5c9458;
        padding-bottom: 10px;
    }

    .wp-block-group.location-txt-flex p {
        line-height: 1.9;
    }

    p.location-txt {
        width: 100%;
    }

    .wp-block-group.location-box-wrap-flex .wp-block-group.location-txt-box-wrap:last-of-type {
        margin-top: 23px;
    }

    .wp-block-group.location-box-left {
        max-width: 500px;
        margin-top: 50px;
    }

    div#mainoffice figure.wp-block-image.il {
        max-width: 37px;
        bottom: auto;
        top: 96px;
        left: 11px;
    }

    .location-flex-wrap {
        margin-bottom: 35px;
    }

    div#hikami figure.wp-block-image.size-full.il {
        right: 22px;
        z-index: 10;
        bottom: auto;
        max-width: 29px;
        top: 101px;
    }

    div#tsubametokaze figure.wp-block-image.size-full.il {
        top: -14px;
        left: 10%;
        max-width: 50px;
    }

    .video-wrap {
        margin-top: 35px;
    }

    div#sasayama figure.wp-block-image.size-full.il {
        max-width: 50px;
        z-index: 10;
        bottom: auto;
        right: 24px;
        top: 118px;
    }

    .video-wrap .wp-block-group.location-flex-wrap {
        margin-bottom: 29px;
    }

    div#kaibara figure.wp-block-image.size-full.il {
        left: 16px;
        bottom: auto;
        max-width: 47px;
        top: 90px;
    }

    article.entry_item a {
        padding: 12px 0;
        border-bottom: 1px dotted #446a42;
    }

    form#snow-monkey-form-796 {
        font-size: 14px !important;
    }

    .smf-form--letter .smf-text-control__control {
        max-width: 100%;
    }

    .wp-block-snow-monkey-forms-item.smf-item.hissu.name .smf-item__controls input.smf-text-control__control {
        width: 136px;
    }

    .wp-block-snow-monkey-forms-item.smf-item.hissu .smf-item__col.smf-item__col--label:before {
        left: 0;
        top: 0;
        font-size: 11px;
        width: 40px;
        padding: 4px 0;
    }

    .wp-block-snow-monkey-forms-item.smf-item.hissu .smf-item__col.smf-item__col--label .smf-item__label {
        padding-left: 53px;
    }

    .wp-block-snow-monkey-forms-item.smf-item .smf-item__col.smf-item__col--label {
        padding: 0;
        margin-bottom: 7px;
    }

    .wp-block-snow-monkey-forms-item.smf-item {
        padding: 0 !important;
        margin-bottom: 21px;
    }

    .wp-block-snow-monkey-forms-item.smf-item.yubin input#zip {
        margin-left: 19px;
        width: 150px;
    }

    .wp-block-snow-monkey-forms-item.smf-item .smf-item__controls input.smf-text-control__control {
        padding: 7px !important;
    }

    .wp-block-snow-monkey-forms-item.smf-item.yubin .smf-text-control:before {
        top: 10px;
    }

    div#--description {
        font-size: 12px;
        margin-top: 2px;
    }

    .smf-action .smf-button-control__control {
        font-size: 14px;
        width: 200px !important;
        padding: 14px 0 !important;
        margin-top: 15px !important;
    }

    .wp-block-group.inner.contactform-wrap {
        padding: 46px 0 45px;
    }

    figure.wp-block-image.size-full.contact-illust {
        max-width: 54px;
        margin: 0 auto 15px;
    }

    .wp-block-group.inner.contactform-wrap .wp-block-buttons.green-btn .wp-block-button a {
        padding-top: 9px;
        padding-bottom: 11px;
    }

    .wp-block-buttons.green-btn span {
        font-size: 13px;
    }

    .smf-action span.smf-button-control {
        margin-left: 0 !important;
    }

    .wp-block-group.video iframe {
        height: 200px;
        max-width: 300px;
        width: 100%;
    }

    .wp-block-group.inner.company-prof {
        padding: 33px 0 48px;
    }

    .wp-block-group.inner.company-prof .wp-block-group.en-midashi-wrap {
        top: 0;
        max-width: 311px;
    }

    .wp-block-group.inner.company-prof .wp-block-group.en-midashi-wrap {
        margin-bottom: 22px;
    }

    span.table-kikuyatitle {
        font-size: 16px;
    }

    .wp-block-group.inner.company-prof .wp-block-table tr td {
        font-size: 14px;
        padding: 8px 14px;
    }

    figure.wp-block-table {
        border-radius: 6px;
    }

    .wp-block-group.inner.company-prof figure.wp-block-image.il {
        /*        bottom: 18px;
        left: auto;
        max-width: 48px;
        right: -14px;*/
        display: none;
    }

    p.has-text-align-center.sdgs-txt {
        margin-top: 10px;
        text-align: left;
    }

    body#aboutus .wp-block-group.top-business-wrap .inner {
        width: 90%;
    }

    figure.wp-block-image.size-full.sdgs-img {
        margin: 36px auto 54px;
    }

    figure.wp-block-image.size-full.sdgs-illust1.il {
        top: 87px;
        left: -31px;
        max-width: 58px;
    }

    body#aboutus .wp-block-group.top-business-flex:nth-of-type(1) figure.wp-block-image.size-full.top-business-img:before {
        width: 123px;
        height: 58px;
        top: -13px;
        left: -9px;
    }

    body#aboutus .wp-block-group.top-business-flex:nth-of-type(2) figure.wp-block-image.size-full.top-business-img:before,
    body#aboutus .wp-block-group.top-business-flex:nth-of-type(3) figure.wp-block-image.size-full.top-business-img:before {
        width: 58px;
        height: 58px;
        top: -13px;
        left: -9px;
    }

    body#aboutus .wp-block-group.top-business-txt h3:before {
        width: 60px;
        height: 60px;
        left: -28px;
    }

    body#aboutus figure.wp-block-image.size-full.top-business-img {
        margin: 0 auto 0;
    }

    body#aboutus .wp-block-group.top-business-flex {
        margin-bottom: 32px;
    }

    body#aboutus figure.wp-block-image.size-full.top-business-img img {
        border-radius: 0;
    }

    body#aboutus .wp-block-group.top-business-txt {
        width: 100%;
    }

    .pc2 {
        display: none;
    }

    .wp-block-group.sousai-about-wrap h2 {
        margin-bottom: 21px;
    }

    .wp-block-group.sousai-about-wrap {
        padding: 75px 0 63px;
        background-size: 80%;
        background-position: top -46px right;
    }

    .wp-block-group.common-bk-wrap .wp-block-group.inner {
        width: 90%;
    }

    .wp-block-group.common-box {
        width: 100%;
        max-width: 400px;
        margin: 0 auto 26px;
    }

    figure.wp-block-image.size-full.common-box-img {
        max-width: 300px;
        margin: 0 auto 19px;
    }

    figure.wp-block-image.size-full.common-box-num img,
    figure.wp-block-image.size-full.common-box-num {
        height: 29px;
    }

    figure.wp-block-image.size-full.common-box-num {
        margin: 0 auto 8px;
    }

    .wp-block-group.common-box h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    body#funeral .wp-block-group.inner.diamond-wrap {
        padding: 55px 0 3px;
    }

    .wp-block-group.btn-flex.btn-flex2 .wp-block-buttons.btn .wp-block-button a {
        width: 225px;
    }

    .wp-block-group.inner.gift-txt-wrap {
        padding: 46px 0 65px;
        background-position: bottom 159px right;
        background-size: 201px;
    }

    figure.wp-block-image.size-full.is-resized.il.git-il2 {
        bottom: -35px;
        max-width: 35px;
        right: -6px;
    }

    figure.wp-block-image.size-full.il.git-il1 {
        top: -27px;
        left: -22px;
        max-width: 66px;
    }

    .wp-block-group.gift-img-wrap {
        max-width: 350px;
    }

    .wp-block-group.inner.gift-txt-wrap .wp-block-group.midashi h2 {
        font-size: 20px;
        letter-spacing: -1px;
    }

    figure.wp-block-image.size-full.gift-img {
        margin: 37px auto 30px;
    }

    .wp-block-group.common-box-flex>.wp-block-group__inner-container {
        display: block;
        margin-top: 45px;
    }

    p.has-text-align-center.common-txt {
        margin-top: 8px;
    }

    .wp-block-group.gift-title {
        top: -93px;
        display: block;
        position: relative;
        left: 0;
        right: 0;
        margin: auto;
        width: fit-content;
        max-width: fit-content;
    }

    .wp-block-group.gift-title .wp-block-image.en-midashi img,
    .wp-block-group.gift-title .wp-block-image.en-midashi {
        height: 34px;
        object-fit: contain;
        max-width: fit-content;
        margin: auto;
        width: fit-content;
    }

    .wp-block-group.gift-type-wrap {
        margin: 147px auto 17px;
        width: 97%;
    }

    .wp-block-group.gifttype-img {
        max-width: 177px;
        width: 100%;
        margin: 20px auto 14px;
    }

    figure.fade-blur-on-scroll.gifttype1 {
        top: -21px;
        right: 0;
        max-width: 56px;
    }

    .wp-block-group.gifttype-txt h3 {
        font-size: 20px;
    }

    .wp-block-group.gifttype-txt h4 {
        font-size: 17px;
        margin: 4px 0 12px;
    }

    .wp-block-group.gift-type-wrap .wp-block-group.slider-05.inner {
        padding: 0;
        height: 666px;
        border-radius: 20px;
        width: 97%;
    }

    .wp-block-group.gift-type-wrap .wp-block-group.slider-05.inner {
        padding: 0;
        min-height: 672px;
        border-radius: 20px;
        width: 100%;
        height: auto;
        max-width: 309px;
    }

    .wp-block-group.gift-type-wrap .slider-05 .slide:before {
        font-size: 14px;
    }

    p.next:before,
    p.prev:before {
        width: 11px;
        height: 26px;
    }

    .wp-block-group.gift-type-wrap .next-prev .prev {
        left: -10px;
    }

    .wp-block-group.gift-type-wrap .next-prev .next {
        right: -15px;
    }

    p.prev {
        left: -10px;
    }

    figure.wp-block-image.size-full.il.gifttype2 {
        max-width: 49px;
        bottom: auto;
        left: 0;
        top: 169px;
        right: 59%;
        margin: auto;
        z-index: 10;
    }

    .googlemap iframe {
        height: 250px;
    }

    .wp-block-group.ec-flex {
        padding: 54px 0 47px;
    }

    h2 span.small {
        font-size: 17px;
    }

    figure.wp-block-image.size-full.ec-img.sp {
        max-width: 271px;
        margin: 29px auto 26px;
    }

    .wp-block-group.ec-flex figure.wp-block-image.size-full.il {
        max-width: 62px;
        bottom: auto;
        top: 246px;
        right: 12px;
    }

    .wp-block-group.bumon-txt h3 {
        font-size: 21px;
        margin-bottom: 14px;
    }

    .wp-block-group.bumon-title {
        margin-bottom: 0;
    }

    .wp-block-group.bumon-txt {
        width: 100%;
        max-width: fit-content;
        margin: 25px auto 36px;
    }

    .wp-block-group.ourdepartments.inner figure.wp-block-image.size-full.il {
        left: -9px;
        top: 91px;
        max-width: 45px;
        z-index: 10;
    }

    figure.wp-block-image.size-full.bumon-num,
    figure.wp-block-image.size-full.bumon-num img {
        height: 33px;
    }

    .wp-block-group.bumon-box h3 {
        font-size: 20px;
    }

    .wp-block-group.bumon-box:hover p.bumon-box-txt {
        margin-top: 10px;
    }

    .bumon-box-inner {
        top: 73px;
    }

    .bumon-box::after {
        display: none;
    }

    .bumon-box {
        height: 347px;
    }

    .bumon-box {
        height: 374px;
        margin-bottom: 17px !important;
        border-radius: 20px;
    }

    .wp-block-group.bumon-flex-wrap {
        margin-bottom: 71px;
    }

    .wp-block-image.en-title-2 figure.aligncenter.size-full img,
    .wp-block-image.en-title-2 figure.aligncenter.size-full {
        height: 82px;
    }

    p.has-text-align-center.store-txt strong {
        font-size: 18px;
    }

    .wp-block-group.logo-flex figure.wp-block-image.size-full {
        width: 39%;
    }

    figure.wp-block-image.size-full.shop-logo5 {
        width: 83px !important;
    }

    .wp-block-group.logo-flex {
        max-width: 400px;
        margin: 0 auto 32px;
    }

    p.has-text-align-center.store-txt {
        margin-bottom: 43px;
    }

    .wp-block-group.review-box-wrap h4 {
        font-size: 16px;
    }

    .wp-block-group.review-box-wrap h3 strong {
        font-size: 28px;
    }

    .wp-block-group.review-box-wrap h3 {
        font-size: 20px;
        margin-bottom: 26px;
    }

    p.has-text-align-center.hyoka {
        font-size: 14px;
        border-radius: 30px;
        line-height: 1;
        padding: 8px 22px;
        margin: 0 auto 6px;
    }

    h2.wp-block-heading.has-text-align-center.review-number {
        font-size: 50px;
    }

    p.has-text-align-center.star {
        font-size: 27px;
        color: #d4b35c;
        line-height: 1;
        margin: 13px 0 18px;
    }

    p.review-kazu span {
        font-size: 22px;
    }

    p.has-text-align-center.review-nitizi {
        font-size: 12px;
    }

    .wp-block-group.review-box-wrap {
        max-width: 100%;
        margin-bottom: 61px;
        position: relative;
        background-size: 69px;
    }

    figure.wp-block-image.size-full.il.store-il4 {
        bottom: 88px;
        left: 12%;
        max-width: 57px;
    }

    .wp-block-group.review-box-wrap {
        max-width: 300px;
        margin-bottom: 24px;
        position: relative;
        background-size: 48px;
        background-position: bottom 70px left, right bottom 70px;
    }

    figure.wp-block-image.size-full.il.store-il4 {
        bottom: 88px;
        left: 44px;
        max-width: 39px;
        /* display: none; */
    }

    p.has-text-align-center.store-txt2 {
        margin-bottom: 38px !important;
    }

    figure.wp-block-image.size-full.il.store-il3 {
        right: 0;
        top: 10px;
        left: auto;
        margin: auto;
        max-width: 52px;
    }

    figure.wp-block-image.size-full.il.store-il1 {
        top: -42px;
        right: 21px;
        z-index: 10;
        max-width: 92px;
    }

    figure.wp-block-image.size-full.il.store-il2 {
        bottom: -20px;
        left: 20px;
        z-index: 10;
        max-width: 49px;
    }

    .slide.loopslide-img-1 {
        width: 280px;
    }

    .slide.loopslide-img-2 {
        width: 220px;
        margin-top: 50px;
    }

    .slide.loopslide-img-3 {
        width: 260px;
        margin-top: 10px;
    }

    .slide.loopslide-img-4 {
        width: 320px;
    }

    .wp-block-group.stores-wrap {
        padding-bottom: 38px;
    }

    body#corporate-service .wp-block-group.ec-flex {
        padding: 56px 0 57px;
    }

    body#corporate-service figure.wp-block-image.size-full.il.corp-il1 {
        display: none;
    }

    body#corporate-service figure.wp-block-image.size-full.ec-img.sp {
        margin: 31px auto 31px;
    }

    body#corporate-service figure.wp-block-image.size-full.il.corp-il2 {
        right: 25px;
        bottom: auto;
        max-width: 35px;
        left: auto;
        z-index: 10;
        top: 350px;
    }

    .wp-block-group.zimoto-wrap {
        position: relative;
        padding-bottom: 142px;
        background-size: 65%;
        background-position: top -11px left;
    }

    figure.wp-block-image.size-full.zimoto-img {
        margin: 34px auto 27px;
        max-width: 66px;
    }

    .wp-block-group.zimoto-wrap {
        position: relative;
        padding-bottom: 78px;
        background-size: 65%;
        background-position: top -11px left;
    }

    figure.wp-block-image.size-full.zimoto-img2 {
        max-width: 190px;
        bottom: 49px;
        right: 10px;
        z-index: 0;
    }

    .wp-block-group.stores-wrap figure.wp-block-image.size-full.il.store-il3 {
        right: auto;
        left: -9px;
        top: 15px;
        max-width: 45px;
    }

    .wp-block-group.product-flex {
        max-width: 300px;
        width: 100%;
        margin: 0 auto 24px;
        display: block;
    }

    .wp-block-group.product-txt {
        width: 100%;
        margin-top: 12px;
    }

    .wp-block-group.product-txt h3 {
        color: #5c9458;
        font-size: 20px;
        margin-bottom: 3px;
        text-align: center;
    }

    figure.wp-block-image.size-full.product-img {
        width: 150px;
        margin: 0 auto 0;
    }

    .wp-block-group.habeguro {
        max-width: 400px;
        margin: 39px auto 0;
    }

    .wp-block-group.product-flex-wrap {
        margin-top: 20px;
    }

    p span.small {
        font-size: 12px;
    }

    body#furusato-tax .wp-block-group.inner.gift-txt-wrap {
        padding-bottom: 73px;
        padding-top: 47px;
    }

    body#furusato-tax figure.wp-block-image.size-full.gift-img {
        margin: 33px auto 40px;
    }

    body#furusato-tax figure.wp-block-image.size-full.is-resized.il.git-il2 {
        bottom: -24px;
        max-width: 40px;
    }

    body#furusato-tax figure.wp-block-image.size-full.gift-img {
        margin: 31px auto 37px;
    }

    figure.wp-block-image.size-full.vision-image {
        max-width: 259px;
        margin: 0 auto 29px;
    }

    figure.wp-block-image.size-full.il.fvision-il-1 {
        left: auto;
        right: 0;
        max-width: 61px;
    }

    figure.wp-block-image.size-full.il.fvision-il-2 {
        bottom: auto;
        top: 271px;
        max-width: 54px;
    }

    .wp-block-group.yon-box {
        margin: 29px auto;
        padding: 18px 19px 16px;
        max-width: 400px;
        border-radius: 20px;
    }

    .wp-block-group.yon-flex {
        margin-bottom: 16px;
        display: block;
    }

    .wp-block-group.yon-flex h3 {
        width: 100%;
        font-size: 14px;
        line-height: 1;
        padding: 5px 0;
        margin: 0 0 4px;
    }

    .wp-block-group.yon-flex p {
        width: 100%;
    }

    .wp-block-group.our-vision {
        padding-bottom: 39px;
    }

    figure.wp-block-image.size-full.partner-title {
        max-width: 121px;
        margin: 0 auto 25px;
    }

    .wp-block-group.hurusato-banner-flex>.wp-block-group__inner-container {
        max-width: 400px;
        margin: 25px auto 0;
        gap: 2%;
        align-items: center;
    }

    figure.wp-block-image.size-full.banner {
        margin-bottom: 10px;
        width: 49%;
    }

    .wp-block-group.inner.hurusato-list {
        padding: 40px 0 0;
    }

    .wp-block-group.tsubame-image-wrap {
        max-width: 272px;
    }

    figure.wp-block-image.size-full.huro {
        bottom: -29px;
        position: absolute;
        right: -36px;
        max-width: 96px;
    }

    figure.wp-block-image.size-full.tsubame-logo {
        margin: 0 auto 15px;
        max-width: 211px;
    }

    .wp-block-group.inner.tsubame-wrap {
        padding: 55px 0 78px;
    }

    .wp-block-group.inner.tsubame-wrap figure.wp-block-image.size-full.il {
        top: 27px;
        left: 2%;
        max-width: 43px;
        z-index: 10;
    }

    .wp-block-group.tsubame-image-wrap {
        max-width: 272px;
        margin: 0 auto 26px;
    }

    .wp-block-group.tsubame-image-wrap {
        max-width: 272px;
        margin: 0 auto 26px;
    }

    figure.wp-block-image.size-full.top-business-img.hukidashi:after {
        width: 162px;
        height: 113px;
        top: -32px;
        left: -33px;
    }

    .wp-block-group.tsubame-pro-wrap figure.wp-block-image.size-full.il {
        right: 25px;
        left: auto;
        top: 73px;
        display: block;
        max-width: 36px;
    }

    .wp-block-group.tsubame-pro-wrap .wp-block-group.habeguro.img-hover {
        width: 90%;
    }

    .wp-block-group.bk.tsubame-pro-wrap {
        padding-bottom: 39px;
    }

    .wp-block-group.inner.location-wrap {
        padding: 49px 0 0px;
    }

    .wp-block-group.bk.insta-box h4 {
        margin-bottom: 18px;
        font-size: 18px;
    }

    .wp-block-group.insta.has-link figure.wp-block-image.size-full {
        max-width: 50px;
        margin: 0 auto 9px;
    }

    .wp-block-group.insta.has-link p {
        font-size: 13px;
    }

    .wp-block-group.bk.insta-box {
        margin: 42px auto 46px;
        max-width: 250px;
        padding: 13px 0 22px;
        border-radius: 20px;
    }

    .wp-block-group.inner.location-wrap figure.wp-block-image.size-full.il {
        display: block;
        max-width: 50px;
        top: auto;
        left: auto;
        bottom: -21px;
        right: -14px;
    }

    figure.wp-block-image.size-full.tsubame-kodawari-title {
        max-width: 153px;
        margin: 0 auto 27px;
    }

    .wp-block-group.inner.tsubame-wrap h2 {
        margin-bottom: 17px;
    }

    .wp-block-group.inner.tsubame-kodawari-wrap {
        padding: 60px 0 29px;
    }

    .wp-block-group.tsubame-point-flex {
        margin-top: 52px;
        display: block;
    }

    .wp-block-group.tsubame-point figure.wp-block-image.size-full:after {
        height: 35px;
        width: 50px;
        top: -17px;
        left: 0;
        right: 0;
        margin: auto;
    }

    .wp-block-group.tsubame-point {
        max-width: 300px;
        width: 100%;
        margin: 0 auto 43px;
    }

    .wp-block-group.tsubame-point figure.wp-block-image.size-full {
        max-width: 205px;
        margin: 0 auto 17px;
        position: relative;
    }

    .wp-block-group.tsubame-point h3 {
        font-size: 20px;
        margin-bottom: 7px;
    }

    .wp-block-group.location-txt-flex:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .wp-block-group.tsubame-concept-wrap h3 {
        font-size: 20px;
        margin-bottom: 22px;
    }

    .wp-block-group.tsubame-concept-wrap .wp-block-group.en-midashi-wrap {
        margin-bottom: 5px;
    }

    .wp-block-group.tsubame-concept-wrap.bk .inner {
        padding: 0 0 74px;
        max-width: 1400px;
        background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/concept-bk-sp3-2.png);
        background-repeat: no-repeat;
        background-position: top 31px center;
        background-size: 300px;
    }

    .wp-block-group.tsubame-concept-wrap.bk {
        background-size: 124%;
    }

    .wp-block-group.tsubame-concept-wrap .wp-block-group.en-midashi-wrap {
        margin-bottom: 137px;
    }

    .wp-block-group.interview-flex {
        margin-bottom: 20px;
        display: block;
    }

    .wp-block-group.interview-wrap p.next {
        right: 4px;
    }

    .wp-block-group.interview-wrap p.prev {
        left: 4px;
    }

    body#careers .wp-block-group.top-recruit-wrap {
        padding: 42px 0 0;
        background-image: url(http://www.kikuya-g.co.jp/wp2/wp-content/uploads/2026/04/rec-sp-bk.png);
        background-size: 100%;
        background-position: bottom 75px center;
    }

    figure.wp-block-image.size-full.il.fade-blur-on-scroll.mission-il-1 {
        top: 130px;
        right: 5px;
        max-width: 52px;
        z-index: 10;
    }

    figure.wp-block-image.size-full.aboutthebusiness-title {
        max-width: 174px;
        margin: 0 auto 34px;
    }

    figure.wp-block-image.size-full.aboutthebusiness-title {
        max-width: 174px;
        margin: 0 auto 17px;
    }

    .wp-block-group.inner.aboutthebusiness-wrap .wp-block-group.product-flex {
        display: flex;
        max-width: 350px;
        gap: 13px !important;
        margin-bottom: 11px;
    }

    .wp-block-group.inner.aboutthebusiness-wrap .wp-block-group.product-flex h3 {
        text-align: left;
        margin-bottom: 2px;
    }

    .wp-block-image.en-midashi.sp figure.aligncenter.size-full,
    .wp-block-image.en-midashi.sp figure.aligncenter.size-full img {
        height: 96px;
    }

    .wp-block-image.en-midashi figure.aligncenter.size-full,
    .wp-block-image.en-midashi figure.aligncenter.size-full img {
        height: 38px;
    }

    .interview-wrap .slider-05 {
        position: relative;
        width: 90%;
        margin: 24px auto 0;
    }

    figure.wp-block-image.size-full.interview-il-1.il {
        right: 21px;
        top: 51px;
        max-width: 63px;
    }

    figure.wp-block-image.size-full.interview-img {
        width: 188px;
        margin: 0 auto 19px;
    }

    .wp-block-group.busyo-flex h5 {
        font-size: 13px;
        width: 69px;
        padding: 3px 0;
        margin-right: 8px;
    }

    .wp-block-group.interview-txt h6 {
        font-size: 14px;
        margin: 3px 0 5px;
    }

    .wp-block-group.interview-txt h3 {
        font-size: 18px;
    }

    .wp-block-group.interview-txt {
        width: 100%;
    }

    .wp-block-vk-blocks-accordion-trigger.vk_accordion-trigger p {
        font-size: 14px !important;
    }

    .wp-block-group.faq-box .wp-block-vk-blocks-accordion.vk_accordion .wp-block-vk-blocks-accordion-trigger.vk_accordion-trigger {
        padding: 11px 0 14px 41px;
    }

    .wp-block-group.faq-box .wp-block-vk-blocks-accordion.vk_accordion {
        margin-bottom: 6px !important;
        border-radius: 5px;
    }

    .wp-block-group.faq-box .wp-block-vk-blocks-accordion.vk_accordion:before {
        width: 24px;
        height: 24px;
        display: block;
        font-size: 14px;
        line-height: 1.6;
        text-align: center;
        position: absolute;
        top: 15px;
        left: 8px;
    }

    .wp-block-group.message-box h4 {
        font-size: 15px;
        margin-bottom: 7px;
    }

    .wp-block-group.message-box {
        background-color: #fff;
        padding: 11px 20px;
        border-radius: 10px;
        margin-top: 10px;
    }

    .wp-block-group.bk.interview-wrap {
        padding-bottom: 43px;
    }

    figure.wp-block-image.size-full.interview-il-3.il {
        display: none;
    }

    p.next:before,
    p.prev:before {
        width: 8px;
        height: 19px;
    }

    .wp-block-group.interview-wrap .slider-05 .wp-block-group.next-prev {
        top: 92px;
    }

    .wp-block-group.interview-wrap p.prev {
        left: 24px;
    }

    .wp-block-group.interview-wrap p.next {
        right: 24px;
    }

    .sp2 {
        display: block;
    }

    .wp-block-buttons.recruit-btn .wp-block-button a:before {
        width: 16px;
        height: 16px;
        top: 3px;
        left: 22px;
        bottom: 0;
    }

    header .wp-block-vk-blocks-accordion-target.vk_accordion-target.vk_accordion-target-open p {
        font-size: 15px;
    }

    body#careers figure.wp-block-image.size-full.il.rec-il-1.sp2 {
        /* display: none; */
        max-width: 50px;
        top: auto;
    }

    body#careers .wp-block-group.common-box-flex>.wp-block-group__inner-container {
        margin-top: 26px;
    }

    body#careers .wp-block-group.common-box-flex>.wp-block-group__inner-container {
        margin-top: 26px;
    }

    .wp-block-group.interview-wrap .wp-block-vk-blocks-accordion-target.vk_accordion-target.vk_accordion-target-open {
        padding: 5px 9px;
        margin-bottom: 5px;
        width: 96%;
    }

    .vk_accordion-trigger .vk_accordion-toggle-close::after,
    .vk_accordion-trigger .vk_accordion-toggle-open::after {
        right: 47px !important;
    }

    p.has-text-align-center.contact-head-title {
        font-size: 10px;
        line-height: 1;
        margin-top: 2px;
    }

    .wp-block-group.contact-head.sp {
        color: #fff;
        position: fixed;
        top: 6px;
        right: 69px;
    }

    .wp-block-group.under-business-box p {
        height: auto;
    }

    .wp-block-group.interview-wrap .vk_accordion-target-close {
        width: 94%;
        margin: 0 auto 11px;
        padding: 5px 10px !important;
        border-radius: 5px;
    }

    .wp-block-group.interview-txt {
        padding-top: 0px;
    }

    figure.wp-block-image.size-full.hoshi {
        max-width: 112px;
        margin: 2px auto 23px;
    }

}

/* ==============================

    550px以下　

============================== */

@media screen and (max-width: 550px) {
    .slider-01 {
        padding-top: 54px;
    }

    .slider-01 .wp-block-group.slide.showing img,
    .slider-01 .wp-block-group.slide.showing,
    .slider-01 .slide.showing {
        height: 274px;
    }

    .slider-01 .wp-block-group.slide.showing figure.wp-block-image.size-full img {
        border-radius: 20px !important;
    }

    .slider-01 .slide.showing {
        border-radius: 20px !important;
    }

    .slider-01 .slide.showing {
        border-radius: 20px !important;
        height: auto !important;
    }

    .slider-01,
    .mainv {
        overflow: hidden !important;
    }

    .slider-01 .slides {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0 !important;
        /* 隙間を詰めて重なりを作る */
        width: 100% !important;
        overflow: visible !important;
        /* 中身のはみ出しを許可 */
        position: relative;
    }

    .left-preview-item {
        display: block !important;
        flex: 0 0 19% !important;
        height: 180px !important;
        transform: translateX(-40%);
        z-index: 1;
        margin-right: 23px;
    }

    .slider-01 .slide.showing {
        display: block !important;
        flex: 0 0 100% !important;
        height: 350px !important;
        margin: 0 -25% !important;
        z-index: 10;
        position: relative;
    }

    .preview-area {
        display: block !important;
        flex: 0 0 19% !important;
        transform: translateX(40%);
        z-index: 1;
        margin-left: 23px !important;
    }

    .preview-item.item-2 {
        width: 100% !important;
        height: 180px !important;
        display: block !important;
    }

    /* 画像の表示調整 */
    .left-preview-item img,
    .preview-item img,
    .slider-01 .slide.showing img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 30px !important;
    }

    .left-preview-item img,
    .preview-item.item-2 img {
        border-radius: 30px !important;
    }

    /* 左側のポワン： translateX(-40%) を維持したまま拡大 */
    .left-preview-item.powan-effect {
        animation: powanLeft 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards !important;
    }

    /* 右側のポワン： translateX(40%) を維持したまま拡大 */
    .preview-area.powan-effect {
        animation: powanRight 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards !important;
    }

    @keyframes powanLeft {
        0% {
            opacity: 0;
            transform: translateX(-40%) scale(0.95);
        }

        100% {
            opacity: 1;
            transform: translateX(-40%) scale(1);
        }
    }

    @keyframes powanRight {
        0% {
            opacity: 0;
            transform: translateX(40%) scale(0.95);
        }

        100% {
            opacity: 1;
            transform: translateX(40%) scale(1);
        }
    }

    .custom-error-msg {
        bottom: -18px;
    }

    .snow-monkey-form.has-custom-error .smf-action::before {
        margin-bottom: 10px;
    }
}

/* ==============================

  その他適宜追加する場合は下記に記述

============================== */