@charset "utf-8";

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーー
共通
ーーーーーーーーーーーーーーーーーーーーーーーーーーー*/

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  font-size: 16px;
  color: #333;
}

a { 
    text-decoration: none;
    color: #333;
}

a:hover {
    cursor: pointer;
}

a:hover {
    opacity: 0.7;
}

p {
    line-height: 1.8;
}

.oswald {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

.flex{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
}

.inner{
    /* width: 1240px;
    margin: 0 auto; */
    width: min(100%, 1240px); /* 画面が狭いときは100%、広いときは1240px上限 */
    margin: 0 auto;
}

.inner02 {
    /* width: 1080px;
    margin: 0 auto; */
    width: min(100%, 1080px);
    margin: 0 auto;
}

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

main, footer {
    /* min-width: 1240px; */
    width: 100%;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

select {
    -webkit-appearance: none;
    appearance: none;
}

/* ------- header -------- */

#header {
    display: flex;
    justify-content: space-between;
    padding: 18px 3%;
    position: sticky;
    top: 0!important;;
    background: #fff;
    box-sizing: border-box;
    z-index: 10000;
    transform: none!important;
    opacity: 1!important;
}

/* 背景固定（= body に inline で position:fixed が入る）時だけ、ヘッダーを viewport 固定に昇格 */
body[style*="position: fixed"] #header{
  position: fixed;
  top: 0; left: 0; right: 0;
}

/* 念のため：SPメニューはヘッダー直下から開始 */
@media (max-width: 768px){
  .header__nav-area{
    /* 既存：top:0; padding-top:60px; でもOKだが、より堅牢にするなら */
    top: 0;
    padding-top: 60px; /* ヘッダー実高に合わせて */
  }
}

#header .logo {
    width: 220px;
    margin: 0;
}

#header #navigation {
    width: 710px;
    min-width: 710px;
}

#header #navigation ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    width: 40%;
}

#header #navigation ul li a {
    color: #333;
    font-weight: 500;
}

#header #navigation nav {
    display: flex;
    justify-content: space-between;
}

#header #navigation .contact {
    display: flex;
    justify-content: space-between;
    width: 50%;
}

#header #navigation .contact .tel {
    font-size: 22px;
}

#header #navigation .contact .tel a {
    color: #333;
    letter-spacing: 1.5px;
    position: relative;
    padding-left: 20px;
}

#header #navigation .contact .tel a:hover {
    opacity: 1;
}

#header #navigation .contact .tel a::before {
    position: absolute;
    left: 0;
    top: 55%;
    transform: translateY(-50%);
    content: '';
    display: block;
    background-image: url(/img/common/ico_tel.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
}

#header #navigation .contact .tel p {
    font-size: 10px;
    margin: 0;
}

#header #navigation .contact .form {
    background-color: #DE5A45;
    border: solid 1px #DE5A45;
    border-radius: 3px;
    width: 50%;
    position: relative;
}

#header #navigation .contact .form a {
    color: #fff;
    font-weight: 500;
    display: block;
    padding: 15px 20px 15px 55px;
    border-radius: 3px;
    transition: 0.3s;
}

#header #navigation .contact .form a::before {
    position: absolute;
    left: 25px;
    top: 55%;
    transform: translateY(-50%);
    content: '';
    display: block;
    background-image: url(/img/common/ico_mail.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
}

#header #navigation .contact .form a:hover {
    background-color: #fff;
    color: #DE5A45;
    opacity: 1;
}

#header #navigation .contact .form a:hover::before {
    background-image: url(/img/common/ico_mail_o.png);
}

/* ------- btn -------- */

.btn01 {
    margin-top: 50px;
}

.btn01 a {
    display: inline-block;
    width: 265px;
    text-align: center;
    background-color: #1F4C32;
    border: solid 1px #1F4C32;
    border-radius: 3px;
    color: #fff;
    text-decoration: none;
    padding: 15px 0;
    position: relative;
    transition: 0.3s;
    font-size: 16px;
    font-weight: bold;
}

.btn01 a::after {
    position: absolute;
    right: 10px;
    top: 52%;
    transform: translateY(-50%);
    content: '';
    display: block;
    background-image: url(/img/common/ico_arrow_w.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
}

.btn01 a:hover {
    opacity: 1;
    background-color: #fff;
    color: #1F4C32;
}

.btn01 a:hover::after {
    background-image: url(/img/common/ico_arrow_g.png);
}

/* ------- title -------- */


.ttl02 {
    text-align: center;
    width: max-content;
    margin: 0 auto;
}

.ttl02 span {
    font-size: 18px;
    position: relative;
    border-bottom: solid 1px #333;
    padding-bottom: 2px;
    letter-spacing: 1px;
}

.ttl02 img {
    width: 50%;
    margin: 20px auto 0;
}


/* ------- cv fooer -------- */

#cv {
    padding: 60px 0;
    background-image: url(/img/common/img_cv.png);
    background-size: cover;
    background-repeat: no-repeat;
}

#cv {
    margin: 130px 0 0 5%;
    padding: 70px 5% 60px 0;
    position: relative;
    border-top: solid 5px #B9C6B7;
}

#cv .ttl02 {
    text-align: left;
    margin: 0;
}

#cv .ttl02 img {
    margin: 20px 0 0;
}

#cv p {
    margin: 20px 0 0;
}

#cv::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 5px;
    background: #DAE2D8;
    top: 15px;
}

#cv::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 5px;
    background: #8CA28A;
    top: -25px;
}

#cv .cvTel p {
    font-size: 28px;
    margin: 13px 0 0;
    line-height: 1.2;
}

#cv .cvTel p a {
    color: #fff;
    letter-spacing: 1.5px;
    position: relative;
    padding-left: 20px;
}

#cv .cvTel p a:hover {
    opacity: 1;
}

#cv .cvBox {
    width: 660px;
}

#cv .cvTel {
    height: 80px;
    width: auto;
    background-color: #1F4C32;
    border-radius: 3px;
    color: #fff;
    padding: 0px 65px;
}

#cv .cvTel p a::before {
    position: absolute;
    left: 0;
    top: 55%;
    transform: translateY(-50%);
    content: '';
    display: block;
    background-image: url(/img/common/ico_tel_w.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
}

#cv .cvTel p.sub {
    font-size: 12px;
    margin: 0;
}

#cv .cvForm p {
    margin: 0;;
}

#cv .cvForm a {
    display: inline-block;
    background-color: #DE5A45;
    border: solid 1px #DE5A45;
    border-radius: 3px;
    padding: 26px 65px 26px 75px;
    position: relative;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
}

#cv .cvForm p a::before {
    position: absolute;
    left: 35px;
    top: 54%;
    transform: translateY(-50%);
    content: '';
    display: block;
    background-image: url(/img/common/ico_mail.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
}

#cv .cvForm p a:hover {
    background-color: #fff;
    color: #DE5A45;
    opacity: 1;
}

#cv .cvForm p a:hover::before {
    background-image: url(/img/common/ico_mail_o.png);
} 

#footer {
    background-color: #EFF7EF;
    padding: 50px 5%;
}

#footer img {
    width: 220px;
    margin: auto;
    text-align: left;
}

#footer .groupLink {
    width: 900px;
    margin: 0;
}

#footer .groupLink a {
    display: inline-block;
    background-color: #fff;
    color: #333;
    padding: 10px 40px 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    position: relative;
    transition: 0.3s;
    border-radius: 3px;
}

#footer .groupLink a::after {
    position: absolute;
    right: 10px;
    top: 52%;
    transform: translateY(-50%);
    content: '';
    display: block;
    background-image: url(/img/common/ico_window_g.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
}

#footer .groupLink a:hover {
    opacity: 1;
    background-color: #1F4C32;
    color: #fff;
}

#footer .groupLink a:hover::after {
    background-image: url(/img/common/ico_window_w.png);
}

#footer .groupLink p {
    margin: 0;
}

#footer small {
    font-size: 12px;
    margin: 40px 0 0;
    display: inline-block;
}

#footer .other {
    margin: 35px 0 0;
}

#footer .other p {
    margin: 0;
    line-height: 1.8;
}

#footer .other small {
    margin: 30px 0 0;
}

/* ------- その他 -------- */

.underTtl h2 {
    width: max-content;
    margin: 0 auto;
    padding: 50px 0 90px;
}

.underTtl h2 img {
    width: 50%;
    margin: 0 auto;
}

.bread::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 5px;
    background: #8CA28A;
    top: -25px;
}

.bread::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 5px;
    background: #DAE2D8;
    top: 15px;
}

.bread {
    list-style: none;
    justify-content: left;
    margin: 0 5% 0 0;
    padding: 40px 0 10px 20px;
    border-top: solid 5px #B9C6B7;
    position: relative;
}

.bread a {
    color: #000;
    margin: 0 40px 0 0;
    display: inline-block;
    position: relative;
    font-size: 13px;
}

.bread li a::after {
    content: '＞';
    position: absolute;
    right: -30px;
}

.bread li:last-of-type a::after {
    content: none;
}

@media screen and (max-width: 1290px) {
    #cv .cvTel {
        margin: 0 0 10px;
    }

    #cv .cvBox {
        width: auto;
        flex-wrap: wrap;
        justify-content: end;
    }

    #footer .baseInfo {
        flex-wrap: wrap;
    }

    #footer .groupLink {
        margin: 15px 0 0;
        /* min-width: 900px; */
    }
}

@media screen and (max-width: 980px) {
    #footer .groupLink {
        flex-wrap: wrap;
        justify-content: start;
    }

    #footer .groupLink p {
        margin: 0 5px 8px 0;
    }

}


@media screen and (max-width: 768px){
    .pc {
        display: none;
    }
    
    .sp {
        display: block;
    }

    p {
        font-size: 14px;
    }

    .flex{
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .inner, .inner02{
        width: 90%;
    }

    #header .logo {
        width: 180px;
        z-index: 11111111;
        position: relative;
    }

    #header #navigation {
        width: 100%;
        min-width: 100%;
    }

    #header #navigation nav {
        flex-wrap: wrap;
    }

    #header #navigation ul {
        width: 100%;
        flex-wrap: wrap;
        padding: 0;
    }

    #header #navigation .contact {
        width: 100%;
        flex-wrap: wrap;
        margin: 20px 0 0;
    }

    #header #navigation .contact .form {
        width: 100%;
    }

    #header #navigation .contact .tel {
        font-size: 30px;
        margin: 0 0 20px;
    }

    #header #navigation .contact .tel p {
        font-size: 13px;
    }

    .ttl02 {
        width: 100%;
    }

    .ttl02 img {
        margin: 15px auto 0;
    }

    .btn01 {
        text-align: center!important;
        margin-top: 40px;
    }

    .btn01 a {
        font-size: 14px;
        padding: 13px 0;
    }

    #cv {
        flex-wrap: wrap;
        margin-top: 30px;
    }

    #cv .ttl02 img {
        width: 220px;
        margin-top: 15px;
    }

    #cv .cvBox {
        width: 100%;
        flex-wrap: wrap;
    }

    #cv .cvTel {
        width: 100%;
        text-align: center;
        margin: 20px 0 14px;
        height: 75px;
    }

    #cv .cvForm a {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        padding: 20px 0;
    }

    #cv .cvTel p a::before {
        left: -3px;
    }

    #cv .cvForm {
        width: 100%;
    }

    #cv .cvTel p {
        font-size: 30px;
        margin: 9px 0 0;
    }

    #cv .cvTel p.sub {
        font-size: 13px;
    }

    #cv .cvForm p {
        width: 100%;
    }

    #cv .cvForm p a::before {
        left: 65px;
    }

    #footer {
        padding: 40px 5%;
    }

    #footer .baseInfo {
        flex-wrap: wrap;
    }

    #footer .groupLink {
        flex-wrap: wrap;
        width: 100%;
        margin-top: 25px;
        justify-content: space-between;
    }

    #footer .groupLink p {
        width: 49%;
        margin: 0 0 10px 0;
    }

    #footer .groupLink a {
        box-sizing: border-box;
        width: 100%;
        font-size: 13px;
        padding-left: 10px;
    }

    #footer .other {
        margin: 20px 0 0;
        flex-wrap: wrap;
    }

    #footer .other small {
        margin: 10px 0 0;
    }

    main,footer {
        margin: 0;
        min-width: 100%;
    }
    
    .bread a {
        font-size: 12px;
        margin: 0 25px 0 0;
    }
    
    .bread {
        justify-content: left;
    }

    .bread li a::after {
        content: '＞';
        position: absolute;
        right: -20px;
    }

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

    .hamburger {
        display: block;
        height: 60px;
        margin-left: auto;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 10;
        width: 60px;
        border: none;
        background-color: transparent;
    }

    .hamburger.-active .hamburger__line {
        background-color: transparent;
    }

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

    .hamburger.-active .hamburger__line::after {
        top: 0;
        transform: rotate(-45deg);
    }

    .hamburger.-active .hamburger__text::before {
      content: '閉じる';
    }

    .hamburger__line {
        display: block;
        height: 2px;
        position: absolute;
        top: 23px;
        left: 50%;
        transform: translateX(-50%);
        width: 24px;
        background-color: #1F4C32;
        transition: 0.4s;
    }

    .hamburger__line:before,
    .hamburger__line:after {
        content: "";
        display: block;
        height: 100%;
        position: absolute;
        width: 100%;
        background-color: #1F4C32;
        transition: inherit;
    }

    .hamburger__line:before {
        top: -6px;
    }

    .hamburger__line:after {
        top: 6px;
    }

    .hamburger__text {
        position: absolute;
        bottom: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }

    .hamburger__text::before {
        content: "メニュー";
        text-align: center;
        color: #1F4C32;
        font-size: 10px;
        font-weight: 900;
    }

    .header__nav-area {
        position: fixed;
        top: 0;
        left: -100%;
        z-index: 9;
        height: 100vh;
        width: 100%;
        visibility: hidden;
        padding-top: 60px;
        background-color: #fff;
        transition: 0.4s;
    }
    .header__nav-area.-active {
        left: 0;
      visibility: visible;
    }
    .global-navigation {
        padding-top: 15px;
        padding-right: 30px;
        padding-bottom: 120px;
        padding-left: 30px;
    }
    .global-navigation__list > li {
        border-bottom: 1px solid #e4e4e4;
        width: 100%;
    }
    
    .global-navigation__link {
      display: flex;
        align-items: center;
        justify-content: space-between;
        color: #1F4C32;
        font-weight: 400;
        transition: color 0.4s;
        font-size: 16px;
        padding: 12px 10px !important;
    }

    .global-navigation__link.-active::after {
      transform: translateY(-50%) rotate(-90deg);
    }

    /* fixedCv の実高さに合わせて調整（例：ボタン1段=60〜72px） */
    :root { --fixedcv-height: 72px; }

    /* 1) 画面下に固定。iOSのホームバーも考慮 */
    .fixedCv{
        padding: 10px;
        background-color: #EFF7EF;
        position: fixed;
        left: 0;
        right: 0;
        bottom: env(safe-area-inset-bottom);
        z-index: 8;         /* メニューのz-index(9)より下、ヘッダー等よりは下でOK */
        width: auto;        /* 100vwは環境でズレやすいので auto */
        transform: translateZ(0);     /* iOSでのチラつき/消失対策のレイヤ化 */
        backface-visibility: hidden;  /* 同上 */
    }

    /* 2) 下に被らないよう固定分の余白を常時確保（ページ全体） */
    main, #top, #footer{
        padding-bottom: calc(var(--fixedcv-height) + env(safe-area-inset-bottom));
    }

    .page-contact .fixedCv {
        display: none!important;
    }

    .fixedCv .cvTel {
        height: 60px;
        width: 49%;
        background-color: #1F4C32;
        border-radius: 3px;
        color: #fff;
        padding: 0px 10px;
        position: relative;
        box-sizing: border-box;
    }

    .fixedCv .cvTel p {
        line-height: 1;
        margin: 12px 0 5px;
        text-align: center;
    }

    .fixedCv .cvTel p a {
        color: #fff;
        letter-spacing: 1.5px;
        position: relative;
        padding-left: 30px;
        font-size: 20px;
    }

    .fixedCv .cvTel p a::before {
        position: absolute;
        left: 8px;
        top: 55%;
        transform: translateY(-50%);
        content: '';
        display: block;
        background-image: url(/img/common/ico_tel_w.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 18px;
        height: 18px;
    }

    .fixedCv .cvTel p.sub {
        font-size: 11px;
        margin: 0;
        text-align: center;
    }

    .fixedCv .cvForm {
        height: 60px;
        width: 49%;
        box-sizing: border-box;
    }

    .fixedCv .cvForm p {
        margin: 0;;
    }

    .fixedCv .cvForm a {
        display: inline-block;
        background-color: #DE5A45;
        border: solid 1px #DE5A45;
        border-radius: 3px;
        padding: 17px 0 17px 38px;
        position: relative;
        color: #fff;
        font-size: 13px;
        font-weight: 500;
        width: 100%;
        box-sizing: border-box;
    }

    .fixedCv .cvForm p a::before {
        position: absolute;
        left: 12px;
        top: 54%;
        transform: translateY(-50%);
        content: '';
        display: block;
        background-image: url(/img/common/ico_mail.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 20px;
        height: 20px;
    }

}


/*ーーーーーーーーーーーーーーーーーーーーーーーーーーー
TOP
ーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
/* スクロール連動アニメーション */
.scrollanime{
  opacity: 0;
  transition: all 1.2s ease;
}
.scrollanime.show{
  opacity: 1;
  transform: none;
}
.updown{
  transform: translate(0, -100px);
}
.downup{
  transform: translate(0, 100px);
}
.slide-right{
  transform: translate(100px, 0);
}
.slide-left{
  transform: translate(-100px, 0);
}
/* スクロール連動アニメーションここまで */

#fvArea {
    /* position: absolute;
    bottom: 0; */
    content: '';
    display: block;
    background-image: url(/img/top/img_top.png);
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    padding: 900px 0 70px;
}

#fvArea .ttl02 {
    margin-bottom: 35px;
    width: auto;
}

#fvArea section p {
    text-align: center;
    line-height: 2;
}

#fvArea .area div {
    background-color: #fff;
    padding: 55px 40px;
    margin: 120px 0 0;
}

.okomari {
    background-color: #718F75;
    padding: 40px 30px;
    margin: 0px 3%;
}

.okomari div {
    background-color: #fff;
    padding: 60px 30px;
    text-align: center;
}

.okomari div h3 {
    width: auto;
    text-align: center;
    margin: 0 0 15px;
}

.okomari div h3 img {
    width: 60%;
    margin: 0 auto;
}

.okomari p {
    margin: 0 0 40px;
}

#top #recruit {
    background-color: #EFF7EF;
    position: relative;
}

#top #recruit div {
    padding: 20px 45px;
}

#top #recruit .ttl02 {
    text-align: left;
    margin: 0;
}

#top #recruit .btn01 a {
    margin: 15px 0 0;
}

#top #recruit .ttl02 img {
    margin: 20px 0 0;
}

#top #recruit .absolute {
    position: absolute;
    bottom: 0;
    right: 60px;
    width: 30%;
}

#top #recruit .btn01 {
    margin-top: 20px;
}

#top #business {
    padding: 85px 0 30px;
}

#top #business p {
    text-align: center;
    margin: 30px 0 50px;
}

#top #business p.btn01 {
    text-align: center;
    margin: 50px 0 80px;
}

#top #business .list {
    margin: 50px auto;
}


#business .list .lists {
    width: 30%;
}

#business .list .lists a {
    display: inline-block;
    border: solid 2px #E0E8E0;
    padding: 15px 20px 20px;
}

#business .list .lists a .ttl03 {
    margin: 15px 0 0;
    font-weight: 500;
    color: #376028;
    text-align: center;
    position: relative;
}

#business .list .lists a .ttl03::after {
    position: absolute;
    right: 50px;
    top: 52%;
    transform: translateY(-50%);
    content: '';
    display: block;
    background-image: url(/img/common/ico_arrow_g.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
}

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

    #fvArea {
        background-image: url(/img/top/img_top_sp.png?2025);
        padding: 650px 0 70px;
    }

    #fvArea .ttl02 img {
        width: 90%;
    }

    #fvArea .ttl02 {
        margin-bottom: 25px;
    }

    #fvArea section p {
        text-align: left;
        padding: 0 5%;
    }

    #fvArea .area div {
        margin: 70px 0 0;
        padding: 45px 10px;
    }

    #top #business {
        padding: 65px 0 0;
    }

    #top #business .ttl02 img {
        width: 150px;
    }

    #top #business p {
        margin: 20px 0 30px;
        text-align: left;
        padding: 0 5%;
    }

    #business .list {
        flex-wrap: wrap;
        margin: 0 auto!important;
    }

    #business .list .lists {
        width: 100%;
        margin: 0 auto 10px;
    }

    #business .list .lists a {
        padding: 0 0 20px;
    }

    #business .list .lists a .ttl03 {
        margin: 10px 0 0;
    }

    #business .list .lists a img {
        width: 70%;
        margin: 0 auto;
    }

    #top #business p.btn01 {
        margin: 40px auto 80px;
    }

    #business .list .lists a .ttl03::after {
        right: 100px;
    }

    .okomari {
        padding: 30px 15px;
        margin: 0;
    }

    .okomari p{
        text-align: left;
    }

    .okomari div {
        padding: 40px 15px;
    }

    .okomari div h3 {
        width: 100%;
    }

    .okomari div h3 img {
        width: 65%;
    }

    #top #recruit .ttl02 {
        text-align: center;
    }

    #top #recruit div {
        padding: 20px 15px 90px;
    }

    #top #recruit .ttl02 img {
        margin: 20px auto 0;
        width: 150px;
    }

    #top #recruit .absolute {
        right: 20px;
        width: 36%;
    }

}


/*ーーーーーーーーーーーーーーーーーーーーーーーーーーー
事業内容
ーーーーーーーーーーーーーーーーーーーーーーーーーーー*/

.underSub {
    width: max-content;
    margin: 40px auto 80px;
}

.underSub img {
    width: 50%;
    margin: 0 auto;
}

#business .seikatsu {
    width: max-content;
    margin: 0 auto;
}

#business .seikatsu img {
    width: 50%;
    margin: 0 auto;
}

#business .detail .list .lists img {
    padding: 15px 0;
    border: solid 2px #E0E8E0;
}

#business .detail .list .lists .ttl03 {
    font-size: 24px;
    font-weight: 500;
    margin: 10px 0;
}

#business .detail .list .lists .txt {
    margin: 0 0 20px;
    text-align: left;
    font-size: 14px;
}

#business .detail .list .lists .btn01 {
    margin: 0;
}

#business .detail .list .lists .btn01 a {
    border: solid 1px #1F4C32;
    width: 86%;
}

#business .list {
    margin: 50px auto 110px;
}

.discount {
    background: #EFF7EF;
    margin: 100px auto 0;
}

.discount .pd {
    padding: 40px 50px 30px;
    position: relative;
}

.discount .pd h3 {
    font-size: 28px;
    font-weight: 500;
    margin: 0;
}

.discount .pd .txt {
    text-align: left!important;
    font-weight: 500;
}

.discount .pd div {
    background: #FFF;
    padding: 20px 20px 20px 180px;
}

.discount .pd div p {
    text-align: left!important;
    margin: 0!important;
}

.discount img {
    position: absolute;
    width: 125px;
    left: 50px;
    bottom: 0;
}

.cta .cvTel {
    height: 86px;
    width: auto;
    background-color: #1F4C32;
    border-radius: 3px;
    color: #fff;
    padding: 0px 65px;
}

.cta .cvTel p {
    font-size: 28px;
    margin: 16px 0 0;
    line-height: 1.2;
}

.cta .cvTel p a {
    color: #fff;
    letter-spacing: 1.5px;
    position: relative;
    padding-left: 20px;
}

.cta .cvTel p a::before {
    position: absolute;
    left: 0;
    top: 55%;
    transform: translateY(-50%);
    content: '';
    display: block;
    background-image: url(/img/common/ico_tel_w.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
}

.cta .cvForm p {
    margin: 0;
}

.cta .cvForm a {
    display: inline-block;
    background-color: #DE5A45;
    border: solid 1px #DE5A45;
    border-radius: 3px;
    padding: 26px 65px 26px 75px;
    position: relative;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
}

.cta .cvForm p a::before {
    position: absolute;
    left: 35px;
    top: 54%;
    transform: translateY(-50%);
    content: '';
    display: block;
    background-image: url(/img/common/ico_mail.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
}

.cta .cvTel p.sub {
    font-size: 12px;
    margin: 0;
}

.cta .cvBox {
    margin: 0 auto 90px;
    justify-content: space-between;
    width: 680px;
}

@media screen and (max-width: 768px){
    .underTtl h2 {
        width: 100%;
        padding: 30px 0 55px;
    }

    .underTtl h2 img {
        width: 170px;
    }

    .underSub {
        width: 100%;
        margin-bottom: 50px;
    }

    .underSub img {
        width: 90%;
    }

    #business .seikatsu {
        width: 100%;
    }

    #business .seikatsu img {
        width: 70%;
    }

    #business .detail .list {
        margin: 30px auto 50px!important;
    }

    #business .detail .list .lists .btn01 a {
        width: 265px;
        padding: 13px 0;
    }

    #business .detail .list .lists {
        margin-bottom: 30px;
    }

    .discount .pd {
        padding: 30px 15px 20px;
    }

    .discount .pd h3 {
        font-size: 20px;
        text-align: center;
    }

    .discount.under .pd {
        padding: 30px 15px 80px;
    }

    #business .discount img {
        width: 150px;
    }

    .discount img {
        left: -18px;
        bottom: 20px;
        /* width: 150px; */
    }

    .discount .pd div {
        padding: 15px 15px 15px 120px;
    }

    .discount .pd div p {
        font-size: 13px;
    }

    .discount .pd .txt {
        margin-bottom: 25px;
    }

    .cta .cvBox {
        width: 100%;
        flex-wrap: wrap;
        margin: 0 5% 50px;
    }

    .cta .cvTel {
        width: 100%;
        text-align: center;
        margin: 20px 0 14px;
        height: 75px;
    }

    .cta .cvForm a {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        padding: 20px 0;
    }

    .cta .cvTel p a::before {
        left: -3px;
    }

    .cta .cvForm {
        width: 100%;
    }

    .cta .cvTel p {
        font-size: 30px;
        margin: 9px 0 0;
    }

    .cta .cvTel p.sub {
        font-size: 13px;
    }

    .cta .cvForm p {
        width: 100%;
    }

    .cta .cvForm p a::before {
        left: 65px;
    }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーー
事業内容 - リフォーム
ーーーーーーーーーーーーーーーーーーーーーーーーーーー*/

.businessIntro h4 {
    font-size: 28px;
    font-weight: 500;
    margin: 40px 0 30px;
}

.businessIntro p {
    margin: 0;width: 80%;
}

.businessIntro {
    position: relative;
    padding: 0 0 60px;
}

.businessIntro img {
    position: absolute;
    right: -30px;
    bottom: 0;
    width: 220px;
}

.case {
    background-color: #EFF7EF;
    padding: 60px 0 20px;
}

.case .caseDetail {
    background-color: #fff;
    padding: 25px 60px 40px;
    margin: 0 0 30px 0;
}

.case .inner {
    margin: 45px auto 0;
}

.case .caseDetail h3 {
    font-size: 28px;
    font-weight: 500;
}

.case .caseDetail h3 span {
    font-size: 34px;
    margin-right: 8px;
}

span.oswald {
    font-weight: 400;
}

.case .caseDetail .subInfo {
    background-color: #EFF7EF;
    padding: 0 20px;
}

.case .caseDetail .subInfo p span {
    background-color: #1F4C32;
    color: #fff;
    padding: 0 20px 2px;
    border-radius: 3px;
    margin-right: 10px;
}

.case .caseDetail .subInfo p {
    margin-right: 90px;
}

.case .caseDetail .caseTxt {
    margin: 25px 0 0;
}

.flow .flowBox .flowDetail {
    border: solid 2px #E0E8E0;
    flex: 0 0 350px;
    padding: 20px 20px;
}

.flow .flowBox .flowDetail.point {
    background: #eff7ef;
}

.flow .flowBox {
    padding-left: 5%;
    padding-bottom: 8px;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 25px;
    scrollbar-gutter: stable both-edges;
}

.flow .flowBox::-webkit-scrollbar{ 
    height: 8px; 
}

.flow .flowBox::-webkit-scrollbar-track{ 
    background:none;
    border-radius:8px; 
}

.flow .flowBox::-webkit-scrollbar-thumb{
    background:#EFF7EF; 
    border-radius:8px; 
    border: none;
}

.flow .flowBox .flowDetail p {
    font-size: 15px;
    margin: 0;
}

.flow .flowBox .flowDetail h3 {
    font-size: 24px;
    font-weight: 500;
    margin: 5px 0 8px;
}

.flow .flowBox .flowDetail h3 span {
    font-size: 30px;
    margin-right: 8px;
}

.flow .ntxt {
    text-align: center;
    margin: 30px 0 50px;
}

.flow {
    padding: 70px 0 0;
}

.discount.under {
    margin: 60px auto 100px;
}

.discount.under .pd h3 {
    text-align: center;
    margin: 0 0 30px;
}

.discount.under .pd div {
    padding-right: 20px;
}

.underLink {
    width: 600px;
    margin: 50px auto 0;
}

@media screen and (max-width: 768px){
    .flow .ttl02 img {
        width: 240px;
    }

    .case .ttl02 img {
        width: 190px;
    }

   .businessIntro h4 {
        font-size: 18px;
        margin: 60px 0 15px;
        width: 100%;
        text-align: center;
        line-height: 1.8;
    }

    .businessIntro p {
        width: 100%;
    }

    .businessIntro img {
        width: 90px;
        right: 10px;
        /* top: -40px; */
        /* bottom: auto; */
        bottom: 0;
    }

    .businessIntro {
        padding: 0 0 90px;
    }

    .discount.under {
        margin: 60px auto 50px;
    }

    .discount.under .pd h3 {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .discount.under img {
        /* display: none; */
        bottom: 0;
        right: 0;
        width: 90px;
        left: auto;
    }

    .discount.under .pd div {
        padding: 15px;
    }

    .flow .ntxt {
        padding: 0 5%;
        text-align: left;
        margin: 25px 0 30px;
    }

    .flow .flowBox .flowDetail {
        flex: 0 0 250px;
        padding: 15px;
    }

    .flow .flowBox .flowDetail h3 {
        font-size: 18px;
    }

    .flow .flowBox .flowDetail h3 span {
        font-size: 24px;
    }

    .flow .flowBox .flowDetail p {
        font-size: 13px;
    }

    .flow .flowBox {
        /* overflow: scroll; */
        gap: 10px;
    }

    .case .caseDetail {
        padding: 25px 15px 30px;
        margin: 0 0 15px 0;
    }

    .case .caseDetail .flex {
        flex-wrap: wrap;
    }

    .case .caseDetail h3 {
        margin: 0 0 10px;
        font-size: 18px;
    }

    .case .caseDetail h3 span {
        font-size: 24px;
    }

    .case .caseDetail .subInfo {
        padding: 0 10px;
        margin: 0 0 15px;
    }

    .case .caseDetail .subInfo p {
        margin: 5px 0;
    }

    .case .caseDetail .caseTxt {
        margin: 10px 0 0;
    }

    .case .inner {
        margin: 20px auto;
    }

    .underLink {
        width: 90%;
        margin: 0 auto;
        padding: 0;
    }

    .underLink .btn01 a {
        width: 100%;
    }

    .underLink .btn01 {
        width: 47%;
    }

}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーー
事業内容 - 電気修繕
ーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.case .inner.flex {
    align-items: stretch;
}

.case .inner.flex .caseDetail {
    width: 42%;
    padding: 25px 40px 25px;
}

.case .inner.flex .caseDetail h3 {
    margin: 0 0 18px;
}

.case .inner.flex .caseDetail .caseTxt {
    margin: 20px 0 20px;
}

.case .inner.flex .caseDetail .subInfo {
    padding: 12px 15px 12px;
}

.case .inner.flex .caseDetail .subInfo p {
    margin: 0 0 10px;
}

.case .inner.flex .caseDetail .subInfo p:last-of-type {
    margin: 0;
}

@media screen and (max-width: 768px){
   .case .inner.flex {
        flex-wrap: wrap;
    }

    .case .inner.flex .caseDetail {
        width: 100%;
        padding: 25px 15px 10px;
    }

    .case .inner.flex .caseDetail h3 {
        margin: 0 0 12px;
    }

    .case .inner.flex .caseDetail .caseTxt {
        margin: 12px 0;
    }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーー
事業内容 - カギ防犯
ーーーーーーーーーーーーーーーーーーーーーーーーーーー*/

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

}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーー
企業情報
ーーーーーーーーーーーーーーーーーーーーーーーーーーー*/

#company .message .inner02 div {
    width: 50%;
}

#company .message .ceo {
    width: 48%;
}

#company .message .ttl02 {
    text-align: left;
}

#company .message .ttl02 img {
    margin: 20px 0 0;
}

#company .message .name {
    margin: 20px 0 0;
}

#company .message {
    padding: 60px 0 80px;
}

#company .companyInfo {
    /* background-color: #EFF7EF; */
    padding: 70px 0 0;
}

#company .group {
    padding: 80px 0 50px;
}

#company .group .groupInfo {
    margin: 30px 0 0;
}

#company .group .groupInfo img {
    width: 100%;
    margin: 0 auto;
}

#company .group .groupInfo .groupIntro {
    margin: 0 0 100px;
}

table {
    background-color: #fff;
    width: 100%;
    margin: 30px 0 0;
    padding: 40px 50px;
    border-spacing: 0;
}

table tr {
    border-top: solid 1px #718F75;
    display: block;
}

table tr:last-of-type {
    border-bottom: solid 1px #718F75;
}

table th {
    font-size: 17px;
    width: 180px;
    text-align: left;
    padding: 20px 0 20px 30px;
    background-color: #E0E8E0;
}

table td {
    padding: 20px 0 20px 30px;
}

#company .sisha {
    margin: 10px 0 0;
    background: #EFF7EF;
    padding: 12px 15px;
    width: 45.5%;
}

#company .sisha span {
    font-weight: bold;
}

#company table .flex {
    flex-wrap: wrap;
}

@media screen and (max-width: 768px){
   #company .message .flex {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    #company .message .ceo {
        width: 100%;
    }

    #company .message .inner02 div {
        width: 100%;
    }

    #company .message .ttl02 img {
        width: 260px;
        margin: 15px auto 0;
    }

    #company .message .ttl02 {
        text-align: center;
    }

    #company table {
        padding: 0;
    }

    .companyInfo .ttl02 {
        width: 100%;
    }

    .companyInfo .ttl02 img {
        width: 150px;
    }

    table {
        padding: 25px 15px;
    }

    table th {
        font-size: 15px;
        width: 100%;
        padding: 15px 10px;
        display: block;
        box-sizing: border-box;
    }

    table td {
        padding: 15px 10px;
        font-size: 14px;
    }

    .group .ttl02 img {
        width: 220px;
    }

    #company .group .groupInfo .groupIntro {
        margin: 0 0 80px;
    }

    .tab-contents {
        padding: 10px !important;
    }

    #company .sisha {
        width: 100%;
    }

}



/*ーーーーーーーーーーーーーーーーーーーーーーーーーーー
採用情報
ーーーーーーーーーーーーーーーーーーーーーーーーーーー*/

#js-tab {
    margin-top: 25px;
}

.tab-nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin: 0 auto 30px;
    width: 65%;
}

.tab-nav-item {
    margin-right: 2px;
    background: #fff;
    color: #1F4C32;
    border: solid 1px #1F4C32;
    padding: 15px 0;
    width: 230px;
    text-decoration: none;
    border-radius: 3px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
}

.tab-nav-item.is-active {
    background: #1F4C32;
    color: #fff;
}

.tab-contents {
    padding: 25px;
    background-color: #EFF7EF;
}

.tab-contents-item {
  display: none;
}

#recruit table {
    margin: 0;
}

.underIntro {
    margin:50px auto 40px;
    text-align: center;
}

.underIntro a {
    color: #1F4C32;
    text-decoration: underline;
}

.tab-contents .txtOnly {
    text-align: center;
    font-weight: 500;
}

.tab-contents .txtOnly a {
    color: #1F4C32;
    text-decoration: underline;
}

.accordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #1f4c32;
    background: #eff7ef;
    font-size: 22px;
    margin: 0 0 40px 0;
    font-weight: 600;
    cursor: pointer;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .3s;
}

.accordion[open] summary::after {
    transform: rotate(225deg);
}

.accordion .summaryNext {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    transition: transform .5s, opacity .5s;
}

.accordion[open] .summaryNext {
    transform: none;
    opacity: 1;
}

.move .accordion .summaryNext.flex {
    flex-wrap: wrap;
    justify-content: start;
    margin-bottom: 30px;
}

.move .accordion .summaryNext.flex .movie {
    width: 19%;
    margin-right: 1%;
    margin-bottom: 10px;
}

.move .accordion .summaryNext.flex .movie:nth-child(5n) {
    margin-right: 0;
}

.move .accordion .summaryNext.flex .movie iframe {
    width: 100%;
    height: 350px;
}

/* ページネーション（採用動画） */
.rm-pagination { 
    margin-top: 28px; 
    text-align: center; 
    width: 100%;
}

.rm-pagination .page-numbers {
  display: inline-flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 共通（リンク/現在ページ） */
.rm-pagination .page-numbers a,
.rm-pagination .page-numbers span {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid #e1e5e1;
  background: #fff;
  color: #333;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

/* ホバー/フォーカス */
.rm-pagination .page-numbers a:hover {
  background: #f4f7f4;
  border-color: #ccd6cc;
}
.rm-pagination .page-numbers a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(31,76,50,.2);
  border-color: #1F4C32;
}

/* 現在ページ */
.rm-pagination .page-numbers .current {
  background: #1F4C32;
  border-color: #1F4C32;
  color: #fff;
  font-weight: 600;
  cursor: default;
}

/* 前へ/次へ（クラス next/prev が付く想定） */
.rm-pagination .page-numbers .next,
.rm-pagination .page-numbers .prev {
  padding: 0 14px;
  min-width: 56px;
  font-weight: 500;
}

/* 無効（WPがspanにする場合用） */
.rm-pagination .page-numbers .disabled {
  opacity: .4;
  pointer-events: none;
}

/* モバイル最適化 */
@media (max-width: 768px) {
  .rm-pagination .page-numbers {
    gap: 6px;
  }
  .rm-pagination .page-numbers a,
  .rm-pagination .page-numbers span {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 13px;
    border-radius: 5px;
  }
  .rm-pagination .page-numbers .next,
  .rm-pagination .page-numbers .prev {
    min-width: 48px;
  }
}


@media screen and (max-width: 768px){
    .underIntro {
        margin: 50px 5% 40px; 
    }

    .tab-nav {
        flex-wrap: wrap;
        margin: 0 auto 20px;
        width: 100%;
    }

    .tab-nav-item {
        width: 48%;
        margin: 0 0 10px;
        padding: 10px 0;
        font-size: 14px;
    }

    .accordion summary {
        margin: 0 0 30px 0;
        padding: 1em 1em;
        font-size: 18px;
    }

    .move .accordion .summaryNext.flex .movie {
        width: 48%;
        margin-right: 2%;
    }

    .move .accordion .summaryNext.flex .movie iframe {
        height: 280px;
    }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーー
お問い合わせ
ーーーーーーーーーーーーーーーーーーーーーーーーーーー*/

#contact .contact-title.required::after {
    content: '必須';
    position: absolute;
    background-color: #DE5A45;
    color: #fff;
    font-size: 14px;
    top: 40%;
    right: 18px;
    padding: 0px 8px;
    border-radius: 2px;
}

#contact .contact-item dd input[type=text], #contact .contact-item dd input[type=tel], #contact .contact-item dd input[type=email],#contact .contact-item dd select,#contact .contact-item dd textarea {
    width: 98%;
    padding: 10px 12px;
    border-radius: 2px;
    border: none;
    background-color: #F8F8F8;
    box-sizing: border-box;
}

#contact .contact-item dd textarea {
    height: 180px;
}

#contact .privacy {
    background-color: #EFF7EF;
    padding: 20px 30px;
    height: 300px;
    overflow-y: scroll;
    margin: 60px auto 30px;
    width: 80%;
}

#contact .privacy .heading {
    font-size: 20px;
}

#contact .privacy .text.right {
    text-align: right;
    margin: 15px 0;
}

#contact .check {
    margin: 15px 0 30px;
    text-align: center;
}

#contact .contact-btn {
    display: inline-block;
    width: 250px;
    text-align: center;
    background-color: #1F4C32;
    border: solid 1px #1F4C32;
    border-radius: 3px;
    color: #fff;
    text-decoration: none;
    padding: 15px 0;
    margin: 0;
    position: relative;
    transition: 0.5s;
}

#contact .contact-btn:hover {
    background-color: #fff;
    border: solid 1px #1F4C32;
    color: #1F4C32;
    opacity: 1;
    cursor: pointer;
}

#contact .contact-submit {
    text-align: center;
}

#contact .contact-item {
    display: flex;
    border-top: solid 1px #718F75;
}

#contact .contact-title {
    font-size: 17px;
    width: 280px;
    text-align: left;
    padding: 30px 0 30px 20px;
    background-color: #E0E8E0;
    position: relative;
}

#contact dd {
    padding: 30px 0 30px 20px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

#contact .contact-item:last-of-type {
    border-bottom: solid 1px #718F75;
}

#contact .contact-item dd input[type=text], #contact .contact-item dd input[type=tel], #contact .contact-item dd input[type=email] {width: 40%;}

/* ===== Step Form ===== */
#contact .inner02 {
    width: min(100%, 900px);
}

.sf-wrapper { margin: 0 auto 40px; }
.sf-error { background:#fee; border:1px solid #faa; padding:14px 16px; margin:0 0 24px; }

.sf-progress {
  display:flex; gap:10px; counter-reset: step;
  list-style:none; padding:0; margin:0 0 22px;
}
.sf-progress li {
  flex:1 1 0; text-align:center; position:relative;
  padding:10px 6px; background:#f6f7f6; border:1px solid #e1e5e1; border-radius:6px;
  font-size:12px; color:#666;
}
.sf-progress li span {
  display:inline-flex; width:28px; height:28px; border-radius:50%;
  align-items:center; justify-content:center; border:1px solid #ccd6cc; background:#fff; margin-right:6px;
  font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
.sf-progress li em { font-style:normal; vertical-align:middle; }
.sf-progress li.current { border-color:#1F4C32; background:#eaf0ec; color:#1F4C32; }
.sf-progress li.current span { border-color:#1F4C32; }
.sf-progress li.done { background:#1F4C32; border-color:#1F4C32; color:#fff; }
.sf-progress li.done span { background:#fff; color:#1F4C32; }

.sf-step { display:none; background:#fff; padding:50px 70px; border:1px solid #e1e5e1; border-radius:6px; }
.sf-step.is-active { display:block; }
.sf-step-ttl { margin:0 0 12px; font-size:18px; color:#1F4C32; }

.sf-field { margin: 14px 0; }
.sf-field input[type="text"],
.sf-field input[type="tel"],
.sf-field input[type="email"],
.sf-field textarea {
  width: 100%; box-sizing:border-box; background:#F8F8F8; border:none; border-radius:2px; padding:20px 12px;
}
.sf-field textarea { min-height: 160px; }
.sf-hint { 
    display: inline-block;
    margin-top: 4px;
    padding: 3px 6px 4px;
    line-height: 1;
    background: #666;
    font-size: 11px;
    font-weight: bold;
    color: #fff;
    border-radius: 3px;
}
.sf-hint.must {
    display: inline-block;
    margin-top: 4px;
    padding: 3px 6px 4px;
    line-height: 1;
    background: #de5a45;
    font-size: 11px;
    font-weight: bold;
    color: #fff;
    border-radius: 3px;
}

.sf-nav { margin-top: 30px; display:flex; gap:10px; justify-content:flex-end; }
.sf-nav .sf-prev,
.sf-nav .sf-next,
.sf-nav .sf-submit {
  appearance: none; border:none; border-radius:3px; padding:12px 16px; cursor:pointer;
}
.sf-nav .sf-prev { background:#e9eeea; color:#333; }
.sf-nav .sf-next { background:#1F4C32; color:#fff; }
.sf-nav .sf-submit { background:#1F4C32; color:#fff; font-weight:600; }

/* 微アニメーション */
.sf-shake { animation: sfshake .35s; }
@keyframes sfshake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-4px); }
  40%, 60% { transform: translateX(4px); }
}

/* 既存のフォーム系スタイルと馴染ませる（モバイル最適化） */
@media (max-width: 768px) {
  .sf-progress { gap:6px; }
  .sf-progress li { padding:8px 4px; font-size:11px; }
  .sf-progress li span { width:24px; height:24px; }
}


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

    #contact .contact-item {
        flex-wrap: wrap;
    }

    #contact .contact-title {
        width: 100%;
        padding: 20px 0 20px 10px;
    }

    #contact dd {
        padding: 20px 0 20px 15px;
    }

    #contact .privacy {
        padding: 0px 10px;
        margin: 50px 0 0;
        width: 100%;
        box-sizing: border-box;
    }

}

/* ラジオ群の並び（PCは横並び、SPは縦並び） */
.contact-radio{
  display:flex;
  flex-wrap:wrap;
  gap:12px 24px;
}

/* 1項目＝ひとかたまり（ラベル全体がクリック領域） */
.contact-radio .radio-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
  user-select:none;
}

/* 念のため、既存のdlレイアウトに引っ張られないように */
.contact-radio .radio-item input[type="radio"]{
  margin:0;
}

/* スマホでは1列表示にする */
@media (max-width: 768px){
  .contact-radio .radio-item{
    width:100%;
  }

  #contact .inner02 {
    width: 90%;
  }

  .sf-step {
        padding: 40px 20px 30px;
    }

    .sf-progress li em {
        display: block;
    }

    .sf-progress li span {
        margin: 0 0 5px;
    }

    #contact .underIntro {
        text-align: left;
    }

    input[type="text"],
    input[type="tel"],
    input[type="email"],
    input[type="number"],
    input[type="search"],
    input[type="password"],
    textarea,
    select {
        font-size: 16px !important;
    }

}

