@charset "utf-8";

/*基本色
  --main-color: #459aa3;
  --accent-color: #d64d70;
  --dark-color: #0c485e;
  --gray-color: #e6e6e6;*/

/*基本設定：フォントサイズ*/
@media (max-width: 599px) {
  :root {
    font-size: 14px;
  }
}

@media (min-width: 600px) and (max-width: 799px) {
  :root {
    font-size: 16px;
  }
}

@media (min-width: 800px) {
  :root {
    font-size: 18px;
  }
}

body {
  font-size: 16px;
}

/*基本設定：ページ全体*/
body {
  margin: 0;
  font-family: 'メイリオ', 'Hiragino Kaku Gothic Pro', sans-serif;
}

/*コンテンツA：ヒーローイメージ*/
.conA {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  min-height: 450px;
  background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.3)), url(img/street.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
}

.conA.compact {
  height: 450px;
  min-height: 0;
  background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.3)), url(img/street.jpg);
}

.conA h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: sans-serif;
  font-size: 8vw;
  font-weight: normal;
}

.conA p {
  margin-top: 0;
  margin-bottom: 0;
  font-family: sans-serif;
  font-size: 4vw;
  font-weight: normal;
}

.conA img {
  margin-top: 60px;
  width: 30%;
  opacity: 0.7;
}

.conA a {
  width: 130px;
  display: block;
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 30px;
  border: solid 3px currentColor;
  border-radius: 6px;
  background-color: #d64d70;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  opacity: 0.8;
}

.conA a:hover {
  opacity: 1;
}


@media (min-width: 768px) {
  .conA h1 {
    font-size: 60px;
  }
  
    .conA p {
    font-size: 30px;
  }

}

/*コンテンツB：概要（アイコン＋テキスト）*/
.conB .container {
  padding-top: 80px;
  padding-bottom: 20px;
}

.conB .icon {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 40px;
  width: 2em;
  line-height: 2em;
  border-radius: 50%;
  text-align: center;
  background-color: #ddd;
  color: #fff;
}

.conB .text {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 60px;
  text-align: center;
}

.conB h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
}

.conB p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.8;
}

.conB a {
  color: #459aa3;
  text-decoration: none;
  font-weight: bold;
}

.conB a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .conB .container {
    display: flex;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .conB .text {
    flex: 1;
  }
  
  .conB p {
    font-size: 16px;
    line-height: 2;
  }
  
  .conB .QA {
    max-width: 65%;
  }
}

/*コンテンツC：概要（アイコン＋テキスト）*/
.conC {
  background-color: #459aa3;
  color: #fff;
}

.conC .text {
  padding: 20px;
}

.conC h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
}

.conC p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.8;
}

.conC a {
  display: inline-block;
  margin-top: 40px;
  padding: 10px 30px;
  border: solid 3px currentColor;
  border-radius: 6px;
  background-color: #d64d70;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.conC a:hover {
  opacity: 0.7;
}

.conC .photo {
  min-height: 200px;
  background-image: url(img/report.jpg);
  background-position: center;
  background-size: cover;
}

@media (min-width: 768px) {
  .conC .container {
    display: flex;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .conC .photo {
    flex: 0 0 400px;
  }
  
  .conC .text {
    flex: 1;
    padding: 50px 20px 50px 50px;
  }
}

/*コンテンツD：概要（アイコン＋テキスト）*/

.conD {
  margin-top: 2px;
}



.conD .text {
  padding: 20px;
}

.conD h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
}

.conD p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.8;
}

.conD img {
  width: 40%;
  opacity: 0.7;
}

.conD a {
  display: inline-block;
  margin-top: 40px;
  padding: 10px 30px;
  box-shadow: 0 0 0 1px #777;
  border: solid 3px currentColor;
  border-radius: 6px;
  background-color: #d64d70;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.conD a:hover {
  opacity: 0.7;
}

.conD .photo {
  min-height: 200px;
  background-image: url(img/graf.jpg);
  background-position: center;
  background-size: cover;
  background-position: bottom;
}

@media (min-width: 768px) {
  .conD .container {
    display: flex;
    flex-direction: row-reverse;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .conD .photo {
    flex: 0 0 400px;
  }
  
  .conD .text {
    flex: 1;
    padding: 50px 50px 50px 30px;
  }
}

/*フッター*/
footer {
  color: #fff;
  background-color: #0c485e;
  margin-top: 2px;
}

footer .container {
  padding: 40px 20px;
}

@media (min-width: 768px) {
  footer .container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footA {
    flex: 0 0 40%;
  }
  
  .footB {
    flex: 0 0 60%;
  }
  
  .footC {
    flex: 0 0 100%;
  }
  
}

/*フッターA:サイト情報*/
.footA {
  margin-bottom: 30px;
}

.footA img {
  width: 20%;
  max-width: 150px;
}

.footA h2 {
  margin-top: 0;
  margin-bottom: 0px;
  font-size: 26px;
}

.footA a {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: inherit;
  text-decoration: none;
}


/*フッターB:フッターメニュー*/
.footB div {
  margin-bottom: 30px;
}

.footB h3 {
  margin-top: 0;
  margin-bottom: 10px;
  border-bottom: solid 1px currentColor;
  font-size: 18px;
}

.footB ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footB a {
  display: block;
  padding: 5px;
  color: inherit;
  font-size: 14px;
  text-decoration: none;
}

.footB a:hover {
  background-color: rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
  .footB {
    display: flex;
  }
  
  .footB div {
    flex: 1;
  }
  
  .footB div:not(:first-child) {
    margin-left: 40px;
  }
}

/*フッターC:コピーライト*/
.footC {
  font-size: 12px;
  text-align: center;
  font-family: sans-serif;
}

/*フッターD：SNSメニュー*/
.footD {
  margin-top: 20px;
}

.footD ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footD a {
  display: block;
  margin-right: 10px;
  padding: 0;
  color: inherit;
  font-size: 16px;
  text-decoration: none;
  border: solid 1px currentColor;
  width: 2em;
  line-height: 2em;
  border-radius: 50%;
  text-align: center;
}

.footD a:hover {
  background-color: rgba(0,0,0,0.3);
}

/*ヘッダー*/
header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: rgba(255,255,255,0.9);
}

.nohero header {
  position: static;
  border-bottom: solid 1px #ddd;
}

/*アレンジ：ヘッダーを画面上部に固定*/
.head-fixed,
.nohero .head-fixed {
  position: fixed;
}

.nohero .head-fixed + * {
  margin-top: 60px;
}

/*ヘッダーA：サイト名*/
.headA {
  display: inline-block;
  line-height: 60px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #459aa3;
  color: #fff;
  font-family: sans-serif;
  font-size: 16px;
  text-decoration: none;
}

/*ヘッダーB:ナビゲーションメニュー*/
.headB ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.headB a {
  display: block;
  padding: 12px;
  color: inherit;
  font-size: 12px;
  text-decoration: none;
}

.headB a:hover {
  background-color: rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
  header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .headB ul {
    display: flex;
  }
}

/*ヘッダーC:トグルボタン*/
@media (max-width: 767px) {
  header .container-small {
    display: flex;
    align-items: center;
    justify-content: space-between; 
  }
  
  .headC {
    margin-right: 10px;
    padding: 0;
    border: none;
    outline: none;
    background: none;
    font-size: 28px;
    opacity: 0.6;
    cursor: pointer;
  }
  
  .headC:hover {
    opacity: 0.3;
  }
  
  .headB {
    display: none;
  }
}

@media (min-width: 768px) {
  .headC {
    display: none;
  }
  
  .headB {
    display: block !important;
  }
}


/*What's Newページ：更新リスト*/

.new .container {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  padding: 10px 20px;
}

.new h2 {
  padding-left: 0.5rem;
  border-left: solid 0.75rem #d64d70;
  font-size: 2rem;
}

.new li {
  font-size: 1.5rem;
  line-height: 2;
  border-bottom: dashed 1px gray;
}

.new li:nth-child(1) { 
  border-top: dashed 1px gray;
}

.new .blm-10 {
  margin-right : 10px;
  font-weight: bold;
  color: #459aa3;
}

.new div {
  margin-bottom: 20px;
}

.new ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.new a {
  display: block;
  padding: 5px;
  color: inherit;
  font-size: 14px;
  text-decoration: none;
}

.new a:hover {
  background-color: rgba(0,0,0,0.1);
}

/*Ｑ＆Ａ*/

.QA .container {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  padding: 0 20px 40px 20px;
}

.QA h2 {
  margin-top: 30px;
  padding-left: 0.4rem;
  border-left: solid 0.6rem #d64d70;
  font-size: 1.6rem;
}

.QA p {
  line-height: 2;
}

.QA .pont {
  margin-bottom: 30px;
  background-color: #e6e6e6;
  padding: 5px 10px;
  border-radius: 0.2em;
}

.QA .pont:before {
  content: '★';
  color: #459aa3;
  margin-right: 8px;
}

.QA a {
  color: #459aa3;
  text-decoration: none;
  margin-right: 5px;
  font-weight: bold;
}

.QA a:hover {
  text-decoration: underline;
}

.QA .question {
  margin-top: 20px;
  font-weight: bold;
  line-height: 2;
  color: #d64d70;
  border-top: dotted 1px gray;
  border-bottom: dotted 1px gray;
  background: #fffff4;
}

.QA .content {
  padding-bottom: 20px;
}


.QA .answer {
  color: #459aa3;
  font-weight: bold;
}

.QA ul {
  margin: 0;
  padding: 0 0 40px 0;
  list-style: none;
  line-height: 2;
}

.QA img {
    max-width: 100%;
  }

@media (min-width: 768px) {
  .QA .container {
    max-width: 600px;
  }
  
  .QA .content {
  padding-bottom: 40px;
  }
    
}



/*スケジュール*/
.schedule .container {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  padding: 10px 20px;
}

.schedule img {
  max-width: 100%;
}

.schedule h2 {
  padding-left: 0.5rem;
  border-left: solid 0.75rem #d64d70;
  font-size: 2rem;
}

 .schedule a {
  display: inline-block;
  margin-top: 40px;
  padding: 10px 30px;
  box-shadow: 0 0 0 1px #777;
  border: solid 3px currentColor;
  border-radius: 6px;
  background-color: #d64d70;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.schedule .form{
    background-color: #ffaa00;
    border: 0;
    border-radius: 0;
    font-size: 1em;
    padding: 10px 20px;
}

.schedule h3 {
    font-size: 1.1rem;
    margin: 24px 0 0 0;
}

.schedule p {
  font-size: 16px;
  line-height: 2;
  margin: 5px 0;
}

.schedule h3:before {
  content: '■';
  color: #459aa3;
  margin-right: 4px;
}

.schedule form p {
 margin-bottom: 20px;
}

.fom, textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 8px;
}

textarea {
    height: 120px;
}

input[type="submit"] {
    background-color: #ffaa00;
    border: none;
    font-size: 1em;
    padding: 5px;
    /* -webkit-appearance: none; */
}

@media (min-width: 768px) {
  textarea {
    height: 200px;
  }
    
  input[type="submit"] {
    width: 250px;
  }
}

/*ズーム*/
.zoom .container {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  padding: 10px 20px;
}

.zoom img {
  max-width: 100%;
}

.zoom h2 {
  padding-left: 0.5rem;
  border-left: solid 0.75rem #d64d70;
  font-size: 2rem;
}

.zoom a {
  display: inline-block;
  margin-top: 40px;
  padding: 10px 30px;
  box-shadow: 0 0 0 1px #777;
  border: solid 3px currentColor;
  border-radius: 6px;
  background-color: #d64d70;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.zoom #test {
  display: inline;
  margin-top: 40px;
  padding: 0;
  box-shadow: none;
  border: none;
  border-radius: 0;
  background-color: transparent;
  font-size: 1.2rem;
  color: #459aa3;
  text-decoration: none;
  font-weight: bold;
}

.zoom #test-s {
  display: inline;
  margin-top: 40px;
  padding: 0;
  box-shadow: none;
  border: none;
  border-radius: 0;
  background-color: transparent;
  font-size: 1.2rem;
  color: #459aa3;
  text-decoration: none;
  font-weight: bold;
}

.zoom h3 {
    font-size: 1.1rem;
    margin: 24px 0 0 0;
}

.zoom p {
  font-size: 16px;
  line-height: 2;
  margin: 5px 0;
}

.zoom h3:before {
  content: '■';
  color: #459aa3;
  margin-right: 4px;
}

.zoom .moniter {
  margin: 20px 0 20px;
}

.zoom .pont {
  margin-bottom: 30px;
  background-color: #459aa3;
  color: #fff;
  padding: 5px 10px;
  margin: 0 0 30px 0;
}

.zoom .mltxt {
  margin: 20px 10px;
}

.zoom .junb {
 opacity: 0.3;
}

.zoom .form{
    background-color: #ffaa00;
    border: 0;
    border-radius: 0;
    font-size: 1em;
    padding: 10px 20px;
}

.thanks a {
  color: #459aa3;
  text-decoration: none;
  margin-right: 5px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .zoom .container {
    max-width: 600px;
  }
}

/*ペイパル*/
.paypal .container {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  padding: 10px 20px;
}

.paypal img {
  max-width: 100%;
}

.paypal h2 {
  padding-left: 0.5rem;
  border-left: solid 0.75rem #d64d70;
  font-size: 2rem;
}

 .paypal a {
  display: inline-block;
  margin-top: 40px;
  padding: 10px 30px;
  box-shadow: 0 0 0 1px #777;
  border: solid 3px currentColor;
  border-radius: 6px;
  background-color: #d64d70;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.paypal h3 {
    font-size: 1.1rem;
    margin: 24px 0 0 0;
}

.paypal p {
  font-size: 16px;
  line-height: 2;
  margin: 20px 0;
}

.paypal h3:before {
  content: '■';
  color: #459aa3;
  margin-right: 4px;
}

@media (min-width: 768px) {
  textarea {
    height: 200px;
  }
    
  input[type="submit"] {
    width: 250px;
  }
}

/*Thanks*/
.thanks .container {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  padding: 10px 20px;
}

.thanks img {
  max-width: 100%;
}

.thanks h2 {
  font-size: 2rem;
  margin: 20px 0 0;
}

.thanks a {
  color: #459aa3;
  text-decoration: none;
  margin-right: 5px;
  font-weight: bold;
}


.thanks p {
  font-size: 16px;
  margin: 5px 0 50px;
}

.thanks p:before {
  content: '■';
  color: #459aa3;
  margin-right: 4px;
}

.thanks a {
  color: #459aa3;
  text-decoration: none;
  margin-right: 5px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .thanks .container {
    max-width: 600px;
  }
}


/*プロフィール*/
.prof .container {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  padding: 20px;
}

.prof h2 {
  margin-top: 20px;
  padding-left: 0.4rem;
  border-left: solid 0.6rem #d64d70;
  font-size: 1.6rem;
}

.prof a {
  color: #459aa3;
  text-decoration: none;
  margin-right: 5px;
  font-weight: bold;
}

.prof a:hover {
  text-decoration: underline;
}

.prof .leader {
  color: #459aa3;
}

.prof p {
  line-height: 2;
}

.prof img {
  margin: 20px 0;
  width: 100%;
}


/*道場*/
.link .container {
  max-width: 600px;
  margin:0 auto 20px auto;
  padding: 20px;
}

.link h2 {
  margin-top: 20px;
  padding-left: 0.4rem;
  border-left: solid 0.6rem #d64d70;
  font-size: 1.6rem;
}

.link p {
  margin: 0;
}

.link .name {
  margin-top: 30px;
}

.link .name:before {
  content: '●';
  color: #459aa3;
  margin-right: 4px;
}

.link a {
  color: #459aa3;
  text-decoration: none;
  margin-right: 5px;
}

.link a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .link .container {
    max-width: 600px;
  }
}


/*レポート一覧*/
.conA.report {
  height: 450px;
  min-height: 0;
  background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.3)), url(img/report.jpg);
}

.listA h1 {
  text-align: center;
}

.listA .container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.listA article {
  flex: 1 1 300px;
  display: flex;
}

.listA a {
  flex: 1;
  margin: 10px;
  display: block;
  border: solid 1px #ddd;
  color: inherit;
  text-decoration: none;
}

.listA a:hover {
  opacity: 0.5;
}

.listA .photo {
  min-height: 150px;
  background-position: center;
  background-size: cover;
}

.listA .text {
  margin: 10px;
}

.listA h2 {
  font-size: 18px;
  margin-top: 40px;
  padding-left: 0.4rem;
  border-left: solid 0.4rem #d64d70;
}

.listA p {
  font-size: 14px;
  opacity: 0.8;
}

/*レポート年間ページ*/
.post .container {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.post h1 {
  padding-left: 0.5rem;
  border-left: solid 0.75rem #d64d70;
  font-size: 2rem;
  margin-top: 40px;
}

.post img {
  max-width: 100%;
}

.post p {
  margin: 20px 0 30px 0;
  font-size: 1rem;
  line-height: 2;
}

.post .star:before {
  content: '★';
  color: #459aa3;
  margin-right: 4px;
}

.post .name {
  font-weight: bold;
  color: #459aa3;
}

.post .name2 {
  margin: 0;
  padding-top: 0.5em;
  font-weight: bold;
  color: #459aa3;
}

/*コラム一覧*/
.conA.column {
  height: 450px;
  min-height: 0;
  background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.2)), url(img/graf.jpg);
  background-position: bottom;
}

.lists {
  margin: 10px 0 60px 0;
  padding: 0 20px;
}

.listB .container {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.listB h2 {
  padding-left: 0.5rem;
  border-left: solid 0.75rem #d64d70;
  font-size: 2rem;
  margin-top: 40px;
}

.listB li {
  font-size: 2rem;
  line-height: 2;
  border-bottom: dashed 1px gray;
}

.listB li:nth-child(1) { 
  border-top: dashed 1px gray;
}

.listB .blm-10 {
  margin-right : 10px;
  font-weight: bold;
  color: #459aa3;
}

.listB .blm-11 {
  margin-left : 10px;
  font-weight: bold;
  color: #d64d70;
}

.listB div {
  margin-bottom: 20px;
}

.listB ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.listB a {
  display: block;
  padding: 5px;
  color: inherit;
  font-size: 14px;
  text-decoration: none;
}

.listB a:hover {
  background-color: rgba(0,0,0,0.1);
}

/*コラム記事ページ*/
.posts .container {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  padding: 0 20px;
}

.posts .bread {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.post .container:nth-child(1) {
  padding-top: 20px;
}

.post h1 {
  padding-left: 0.5rem;
  border-left: solid 0.75rem #d64d70;
  font-size: 2rem;
  margin: 20px 0;
}

.post img {
  max-width: 100%;
}

.post p {
  margin: 10px 0 20px 0;
  font-size: 1rem;
  line-height: 2;
}

.post .pont {
  margin-bottom: 30px;
  background-color: #e6e6e6;
  padding: 5px 10px;
  border-radius: 0.2em;
}

.post .title {
  font-weight: bold;
  font-size: 1.2em;
  color: #459aa3;
}

.post .mltxt {
  margin: 20px 10px;
}

.post .big {
  font-size: 2em;
  font-weight: bold;
  line-height: 1;
  color: #459aa3;
}

.post .star:before {
  content: '★';
  color: #459aa3;
  margin-right: 4px;
}

.post .color {
  color: #459aa3;
  margin: .5em 0;
}

.post .topic{
  font-weight: bold;
  color: #459aa3;
  margin: 20px 0 9px 0;
}

.post .question:before {
  content: 'Ｑ：';
  font-weight: bold;
  color: #d64d70;
  margin-right: 4px;
}

.post .answer:before {
  font-weight: bold;
  content: 'Ａ：';
  color: #459aa3;
  margin-right: 4px;
}

.post .A-san:before {
  font-weight: bold;
  content: 'Aさん：';
  color: #d64d70;
  margin-right: 4px;
}

.post .B-san:before {
  font-weight: bold;
  content: 'Ｂさん：';
  color: #d64d70;
  margin-right: 4px;
}

.post .chiba:before {
  font-weight: bold;
  content: 'チバ：';
  color: #459aa3;
  margin-right: 4px;
}

.post .name {
  font-weight: bold;
  color: #459aa3;
}

.post .note {
  margin: 20px 10px;
  font-weight:normal;
  font-size: .8em;
  line-height: 1.5;
}

.post .note02 {
  margin: 20px 0;
  font-weight:normal;
  font-size: .8em;
  line-height: 1.5;
}

.posts a {
  color: #459aa3;
  text-decoration: none;
  margin-right: 5px;
  font-weight: bold;
}

.posts a:hover {
  text-decoration: underline;
}

.post a {
  color: #459aa3;
  text-decoration: none;
  margin-right: 5px;
  font-weight: bold;
}

.post a:hover {
  text-decoration: underline;
}

/*コラム一覧からのジャンプの位置調整*/

/*瞑想01*/
#mca01, #mca02, #mca03, #mca04, #mca05, #mca06, #mca07, #mca08, #mca09, #mca10, #mca11, #mca12{
    padding-top: 100px;
    margin-top: -70px;
}

/*瞑想02*/
#mcb01, #mcb02, #mcb03, #mcb04, #mcb05, #mcb06, #mcb07, #mcb08, #mcb09, #mcb10, #mcb11, #mcb12{
    padding-top: 100px;
    margin-top: -70px;
}

/*日常コラム*/
#clc01, #clc02, #clc03, #clc04, #clc05, #clc06, #clc07, #clc08, #clc09, #clc10, #clc11, #clc12, #clc13, #clc14, #clc15{
    padding-top: 100px;
    margin-top: -70px;
}

/*愛と欲の８要素表*/
#cld01, #cld02, #cld03, #cld04, #cld05, #cld06{
    padding-top: 100px;
    margin-top: -70px;
}

/*その他*/
#cle01, #cle02, #cle03, #cle04, #cle05, #cle06, #cle07 {
    padding-top: 100px;
    margin-top: -70px;
}


/*パンくずリスト*/
.breadpst {
  padding: 0 20px;
}

.bread {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
}

.breadre {
  padding-top: 10px;
}

.bread_listA {
  padding-top: 10px;
  text-align: center
}

.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  display: inline;/*横に並ぶように*/
  list-style: none;
}

.breadcrumb li:after {/* >を表示*/
  content: '>';
  padding: 0 0.2em;
  color: #459aa3;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
  text-decoration: none;
  color: #555;/*色*/
  font-size: .9em;
  font-weight: normal;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}