#logo-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo-video {
    transform: scale(0.5); /* 1.5倍に拡大 */
    object-fit: contain;
}

/* メインコンテンツのスタイル */
#main-content {
    display: none; /* 初めは非表示 */
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ベースのフォント設定 */
body {
    font-family: "Arial", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    padding: 10px;
    max-width: 1440px;
    margin: 0 auto;
}

/* コンテンツの中央揃え */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 見出しのスタイル */
h1 {
    font-size: 24px;
    color: #444;
}
h2{
    font-family: "a-otf-ud-reimin-pr6n", sans-serif;
}

/* メニュー部分 */
header {
    font-family: "a-otf-ud-reimin-pr6n", sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #ffffff;
    color: white;
    height: 120px;
    position: fixed; /* スクロールに追随させる */
    top: 0; /* 画面の上部に固定 */
    left: 0; /* 左端に固定 */
    width: 100%; /* 横幅100% */
    z-index: 1000; /* 他の要素よりも前面に表示 */
}


.logo h1 {
    font-size: 24px;
}

.logo h1 img {
    width: auto;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* モバイル用ロゴ */
.logo-mobile {
    display: none;
    text-align: center;
    padding: 20px 0;
}

/* ナビゲーションの全体設定 */
nav {
    display: flex;
    flex-direction: column; /* ボタンとメニューを縦に並べる */
    align-items: end; /* 中央揃え */
    justify-content: center;
    gap: 20px; /* 各要素間のスペース */
    padding: 20px;
}

/* ボタンコンテナ */
.button-container {
    display: flex;
    justify-content: center; /* ボタンを横並びに */
    gap: 20px; /* ボタン間のスペース */
}

/* 共通のボタンスタイル */
 .nav-button1, .nav-button2 {
    padding: 10px 20px;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    display: flex;  /* アイコンとテキストを横並びに */
    align-items: center; /* アイコンとテキストの垂直方向の配置 */
    transition: background-color 0.3s ease;
    text-decoration: none;
}
.nav-button {
    padding: 10px 20px;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    display: flex;  /* アイコンとテキストを横並びに */
    align-items: center; /* アイコンとテキストの垂直方向の配置 */
    transition: background-color 0.3s ease;
    text-decoration: none;
}

/* ボタン1の背景色 */
.nav-button1 {
    background-color: #00cb42;
}

/* ボタン2の背景色 */
.nav-button2 {
    background-color: #565656;
}
.nav-button1:hover{
    background-color: #1b592f;
}
/* ボタンホバー時の色 */
.nav-button:hover,.nav-button2:hover {
    background-color: #f73e3e;
}

/* アイコンとテキストの間隔 */
.icon {
    margin-right: 8px;  /* アイコンとテキストの間隔 */
}

/* アイコンのサイズ */
.button-icon {
    width: 20px;  /* アイコンの幅 */
    height: 20px;  /* アイコンの高さ */
    margin-right: 8px; /* テキストとの間隔 */
}

/* ナビゲーションメニューの設定 */
nav ul {
    display: flex;
    list-style: none;
    gap: 20px; /* メニューアイテム間のスペース */
}

nav ul li {
    margin-left: 0;
}

/* ナビゲーションメニューのリンク */
nav ul li a {
    position: relative;
    color: rgb(9, 9, 9);
    text-decoration: none;
    font-size: 18px;
    padding: 5px 0; /* クリックしやすいように少し余白を追加 */
    transition: color 0.3s ease-in-out;
}

/* 下線の初期状態（両端を丸く） */
nav ul li a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px; /* 少し下に配置 */
    width: 0;
    height: 4px; /* 少し太めのライン */
    background: linear-gradient(to right, #ff7b00, #f73e3e); /* グラデーション */
    border-radius: 50px; /* 両端を丸くする */
    transition: width 0.4s ease-in-out, left 0.4s ease-in-out, opacity 0.3s;
    opacity: 0;
}

/* ホバー時に下線を表示＆広げる */
nav ul li a:hover::before {
    width: 100%;
    left: 0;
    opacity: 1;
}

/* ホバー時に文字色も変化 */
nav ul li a:hover {
    color: #f73e3e;
}


/* ハンバーガーメニューのスタイル */
.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

/* バーのデフォルトスタイル */
.menu-icon .bar {
    width: 40px;
    height: 3px;
    background-color: #165016;
    margin: 6px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* メニューが開いたときのバツ印 */
.menu-icon.open .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-icon.open .bar:nth-child(2) {
    opacity: 0; /* 真ん中の線を消す */
}

.menu-icon.open .bar:nth-child(3) {
    transform: translateY(-20px) rotate(-45deg);
}

/* ヒーローセクション */
.hero {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: visible; /* 親要素に対してはみ出した部分を表示 */
    margin: 0;
    padding: 0;
    margin-top: 120px; /* ヘッダーの高さと同じだけ余白を取る */
}
.fade-in-section {
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
.fade-in-section.visible {
    opacity: 1;
    transition: opacity 1s ease-in-out;
  }

.hero-images {
    width: 100%;
    height: 100%;
}

.image-grid {
    display: grid;
    grid-template-columns: 20% 1fr 20%; /* 左・中央・右の3列に配置 */
    height: 100%;
    gap: 0;
}

.image-container {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #fff;
}

.vertical-slider {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    animation: slideVertical 10s linear infinite;
}

@keyframes slideVertical {
    0% {
        transform: translateY(0%);
    }
    100% {
        transform: translateY(-50%); /* 画像の半分だけ上にスライド */
    }
}

.grid-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.hero-title-img {
    width: 100%;
    max-width: 600px; /* タイトル画像の最大幅 */
    opacity: 0; /* 初期状態で非表示 */
    transform: translateY(20px); /* 下から少し上がる動き */
    transition: opacity 1s ease-out 4s, transform 1s ease-out 4s; /* 0.5秒遅れてフェードイン */
}

.hero-title-img.visible {
    opacity: 1;
    transform: translateY(0);
}
.hero-subtitle {
    font-size: 2em;
    color: #fff;
    display: block; /* blockでラップ */
    text-align: left; /* 左揃え */
}

.hero-subtitle span {
    display: inline-block; /* inline-blockで横並びに */
    vertical-align: top; /* 上揃え */
}


.hero-subtitle .vertical-text {
    writing-mode: vertical-lr;
}


/* テキストオーバーレイ */
.text-overlay {
    font-family: "a-otf-ud-reimin-pr6n", sans-serif;
    font-weight: 100;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    gap: 25rem;
}
.fade-text span {
    opacity: 0;
    transform: translateY(10px);
    display: inline-block;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}


.hero-title,
.hero-subtitle {
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: #fff;
}

.hero-title-img {
    height: 550px;
    width: auto;
    object-fit: contain;
}

.hero-subtitle {
    font-size: 3rem;
    color: #000;
    white-space: normal;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.hero-subtitle span {
    display: inline-block;
    margin-right: 0px;
    padding-right: 0px;
    position: relative;
}

.hero-subtitle span::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    width: 10px;
    height: 0;  /* 初期状態で高さを0に */
    background-image: linear-gradient(to top, #a7d9ff, #ffa8b3, #d7f7b5, #a7d9ff, #ffa8b3, #d7f7b5, #a7d9ff, #ffa8b3);
    transition: height 3s ease-out 0.5s; /* 0.5秒遅れて開始 */
    z-index: -1;
}

.hero-subtitle.visible span::after {
    height: 100%;
}

/* SNSコンテナ */
.sns {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute; /* スクロールに影響しないよう変更 */
    bottom: -60px;
    right: 20px;
    transform: translateX(-50%); /* 完全に中央に調整 */
    gap: 20px; /* アイコン間のスペース */
    overflow: visible; /* はみ出した部分を表示 */
}


.sns-icon img {
    width: 60px; /* アイコンのサイズ */
    height: auto;
    transition: transform 0.2s ease; /* ホバー時のアニメーション */
}

.sns-icon img:hover {
    transform: scale(1.1); /* ホバー時に少し拡大 */
}

.muryou-icon {
    width: 213px;
    height: 200px;
    background-image: url(images/top/2x/mryou-icon@2x-8.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 0;
    line-height: 1.4;
    border-radius: 10px;
    transition: transform 0.2s ease; /* ホバー時のアニメーション */
    overflow: hidden;
    text-decoration: none;
}

.muryou-icon p {
    margin: 0; /* 余計なマージンを消す */
}

.muryou-icon:hover {
    transform: scale(1.05); /* ホバー時に少し拡大 */
}
/*top-logo*/
.top-logo {
    display: flex; /* 横並びにする */
    align-items: center; /* 縦方向の中央揃え */
    justify-content: center; /* 横方向の中央揃え */
    gap: 100px; /* 各画像の間にスペースを追加 */
    margin: 40px auto;
}

.top-logo img {
    height: auto; /* 高さは自動で調整 */
}

.top-logo img:first-child, .top-logo img:last-child {
    width: 100px; /* 両サイドの画像を小さく */
}

.top-logo img:nth-child(2) {
    width: 35%; /* 真ん中の画像は大きく */
}


/*yoko-slider*/
.yoko-slider {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.yoko-slider img {
    width: auto; /* 画像の幅を自動調整 */
    height: 200px; /* 画像の高さを統一（調整可） */
    display: inline-block;
    animation: scroll 15s linear infinite; /* 15秒でループ（調整可） */
}

@keyframes scroll {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-100%);
    }
}

/* スライダーを2回繰り返して無限ループ風に */
.yoko-slider {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.yoko-slider::before,
.yoko-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.yoko-slider-wrap {
    display: flex;
    width: max-content;
    animation: scroll 15s linear infinite;
}

.yoko-slider-wrap img {
    margin-right: 10px; /* 画像間の余白 */
}

/* aboutasセクション */
.about-title,.blog-title,.schedule-title,.price-title,.qa-title,.contact-title,.company-title,.aboutus-title{
    font-size: 2.5rem;
    color: #6b9e3b;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
    position: relative; /* 擬似要素の基準にする */
    display: inline-block; /* テキストの長さに合わせる */
    padding-bottom: 10px; /* ボーダーとの余白 */
}
.contact-title{
    font-size: 2.5rem;
    color: #436622;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
    position: relative; /* 擬似要素の基準にする */
    display: inline-block; /* テキストの長さに合わせる */
    padding-bottom: 10px; /* ボーダーとの余白 */
}
.contact-area-title{
    font-size: 2.5rem;
    color: #6b9e3b;
    font-weight: bold;
    text-align: left;
    position: relative; /* 擬似要素の基準にする */
    display: inline-block; /* テキストの長さに合わせる */
    padding-bottom: 10px; /* ボーダーとの余白 */
    width: 100%;
    text-align: center;
    margin: 20px auto;
}

.about-title::after,.blog-title::after,.schedule-title::after,.price-title::after,.qa-title::after,.company-title::after,.aboutus-title::after,.contact-title::after{
    content: "";
    position: absolute;
    bottom: 20px;
    left: 50%; /* 左端を中央に */
    width: 105%; /* ボーダーの幅（必要に応じて調整） */
    height: 8px;
    background-color: #ceda00;
    z-index: -1;
    transform: translateX(-50%); /* ボーダー全体を中央に配置 */
}
.contact-area-title::after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 20%;
    height: 8px;
    background-color: #ceda00;
    z-index: -1;
    transform: translateX(-50%);
}



.about-section,.blog,.schedule,.price{
    position: relative;
    margin: 15px auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 0;
}
.qa,.contact{
    position: relative;
    margin: 150px auto 15px auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 0;
    background-image: url(images/qa/2x/qa-bg@2x-8.png);
    background-position: center;
    background-size: cover;
}

.company-page{
    position: relative;
    margin: 150px auto 15px auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 0;
    background-image: url(images/company/2x/company-bg@2x-8.png);
    background-position: center;
    background-size: cover;
}
.aboutus-page{
    position: relative;
    margin: 150px auto 15px auto;
    background-color: #f2f2f2;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 0;
}
.price-page{
    position: relative;
    margin: 150px auto 15px auto;
    background-color: #ffeede;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 0;
}
.schedule-section-page{
     position: relative;
    margin: 150px auto 15px auto;
    background-color: #eeeeee;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 0;
}
.schedule-section{
    position: relative;
    margin: 15px auto;
    background-color: #f2f2f2;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 0;
}
.contact-area {
    position: relative;
    margin: 15px auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 0;
    background-image: url(images/top/contact/2x/アセット\ 14@2x-8.png);
    background-size: cover;
}


.about-section::before {
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    transform: translateX(0%);
    width: 100%;
    height: 40%;
    background-image: url(images/top/aboutoas/2x/aboutoas-parts1@2x-8.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}
.about-section::after{
    content: "";
    position: absolute;
    top: -5%;
    right: 0%;
    transform: translateX(0%);
    width: 100%;
    height: 25%;
    background-image: url(images/top/aboutoas/2x/aboutoas-parts5@2x-8.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    z-index: -1;
}
.schedule-section::after {
    content: "";
    position: absolute;
    top: -5%;
    right: 0%;
    transform: translateX(0%);
    width: 100%;
    height: 25%;
    background-image: url(images/top/aboutoas/2x/aboutoas-parts5@2x-8.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    z-index: -1;
}
.schedule-section-page::after {
    content: "";
    position: absolute;
    top: -5%;
    right: 0%;
    transform: translateX(0%);
    width: 100%;
    height: 25%;
    background-image: url(images/top/aboutoas/2x/aboutoas-parts5@2x-8.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    z-index: -1;
}


/* 全体レイアウト */
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* 最初のテキスト（横幅いっぱい） */
.full-width {
    width: 100%;
}

/* 画像とテキストのセット */
.image-text-container {
    display: flex;
}

.image-text-container::after {
    content: "";
    position: absolute;
    right: 0;
    width: 40%; /* 大きな画面用の幅 */
    height: 100%;
    background-image: url(images/top/aboutoas/2x/aboutoas-parts2@2x-8.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

/* 画像の配置 */
.abaoutas-image-container {
    width: 70%;
position: relative; /* 親要素として基準を作る */
z-index: 2; /* 他の要素より前に配置 */
}

.abaoutas-image-container img {
    width: 120%;
    height: auto;
    border-radius: 10px;
    position: absolute;
    z-index: 3;
    left:-50px;
}

.abaoutas-image-content {
    position: relative; /* 擬似要素の基準点にする */
    width: 50%;
    padding: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: visible; /* はみ出しを許可 */
    z-index: 0;
    height: 100%;
}




/* セクションタイトル */
.section-title {
    background-color: #eb4d4b;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 30px; /* 三角のスペースを確保 */
    position: relative; /* 擬似要素の基準位置に */
    display: inline-block; /* 必要ならタイトルの長さに合わせる */
    opacity: 0;
    transform: translateY(20px) scale(0.75);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px; /* 位置を調整 */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #eb4d4b; /* 親要素と同じ背景色 */
}

/* リスト */
.bullet-list {
    list-style: none;
    padding: 15px 0 15px 15px;
    margin: 0 auto;
}

/* 赤丸付きリスト */
.bullet-list li {
    position: relative;
    padding-left: 25px;
    font-size: 1rem;
    margin-bottom: 8px;
    text-align: left;
    opacity: 0; /* 最初は非表示 */
    transform: translateY(20px); /* 下から上にスライド */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.bullet-list li.show {
    opacity: 1;
    transform: translateY(0);
}


.bullet-list li::before {
    content: "●";
    position: absolute;
    top: -8px;
    left: 0;
    color: #eb4d4b;
    font-size: 1.6rem;
}
/* Blog セクション */
/* PCでは3列 */
.blog-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

/* 各記事 */
.blog-item {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
}

/* 記事全体をリンク可能にする */
.blog-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
/* もっと見るボタン */

.blog-button,.price-button {
    display: inline-block;
    padding: 12px 55px;
    background-color: #272727;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: 0.3s;
}

.blog-button:hover,.price-button:hover {
    background-color: #000000;
    font-size: 1.1rem;
}

/* 非表示設定 */
.hidden {
    display: none;
}
/* もっと見るボタンを中央に配置 */
.blog-button-container,.price-button-container {
    text-align: center; /* ボタンを中央揃え */
    margin: 30px auto 0 auto;
}

/* scheduleセクション*/
/* テーブル全体のスタイル */
.custom-table {
    width: 100%;
    border-collapse: separate; /* セル同士の線を分ける */
    border-spacing: 0; /* セル同士の間隔を0に設定 */
    border: 4px solid #1b592f;
    padding: 40px;
    
}

/* ヘッダーセルのスタイル */
.custom-table th {
    border-left: 2px solid #1b592f; /* ヘッダーセルの左線 */
    padding: 20px;
    text-align: center;
    color: #1b592f;
}

/* データセルのスタイル */
.custom-table td {
    border-top: 2px solid bar;
    border-left: 2px solid #1b592f;
    padding: 25px;
    text-align: center;
    color: #1b592f;
    font-size: 20px;
    border-top: 2px solid #1b592f;
        border-left: 2px solid #1b592f;
}

/* 一番下の行のセルに下線を追加しない */
.custom-table td:last-child,.custom-table th:last-child {
    border-right: 0px solid #000; /* 右側の線 */
}

.custom-table td:first-child,.custom-table th:first-child {
    border-left: 0px solid #000; /* 右側の線 */
}

.custom-table th:last-child {
    border-right: 0px solid #000; /* ヘッダー右側の線 */
    font-size: 1.2rem;
}

/* td-boxクラスに文字色、背景色、枠線を設定 */
.td-box {
    color: #f73e3e; /* 文字色を白に設定 */
    background-color: #e8e8e8; /* 背景色をオレンジに設定 */
    padding: 10px; /* 内部に余白を追加 */
    border-radius: 5px; /* 背景の角を丸くする */
    margin-top: 5px; /* 上部に少し余白を追加 */
}
/* td-end-box*/
.td-end-box{
    display: flex;
}

.td-end-box p{
    color: #000000; /* ●の色を赤に設定 */
    margin: 0 10px;
}
.td-end-box p::before {
    content: "●"; /* ●を追加 */
    color: #000000; /* ●の色を赤に設定 */
    font-size: 1.5rem; /* ●のサイズを調整 */
    margin-right: 10px; /* ●とテキストの間隔を調整 */
    vertical-align: middle; /* ●を縦方向で中央に揃える */
}
/* priceセクション*/
.price {
    background-color: #ffeede;
}
.price-content {
    padding: 45px;
    background-color: #fff;
    display: flex;
    border-radius: 30px;
}
.price-page-content {
    padding: 45px;
    background-color: #fff;
    display: flex;
    border-radius: 30px;
}
.price-page-content02 {
    margin: 20px 0 0 0px;
}

.price-content-left {
    display: flex;
    align-items: center; /* 垂直方向の中央配置 */
    justify-content: center; /* 水平方向の中央配置 */
    height: auto; /* 必要に応じて高さを指定 */
}

.price-content-left img {
    width: 70%;
    display: block;
    margin: 0 auto;
}
.price-page-content-left {
    display: flex;
    align-items: center; /* 垂直方向の中央配置 */
    justify-content: center; /* 水平方向の中央配置 */
    height: auto; /* 必要に応じて高さを指定 */
}

.price-page-content-left img {
    width: 70%;
    display: block;
    margin: 0 auto;
    opacity: 0; /* 最初は透明 */
}
.price-page-content-left02 {
    display: flex;
    align-items: center; /* 垂直方向の中央配置 */
    justify-content: center; /* 水平方向の中央配置 */
    height: auto; /* 必要に応じて高さを指定 */
    
}

.price-page-content-left02 img {
    width: 70%;
    display: block;
    margin: 0 auto;
    opacity: 0; /* 最初は透明 */
}
.price-table-container{
    padding: 15px;
    background-color: #e8e8e8;
    border-radius: 20px;
}
.price-table-container p {
    color: #f73e3e;
    text-align: center;
    background-color: #ffffff80;
    border-radius: 15px;
    padding: 15px;
    width: 90%;
    margin: 15px auto;
}
.price-content-right{
    width: 70%;
}
.price-content-right h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    background-color: #f73e3e;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50px;
    padding: 10px;
    text-align: center;
    margin-top: 50px;
} 
.price-table{
    border-spacing: 0; /* セル間の余白をなくす */
    width: 100%;
    font-size: 20px;
}
.price-table td {
    padding: 20px 60px;
    text-align: center;
    border-right: 1px solid #000;
}
.price-table td:last-child {
    border-right: none; /* 最後の列の縦線を消す */
    width: 70%;
}
.table-highlight {
    font-size: 24px; /* 好きなサイズに変更 */
    font-weight: bold; /* ついでに太字に */
}
/*contactセクション*/
.contact-area p {
    text-align: center;
    color: #1b592f;
}
.contact-button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px;
}
.contact-cotainr {
    border: #1b592f solid 3px;
    background-color: #fff;
    position: sticky;
}
/*アクセス*/
.schedule-logo{
width: 100%;
}
.schedule-logo::before {
    background-image: url(images/top/schdule/2x/schbule-icon.png);
    content: "";
    position: absolute;
    top: 10%;
    /* right: 0%; */
    transform: translateX(0%);
    width: 30%;
    height: 35%;
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    z-index: -1;
    left: 0;
}
.schedule-logo img {
    width: 30%;
    margin: 0 auto;
    display: block;
}
/*mapエリア*/
iframe{
    width: 100%;
    margin: 15px auto;
}
.map-container {
    width: 100%;
    margin: 0 auto;
}
.address-box{
display: flex;
margin: 15px;
}
.address01 {
    background-color: #165016;
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    margin-bottom: 10px;
    width: 20%;
    display: flex;
    align-items: center; /* 縦方向の中央揃え */
    justify-content: center; /* 横方向の中央揃え */
}
.address02 {
margin: 15px;
width: 70%;
margin: 0 auto;
color: #165016;
font-weight:800;
}
.info-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.info-box {
    border: 2px solid #165016;
    padding: 15px;
    background-color: #f9f9f9;
    color: #165016;
    display: block; /* 初期状態で表示させる */
    opacity: 0; /* 初期状態は透明 */
    transition: opacity 1s ease; /* フェードインのアニメーション */
    width: 33.3%; /* PC用は横並びで3つのボックス */
}
.info-box p{
margin: 15px auto;
}
.info-box h3 {
    background-color: #165016;
    color: white;
    padding: 8px;
    text-align: center;
}
.info-box ul li{
    text-decoration: none;
    list-style: none;
}
footer{
    width: 100%;
    text-align: center;
    background-color: #ffffff;
    color: #165016;
    margin: 0;
    padding: 0;
}

/*paセクション*/
.qa-container{
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    background-color: #fff;
}

.qa-item-left,.qa-item-right{
    width: 100%;
}
.qa-item {
    margin: 10px;
    border: 1px solid #f73e3e;
    overflow: hidden;
}

.qa-question {
    background-color: #ffffff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}
.contact-container {
    background-color: #ffffff;
    padding: 10px;
}

.qa-answer {
    height: 0;  /* 初期状態では非表示 */
    padding: 0 10px;
    background-color: #ffffff;
    overflow: hidden;
    transition: height 0.4s ease, padding 0.4s ease;  /* スムーズに開閉 */
}

.qa-item.open .qa-answer {
    height: 150px;  /* 開いたときの高さ（適宜調整） */
    padding: 10px;  /* 開いたときにパディングを戻す */
}

.arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
    color: #f73e3e;
}

.qa-item.open .arrow {
    transform: rotate(90deg);   /* 矢印が回転 */
}
.qa-question span{
 font-weight: 600;
}
/*priceセクション*/
.price-content-right p{
    margin: 15px auto;
}
/*companyセクション*/
.company-content{
    display: flex;
}
.company-content-left,.aboutus-content-left {
    display: flex;
    flex-direction: column; /* 子要素を縦並びにする */
    align-items: center; /* 横方向の中央揃え */
    justify-content: center; /* 縦方向の中央揃え（必要なら） */
    width: 50%;
    height: auto;
    padding: 10px;
}
.company-content-left img {
    width: 100%;
    display: block;
    margin: 20px auto;
    opacity: 0;
}
.company-content-right{
    width: 50%;
    align-items: center; /* 垂直方向の中央配置 */
    justify-content: center; /* 水平方向の中央配置 */
    height: auto; /* 必要に応じて高さを指定 */
    padding: 20px;
    background-color: #fff;
}
.company-content-title{
    width: 100%;
    margin: 0 auto;
}
.company-content-title img{
    width: 60%;
    display: block;
    margin: 20px auto;
}
.company-table-container{
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.company-table{
    border-spacing: 0; /* セル間の余白をなくす */
    width: 100%;
    font-size: 20px;
    border: 0.5px solid #1b592f;
}
.company-table tr, 
.company-table td {
padding: 20px;
    width: 100%;
    text-align: center;
    border: 0.5px solid #1b592f;
    color: #1b592f;
}
.company-table td img{
 width: 100%;
}
td:first-child {
    width: 120px;
    white-space: nowrap;
    font-weight: 800;
    text-align: center;
    margin: 0 auto;
}
/*aboutasセクション*/
.aboutus-content {
    display: flex;
    margin-bottom: 80px;
}

.li-txt{
margin: 20px;
list-style: none;
}
.li-title {
    width: 40%;
    background-color: #f73e3e;
    border-radius: 50px;
    padding: 10px;
    color: #fff;
    font-weight: 800;
    text-align: center;
    margin: 0 ;
}
.aboutus-content-right {
    width: 50%;
    display: flex;
    flex-direction: column; /* 子要素を縦に並べる */
    align-items: center; /* 水平方向の中央揃え */
    justify-content: center; /* 上下（垂直方向）の中央揃え */
    padding: 20px;
    background-color: #fff;
    border-radius: 20px;
}
.aboutus-content-left img {
    width: 80%;
    display: block;
    margin: 20px auto;
    opacity:0;
 
}

/*フェードイン*/
.fade-element {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .fade-element.visible {
    opacity: 1;
    transform: translateY(0);
  }
  /*contactセクション*/
  /* フォーム全体のデザイン */
.custom-contact-form {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
}

/* 入力フィールドのデザイン */
.custom-contact-form input[type="text"],
.custom-contact-form input[type="email"],
.custom-contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* 送信ボタンのデザイン */
.custom-contact-form input[type="submit"] {
    width: 50%;
    background: #0073e6;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin: 0 auto;
    display: block;
}

.custom-contact-form input[type="submit"]:hover {
    background: #005bb5;
}
/* iPad スタイル */
@media (max-width: 768px) {
    body {
        font-size: 14px;
        padding: 0px;
    }

    .container {
        max-width: 95%;
        padding: 10px;
    }

    h1 {
        font-size: 20px;
    }
    .logo-mobile h1 img {
        width: auto;
        height: 65px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    .menu-icon {
        display: flex;
        z-index: 1001;
    }

    nav {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        z-index: 1000;
        transform: translateY(-100%);
        transition: transform 0.6s ease-in-out;
    }
    
    nav.open {
        transform: translateY(0);
        height: 100vh;
        overflow-y: auto; /* メニュー内でスクロール可能に */
    }
    
    nav ul {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }

    nav ul li {
        margin: 20px 0 0 0;
    }
    .button-container {
        flex-direction: column;  /* 縦並びに変更 */
        gap: 10px;  /* ボタン間のスペースを縮小 */
    }

    /* モバイルメニューが開いたときにロゴを表示 */
    .logo-mobile {
        display: block;
    }
    .nav-button1, .nav-button2{
        margin: 8px auto;
        text-decoration: none;
    }
    .nav-button{
        margin: 5px auto;
        text-decoration: none;
        display: block;
        text-align: center;
        width: 95%;
        
    }

    /*heroスタイル*/
    .image-container.center .main-image {
        content: url(images/top/2x/hero-sp@2x-8.png); /* スマホ用の画像に変更 */
    }
    .image-container {
        overflow: initial;
    }
    .vertical-slider {
        display: none;
    }
    .image-grid {
        grid-template-columns: 0 1fr 0;
    }
    .hero {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: visible;
        margin: 0;
        padding: 0;
        margin-top: 120px;
    }
    .hero-subtitle {
        font-size: 2.5rem;
    }
    .hero-subtitle span {
            background-color:#ea6000; /* 背景色をオレンジに */
            padding: 24px 0px; /* 内側の余白を追加 */
            margin-right: 8px;
            border-radius: 100px; /* 角を丸く */
            color: white; /* テキストカラーは白に */
            opacity: 0;
            transform: translateY(20px); /* 下から上がる */
            transition: opacity 1s ease-out 4.5s, transform 1s ease-out 4.5s; /* 5秒遅れてフェードイン */
        }
        
        .hero-subtitle.visible span {
            opacity: 1;
            transform: translateY(0);
        }
    .hero-subtitle span::after {
            background-image: none; /* スマホでは背景画像を消す */
        }
        .hero-title-img {
            height: 680px;
            width: auto;
            object-fit: contain;
            content: url(images/top/2x/sp-main-hiero-txt1@2x-8.png); /* スマホ用の画像に変更 */
        }
        .text-overlay {
            font-family: "a-otf-ud-reimin-pr6n", sans-serif;
            font-weight: 100;
            position: absolute;
            top: 45%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            display: flex;
            gap: 25rem;
        }
        .sns {
            display: flex;
            align-items: flex-end;
            justify-content: center;
            position: absolute;
            bottom: 0px;
            right: 40px;
            transform: translateX(0%);
            gap: 20px;
            overflow: visible;
        }
        .sns-icon img {
            width: 80px;
            height: auto;
            transition: transform 0.2s ease;
        }
        .muryou-icon {
            width: 265px;
            height: 250px;
            background-image: url(images/top/2x/mryou-icon@2x-8.png);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
            text-align: center;
            padding: 0;
            line-height: 1.4;
            border-radius: 10px;
            transition: transform 0.2s ease;
            overflow: hidden;
            text-decoration: none;
        }
        .blog-button-container, .price-button-container {
            text-align: center;
            margin: 20px auto;
        }
        /*aboutas*/
        .about-section,.blog,.price,.schedule-section,.schedule-section-page {
            position: relative;
            margin: 15px auto;
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            z-index: 0;
        }
        .about-section::before {
           
            width: 70%;
           
        }
        .about-section::after,.schedule-section::after,.schedule-section-page::after {
            content: "";
            height: 20%;
        }
        
        .image-text-container::before {
                content: "";
                position: absolute;
                bottom: 0;
                width: 90%;
                right: 0;
            }

            .bullet-list {
                list-style: none;
                padding: 0px;
                margin: 0 auto;
            }
             .image-text-container::after {
        height: 20%; /* 高さを調整して余白を確保 */
        bottom: 0; /* 下部に配置 */
        right: 0;
        width: 70%;
        height: 100%;
        background-size: contain;
        background-repeat: no-repeat;
        z-index: -1;
        top: 50%;
    }

    .abaoutas-image-container {
        width: 100%; /* 画像コンテナをフル幅に設定 */
        height: 550px; /* 高さを調整 */
    }

    .abaoutas-image-container img {
        width: 100%; /* 画像をコンテナに合わせてフルサイズ */
        height: auto;
        left: 0; /* 画像がずれないように調整 */
    }

    .abaoutas-image-content {
        width: 100%; /* 画像とテキストの幅を合わせる */
        padding: 20px; /* テキストの余白を設定 */
    }

    .image-text-container {
        display: block; /* モバイルでは縦に積み重ねる */
    }
    .blog-list {
        grid-template-columns: 1fr;
    }

    .blog-item {
        display: none; /* デフォルトで非表示 */
    }

    .blog-item:nth-child(-n+3) {
        display: flex; /* 最初の3記事だけ表示 */
    }
    /*scheduleセクション*/
    /* 左右の列を50%:50%に変更 */
    .left-col,
    .right-col {
        width: 50%; /* 50% 幅に設定 */
    }
    .schedule {
        position: relative;
        margin: 15px auto;
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        z-index: 0;
    }
    
    @media screen and (max-width: 768px) { /* スマホ用のスタイル */
        .about-title, .blog-title, .schedule-title, .price-title, .qa-title, .contact-title, .company-title, .aboutus-title {
            font-size: 2rem;
            color: #6b9e3b;
            font-weight: bold;
            margin-bottom: 5px;
            text-align: left;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        .about-title::after, .blog-title::after, .schedule-title::after, .price-title::after, .qa-title::after, .company-title::after, .aboutus-title::after, .contact-title::after {
            content: "";
            position: absolute;
            bottom: 15px;
            left: 50%;
            width: 105%;
            height: 8px;
            background-color: #ceda00;
            z-index: -1;
            transform: translateX(-50%);
        }


        /*scheduleセクション*/
        .td-end-box {
            display: block;
        }

        .custom-table, 
        .custom-table thead, 
        .custom-table tbody, 
        .custom-table tr, 
        .custom-table th, 
        .custom-table td {
            display: block;
            width: 100%;
            padding: 10px;
        }
    
        .custom-table thead {
            display: none; /* ヘッダー非表示 */
        }
    
        .custom-table tr {
            margin-bottom: 20px;
            border-bottom: 1px solid #ddd;
            padding-bottom: 10px;
        }
    
        .custom-table td {
            text-align: left;
            padding: 10px;
            border: 1px solid #fff;
        }
    
        .custom-table td:first-child {
            font-weight: bold;
            font-size: 18px;
            border-bottom: 2px solid #f73e3e;
            width: 120px;
            margin: 0 auto;
        }
    }
    

/*プロフィールセクション*/
    .custom-table td {
        padding: 5px;
        text-align: center;
        color: #1b592f;
        font-size: 20px;
    }




    /*priceセクション*/
    .price {
        background-color: #ffeede;
    }
    .price-content {
        padding: 0;
    display: block;
    background-color: #ffffff00;
}

.price-content-right {
    width: 100%;
}
.price-content-right h3 {
margin-top: 30px;
    width: 90%;
}
.price-content-left img {
    width: 40%;
    margin: 0 auto;
}

.price-table-container {
    padding: 15px;
    border-radius: 20px;
    margin: 0px;
}
.price-table-container p {
    color: #f73e3e;
    text-align: center;
    background-color: #ffffff80;
    border-radius: 15px;
    padding: 5px;
    width: 100%;
    margin: auto;
    font-size: 18px;
}
.price-table td {
    padding: 15px 15px;
    text-align: center;
    border-right: none;
    display: block;
}
.price-table td:last-child {
    border-right: none;
    width: 100%;
}
/*contactエリア*/
.contact-area {
    padding: 15px;
}
.contact-button-container {
    display: block;
    justify-content: center;
    gap: 20px;
    margin: 0px;
}
.contact-area p {
    text-align: center;
    color: #1b592f;
    width: 90%;
    margin: 0 auto 15px auto;
}
.contact-area-title::after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 50%;
    height: 8px;
    background-color: #ceda00;
    z-index: -1;
    transform: translateX(-50%);
}
/*map*/
.info-container {
    display: block; /* SPでは縦並び */
}
.info-box {
    width: 100%; /* SP用の幅 */
    margin: 15px auto; /* 中央寄せ */
}
/*qaセクショn*/

.qa,.contact{
    position: relative;
    margin: 150px auto 15px auto;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 0;
    background-image: url(images/qa/2x/qa-bg@2x-8.png);
    background-position: center;
    background-size: cover;
}
.qa-container,.company-container {
    display: block;
padding: 0;
width: 100%;
}
/*price-page*/
.price-page {
    position: relative;
    margin: 150px auto 15px auto;
    background-color: #ffeede;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 0;
}
.price-page-content {
    padding:15px;
display: block;
background-color: #ffffff;
}
.price-page-content-left img {
    width: 100%;
    margin: 10px;
    border-radius: 20px;
    opacity: 0; /* 最初は透明 */
}
.price-page-content-left img {
    content: url('images/price/2x/price-page-img01.jpg'); /* スマホ用画像 */
}
.price-page-content-left02 img {
    width: 100%;
    margin: 10px;
    border-radius: 20px;
    opacity: 0; /* 最初は透明 */
}
.price-page-content-left02 img {
    content: url('images/price/2x/price-page-img02.jpg'); /* スマホ用画像 */
}
/*companyセクション*/
.company-page {
    position: relative;
    margin: 150px auto 15px auto;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 0;
    background-image: url(images/company/2x/company-bg@2x-8.png);
    background-position: center;
    background-size: cover;
}
.company-content,.aboutus-content{
    display: block;
}
.company-content-left,.aboutus-content-left {
    display: flex;
    flex-direction: row; /* 横並びに変更 */
    align-items: center; /* 縦方向の中央揃え */
    justify-content: center; /* 横方向の中央揃え */
    width: 100%;
    height: auto;
    padding: 10px;
}

.company-content-left img,.aboutus-content-left img {
    width: 45%;
    display: block;
    margin:10px;
    opacity: 0;
}

.company-content-right,.aboutus-content-right{
    width: 95%;
    align-items: center; /* 垂直方向の中央配置 */
    justify-content: center; /* 水平方向の中央配置 */
    height: auto; /* 必要に応じて高さを指定 */
    padding: 0px;
    background-color: #fff;
    margin: 10px auto;
}
.company-content-title img {
    width: 60%;
    display: block;
    margin: 10px auto;
    padding: 50px;
}
td:first-child {
    font-weight: 800;
    border-bottom: 1px solid #f73e3e;
    padding: 0px;
}
/*aboutusセクション*/
.aboutus-list-container {
    list-style: none;
    text-decoration: none;
    margin: 40px auto;
}
.aboutus-page{
    padding: 20px;
}
.li-title {
    width: 90%;
    background-color: #f73e3e;
    border-radius: 50px;
    padding: 10px;
    color: #fff;
    font-weight: 800;
    text-align: center;
    margin: 0 auto;
}
}



/* iPhone スタイル */
@media (max-width: 480px) {
    body {
        font-size: 13px;
        padding: 5px;
    }

    .container {
        max-width: 100%;
        padding: 5px;
    }

    h1 {
        font-size: 18px;
    }
    .text-overlay {
        gap: 11rem;
        top: 50%;
    }
    .hero-title-img {
        height: 380px;
        width: auto;
        object-fit: contain;
        content: url(images/top/2x/sp-main-hiero-txt1@2x-8.png);
    }
    .hero-subtitle {
        font-size: 1.4rem;
    }
    .sns {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        position: absolute;
        bottom: 0px;
        right: 15px;
        transform: translateX(0%);
        gap: 10px;
        overflow: visible;
    }
    .muryou-icon {
        width: 115px;
        height: 107px;
        background-image: url(images/top/2x/mryou-icon@2x-8.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 16px;
        font-weight: bold;
        text-align: center;
        padding: 0;
        line-height: 1.4;
        border-radius: 10px;
        transition: transform 0.2s ease;
        overflow: hidden;
        text-decoration: none;
    }
    .sns-icon img {
        width: 35px;
        height: auto;
        transition: transform 0.2s ease;
    }
    .top-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        margin: 40px auto;
    }
    .top-logo img:nth-child(2) {
        width: 60%;
    }
    .top-logo img:first-child, .top-logo img:last-child {
        width: 35px;
    }
    /*aboutusswセクション*/
    .about-section::after,.schedule-section::after,.schedule-section-page::after {
        content: "";
        height: 10%;
    }
    .abaoutas-image-container {
        width: 100%;
        height: 270px;
    }
    .abaoutas-image-content {
        width: 100%;
        padding: 0px;
    }
    /*companyセクション*/
    .company-content-title img {
        width: 60%;
        display: block;
        margin: 10px auto;
        padding: 0px;
    }
    .company-content-left img {
        width: 53%;
        display: block;
        margin: 5px;
        opacity: 0;
    }
    .company-table,.company-table td {
        padding: 5px 0px;
        text-align: center;
        border: 0.5px solid #ffffff;
        border-bottom: 0.5px solid #1b592f;
        display: block;
    }
    .custom-border{
        border-bottom: 0px solid #ffffff !important; /* これで絶対に優先される */
    }
    .company-content-title{
        display: none;
    }
    .company-content-right,.aboutus-content-right {
        margin: 20px auto;
    }
    /*aboutusセクション*/
    .aboutus-content-left {
        display: block;
        flex-direction: row; /* 横並びに変更 */
        align-items: center; /* 縦方向の中央揃え */
        justify-content: center; /* 横方向の中央揃え */
        width: 100%;
        height: auto;
        padding: 10px;
    }
    .aboutus-content-left img {
        width: 100%;
        display: block;
        margin:10px;
     margin: 10px auto;
     text-align: center;
     opacity: 0;
    }
  
}
