/*
Theme Name: furomado
Author: BusinessPress
Author URI: https://businesspress.jp/
Description: BusinessPress ia a simple and beautiful business WordPress theme. You can create a website of corporate, group, freelance and so on.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: businesspress
Tags: one-column, two-columns, right-sidebar, custom-colors, custom-header, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, sticky-post, theme-options, threaded-comments, translation-ready
*/

/* TABLE OF CONTENTS
------------------------------------------------------------
* Global
* Repeatable Patterns
* Layout
* Header
* Menus
* Featured Area
* Content
* Navigations
* Comments
* Widgets
* Footer
* Plugins
* Print
------------------------------------------------------------ */

/* Global
------------------------------------------------------------ */

:root {
    --font-family-jp: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Maru Gothic ProN W4", sans-serif;
    --font-family-en: "Inter", sans-serif;
    --color-format:#00bfff;/*#ff914d*/
}


body html {
    scroll-behavior: smooth;
}

body h1 {
    font-size: 80px;
    display: block;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}


body h2 {
    font-size: 48px;
    display: block;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}

body h3 {
    display: block;
    font-size: 24px;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}

body p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: 600;
    line-height: 1.8;
    font-size: 20px;
}



body{
font-family: var(--font-family-jp);
}


@media (max-width: 767.98px) {
body p {
        font-size: 14px;
}
}

* ロゴのスタイル */ 
.navbar-brand .logo {
    height: 60px;
    max-width: 100px;
}

.navbar-toggler {
    border-color: #ff914d;
}

.navbar-toggler-icon {
    display: inline-block;
    position: relative;
    width: 30px;
    height: 24px; /* アイコンの高さを24pxに設定 */
}

/* ラインのスタイル */
.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 2px; /* ラインの太さを2pxに設定 */
    background-color: var(--color-format); /* ラインの色を水色に指定 */
    left: 0;
}

/* 各ラインの位置を均等に配置 */
.navbar-toggler-icon::before {
    top: 0; /* 最初のラインを上部に配置 */
}

.navbar-toggler-icon span {
    top: 50%; /* 中央のラインをアイコンの中央に配置 */
    transform: translateY(-50%); /* 中央に正確に位置させる */
}

.navbar-toggler-icon::after {
    bottom: 0; /* 最後のラインを下部に配置 */
}

/* ナビゲーション全体のスタイル */
.custom-header {
    background-color: white;
    padding: 10px 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
    color: black;
}

.navbar-nav {
    display: flex;
    align-items: center;
    white-space: nowrap; /* 折り返しを防ぐ */
    flex-wrap: nowrap; /* 要素が折り返されないようにする */
}

.navbar-nav .nav-item {
    margin-right: 10px; /* 各nav-itemの間隔を統一 */
}

.navbar-nav .nav-link {
    padding: 10px 10px; /* リンク要素の余白を統一 */
    display: inline-block; /* すべてのリンクを同じ配置に */
    text-align: center; /* テキストを中央に配置 */
    font-weight: bold;
    color: black;
}

.navbar-nav .nav-link:hover {
    background-color: #f0f0f0;
    border-radius: 5px;
}

.navbar-nav.ml-auto {
    margin-left: auto;
}

/* Careersリンクのスタイル */
.careers-link .nav-link {
    background-color: black;
    color: white;
    padding: 8px 10px; /* パディングを調整して幅を狭く */
    border-radius: 5px;
    font-weight: bold;
}

.contact-link .nav-link {
    background-color: var(--color-format);
    color: white;
    padding: 8px 10px; /* パディングを調整して幅を狭く */
    border-radius: 5px;
    margin-left: 10px;
    font-weight: bold;
}

.careers-link .nav-link:hover,
.contact-link .nav-link:hover {
    opacity: 0.8;
}
/* ハンバーガーメニュー展開時に各li要素に上下余白を追加 */
@media (max-width: 767.98px) {

    .navbar-nav .nav-item {
        margin: 0; /* 各ナビゲーションアイテムのマージンを削除 */
    }

    .navbar {
        margin: 0! important;
        padding: 0 !important;
    }

    .navbar-collapse.show .nav-item {
        margin: 15px 0; /* 各li要素の上下に余白を追加 */
    }

    .navbar-collapse.show .nav-link {
        padding: 10px 15px; /* 各リンクに上下のパディングを追加 */
        font-size: 18px; /* フォントサイズを少し小さく */
        text-align: center; /* リンクを中央揃え */
    }

    .navbar-brand {
        display: none;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 30px;
    }

    .navbar-toggler {
        margin-left: auto; /* ハンバーガーメニューを右寄せ */
        display: flex;
        justify-content: flex-end;
        padding: 0px !important;

    }

    .navbar-brand img {
        max-width:70px; /* ロゴの大きさを調整 */
        height: auto;
    }

    .custom-header {
        padding: 10px 15px; /* スマホ用に少し余白を調整 */
padding-top: 0; /* 上部のパディングを0に設定 */
    }
}



/* ハンバーガーメニュー */
.navbar-toggler {
    background-color: transparent;
    border: none;
}


/* ヒーロービデオ */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* ヒーローコンテンツ */
.hero-content {
    position: absolute;
    top: 40%; /* 真ん中に配置 */
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ヒーローセクションの高さ */
.custom-hero {
    position: relative;
    height: 100vh; /* 画面全体にフィット */
    margin-bottom: 100px; /* 次のセクションとの間に余白を追加 */
}

/* カルーセルセクションに余白を追加 */
#newsSection {
    margin-top: 100px; /* 余白を追加してヒーローセクションと離す */
}

/* テキストスタイル */
.hero-content h1 {
    font-weight: bold;
    font-size: 48px;
    margin: 0;
    max-width: 90vw;
}

/* ロゴスタイル */
.logo {
    width: 90%; /* ロゴのサイズを画面に合わせて調整 */
    height: auto;
    margin-top: 20px;
}

/* スマホ向け調整 */
@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 20px;
    }

    .logo {
        max-width: 50vw;
    }

    .hero-video {
        width: 100vw;
        height: 300px;
        aspect-ratio: 9 / 16; /* 縦長の比率に変更 */
    }

    .custom-hero {
        height: 300px; /* スマホでは高さを画面いっぱいに */
        padding: 0;
        margin-bottom: 0px;
    }

    .line-break {
        display: block;
    }


}


/*-------------------------------------------
Pickup
-------------------------------------------*/
.picktitle {
  margin-top: 40px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}

.news-slider .card {
  border: 1px solid #ddd; /* 薄いグレーのボーダー */
  border-radius: 10px; /* 角を丸める */
  background-color: #f9f9f9; /* 背景を薄いグレーに設定 */
  box-shadow: 0 4px 8px rgba(128, 128, 128, 0.5) , /* 上下左右にクリーム色の影を追加し、透明度を中くらいに */
               0 -4px 8px rgba(245, 245, 220, 0.5),
               4px 0 8px rgba(245, 245, 220, 0.5),
               -4px 0 8px rgba(245, 245, 220, 0.5);
  overflow: hidden; /* 画像がはみ出さないように */
  transition: transform 0.3s ease; /* ホバー時のトランジション */
  margin: 0 15px;
  text-align: center;
}



/* ホバー時のカードの拡大効果 */
.news-slider .card:hover {
  transform: scale(1.05); /* ホバー時に少し拡大 */
}

.news-slider .card-img-top {
  width: 100%;
  height: 200px; /* 固定の高さを設定 */
  object-fit: cover; /* 画像の比率を保ちながら要素を覆う */
  object-position: center; /* 画像の中心を表示 */
  border-bottom: 1px solid #ddd; /* 画像とテキストの区切り線 */
  border-top-left-radius: 10px; /* カードの丸みを引き継ぐ */
  border-top-right-radius: 10px; /* カードの丸みを引き継ぐ */
}

.news-slider .card-body {
  padding: 15px;
  text-align: center;
}

/* スライダーの矢印 */
.slick-prev, .slick-next {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
}

.slick-prev {
  left: -50px; /* 左側の矢印位置 */
}

.slick-track {
  margin-top: 20px;
  margin-bottom: 20px;
}

.slick-next {
  right: -50px; /* 右側の矢印位置 */
}

.slick-prev:hover, .slick-next:hover {
  background-color: #ddd;
}

/* ボタンのスタイル */
.button-container {
    margin-top: 20px;
    margin-bottom: 20px; /* 下にも空白を追加 */
    text-align: center; /* ボタンを中央に配置 */
}

/* ボタンのスタイル */
/* ボタンのスタイル */
.btn {
    margin-top: 20px;
    padding: 30px 60px !important; /* パディングを大きくしてボタン全体を拡大 */
    background-color: var(--color-format) !important; /* 背景色を強制的にオレンジに */
    border-color: var(--color-format) !important; /* ボーダーの色を強制的にオレンジに */
    color: white !important; /* テキストの色を白に強制 */
    text-decoration: none; /* テキストの下線を無効に */
    border-radius: 40px !important;; /* 角を丸める */
    font-size: 24px !important; /* 文字サイズを大きくする */
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e67e2c !important; /* ホバー時の背景色を強制的に変更 */
    border-color: #e67e2c !important; /* ホバー時のボーダー色を強制的に変更 */
}


@media (min-width: 1024px) {
  .news-slider .slick-slide {
    max-width: 33.33%; /* 1024px以上では3枚表示 */
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .news-slider .slick-slide {
    max-width: 50%; /* 768pxから1023.98pxでは2枚表示 */
  }
}

@media (max-width: 767.98px) {
.picktitle {
  margin-top: 0px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}

    .news-slider {
        overflow: hidden; /* はみ出し防止 */
    }

    .news-slider .slick-slide {
        max-width: 100%; /* スライドを100%幅に設定 */
    }
}



/* ミッションセクション */
.custom-mission-section {
    background-color: var(--color-format); /* 背景色をオレンジ色に設定 */
    padding: 60px 0;
    color: white; /* セクション内のすべてのテキストを白色に設定 */
}

.custom-mission-section h1,
.custom-mission-section h2,
.custom-mission-section p,
.custom-mission-section ul li {
    color: white; /* 個別に指定したい場合の例 */
}

.custom-mission-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
}

.custom-mission-left {
    flex: 1;
    text-align: left;
}

.custom-mission-right {
    flex: 2;
    text-align: left;
}

.custom-section-title {

    font-weight: bold;
    margin-bottom: 20px;
}

.custom-mission-subtitle {
    font-weight: bold;
    margin-bottom: 20px;
}

.custom-mission-description {
 
    margin-bottom: 20px;
}

/* 767.98px以下の画面に対するスタイル */
@media (max-width: 767.98px) {

    .custom-section-title {

text-align: center;
}

.custom-mission-subtitle {
   
    
text-align: center;
}
 
}


/* カスタムセクション */
.custom-what-section {
    background-color: #fff;
    padding: 60px 0;
}

.custom-what-section .row {
    display: flex;
    align-items: center;
    flex-wrap: nowrap; /* 改行を防止 */
}

.custom-what-subtitle {

    font-weight: bold;
    margin-bottom: 20px;
}

.what-description {

    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* 画像に適用されるスタイル */
#what .img-fluid {
    width: 100%;
    height: auto;
    border-radius: 15px; /* 画像の角を丸くする */
}

/* 768px以上1023.98px以下の画面に対するスタイル */
@media (min-width: 768px) and (max-width: 1023.98px) {
    .custom-what-section .row {
        flex-direction: row; /* 横並びを維持 */
        flex-wrap: wrap; /* 必要に応じて折り返し */
    }



    .what-description {
        font-size: 16px; /* テキストサイズを少し小さく */
    }

    #what .img-fluid {
        width: 100%;
        height: auto;
    }
}
/* デフォルトでは改行しない */
.custom-what-subtitle .line-break {
    display: inline;
}

/* 767.98px以下の画面に対するスタイル */
@media (max-width: 767.98px) {
    .custom-what-section .row {
        flex-direction: column-reverse; /* 画像を下、テキストを上に */
        align-items: flex-start; /* 左寄せに調整 */
    }
    .custom-what-subtitle .line-break {
        display: block;
    }

    .col-sm-12 {
        flex: 1;
        width: 100%; /* 幅を100%に */
    }

    /* h2(Mission) を画像の前に表示 */
    .custom-what-section h2 {
        margin-bottom: 20px;
        text-align: center;
    }


    .what-description {
        font-size: 14px; /* テキストサイズをさらに縮小 */
    }

    #what .img-fluid {
        margin-bottom: 20px; /* 画像の下に余白を追加 */
    }
}




/* POINTセクション用のCSS */
.custom-point-section {
    background-color: #f5f5f5;
    padding: 60px 0;
    text-align: center;
}

.custom-point-title {
  
    margin-bottom: 20px;
    font-weight: bold;
}

.custom-point-lead-text {

    color: #333;
    margin-bottom: 40px;
}

.custom-point-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 60px;
    text-align: left;
    height: 670px; /* 高さを統一 */
}

.custom-point-card img {
    width: 100%; /* カード内の幅に合わせて100%表示 */
    height: 270px; /* 高さを統一 */
    object-fit: cover; /* アスペクト比を保ちながら高さに収める */
    border-radius: 15px; /* カードに合わせて画像も丸みをつける */
}

.custom-point-title3 h3{
   
    margin-bottom: 15px;
    font-weight: bold;
}

.custom-point-description {
        color: #666;
}


/* 768px以上1023.98px以下 */
@media (min-width: 768px) and (max-width: 1023.98px) {

    .custom-point-lead-text {
        font-size: 18px; /* リードテキストのフォントサイズを縮小 */
    }

    .custom-point-card {
        padding: 15px; /* カード内のパディングを縮小 */
    }

    .custom-point-description {

        line-height: 1.5; /* 行間を少し狭く */
    }
}

/* 767.98px以下 */
@media (max-width: 767.98px) {

    .custom-point-lead-text {
        font-size: 16px; /* リードテキストのフォントサイズをさらに縮小 */
    }

    .custom-point-card {
        padding: 10px; /* カード内のパディングをさらに縮小 */
        margin-bottom: 30px; /* カード同士の間隔も縮小 */
        height: auto; /* 高さを統一 */
    }

}

/********************/
/* サービスポイントセクション用のCSS */
.servicepoint {
    padding: 60px 0;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.servicepoint-section-title {

    font-weight: bold;

    text-align: center;
    padding: 60px 60px 0px 60px;
}

.servicepoint-section-title2 {
  
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--color-format); /* オレンジ色に変更 */
}




.container {
    width: calc(100% - 100px);
    max-width: 1200px; /* 必要に応じて調整可能 */
    margin: 0 500px; /* コンテンツを中央揃え */
    padding: 0 20px; /* 両サイドに余白を追加 */
}

.servicepoint-card {
    display: flex;
    flex-direction: row;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    padding: 20px;
    margin-top: 30px;
    margin-bottom: 50px;
    align-items: center;
    width: 100%; /* containerまで広げる */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 300px;
}

.servicepoint-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.servicepoint-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;


}

.servicepoint-image {
    width: 40%;
    max-width: 250px; /* 最大幅を設定して大きくなりすぎないように */
    border-radius:15px;
    margin-right: 20px;
}

.servicepoint-text {
    flex: 1;
    text-align: left;

    font-weight: bold;
    color: #333;
}

.servicepoint-text h3 {

    margin-bottom: 10px;
}

.servicepoint-text p {

    color: #666;
}


/* 768px以上1023.98px以下のタブレット向けレスポンシブデザイン */
@media (min-width: 768px) and (max-width: 1023.98px) {
    /* コンテナの幅と余白を調整 */
    .container {
        max-width: 100%;
        padding: 0 15px;
    }

.servicepoint-content {
 display: block; /* フレックスをオフに */
}

    /* サービスポイントカードの配置変更 */
    .servicepoint-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        height: auto; /* 高さを可変に */
    }

    /* 画像の幅と余白を調整 */
    .servicepoint-image {
        width: 100%; /* カード幅いっぱいに設定 */
        max-width: none; /* 最大幅制限を解除 */
        margin-bottom: 15px; /* 画像とテキスト間に余白追加 */
    }

    /* テキストを中央揃えに */
    .servicepoint-text {
        text-align: center; /* 中央揃え */
    }

    /* セクションタイトルの余白を調整 */
    .servicepoint-section-title {
        padding: 40px 40px 0 40px; /* 余白を減らして見やすく */
    }
}


/* 767.98px以下のスマホ向けレスポンシブデザイン */
/* 767.98px以下のスマホ向けレスポンシブデザイン */
@media (max-width: 767.98px) {


    .servicepoint-content {
        display: flex;
        flex-direction: column; /* 要素を縦並びにする */
        align-items: center; /* 中央揃え */
        justify-content: center;
        width: 100%;
    }

    .servicepoint-card {
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .servicepoint-image {
        width: 100%; /* 画像をカード全体の幅に合わせる */
        height: auto; /* 高さも自動調整 */
        margin-bottom: 10px; /* 画像とテキストの間に余白 */
    }

    .servicepoint-text {
        text-align: center;
        font-size: 16px;
        word-wrap: break-word; /* 長い単語を折り返し */
    }
}




/* 配信イメージのセクションスタイル */
.section {
    padding: 40px 0;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.section .row {
    justify-content: center;
    align-items: center;
}

.section img {
    max-width: 100%;
    height: auto;
}

.section p {
    font-size: 20px;
    margin-top: 10px;
}

.section .col-md-1 p {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0;
    line-height: 100px; /* 矢印を縦に中央揃え */
}

.text-center p {
    margin-bottom: 0;
    font-weight: bold;
}

.text-center.mt-3 {
    font-size: 18px;
    font-weight: bold;
    color: #e74c3c;
}


/* セクション全体のスタイル */
#配信設置イメージ {
    background-color: #f5f5f5;
    padding: 40px 0;
}

.section-flow-title {
    padding: 60px ;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

/* 画像やテキストの中央揃え */
.text-center {
    text-align: center;
}

.font-weight-bold {
    font-weight: bold;
    font-size: 20px;
}

/* 矢印のスタイル */
.arrow {
    font-size: 36px;
    color: var(--color-format); /* オレンジ色の矢印 */
    margin: 0;
    line-height: 100px;
}

/* テキストのスタイル */
.text-red {
    color: #e74c3c;
    font-size: 20px;
}

/* 画像のスタイル */
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
        align-items: center;
    }

    .arrow {
        font-size: 24px; /* 小さい画面では矢印を小さく */
         transform: rotate(90deg); /* 矢印を下向きにするために90度回転 */
    }
}


/* セクション全体のスタイル */
#setupimage {

    padding: 40px 0;
}

#setupimage .section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

#setupimage .text-center {
    text-align: center;
}

#setupimage .font-weight-bold {
    font-weight: bold;
}

/* テキストのスタイル */
#setupimage .text-red {
    color: #e74c3c;
    font-size: 20px;
}

#setupimage .img-fluid {
    width: 100%;
    max-width: 400px; /* 最大幅を固定 */
    height: 250px; /* 高さを固定 */
    object-fit: cover; /* 画像をトリミングしてアスペクト比を保つ */
    object-position: center; /* 画像の中心を表示 */
    margin-bottom: 20px;
    margin-top: 40px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    #setupimage .row {
        margin-left: 0; /* rowのマイナスマージンをリセット */
        margin-right: 0; /* rowのマイナスマージンをリセット */
        flex-direction: column; /* 画像を縦並びに */
    }

    #setupimage .col-md-5, #setupimage .col-md-4 {
        width: 100%; /* 小さい画面では100%幅に */
    }

}



/* お問い合わせセクション */
.custom-contact-section {
    background-color: #f8f9fa; /* 背景色を設定 */
    padding: 60px 0; /* 上下に余白を追加 */
}

.contact-title {
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.contact-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    text-align: center;
}


.btn-success {
    background-color: var(--color-format) !important; /* 背景色を強制的にオレンジに */
    border-color: var(--color-format) !important; /* ボーダーの色を強制的にオレンジに */
}

.btn-success:hover {
    background-color: #e67e2c !important; /* ホバー時の背景色を強制的に */
    border-color: #e67e2c !important; /* ホバー時のボーダー色を強制的に */
}

/* FAQセクションのスタイル */
/* FAQセクションのスタイル */
.faq-section {
    background-color: var(--color-format);
    padding: 40px 20px; /* パディングを追加して調整 */
}

.faq-title {
    text-align: center;
    color: white;
    margin-bottom: 30px;
    font-weight: bold;
    padding-bottom: 20px; /* タイトルにパディング追加 */
    font-size: 48px;
    margin-bottom: 20px;

}

/* アコーディオンスタイル */
.qa-7 {
    max-width: 100%; /* コンテナ幅いっぱいに */
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 2%), 0 2px 3px -2px rgba(0 0 0 / 5%);
    background-color: #fff;
}

.qa-7 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    font-weight: 600;
    font-size: 20px; /* Qのフォントサイズを少し大きく */
    cursor: pointer;
}

.qa-7 summary::before,
.qa-7 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 20px;
}

.qa-7 summary::before {
    color: #75bbff;
    content: "Q";
}

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

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

.qa-7 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    font-weight: 600; /* AのフォントもQに合わせる */
    font-size: 20px; /* AのフォントサイズをQに合わせる */
    transition: transform .5s, opacity .5s;
}

.qa-7[open] p {
    transform: none;
    opacity: 1;
}

.qa-7 p::before {
    color: #ff8d8d;
    line-height: 1.2;
    content: "A";
}


/* 会社情報セクション */
/* 会社情報セクション */
#company {
    background-color: #ffffff;
    padding: 60px 0; /* セクションの上下のパディング */
}

#company .section-title-Company { /* クラス名を一致させる */
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

#company .company-info {
    max-width: 900px;
    margin: 0 auto;
}

#company .info-row {
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
    border-bottom: 1px solid #e0e0e0;
}

#company .info-row dt {
    font-weight: bold;
    color: #555;
    flex: 1;
    text-align: left;
    font-size: 20px;
}

#company .info-row dd {
    flex: 2;
    color: #333;
    text-align: left;
    margin: 0;
    padding-left: 30px;

    font-weight: bold;
}


/*footer*/

/* 共通スタイル */
.custom-footer {
    padding: 20px 0;
    text-align: center;
}

.custom-footer .list-inline {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    padding-left: 0;
    gap: 30px;
}

.custom-footer .list-inline-item {
    margin: 0 15px;
    flex: none;
    text-align: center;
}

.list-inline-item a {
    font-size: 20px;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.list-inline-item a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

p.text-center {
    font-size: 12px;
    margin-top: 15px;
    text-align: center;
}

/* 768px 以上 1023.98px 以下のスタイル */
@media (min-width: 768px) and (max-width: 1023.98px) {
    .custom-footer {
        padding: 20px 0;
    }

    .custom-footer .list-inline {
        flex-wrap: wrap; /* リストを複数行に表示 */
        gap: 20px;
    }

    .list-inline-item {
        margin: 10px 0; /* リンクアイテムのスペースを調整 */
    }

    .list-inline-item a {
        font-size: 18px; /* フォントサイズを調整 */
        padding: 8px 16px;
    }

    p.text-center {
        font-size: 12px;
    }
}

/* 767.98px 以下のスタイル */
@media (max-width: 767.98px) {
    .custom-footer .list-inline {
        display: none; /* リンクリストを非表示 */
    }

    p.text-center {
        font-size: 14px; /* フォントサイズを少し大きく */
        margin-top: 20px;
    }
}


/**************/

/* ニュース記事のスタイル */
.single-news-container {
    margin-top: 50px;
    margin-bottom: 50px;
}

.news-header {
    text-align: center;
    margin-bottom: 30px;
}

.single-news-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--color-format);
}

.news-meta {
    font-size: 0.9rem;
    color: #666;
}

.single-news-thumbnail {
    margin-bottom: 30px;
}

.single-news-thumbnail img {
    width: 100%;
    object-fit: cover;
}

.news-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
}

.news-categories, .news-tags {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

.news-comments {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .single-news-title {
        font-size: 2rem;
    }
}

/*achieve*/
.archive-news-container {
    margin-top: 50px;
    margin-bottom: 50px;
}

.archive-header {
    text-align: center;
    margin-bottom: 40px;
}

.archive-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.archive-description {
    font-size: 1.2rem;
    color: #666;
}

.archive-news-item {
    margin-bottom: 40px;
}

.archive-news-thumbnail {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px; /* 固定の高さを指定 */
}

.archive-news-thumbnail.h-100, .archive-news-thumbnail.h-100 img {
    height: 200px !important;  /* 強制的に高さを200pxに固定 */
    object-fit: cover !important;  /* 画像がコンテナにフィットするように調整 */
}

.archive-news-thumbnail img {
    min-height: 100% !important;  /* 最小の高さを100%に設定 */
    width: auto !important;  /* 幅は自動で調整 */
    min-width: 100% !important;  /* 最小の幅を100%に設定 */
    object-fit: cover !important;  /* 画像がコンテナの高さにフィットし、はみ出た部分をトリミング */
}


.archive-news-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.news-date {
    font-size: 0.9rem;
    color: #999;
}

.pagination {
    text-align: center;
    margin-top: 40px;
}

.card-link {
    text-decoration: none;
    color: inherit;
}

.card-link:hover {
    text-decoration: none;
    color: inherit;
}

.archive-news-item.card {
    transition: transform 0.2s ease-in-out;
    border-radius: 15px;
    margin-bottom: 15px;
}

.archive-news-item.card:hover {
    transform: translateY(-5px);
}

.pagination {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
}

.pagination a {
    border-radius: 5px;
    padding: 10px 15px;
    margin: 0 5px;
    background-color: #007bff;  /* 明るい青色 */
    color: white;  /* 白色のテキスト */
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.pagination a:hover {
    background-color: #0056b3;  /* より濃い青色 */
    color: white;
}

/* 現在のページのスタイリング */
.pagination .current {
    background-color: #004080;  /* さらに濃い青色 */
    color: white;
    pointer-events: none;
}

/* 禁止状態のページネーションリンクのスタイリング */
.pagination .disabled {
    color: #ccc;  /* 灰色で非活性表示 */
    pointer-events: none;
}

/* ページネーションリンクのアクティブ状態のスタイリング */
.pagination a.active {
    background-color: #28a745;  /* 緑色 */
    color: white;
}



/*つい十*/
.floating-banner {
    width: calc(100% / 2);
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 9999;
    transition: 0.3s;
    cursor: pointer;
}
.floating-banner:hover {
    opacity: 0.8;
}
.floating-banner a {
    text-decoration: none;
    color: #ffffff;
}
.floating-banner_body {
    background: rgb(2, 0, 36);
    background: linear-gradient(0deg, rgba(2, 0, 36, 1) 0%, rgba(0, 212, 255, 1) 0%, rgba(104, 104, 193, 1) 100%);
    height: 100px;
    padding: 16px 8px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
}
.campaign {
    font-size: 14px;
    font-weight: 700;
}
.more {
    border-radius: 30px;
    background: rgb(2, 0, 36);
    background: linear-gradient(0deg, rgba(2, 0, 36, 1) 0%, rgba(208, 29, 124, 1) 0%, rgba(255, 0, 49, 1) 100%);
    font-weight: 700;
    font-size: 14px;
    margin: 0 auto;
    padding: 8px;
}
@media screen and (min-width: 481px) {
    .floating-banner {
        width: calc(100% / 6);
    }
    .floating-banner_body {
        height: 150px;
    }
    .campaign {
        font-size: 20px;
    }
    .more {
        font-size: 20px;
    }
}