@charset "utf-8";

* {
    font-family: "Roboto", "Helvetica Neue", Arial, "Lato", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", "游ゴシック", Meiryo, sans-serif;
}

.up_ymd {
	font-family: 'Roboto', sans-serif;
}


html, body{
    margin:0;
    padding:0;
    overflow-x:hidden!important; /* これを追加 */
}


/* 管理バーを下に移動 */
#wpadminbar {
    top: auto !important;
    bottom: 0;
}

/* WordPressが自動でつける上マージンを打ち消す */
html {
    margin-top: 0 !important;
}

section {
    padding: 70px 0;
}


.indigo {
    color: var(--indigoblue);
}

/***************************************************
page-about　会社概要 .company-outline
***************************************************/
section.company {
    margin: 0 auto;
    width: 92%;
    max-width: 800px;
}

.company-outline {
    border: none;
    margin: 0 auto;
    width: 100%;
    border-collapse: collapse;
}

.company-outline tr {
    border-top: 0.5px solid #333;
    border-bottom: 0.5px solid #333;
}

.company-outline th {
    background-color: #f7f7f7;
    padding: 15px 10px;
    width: 10em;
    text-align: center;
}

.company-outline td {
    padding: 15px 10px 15px 30px;
    width: calc(100% - 10em);
}

.addressBox {
    display: flex;
    flex-wrap: wrap;
    /* gap: 40px; */
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
    justify-content: space-between;
}

.addressBox .inner-map {
    width: calc(100% - 320px);
}

.Google-map {
  position: relative;
  width: 100%;
  padding-bottom: 40%; /* 56.25%が16:9 の比率 */
  height: 0;
  overflow: hidden;
  border-radius: 8px; /* 角丸必要なら */
}

.Google-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/***************************************************
page-contact　お問い合わせ
***************************************************/
.contact-form {
    width: 92%;
    max-width: 960px;
    margin: 0 auto 200px auto;
}

.contact-attention {
    margin: 0px auto 70px auto;
}


/***************************************************
page-service　事業内容 
***************************************************/
h2.service-title {
    width: 10em;
    font-weight: 900;
    font-size: clamp(24px, 5vw, 60px);
    letter-spacing: 0.015em;
    color: rgba(26, 35, 126, 0.4);
    margin-top: 50px;
    margin-bottom: 0px;
    text-transform: uppercase;
}

#service-business .inner-img {
  margin-bottom: 40px;
}

#service-business .inner-img p {
  font-size: 120%;
  font-weight: 700;
}


#strength ul {
    padding-left: 0;
}

#strength ul li {
    list-style-type: none;
    padding-bottom: 30px;
}

#strength ul li div {
        font-size: clamp(20px, 6vw, 26px);
        font-weight: bold;
        margin-bottom: 10px;
        border-bottom: 0.5px solid var(--indigoblue);
}

.strength-num {
    font-family: Roboto;
    font-size: 140%;
    color: var(--indigoblue);
    display: inline-block;
    margin-right: 0.2em;
}


/* FAQ */
.faq-section {
  background: #f5f5f5;
  padding: 60px 0;
}

.faq-inner {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.faq-heading {
  text-align: center;
  font-size: 28px;
  margin-bottom: 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* 各項目 */
.faq-item {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

/* 見出しボタン */
.faq-header {
  width: 100%;
  padding: 24px 24px 24px 28px;
  border: none;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-label {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.faq-label__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--indigoblue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.faq-label__text {
  font-size: 16px;
  font-weight: 700;
}

/* 右側の丸いアイコン（矢印） */
.faq-toggle-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--indigoblue);
  position: relative;
}

.faq-toggle-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 9px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg); /* 閉じた状態：下向き */
  transition: transform 0.2s ease;
}

/* 本文エリア */
.faq-body {
  display: none;
  border-top: 1px solid #eee;
  background: #fafafa;
}

.faq-body__inner {
  padding: 20px 28px 28px;
  line-height: 1.8;
  font-size: 14px;
}

/* Aアイコン付きの回答ブロック */
.faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.faq-answer__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #4a4a4a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* デモボタン */
.faq-demo-btn-wrap {
  text-align: center;
}

.faq-demo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  padding: 16px 32px;
  border-radius: 999px;
  background: var(--indigoblue);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  gap: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.faq-demo-btn:hover {
  transform: translateY(1px);
  box-shadow: 0 3px 10px rgba(0,0,0,.16);
  opacity: 0.95;
}

/* 開いている状態 */
.faq-item.is-open .faq-body {
  display: block;
}

.faq-item.is-open .faq-toggle-icon::before {
  transform: rotate(-135deg); /* 開いた状態：上向き */
}

/* スマホ調整 */
@media (max-width: 768px) {
  .faq-header {
    padding: 18px 16px 18px 18px;
  }
  .faq-body__inner {
    padding: 16px 18px 20px;
  }
}