@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
body {
  color: #000;
  background-color: #FFF;
  font-family: "Noto Sans JP","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN W3",Meiryo,"メイリオ",Osaka,"MS PGothic",arial,helvetica,sans-serif;
  font-size: 16px;
  line-height: 1;
}

button {
  padding: 1px 6px;
}

ul {
  padding-left: 0;
}

a {
  color: #000;
}

a:hover {
  color: currentColor;
  opacity: .5;
  text-decoration: none;
}

input[type="submit"] {
  display: block;
  font-size: 12px;
  line-height: 1;
  padding: 8px 10px;
  border: #ddd;
  border-radius: 4px;
}

input[type="submit"].wp-archive-tab-btn-current {
  color: #fff;
  background-color: #000053;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  text-decoration: none;
  text-align: center;
  border: none;
  box-shadow: none;
  white-space: nowrap;
  outline: none;
  cursor: pointer;
  transition: all .3s;
  color: #FFF;
  background: #000053;
}

.btn:hover {
  filter: none;
  color: #000053;
}

.header {
  height: auto;
}

.header-search-box input[type="text"] {
  padding: 0 10px;
  padding-left: 38px;
  font-size: 13.3333px;
}

.wp-search-form input[type="text"] {
  height: 45px;
  font-size: 14px;
  padding: 0 16px 0 38px;
  border: 1px solid #E5E5E5;
}

.footer {
  margin-top: 60px;
  padding: 40px 0 50px;
  background-color: #000053;
}

.toc {
  width: 100%;
  background: #EFF1F5;
  padding: 9px 20px 25px;
  margin: 40px 0 48px;
  border: none;
}

.toc .toc-list {
  padding-left: 0;
}

.toc .toc-list li {
  font-size: 16px;
  line-height: calc(26/14);
  padding: 12px 0;
  border-top: 1px solid #CCC;
}

.toc .toc-list li:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 5px;
}

.toc .toc-list li:last-child {
  padding-bottom: 0;
}

.toc-title {
  font-size: 16px;
  line-height: calc(26/14);
  font-weight: bold;
  text-align: left;
  padding: 0;
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
@media screen and (max-width: 767px){
  .footer {
    margin-top: 0;
  }
  .toc {
    width: 100vw;
    margin: 30px calc(50% - 50vw) 0;
  }
}