@charset "utf-8";

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * メイン
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* -------------------------------------------------------------------------------------------------
   * セクショニング
/* ---------------------------------------------------------------------------------------------- */

#main {}

#main-contents {}

#main-contents div.body {
  padding-left:20px;
  padding-right: 20px;
  margin: 0 auto;
}

#main-contents .column ~ .column {
  margin-top: 40px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {

 #main-contents div.body {
   max-width: 100%;
   padding-left:20px;
   padding-right: 20px;
   margin: 0 auto;
 }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

#main-contents > .section {
  padding-top: 3em;
  padding-bottom: 3em;
}

#main-contents div.body {
  max-width: 100%;
  padding:0 1em;
  margin: 0 auto;
}

#main-contents .column ~ .column {
  margin-top: 20px;
}

}


/* ****************************************************************************************************
   * 下層ビジュアル
**************************************************************************************************** */

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * メインビジュアル
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

body.layout-lower
#visual {
  position: relative;
}
body.layout-lower
#visual .body {
  min-height: 300px;
  background: url("../../_images/note/visual.png") no-repeat;
  background-position: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
/* */


/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:900px) {
  /*ブラウザの幅が736px以下の時*/
  body.layout-lower
  #visual .body {
    min-height: 100%;
    background: url("../../_images/note/visual-sp.jpg") no-repeat;
    background-position: bottom;
    background-size: cover;
  }
}


/* ****************************************************************************************************
   * コラム
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.note {
  position: relative;
  padding-top: 40px;
  padding-bottom: 100px;
  background: var(--c-l-orange);
}

.note .body {
  max-width: 1240px;
  padding: 0 20px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .note {
    position: relative;
    padding-top: 20px !important;
    padding-bottom: 50px;
    background: var(--c-l-orange);
  }
}

/* ----------------------------------------------------------------------------------------------------
   * インナーボックス
/* ------------------------------------------------------------------------------------------------- */

.note .inner {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 20px 40px 40px;
  box-shadow: 0 0px 10px 10px rgba(79, 49, 26, 0.1);
  max-width: 1080px;
  margin: 0 auto;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .note .inner {
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 10px 20px 20px;
    box-shadow: 0 0px 10px 10px rgba(79, 49, 26, 0.1);
    max-width: 1080px;
    margin: 0 auto;
  }
}

/* ****************************************************************************************************
   * コラム一覧
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * リスト
/* ------------------------------------------------------------------------------------------------- */

.note ul.list {}

.note ul.list li {
  font-size: 1.8rem;
}

.note ul.list li:first-child {
  border-bottom: 1px solid var(--c-h-orange);
}
.note ul.list li {
  border-bottom: 1px solid var(--c-h-orange);
}
.note ul.list li a {
  transition: 0.6s;
  display: flex;
  justify-content: flex-start;
  padding: 50px 0;
  margin: 10px 0;
}
.note ul.list li a:hover {
  opacity: 1;
  background: var(--c-h-orange);
  border-radius: 10px;
}

.note ul.list li .images {
  width: 27%;
  padding-left: 1em;
  text-align: center;
}
.note ul.list li .images img {
  width: 250px;
}

.note ul.list li .detail {
  width: 65%;
  margin-left: 4%;
}

.note ul.list li .detail .meta {}

.note ul.list li .day {
  width: 5em;
  display: inline-block;
}

.note ul.list li .category {
  color: #fff;
  border-radius: 5px;
  padding: 0.2em 0.8em;
  font-size: 1.4rem;
}
.note ul.list li .category-1 {
  background: #88ba80;
}
.note ul.list li .category-2 {
  background: #88c6d1;
}
.note ul.list li .category-3 {
  background: #e2a6a6;
}


.note ul.list li .title {
  color: var(--c-orange);
  display: block;
  line-height: 1.6;
}
.note ul.list li .text {
  display: block;
  margin-top: 0.5em;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .note ul.list li {
    font-size: 1.6rem;
  }
  .note ul.list li a {
    transition: 0.6s;
    display: block;
    justify-content: flex-start;
    padding: 25px 0;
    margin: 5px 0;
  }
  .note ul.list li .images {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
  .note ul.list li .images img {
    max-width: 250px;
  }
  
  .note ul.list li .detail {
    width: 100%;
    margin: 1em 0 0;
  }
  .note ul.list li .day {
  }
  .note ul.list li .title {
    color: var(--c-orange);
    width: 100%;
    display: block;
    line-height: 1.4;
    margin-top: 0.5em;
  }
}


/* ****************************************************************************************************
   * コラム詳細
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

#main .layout-body {
  background: var(--c-l-orange);
}

#main .layout-body .layout-2 {
  max-width: 1240px;
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * メイン
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

#main .layout-body .layout-2 .note {
  width: 71%;
}
#main .layout-body .layout-2 .note > .body {
  padding: 0;
}

#main .layout-body .layout-2 .note .title-1 {
  font-size: 2.4rem;
  color: #fff;
  background: var(--c-orange);
  border-radius: 10px;
  padding: 0.5em 1.5em;
  line-height: 1.4;
}

#main .layout-body .layout-2 .note .meta {
  margin-top: 1em;
}

#main .layout-body .layout-2 .note .category {
  color: #fff;
  border-radius: 5px;
  padding: 0.2em 0.8em;
  font-size: 1.4rem;
}
#main .layout-body .layout-2 .note .category-1 {
  background: #88ba80;
}
#main .layout-body .layout-2 .note .category-2 {
  background: #88c6d1;
}
#main .layout-body .layout-2 .note .category-3 {
  background: #e2a6a6;
}

#main .layout-body .layout-2 .note .day {
  font-size: 1.8rem;
  color: var(--c-orange);
  display: inline-block;
  width: 5em;
}

#main .layout-body .layout-2 .note .content {
  margin-top: 20px;
  font-size: 1.8rem;
}

#main .layout-body .layout-2 .note .content a {
  color:var(--c-orange);
  text-decoration: underline;
}
#main .layout-body .layout-2 .note .content a:hover {
  color:var(--c-orange);
  text-decoration: none;
}

#main .layout-body .layout-2 .note .content img {
  display: block;
  margin:10px auto;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:900px) {

#main .layout-body .layout-2 .note {
  width: 100%;
}
#main .layout-body .layout-2 .note .title-1 {
    font-size: 1.8rem;
    line-height: 1.4;
    padding: 0.5em 1.5em;
}
#main .layout-body .layout-2 .note .content {
  margin-top: 20px;
  font-size: 1.6rem;
}

}

/* ----------------------------------------------------------------------------------------------------
   * ボタン
/* ------------------------------------------------------------------------------------------------- */

#main .layout-body .layout-2 .note .link-btn {}

#main .layout-body .layout-2 .note .link-btn .btn {}

#main .layout-body .layout-2 .note .link-btn .btn.back {}

#main .layout-body .layout-2 .note .link-btn .btn.back::after {
  left: 10px;
  right: auto;
  top: 0;
  transform: rotate(180deg);
  margin-top: 16px;
}

#main .layout-body .layout-2 .note .link-btn .btn.back:hover:after {
  background: url("../../_images/index/detail-arrow-1.png") no-repeat;
  left: 0.1em;
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * サイドナビ
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

#main .layout-body .layout-2 #side-contents {
  width: 25%;
  margin-top: 0;
  padding-top: 40px;
  padding-bottom: 100px;
}

#main .layout-body .layout-2 #side-contents .title-2 {
  position: relative;
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--c-orange);
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:900px) {

#main .layout-body .layout-2 #side-contents {
  width: 100%;
  margin-top: 0;
  padding-top: 30px;
  padding-bottom: 50px;
}
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #main .layout-body .layout-2 #side-contents .title-2 {
    font-size: 1.8rem;
  }
}


/* ----------------------------------------------------------------------------------------------------
   * 最新の記事
/* ------------------------------------------------------------------------------------------------- */

#main .layout-body #side-contents .recent {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0px 10px 10px rgba(79, 49, 26, 0.1);
}

#main .layout-body #side-contents .recent ul {
  border-top: 1px solid var(--c-h-orange);
}

#main .layout-body #side-contents .recent ul li {
  border-bottom: 1px solid var(--c-h-orange);
}

#main .layout-body #side-contents .recent ul li a {
  position: relative;
  font-size: 1.6rem;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 10px 0;
  padding: 0.2em 10px;
  border-radius: 10px;
}
#main .layout-body #side-contents .recent ul li a > * {
  display: inline-block;
}
#main .layout-body #side-contents .recent ul li a:hover {
  opacity: 1;
  background: var(--c-h-orange);
  border-radius: 10px;
}

#main .layout-body #side-contents .recent ul li .meta {
  width: 100%;
}

#main .layout-body #side-contents .recent ul li .meta {}

#main .layout-body #side-contents .recent ul li .meta .day {
  width: 5em;
  display: inline-block;
}

#main .layout-body #side-contents .recent ul li .meta .category {
  color: #fff;
  border-radius: 5px;
  padding: 0.2em 0.8em;
  font-size: 1.4rem;
}
#main .layout-body #side-contents .recent ul li .meta .category-1 {
  background: #88ba80;
}
#main .layout-body #side-contents .recent ul li .meta .category-2 {
  background: #88c6d1;
}
#main .layout-body #side-contents .recent ul li .meta .category-3 {
  background: #e2a6a6;
}

#main .layout-body #side-contents .recent ul li .text {
  color: var(--c-orange);
  display: block;
  line-height: 1.6;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1200px) {
  /*ブラウザの幅が736px以下の時*/
  #main .layout-body #side-contents .recent ul li .meta .day {
    width: 5em;
    display: block;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #main .layout-body #side-contents .recent ul li a {
    font-size: 1.5rem;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 過去の記事
/* ------------------------------------------------------------------------------------------------- */

#main .layout-body #side-contents .archive {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0px 10px 10px rgba(79, 49, 26, 0.1);
}

#main .layout-body #side-contents .archive ul {
  margin-top: 0;
}

#main .layout-body #side-contents .archive ul li {
  list-style: none;
  position: relative;
  padding-left: 1.5em;
  font-size: 1.8rem;
}
#main .layout-body #side-contents .archive ul li::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 2px solid var(--c-orange);
  color: var(--c-orange);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100%;
  margin-top: 13px;
}

#main .layout-body #side-contents .archive ul li ~ li {
  margin-top: 0.5em;
}

#main .layout-body #side-contents .archive ul li a {
  display: block;
  margin: 10px 0;
  padding: 0.2em 10px;
  border-radius: 10px;
}
#main .layout-body #side-contents .archive ul li a:hover {
  opacity: 1;
  background: var(--c-h-orange);
  border-radius: 10px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #main .layout-body #side-contents .archive ul li {
    font-size: 1.5rem;
    padding-left: 1.0rem;
  }
  #main .layout-body #side-contents .archive ul li::before {
    width: 9px;
    height: 9px;
    margin-top: 12px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * カテゴリー
/* ------------------------------------------------------------------------------------------------- */

#main .layout-body #side-contents .cat {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0px 10px 10px rgba(79, 49, 26, 0.1);
}

#main .layout-body #side-contents .cat ul {
  margin-top: 0;
}

#main .layout-body #side-contents .cat ul li {
  list-style: none;
  position: relative;
  padding-left: 1.5em;
  font-size: 1.8rem;
}
#main .layout-body #side-contents .cat ul li::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 2px solid var(--c-orange);
  color: var(--c-orange);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100%;
  margin-top: 13px;
}

#main .layout-body #side-contents .cat ul li ~ li {
  margin-top: 0.5em;
}

#main .layout-body #side-contents .cat ul li a {
  display: block;
  margin: 10px 0;
  padding: 0.2em 10px;
  border-radius: 10px;
}
#main .layout-body #side-contents .cat ul li a:hover {
  opacity: 1;
  background: var(--c-h-orange);
  border-radius: 10px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  #main .layout-body #side-contents .cat ul li {
    font-size: 1.5rem;
    padding-left: 1.0rem;
  }
  #main .layout-body #side-contents .cat ul li::before {
    width: 9px;
    height: 9px;
    margin-top: 12px;
  }
}





/* ----------------------------------------------------------------------------------------------------
   * 内容 詳細
/* ------------------------------------------------------------------------------------------------- */

.note .inner {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 50px 40px;
  box-shadow: 0 0px 10px 10px rgba(79, 49, 26, 0.1);
  max-width: 1080px;
  margin: 1em auto 0;
  clear: both;
}
.note .inner ~ .inner {
  margin-top: 2em;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .note {
    padding-top: 0 !important;
  }
  .note .inner {
    padding: 20px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 内容 詳細
/* ------------------------------------------------------------------------------------------------- */

.note .item {}

.note .item .text {
  margin-top: 0;
}
.note .item .text ~ .text {
  margin-top: 1em;
}
.note .item .text span {
  color: var(--c-orange);
}
.note .item .text a {
  color: var(--c-orange);
  text-decoration: underline;
}

.note .item .title-2 {
  position: relative;
  color: var(--c-orange);
  font-size: 2.2rem;
  padding-left: 1.5em;
}
.note .item .title-2::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 2px solid var(--c-orange);
  color: var(--c-orange);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100%;
  margin-top: 12px;
}

.note .title-3 {
  color: var(--c-orange);
  font-size: 2.2rem;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .note .item {}
  .note .item .title-2 {
    color: var(--c-orange);
    font-size: 1.7rem;
    line-height: 1.6;
    padding-left: 1.25em;
  }
  .note .item .title-2::before {
    width: 9px;
    height: 9px;
    margin-top: 9px;
  }
  .note .title-3 {
    color: var(--c-orange);
    font-size: 1.7rem;
  }
}


/* ----------------------------------------------------------------------------------------------------
   * テーブル
/* ------------------------------------------------------------------------------------------------- */

.note .table-wrap {
  max-width: 1080px;
  margin: 0 auto;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * 角丸 テーブル
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

.note table.radius {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--c-h-orange);
  border-radius: 10px;
  overflow: hidden;
  font-size: 1.8rem;
}
.note table.radius thead {
  background: var(--c-orange);
  color: #fff;
  font-size: 2.0rem;
}
.note table.radius thead tr th {
  padding: 0.5em 1em;
}

.note table.radius tbody tr th {
  background: #fff1e6;
  color: var(--c-orange);
  text-align: left;
  padding: 0.5em 2em;
  border-bottom: 1px solid var(--c-h-orange);
}
.note table.radius tbody tr td {
  background: #fff;
  padding: 0.5em 2em;
  border-bottom: 1px solid var(--c-h-orange);
}
.note table.radius tbody tr td a {
  color: var(--c-orange);
  text-decoration: underline;
}
.note table.radius tbody tr td a:hover {
  color: var(--c-orange);
  text-decoration: none;
}
.note table.radius tbody tr:last-child th,
.note table.radius tbody tr:last-child td {
  border-bottom: 0;
}


/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .note table.radius {
    font-size: 1.6rem;
}
  .note table.radius thead {
    background: var(--c-orange);
    color: #fff;
    font-size: 1.6rem;
  }
  .note table.radius thead tr th {
    padding: 0.5em;
  }
  
  .note table.radius tbody tr th {
    background: #fff1e6;
    color: var(--c-orange);
    text-align: left;
    padding: 0.5em;

    border-bottom: 1px solid var(--c-h-orange);
  }
  .note table.radius tbody tr td {
    background: #fff;
    padding: 0.5em;
    border-bottom: 1px solid var(--c-h-orange);
  }
}


/* ----------------------------------------------------------------------------------------------------
   * リスト（olローマ字）
/* ------------------------------------------------------------------------------------------------- */

.note ol.style {
  font-size: 1.8rem;
}
.note ol.style,
.note ol.style li {
  list-style-type:upper-roman;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .note ol.style {
    font-size: 1.6rem;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * リスト（ol ローマ字・下層あり）
/* ------------------------------------------------------------------------------------------------- */
 
ol.roman, ol.roman ol {
  padding-left: 1em;
  font-size: 1.8rem;
}

ol.roman li {
  list-style-type:none;
  margin-left: 2em;
}

ol.roman li:before {
  display: inline-block; 
  text-align: right;
  width: 2em;
  margin-right: 1em;
  margin-left: -3em;
}

/*カウンターの設定（olの階層ごとに設定）*/
ol.roman > li {
  counter-increment: cnt1;
}

ol.roman > li:before {
  content: counter(cnt1,upper-roman) ". ";
  font-weight: bold;
}

ol.roman > li > ol > li {
  counter-increment: cnt2;
}

ol.roman > li > ol > li:before {
  content: counter(cnt2,upper-roman)". ";
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  ol.roman, ol.roman ol {
    font-size: 1.6rem;
  }
}




/* ----------------------------------------------------------------------------------------------------
   * リスト（ol 括弧()）
/* ------------------------------------------------------------------------------------------------- */
 
ol.parents, ol.parents ol {
  padding-left: 1em;
  font-size: 1.8rem;
}

ol.parents li {
  list-style-type:none;
  margin-left: 3em;
}

ol.parents li:before {
  display: inline-block; 
  text-align: right;
  width: 2em;
  margin-right: 1em;
  margin-left: -3em;
}

/*カウンターの設定（olの階層ごとに設定）*/
ol.parents > li {
  counter-increment: cnt1;
}

ol.parents > li:before {
  content: "(" counter(cnt1) ") ";
  font-weight: bold;
}

ol.parents > li > ol > li {
  counter-increment: cnt2;
}

ol.parents > li > ol > li:before {
  content: counter(cnt2)")";
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
   ol.parents, ol.parents ol {
    font-size: 1.6rem;
  }
}

