
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  height: 100%;
}

body {
  font-family:  "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  margin: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
a {
  color: #333;
  text-decoration: none;
}

ol, ul {
  list-style-type: none;
}
a:hover {
  color: #8030E3;
}
.bg_white {
  background-color: #fff;
}
.bg_no {
  background-color: rgba(255, 255, 255, 0);
}
.bg_blue {
  background-color:#2D9CD2;
  padding: 80px 0 0 0;
}
.container {
  background: #F5F5F5;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 30px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  box-sizing: border-box;
  height: 90px;
}

/* SPでのヘッダー調整 */
@media screen and (max-width: 820px) {
  .header {
    padding: 0px 20px;
    max-width: 100%;
  }
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  max-height: 50px;
  /* padding: 10px 10px 10px 0; */
}

.logo-text {
  font-size: 24px;
  color: #333;
  font-weight: bold;
  margin-left: 8px;
}

.scroll {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

.arrow-img {
    display: block;
    margin: 0 auto;
    margin-top: 10px;
    width: 24px; /* 矢印画像の幅を調整 */
    height: auto; /* アスペクト比を維持 */
    position: relative;
    z-index: 10;
}

/* SCROLLと矢印をまとめて中央揃え */
.scroll-container {
    position: absolute;
    bottom: 10px; /* SCROLLと矢印の位置調整 */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

/* 子ページ */
.container.single .page {
  width: 1000px;
  margin: 90px auto 0px;
  display: block;
  min-height: 300px;
  padding-bottom: 100px;
}
.container.single .page h2 {
  margin: 10px auto;
}
.container.single .page p {
  margin-bottom: 10px;
}
.container.single .archive p {
  overflow: hidden;
  font-size: 16px;
}
.container.single .archive p.news-date {
  font-size: 14px;
}
.news-thumbnail-archive {
  width: 280px;
  height: auto;
}
.news-box {
  display: flex;
}
.news-flex-right {
  width: auto;
}
.right-txt {
  text-align: right;
  margin-top: 6px;
}
@media screen and (max-width: 1024px) {
  .container.single .page {
    width: 100%;
  }
  .container.single .container.wrapper {
    width: 90%;
    margin: 0 auto;
  }
  .container.single .archive p {
    width: 100%;
  }
  .news-lex-left {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
/* 投稿ページ */
.container.single .post {
  width: 1000px;
  margin: 90px auto 0px;
  display: block;
  min-height: 700px;
  padding-top: 20px;
}
.container.single .post a {
  color: #333;
}
.container.single .post a:hover {
  color: #8030E3;
}
.container.single .post h2 {
  font-size: 18px;
  margin-bottom: 4px;
}
.container.single .post ul {
  list-style: none;
}
.single-top {
  text-align: center;
  padding: 30px 0;
  color: #333;
  height: auto;
  background: #fff;
  font-size: 20px;
  font-weight: bold;
}
.post-link {
  display: flex;
  width: 300px;
  margin: 50px auto 0 auto;
}
.post-link li {
  margin: 0 auto;
}
.link{
  color: #8030E3;
}
.post_wrap {
  display: flex;
}
.post article {
  border-bottom: 1px solid #D9D8D8;
  padding-bottom: 18px;
  padding-top: 20px;
}
@media screen and (max-width: 1024px) {
  .container.single .post {
    width: 100%;
  }
  .post article{
    width: 90%;
    margin: 0 auto;
  }
  .post_wrap  img{
    width: 100%;
    height: auto;
  }
  .container.single .post {
    margin: 0px auto 0px;
    padding-top: 50px;
  }
}
.single img {
  margin-bottom: 30px;
}
.container.single {
  padding-bottom: 50px;
}
/* pagination */
.pagination {
  text-align: center;
  margin: 30px auto;
}
.page-numbers {
  border: 1px solid #333;
  padding: 6px;
  border-radius: 5px;
  margin: 0 3px;
}
.page-numbers:hover {
  color: #8030E3;
  border: 1px solid #8030E3;
}
.page-numbers.current {
  color: #8030E3;
  border: 1px solid #8030E3;
  margin: 0 3px;
}
.next.page-numbers, .prev.page-numbers {
  color: #333;
  border: none;
}
.next.page-numbers:hover , .prev.page-numbers:hover {
  color: #8030E3;
  border: none;
}
/*  バリデート　*/
.screen-reader-response {
  display: none;
}
.wpcf7-not-valid-tip {
  color: #e53935;
}

/* ハンバーガーメニュー */
.hamburger {
  display: flex;
 flex-direction: column;
 justify-content: space-around;
 width: 30px;
 height: 22px;
 cursor: pointer;
 z-index: 1001;
 position: relative;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 4px;
  background-color: #333;
  transition: all 0.3s ease;
}

#check {
  display: none;
}

.hamburger,
input[type="checkbox"].sp {
  display: none;
}

/* モバイル端末用（画面幅820px以下の場合） */
@media screen and (max-width: 820px) {
  .hamburger {
    display: block;
  }

  input[type="checkbox"].sp {
    display: block;
  }
}

.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;

}
.nav__list {
  display: flex;
  gap: 45px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  font-family: 'sans-serif';
}

.nav__item a {
  white-space: nowrap;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: color 0.5s ease;   /* 色をゆっくり変化 */
  font-family: "";
}

.nav__item a:hover {
  color: #8030E3; 
}

.nav__item.contact a {
  border: 2px solid #EC3B2C;
  color: #fff;
  background-color: #EC3B2C;
  border-radius: 10px;
  padding: 10px 14px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.nav__item.contact a:hover {
  background-color: #fff;
  border-color: #EC3B2C;
  color: #EC3B2C;
}

.anchor {
  padding: 0px 0px 80px 0;
  text-align: center;
}

.anchor h3 {
  font-size: 36px;
  margin-bottom: 0px;
  padding-top: 60px;
  color: #8030E3;
}

#office h3 span,
#service h3 span,
#company h3 span,
#news h3 span,
#about h3 span,
#contact h3 span{
  font-size: 18px;
  color: #8030E3;
  text-transform: lowercase;
}
#activities h3 span{
   font-size: 18px;
  color: #8030E3;
  text-transform: lowercase;
}

#office h3,
#service h3,
#company h3,
#news h3,
#about h3,
#contact h3 {
  font-size: 36px;
  color: #8030E3;
  line-height: 1.2;
  margin-top: 0px;
  padding: 100px 0 50px 0;
}
#activities h3 {
  font-size: 36px;
  color: #8030E3;
  line-height: 1.2;
  margin-top: 0px;
}

.newsp{
  padding: 150px 0 50px 0 !important;
}

.hero {
  width: 100%;
  margin: 0 auto;
  position: relative;
  background-color: #F5F5F5;
}
.logo-img {
  position: absolute;
  top: 50%;              /* 縦の中央 */
  left: 100px;               /* 左寄せ */
  transform: translateY(-50%); /* 画像の高さを調整してちょうど中央に */
}
.logo-img img {
  width: 360px;
  margin: 0 auto;
  display: block;
}
.logo-img p {
  font-size: 36px;
  font-weight: bold;
}

.logo2 {
  position: absolute;
   top: 45%;
   left: 50%;
   transform: translate(-50%, -50%);
   z-index: 1;
   font-family:Oriya MN;
   font-size:92px;
   font-weight: normal;
 }
.logo2 .logo_txt {
  width: 50%;
  margin: 0 auto;
  display: block;
}
.logotext{
  position: absolute; /* ロゴを絶対位置に配置 */
   top: 58%; /* 縦方向の中央に配置 */
   left: 50%; /* 横方向の中央に配置 */
   transform: translate(-50%, -50%); /* 中央基準の調整 */
   z-index: 1; /* hero-img の上に配置 */
   font-size: 24px;
}

.hero .hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ヒーローセクションのお問い合わせボタン */
.hero_contact_btn {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.hero_contact_btn a {
  width: 248px;
  padding: 13px 0;
  background: linear-gradient(90deg, #00c4ff, #b500b5, #00c4ff);
  background-size: 200% 100%;
  background-position: left;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  margin: 30px auto 0px;
  display: inline-block;
  transition: background-position 0.5s ease;
  position: relative;
  top: 80px;
}

.hero_contact_btn a:hover {
background-position: right;
}

.news-item{
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 32px 34px;
    margin: 0 auto;
    width: 960px;
    border-bottom: 1px solid #DDDDDD;
}

.news-date {
    font-size: 14px;
    color: #666;
    text-align: left;
}

.news-description {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    text-align: left;
}

.news-img {
    width: auto;
    object-fit: cover; /* 画像を均一に表示 */
    background-color: #f4f4f4; /* 画像がない場合の背景色 */
    border: 1px solid #ADADAD;
}
.no-image-thumbnail {
  width: 280px;
  object-fit: cover; /* 画像を均一に表示 */
}
.no-image {
  width: 100%;
}
.news-top-img {
  width: 100%;
  height: auto;
  border: 1px solid #ADADAD;
  margin-bottom: 12px;
}
.news-content {
    width: 70%;
}

.news-heading {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 4px;
  text-align: left;
}
.news-thumbnail-top {
  margin-right: 20px;
}
.bread ol {
  display: flex;
  list-style: none;
}
.bread ol li{
  font-size: 12px;
}
#company .topics {
  margin-top: 0;
}
.news_bg {
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  width: 1000px;
  margin: 0 auto;
}
.custom-thumbnail-class {
    width: 280px;
    height: 147px;
    object-fit: cover; /* トリミングをシミュレーション */
}
.topics {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  margin-bottom: 20px;
}

.detail {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: #333;
  max-width: 480px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.flex_content {
    display: flex;
    align-items: center; /* 縦方向の中央揃え */
    justify-content: space-between; /* 横方向に均等配置 */
    margin: 0 auto ;
    padding: 20px 0 0 0 ;
    width: 900px;
}

.flex_content.reverse {
    flex-direction: row-reverse; /* 画像とテキストを反転 */
}
/* 画像スタイル */
.image-container img {
    width: 100%;
    object-fit: cover;
    margin-bottom: 110px;
}

/* テキストスタイル */
.text-container {
    width: 100%; /* テキストコンテナの幅 */
    text-align: left;
    margin: 0 40px;
}

.text-container h4 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.text-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 60px 0 ;
}
.office.sp {
  position: relative;
  display: inline-block;
  width: 100%;
}

.office.sp p {
  color: #fff;
  text-align: center;
  font-size: 28px;
  line-height: 1.5;
  margin: 20px 0;
}

.office.sp img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: -5px;
}

.office.sp .wrapper {
  position: relative;
}
.image-overlay {
  position: relative;
  width: 100%;
}

.image-overlay img {
  display: block;
  width: 100%;
  height: auto;
}

.overlay-content {
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.overlay-content p {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

.office.sp .green_btn a {
  display: inline-block;
  background-color: #4F9D52;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 16px;
  border: 2px solid #4F9D52;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-bottom: 15px;
}

.office.sp .green_btn a:hover {
  background-color: #fff;
  color: #4F9D52;
}

/* ul内のリンクテキストのスタイル */
#news ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  width: 800px;
  text-align: left;
  border-top: 1px solid #ddd;
}

#news ul li {
  text-align: left;
}

#news ul li a {
  display: block;
  position: relative;
  font-size: 16px;
  font-weight: 300;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #D9D8D8;
  transition: border-bottom 0.3s ease, color 0.3s ease;
  padding: 12px 0;
}

 #news ul li a:hover {
  color: #906B00;
  border-bottom: 1px solid #ddd;
}

/* もっと見るボタンのスタイル */
.green_btn a {
    width: 300px;
  padding: 13px 0;
  background: linear-gradient(90deg, #00c4ff, #b500b5, #00c4ff);
  background-size: 200% 100%;
  background-position: left;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  margin: 40px auto 80px;
  display: inline-block;
  transition: background-position 0.5s ease;
}

/* ホバー時のスタイル */
.green_btn a:hover {
background-position: right;
}

.wrapper.about {
  text-align: center;
}

.about {
  background-color: rgba(255, 255, 255, 0);
}

table.about {
  width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  margin-bottom: 80px;
  border-top: 1px solid #D9D8D8;
  color: #333;
}

table.about tr {
  border-bottom: 1px solid #D9D8D8;
}

/* 見出しセル（th）のスタイル */
table.about th {
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 20px;
}

table.about td {
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  padding: 3px 100px;
  color: #333;
}

.wrapper.contact {
  width: 800px;
  margin: 0 auto;
  text-align: left;
  padding: 0 0 100px;
}

/* カスタムフォームのスタイル */
.Form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px 0 0 0 ;
}

.Form-Item {
  display: flex;
  flex-direction: column;
}

.Form-Item-Label {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #000;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 0 0 15px;
}

/* 必須マークのスタイル */
.Form-Item-Label-Required {
  display: inline-block;
  background-color: #e53935;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  margin-left: 8px;
}

/* 入力フィールドのスタイル */
.Form-Item-Input,
.Form-Item-Textarea {
  width: 100%;
  max-width: 100%;
  padding: 15px;
  font-size: 18px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #fff;
}

.Form-Item-Input:focus,
.Form-Item-Textarea:focus {
  outline: none;
  border-color: #2D9CD2;
  box-shadow: 0 0 5px rgba(45, 156, 210, 0.3);
}

/* テキストエリアの高さ */
.Form-Item-Textarea {
  height: 150px;
  resize: vertical;
}

/* 送信ボタンのスタイル */
.Form-Btn {
  width: 300px;
  padding: 13px 0;
  background: linear-gradient(90deg, #00c4ff, #b500b5, #00c4ff);
  background-size: 200% 100%;
  background-position: left;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  margin: 20px auto 0;
  display: block;
  transition: background-position 0.5s ease;
}

.Form-Btn:hover {
  background-position: right;
}


/* h3のスタイル: 中央揃え */
.wrapper.contact h3 {
  text-align: center;
}

/* span要素のスタイル */
.wrapper.contact h3 span {
  font-size: 18px;
  color: #2D9CD2;
}

/* プレースホルダーのスタイル */
.Form-Item-Input::placeholder,
.Form-Item-Textarea::placeholder {
  color: #999;
  font-size: 18px;
}

/* Contact Form 7 エラーメッセージのスタイル */
.wpcf7-not-valid-tip {
  color: #e53935;
  font-size: 14px;
  margin-top: 5px;
}



.wpcf7-mail-sent-ok {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.wpcf7-validation-errors {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
/* フッター全体 */
footer {
  background-color: #333333;
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 60px 0 100px;
  text-align: center;
}

/* フッターナビゲーション */
.footer-nav {
  margin-bottom: 60px;
}

.footer-nav__list {
  display: flex;
  justify-content: center;
  gap: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav__item a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.footer-nav__item a:hover {
  color: #ccc;
}

/* ソーシャルメディアアイコン */
.footer-social {
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  gap: 50px;
  align-items: center;
}

.footer-social a {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.footer-social a:hover {
  opacity: 0.7;
}

.xlogo, .flogo, .instlogo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* コピーライト */


.copyright {
  color: #fff;
  font-size: 14px;
  margin: 0;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .hero .hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  .hero .logo-img{
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .logotext{
  font-size:18px;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  }
  .logo2 .logo_txt {
    width: 110%;
  }
  
  /* ヒーローボタンのモバイル対応 */
  .hero_contact_btn {
    bottom: -8%;
  }
  
  .hero_contact_btn a {
    padding: 18px 20px;
    font-size: 18px;
    margin-bottom: 100px;
  }
  .anchor {
    padding: 0px 0px 40px 0;
  }
}

@media screen and (max-width: 768px){
  body{
    padding: 90px 0 0 0 ;
  }
  .news-item{
      display: block;
      margin-bottom: 20px;
      padding: 20px 0;
      margin: 0 auto;
      width: 89.5%;
  }

  .news-date {
      font-size: 14px;
      color: #666;
      margin-bottom: 4px;
      text-align: left;
      width: 100%;
  }

  .news-description {
      font-size: 16px;
      color: #333;
      line-height: 1.5;
      text-align: left;
  }

  .news-img {
      width: 100%;
      height: auto;
      object-fit: cover; /* 画像を均一に表示 */
      margin-right: 0px;
      background-color: #f4f4f4; /* 画像がない場合の背景色 */
  }

  .news-content {
      width: 94%;
      padding: 10px;
  }

  .news-heading {
      font-size: 16px;
      font-weight: bold;
      margin-bottom: 10px;
      text-align: left;
  }
  .news-box {
    display: block;
    margin-bottom: 10px;
  }
  .newsp{
  padding: 80px 0 50px 0 !important;
}
}


@media screen and (max-width: 853px){
  .flex_content {
      display: block;
      align-items: center; /* 縦方向の中央揃え */
      margin: 0 auto ;
      padding: 20px 0 0 0 ;
      width: 100%;
  }
  /* 画像スタイル */
  .image-container img {
      width: 70%;
      object-fit: cover;
      margin-bottom: 80px;
  }

  /* テキストスタイル */
  .text-container {
      width: 90%; /* テキストコンテナの幅 */
      text-align: left;
      margin: 0 20px;
      box-sizing: border-box;
  }

  .text-container h4 {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 20px;
      text-align: left;
      width: 300px;

  }

  .text-container p {
      font-size: 16px;
      line-height: 1.8;
      color: #333;
      padding: 0 0 80px 0;
      margin: 0;
  }
  .hero .hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  .xlogo{
    width: 5%;
  }
  .instlogo{
    width: 5%;
  }
  /* h3 のスタイル */
  #office h3,
  #service h3,
  #company h3,
  #news h3,
  #about h3,
  #contact h3 {
    font-size: 36px;
    color: #8030E3;
    line-height: 1.2;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 80px 0 50px 0;
  }
}

/* 親要素 .overlay-content の中央揃え設定 */
.overlay-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top:  50%;
  left: 50%;
  width: 100%;
  height: 100%;
}

/* テキストを非表示 */
.overlay-content p {
  display: none;
}

/* ボタンのスタイル */
.overlay-content .green_btn a {
  font-size: 14px;
  padding: 8px 16px;
  text-decoration: none;
  color: #fff;
  background-color: #4F9D52;
  border: 2px solid #4F9D52;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ボタンのホバー効果 */
.overlay-content .green_btn a:hover {
  background-color: #fff;
  color: #4F9D52;
}

/* モバイル画面用のスタイル */
@media screen and (max-width: 1024px) {
  /* ul のリストスタイル */
  .news ul {
    width: 100%;
    max-width: 90%;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  /* リストアイテムのスタイル */
  .news ul li a {
    font-size: 16px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    padding: 0 20px;
  }
  .no-image-thumbnail {
    width: 100%;
    height: auto;
  }
  /* h3のスタイル */
  .wrapper.news h3 {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
  }

  /* ボタンのスタイル */
  .wrapper.news .green_btn {
    text-align: center;
    margin: 0 0 80px;
  }
  .green_btn a {
    margin: 20px 0 70px 0;
  }
}


/* モバイル用のスタイル */
@media screen and (max-width: 768px) {
  table.about th {
    width: 20%;
    padding: 15px;
    font-size: 14px;
    white-space: nowrap;
  }

  table.about td {
    font-size: 14px;
    padding: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  table.about {
    width: 90%;
    margin: 0 20px 70px 20px;
  }

}
/* モバイル画面用のスタイル */
@media screen and (max-width: 768px) {
  /* ul のリストスタイル */

  .wrapper.news .green_btn {
    text-align: center;
    margin: 0 0 80px;
  }
  .green_btn a {
    margin: 50px 0 120px 0;
  }
  .no-image-thumbnail {
      width: 100%;
      height: auto;
      padding: 0 10px;
  }
  .bread {
    margin-left: 5%;
  }
}
/* モバイル用スタイル - カスタムフォーム */
@media screen and (max-width: 768px) {
  /* フォーム全体のスタイル */
  .wrapper.contact {
    box-sizing: border-box;
    width: 100%;
    padding: 0 15px 60px ;
  }

  /* カスタムフォーム モバイル対応 */
  .Form-Item-Input,
  .Form-Item-Textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 12px;
    font-size: 18px;
  }

  .Form-Btn {
    width: 300px;
    margin-top: 10px;
    font-size: 18px;
    padding: 18px 0;
  }

  .Form-Item-Label {
    font-size: 18px;
  }

  .Form-Item-Label-Required {
    font-size: 18px;
    padding: 3px 6px;
  }
}
  
.sp {
  display: none;
}
@media screen and (max-width:820px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  /* ===============================================
  ハンバーガーボタンのスタイリング
  =============================================== */
  input[type="checkbox"] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
  }
  .hamburger {
    display: block;
    width: 30px;
    height: 80px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .hamburger span,
  .hamburger span::before,
  .hamburger span::after {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.5s;
  }
  .hamburger span::before {
    top: -10px;
  }
  .hamburger span::after {
    bottom: -10px;
  }
  input[type="checkbox"]:checked + .hamburger span {
    background-color: transparent;
  }
  input[type="checkbox"]:checked + .hamburger span::before {
    top: 0;
    transform: rotate(45deg);
    background-color: #333;
  }
  input[type="checkbox"]:checked + .hamburger span::after {
    bottom: 0;
    transform: rotate(-45deg);
    background-color: #333;
  }
  
  /* ハンバーガーメニューが開いた時のz-indexを調整 */
  input[type="checkbox"]:checked + .hamburger {
    z-index: 1000;
    position: fixed;
    right: 30px;
    top: 0px;
  }

  /* ===============================================
  メニューのスタイリング
  =============================================== */
  .nav {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0px;
    right: -120%;
    background-color: #fff;
    color: #333;
    margin: 0 0 0 0 ;
    transition: all 0.5s;
    z-index: 888;
    padding: 0px 0 180px 0;
  }
  .nav__item a {
    display: block;
    font-size: 20px;
    padding: 10px 0 15px 20px;
    color: #333;
    text-decoration: none;
  }
  .nav__item a:hover {
    color: #2D9CD2;
    background-color: #fff;
  }
  input[type="checkbox"]:checked ~ .nav {
    right: 0;
  }
  /* ===============================================
   sp メニューのスタイリング
  =============================================== */
  ul.nav__list {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding-top: 70px;
  }
  ul.nav__list li {
    text-align: left;
    border-bottom: 1px solid #AFAFAF;
    padding: 15px 0;
    position: relative;
  }
  
  ul.nav__list li:after {
    content: ">";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
  }

  ul.nav__list li:last-child {
    border-bottom: none;
    text-align: center;
    margin: 30px 0 20vh;
    padding: 5px 0;
    background: linear-gradient(90deg, #00c4ff, #b500b5);
    border: none;
    border-radius: 100px;
  }
  
  ul.nav__list li:last-child:after {
    display: none;
  }

  ul.nav__list li:last-child a {
    padding: 13px 20px;
    color: #fff;
  }

  .logo-container {
    z-index: 1000;
    position: relative;
  }
  
  h1.logo img {
    width: auto;
    max-height: 50px;
    margin: 0;
    position: relative;
    z-index: 1000;
    padding: 0 5px 0 0;
  }
  
  .logo-text {
    font-size: 18px;
    color: #333;
    font-weight: bold;
  }

}
@media screen and (max-width: 1024px){
  .Form {
    width: 100%;
  }
}

@media screen and (max-width: 375px){
  h1.logo img {
    width: auto;
    margin: 0;
    position: relative;
    z-index: 1000;
  }
  
  .logo-text {
    font-size: 16px;
  }
.nav {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 75px;
  right: -120%;
  background-color: #fff;
  color: #fff;
  margin: 0 0 0 0px;
  transition: all 0.5s;
  z-index: 888;
  }
}

@media (min-width: 769px) and (max-width: 1024px){
.nav {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  right: -120%;
  background-color: #fff;
  color: #fff;
  transition: all 0.5s;
  z-index: 888;
  padding: 0 0 220px 0 ;
  }


}

/* モバイル用スタイル */
@media screen and (max-width: 820px) {
  /* フッターナビゲーション - モバイル 2×2グリッドレイアウト */
  .footer-nav__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 40px 20px;
    max-width: 300px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-nav__item a {
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    display: block;
  }
  
  /* グリッドの配置順序を指定 */
  .footer-nav__item:nth-child(1) { /* お知らせ */
    grid-column: 1;
    grid-row: 1;
  }
  
  .footer-nav__item:nth-child(2) { /* 団体紹介 */
    grid-column: 2;
    grid-row: 1;
  }
  
  .footer-nav__item:nth-child(3) { /* 活動内容 */
    grid-column: 1;
    grid-row: 2;
  }
  
  .footer-nav__item:nth-child(4) { /* お問い合わせ */
    grid-column: 2;
    grid-row: 2;
  }
  
  /* ソーシャルアイコン - モバイル */
  .footer-social {
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 40px;
  }
  
  .xlogo, .flogo, .instlogo {
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 480px) {
  footer {
    padding: 48px 32px;
  }
  
  .footer-nav__list {
    gap: 35px;
  }
  
  .footer-nav__item a {
    font-size: 18px;
  }
  
  .footer-social {
    gap: 50px;
  }
  
  .xlogo, .flogo, .instlogo {
    width: 35px;
    height: 35px;
  }
}
/* デフォルトで h3 を非表示 */
.office h3 {
  display: none;
}

/* モバイルでのみ h3 を表示 */
@media screen and (max-width: 768px) {
  .office.sp h3 {
    display: block !important;
  }

}

@media screen and (max-width: 1024px) {
  .bread {
    margin-left: 5%;
  }
  
  /* スマホ表示時のパンクズタイトル制御 */
  .breadcrumb-title {
    display: none;
  }
  
  .breadcrumb-title-mobile {
    display: inline;
  }
}

/* デスクトップ表示時のパンクズタイトル制御 */
@media screen and (min-width: 1025px) {
  .breadcrumb-title {
    display: inline;
  }
  
  .breadcrumb-title-mobile {
    display: none;
  }
}
.privacy-policy {
  margin-bottom: 15px;
}
.privacy-policy a{
  color: #8030E3;
}
.privacy-policy a:hover{
  color: #8030E3;
}
.contents.privacy-policy {
  padding-top: 20px;
}
.contents.privacy-policy ol {
  margin-left: 38px;
}
.privacy-policy ol li::marker {
  font-size: 130%;
  font-weight: 700;
  color: #906B00;
}
.privacy-policy h2 {
  font-size: 28px;
  padding: 50px 0 15px 0px;
}
.privacy-policy ol li {
  position: relative;
  list-style: outside decimal;
  padding: 0 0 0 5px;
}
.news-midashi {
  border-left: 6px solid #A83BA8;
  padding: 1px 12px 0 12px;
  margin: 28px 0;
}
.container.single .post h2.news-midashi  {
  font-size: 28px;
  margin: 28px 0;
}

/* 団体紹介セクションのスタイル */
.introduction_content {
  display: flex;
  justify-content: space-between;
  align-items:stretch ;
  margin: 0px auto 30px;
  width: 1000px;
}

.left_section {
  flex: 1;
  text-align: center;
  
}

.left_section h4 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}
.left_section {
  display: flex;
  align-items: center;
}

.system_diagram {
 flex: 1;
  display: flex;
  align-items: center;
}

.system_diagram img {
  width: 100%;
  height: auto;
}


.right_section {
  flex: 1;

}

.mission_box {
  background-color: #fff;
  color: #111;
  padding: 40px 20px;
  height: 100%;
  box-sizing: border-box;
  border-radius: 20px;
}



.mission_box h4 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

.mission_box p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 500;
}
.space{
  font-size: 18px !important;
  margin-bottom: 25px !important;
  padding: 20px 15px;
}
.intoro_list {
  list-style-type: disc;   /* ・を表示 */
  padding-left: 1.5em;     /* 全体のインデント */
}

.intoro_list li {
  margin-left: 1em;        /* 各行の追加インデント */
  margin-right: 1em;
}

.mission_box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 18px;
  border-radius: 20px;
}

.mission_box ul li {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  padding-left: 18px;
  position: relative;
  text-align: left;
}

.mission_box ul li:before {
  content: "・";
  position: absolute;
  left: 0;
  color: #111;
}

.organization_info {
  margin: 80px auto 0px;
  padding-bottom:80px ;
  width: 1000px;
}



.org_table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #D9D8D8;
  color: #333;
}

.org_table tr {
  border-bottom: 1px solid #DDDDDD;
}

.org_table th {
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  padding: 25px 20px;
  width: 150px;
}

.org_table td {
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  padding: 15px 200px 15px 200px;
  color: #333;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {
  .introduction_content {
    width: 90%;
    flex-direction: column;
  }
  
  .organization_info {
    width: 90%;
  }
  
  .org_table th {
    width: 30%;
    padding: 12px 15px;
    font-size: 14px;
  }
  
  .org_table td {
    padding: 12px 15px;
    font-size: 14px;
  }
  .left_section {
    display: block;
  }

}

@media screen and (max-width: 768px) {
  .introduction_content {
    width: 100%;
    margin: 0px;
  }
  
  .left_section h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .mission_box {
    padding: 60px 15px 30px;
  }
  
  .mission_box h4 {
    font-size: 26px;
    margin: 0px 0 30px;
  }
  
  .mission_box p {
    font-size: 20px;
    margin-bottom: 30px;
    margin: 20px;
  }
  
  .mission_box ul li {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .organization_info {
    width: 95%;
    margin: 60px auto 0px;
  }
  
  .org_table th {
    width: 35%;
    padding: 25px 10px;
    font-size: 16px;
  }
  
  .org_table td {
    padding: 25px 0;
    font-size: 16px;
  }
}

/* 活動内容セクションのスタイル */
.activities_content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 0px 0px;
}
.activities_content_gray {
  background-color: #f5f5f5;
  display: block;
}
.activity_box {
  background-color: white;
  border-radius: 12px;
  margin-bottom: 60px;
  padding: 40px 30px;
  position: relative;
}
.activities_content_gray .activity_box {
  background: none;
  width: 1000px;
  margin: 0 auto;
  display: block;
}


/* 01番のテーマボックス専用スタイル */
.theme_box {
  position: relative;
  overflow: visible;
}

.activity_image_overlay {
  position: absolute;
  top: -60px;
  right: -60px;
  z-index: 10;
}

.activity_image_overlay img {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  object-fit: cover;
}

.activity_header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.activity_number {
  font-size: 42px;
  font-weight: bold;
  color: #E54184;
  margin-right: 15px;
}

.activity_header h4 {
  font-size: 42px;
  font-weight: bold;
  color: #E54184;
  margin: 0;
}

/* .activity_body {
  margin-right: 200px; /* 画像のスペースを確保 */
/* } */

.activity_body > p {
  font-size: 24px;
  line-height: 1.6;
  color: #111;
  margin-bottom: 30px;
  text-align: left;
  font-weight: bold;
}
.activity_body > p span{
  font-size: 18px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 500;
}

.theme_list {
  margin-top: 20px;
}

.theme_item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 12px;
  border-bottom: 1px solid #ddd;
}

.theme_dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 10px;
  flex-shrink: 0;
}

.theme_dot.pink {
  background-color: #333;
}

.theme_content {
  flex: 1;
}

.theme_item h5 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 0 0 8px 0;
  line-height: 1.3;
  text-align: left;
}

.theme_item p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  text-align: left;
  padding: 0 0 20px;
}

.activity_header.orange h4 {
  color: #FFA500;
}
.activity_header.bule h4 {
  color: #2D9CD2;
}
/* 他のボックス用の既存スタイル */
.activity_box:not(.theme_box) .activity_body {
  align-items: flex-start;
  gap: 30px;
  margin-right: 0;
}

.activity_box:not(.theme_box) .activity_text {
  flex: 1;
}

.activity_box:not(.theme_box) .activity_image {
  flex-shrink: 0;
}

.activity_box:not(.theme_box) .activity_image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
}

.expert_logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.expert_item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.expert_header {
  display: flex;
  gap: 10px;
}

.expert_dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.expert_dot.orange {
  background-color: #333;
}

.expert_item p {
  font-size: 20px;
  color: #333;
  margin: 0;
  font-weight: bold;
}

.expert_item img {
  max-width: 350px;
  height: auto;
  margin-top: 0px;
}

/* 3番目のアイテム（シモネタリング）は左下に配置 */
.expert_item:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}

.support_logo {
  text-align: center;
  margin-top: 30px;
}

.support_logo img {
  max-width: 550px;
  height: auto;
  width: 100%;
}

/* 02番目のボックスのスタイル調整 */
.activity_box:nth-child(2) .activity_number {
  color: #F0AC2B;
}

.activity_box:nth-child(2) .activity_header h4 {
  color: #F0AC2B;
}

/* 03番目のボックスのスタイル調整 */
.activity_box:nth-child(3) .activity_number {
  color: #2D9CD2;
}

.activity_box:nth-child(3) .activity_header h4 {
  color: #2D9CD2;
}

/* レスポンシブ対応 */
@media screen and (max-width: 820px) {
  .activities_content {
    padding: 80px 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .space{
    margin: 0 0 30px !important;
  }
  .activity_body > p{
    font-size: 18px;
    margin-bottom: 35px;

  }
  
  .activity_box {
    padding: 20px;
    margin-bottom: 0;
    border-radius: 20px;
  }
  
  /* 01番のテーマボックス専用レイアウト */
  .theme_box {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    margin-bottom: 0;
  }
  
  /* 画像を上部に大きく配置 */
  .theme_box .activity_image_overlay {
    position: static;
    text-align: center;
    margin: 0 0 55px 0;
    order: 1;
  }
  
  .theme_box .activity_image_overlay img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
  }
  
  /* 白枠の中にヘッダーとボディを配置 */
  .theme_box .activity_header {
    order: 2;
    padding: 45px 20px 10px 20px;
    margin-bottom: 0;
    background-color: white;
    border-radius: 20px 20px 0 0;
    margin: 0;
  }
  
  .theme_box .activity_body {
    order: 3;
    padding: 40px 20px 5px 20px;
    border-radius: 0 0 20px 20px;
    margin-top: 0;
    background-color: white;
    margin: 0 ;
  }
  
  /* 他のボックスのモバイル対応 */
  .activity_box:not(.theme_box) .activity_body {
    flex-direction: column;
    gap: 20px;
    padding: 40px 20px 50px 20px;

  }
  
  .activity_box:not(.theme_box) .activity_image {
    align-self: center;
  }
  
  .activity_box:not(.theme_box) .activity_image img {
    width: 150px;
    height: 150px;
  }
  
  .activity_header h4 {
    font-size: 36px;
  }
  
  .activity_number {
    font-size: 36px;
  }
  
  .theme_item h5 {
    font-size: 20px;
  }
  
  .theme_item p {
    font-size: 18px;
  }
  
  .expert_logos {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .expert_item:nth-child(3) {
    grid-column: 1;
    grid-row: auto;
  }
  
  .expert_item img {
    max-width: 350px;
    width: 100%;
  }
   .news-item {
    max-width: 100%;
  }
  .expert_item p {
    text-align: left;
  }
}

@media screen and (max-width: 480px) {
  .activity_box {
    padding: 0px;
  }
  
  .activity_header {
    align-items: flex-start;
    gap: 10px;
    padding: 45px 20px 10px 20px;
    margin: 0;
  }
  
  .theme_box .activity_image_overlay img {
    width: 100%;
    height: 100%;
  }
  
  .activity_box:not(.theme_box) .activity_image img {
    width: 120px;
    height: 120px;
  }
 
}

#activities {
  scroll-margin-top: 100px; /* ヘッダーの高さ＋余白分 */
}

@media (min-width: 769px) and (max-width: 1024px) {
  .activities_content{
    max-width: 800px;
  }
}

/* お知らせ一覧ページ専用のスタイル */
.wrapper.news-page .no-posts {
  text-align: center;
  font-size: 18px;
  color: #666;
  padding: 60px 0 ;
  margin: 0 auto;
  width: 1000px;
}
.news-page{
  padding: 0 0 100px;
}



/* カテゴリー表示のスタイル */
.wrapper.news-page .news-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 8px;
}

.wrapper.news-page .news-category {
  display: flex;
  gap: 5px;
}

.wrapper.news-page .news-category a {
  display: inline-block;
  background-color: #fafafa;
  color: #707070;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid #707070;
  text-decoration: none;
  white-space: nowrap;
}

.wrapper.news-page .news-category a:hover {
  background-color: #e0e0e0;
  color: #333;
}

/* front-page用のカテゴリー表示スタイル */
.wrapper.company .news-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 8px;
}

.wrapper.company .news-category {
  display: flex;
  gap: 5px;
}

.cat-name {
  display: inline-block;
  background-color: #fafafa;
  color: #707070;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid #707070;
  text-decoration: none;
  white-space: nowrap;
}

.wrapper.company .news-category a:hover {
  background-color: #e0e0e0;
  color: #333;
}

/* front-page用のレスポンシブ対応 */
@media screen and (max-width: 768px) {
  .wrapper.company .news-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .wrapper.company .news-category a {
    font-size: 11px;
    padding: 3px 10px;
  }
}

/* レスポンシブ対応 - お知らせ一覧ページ専用 */
@media screen and (max-width: 1024px) {
  .wrapper.news-page .no-posts {
    width: 95%;
    padding: 40px 20px;
  }
}

@media screen and (max-width: 768px) {
  .wrapper.news-page .no-posts {
    width: 100%;
    padding: 30px 15px;
    font-size: 16px;
  }
  
  .wrapper.news-page .news-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .wrapper.news-page .news-category a {
    font-size: 11px;
    padding: 3px 10px;
  }
}
@media screen and (min-width:820px) and ( max-width:1024px) {
  .news-item{
    width: 100%;
  }
}

fieldset {
  display: none;
  padding: 0;
  margin: 0;
}
#service {
  background: url("../img/bg1.png");
}
.introduction {
  padding-bottom: 50px;
}
.introduction_logo img {
  width: 400px;
}
.organization_info h3 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
}
.gray {
  background-color: #F5F5F5;
  padding-bottom: 15px;
}
.intro_img img {
  width: 600px;
}
.taisei_top {
  display: flex;
  position: relative;
  margin-bottom: 30px;
}
.taisei_left {
  font-size: 26px;
  font-weight: bold;
  position: relative;
  bottom: 0px;
  top: 50%;
  left: 50px;
  transform: translateY(33%);
}
#activities {
  position: relative;
}
.service_bg {
  height: 400px;
  position: absolute;
  top: 0;
  z-index: -1;
}
.service_bg img{
  width: 100%;
  height: auto;
}
#contact {
  background-color: #f5f5f5;
}
@media screen and (max-width: 768px) {
  .taisei_top {
    display: block;
  }
  .intro_img img {
    width: 100%;
  }
  .taisei_left {
    font-size: 22px;
    left: 15px;
  }
  .activities_content_gray .activity_box {
    width: 100%;
  }
  .mission_box {
    padding: 30px 0;
    width: 94%;
    display: block;
    margin: 0 auto;
  }
  .news_bg {
    width: 94%;
    padding: 10px 0 20px 0;
  }
  .news-item {
    padding: 10px 0;
    width: 94%;
  }
  .gray {
    width: 94%;
    margin: 0 auto;
  }
  .taisei_top.gray {
    background-color: #fff;
    width: 100%;
  }
  .taisei_sp {
    text-align: center;
    font-size: 18px;
    background-color: #f5f5f5;
    padding: 20px 0 20px 0;
    margin-bottom: 30px;
  }
  .organization_info h3 {
    margin-bottom: 0px;
  }
  .expert_item img {
    margin-top: 0px;
    margin-bottom: 30px;
  }
  #service {
    background: url("../img/intoro_bg.png");
    background-size: cover;
  }
}
.senmon {
  margin-top: 30px;
}

.wpcf7-response-output {
  margin-top: 30px;
  text-align: center;
}
.expert_logos a img:hover {
  opacity: 0.8;
}
