@charset "UTF-8";
/*
  Theme: takoart_boilerplate
  Author: takako hagimoto
  Description: takoart original templatef
  Responsive: yes
*/
html,
body {
  font-family: "IBM Plex Sans JP", sans-serif;
  color: #454545;
  background-color: #5c1f0b;
  line-height: 1.6;
  box-sizing: border-box;
  background-image: radial-gradient(#535415 1px, transparent 1px);
  background-size: 20px 20px;
}

a {
  color: rgb(0, 166, 255);
}
a:hover {
  color: #ff0000;
}
a.keyword {
  text-decoration: none;
  border-bottom: 1px dotted #ddd;
  color: #454545;
}

a:hover img {
  opacity: 0.5;
  transition: all 0.5s ease;
}

h1, h2, h3, h4, h5, h6 {
  color: #333;
  line-height: 1.3;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: #333;
  text-decoration: none;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
  color: #ff0000;
}

/* ヘッダ（グローバルヘッダ）
  グローバルヘッダの中はiframeですが、
  #globalheader-container に背景色や文字色を指定することでiframeの中にも色が反映されます。
*/
#globalheader-container {
  background-color: #454545;
  color: #5c1f0b;
}

/* container */
#container,
#footer {
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 768px) {
  #container,
  #footer {
    width: 85%;
    margin: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 992px) {
  #container,
  #footer {
    width: 85%;
  }
}

/* 2カラムレイアウト */
#content-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 768px) {
  #content-inner {
    flex-direction: row;
  }
}

#wrapper {
  width: 95%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #wrapper {
    width: calc(100% - 220px);
    margin: 0 auto 0 0;
  }
}
@media (min-width: 992px) {
  #wrapper {
    width: calc(100% - 270px);
  }
}

#box2 {
  color: #fff;
  margin: 50px 0 0;
}
#box2 a {
  color: #fff;
}
#box2 a:hover {
  color: #fff315;
}
@media (min-width: 768px) {
  #box2 {
    width: 200px;
    margin: 0 0;
  }
}
@media (min-width: 992px) {
  #box2 {
    width: 230px;
  }
}

/* ヘッダ */
#blog-title {
  margin: 2em 0;
  text-align: center;
}
@media (min-width: 768px) {
  #blog-title {
    margin: 3em 0;
    text-align: left;
  }
}

#title {
  margin: 0;
  font-size: 8vw;
  font-family: "Rowdies", sans-serif;
}
@media (min-width: 768px) {
  #title {
    font-size: 4rem;
  }
}
@media (min-width: 992px) {
  #title {
    font-size: 5em;
  }
}
#title a {
  color: #fff;
}
#title a:hover {
  color: #CABB69;
}

#blog-description {
  font-weight: normal;
  font-size: 0.8rem;
  margin: 1em 0 0;
  color: #ffffff;
}

/* ヘッダ画像を設定したとき */
.header-image-enable #blog-title {
  margin: 0 0 2em;
}
.header-image-enable #blog-title-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header-image-enable #blog-title-content {
  margin-left: 10px;
  margin-right: 10px;
}

/* タイトル下HTML */
#top-editarea {
  margin-bottom: 1em;
}

/* パンくず（カテゴリー、記事ページで表示されます） */
.breadcrumb {
  font-size: 0.8rem;
  color: #fff;
}
.breadcrumb a {
  color: #fff;
  text-decoration: none;
}
.breadcrumb a:hover {
  color: #ff0000;
}

/* entry */
.entry {
  position: relative;
  margin-bottom: 4em;
  background-color: #fff;
  padding: 20px 25px;
  box-sizing: border-box;
  border-radius: 30px;
}
@media (min-width: 992px) {
  .entry {
    padding: 20px 40px;
    border-radius: 60px;
  }
}

.entry-header {
  padding-bottom: 1em;
  margin-bottom: 2em;
  border-bottom: 1px solid #ddd;
  position: relative;
  margin-top: 30px;
}

.date {
  margin-bottom: 0.5em;
  font-size: 0.8em;
  margin-top: 10px;
}
.date a {
  color: #999;
  text-decoration: none;
  color: #6e6e6e;
}
.date a:hover {
  text-decoration: none;
}

.entry-title {
  margin: 0 0 0.3em;
  font-size: 2em;
}

.categories {
  font-size: 0.8em;
  line-height: 1;
  margin: auto 3px 5px 0;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .categories {
    font-size: 0.5em;
    line-height: 1;
  }
}
.categories a {
  border: 1px solid #c4c3c3;
  padding: 1.5px 5px 1px 5px;
  border-radius: 3px;
  text-decoration: none;
  background-color: #fbfbfb;
  color: #2A2A2A;
  display: block;
  margin: 0 3px 2px 0;
}
.categories a:hover {
  background-color: #FFB508;
  color: #2A2A2A;
}

/* 「編集する」ボタン */
.entry-header-menu {
  position: absolute;
  top: 0;
  right: 0;
}

/* 記事内の書式 */
.entry-content img,
.entry-content video {
  max-width: 100%;
  height: auto;
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  margin: 1em 0 0.8em 0;
}
.entry-content h1 {
  font-size: 1.5rem;
}
@media (min-width: 992px) {
  .entry-content h1 {
    font-size: 1.7rem;
  }
}
.entry-content h2 {
  font-size: 1.4rem;
}
@media (min-width: 992px) {
  .entry-content h2 {
    font-size: 1.5rem;
  }
}
.entry-content h3 {
  /*font-size: 1.2rem;
  @media (min-width: 992px) {
      */
  font-size: 1.05em;
  line-height: 1;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 4px 20px;
  margin-top: 50px;
  margin-bottom: 20px;
}
.entry-content h4 {
  font-size: 1.1rem;
}
.entry-content h5 {
  font-size: 1rem;
}
.entry-content h6 {
  font-size: 0.9rem;
}
.entry-content ul,
.entry-content ol,
.entry-content dd {
  margin: 0 0 1em 1.5em;
  padding: 0;
}
.entry-content ul li ul, .entry-content ul li ol,
.entry-content ol li ul,
.entry-content ol li ol,
.entry-content dd li ul,
.entry-content dd li ol {
  margin-bottom: 0;
}
.entry-content table {
  border-collapse: collapse;
  border-spacing: 0;
  border-bottom: 1em;
  margin-bottom: 1em;
  width: 100%;
  overflow: auto;
  display: block;
  font-size: 0.8rem;
}
@media (min-width: 992px) {
  .entry-content table {
    font-size: 0.9rem;
  }
}
.entry-content table th,
.entry-content table td {
  border: 1px solid #ddd;
  padding: 5px 10px;
}
.entry-content table th {
  background: #f5f5f5;
}
.entry-content blockquote {
  border: 1px solid #ddd;
  margin: 0 0 10px;
  padding: 20px;
}
.entry-content blockquote p:first-child {
  margin-top: 0;
}
.entry-content blockquote p:last-child {
  margin-bottom: 0;
}
.entry-content pre,
.entry-content code {
  font-family: "Monaco", "Consolas", "Courier New", Courier, monospace, sans-serif;
}
.entry-content pre {
  background: #f5f5f5;
  border: none;
  white-space: pre-wrap;
  text-overflow: ellipsis;
  font-size: 100%;
  line-height: 1.3;
  font-size: 0.8rem;
  padding: 10px;
}
.entry-content pre > code {
  margin: 0;
  padding: 0;
  white-space: pre;
  border: none;
  background-color: transparent;
  font-family: "Monaco", "Consolas", "Courier New", Courier, monospace, sans-serif;
}
.entry-content code {
  font-size: 90%;
  margin: 0 2px;
  padding: 0px 5px;
  background-color: #f5f5f5;
  border-radius: 3px;
}
.entry-content hr {
  width: 50%;
  border: 0;
  border: none;
  border-top: 1px solid #ddd;
  margin: 2em auto;
}
.entry-content .table-of-contents {
  padding: 1em 1em 1em 2em;
  margin: 1em 0;
  border: 1px solid #ddd;
}
.entry-content dl.nengo {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  font-size: 15px;
  left: 1.2;
  flex-wrap: wrap;
  margin: 10px 0 30px;
}

.entry-content dl.nengo .nengo-midashi{
	width: 100%;
    border-bottom: 1px solid #ccc;
    padding: 0 0 1px 0;
    margin: 20px 0 10px;
    color: #003c8f;
    font-size: 1.1em;
}
@media (min-width: 992px) {
  .entry-content dl.nengo {
    flex-direction: row;
    font-size: 15px;
    left: 1.2;
  }
}
.entry-content dl.nengo dt {
  display: block;
  color: #4c8ae0;
  width: 80px;
  font-weight: 700;
}
.entry-content dl.nengo dd {
  color: #000;
  width: 100%;
  margin-bottom: 10px;
  line-height: 1.3;
  margin: 0 0 1em 0;
}
@media (min-width: 992px) {
  .entry-content dl.nengo dd {
    width: calc(100% - 120px);
    margin-bottom: 10px;
    line-height: 1.3;
    margin: 0 0 1em 1.5em;
  }
}
.entry-content .t-center {
  text-align: center;
}

/* 記事下 */
.entry-footer .social-buttons {
  margin-bottom: 1em;
}

.entry-footer-section {
  color: #999;
  font-size: 0.9rem;
  display: none;
}
.entry-footer-section a {
  color: #999;
}

/* コメント */
.comment-box {
  margin: 1em 0;
}
.comment-box .comment {
  list-style: none;
  margin: 0 0 15px 0;
  padding: 0;
  line-height: 1.7;
  font-size: 0.85rem;
}
@media (min-width: 768px) {
  .comment-box .comment {
    font-size: 0.9rem;
  }
}
.comment-box .entry-comment {
  padding: 10px 0 10px 60px;
  border-bottom: 1px solid #ddd;
  position: relative;
}
.comment-box .entry-comment:first-child {
  border-top: 1px solid #ddd;
}
.comment-box .read-more-comments {
  padding: 10px 0;
}
.comment-box .hatena-id-icon {
  position: absolute;
  top: 10px;
  left: 0;
  width: 50px !important;
  height: 50px !important;
  border-radius: 3px;
}

.comment-user-name {
  margin: 0 0 0.4em 0;
  font-weight: bold;
}

.comment-content {
  margin: 0 0 0.4em 0;
  word-wrap: break-word;
  color: #454545;
  font-size: 0.85rem;
}
.comment-content p {
  margin: 0 0 0.6em 0;
}

.comment-metadata {
  color: #999;
  margin: 0;
  font-size: 0.8rem;
}
.comment-metadata a {
  color: #999;
}

.leave-comment-title {
  padding: 0.6em 1em;
  font-size: 0.85rem;
  border: 1px solid #ddd;
}

/* Pager */
.pager {
  margin: 2em 0;
  display: flex;
  /*justify-content: space-between;
  flex-flow: row-reverse;*/
  justify-content: flex-end;
}
.pager .pager-prev {
  margin-right: auto;
}
.pager .pager-prev a {
  font-size: 0.8em;
  line-height: 1;
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
}
.pager .pager-prev a::before {
  font-family: "Material Symbols Outlined";
  content: "\e5cb";
}
.pager .pager-next a {
  font-size: 0.8em;
  line-height: 1;
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  margin-right: 20px;
}
.pager .pager-next a::after {
  font-family: "Material Symbols Outlined";
  content: "\e5cc";
}
.pager a:hover {
  color: #ff0000;
}
.pager .pager-arrow {
  display: none;
}

/* サイドバーモジュール */
.hatena-module {
  box-sizing: border-box;
  margin-bottom: 3em;
  font-size: 1em;
}
@media (min-width: 768px) {
  .hatena-module {
    font-size: 0.85em;
  }
}

.hatena-module-title {
  margin-bottom: 0.6em;
  padding-bottom: 0.2em;
  border-bottom: 1px solid #ddd;
  font-size: 1.15em;
  font-weight: bold;
}
.hatena-module-title a {
  color: #454545;
  text-decoration: none;
}
.hatena-module-title a:hover {
  text-decoration: underline;
}

/* Profile module */
.hatena-module-profile .profile-icon {
  float: left;
  margin: 0 10px 10px 0;
}
.hatena-module-profile .id {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.hatena-module-profile .profile-description p {
  margin-top: 0;
}

/* urllist module */
.hatena-urllist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hatena-urllist li {
  padding: 0.1em 0;
}
.hatena-urllist li:last-child {
  padding-bottom: 0;
}
.hatena-urllist li a {
  text-decoration: none;
}
.hatena-urllist li a:hover {
  text-decoration: underline;
}
.hatena-urllist .urllist-category-link {
  font-size: 0.7rem;
  padding: 0.1em 0.3em;
}
.hatena-urllist .urllist-date-link a {
  color: #999;
}
.hatena-urllist .urllist-entry-body {
  margin-top: 0.3em;
}

/* Search module */
.hatena-module-search-box .search-form {
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  background-color: #e3e3e3;
}
.hatena-module-search-box .search-module-input {
  flex: 1 0;
  padding: 5px;
  color: #454545;
  background: none;
  border: none;
  outline: none;
  height: 20px;
}
.hatena-module-search-box .search-module-button {
  width: 24px;
  height: 24px;
  margin-right: 5px;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:none;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3Esearch%3C/title%3E%3Cpath d='M16.7,15l-3.4-3.3h-.1a5.4,5.4,0,0,0,.9-3.1,5.6,5.6,0,1,0-5.6,5.6,5.4,5.4,0,0,0,3.1-.9.1.1,0,0,0,.1.1L15,16.7a1.1,1.1,0,0,0,.8.3,1.6,1.6,0,0,0,.9-.3,1.4,1.4,0,0,0,0-1.7M8.5,12.3A3.8,3.8,0,0,1,4.8,8.5,3.8,3.8,0,0,1,8.5,4.7a3.9,3.9,0,0,1,3.8,3.8,3.8,3.8,0,0,1-3.8,3.8'/%3E%3Crect class='a' width='20' height='20'/%3E%3C/svg%3E") no-repeat center;
  background-size: 20px 20px;
  border: none;
  outline: none;
  color: transparent;
  overflow: hidden;
  opacity: 0.5;
  cursor: pointer;
}
.hatena-module-search-box .search-module-button:hover {
  opacity: 0.85;
}

/* モジュール タイトルなし*/
.hatena-module-custom-side_notitle .hatena-module-title,
.hatena-module-custom-side-copyright .hatena-module-title {
  display: none;
}

/* モジュール takoartバナー*/
#box2 .hatena-module-custom-side-banner .hatena-module-title {
  display: none;
}
#box2 .hatena-module-custom-side-banner .hatena-module-body a {
  width: 100%;
  display: block;
  text-decoration: none;
  margin: 20px 0;
  padding: 0px 0px;
  color: #000;
  box-sizing: border-box;
}
#box2 .hatena-module-custom-side-banner .hatena-module-body a img {
  margin: 0 0;
  padding: 0px 0px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
/*#box2 .hatena-module-custom-side-banner .hatena-module-body a h2 {
  font-family: "Rowdies", sans-serif;
  font-size: 2em;
  line-height: 1;
  margin: 0 0 ;
  text-decoration: none;
  color: #000;
}*/
#box2 .hatena-module-custom-side-banner .hatena-module-body a p {
  /*font-size: 0.8em;
  line-height: 1;*/
  margin: 0 0;
padding: 0 0;
  color: #000;
}
#box2 .hatena-module-custom-side-banner .hatena-module-body a img:hover {
opacity:0.5;
transition:0.3s;
background-color: #656565;
}

/* モジュール コピーライト*/
.hatena-module-custom-side-copyright .copyright {
  font-size: 0.8em;
}

/*ログイン　*/
#box2 .hatena-module .side-lgin_btn a {
  border: 1px #a3a2a2 solid;
  font-size: 0.6em;
  line-height: 1;
  padding: 1px 5px;
  border-radius: 3px;
  text-decoration: none;
  color: #a3a2a2;
}
#box2 .hatena-module .side-lgin_btn a:hover {
  background-color: #3b1919;
}

/* About ページ */
.page-about .entry-content dt {
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  margin-bottom: 0.5em;
}
.page-about .entry-content dd {
  margin-left: 0;
  margin-bottom: 2em;
}

/* Archive */
.archive-header-category {
  text-align: center;
}

.page-archive {
  /*　エントリー枠内表示順*/
}
.page-archive .archive-entry-header {
  order: 2;
}
.page-archive .categories {
  order: 3;
}
.page-archive .entry-thumb-link {
  order: 1;
}
.page-archive .archive-entry-body {
  order: 4;
  margin-left: auto;
}
.page-archive .archive-entries { /*entry全体の箱*/ }
@media (min-width: 768px) {
  .page-archive .archive-entries {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.page-archive .archive-entry { /*entry　1個の箱*/
  margin: 0 0 8px 0;
  line-height: 1.3;
  display: flex;
  flex-direction: row;
  background-color: #fff;
  padding: 6px;
  box-sizing: border-box;
  border-radius: 13px;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .page-archive .archive-entry {
    width: calc((100% - 32px) / 3);
    margin: 0 8px 8px 0;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 6px;
    box-sizing: border-box;
    border-radius: 13px;
  }
}
@media (min-width: 992px) {
  .page-archive .archive-entry {
    width: calc((100% - 32px) / 4);
  }
}
.page-archive .archive-entry .categories {
  position: absolute;
  bottom: 5px;
  right: 10px;
}
@media (min-width: 768px) {
  .page-archive .archive-entry .categories {
    position: unset;
  }
}
.page-archive .entry-title {
  margin: 0.3em auto;
  font-size: 0.9em;
}
.page-archive .entry-thumb {
  width: 150px;
  height: 100px;
  background-size: cover;
  border-radius: 10px 0 0 10px;
}
.page-archive .entry-thumb:hover {
  opacity: 0.5;
  transform: scale(1.05);
  transition: all 0.5s ease;
}
@media (min-width: 768px) {
  .page-archive .entry-thumb {
    width: 100%;
    height: 150px;
    border-radius: 10px 10px 0 0;
  }
}
@media (min-width: 992px) {
  .page-archive .entry-thumb {
    width: 100%;
    height: 200px;
  }
}
.page-archive .entry-description {
  margin: 0;
  font-size: 0.85rem;
  display: none;
}
@media (min-width: 768px) {
  .page-archive .entry-description {
    font-size: 0.9rem;
  }
}
.page-archive .social-buttons {
  display: block;
  margin-top: 5px 0 3px;
  text-align: right;
}

/* footer */
#footer {
  margin-top: 2em;
  padding-bottom: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: #999;
}
#footer a {
  color: #999;
}
#footer p {
  margin: 0.5em auto;
}

/*-----------add 20231103--------*/
.blog-controlls-subscribe {
  display: none;
}

.page-archive-category .archive-heading {
  color: #fff;
  font-size: 8vw;
  font-weight: 700;
  margin: 20px 0 0;
}
@media (min-width: 768px) {
  .page-archive-category .archive-heading {
    font-size: 2.5em;
  }
}
@media (min-width: 992px) {
  .page-archive-category .archive-heading {
    font-size: 3em;
  }
}

/*日付アーカイブ*/
#main-inner h2.archive-heading {
  color: #fff;
}

.figure-image figcaption {
  font-size: 0.85em;
  color: #124d9e;
}

/*---------　entry記事内　-------------*/
.honbun-ex, .iyashi-ill-ex {
  border: solid #ccc 1px;
  padding: 15px 20px;
  font-size: 0.85em;
  line-height: 1.4;
  border-radius: 8px;
}

/* ページトップへ戻るボタン */
.toppage {
  display: none;
  position: fixed;
  bottom: 0px;
  right: 40px;
}
.toppage a {
  display: block;
  color: #999999;
  font-size: 24px;
  text-decoration: none;
  line-height: 50px;
  opacity: 0.9;
}
.toppage a .material-symbols-outlined {
  font-size: 50px;
  font-weight: 700;
  font-variation-settings: "FILL" 1;
}

/*---------------mb-menu------------*/
/* ハンバーガーメニュー */
#bottom-editarea {
  position: relative;
}
#bottom-editarea .footer_header {
  width: 100%;
  height: 1px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  /* ヘッダーのナビ部分 */
  /* ナビのリンク */
  /* ハンバーガーメニュー */
  /* ハンバーガーメニューの線 */
  /* ハンバーガーメニュークリック後のスタイル */
}
#bottom-editarea .footer_header .header__inner {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}
#bottom-editarea .footer_header .header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: rgba(0, 27, 64, 0.96);
  transition: ease 0.4s;
  padding: 0px 40px 0px;
}
@media (min-width: 768px) {
  #bottom-editarea .footer_header .header__nav {
    display: none;
  }
}
#bottom-editarea .footer_header .header__nav .nav-items, #bottom-editarea .footer_header .header__nav .nav-items_2 {
  /*position: absolute;
  top: 150px;
  left: 120px;
  transform: translate(-50%, -50%);*/
  padding: 0;
  list-style: none;
  margin: 0 0;
}
#bottom-editarea .footer_header .header__nav .nav-items_2 {
  margin: 25px 0;
}
#bottom-editarea .footer_header .header__nav h1 {
  font-family: "Rowdies", sans-serif;
  font-size: 1.7em;
  line-height: 1;
  margin-bottom: 5px;
  margin-top: 30px;
  color: #fff;
}
#bottom-editarea .footer_header .header__nav h1 a {
  color: #dba61a;
}
#bottom-editarea .footer_header .header__nav h2 {
  font-size: 0.8em;
  line-height: 1;
  margin-bottom: 5px;
  color: #fff;
}
#bottom-editarea .footer_header .header__nav .toi_btn a {
  border: solid 1px #c1bfbf;
  border-radius: 5px;
  display: inline-block;
  padding: 2px 15px;
  font-size: 15px;
  text-decoration: none;
  color: #fff;
}
#bottom-editarea .footer_header .header__nav .copyright {
  font-size: 14px;
  color: #bbb1b1;
  margin-top: 5px;
}
#bottom-editarea .footer_header .nav-items__item a {
  width: 100%;
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
  color: #fff;
  text-decoration: none;
}
#bottom-editarea .footer_header .nav-items__item a.gotohome {
  font-size: 1em;
  display: flex;
  align-items: center;
  margin-bottom: -15px;
}
#bottom-editarea .footer_header .nav-items__item a.gotohome::before {
  font-family: "Material Symbols Outlined";
  content: "\e88a";
  font-size: 4em;
  margin-right: 3px;
  margin-left: -8px;
  color: #dba61a;
  padding: 0 0 30px;
}
#bottom-editarea .footer_header .nav-items__item:last-child a {
  margin-bottom: 0;
}

/*-----　バナー　-------*/
#bottom-editarea .footer_header .mb_menu_btn{
	width: 80%;
}
#bottom-editarea .footer_header .mb_menu_btn img{
	max-width: 100%;
	border: solid #ADADAD 1px;
}


#bottom-editarea .footer_header .header__hamburger {
  width: 60px;
  height: 65px;
  position: absolute;
  right: 30px;
  top: 0px;
}
#bottom-editarea .footer_header .hamburger {
  z-index: 9999;
  background-color: #b38409;
  border-radius: 0 0 10px 10px;
  width: 56px;
  border: none;
}
@media (min-width: 768px) {
  #bottom-editarea .footer_header .hamburger {
    display: none;
  }
}
#bottom-editarea .footer_header .hamburger span {
  width: 42px;
  height: 3px;
  background-color: #fff;
  position: relative;
  transition: ease 0.4s;
  display: block;
}
#bottom-editarea .footer_header .mb-menu-t {
  color: #fff;
  margin-top: 3px;
}
#bottom-editarea .footer_header .hamburger span:nth-child(1) {
  top: 0;
}
#bottom-editarea .footer_header .hamburger span:nth-child(2) {
  margin: 9px 0;
}
#bottom-editarea .footer_header .hamburger span:nth-child(3) {
  top: 0;
}
#bottom-editarea .footer_header .header__nav.active {
  transform: translateX(0);
}
#bottom-editarea .footer_header .hamburger.active span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}
#bottom-editarea .footer_header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
#bottom-editarea .footer_header .hamburger.active span:nth-child(3) {
  top: -12px;
  transform: rotate(-45deg);
}/*# sourceMappingURL=takoart.css.map */