/* --- Reset CSS --- */
*,
*::before,
*::after {
 box-sizing: border-box;
}
:root {
  --base-color01: #0071bc; /*紺色*/
  --base-color01: #2ab5bc; /*エメラルドグリーン*/
  --base-color02: #e95513; /*オレンジ*/
}
body, h1, h2, h3, p, figure, blockquote, dl, dd {
 margin: 0;
}

ul,
ol {
 margin: 0;
 padding: 0;
 list-style: none;
}
a {
 text-decoration: none;
 color: inherit;
}
img {
 display: block;
 max-width: 100%;
 height: auto;
}
/* --- End Reset CSS --- */

a:hover {
 opacity: .7;
}
.highlight70 {
 background: linear-gradient(transparent 70%, #ffff80 70%);
}
.bold {
 font-weight: bold;
}
body {
 margin: 0;
 font-family: 'Noto Sans JP', sans-serif;
 /*background-color: #f0f2f5; /* ページ全体の背景色を薄いグレーに設定 */
}

.hero-header {
 background-color: #013a7c; /* 古いブラウザ用の単色背景 */
 background-image: 
  url('../images/header.png'),
  linear-gradient(to right, #013a7c, #2e77c5, #67b8ff);
 background-position: 
  center bottom,
  center;
 background-repeat: 
  no-repeat,
  no-repeat;
 background-size: 
  1200px auto,
  100% 100%;
 height: 360px;
 color: white;
 display: block;
}
.hero-header > a {
  display: block;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
 .hero-header > a {
  width: 1200px;
  margin: 0 auto;
}
}
.hero-text {
  /* テキストを画面外に飛ばして非表示にするテクニック */
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
}
@media (max-width: 768px) {
 .hero-header {
background-size: 
      cover,      /* 画像でエリア全体を覆う（画面幅にフィット） */
      100% 100%;
    height: auto; /* 高さを自動調整に */
    aspect-ratio: 1200 / 360; /* 画像の縦横比を維持 */
  }
}
.container {
 max-width: 950px;
 margin: 0 auto;
 /*padding: 0 20px;*/
 position: relative; 
}
@media (max-width: 768px) {
 .container {
  padding: 15px;
 }
}
/* --- ボタン --- */
p.submit_bt {
    margin-top: 20px;
 }

p.submit_bt a {
    display: inline-block;
    padding: 15px 40px;
    color: #fff;
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px; /* 角を完全に丸くする */
    background: linear-gradient(to right, #ef8e2e, #e53d2b); /* グラデーション */
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);*/
    /*text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);*/
    transition: all 0.3s ease;
 }

p.submit_bt a:hover {
    /*transform: translateY(-3px);
    trbox-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);*/
 }



/* --- 導入 --- */
.intro-section {
 padding-top: 100px;
 padding-bottom: 80px;
 position: relative; /* 疑似要素を配置する基準 */
 overflow: hidden; /* はみ出した背景画像を見えなくする */
 text-align: center;
}
@media (max-width: 768px) {
 .intro-section {
  padding-top: 20px;
  padding-bottom: 0;
 }
}
.intro-section .container {
 position: relative; /* テキストを背景の上に表示させるため */
 z-index: 1;
}
/* 背景画像を設定する疑似要素 */
.intro-section::before {
 content: '';
 position: absolute;
 z-index: 0; /* テキストの背後に配置 */
 background-image: url('../images/bg-item01.png'); /* 画像のパスを指定 */
 background-repeat: no-repeat;
 background-size: contain;
 width: 380px;
 height: 380px;
 bottom: 80px;
 left: calc(50% - 570px);
 opacity: 1;
}

.intro-section h2 {
 font-size: 2.8em;
 margin-bottom: 15px;
}
.intro-section h3 {
 background-color: #013a7c;
 color: #FFF;
 font-size: 1.8em;
 padding: 5px;
 margin-bottom: 50px;
 background: linear-gradient(to right, #013a7c, #2ab6bc);
}
@media (max-width: 768px) {
 .intro-section h3 {
  margin-bottom: 30px;
 }
}
.intro-section p.lead {
 font-size: 1.5em;
 line-height: 2;
 margin-bottom: 55px;
}
@media (max-width: 768px) {
 .intro-section p.lead {
 font-size: 1.2em;
 line-height: 1.7;
 margin-bottom: 20px;
}
}
.intro-section p.btinfo {
 font-size: 1.5em;
 font-weight: bold;
 align-items: center;
}

 /* リンクの共通スタイル */
 /*.intro-section p.btinfo .icon-link {
  display: inline-flex;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  color: #333;
  text-decoration: none;
 }*/

 /* アイコンの共通スタイル */
 .intro-section p.btinfo .icon {
  color: #e95420; /* 矢印の色 */
  font-size: 0.9em; /* 文字に対する矢印の大きさ */
  line-height: 1;
 }

 /* 左右の矢印とテキストの間隔 */
.intro-section p.btinfo .icon-left {
  margin-right: 15px;
 }
.intro-section p.btinfo .icon-right {
  margin-left: 15px;
 }
 
 /* ★★★ 修正点：Google Fontsのアイコンに、専用のフォントを指定する ★★★ */
 .intro-section p.btinfo .material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: 700; /* 矢印の太さを調整 */
  font-style: normal;
 }

.intro-section p.submit_bt {
 }

.intro-section p.submit_bt a {
 }

.intro-section p.submit_bt a:hover {
 }


/* --- 新着情報セクションのスタイル --- */
.news-section {
 position: relative; /* 疑似要素を配置するための基準 */
 background-color: #ffffff; /* 上部の色（白） */
 /*padding: 80px 0;*/
 padding-bottom: 80px;
 text-align: center;
 overflow: hidden; /* はみ出した疑似要素を隠す */
}
@media (max-width: 768px) {
 .news-section {
 padding: 40px 0;
}
}
/* 疑似要素でclip-pathを使って複雑な形状を作成 */
.news-section::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 100%; 
 height: 100%;
 background-color: #f0f2f5; /* 下部の色（グレー） */
 /*clip-path: polygon(0% 40%, 10% 40%, 90% 10%, 100% 10%, 100% 100%, 0% 100%);*/
 clip-path: polygon(0% 25%, 10% 25%, 90% 0%, 100% 0%, 100% 100%, 0% 100%);
 z-index: 0;
}

/* containerが疑似要素よりも手前に来るように */
.news-section .container {
 position: relative;
 z-index: 1;
 padding-top: 60px;
}


.news-section h2 {
 font-size: 2em;
 color: #0071bc;
 margin-bottom: 40px;
 font-weight: bold;
}

.news-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 30px;
 margin-bottom: 40px;
}

.news-card {
 background: #ffffff;
 border-radius: 15px;
 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 overflow: hidden;
 text-align: left;
 transition: transform 0.3s, box-shadow 0.3s;
 display: flex;
 flex-direction: column;
 position: relative;
}


/* --- ★★★ ここからが新しい矢印のスタイル ★★★ --- */
.news-card::after,
.news-card::before {
 content: '';
 position: absolute;
 transition: all 0.3s;
}

/* 青い背景図形 */
.news-card::after {
 width: 35px;
 height: 35px;
 background-color: #0071bc; /* 矢印の背景色 */
 border-top-left-radius: 35px;
 bottom: 0;
 right: 0;
 z-index: 1;
}

/* 白いシェブロン矢印 */
.news-card::before {
 width: 7px; /* 矢印のサイズ */
 height: 7px;
 border-right: 2px solid white; /* 矢印の線の太さと色 */
 border-bottom: 2px solid white;
 transform: rotate(-45deg);
 bottom: 12px; /* 位置調整 */
 right: 12px; /* 位置調整 */
 z-index: 2;
}


.news-card:hover {
 /*transform: translateY(-5px);
 box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);*/
}

.news-card img {
 width: 100%;
 height: auto; /* 固定高さを削除 */
 aspect-ratio: 400 / 200; /* 縦横比を指定 */
 object-fit: cover;
}

.news-card-content {
 padding: 20px;
 display: flex;
 flex-direction: column;
 flex-grow: 1;
}

.news-card-date {
 font-size: 1em;
 color: #0071bc;
 margin: 0 0 10px;
}

.news-card-title {
 font-size: 1em;
 font-weight: normal;
 /*color: #333;*/
 line-height: 1.5;
 margin: 0 0 15px;
}

.news-card-link {
 display: inline-flex;
 align-items: center;
 text-decoration: none;
 color: #0071bc;
 font-weight: bold;
 align-self: flex-end;
 margin-top: auto;
}

.news-card-link span {
 margin-right: 5px;
}
.news-card-link .material-symbols-outlined {
 font-size: 1.2em;
}



.view-more {
 text-align: center;
}
.view-more-btn {
 display: inline-flex;
 align-items: center;
 background-color: #ffffff;
 padding: 15px 50px;
 border-radius: 50px;
 text-decoration: none;
 border: 1px solid #ddd;
 box-shadow: 0 3px 8px rgba(0,0,0,0.05);
 transition: all 0.3s;
 position: relative;
 cursor: pointer;
}
.view-more-btn:hover {
 /*background-color: #f8f8f8;
 transform: translateY(-2px);*/
}
.view-more-btn-icon {
 margin-left: 10px;
 font-size: 1.2em;
}
.view-more .material-symbols-outlined {
 color: #0071bc;
 position: absolute;
 top: 50%;
 right: 15px; 
 transform: translateY(-50%); 
}

/* --- 紹介 --- */
.purpose-section {
 
}
.purpose-section .first_block{
 margin: 60px 0 20px;
 text-align: center;
}
@media (max-width: 768px) {
 .purpose-section .first_block{
  margin: 0;
  margin-bottom: -10px;
 }
}
.purpose-section .first_block h2{
 color: #0071bc;
 margin-bottom: 60px;
 position: relative;
}
.purpose-section .first_block h2 .h2icon{
 font-size: 3em;
 color: #e95513;
 position: absolute;
 /*top: 20px;*/
 bottom: -50px;
 left: 50%;
 transform: translateX(-50%);
}

.purpose-section .second_block{
 background-color: #d1e4ef;
 background: linear-gradient(to right, #d2e4ef, #eaf5f2); 
}
.purpose-section p.purpose_box {
 padding: 55px 280px 55px 0;
 font-size: 1.15em;
 position: relative;
 line-height: 1.8;
}
@media (max-width: 768px) {
 .purpose-section p.purpose_box {
  padding: 0;
 }
}
.purpose-section p.purpose_box::before {
 content: '';
 position: absolute;
 z-index: 0; /* テキストの背後に配置 */
 background-image: url('../images/bg-item02.png'); /* 画像のパスを指定 */
 background-repeat: no-repeat;
 background-size: contain;
 width: 248px;
 height: 281px;
 top: 20px;
 right: 0;
 opacity: 1;
}
@media (max-width: 768px) {
 .purpose-section p.purpose_box::before {
  background-image: none;
 }
}
/* --- 注意書き --- */
.note-section {
 background-color: #0e7bb0;
 background: linear-gradient(to top right, #0e7bb0, #33b9bc);
 padding-top: 80px;
 padding-bottom: 80px;
}
.note-section .container{
 background-color: #FFF;
 padding: 60px 65px;
 border-radius: 30px;
 position: relative;
}
@media (max-width: 768px) {
 .note-section .container{
  padding: 15px;
  margin: 0 10px;
 }
}
.note-section .container::before {
 content: '';
 position: absolute;
 z-index: 0; /* テキストの背後に配置 */
 background-image: url('../images/bg-item03.png'); /* 画像のパスを指定 */
 background-repeat: no-repeat;
 background-size: contain;
 width: 304px;
 height: 297px;
 top: 150px;
 right: 65px;
 opacity: 1;
}
@media (max-width: 768px) {
 .note-section .container::before {
  background-image: none;
 }
}
.note-section h2 {
 font-size: 2em;
 text-align: center;
 margin-bottom: 5px;
}
.note-section h3 {
 background-color: #013a7c;
 color: #FFF;
 font-size: 1.5em;
 padding: 5px;
 margin-bottom: 50px;
 background: linear-gradient(to right, #013a7c, #2ab6bc);
 text-align: center;
}
.note-section h4 {
 margin-top: 0;
 text-align: center;
 font-size: 1.25em;
 margin-bottom: 45px;
}
@media (max-width: 768px) {
 .note-section h4 {
  margin-bottom: 20px;
 }
}
.note-section h4 span {
 display: block;
 font-size: 0.8em;
 color: #E95513;
 font-weight: normal;
}
.note-section .h4icon {
 margin-top: 45px;
 font-size: 2em;
 text-align: center;
}
@media (max-width: 768px) {
 .note-section .h4icon {
  margin-top: 25px;
 }
}
.note-section .pdf-link {
 margin: 70px 0;
}
.note-section .pdf-link p.submit_bt a{
 background: linear-gradient(to right bottom, #32b8bb, #013a7c);
}
.note-section .gradient-icon {
 background-image: linear-gradient(to top right, #0e7bb0, #33b9bc);
 background-size: 100%;
 -webkit-background-clip: text;
 -moz-background-clip: text;
 -webkit-text-fill-color: transparent; 
 -moz-text-fill-color: transparent;
}
.note-section .note_bt {
 margin-bottom: 30px;
  margin-top: -10px;
}
.note-section .noteDl {
 display: flex;
 flex-wrap: wrap;
 font-size: 1.1em;
}
.note-section .noteDl dt{
 width: 15%;
 padding-right: 20px;
 margin-bottom: 20px;
 text-align: center;
 color: #FFF;
 box-sizing: border-box;
}
@media (max-width: 768px) {
 .note-section .noteDl dt{
  width: 100%;
  padding-right: 0;
  margin-bottom: 5px;
 }
}
.note-section .noteDl dt span{
 display: inline-block;
 width: 100%;
 background: linear-gradient(to right, #013a7c, #2ab6bc);
 padding: 5px;
}
.note-section dd .program_list {
 font-size: 1em;
 color: #000;
 margin-top: 5px;
}
.note-section .noteDl dd{
 width: 80%;
 padding: 5px;
 margin-bottom: 20px;
}
@media (max-width: 768px) {
 .note-section .noteDl dd{
  width: 100%;
  margin-bottom: 5px;
 }
}
.note-section .noteDl dd span.date{
 padding-top: 0;
 font-size: 1.4em;
 font-weight: 600;
 color: #0071bc;
}
.note-section .noteDl dd.red{
 color: #E95513;
}
.note-section .noteOl {
 
}
.note-section .noteOl {
    list-style: none; /* デフォルトの数字を消す */
    padding: 0;
    margin: 0 auto;
    max-width: 800px; /* リストの最大幅 */
    counter-reset: step-counter; /* 数字カウンターをリセット */
 }
.note-section .noteOl li {
    counter-increment: step-counter; /* カウンターを1増やす */
    display: flex;
    align-items: flex-start; /* 数字とテキストの上端を揃える */
    text-align: left;
    line-height: 1.8;
 margin-bottom: 20px; /* 各項目の下の余白 */
 }
.note-section .noteOl li::before {
    content: counter(step-counter); /* カウンターの数字を表示 */
    flex-shrink: 0; /* 数字が縮まないようにする */
    width: 20px; /* 丸の幅 */
    height: 20px; /* 丸の高さ */
    background-color: #0071bc; /* 丸の背景色 */
    color: #FFF; /* 数字の色 */
    font-weight: bold;
    border-radius: 50%; /* これで円になる */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px; /* 数字とテキストの間隔 */
    font-size: 0.9em;
 position: relative; /* 位置調整のため */
    top: 4px; /* ★★★ ここで垂直位置を微調整 ★★★ */
 }
.note-section .noteUl {
 
}

.note-section .noteUl {
    list-style: none; /* デフォルトの黒丸を消す */
    padding: 0;
    margin: 0 auto;
    max-width: 800px; /* リストの最大幅 */
    text-align: left;
 }
.note-section .noteUl li {
    display: flex;
    align-items: flex-start; /* 丸とテキストの上端を揃える */
    margin-bottom: 20px; /* 各項目の下の余白 */
    line-height: 1.8;
 }
 .note-section .noteUl li::before {
    content: ''; /* 中身は空にする */
    flex-shrink: 0;
    width: 10px; /* オレンジの丸の大きさ */
    height: 10px;
    background-color: #e95420; /* オレンジ色 */
    border-radius: 50%; /* 円にする */
    margin-right: 15px; /* テキストとの間隔 */
    margin-top: 8px; /* 垂直位置の微調整 */
 }


.note-section p.submit_bt {
 text-align: center;
 }
.note-section p.submit_bt a {
 padding: 15px 60px;
 }
@media (max-width: 768px) {
 .note-section p.submit_bt a {
  padding: 15px 40px;
 }
}
.note-section p.submit_bt a:hover {
 }

/* --- プログラム --- */
.program-section {
 position: relative;
 background-color: #ffffff; 
 overflow: hidden;
}
.program-section {
 position: relative; /* 疑似要素を配置する基準 */
 overflow: hidden; /* はみ出した背景画像を見えなくする */
 text-align: center;
}
.program-section .container {
 position: relative; /* テキストを背景の上に表示させるため */
 z-index: 1;
}
/* ドット柄の背景 */
.program-section::after {
  content: '';
  position: absolute;
  background-image: url('../images/bg-item01.png');
  background-repeat: no-repeat;
  background-size: contain;
  width: 380px;
  height: 380px;
  top: 0;
  left: calc(50% - 570px);
  opacity: 1;
  z-index: 0;
}
.program-section::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 100%; 
 height: 100%;
 background-color: #d3edf1; /* 下部の色（薄青） */
 clip-path: polygon(0 10%, 10% 10%, 90% 0, 100% 0, 100% 100%, 0 100%);
 z-index: 0;
}
.program-section .container {
 margin-top: 60px;
 margin-bottom: 60px;
}
.program-section h2 {
 font-size: 2em;
 color: #0071bc;
 margin-bottom: 40px;
 font-weight: bold;
 text-align: center;
}

.program-section .seminar-card {
 background-color: #FFF; /* 背景色 */
 border-radius: 20px;
 padding: 30px;
 margin: 0 auto 60px;
 box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
 text-align: left;
 
 display: flex;
 flex-wrap: wrap;
 }
@media (max-width: 768px) {
}
 .seminar-card-header {
 width: 100%;
 display: flex;
 align-items: center;
 gap: 30px; /* アバターと情報の間の隙間 */
 margin-bottom: 25px;
 }
@media (max-width: 768px) {
 .seminar-card-header {
  display: block;
 }
}
 .seminar-card-avatar {
 flex-shrink: 0;
 width: 140px;
 height: 140px;
 border-radius: 50%;
 padding: 5px; /* グラデーションの枠線の太さ */
 /* コニックグラデーションで円形の枠線を作成 */
 background: conic-gradient(from -90deg at 50% 50%, #0071bc 0%, #2ab5bc 40%, #0071bc 100%);
 /*background: linear-gradient(to right, #0071bc, #2ab5bc)；*/
 }
@media (max-width: 768px) {
 .seminar-card-avatar {
  width: 200px;
  height: 200px;
  padding: 10px;
  margin: 0 auto 20px;
 }
}
 .seminar-card-avatar img {
 width: 100%;
 height: 100%;
 border-radius: 50%;
 object-fit: cover;
 /*border: 3px solid white; /* 画像の内側の白い枠線 */
 }
 .seminar-card-info {
 width: 100%;
 }
 .seminar-card-title-wrapper {
 display: flex;
 align-items: center;
 gap: 15px;
 margin-bottom: 10px;
 font-size: 1.2em;
 }
@media (max-width: 768px) {
 .seminar-card-title-wrapper {
  display: block;
 }
}
 .seminar-card-number {
 background: linear-gradient(to right, #0071bc, #2ab5bc);
 color: white;
 padding: 5px 15px;
 font-size: 0.9em;
 font-weight: bold;
 }
 .seminar-card-title {
 font-weight: bold;
 margin: 0;
 }
@media (max-width: 768px) {
 .seminar-card-title {
 margin-top: 10px;
 }
}
 .seminar-card-divider {
 border: 0;
 height: 2px;
 background: #0071bc;
 margin: 0 0 10px;
 }
 .seminar-card-meta p {
 margin: 5px 0;
 font-size: 1.2em;
  font-weight: bold;
 }
 .seminar-card-body {
  width: 100%;
 line-height: 1.8;
 }
/* --- 終了プログラム --- */
.end-section {
 background-color: #FFF; 
}
.end-section .container {
 margin-top: 60px;
 margin-bottom: 60px;
}
@media (max-width: 768px) {
.end-section .container {
 margin-top: 30px;
 margin-bottom: 0;
}
}
.end-section h2 {
 font-size: 2em;
 color: #0071bc;
 margin-bottom: 20px;
 font-weight: bold;
 text-align: center;
}
.end-section h2 + p {
 margin-bottom: 40px;
 text-align: center;
}
.end-section .seminar-card {
 background-color: #edefef; /* 背景色 */
 border-radius: 20px;
 padding: 50px 30px 30px 30px;
 margin: 0 auto 60px;
 /*box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);*/
 text-align: left;
 position: relative;
 }
.end-section .seminar-card::before {
 content: "終了";
 color: #FFF;
 background: #0071bc;
 padding: 5px 20px;
 position: absolute;
 top:0;
 left: 62px;
}
/* --- フッター --- */
.foot-section {
 background-color: #0071bc;
 padding: 75px;
}
@media (max-width: 768px) {
.foot-section {
 padding: 0;
}
}
.foot-section h2{
 font-size: 2em;
 color: #FFF;
 text-align: center;
 margin-bottom: 40px;
}
.foot-section p.submit_bt {
 margin-top: 35px;
 text-align: center
 }
.foot-section p.submit_bt a {
 font-size: 1.25em;
 background: #FFF;
 color: #075b29;
 }
.foot-section p.submit_bt a:hover {

 }
.br-pc {
  display: block;
}
.br-sp {
  display: none;
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
  /* ★★★ ここからがスマホ用のフォントサイズ調整 ★★★ */
  /* 基本の文字サイズを少し小さくする */
  body {
    font-size: 15px;
  }
  
  /* --- ヘッダー --- */
  .hero-text h1 {
    font-size: 1.8em; /* 15px * 1.8 = 27px */
    line-height: 1.4;
  }
  .hero-text p {
    font-size: 0.9em; /* 15px * 0.9 = 13.5px */
  }

  /* --- イントロセクション --- */
  .intro-section h2 {
    font-size: 1.8em;
  }
  .intro-section .seminar-title {
    font-size: 1.1em;
  }
   .intro-section p {
    font-size: 1em;
  }

  /* --- プログラム & 新着情報 --- */
  .section-title {
      font-size: 1.6em; /* 15px * 1.6 = 24px */
  }
  .seminar-card-title {
    font-size: 1.2em;
  }
  .news-card-title {
    font-size: 1.1em;
  }
 
 .note-section h2 {
    font-size: 1.8em;
  }
 .note-section h3 {
    font-size: 1.3em;
  }
 .br-pc {
    display: none; /* PC用の改行を非表示に */
  }
  .br-sp {
    display: block; /* スマホ用の改行を表示 */
   content: ""; /* このspanを空のブロック要素として扱う */
    margin-top: -0.6em; /* 親要素のline-heightによる余分な隙間を打ち消す */
  }
 }
@media (max-width: 768px) {
 .news-grid {
  grid-template-columns: 1fr; /* スマホでは1列にする */
 }
}




/* --- 新着記事 --- */
.post-section {
 padding: 80px; 
 background-color: #FFF;
 position: relative;
}
@media (max-width: 768px) {
 .post-section {
 padding: 0; 
}
}
.post-section::before{
 content: '';
 position: absolute;
 z-index: 0;
 background-image: url(../images/bg-item01.png);
 background-repeat: no-repeat;
 background-size: contain;
 width: 380px;
 height: 380px;
 top: 200px;
 left: calc(50% - 650px);
 opacity: 1;
}
.post-section .date{
 color: #0071bc;
}
.post-section h2{
 padding: 20px 0 15px;
 font-size: 1.25em;
 font-weight: normal;
 border-bottom: solid 2px #0071bc;
 margin-bottom: 20px
}
.post-section .thumbnail{
 margin-bottom: 40px;
}
.post-section .thumbnail img{
 width: 100%;
}
.post-section .thumbnail .cap{
 margin-top: 25px;
}
.post-section .thumbnail .post-entry{

}
/* --- 新着記事フッター --- */
.postfoot-section {
 padding: 60px;
}
@media (max-width: 768px) {
.postfoot-section {
 padding: 0; 
}
}
.foot-section p.submit_bt {
 margin-top: 0;
}
.postfoot-section p.submit_bt a {
    font-size: 1.25em;
    background: #FFF;
    color: #000;
 font-weight: normal;
 position: relative;
}
.postfoot-section p.submit_bt a i{
 color: #0071bc;
 position: absolute;
 top: 50%;
 transform: translateY(-50%);
 right: 15px;
}