@charset "UTF-8";

html {
    font-size: 62.5%;/* 16px x 0.625 = 10px(=1rem) */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
 }

body {
    font-size: 1.4rem;
    line-height: 1.4em;
    font-family:'Noto Sans JP',sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sp_only {
    display: none;
}

/* ヘッダー */
#header{
    display:block;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    min-width: 1150px;
    height:88px;
    background-color:#FFF;
    padding-top: 22px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
    z-index:100;
}

#headerMain{
    display: flex;
    display: -webkit-flex;
    width:94%;
    height:43px;
    background-color:#FFF;
    margin: 0 auto;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    overflow:hidden;
}

.headerMain__logo{
    width: 242px;
}

.headerMain__logo .h_logo{
    display: block;
    width: 100%;
    background:url('../images/y_logo.webp') top left no-repeat;
    background-size: contain;
    line-height: 0;
    padding-bottom: 17.76%;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.headerMain__menu {
    width: 643px;
}

.headerMain__menu .h_menu {
    display: flex;
    display: -webkit-flex;
    width: 100%;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.headerMain__menu .h_menu li.tel {
    width: 264px;
}

.headerMain__menu .h_menu li.tel a {
    text-decoration: none;
}

.headerMain__menu .h_menu li.tel p {
    color: #012169;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.0em;
    margin-bottom: 3px;
}

.headerMain__menu .h_menu li.tel p.i_freedial {
    width: 100%;
    height: 30px;
    color: #000;
    font-size: 30px;
    font-weight: 700;
    line-height: 24px;
    background:url('../images/freedial.svg') center left no-repeat;
    background-size: 36px 24px;
    padding-left: 43px;
}

.headerMain__menu .h_menu li.btn_cv {
    width: 180px;
}

/* メインオファーセクション */
.main-offer {
    position: relative;
    overflow: hidden;
    margin-top: 88px;
}

.main-offer-layers {
    position: relative;
    width: 100%;
    min-height: 580px;
    margin: 0 auto;
}

/* 画像をHTMLに置かずCSSでレイヤー表現 */
.main-offer-layers::before,
.main-offer-layers::after {
    content: "";
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* 背景レイヤー */
.main-offer-layers {
    background-image: url('../images/mainimg_pc.webp');
    background-size: cover;
    background-position: center;
}

/* 中間の白レイヤー */
.main-offer-layers::before {
    background-image: url('../images/white.webp');
    background-size: cover;
    background-position: center;
}

/* タイトル最前面 */
.main-offer-layers::after {
    background-image: url('../images/maintitle_pc.webp');
    background-size: contain;
    background-position: center;
    inset: 48px 0 48px 0; /* タイトル上下の余白 */
}

/* アクセシビリティ用非表示テキスト */
.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* 会社の強みセクション（画像準拠レイアウト） */
.company-strengths {
    width: 100%;
    color: #FFF;
    background-color: #012169;
    padding: 20px 0 30px 0;
}

.strengths-inner {
    margin: 0 auto;
    text-align: center;
}

.strengths-top {
    display: flex;
    width: 1130px;
    margin: 0 auto 24px auto;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.strengths-logo {
    width: 368px;
    height: 111px;
    background: url('../images/logo.webp') center center no-repeat;
    background-size: contain;
    margin: 0 auto;
}

.strengths-merit {
    width: 755px;
    height: 205px;
    background: url('../images/topmerit.webp') center center no-repeat;
    background-size: contain;
}

.strengths-heading-row {
    display: grid;
    width: 1086px;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    margin: 5px auto 22px auto;
}

.strengths-heading-row .line {
    display: block;
    height: 2px;
    background-color: #FFF;
}

.strengths-heading-text {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.4em; 
    letter-spacing: 0.02em; 
}

.cta-grid { 
    display: grid;
    width: 1086px;
    grid-template-columns: 1fr 1fr;
    gap: 32px; 
    align-items: start; 
    justify-items: center; 
    margin: 0 auto 24px auto; 
}

.cta-col { width: 522px; }

.cta-col a {
    display: block;
    width: 100%;
}

.cta-col-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4em;
    margin-bottom: 10px;
}

.cta-tel img, .cta-contact img {
    display: block;
    width: 100%;
}

.tel-hours {
    font-size: 23px;
    line-height: 1.4em;
    margin-top: 7px;
}

.strengths-bottom {
    display: block;
    width: 100%;
    color: #FFF;
    font-size: 43px;
    line-height: 1.0em;
    background: #EA7600;
    font-weight: 700;
    padding: 6px 0 10px 0;
}

.strengths-bottom .bigtext {
    font-size: 130%;
}

/* お悩みセクション */
.concerns-section {
    width: 100%;
    background: #F2F2F2;
    padding: 80px 0 0 0;
}

.concerns-title {
    font-size: 56px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 45px;
    letter-spacing: .02em;
}

.dots {
    color: #012169;
    font-size: 120%;
    background-image: radial-gradient(circle at center, #012169 15%, transparent 15%);
    background-position: top right;
    background-repeat: repeat-x;
    background-size: 1em 0.3em;
    padding-top: 0.1em;
}

.concerns-list {
    width: 1100px;
    margin: 0 auto 8px auto;
    padding: 0 10px;
}
.concern-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    align-items: start;
    column-gap: 18px;
    row-gap: 10px;
    padding: 15px 0;
}
.check-icon {
    display: block;
    width: 45px;
    height: 35px;
    background: url('../images/i_check.webp') top left no-repeat; 
    background-size: contain;
    margin-top: 10px;
    align-self: start;
}
.concern-item p {
    font-size: 34px;
    line-height: 1.4em;
    font-weight: 700;
    border-bottom: 2px dotted #AAAAAA;
    padding: 0 0 20px 0;
}
.concern-item p.no-border { border-bottom: none; }

.concern-em { color: #012169; }

.solution-banner {
    width: 100%;
    height: 290px;
    background: #012169 url('../images/kaiketsu_pc.webp') center bottom no-repeat;
    background-size: 1232px 283px;
}

/* 選ばれる理由セクション */
.reasons-section {
    width: 1085px;
    padding: 60px 0;
    margin: 0 auto;
}

.reasons-title {
    width: 538px;
    height: 228px;
    background: url('../images/tl_erabareru.webp') center/contain no-repeat;
    margin: 0 auto 20px auto;
}

.reason-item {
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
}

.reason-1 {
    background: url('../images/erabareru1_pc.webp') center/cover no-repeat;
    height: 276px;
}

.reason-2 {
    background: #F2F2F2 url('../images/erabareru2_pc.webp') top center/contain no-repeat;
    min-height: 934px;
    padding-bottom: 32px;
}

.reason-3 {
    background: url('../images/erabareru3_pc.webp') center/cover no-repeat;
    min-height: 276px;
}

.reason-4 {
    background: url('../images/erabareru4_pc.webp') center/cover no-repeat;
    min-height: 467px;
}

.reason-5 {
    background: url('../images/erabareru5_pc.webp') center/cover no-repeat;
    min-height: 287px;
}

.japan-map {
    width: 100%;
    height: 563px;
    background: url('../images/map_pc.webp') center/contain no-repeat;
    margin: 340px auto 0 auto;
}

/* お客様の声セクション */
.testimonials-section {
    width: 1085px;
    margin: 0 auto;
    padding: 0 0 60px 0;
}

.testimonials-title {
    color: #012169;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.4em;
    text-align: center;
    margin-bottom: 30px;
}

.testimonials-title .bigtext {
    font-size: 120%;
}

/******************************************
  参考事例
******************************************/

.jireibox {
    width: 100%;
    margin: 40px 0; 
}

.jireibox h3, .jireibox h4, .jireibox p {
    margin: 0;
    padding: 0;
}

.jireibox ul {
  margin: 0;
  padding: 0;
}

.jireibox ul li {
  list-style-type: none;
  list-style-position: inside;
  padding-left: 0;
  text-indent: 0;
}

h3.jireibox__title {
    width: 296px;
    height: 44px;
    color: #FFF;
    font-size: 27px;
    font-weight: 700;
    line-height: 44px;
    text-align: center;
    background-color: #012169;
    border-radius: 6px 6px 0 0;
}

h3.jireibox__title::before { content: unset; }

.jireibox ul.jireibox__container {
    display: flex;
    display: -webkit-flex;
    width: 100%;
    background-color: #FFF;
    border: 2px solid #012169;
    border-radius: 5px;
    padding: 20px;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

ul.jireibox__container li {
    font-size: 2.0rem;
}

ul.jireibox__container li.jireibox__user, ul.jireibox__container li.jireibox__item {
    width: 435px;
}

ul.jireibox__container li.jireibox__onayami, ul.jireibox__container li.jireibox__after {
    width: 550px;
}

ul.jireibox__container li.jireibox__user {
    display: flex;
    display: -webkit-flex;
    margin-bottom: 25px;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
}

ul.jireibox__container .jireibox__user__illust {
    width: 120px;
    height: 120px;
}

ul.jireibox__container .jireibox__user__illust img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

ul.jireibox__container .jireibox__user__txtarea {
  width: 300px;
}

h4.jireibox__user__txtarea__info {
  width: 100%;
  color: #000;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4em;
  margin-bottom: 0;
}

p.jireibox__user__txtarea__note {
  width: 100%;
  color: #000;
  font-size: 25px;
  line-height: 1.4em;
  margin-bottom: 0;
}

ul.jireibox__container li.jireibox__onayami {
    display: flex;
    display: -webkit-flex;
    background-color: #E6E6E6;
    border-radius: 4px;
    margin-bottom: 25px;
    padding: 15px 20px 15px 15px;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

h4.jireibox__onayami__illust {
    width: 96px;
    height: 94px;
    background:url('../images/jireibox_onayami_illust.png') center top no-repeat;
    background-size: contain;
    line-height: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

p.jireibox__onayami__txt {
    width: 405px;
    font-size: 2.0rem;
    line-height: 1.5em;
    margin: 0;
}

.jireibox h4.jireibox__item__title {
    width: 250px;
    height: 44px;
    color: #FFF;
    font-size: 27px;
    font-weight: 700;
    line-height: 44px;
    text-align: center;
    background-color: #012169;
    border-radius: 6px;
    border: none;
    margin-bottom: 15px;
}

.jireibox__item__itemarea {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.jireibox__item__image {
    width: 140px;
    height: 140px;
    aspect-ratio: 1 / 1;
}

.jireibox__item__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.jireibox__item__detail {
    width: calc(100% - 160px);
}

.jireibox__item__title {
    width: 100%;
    min-height: 23px;
    font-size: 2.0rem;
    line-height: 1.2em;
    font-weight: 700;
    border-left: 3px solid #EA7600;
    margin-bottom: 15px;
    padding-left: 10px;
}

.jireibox__item__prices { width: 100%; }
        
dl.jireibox__item__price--container {
    display: flex;
    display: -webkit-flex;
    width: 100%;
    border-bottom: 2px solid #C8C8C8;
    padding: 0 0 5px 0;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
            
dt.jireibox__item__price--category {
    width: 115px;
    height: 17px;
    font-size: 17px;
    font-weight: 700;
    line-height: 17px;
    padding: 0 0 0 3px;
}
            
dd.jireibox__item__price--value {
    width: calc(100% - 115px);
    height: 17px;
    font-size: 17px;
    font-weight: 700;
    line-height: 17px;
    text-align: right;
}

dd.jireibox__item__price--value span { font-size: 19px; }
            
dl.jireibox__item__price--container.kaiho {
    border-bottom: none;
}

dl.jireibox__item__price--container.kaiho dt.jireibox__item__price--category {
    width: 115px;
    height: 48px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.1em;
    border-bottom: 2px solid #EA7600;
    padding: 0 0 0 3px;
}
                
dl.jireibox__item__price--container.kaiho dd.jireibox__item__price--value {
    width: calc(100% - 115px);
    height: 48px;
    color: #012169;
    font-size: 21px;
    line-height: 35px;
    border-bottom: 2px solid #C8C8C8;
    text-align: right;
}
                
dl.jireibox__item__price--container.kaiho dd.jireibox__item__price--value span {
    font-size: 35px;
}

.jireibox__after {
    margin-bottom: 0;
}

.jireibox__after__txtarea {
    display: flex;
    display: -webkit-flex;
    width: 100%;
    margin-bottom: 25px;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

h4.jireibox__after__txtarea__illust {
    width: 110px;
    height: 94px;
    background:url('../images/jireibox_after_illust.png') center top no-repeat;
    background-size: contain;
    margin-left: 5px;
    line-height: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

p.jireibox__after__txtarea__txt {
    width: 426px;
    font-size: 2.0rem;
    line-height: 1.5em;
    margin: 0;
}

dl.jireibox__after__btnarea {
    display: flex;
    display: -webkit-flex;
    width: 100%;
    margin-bottom: 25px;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

dl.jireibox__after__btnarea dt { width: 302px;}
dl.jireibox__after__btnarea dd { width: 155px;}

dl.jireibox__after__btnarea dt a {
    display: block;
    width: 100%;
    height: 58px;
    color: #FFF !important;
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(to bottom, #EE9133, #EA7600);
    border-radius: 8px;
    box-shadow: 3px 3px 0px rgba(0,0,0,1);
    line-height: 58px;
    text-align: center;
}

dl.jireibox__after__btnarea dd a {
    display: block;
    width: 100%;
    height: 56px;
    color: #000;
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(to bottom, #FAFAFA, #E6E6E6);
    border: 1px solid #000;
    border-radius: 8px;
    box-shadow: 3px 3px 0px rgba(0,0,0,1);
    line-height: 56px;
    text-align: center;
}


@media screen and (max-width: 768px) {
  .jireibox {
    width: 100%;
    margin: 20px 0; 
}

h3.jireibox__title {
    width: 218px;
    height: 35px;
    font-size: 20px;
    line-height: 34px;
    border-radius: 5px;
}

.jireibox ul.jireibox__container {
    width: 100%;
    border-radius: 0 5px 5px 5px;
    padding: 10px;
}

ul.jireibox__container li {
    font-size: 1.6rem;
}

ul.jireibox__container li.jireibox__user, ul.jireibox__container li.jireibox__item {
    width: 100%;
    margin-bottom: 15px;
}

ul.jireibox__container li.jireibox__onayami, ul.jireibox__container li.jireibox__after {
    width: 100%;
}

ul.jireibox__container li.jireibox__user {
    margin-bottom: 7px;
}

ul.jireibox__container .jireibox__user__illust {
    width: 65px;
    height: 65px;
}

ul.jireibox__container .jireibox__user__txtarea {
  width: calc(100% - 75px);
}

h4.jireibox__user__txtarea__info {
  font-size: 17px;
  line-height: 1.4em;
  margin-bottom: 0;
}

p.jireibox__user__txtarea__note {
  font-size: 20px;
  line-height: 1.4em;
  margin-bottom: 0;
}

ul.jireibox__container li.jireibox__onayami {
    border-radius: 3px;
    margin-bottom: 15px;
    padding: 7px;
}

h4.jireibox__onayami__illust {
    width: 45px;
    height: 55px;
    background:url('../images/jireibox_onayami_illust.png') center top no-repeat;
    background-size: contain;
}

p.jireibox__onayami__txt {
    width: calc(100% - 51px);
    font-size: 1.5rem;
    line-height: 1.4em;
}

.jireibox h4.jireibox__item__title {
    width: 170px;
    height: 28px;
    font-size: 18px;
    line-height: 28px;
    border: none;
    border-radius: 4px;
    margin-bottom: 7px;
}

.jireibox__item__image {
    width: 100px;
    height: 100%;
}

.jireibox__item__detail {
    width: calc(100% - 115px);
}

.jireibox__item__title {
    min-height: 17px;
    font-size: 15px;
    line-height: 1.2em;
    border-left: 2px solid #EA7600;
    margin-bottom: 7px;
    padding-left: 7px;
}
        
dl.jireibox__item__price--container {
    width: 100%;
    border-bottom: 2px solid #C8C8C8;
    padding: 0 0 5px 0;
}
            
dt.jireibox__item__price--category {
    width: 85px;
    height: 14px;
    font-size: 13px;
    line-height: 17px;
    padding: 0 0 0 3px;
}
            
dd.jireibox__item__price--value {
    width: calc(100% - 85px);
    height: 14px;
    font-size: 13px;
    line-height: 17px;
}

dd.jireibox__item__price--value span { font-size: 16px; }

dl.jireibox__item__price--container.kaiho dt.jireibox__item__price--category {
    width: 85px;
    height: 35px;
    font-size: 13px;
    line-height: 1.1em;
    padding: 0 0 0 3px;
}
                
dl.jireibox__item__price--container.kaiho dd.jireibox__item__price--value {
    width: calc(100% - 85px);
    height: 35px;
    font-size: 16px;
    line-height: 26px;
}
                
dl.jireibox__item__price--container.kaiho dd.jireibox__item__price--value span {
    font-size: 26px;
}

.jireibox__after__txtarea {
    width: 100%;
    margin-bottom: 13px;
}

h4.jireibox__after__txtarea__illust {
    width: 45px;
    height: 55px;
    background:url('../images/jireibox_after_illust.png') center top no-repeat;
    background-size: contain;
}

p.jireibox__after__txtarea__txt {
    width: calc(100% - 55px);
    font-size: 1.5rem;
    line-height: 1.4em;
    margin: 0;
}

dl.jireibox__after__btnarea {
    width: 100%;
    margin-bottom: 10px;
}

dl.jireibox__after__btnarea dt { width: 65%;}
dl.jireibox__after__btnarea dd { width: 32%;}

dl.jireibox__after__btnarea dt a {
    width: 100%;
    height: 40px;
    font-size: 15px;
    letter-spacing: 0;
    border-radius: 5px;
    box-shadow: 2px 2px 0px rgba(0,0,0,1);
    line-height: 39px;
}

dl.jireibox__after__btnarea dd a {
    width: 100%;
    height: 40px;
    font-size: 15px;
    border: 1px solid #000;
    border-radius: 5px;
    box-shadow: 2px 2px 0px rgba(0,0,0,1);
    line-height: 39px;
}

}

/* 介護用品レンタル説明セクション */
.rental-explanation {
    padding: 60px 0;
}

.explanation-content {
    display: flex;
    display: -webkit-flex;
    width: 1085px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-between;
}

.explanation-text {
    width: calc(100% - 567px);
    font-size: 25px;
    line-height: 1.6em;
}

.example-product {
    width: 520px;
    height: 268px;
    background:url('../images/bed.webp') center top no-repeat;
    background-size: contain;
}

.product-demo {
    display: none;
}


/* 介護保険レンタルできる用品セクション */
.rental-products {
    width: 100%;
    background: #F0F4FC;
    padding: 40px 0;
}

.products-title {
    color: #012169;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.4em;
    text-align: center;
    margin-bottom: 40px;
}

.care-level-section {
    width: 1085px;
    height: 883px;
    background:url('../images/rental_pc.webp') center top no-repeat;
    background-size: contain;
    margin: 0 auto 50px auto;
}

.care-level-title, .products-grid {
    display: none;
}


/* レンタルできないものセクション */
.non-rental-title {
    color: #012169;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.4em;
    text-align: center;
    margin-bottom: 10px;
}

.non-rental-note {
    color: #C1272D;
    font-size: 24px;
    line-height: 1.4em;
    text-align: center;
    margin-bottom: 30px;
}

.non-rental-items {
    width: 514px;
    height: 216px;
    background:url('../images/taishogai_pc.webp') center top no-repeat;
    background-size: contain;
    margin: 0 auto;
}

.non-rental-item {
    display: none;
}


/* 介護保険レンタルの強みセクション */
.rental-strengths {
    width: 1085px;
    margin: 0 auto;
    padding: 60px 0;
}

h2.kurumaisu {
    background:url('../images/kurumaisu1.webp') center top no-repeat;
    background-size: 180px 200px;
    padding-top: 225px;
}

.strength-item {
    width: 1085px;
    height: 192px;
    margin-bottom: 30px;
}

.strength-item.item1 {
    background:url('../images/tsuyomi1_pc.webp') center top no-repeat;
    background-size: contain;
}

.strength-item.item2 {
    background:url('../images/tsuyomi2_pc.webp') center top no-repeat;
    background-size: contain;
}

.strength-item.item3 {
    background:url('../images/tsuyomi3_pc.webp') center top no-repeat;
    background-size: contain;
}

.strength-item.item4 {
    background:url('../images/tsuyomi4_pc.webp') center top no-repeat;
    background-size: contain;
}

.strength-item.item5 {
    background:url('../images/tsuyomi5_pc.webp') center top no-repeat;
    background-size: contain;
}

.strength-number, .strength-text {
    display: none;
}

/* サービス比較表セクション */
.service-comparison-section {
    width: 1085px;  
    margin: 0 auto;
    padding: 60px 0;
}

.table-area {
    width: 100%;
    overflow: auto;
}

.service-comparison-table {
    width: 100%;
    height: auto;
    background:url('../images/table1.webp') center top no-repeat;
    background-size: contain;
    margin-bottom: 10px;
    padding-bottom: 68.25%;
}

.service-table-header {
    display: none;
}

.service-table-row {
    display: none;
}

.comparison-note {
    color: #000;
    font-size: 18px;
    line-height: 1.4em;
    text-align: left;
}

/* 比較表セクション */
.comparison-section {
    width: 1085px;  
    margin: 0 auto;
    padding: 60px 0;
}

.comparison-table {
    width: 100%;
    height: auto;
    background:url('../images/table2.webp') center top no-repeat;
    background-size: contain;
    margin-bottom: 10px;
    padding-bottom: 76.65%;
}

.table-header {
    display: none;
}

.table-row {
    display: none;
}


/* ご利用までの流れセクション */
.usage-flow-section {
    width: 833px;
    margin: 0 auto;
    padding: 60px 0;
}

.flow-steps {
    width: 100%;
    height: auto;
    background:url('../images/flow_pc.webp') center top no-repeat;
    background-size: contain;
    margin-bottom: 10px;
    padding-bottom: 58.20%;
}

.flow-step {
    display: none;
}

/* 住宅改修セクション */
.home-renovation {
    width: 1085px;
    background-color: #F0F4FC;
    margin: 0 auto 60px auto;
    padding: 28px;
}

.renovation-title {
    color: #012169;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.4em;
    text-align: center;
    margin-bottom: 20px;
}

.renovation-content {
    display: flex;
    display: -webkit-flex;
    width: 100%;
    margin-bottom: 15px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.renovation-image {
    width: 526px;
}

.renovation-text {
    width: calc(100% - 570px);
    padding-top: 10px;
}

.renovation-text-p {
    font-size: 24px;
    line-height: 1.6em;
}

.renovation-text-note {
    font-size: 18px;
    line-height: 1.6em;
}

.limit-box {
    display: flex;
    display: -webkit-flex;
    width: 100%;
    margin: 13px 0 5px 0;
    flex-wrap: wrap;
    justify-content: space-between;
}

.limit-label {
    width: 168px;
    height: 86px;
    color: #FFF;
    font-size: 30px;
    line-height: 1.2em;
    background-color: #012169;
    text-align: center;
    margin-top: 15px;
    padding-top: 5px;
}

.limit-amount {
    width: calc(100% - 193px);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.6em;
}

.limit-amount .price {
    color: #C1272D;
    font-size: 40px;
}

.limit-amount .price .bigtext {
    font-size: 70px;
}


/* ご利用後のアフターサービスセクション */

.service-feature {
    width: 100%;
    padding: 10px 0 0 0;
}

.feature-text {
    width: 100%;
    font-size: 24px;
    line-height: 1.6em;
    background: url('../images/i_check.webp') top 8px left no-repeat;
    background-size: 36px 28px;
    margin-bottom: 15px;
    padding-left: 45px;
}


/* よくある質問セクション */
.faq-section {
    width: 1085px;
    margin: 0 auto;
    padding: 60px 0;
}

.faq-item {
    background-color: #F2F2F2;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
}

.faq-question, .faq-answer {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.faq-question { margin-bottom: 15px; }

.question-icon {
    display: block;
    width: 80px;
    height: 68px;
    background:url('../images/i_q.webp') top left no-repeat;
    background-size: contain;
    line-height: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.question-text {
    width: calc(100% - 100px);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.4em;
}

.answer-icon {
    display: block;
    width: 80px;
    height: 68px;
    background:url('../images/i_a.webp') top left no-repeat;
    background-size: contain;
    line-height: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.answer-text {
    width: calc(100% - 100px);
    font-size: 24px;
    line-height: 1.4em;
}

/* フッター */
footer {
    display: flex;
    width: 100%;
    min-width: 1200px;
    justify-content: space-between;
}

footer .company-strengths {
    width: 72%;
    min-width: 866px;
    background-color: #012169;
    padding: 15px 0 25px 0;
}

footer .company-strengths h2 {
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.9em;
    margin-bottom: 15px;
}

footer .company-strengths h2 .underline {
    font-size: 120%;
    text-decoration: underline;
}

footer .company-strengths h2 .bigtext {
    font-size: 42px;
}

footer .strengths-heading-row {
    width: 90%;
    max-width: 1100px;
    margin: 5px auto 15px auto;
}

footer .strengths-heading-row .line {
    display: block;
    height: 2px;
    background-color: #FFF;
}

footer .strengths-heading-text {
    font-size: 33px;
    font-weight: 700;
    line-height: 1.4em; 
    letter-spacing: 0.02em; 
}

footer .cta-grid { 
    display: grid;
    width: 90%;
    max-width: 1100px;
    grid-template-columns: 1fr 1fr;
    gap: 32px; 
    align-items: start; 
    justify-items: center; 
    margin: 0 auto 24px auto; 
}

footer .cta-col { width: 100%; }

footer .cta-col-title {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.4em;
    margin-bottom: 7px;
}

footer .tel-hours {
    font-size: 16px;
    line-height: 1.4em;
    margin-top: 5px;
}

footer .strengths-bottom {
    display: block;
    width: 100%;
    color: #FFF;
    font-size: 33px;
    line-height: 1.0em;
    background: #EA7600;
    font-weight: 700;
    padding: 5px 0 8px 0;
}

footer .r_box {
    width: 28%;
    min-width: 334px;
    background-color: #F2F2F2;
    padding: 30px 0 0 25px;
}

footer .r_box h2 {
    width: 220px;
    height: 73px;
    background: url('../images/f_logo_pc.png') top left no-repeat;
    background-size: contain;
    line-height: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 30px;
}

footer .r_box h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.0em;
    margin-bottom: 5px;
}

footer .r_box .tx_address {
    font-size: 14px;
    line-height: 1.7em;
    margin-bottom: 30px;
}

footer .r_box .copy {
    font-size: 11px;
    line-height: 1.4em;
    margin: 100px 0 0 0;
}


/* レスポンシブデザイン */
@media (max-width: 768px) {
    
    .pc_only {
        display: none;
    }

    .sp_only {
        display: block;
    }
    
    .container {
        max-width: 1200px;
        width: 94%;
        margin: 0 auto;
        padding: 0;
    }
    
    /* ヘッダー */
    #header{
        width:100%;
        min-width: inherit;
        height:68px;
        padding-top: 8px;
        box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.25);
        -webkit-box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.25);
        -moz-box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.25);
    }
    
    #headerMain{
        width:94%;
        height:51px;
        margin: 0 auto;
    }
    
    .headerMain__logo{
        width: 160px;
        margin-top: 10px;
    }
    
    .headerMain__menu {
        width: 160px;
    }
    
    .headerMain__menu .h_menu li.tel {
        width: 100%;
        margin-top: 5px;
    }
    
    .headerMain__menu .h_menu li.tel a {
        text-decoration: none;
    }
    
    .headerMain__menu .h_menu li.tel p {
        color: #012169;
        font-size: 1.25rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        line-height: 1.0em;
        margin-bottom: 3px;
    }
    
    .headerMain__menu .h_menu li.tel p.i_freedial {
        width: 100%;
        height: 15px;
        font-size: 18px;
        font-weight: 700;
        line-height: 15px;
        background:url('../images/freedial.svg') center left no-repeat;
        background-size: 22px 15px;
        padding-left: 28px;
    }
    
    .headerMain__menu .h_menu li.tel p.sp_only {
        font-size: 12px;
        line-height: 1.0em;
        margin-top: 5px;
        text-align: center;
    }
    
    .headerMain__menu .h_menu li.btn_cv {
        display: none;
    }
    
    /* メインオファーセクション */
    .main-offer {
        margin-top: 68px;
    }
    
    .main-offer-layers {
        position: relative;
        width: 100%;
        min-height: 470px;
        margin: 0 auto;
    }
    
    /* 背景レイヤー */
    .main-offer-layers {
        background-image: url('../images/mainimg_sp.webp');
        background-size: cover;
        background-position: center;
    }
    
    /* タイトル最前面 */
    .main-offer-layers::after {
        background-image: url('../images/maintitle_sp.webp');
        background-size: contain;
        background-position: center;
        inset: 20px 0 25px 0; /* タイトル上下の余白 */
    }
    
    /* 会社の強みセクション（画像準拠レイアウト） */
    .company-strengths {
        padding: 0 0 20px 0;
    }
    
    .strengths-top {
        display: flex;
        width: 100%;
        margin: 0 auto 5px auto;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    
    .strengths-logo {
        width: 186px;
        height: 56px;
        margin: -15px auto 0 auto;
        z-index: 10;
    }
    
    .strengths-merit {
        width: 100%;
        height: auto;
        background: url('../images/topmerit.webp') center center no-repeat;
        background-size: contain;
        padding-top: 24.73%;
    }
    
    .strengths-heading-row {
        display: grid;
        width: 94%;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 10px;
        margin: 5px auto 10px auto;
        padding-top: 10px;
    }
    
    .strengths-heading-row .line {
        display: block;
        height: 2px;
        background-color: #FFF;
    }
    
    .strengths-heading-text {
        font-size: 20px;
        font-weight: 700;
        line-height: 1.4em; 
        letter-spacing: 0.02em; 
    }
    
    .cta-grid { 
        display: grid;
        width: 94%;
        grid-template-columns: 0.61fr 0.39fr;
        gap: 10px; 
        align-items: start; 
        justify-items: center; 
        margin: 0 auto 15px auto; 
    }
    
    .cta-col { width: 100%; }
    
    .cta-col a {
        display: block;
        width: 100%;
    }
    
    .cta-col-title {
        display: none;
    }
    
    .tel-hours {
        display: none;
    }
    
    .strengths-bottom {
        font-size: 20px;
        padding: 3px 0 5px 0;
    }
    
    /* お悩みセクション */
    .concerns-section {
        width: 100%;
        padding: 30px 0 0 0;
    }
    
    .concerns-title {
        font-size: 26px;
        line-height: 1.4em;
        text-align: center;
        margin-bottom: 15px;
        letter-spacing: 0;
    }
    
    .dots {
        font-size: 120%;
        background-image: radial-gradient(circle at center, #012169 15%, transparent 15%);
        background-position: top right;
        background-repeat: repeat-x;
        background-size: 1em 0.3em;
        padding-top: 10px;
    }
    
    .concerns-list {
        width: 100%;
        margin: 0 auto 8px auto;
        padding: 0 10px;
    }
    .concern-item {
        display: grid;
        grid-template-columns: 24px 1fr;
        align-items: start;
        column-gap: 9px;
        row-gap: 10px;
        padding: 10px 0;
    }
    .check-icon {
        width: 24px;
        height: 19px;
        background: url('../images/i_check.webp') top left no-repeat; 
        background-size: contain;
        margin-top: 5px;
        align-self: start;
    }
    .concern-item p {
        font-size: 20px;
        line-height: 1.4em;
        font-weight: 700;
        border-bottom: 2px dotted #AAAAAA;
        padding: 0 0 15px 0;
    }
        
    .solution-banner {
        width: 100%;
        height: auto;
        background: #012169 url('../images/kaiketsu_sp.webp') center bottom no-repeat;
        background-size: 110% auto;
        padding-top: 38.71%;
    }
    
    /* 選ばれる理由セクション */
    .reasons-section {
        width: 94%;
        padding: 30px 0;
        margin: 0 auto;
    }
    
    .reasons-title {
        width: 269px;
        height: 114px;
        background: url('../images/tl_erabareru.webp') center/contain no-repeat;
        margin: 0 auto 15px auto;
    }
    
    .reason-item {
        width: 100%;
        margin-bottom: 20px;
        overflow: hidden;
    }
    
    .reason-1 {
        background: url('../images/erabareru1_sp.webp') center/cover no-repeat;
        height: auto;
        min-height: inherit;
        padding-top: 53.41%;
    }
    
    .reason-2 {
        background: #F2F2F2 url('../images/erabareru2_sp.webp') top center/contain no-repeat;
        min-height: inherit;
        padding: 15px;
    }
    
    .reason-3 {
        background: url('../images/erabareru3_sp.webp') center/cover no-repeat;
        height: auto;
        min-height: inherit;
        padding-top: 53.41%;
    }
    
    .reason-4 {
        background: url('../images/erabareru4_sp.webp') center/cover no-repeat;
        height: auto;
        min-height: inherit;
        padding-top: 79.55%;
    }
    
    .reason-5 {
        background: url('../images/erabareru5_sp.webp') center/cover no-repeat;
        height: auto;
        min-height: inherit;
        padding-top: 53.41%;
    }
    
    .japan-map {
        width: 100%;
        height: auto;
        background: url('../images/map_sp.webp') center/contain no-repeat;
        margin: 59.26% auto 0 auto;
        padding-top: 126%;
    }
    
    /* お客様の声セクション */
    .testimonials-section {
        width: 94%;
        margin: 0 auto;
        padding: 0 0 30px 0;
    }
    
    .testimonials-title {
        font-size: 27px;
        line-height: 1.4em;
        margin-bottom: 20px;
    }
    
    /* 介護用品レンタル説明セクション */
    .rental-explanation {
        padding: 30px 0;
    }
    
    .explanation-content {
        display: flex;
        display: -webkit-flex;
        width: 94%;
        margin: 0 auto;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .explanation-text {
        width: 100%;
        font-size: 18px;
        line-height: 1.6em;
        margin-bottom: 10px;
    }
    
    .example-product {
        width: 100%;
        height: auto;
        background:url('../images/bed.webp') center top no-repeat;
        background-size: contain;
        padding-top: 51.54%;
    }
    
    
    /* 介護保険レンタルできる用品セクション */
    .rental-products {
        width: 100%;
        padding: 20px 0;
    }
    
    .products-title {
        font-size: 24px;
        line-height: 1.4em;
        margin-bottom: 20px;
    }
    
    .care-level-section {
        width: 94%;
        height: auto;
        background:url('../images/rental_sp.webp') center top no-repeat;
        background-size: contain;
        margin: 0 auto 25px auto;
        padding-top: 241%;
    }
    
    
    /* レンタルできないものセクション */
    .non-rental-title {
        font-size: 24px;
        line-height: 1.4em;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .non-rental-note {
        font-size: 18px;
        line-height: 1.4em;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .non-rental-items {
        width: 84.36%;
        height: auto;
        background:url('../images/taishogai_sp.webp') center top no-repeat;
        background-size: contain;
        margin: 0 auto;
        padding-top: 35.64%;
    }
    
    
    /* 介護保険レンタルの強みセクション */
    .rental-strengths {
        width: 94%;
        margin: 0 auto;
        padding: 30px 0;
    }
    
    h2.kurumaisu {
        background:url('../images/kurumaisu1.webp') center top no-repeat;
        background-size: 90px 100px;
        padding-top: 112px;
    }
    
    .strength-item {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
    
    .strength-item.item1 {
        background:url('../images/tsuyomi1_sp.webp') center top no-repeat;
        background-size: contain;
        padding-top: 30%;
    }
    
    .strength-item.item2 {
        background:url('../images/tsuyomi2_sp.webp') center top no-repeat;
        background-size: contain;
        padding-top: 38.03%;
    }
    
    .strength-item.item3 {
        background:url('../images/tsuyomi3_sp.webp') center top no-repeat;
        background-size: contain;
        padding-top: 38.03%;
    }
    
    .strength-item.item4 {
        background:url('../images/tsuyomi4_sp.webp') center top no-repeat;
        background-size: contain;
        padding-top: 38.03%;
    }
    
    .strength-item.item5 {
        background:url('../images/tsuyomi5_sp.webp') center top no-repeat;
        background-size: contain;
        padding-top: 38.03%;
    }
    
    /* サービス比較表セクション */
    .service-comparison-section {
        width: 94%;  
        margin: 0 auto;
        padding: 0 0 30px 0;
    }
    
    .table-area {
        width: 100%;
        overflow: auto;
    }
    
    .service-comparison-table {
        width: 583px;
        height: 396px;
        background:url('../images/table1.webp') center top no-repeat;
        background-size: contain;
        margin-bottom: 10px;
        padding-bottom: 0;
    }
    
    .comparison-note {
        font-size: 12px;
        line-height: 1.4em;
        text-align: left;
    }
    
    /* 比較表セクション */
    .comparison-section {
        width: 94%;  
        margin: 0 auto;
        padding: 30px 0;
    }
    
    .comparison-table {
        width: 583px;
        height: 445px;
        background:url('../images/table2.webp') center top no-repeat;
        background-size: contain;
        margin-bottom: 10px;
        padding-bottom: 0;
    }
    
    /* ご利用までの流れセクション */
    .usage-flow-section {
        width: 330px;
        margin: 0 auto;
        padding: 0 0 30px 0;
    }
    
    .flow-steps {
        width: 100%;
        height: auto;
        background:url('../images/flow_sp.webp') center top no-repeat;
        background-size: contain;
        margin-bottom: 10px;
        padding-bottom: 107.03%;
    }

    
    /* 住宅改修セクション */
    .home-renovation {
        width: 94%;
        margin: 0 auto 30px auto;
        padding: 15px;
    }
    
    .renovation-title {
        font-size: 28px;
        line-height: 1.4em;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .renovation-content {
        display: flex;
        display: -webkit-flex;
        width: 100%;
        margin-bottom: 15px;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .renovation-image {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .renovation-text {
        width: 100%;
        padding-top: 10px;
    }
    
    .renovation-text-p {
        font-size: 18px;
        line-height: 1.6em;
    }
    
    .renovation-text-note {
        font-size: 16px;
        line-height: 1.6em;
    }
    
    .limit-box {
        display: flex;
        display: -webkit-flex;
        width: 100%;
        margin: 13px 0 5px 0;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .limit-label {
        width: 108px;
        height: 55px;
        font-size: 18px;
        line-height: 1.2em;
        text-align: center;
        margin-top: 10px;
        padding-top: 5px;
    }
    
    .limit-amount {
        width: calc(100% - 120px);
        font-size: 20px;
        line-height: 1.6em;
    }
    
    .limit-amount .price {
        font-size: 26px;
    }
    
    .limit-amount .price .bigtext {
        font-size: 45px;
    }
    
    
    /* ご利用後のアフターサービスセクション */
    
    .service-feature {
        width: 100%;
        padding: 10px 0 0 0;
    }
    
    .feature-text {
        width: 100%;
        font-size: 18px;
        line-height: 1.6em;
        background: url('../images/i_check.webp') top 8px left no-repeat;
        background-size: 25px 20px;
        margin-bottom: 10px;
        padding-left: 35px;
    }
    
    
    /* よくある質問セクション */
    .faq-section {
        width: 100%;
        margin: 0 auto;
        padding: 0 0 30px 0;
    }
    
    .faq-item {
        border-radius: 5px;
        margin-bottom: 15px;
        padding: 15px;
    }
    
    .faq-question, .faq-answer {
        display: static;
        width: 100%;
    }
    
    .faq-question { margin-bottom: 15px; }
    
    .question-icon {
        display: block;
        width: 52px;
        height: 44px;
        background:url('../images/i_q.webp') top left no-repeat;
        background-size: contain;
        margin: 0 auto 10px auto;
    }
    
    .question-text {
        width: 100%;
        font-size: 20px;
        line-height: 1.4em;
        text-align: center;
    }
    
    .answer-icon {
        display: block;
        width: 52px;
        height: 44px;
        background:url('../images/i_a.webp') top left no-repeat;
        background-size: contain;
        margin: 0 auto 10px auto;
    }
    
    .answer-text {
        width: 100%;
        font-size: 17px;
        line-height: 1.4em;
    }
    
    /* フッター */
    footer {
        display: flex;
        width: 100%;
        min-width: inherit;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    footer .company-strengths {
        width: 100%;
        min-width: inherit;
        padding: 15px 0 25px 0;
    }
    
    footer .company-strengths h2 {
        color: #FFF;
        font-size: 18px;
        line-height: 1.9em;
        margin-bottom: 15px;
    }
    
    footer .company-strengths h2 .underline {
        font-size: 120%;
        text-decoration: underline;
    }
    
    footer .company-strengths h2 .bigtext {
        display: block;
        font-size: 36px;
        line-height: 1.2em;
        margin-top: 10px;
    }
    
    footer .strengths-heading-row {
        width: 90%;
        max-width: inherit;
        margin: 5px auto 15px auto;
    }
    
    footer .strengths-heading-row .line {
        display: block;
        height: 2px;
        background-color: #FFF;
    }
    
    footer .strengths-heading-text {
        font-size: 20px;
        line-height: 1.4em; 
        letter-spacing: 0.02em; 
    }
    
    footer .cta-grid { 
        display: grid;
        width: 94%;
        grid-template-columns: 0.61fr 0.39fr;
        gap: 10px; 
        align-items: start; 
        justify-items: center; 
        margin: 0 auto 15px auto; 
    }
    
    footer .cta-col { width: 100%; }
    
    footer .cta-col-title {
        display: none;
    }
    
    footer .tel-hours {
        display: none;
    }
    
    footer  .strengths-bottom{
        font-size: 20px;
        padding: 3px 0 5px 0;
    }
    
    footer .r_box {
        width: 100%;
        min-width: inherit;
        padding: 20px 0 10px 0;
    }
    
    footer .r_box h2 {
        width: 190px;
        height: 60px;
        background: url('../images/f_logo_sp.png') top left no-repeat;
        background-size: contain;
        margin: 0 auto 20px auto;
    }
    
    footer .r_box h3 {
        font-size: 16px;
        line-height: 1.0em;
        margin-bottom: 5px;
        text-align: center;
    }
    
    footer .r_box .tx_address {
        font-size: 14px;
        line-height: 1.7em;
        margin-bottom: 20px;
        text-align: center;
    }
    
    footer .r_box .copy {
        font-size: 9px;
        line-height: 1.4em;
        margin: 0;
        text-align: center;
    }
}