@charset "utf-8";

/* ==========================================================================
Foundation [ reset / base ]
========================================================================== */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  background-color: #fff;
  font-size: 16px;
  font-family: "Noto Sans JP","游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
  color: #333333;
  min-width: 1200px;
  position: relative;
}

html {
  padding-top: 0;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

select {
  font-size: 14px;
  background-color: #fff;
  height: 26px;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

a img:hover {
  opacity: .75;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

a:hover, a:active, a:focus {
  text-decoration: inherit;
}

a:hover {
  opacity: 1.0;
}

a[href]:hover {
  opacity: .8;
}

a {
  text-decoration: inherit;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.roboto {
  font-family: 'Roboto', sans-serif;
}

.din-bold {
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.sp {
  display: none;
}

/* ==========================================================================
Layout [ header / main / side / footer... ]
========================================================================== */

/* Header
---------------------------------------------------------------*/
#header {
  padding: 20px 40px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 6;
  box-sizing: border-box;
  justify-content: space-between;
  min-width: 1300px;
}

.l-header-logo {
  width: 200px;
}

.l-header-btn {
  display: flex;
  gap: 20px;
}

.l-header-btn a {
    font-size: 19px;
    width: auto;
    white-space: nowrap;
    padding: 0 40px;
    height: 46px;
    margin-top: 0;
    line-height: 2.3;
    background-image: none;
}


.l-header-nav {
  display: flex;
  /* 202512 gap変更 */
  /* gap: 30px; */
  gap: 24px;
  width: auto;
  /* 202512 paddig変更 */
  /* padding: 0 3%; */
  padding: 0 1% 0 2%;
  justify-content: flex-end;
}

.l-header-inner {
  display: flex;
  justify-content: space-around;
  /* 202512 gap変更 */
  gap: 24px;
  align-items: center;
  background: rgba(19, 47, 55, 0.8);
  border-radius: 32px;
  /* 202512 padding変更 */
  /* padding: 0 50px; */
  padding: 0 32px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(5.8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.l-header-inner li a {
  color: #fff;
}

.sp-btn {
  display: none;
}

.hamburger-menu {
  display: none;
}

/* kv-section */
.header-container {
    background: linear-gradient(135deg, #8B9FA8 0%, #6B7A82 50%, #4A5358 100%);
    position: relative;
}

/* Background geometric pattern */
.header-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="70,0 100,30 100,0" fill="rgba(255,255,255,0.1)"/><polygon points="80,0 100,20 100,0" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    opacity: 0.3;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    letter-spacing: -1px;
}

.hero-section {
    display: flex;
    align-items: stretch;
    height: 775px;
    position: relative;
    z-index: 5;
}

.hero-content {
    position: absolute;
    top: 130px;
    left: 0;
    max-width: 750px;
    max-height: 360px;
    z-index: 10;
    background: rgba(19, 47, 55, 0.9);
    padding: 40px;
    border-radius: 0 15px 15px 0;
    backdrop-filter: blur(2px);
}

.hero-title {
    font-size: 37px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 0;
}

.hero-image {
    flex: 7;
    background-color: #ddd;
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-container {
    flex: 3;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: #fff
}

.booth-container {
    position: relative;
    display: inline-block;
    max-width: 500px;
}

.phone-booth {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, #2C5530 0%, #1A3A1D 100%);
    border-radius: 25px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: perspective(800px) rotateY(-15deg);
    margin: 0 auto;
}

.booth-window {
    width: 200px;
    height: 280px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(240,240,240,0.9) 100%);
    border-radius: 15px;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    backdrop-filter: blur(5px);
}

.booth-handle {
    width: 8px;
    height: 60px;
    background: #666;
    border-radius: 4px;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
}

.chair {
    width: 60px;
    height: 80px;
    background: #C8A882;
    border-radius: 8px 8px 0 0;
    position: absolute;
    bottom: 80px;
    right: -80px;
    transform: perspective(400px) rotateY(30deg);
}

.chair::before {
    content: '';
    width: 60px;
    height: 40px;
    background: #C8A882;
    position: absolute;
    bottom: -40px;
    border-radius: 0 0 8px 8px;
}

.stats-overlay {
    position: static;
    background-image:url(../images/map.png);
    background-repeat :no-repeat;
    background-size: cover;
    padding: 40px;
    backdrop-filter: blur(10px);
    width: 100%;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-text {
    font-size: 22px;
    color: #2C3E50;
    text-align: center;
    line-height: 1.6;
    font-weight: 600;
}

.stats-number {
    font-size: 2rem;
    font-weight: bold;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-section {
    text-align: center;
    padding: 40px;
    background: #fff;
}

/* Main
---------------------------------------------------------------*/
.l-wrapper {
  overflow: hidden;
  width: 100%;
}

/* Footer
---------------------------------------------------------------*/
.l-copyright {
  padding: 28px;
}

.l-copyright-inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.l-copyright p {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.l-copyright-inner a {
  margin-left: auto;
  color: #fff;
  text-decoration: underline;
}

.l-footer-top {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 80px;
  width: 80px;
  height: 80px;
}

/* Bottom-button
---------------------------------------------------------------*/
.bottom-btn {
  display: none;
}

/* ==========================================================================
Project [ articles / ranking / promo... ]
========================================================================== */

/* タイトル周り */
.lead {
  margin-bottom: 50px;
  text-align: center;
}

.lead h2 {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 30px;
}

.lead h2 span.en {
  font-size: 26px;
  color: #F4D03F;
  font-weight: 900;
  display: block;
}

.lead h2 span {
  font-size: 26px;
}

.lead p {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: 18px;
  font-weight: 400;
}

.lead p img {
  width: 208px;
  margin-right: 8px;
}

.lead p span {
  font-size: 34px;
  position: relative;
  top: 3px;
}

/*問題提起*/
.problem {
  text-align: center;
  background-image: url(../images/Framery_image.jpg);
  background-size: cover;
  background-position: center;
  height: 440px;
  color: #fff;
}

.problem-inner {
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.problem h3 {
  font-size: 32px;
  margin: 30px auto;
  font-weight: 600;
}

.problem p {
  font-size: 20px;
  margin: 10px auto;
  font-weight: 300;
}

.problem p.bold {
  font-weight: 500;
}

/* 担当者の声&社内レビュー */
.voice {
  background-color: #ffffff;
  padding: 80px 0;
}

.voice-cards {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: stretch;
}
.review-cards{
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: stretch;
  background-color: #FFFFFF;
  padding: 16px 20px 20px 20px;
}

.voice-card, .review-card {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.voice-content, .review-content {
  background: #f8f9fa;
  background-position: top right 0px;
  background-repeat: no-repeat;
  background-size: auto 100%;
  padding: 25px 20px;
  border-radius: 8px 8px 0 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  min-height: 240px;
}

.voice-card:nth-child(1) .voice-content {
  background-image: url('../images/sales.png');
}

.voice-card:nth-child(2) .voice-content {
  background-image: url('../images/backoffice.png');
}

.voice-card:nth-child(3) .voice-content {
  background-image: url('../images/management.png');
}

.voice-content h3 {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin: 0 0 20px 0;
  text-align: center;
}

.voice-quote {
  padding: 0;
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 15px;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.voice-quote::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 40px;
  height: 30px;
  background-image: url('../images/quote.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.voice-quote p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
  padding-left: 25px;
}

.voice-card h4, .review-card h3 {
  background: linear-gradient(135deg, #1D3E47, #376975);
  color: white;
  padding: 8px 15px;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: bold;
  margin: 10px 0;
  text-align: center;
}

.voice-result, .review-result {
  background: #fff;
  color: #333;
  padding: 15px;
  margin: 0;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-height: 120px;
  display: flex;
  align-items: center;
}
.review-result {
  background: #fff;
  color: #333;
  padding: 15px;
  margin: 0;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-height: 120px;
  display: flex;
  align-items: flex-start;
  flex: 1;
}

.voice-result p, .review-result p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
.review-result p {
  text-align: left;
}

.review .c-center {
  padding: 40px 0px 0px;
}

/*理由*/

.reason .lead  {
  margin-bottom: 70px;
}

.reason-step {
  max-width: 1080px;
  margin: 0 auto 150px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.reason-step .info {
  padding-top: 50px;
  padding-left: 73px;
  max-width: 540px;
  width: 50%;
}

.reason-step .info .num {
  font-size: 60px;
  line-height: 1.2;
}

.reason-step .info .title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 25px;
}

.reason-step .thum {
  width: 41.25vw;
  margin-left: calc(50% - 50vw);
  position: relative;
}

.reason-step .thum:before {
  content: '';
  position: absolute;
  left: 0;
  top: 60px;
  width: 56.25vw;
  height: 25vw;
  z-index: -1;
  background: #F3F3F3;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.reason-step.second {
  flex-direction: row-reverse;
}

.reason-step.second .thum {
  margin-left: auto;
  margin-right: calc(50% - 50vw);
}

.reason-step.second .info {
  flex: 1;
  padding-left: 75px;
  padding-right: 50px;
}

.reason-step.second .thum:before {
  content: '';
  position: absolute;
  left: auto;
  right: 0;
  top: 60px;
  width: 56.25vw;
  height: 25vw;
  z-index: -1;
  background: #F3F3F3;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

/* プラン */
.plan {
  background: #F1F1F1;
}

.lineUp-text {
  border: 1px solid #132F37;
  border-radius: 10px;
  background-color: #fff;
  padding: 20px;
  margin-top: 40px;
}

.lineUp-text h3 {
  font-size: 22px;
  font-weight: 500;
}

.model-type ul {
  display:flex;
  gap: 24px;
  margin-bottom: 50px;
}

.model-type ul li {
  background-color: #fff;
  text-align: center;
  border-radius: 8px;
  height: 345px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  box-shadow: 0px 4px 36px rgba(0, 0, 0, 0.15);
  padding: 16px;
}

.model-type ul li h3 {
  font-size: 18px;
  font-weight: 600;
}

.model-type ul li p {
  text-align: left;
}

.table-container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.table-wrapper {
    overflow-x: auto;
}

.table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    line-height: 1.5;
}

.table-wrapper th {
    background-color: #132F37;
    color: white;
    padding: 16px 12px;
    text-align: center;
    font-weight: 600;
    border-right: 1px solid #1e4343;
}

.table-wrapper th:first-of-type {
  background-color: #f8f9fa;
  color: #333;
  border-bottom: 2px solid #dee2e6;
}

.table-wrapper th:last-child {
    border-right: none;
}

.table-wrapper td {
    padding: 16px 12px;
    border-bottom: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    vertical-align: top;
}

.table-wrapper td:last-child {
    border-right: none;
}

.table-wrapper .row-header {
    background-color: #f8f9fa;
    font-weight: 600;
    text-align: center;
    border-right: 2px solid #dee2e6;
    min-width: 120px;
}

.price-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.price-list li {
    margin-bottom: 4px;
}

.price-list li:last-child {
    margin-bottom: 0;
}

/*利用の流れ*/
.step-single {
  padding-top: 60px;
}

.step-single-inner {
  background-color: #fff;
  padding: 0px ;
  margin-bottom: 70px;
}

.step-single-inner__head {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: baseline;
  gap: 40px;
}

.step-single-inner__head .thum {
  order: 2;
  width: 168px;
  margin-left: auto;
}

.step-single-inner__head .txt16 {
  order: 1;
  width: -webkit-fill-available;
  line-height: 2;
}

.step-single-inner__box {
  background-color: #F2F4F2;
  padding: 20px;
  margin-top: 47px;
  border-radius: 4px;
  position: relative;
}

.step-single-inner__box::after {
  content: "";
  position: absolute;
  width: 113px;
  height: 30px;
  background-color: #F2F4F2;
  left: 50%;
  bottom: -40px;
  margin-left: -54px;
  aspect-ratio: 1/cos(30deg);
  clip-path: polygon(50% 100%,100% 0,0 0);
}

.step-single-inner__box:last-of-type::after {
  display: none;
}

.step-single-inner__box .sub-ttl {
  margin-bottom: 14px;
  color: #132F37;
  font-size: 18px;
  font-weight: 700;
  padding-left: 16px;
  position: relative;
}

.step-single-inner__box .sub-ttl:before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 22px;
  background: #132F37;
  border-radius: 3px;
}

/*FAQ*/
.faq {
  background-color: #132F37;
}

.faq h2 {
  color: #fff;
}

.faq .c-center {
  padding-top: 59px;
  padding-bottom: 100px;
}

.faqArea {
  margin-bottom: 25px;
}

.faqArea .inner {
  position: relative;
  background-color: #fff;
  box-shadow: 6px 6px 20px rgba(0,0,0,.06);
  border-radius: 10px;
}

.voicer-head {
  padding: 23px 59px 23px 28px;
  position: relative;
  box-sizing: border-box;
}

.js-toggle-open, .js-toggle-close {
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 20px;
}

.js-toggle-open a, .js-toggle-close a {
  display: block;
  cursor: pointer;
  text-decoration: underline;
  color: #000;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 10;
  text-indent: -9999px;
}

.js-toggle-close a:before {
  content: '';
  background: url(../images/faq-arw.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  width: 22px;
  height: 12px;
  right: 39px;
  top: 40px;
  position: absolute;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.js-toggle-open a:before {
  content: '';
  background: url(../images/faq-arw.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  width: 22px;
  height: 12px;
  right: 39px;
  top: 40px;
  position: absolute;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.js-toggle-close {
  display: none;
}

.toggle {
  padding: 5px 28px 20px;
  width: 100%;
  display: none;
  box-sizing:border-box;
}

.toggle-inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.toggle span {
  text-align: center;
  display: inline-block;
  margin-right: 24px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #F4D03F;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.toggle p {
  width: calc(100% - 164px);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.voicer-head .question {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}

.voicer-head span {
  text-align: center;
  display: inline-block;
  margin-right: 24px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #132F37;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.voicer-head  h3 {
  font-size: 18px;
  font-weight: 500;
  width: calc(100% - 34px);
  margin-left: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* footer-ctaエリア */
.foot-cta {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.foot-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.foot-cta-content {
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.foot-cta-content .c-btn {
  width: auto;
  padding: 0 70px;
}

.foot-cta-content h2 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #333;
}

.foot-cta-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
}

.foot-cta-image {
  flex: 1;
}

.foot-cta-image img {
  width: 100%;
  height: auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}


/* ショールームエリアカード追加 202510 start */
.foot-cta-inner:nth-child(1) {
  margin-bottom: 48px;
}
.room {
  background-color: #ffffff;
  padding: 80px 0;
}

.room-cards {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: stretch;
  background-color: #FFFFFF;
  padding: 25px;
}

.room-card {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.room-content {
  background: #f8f9fa;
  background-position: top right 0px;
  background-repeat: no-repeat;
  background-size: auto 100%;
  border-radius: 8px 8px 0 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  min-height: 240px;
}

.room-img {
  padding: 0;
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.room-quote::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 40px;
  height: 30px;
  background-image: url('../images/quote.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.room-quote p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
  padding-left: 25px;
}

.room-card h3 {
  background: linear-gradient(135deg, #1D3E47, #376975);
  color: white;
  padding: 8px 15px;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: bold;
  margin: 10px 0;
  text-align: center;
}

.room-result {
  background: #fff;
  color: #333;
  padding: 15px;
  margin: 0;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-height: 120px;
}
.room-result p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
/* ショールームエリアカード追加 202510 end */


/* footer */
.l-footer {
  background-color: #132F37;
  padding: 30px 0;
}

.l-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.l-footer-links {
  margin-bottom: 20px;
}

.l-footer-links a {
  color: #ecf0f1;
  text-decoration: none;
  margin: 0 30px;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.l-footer-links a:hover {
  color: #f1c40f;
}

.l-copyright p {
  color: #bdc3c7;
  font-size: 0.9rem;
  margin: 0;
}


/* ==========================================================================
Component [ button / form / grid... ]
========================================================================== */

.c-center {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 0 60px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.txt16 {
  font-size: 16px;
}

strong {
  font-weight: bold;
}

.c-btn {
  display: block;
  font-size: 24px;
  text-align: center;
  border-radius: 40px;
  background: url(../images/btn-arw.svg) no-repeat 95% 50%;
  background-size: 10px auto;
  color: #132F37;
  background-color: #F4D03F;
  position: relative;
  width: 400px;
  height: 76px;
  line-height: 76px;
  margin: 36px auto 0;
  border: none;
  font-weight: 500;
}

/* 資料請求ボタン 202510 start */
.r-btn {
  display: block;
  font-size: 24px;
  text-align: center;
  border-radius: 40px;
  background: url(../images/btn-arw.svg) no-repeat 95% 50%;
  background-size: 10px auto;
  color: #132F37;
  color: #F4D03F;
  background-color: #132F37;
  position: relative;
  width: 400px;
  height: 76px;
  line-height: 76px;
  margin: 36px auto 0;
  border: none;
  font-weight: 500;
}
/* 資料請求ボタン 202510 end */


/* animation - utility
--------------------------------------------------------- */
.sa {
  opacity: 0;
  transition: all .5s ease!important;
}

.sa.show {
  opacity: 1;
  transform: none;
}

.sa--up {
  transform: translate(0, 30px);
}

.sa--down {
  transform: translate(0, -50px);
}

.sa--lr {
  transform: translate(-30px, 0);
}

.sa--rl {
  transform: translate(30px, 0);
}

.sa--scaleUp {
  transform: scale(.9);
}

.sa--scaleDown {
  transform: scale(1.2);
}

.sa--rotateL {
  transform: rotate(180deg);
}

.sa--rotateR {
  transform: rotate(-180deg);
}

/* ==========================================================================
Contact
========================================================================== */

.contact-content {
  width: 100%;
  max-width: 845px;
  min-height: 886px;
  margin: 200px auto;
}

.contact-content h2 {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: #132F37;
}

@media screen and (max-width: 736px) {
  .contact-content {
    margin: 40px auto;
    padding: 25px;
    box-sizing: border-box;
  }

  .contact-content h2 {
    font-size: 28px;
  }
}

/* ==========================================================================
Thanks
========================================================================== */

.thanks-content {
  width: 100%;
  max-width: 845px;
  height: 50vh;
  margin: 200px auto;
  text-align: center;
}

.thanks-content h3 {
  font-size: 30px;
  padding-bottom: 38px;
}

@media screen and (max-width: 736px) {
  .thanks-content h3 {
    font-size: 24px;
  }
}

/* 新着情報追加　202510 start */
.news-section {
  z-index: 1;
  position: relative;
}
.news-info {
  background-color: #132F37;
  color: #FFFFFF;
  display: inline-block;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  transition: opacity 0.4s ease;
}
.news-info:hover {
  opacity: 0.6;
}
@media screen and (max-width: 736px) {
  .news-info {
    padding: 15px;
    box-sizing: border-box;
    transition: opacity 0.4s ease;
  }
}

/* 新着情報追加　202510 end */


/* タブレット用修正 202510 start*/
@media screen and (min-width: 737px) and (max-width: 1220px){
  .l-header-nav {
    padding: 0 6%;
  }
}
/* タブレット用修正 202510 end*/

/* ==========================================================================
Responsive Styles (Mobile)
========================================================================== */
@media screen and (max-width: 736px) {
  body {
    font-size: 14px;
    padding-top: 60px;
    min-width: unset;
  }
  
  .sp {
    display: block;
  }
  
  /* Header Mobile */
  #header {
    position: fixed;
    left: 0;
    top: -1px;
    width: 100%;
    height: 90px;
    padding: 10px 10px;
    z-index: 20;
    min-width: 0px;
    background: #fff;
  }
  
  .l-header-logo {
    width: 128px;
  }
  
  .l-header-nav {
    position: absolute;
    right: 0;
    top: 0px;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    background-color: #fff;
    transition: ease .4s;
    text-align: center;
    padding: 40px;
    display: block!important;
    z-index: 1;
  }
  
  .l-header-nav.active {
    transform: translateX(0);
  }
  
  .l-header-inner {
    display: block;
    background: none;
    box-shadow: none;
  }
  
  .l-header-inner li {
    border-bottom: 1px solid #ddd;
    padding: 30px 0;
  }
  
  .l-header-inner li:last-of-type {
    border: none;
    margin-bottom: 50px;
  }

  .l-header-inner li a {
    color: #132F37;
  }
  
  .navigation__link {
    font-size: 16px;
  }
  
  .sp-btn {
    display: block;
  }
  
  .l-header-btn.sp-btn a {
    display: block;
    width: 100%;
    height: 55px;
    line-height: 55px;
    text-align: center;
    color: #fff;
    background: #132F37;
    font-size: 17px;
    font-weight: 500;
    border-radius: 5px;
    margin: 20px auto;
  }

  .sp-header-btn .l-header-btn a {
    font-size: 16px;
    padding: 0 20px;
    height: 39px;
    line-height: 2.3;
    z-index: 0;
  }
  
  .hamburger-menu {
    display: block;
    width: 50px;
    height: 50px;
    position: relative;
    border: none;
    background: transparent;
    appearance: none;
    padding: 0;
    cursor: pointer;
    z-index: 2;
  }
  
  .hamburger-menu__bar {
    display: inline-block;
    width: 44%;
    height: 2px;
    background: #242424;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s;
  }
  
  .hamburger-menu__bar:first-child {
    top: 16px;
  }
  
  .hamburger-menu__bar:nth-child(2) {
    top: 24px;
  }
  
  .hamburger-menu__bar:last-child {
    top: 32px;
  }
  
  .hamburger-menu--open .hamburger-menu__bar {
    top: 50%;
  }
  
  .hamburger-menu--open .hamburger-menu__bar:first-child {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
  }
  
  .hamburger-menu--open .hamburger-menu__bar:last-child {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  }
  
  .hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
    display: none;
  }
  
  /* Footer Mobile */
  .l-copyright {
    padding: 28px 28px 100px;
    text-align: center;
  }
  
  .l-footer-top {
    right: 15px;
    bottom: 80px;
    width: 60px;
    height: 60px;
  }
  
  /* Bottom-button Mobile */
  .bottom-btn {
    display: flex;
    gap: 30px;
    width: 100%;
    margin: auto;
    position: fixed;
    bottom: 0;
    background: #fff;
    padding: 0 40px;
    box-sizing: border-box;
    z-index: 10;
    box-shadow: 0 3px 6px rgba(0,0,0,.16);
  }
  
  /* Main Visual Mobile */
  .hero-section {
    flex-direction: column-reverse;
    height: auto;
  }
  .header-container {
    margin-top: 130px;
  }
  .hero-content {
    top: -90px;
    width: 80%;
    padding: 20px;
  }
  .hero-title {
    font-size: 20px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .hero-image img {
    object-fit: cover;
    height: 500px;
  }
  .stats-overlay {
    min-height: 0px;
    padding: 40px 20px;
  }
  .stats-text {
    font-size: 20px;
  }

  /* problem */
  .problem {
    height: auto;
  }
  .problem-inner {
    padding: 30px 0;
  }
  .problem-inner h3 {
    font-size: 18px;
  }

  .problem-inner p {
    font-size: 14px;
  }

  /* voice&review*/
  .voice {
      padding: 20px 0;
    }

    .voice-lead h2 {
      font-size: 1.8rem;
      margin-bottom: 25px;
    }

    .voice-lead p {
      font-size: 1rem;
    }

    .voice-cards, .review-cards {
      flex-direction: column;
      gap: 25px;
      align-items: normal;
    }

    .voice-card, .review-card {
      min-height: auto;
    }

    .voice-result, .review-result {
      padding: 15px;
      margin: 0;
    }

    .review .c-center {
      padding: 30px 15px 15px;
    }
  
  /* Reason Mobile */
  .reason {
    padding-top: 0;
  }
  
  .reason .lead {
    margin-bottom: 70px;
  }
  
  .reason-step {
    display: block;
    margin-bottom: 35px;
  }
  
  .reason-step .info {
    padding: 20px 20px 10px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    width: 100%;
    box-sizing: border-box;
  }
  
  .reason-step .info .num {
    font-size: 40px;
    line-height: 1.2;
    width: 60px;
    position: relative;
    top: -5px;
  }
  
  .reason-step .info .title {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  
  .reason-step .thum {
    width: 81.25vw;
    margin-left: calc(50% - 50vw);
  }
  
  .reason-step .thum:before {
    left: 0;
    top: 10vw;
    width: 86.25vw;
    height: 49vw;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  
  .reason-step.second {
    flex-direction: row-reverse;
  }
  
  .reason-step.second .thum {
    margin-left: auto;
    margin-right: calc(50% - 50vw);
  }
  
  .reason-step.second .info {
    flex: 1;
    padding: 20px 20px 10px;
  }
  
  .reason-step.second .thum:before {
    left: auto;
    right: 0;
    top: 10vw;
    width: 86.25vw;
    height: 49vw;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  
  /* Plan Mobile */
  .plan {
  
  }

  .lineUp-text h3 {
    font-size: 20px;
  }
  
  .model-type ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .model-type ul li {
    width: 45%;
    height: auto;
    padding: 16px;
  }
  
  .model-type ul li h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .table-wrapper {
    overflow-x: auto;
  }
  
  .table-wrapper table {
    font-size: 14px;
    min-width: 800px;
  }
  
  .table-wrapper th {
    padding: 12px 8px;
  }
  
  .table-wrapper td {
    padding: 12px 8px;
  }
  
  .table-wrapper .row-header {
    min-width: 100px;
  }

  .table-container {
    margin-bottom: 50px;
  }
  
  /* Step Single Mobile */
  .step-single {
    padding-top: 30px;
  }
  
  .step-single-inner {
    margin-bottom: 40px;
  }
  
  .step-single-inner__head {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  
  .step-single-inner__head .thum {
    width: 45%;
  }
  
  .step-single-inner__head .txt16 {
    width: 100%;
    line-height: 2;
  }
  
  /* FAQ Mobile */
  .faq .c-center {
    padding: 50px 20px;
  }
  
  .faqArea {
    margin-bottom: 15px;
  }
  
  .voicer-head {
    padding: 15px 40px 15px 15px;
  }
  
  .js-toggle-close a:before {
    width: 18px;
    height: 12px;
    right: 12px;
    top: 28px;
  }
  
  .js-toggle-open a:before {
    width: 18px;
    height: 12px;
    right: 12px;
    top: 28px;
  }
  
  .toggle {
    padding: 5px 15px 20px;
  }
  
  .toggle span {
    margin-right: 10px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 18px;
  }
  
  .toggle p {
    width: calc(100% - 34px);
  }
  
  .voicer-head span {
    margin-right: 10px;
    width: 40px;
    height: 36px;
    line-height: 36px;
    font-size: 18px;
  }
  
  .voicer-head h3 {
    font-size: 16px;
    width: calc(100% - 14px);
  }
  
  /* Button Mobile */
  .c-btn {
    font-size: 18px;
    border-radius: 50px;
    width: 80%;
    max-width: 320px;
    height: 56px;
    line-height: 3;
    margin: 0 auto;
    font-weight: 600;
  }

  .r-btn {
    font-size: 18px;
    width: 80%;
    max-width: 320px;
    height: 56px;
    line-height: 3;
    margin: 0 auto;
    font-weight: 600;
  }

  #r-btn {
    margin-top: 16px;
  }
  
  /* Center Mobile */
  .c-center {
    padding: 30px 15px 50px;
  }
  
  /* Lead Mobile */
  .lead h2 {
    font-size: 20px;
    line-height: 1.4;
  }
  
  .lead h2 span.en {
    font-size: 18px;
    margin-bottom: 6px;
  }
  
  .lead p {
    font-size: 18px;
  }
  
  .lead p img {
    width: 120px;
    margin-right: 4px;
  }
  
  .lead p span {
    font-size: 24px;
    top: 3px;
  }
  
  /* Text Size Mobile */
  .txt16 {
    font-size: 14px;
  }
  
  /* Animation Mobile */
  .sa--sp {
    opacity: 1!important;
    transform: none!important;
  }
  /* foot-cta */
  .foot-cta {
      padding: 60px 0;
    }

    .foot-cta-inner {
      flex-direction: column;
      gap: 40px;
      padding: 0 15px;
    }

    .foot-cta-content {
      text-align: center;
      align-items: stretch;
    }

    .foot-cta-content h2 {
      font-size: 20px;
      line-height: 1.4;
      margin-bottom: 25px;
    }

    .foot-cta-content p {
      font-size: 1rem;
      margin-bottom: 35px;
    }

    .foot-cta-image {
      order: -1;
    }

    .foot-cta-content .c-btn {
      width: auto;
      padding: 10px 70px;
      height: auto;
      line-height: 25px;
    }

  /* ショールームエリアカード追加 202510 start */
  .room {
    padding: 20px 0;
  }
  .room-lead h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  .room-lead p {
    font-size: 1rem;
  }
  .room-cards {
    flex-direction: column;
    gap: 25px;
    align-items: normal;
    padding: 10px;
  }
  .room-card {
    min-height: auto;
  }
  .room-result {
    padding: 15px;
    margin: 0;
  }
  .room-result p {
    margin-bottom: 10px;
    text-align: left;
  }
  /* ショールームエリアカード追加 202510 end */

    /* footer */
  .l-footer {
      padding: 25px 0;
    }

    .l-footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin-bottom: 25px;
    }

    .l-footer-links a {
      margin: 0;
      font-size: 0.9rem;
      width: 45%;
    }

    .l-copyright p {
      font-size: 0.85rem;
    }
  }
@media (max-width: 480px) {
			.foot-cta {
				padding: 50px 0;
			}
      .voice {
				padding: 30px 0;
			}

			.voice-lead h2 {
				font-size: 1.6rem;
			}

			.voice-quote::before {
				width: 30px;
				height: 25px;
				top: -10px;
			}

			.voice-quote p {
				padding-left: 20px;
				font-size: 0.9rem;
			}
		}