@charset "UTF-8";
/*
Theme Name: ccscc
Theme URI: https://www.ccscc.jp
Author: CCSCC
Version: 1.0
*/
/* ----------------------------- リセット */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, var, b, i,
dl dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 100%;
}

/*body{line-height:1;}*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

img {
  vertical-align: top;
  /*font-size:0;*/
  line-height: 0;
}

sup {
  font-size: 8px;
}

em {
  font-style: normal;
}

/*div:before, div:after, ul:before, ul:after, ol:before, ol:after, dl:before, dl:after {
  content: "";
  display: block;
}*/

div:after, ul:after, ol:after, dl:after {
  clear: both;
}

div, ul, ol, dl {
  zoom: 1;
}

ul#wp-admin-bar-root-default:after {
  clear: none;
}


/* --- ベース設定 --- */
body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.8;
    background-color: #f9f9f9;
}
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; height: auto; vertical-align: bottom; }

/* --- カラーパレット（信頼のネイビー＆ゴールド） --- */
:root {
    --primary-color: #0f2350; /* 信頼のネイビー */
    --accent-color: #c5a059;  /* 権威のゴールド */
    --bg-light: #f4f7f6;
    --text-white: #ffffff;
}

/* --- 最上部バー --- */
.top-bar {
    background-color: var(--primary-color);
    color: var(--text-white);
    text-align: center;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

/* SP時 */
@media screen and (max-width: 900px) {

  .top-bar {
      display: none;
  }
}

.pc-only {
      display: block;
  }
.sp-only {
      display: none;
  }

@media screen and (max-width: 768px) {

  .pc-only {
      display: none;
  }

.sp-only {
      display: block;
  }

}


/* --- ヘッダー --- */
header {
    background: #fff;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* ロゴ部分 */
.logo {
    display: flex;
    align-items: center;
    gap: 10px; 
}
.logo-img {
    height: 50px; 
    width: auto;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    color: var(--primary-color);
    font-weight: bold;
}
.logo-text-main {
    font-size: 1.2rem;
    /*letter-spacing: 0.05em;*/
}
.logo-text-sub {
    font-size: 0.85rem;
    color: #555;
    font-weight: normal;
}

nav ul { display: flex; gap: 25px; align-items: center; }
nav a { font-weight: bold; font-size: 0.9rem; color: #333; }
nav a:hover { color: var(--primary-color); }

.btn-contact {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
}
.btn-contact:hover { background-color: #0a1735; }

/* =======================================
スマホ用 ハンバーガーメニュー
========================================= */

/* ハンバーガーボタン */
.menu-toggle {
  display: none;
  width: 40px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  margin: 6px 0;
  transition: 0.3s;
}

body.is-menu-open {
  overflow: hidden;
}

/* SP時 */
@media screen and (max-width: 900px) {

  header {
    flex-direction: row; /* 縦にしない */
  }

  .menu-toggle {
    display: block;
  }

  /* nav を隠す */
  .global-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    padding-top: 120px;
    display: none;
    z-index: 1000;
  }

  .global-nav ul {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }

  .global-nav a {
    font-size: 1.2rem;
  }

  /* 開いた状態 */
  .global-nav.is-open {
    display: block;
  }

  /* × に変形 */
  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}




/* --- メインビジュアル --- */
.hero {
    position: relative;
    /* 文字が見やすいように画像を少し暗くするオーバーレイ */
    /*background-color: #0f2350;
    color: #fff;*/
    overflow: hidden;
}
/* 背景画像の設定 */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6; /* 画像を少し暗くして文字を読みやすく */
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 1;
    padding: 120px 20px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
    /*text-shadow: 0 2px 10px rgba(0,0,0,0.5);*/
}
.hero p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    line-height: 2;
}
.hero-btn {
    background-color: var(--accent-color);
    color: #fff;
    padding: 15px 50px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.hero-btn:hover { background-color: #b08d4b; transform: translateY(-2px); }

/* --- コンテンツエリア共通 --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
}
.section-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
    font-weight: bold;
}
.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}
.section-desc {
    text-align: center;
    max-width: 800px;
    margin: -30px auto 50px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #555;
}

/* --- 企業のメリット（6つのグリッド） --- */
.merit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
}
.merit-item {
    background: #fff;
    border: 1px solid #ddd;
    border-top: 5px solid var(--primary-color);
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.merit-item h4 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 10px;
}
.merit-item p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    text-align: justify;
    line-height: 1.7;
}

/* --- 事業活動（カード） --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.feature-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}
.feature-card:hover { transform: translateY(-5px); }
.card-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 20px;
    font-weight: bold;
    font-size: 1.1rem;
    text-align: center;
}
.card-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column;}
.card-content h3 { color: var(--primary-color); margin-top: 0; font-size: 1.1rem; margin-bottom: 15px; line-height: 1.7;}
.card-content p { font-size: 0.95rem; color: #666; margin-bottom: 0; line-height: 1.7; flex-grow: 1;}

/* --- 代表挨拶エリア --- */
.message-section {
    background-color: #fff;
    padding: 80px 20px;
    border-top: 1px solid #eee;
}
.message-box {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center; /* 写真の高さに合わせて中央揃え */
}
.message-photo {
    flex: 1;
    min-width: 300px;
    position: relative;
}
/* 写真のスタイル設定 */
.message-photo img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 10px 10px 0px var(--accent-color); /* ゴールドの影でアクセント */
    border: 1px solid #eee;
}

.message-text { flex: 2; min-width: 300px; }
.message-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 10px;
    font-family: serif; 
}
.message-text .position {
    display: block;
    margin-bottom: 30px;
    color: #666;
    font-weight: bold;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 5px;
}
.message-text p { text-align: justify; margin-bottom: 20px; line-height: 1.9; }

@media screen and (max-width: 768px) {

  .message-text p {
      font-size: 0.8em;
  }

}

/* --- ニュースリスト --- */
.news-list {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.news-item {
    display: flex;
    flex-wrap: wrap;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.news-item:last-child { border-bottom: none; }
.news-date {
    font-weight: bold;
    color: var(--primary-color);
    width: 120px;
}
.news-title { flex: 1; font-weight: bold; }
.news-title a { display: block;}
.news-title a:hover { color: var(--accent-color); text-decoration: underline; }

.news-btn {
    background-color: var(--accent-color);
    color: #fff;
    padding: 15px 60px;
    font-size: 1.2rem;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.news-btn:hover { background-color: #fff; color: var(--primary-color); }


@media (max-width: 767px) {

  .news-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-date {
    width: auto;
    margin-bottom: 6px;
    font-size: 0.85rem;
  }

  .news-title {
    width: 100%;
    font-size: 0.8em;
    line-height: 160%;
  }

}


.single-content {margin: 40px 0;}

.single-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  gap: 20px;
}

.single-nav a {
  text-decoration: none;
  font-weight: 500;
}

.single-nav-prev,
.single-nav-next {
  width: 30%;
}

.single-nav-archive {
  width: 40%;
  text-align: center;
}


/* --- 支援者・入会エリア --- */
.support-section {
    background-color: var(--primary-color);
    text-align: center;
    color: #fff;
    padding: 80px 20px;
}
.support-section h2 { 
    color: #fff; 
    font-size: 1.8rem;
    margin-bottom: 30px;
}
.support-btn {
    background-color: var(--accent-color);
    color: #fff;
    padding: 15px 60px;
    font-size: 1.2rem;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.support-btn:hover { background-color: #fff; color: var(--primary-color); }

.logo-grid {
    /*display: flex;
    flex-wrap: wrap;
    justify-content: center;*/
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}
/* タブレット */
@media (max-width: 1024px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* スマホ */
@media (max-width: 640px) {
  .logo-grid {
    grid-template-columns: 1fr;
  }
}


.logo-box {
    /*width: 160px;
    height: 80px;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f2350;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 4px;*/
    display: block;
    aspect-ratio: 3 / 1;
    overflow: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-box img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  background: #FFF;
}

.logo-box:hover {
  transform: translateY(-4px);
  opacity: 0.9;
}


/* --- フッター --- */
footer {
    background-color: #050d20; 
    color: #aaa;
    padding: 60px 5% 20px;
    font-size: 0.9rem;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto 40px;
    gap: 40px;
}
.footer-info h2 { color: #fff; font-size: 1.3rem; margin-bottom: 15px; }
.footer-links ul { line-height: 2.2; }
.footer-links a { color: #ccc; }
.footer-links a:hover { color: #fff; }
.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.8rem;
}
.footer-content .bnr {
    display: flex;
    flex-direction: row;
    max-width: 400px;
    margin: 30px 0 0 0;
    gap: 10px;
}
.footer-content .bnr img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-content .bnr > div {
  display: flex;
  align-items: center;
}


/* スマホ対応 */
@media (max-width: 900px) {
    header { flex-direction: row; gap: 5px; }
    nav ul { flex-wrap: wrap; justify-content: center; }
    .logo { flex-direction: row; gap: 5px; text-align: left; }
    .logo-text-main { font-size: 0.8rem;}
    .logo-text-sub { font-size: 0.7rem;}
    .logo-img { height: 30px; width: auto;}
    .hero h1 { font-size: 1.6rem; }
    .hero-content { padding: 60px 20px; }
    .merit-grid, .features-grid { grid-template-columns: 1fr; }
    .message-box { flex-direction: column; }
    .message-photo { width: 100%; min-width: auto; }

}


/* =======================================
お問い合わせフォーム
========================================*/
.wpcf7 {
  max-width: 720px;
  margin: 0 auto;
}

/* 各項目 */
.form-item {
  margin-bottom: 24px;
}

.form-item label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
}

/* 入力系 */
.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
}

.form-textarea {
  min-height: 160px;
  resize: vertical;
}

/* フォーカス */
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #333;
}

/* キャプチャ */
.form-captcha img {
  display: block;
  margin-bottom: 8px;
}

/* 送信ボタン */
.form-submit {
  text-align: center;
  margin-top: 40px;
}

.form-submit-btn {
  background: #111;
  color: #fff;
  padding: 14px 48px;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.3s;
}

.form-submit-btn:hover {
  opacity: 0.8;
}

/* エラー表示 */
.wpcf7-not-valid-tip {
  color: #c00;
  font-size: 0.85rem;
  margin-top: 4px;
}

.wpcf7-response-output {
  margin-top: 24px;
  padding: 16px;
  border-radius: 6px;
}

.label-text::after {
  content: " *";
  color: #c00;
  margin-left: 4px;
}

.wpcf7-form.submitting {
  opacity: 0.6;
  pointer-events: none;
}
.wpcf7 input[name^="captcha-"] {
  width: 140px;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}


/* =======================================
記事詳細
========================================*/
#entrybody {
  font-size: 16px;
  font-size: 1.6rem;
  margin-top: 0;
  word-break: break-all;
  line-height: 180%;
}
#entrybody a {
  color: #22ABD8;
  text-decoration: underline;
}
#entrybody a:hover {
  text-decoration: none;
}
#entrybody ul, #entrybody ol {
  margin-top: 12px;
  margin-bottom: 12px;
  list-style-position: inside;
  text-align: left;
}
#entrybody ul ul, #entrybody ul ol, #entrybody ol ul, #entrybody ol ol {
  margin-left: 2em;
}
#entrybody ul li, #entrybody ol li {
  text-align: left;
}
#entrybody ol {
  list-style-type: decimal;
}
#entrybody li ul {
  margin-top: 3px;
}
#entrybody li li {
  font-size: 13px;
  font-size: 1.3rem;
}
#entrybody strong,
#entrybody strong span {
  font-weight: bold !important;
}
#entrybody span strong,
#entrybody del strong,
#entrybody em strong {
  font-weight: bold !important;
}
#entrybody em {
  font-style: italic !important;
}
#entrybody dfn {
  font-style: normal;
  border-bottom: 1px dotted #333;
}
#entrybody p {
  font-size: 1.3rem;
  line-height: 180%;
  margin-bottom: 1.2em;
  clear: both;
  *zoom: 1;
}
#entrybody p:after {
  display: block;
  content: "";
  clear: both;
}
#entrybody blockquote {
  margin-top: 15px;
  margin-bottom: 15px;
  background: #d6e1e1;
  border-radius: 10px;
  padding: 4.545% 5%;
}
#entrybody blockquote cite {
  font-style: italic;
}
#entrybody blockquote p:last-child {
  margin-bottom: 0;
}
#entrybody blockquote a {
  color: #333;
}
#entrybody img {
  margin-bottom: 1em;
}
#entrybody iframe {
  max-width: 100%;
}
#entrybody .u-youtube-wrap {
  padding-top: 56.25%;
}
#entrybody h1 {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 150%;
}
#entrybody h2 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 150%;
  border-bottom: 1px solid #DADADA;
  padding-bottom: 25px;
  margin-bottom: 35px;
  position: relative;
  margin-top: 50px;
}
#entrybody h2:after {
  display: block;
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 180px;
  border-bottom: 4px solid #000000;
}
#entrybody h3 {
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 150%;
}
#entrybody h4 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 150%;
}
#entrybody h5 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 150%;
}
#entrybody h6 {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 150%;
}
#entrybody table {
  width: 100%;
}
#entrybody table thead {
  background-color: #000000;
  color: #fff;
  font-size: 15px;
  font-size: 1.5rem;
}
#entrybody table thead th,
#entrybody table thead td {
  border-color: #fff;
}
#entrybody table th,
#entrybody table td {
  border: 1px solid #d7e2e2;
  padding: 6px 8px;
  text-align: left;
}
#entrybody table th {
  font-weight: bold;
}

.alignleft,
img.alignleft {
  display: inline;
  float: left;
  margin-right: 20px;
  margin-top: 4px;
}

.alignright,
img.alignright {
  display: inline;
  float: right;
  margin-left: 20px;
  margin-top: 4px;
}

.aligncenter,
img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

img.alignleft,
img.alignright,
img.aligncenter {
  margin-bottom: 12px;
}

.wp-caption {
  border: none;
  background: #f1f1f1;
  color: #888;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 18px;
  text-align: center;
  margin-bottom: 20px;
  padding: 4px;
  border-radius: 0;
}
.wp-caption img {
  margin: 5px;
}
.wp-caption p.wp-caption-text {
  margin-bottom: 4px;
}

.wp-smiley {
  margin: 0;
}

body#tinymce ul,
body#tinymce ol {
  margin-bottom: 1.5em;
}
body#tinymce ul li {
  list-style: disc;
}
body#tinymce ol li {
  list-style: decimal;
}

@media screen and (max-width: 768px) {
  #entrybody {
    font-size: 16px;
    font-size: 1.6rem;
  }

  .alignleft,
  img.alignleft {
    margin-right: 0;
    float: none;
  }

  .alignright,
  img.alignright {
    margin-left: 0;
    float: none;
  }

  img.alignleft,
  img.alignright,
  img.aligncenter {
    margin-bottom: 10px !important;
  }
}





/*=======================================
ヘッダー
=========================================*/


.l-header .wid {
    margin-top: 240px;
    position: relative;
}


.l-header .wid::before {
    content: '';
    width: 1197px;
    height: 1218px;
    background-image: url(./img/bg_img01.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: -580px;
    right: -530px;
    z-index: -5;
}






/*=======================================
ページタイトル
=========================================*/

.page-header {
  padding: 60px 20px;
  background: #f5f5f5; /* 装飾用 */
}

.page-title {
  font-size: 2rem;
  text-align: center;
  margin: 0;
}


/*=======================================
パンくず
=========================================*/
/*=======================================
コンテンツ
=========================================*/
/*=======================================
フッター
=========================================*/


.l-footer p {
    margin-bottom: 60px;
}


.l-footer p {
    margin-left: 25%;

}


/*=======================================
ページトップ
=========================================*/



.catch {
    position: relative;

}

.catch::after {
    content: '';
    width: 434px;
    height: 434px;
    background-image: url(./img/bg_img03.svg);
    background-repeat: no-repeat;
    position: absolute;
    bottom: -70px;
    left: -580px;
    z-index: -5;
}



.catch p {
    font-weight: bold;
    font-size: 2.2rem;
}


.catch h3 {
    font-weight: bold;
    font-size: 3.5rem;
    line-height: 1.8em;
}

.catch .txt {
    margin: 60px 0 50px;
    line-height: 2.2em;
}

.catch .txt p {
    margin: 36px 0;
}




.project {
    margin: 150px 0;

}

.project .project_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;

}

.project .project_box::before,
.project .project_box::after {
    content: none;
}

.project .project_box p {
    font-weight: bold;
    font-size: 2rem;
    margin-top: 15px;

}

.information  {
    display: flex;
    flex-wrap: wrap;
}

.information .left_block {
    width: 360px;
    position: relative;
}

.information .right_block {
    width: calc(100% - 360px);
}


.information > div .more {
    right: 60px;
    top: 75px;
    display: inline-block;
    position: absolute;
    text-decoration: underline;
    letter-spacing: 0.1em;
    font-size: 1.8rem;
}


.information > div .more::after {
    content: "";
    display: inline-block;
    width: 11px;
    height: 11px;
    background-image: url(./img/arrow01_r.svg);
    background-repeat: no-repeat;
    vertical-align: middle;

}






.information .post_list .post {
    border-bottom: 1px #D6D6D6 solid;
    font-size: 1.8rem;

}
.information .post_list .post:last-of-type {
    border-bottom: 0px;
}
.information .post_list .post a {
    display: block;
    padding: 24px 0 24px 125px;
    font-weight: 600;
    position: relative;
}

.information .post_list .post a span {
    font-size: 2.0rem;
    color: #ABABAB;
    position: absolute;
    left: 0;
    top: 24px;
}






.about {
    margin-bottom: 100px;

}

.about .info {
    font-size: 2.2rem;
    font-weight: bold;
    margin-left: 30%;
    margin-bottom: 80px;
}
.about .info p {
    line-height: 1.6em;
    margin-bottom: 1.6em;

}


.about dl {
    display: flex;
    flex-wrap: wrap;
    margin-left: 30%;
}

.about dt {
    width: 120px;
    font-weight: bold;
}
.about dd {
    width: calc(100% - 120px);
    margin-bottom: 20px;
}

.about dd span {
    display: inline-block;
}



.info {
    position: relative;
}

.info::before {
    content: '';
    width: 792px;
    height: 521px;
    background-image: url(./img/img04.jpeg);
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: -860px;
    z-index: -5;
}


.info::after {
    content: '';
    width: 967px;
    height: 899px;
    background-image: url(./img/bg_img02.svg);
    background-repeat: no-repeat;
    position: absolute;
    bottom: -570px;
    left: -1035px;
    z-index: -10;;
}








.contact {
    margin-bottom: 120px;
}


.contact .form_data {
    margin-left: 25%;
    margin-top: -100px;
}






.contact {
    position: relative;
}

.contact::before {
    content: '';
    width: 519px;
    height: 519px;
    background-image: url(./img/bg_img04.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 20px;
    right: -500px;
    z-index: -5;
}







.contact dt {
  font-weight: bold;
  margin-bottom: 10px;
}
.contact dt::before {
  content: '任意';
  font-weight: 500;
    font-size: 1.3rem;
    border: 1px #000 solid;
    padding: 0 6px;
    display: inline-block;
    border-radius: 4px;
    line-height: 1.7em;
    margin-right: 10px;
    vertical-align: text-bottom;
}
.contact dt.req::before {
  content: '必須';
    background: #000;
    color: #FFF;
}




.contact dd {
    margin-bottom: 30px;
}
.contact dd input,
.contact dd textarea {
    background: #F9F9F9;
    border: 1px #E0E0E0 solid;
    border-radius: 3px;
    font-size: 2rem;
    padding: 8px 18px;
    box-sizing: border-box;
    line-height: 1.5em;
}
.contact dd input {
    width: 400px;
    max-width: 100%;
}
.contact dd textarea {
    max-width: 100%;
    min-width: 100%;
    max-height: 340px;
    min-height: 340px;
}

.contact input[type="checkbox"] {
    width: 28px;
    height: 28px;
    margin: 0 10px 0 0;
    vertical-align: bottom;
}
.contact .wpcf7-list-item {
    margin: 0 !important;
}




.contact .form_data input[type="submit"],
.contact .form_data input[type="button"] {
    background-color: #249B98;
    color: #FFF;
    border: 0;
    font-size: 2rem;
    font-weight: 500;
    font-family: "Zen Kaku Gothic New", YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic", "游ゴシック", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
    width: 300px;
    height: 60px;
    border-radius: 30px;
    margin-top: 30px;
    background-image: url(./img/arrow02_r.svg);
    background-repeat: no-repeat;
    background-position: center right 28px;
    cursor: pointer;

}

.contact .form_data input[type="submit"]:disabled,
.contact .form_data input[type="button"]:disabled {
    background: #bdd5d5;
    cursor: no-drop;

}



/* ----------------------------- タブレット（768～1024px） */
/* ----------------------------- スマホ（～767px） */
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 160%;
    min-width: initial;
  }
}


