@charset "utf-8";

/*  
    =====================
    Base styles - 基本スタイル設定
    =====================
*/

/* 
  基本的なボディスタイル
  - フォントファミリーの設定
  - テキストカラーの設定
  - 横スクロール防止
*/
body {
  color: #0c0c17;
  overflow-x: hidden;
  font: 300 14px/21px 'Open Sans', sans-serif, Helvetica, Arial, sans-serif, "Hiragino Kaku Gothic ProN", Meiryo, ;
}

.row{
    justify-content: center;
}


/* 
 MV (Main Visual) セクション
 -------------------------
 ホームページのメインビジュアル背景画像設定
*/
.home-bg01 {
  background-image: url(../img/parts/MV1.jpg);
}

.home-bg02 {
  background-image: url(../img/parts/MV2.jpg);
}

.home-bg03 {
  background-image: url(../img/parts/MV3.jpg);
}

.home-bg04 {
  background-image: url(../img/parts/MV4.jpg);
}

/* 
 ニュースセクション
 -------------------------
 ニュース一覧の背景色と余白設定
*/
.news-section {
  background: #f5f5fa;
}

/* ニュース記事の上部余白設定 */
.news_section_news p {
  margin-top: 30px;
}

/* 
 メッセージセクション
 -------------------------
 会社メッセージ部分の背景設定
*/
.messege-sction-bg {
  background-repeat: no-repeat;
  background-size: cover;
}

/* Retinaディスプレイ対応の背景画像設定 */
.retina-support .messege-sction-bg {
  background-image: url('../img/parts/MV1.jpg');
}

/* レスポンシブ対応: 320px以上の画面用 */
@media only screen and (min-device-width: 320px) {
  .retina-support .messege-sction-bg {
    background-image: url('../img/parts/MV1.jpg');
  }
}

/* Retina対応: 高解像度ディスプレイ用 */
@media only screen and (min-device-width: 320px) and (-webkit-min-device-pixel-ratio: 2.4),
(min--moz-device-pixel-ratio: 2.4),
(-webkit-min-device-pixel-ratio: 2.4),
(min-resolution: 2.4dppx) {
  .retina-support .messege-sction-bg {
    background-image: url("../img/parts/MV1.jpg");
  }
}

/* 大画面デバイス用の背景画像設定 */
@media only screen and (min-device-width: 1200px) {
  .retina-support .messege-sction-bg {
    background-image: url("../img/parts/MV1.jpg");
  }
}

/* 大画面Retina対応 */
@media only screen and (min-device-width: 1200px) and (-webkit-min-device-pixel-ratio: 1.5),
(min--moz-device-pixel-ratio: 1.5),
(-webkit-min-device-pixel-ratio: 1.5),
(min-resolution: 1.5dppx) {
  .retina-support .messege-sction-bg {
    background-image: url("../img/parts/MV1.jpg");
  }
}

/* テスティモニアル（お客様の声）セクションのスタイル */
.testimo-item blockquote p {
  margin-bottom: 30px;
  font-family: 'Lato', sans-serif;
  line-height: 2;
  font-size: 14px !important;
}

/* メッセージテキストのスタイル - 初期状態は非表示 */
.testimo-item .messege_text {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
}

/* 
 お問い合わせフォーム
 -------------------------
*/
/* フォーム全体の余白設定 */
form#mail_form {
  margin: 0px auto 50px auto !important;
}

/* 送信ボタンの配置 */
form#mail_form input#form_submit_button {
  margin-left: 40%;
}

/* グリッドシステムのオフセット調整 */
.col-md-offset-1 {
  margin-left: 3%;
}

/* 
 会社概要セクション
 -------------------------
*/
/* 会社概要の見出しスタイル */
.campany-section dl dt {
  color: #00b2ca;
  font-size: 15px;
}

/* 会社概要の説明文スタイル */
.campany-section dl dd {
  margin-bottom: 10px;
}

/* 
 フッターセクション
 -------------------------
*/
/* フッターロゴの余白設定 */
.footer-section .footer-logo {
  margin-bottom: 30px;
}

/* フッターテキストの定 */
.footer-bottom-text,
.companyAddress {
  color: #FEFEFE !important;
}

.footer-bottom-text {
  padding: 0 0;
}

/* フッター下部の背景と余白 */
.footer-bottom {
  padding: 10px !important;
  background: #171724 !important;
}

/* Logo and Link Styling */
.footer-logo {
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}

.footer-links a {
  display: inline-block;
  text-align: center;
}

.footer-links a p {
  margin: 0;
  display: inline-block;
}

@media (min-width: 768px) {
  .footer-links {
    flex-direction: row;
    gap: 0px;
    margin: 0 100px;
  }
}

@media (max-width: 767px) {
  .footer-links {
    flex-direction: column;
    gap: 15px;
    /* Space between links */
  }

  .footer-links a {
    width: 100%;
  }
}

/* デコレーション要素のボーダー設定 */
.square span {
  border-top: 1px solid #FEFEFE !important;
  border-left: 1px solid #FEFEFE !important;
}

/* フッター会社の上マージン */
.companyAddress.textCenter {
  margin-top: 20px;
}

/* セクションタイトルのパディングボトム */
.section-title {
  padding-bottom: 30px;
}



/*
 反社会��勢力排除宣言のページ
 -------------------------
*/

/* 反社会的勢力排除宣言背景の色 */
#page {
  background-color: #f5f5fa !important;
}

/* テキスト配置用ユーティリティクラス */
.textCenter {
  text-align: center;
}

.textRight {
  text-align: right;
}

.linkLeft {
  text-align: left;
}

/* レスポンシブ調整: タブレット以下 */
@media (max-width: 991px) {
  .section {
    padding-top: 40px !important;
    padding-bottom: 30px !important;
  }
}

/* 反社会的勢力排除宣言ページのスタイル */
#anti-social-declaration {
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

#anti-social-declaration header {
  background-color: #fff;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#anti-social-declaration h1 {
  margin: 0;
  font-size: 1.8rem;
  color: #1a1a1a;
  text-align: center;
}

#anti-social-declaration main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#anti-social-declaration h2 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e0e0e0;
  color: #1a1a1a;
}

#anti-social-declaration p {
  margin-bottom: 1.5rem;
}

#anti-social-declaration ul {
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

#anti-social-declaration li {
  margin-bottom: 1rem;
}

#anti-social-declaration section p:last-child {
  text-align: right;
  margin-top: 3rem;
  line-height: 2;
}

/* レスポンシブ調整: スマートフォン */
@media (max-width: 767px) {

  /* 左右テキストを中央寄せに変更 */
  .textRight {
    text-align: center !important;
  }

  .textLeft {
    text-align: center !important;
  }

  /* 段落の余白調整 */
  p {
    margin: 0 0 11px;
  }

  /* お問い合わせフォーム */
  form#mail_form input#form_submit_button {
    margin-left: 55%;
  }

  #anti-social-declaration main {
    margin: 1rem;
    padding: 1.5rem;
  }

  #anti-social-declaration h1 {
    font-size: 1.5rem;
  }

  #anti-social-declaration h2 {
    font-size: 1.3rem;
  }
}



/* 
 反社会的勢力排除宣言ページ
 -------------------------
 */
.declaration-section {
  padding: 80px 0;
  background-color: #f5f5fa;
}


.declaration-section .section-title h1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #00b2ca;
}

.declaration-section .section-title-more {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #0c0c17;
}

.declaration-content {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.declaration-content .lead {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #333;
}

.declaration-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.declaration-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
}

.declaration-list li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: #00b2ca;
}

.declaration-signature {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
}

.declaration-signature p {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

.declaration-index-link {
  position: relative;
  margin-top: 20px;
  bottom: 10px;
  left: 0px;
}

.top-link-text {
  color: #007bff;
  text-decoration: none;
  cursor: pointer;
}

.top-link-text:hover {
  text-decoration: underline;
}

.fa-check-circle {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #FFF;
  color: #00b2ca;
  text-align: center;
  line-height: 20px;
  font-style: normal;
  font-size: 14px;
  font-weight: bold;
}


/* レスポンシブ対応 */
@media (max-width: 767px) {
  .declaration-section {
    padding: 40px 0;
  }

  .declaration-section .section-title h1 {
    font-size: 20px;
  }

  .declaration-section .section-title-more {
    font-size: 24px;
    letter-spacing: .2em;
  }

  .declaration-content {
    padding: 20px;
  }
}

/* 
 プライバシーポリシーページ
 -------------------------
 */
#privacy-section {
  padding: 80px 0;
}

.privacy-section {
  padding: 10px 0;
}

.privacy-section .section-title h1 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #00b2ca;
}


.privacy-section .section-title-more {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #0c0c17;
  letter-spacing: .2em;
}

.section-title-more {
  font-size: 12px;
}

.privacy-section:first-child {
  padding-top: 0;
}

.privacy-section h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #00b2ca;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}

.policy-section{
  margin-top: 40px;
}

.privacy-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 30px 0 5px;
  color: #333;
}

.privacy-content {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.privacy-content .lead {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #333;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.privacy-list,
.privacy-list .second,
.privacy-list .third {
    text-align: left; /* 左揃え */
}

.privacy-list li {
    position: relative;
    margin-bottom: 10px;
    margin-left: 15px; /* 左のマージンを調整 */
    font-size: 14px;
    line-height: 1.6;
    list-style-type: decimal; /* 番号付きリスト */
}

.privacy-list ul.second li{
  list-style-type: lower-alpha;
}

.privacy-list  ul.third li{
  list-style-type: disc;
}

.privacy-numbered-list {
  padding-left: 20px;
  margin-bottom: 30px;
}

.privacy-numbered-list li {
  margin-bottom: 20px;
}

.privacy-numbered-list strong {
  display: block;
  color: #333;
  margin-bottom: 5px;
}

.privacy-numbered-list ul {
  list-style: none;
  padding-left: 20px;
  margin: 10px 0;
}

.privacy-numbered-list ul li {
  margin-bottom: 10px;
  position: relative;
}


.privacy-index-link {
  position: relative;
  margin-top: 20px;
  bottom: 10px;
  left: 0px;
}

.privacy-index-link .top-link-text {
  color: #007bff;
  text-decoration: none;
  cursor: pointer;
}

.privacy-index-link .top-link-text:hover {
  text-decoration: underline;
}

.privacy-policy-content li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: #00b2ca;
}

.sp {
  display: none;
}

.pc {
  display: block;
}


/***********  レスポンシブ対応  ************/
@media (max-width: 767px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

  .privacy-section {
    padding: 10px 0;
  }

  .privacy-content {
    padding: 20px;
  }

  .privacy-section h2 {
    font-size: 18px;
  }

  .privacy-section h3 {
    font-size: 16px;
  }

  .privacy-content .lead {
    font-size: 15px;
  }

  .testimo-item blockquote p {
    text-align: left;
    font-size: 14px !important;
  }

  .declaration-section .section-title h1,
  .privacy-section .section-title h1 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #00b2ca;
  }

  .privacy-section{
    margin-bottom: 40px;
  }

  .declaration-section .section-title-more,
  .privacy-section .section-title-more {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #0c0c17;
    letter-spacing: .2em;
  }

  .privacy-list li {
    word-wrap: break-word;
  }

  .col-md-offset-1 {
    margin-left: 0;
  }
}
