@charset "UTF-8";

/* =========================================
   I-IRO 共通CSS
   /common/common.css
   役割：
   - 変数
   - 共通UI
   - 共通ヘッダー
   - 共通フッター
   - 共通本文
   - 共通フォーム
   - 共通ナビ
========================================= */

/* =========================
   1. Variables
========================= */
:root {
  --font-en: "Inter", sans-serif;
  --font-jp-sans: "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
  --font-jp-serif: "Noto Serif JP", serif;

  --font-base: var(--font-jp-sans);
  --font-heading: var(--font-jp-serif);
  --font-ui-en: var(--font-en);

  --color-text-main: #1f1f1f;
  --color-text-sub: #666666;
  --color-text-muted: #888888;
  --color-border: #d9d9d9;
  --color-border-light: #eeeeee;
  --color-bg: #ffffff;
  --color-bg-soft: #f7f7f7;
  --color-bg-footer: #f5f4f1;
  --color-link: #02a1e9;

  --line-height-tight: 1.3;
  --line-height-base: 1.7;
}

/* =========================
   2. Base Adjust
========================= */
body {
  font-size: 1.6rem;
  color: var(--color-text-main);
  font-family: var(--font-base);
  line-height: var(--line-height-base);
  background: var(--color-bg-soft);
}

#header-area {
  margin: 0;
}

/* =========================
   3. Utility
========================= */
.u-scroll-x {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  touch-action: pan-x;
}

.u-scroll-x::-webkit-scrollbar {
  display: none;
}

.u-scroll-fade {
  position: relative;
}

.u-scroll-fade::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2.4rem;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff);
  pointer-events: none;
}

.label-pc {
  display: inline;
}

.label-sp {
  display: none;
}


/* =========================
   4. Common Link
========================= */
.brand-bar-home,
.site-header-title a,
.brand-bar-nav > a,
.local-nav__row > a,
.sp-menu-brand a,
.sp-menu-global a,
.sp-menu-local a {
  text-decoration: none;
}

.brand-bar-nav > a,
.local-nav__row > a {
  position: relative;
  color: #222222;
  transition: opacity 0.2s ease;
}

.brand-bar-nav > a:hover,
.local-nav__row > a:hover {
  opacity: 0.8;
}

.brand-bar-nav > a.current,
.local-nav__row > a.current {
  font-weight: 500;
  pointer-events: none;
}

.brand-bar-nav > a::after,
.local-nav__row > a::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.brand-bar-nav > a:hover::after,
.brand-bar-nav > a.current::after,
.local-nav__row > a:hover::after,
.local-nav__row > a.current::after {
  transform: scaleX(1);
}

/* =========================
   5. Layout Helper
========================= */
.site-fixed {
  position: sticky;
  top: 0;
  z-index: 200;
}

/* =========================
   6. Common Content
========================= */

/* --- Breadcrumb --- */
.aioseo-breadcrumbs {
  color: var(--color-text-sub);
  font-size: 1.2rem;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.aioseo-breadcrumbs::-webkit-scrollbar {
  display: none;
}

.aioseo-breadcrumbs a {
  color: var(--color-link);
  text-decoration: none;
}

.aioseo-breadcrumbs a:hover {
  text-decoration: underline;
}

/* --- Archive --- */
.archive-content {
  padding: 2rem;
}

.archive-content header {
  margin: 0 0 2.5rem;
  text-align: center;
}

.archive-content h1 {
  margin: 2rem 2rem 0;
  font-size: 2rem;
  font-family: var(--font-heading);
  font-weight:normal;
}

.archive-content header > p {
  margin: 0.5rem 0;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  opacity: 0.7;
}

.archive-content a {
  text-decoration: none;
}

.archive-content a dl {
  display: table;
  width: 100%;
  padding: 1rem 0;
  color: #383838;
  border-bottom: 1px solid #f6f6f6;
}

.archive-content dt {
  display: table-cell;
  width: 9.8rem;
  vertical-align: middle;
}

.archive-content dd {
  display: table-cell;
  padding: 1rem;
  vertical-align: middle;
}

.archive-content a:hover dd {
  color: var(--color-link);
  text-decoration: underline;
}

/* --- Title Frame --- */
.title-frame,
.archive-content h1.title-frame,
div.title-frame {
  display: flex;
  align-items: center;
  margin: 0;
  color: #333333;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight:normal;
  text-align: center;
}

.title-frame::before,
.title-frame::after {
  content: "";
  flex-grow: 1;
  border-top: 1px solid currentColor;
}

.title-frame::before {
  margin-right: 1em;
}

.title-frame::after {
  margin-left: 1em;
}

/* --- Entry --- */
.entry-content .title-frame {
  margin: 0 2rem;
}

.entry-content h1 {
  margin: 2rem 1.5rem;
  font-size: 2.4rem;
  font-family: var(--font-heading);
  font-weight:normal;
}

.entry-content h1 span {
  display: inline-block;
}

.entry-content h2 {
  position: relative;
  margin: 2em 0 1em;
  padding: 0.2em 0;
  clear: both;
  font-size: 2.1rem;
  border-bottom: 2px solid #eeeeee;
}

.entry-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 3em;
  height: 2px;
  background: #333333;
}

.entry-content h2.w2::before { width: 2em; }
.entry-content h2.w3::before { width: 3em; }
.entry-content h2.w4::before { width: 4em; }
.entry-content h2.w5::before { width: 5em; }
.entry-content h2.w6::before { width: 6em; }
.entry-content h2.w7::before { width: 7em; }
.entry-content h2.w8::before { width: 8em; }
.entry-content h2.w9::before { width: 9em; }

.entry-content h3 {
  margin: 2em 0 1em;
  padding: 2px 0 5px 10px;
  font-size: 2rem;
  border-left: 3px solid #333333;
}

.entry-content h4 {
  margin: 1rem 0 0.5rem;
  clear: both;
  font-size: 1.7rem;
}

.entry-content p {
  margin: 0 0 1em;
  font-size: 1.6rem;
  line-height: 1.7;
}

.entry-content p a {
  text-decoration: underline;
}

.entry-content p a:hover {
  text-decoration: none;
}

.entry-content p a.under-none {
  text-decoration: none;
}

.entry-content li {
  font-size: 1.4rem;
  line-height: 1.6;
}

.entry-content blockquote {
  margin: 2rem 1rem;
  padding: 1rem;
  font-size: 1.4rem;
  background: #f7f7f7;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}

/* --- Related List --- */
.list-kanren li {
  margin: 0 0 3px;
  padding-left: 1em;
  font-size: 1.6rem;
  text-indent: -1em;
}

.list-kanren li a {
  text-decoration: none;
}

/* --- Reference Book --- */
.sanko-book {
  display: table;
  width: 100%;
  border-bottom: 1px solid #eeeeee;
}

.sanko-book dt {
  display: table-cell;
  width: 8rem;
  padding: 1rem;
  vertical-align: top;
}

.sanko-book dd {
  display: table-cell;
  padding: 1rem 0;
  font-size: 1.5rem;
  text-align: left;
  vertical-align: middle;
}

.sanko-book dd a {
  font-size: 1.7rem;
  font-weight: 700;
}

/* --- Post Meta --- */
.post-meta {
  margin: 1em 0 0.5em;
  text-align: center;
}

.post-meta a {
  display: inline-block;
  margin: 0 0.5em 0.5em 0;
  padding: 0.5em;
  color: #666666;
  font-size: 1.3rem;
  line-height: 1;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #666666;
  border-radius: 0.4em;
  transition: 0.2s;
}

.post-meta a:hover {
  color: #ffffff;
  background: #666666;
}

/* --- Share --- */
.link-share {
  margin: 6rem 0 3rem;
  padding: 1.5rem;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.link-share ul {
  margin: 0;
  padding: 0;
}

.link-share li {
  display: inline-block;
  font-size: 2rem;
  color: #cccccc;
}

.link-share li a {
  margin: 0 1rem;
  text-decoration: none;
}

.link-share li a:hover {
  opacity: 0.7;
}

.icon-facebook { color: #3d5b99; }
.icon-twitter  { color: #64bef6; }
.icon-hatena   { color: #0ba8df; }
.icon-line     { color: #00c300; }

/* --- 新　Copy Button --- */
.copy-button {
  cursor: pointer;
}

.copy-button.success,
.copy-button.error {
  opacity: 0.8;
}

/* --- 旧　Copy Button --- */
.copy-button {
  display: block;
  margin: 1rem 0 0;
  padding: 1rem 1em;
  color: #ffffff;
  font-size: 1.4rem;
  text-align: center;
  background: #999999;
  border-radius: 6px;
  cursor: pointer;
}

.copy-button:hover {
  background: #aaaaaa;
  box-shadow: 2px 2px 4px #cccccc;
}

.copy-button.success { background: green; }
.copy-button.error   { background: red; }

/* --- Prev Next --- */
.link-post {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
}

.link-post a {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  color: #666666;
  font-size: 1.3rem;
  text-decoration: none;
  box-shadow: 0 0 1px #cccccc;
}

.link-post a:hover {
  box-shadow: 2px 2px 4px #cccccc;
}

.link-prev {
  padding: 0 1rem 0 2rem;
}

.link-next {
  padding: 0 2rem 0 1rem;
  text-align: right;
}

.link-home {
  padding: 2rem;
  text-align: center;
}

.link-prev::before,
.link-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 15px;
  height: 100%;
  background: #333333;
}

.link-next::before {
  left: auto;
  right: 0;
}

.link-post a div {
  display: table;
  width: 100%;
}

.link-post a div span {
  display: table-cell;
  padding: 1rem 0.5rem;
  vertical-align: middle;
}

/* --- Search Form --- */
.searchform {
  position: relative;
  max-width: 24rem;
  margin: 2rem auto 0;
}

.searchform input[type="text"] {
  width: 100%;
  height: 4rem;
  padding: 0 1rem;
  font-size: 1.2rem;
  background: #fbfbfb;
  border: 1px solid #999999;
}

.searchform button[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  width: 4rem;
  height: 4rem;
  color: #ffffff;
  font-size: 1.8rem;
  background: #555555;
  border: 0;
  cursor: pointer;
}

.searchform button[type="submit"]:hover {
  background: #888888;
}

/* --- Form Table --- */
.table-form {
  width: 100%;
  margin: 3rem 0 0;
}

.table-form th,
.table-form td {
  padding: 2rem ;
}

.table-form th {
  width: 30%;
  text-align: right;
}

.table-form .requied {
  display: inline-block;
  padding: 0.2em 0.4em;
  color: #ffffff;
  font-size: 0.8em;
  background: #f33333;
  border-radius: 4px;
}

.table-form input[type="text"],
.table-form input[type="email"],
.table-form input[type="tel"],
.table-form textarea {
  width: 100%;
  padding: 0.5em;
  border: 1px solid #89bdde;
  border-radius: 5px;
}

.table-form input[type="text"]:focus,
.table-form textarea:focus {
  background: #eeffff;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
}

/* --- CF7 --- */
.wpcf7 .wpcf7-list-item {
  display: block;
}

.wpcf7 input[type="submit"] {
  width: 27rem;
  margin: 1em auto 0;
  padding: 1rem 4rem;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  background: #49a9d4;
  border: 0;
  border-radius: 5px;
}

.wpcf7 input[type="submit"]:hover {
  opacity: 0.7;
}

/* --- Pagination --- */
.pagination {
  margin: 3rem 0;
}

.nav-links {
  display: flex;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  transition: 0.2s;
}

.nav-links a:hover {
  color: #ffffff;
  background: #69a4db;
}

.pagination .page-numbers {
  display: inline-block;
  margin-right: 1rem;
  padding: 0.5rem 1rem;
  color: #69a4db;
  background: #ffffff;
  box-shadow: 0 0 1px #999999;
}

.pagination .current {
  color: #ffffff;
  background: #69a4db;
}

.pagination .prev,
.pagination .next,
.pagination .dots {
  background: transparent;
  box-shadow: none;
}

/* --- TOC --- */
.toc {
  margin: 1.5rem 0;
  padding: 1em 0;
  font-size: 0.9em;
  border: 3px double #dddddd;
}

.toc p {
  text-align: center;
}

.toc li {
  padding: 2px 0 2px 1em;
  text-indent: -1em;
  border-bottom: 1px dashed #eeeeee;
  list-style:none;
}

.toc li::before {
  content:"・";
}

.toc a {
  color: #999999;
  text-decoration: none;
}

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

/* --- Memo --- */
.memo {
  margin: 2em 0;
  padding: 2em 1em;
  font-size: 1.4rem;
  background: #f7f7f7;
  border: 1px solid #dddddd;
}

/* =========================
   7. Footer
========================= */
.site-footer {
  margin-top: 6rem;
  padding: 5.6rem 2rem 2.8rem;
  background: #f5f4f1;
  color: #555555;
  font-size: 1.4rem;
  line-height: 1.9;
}

.site-footer a {
  color: #444444;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-footer a:hover {
  opacity: 0.68;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 4.8rem;
  align-items: start;
  max-width: 110rem;
  margin: 0 auto;
}

.footer-brand {
  text-align: left;
}

.footer-title {
  margin: 0 0 1rem;
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 500;
}

.footer-title a {
  color: #222222;
}

.footer-desc {
  margin: 0 0 2rem;
  color: #666666;
  font-size: 1.5rem;
  line-height: 1.9;
}

.footer-links-main {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.6rem;
}

.footer-links-main a {
  position: relative;
  color: #333333;
  font-size: 1.5rem;
}

.footer-links-main a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0.25;
}

.footer-nav,
.footer-related {
  text-align: left;
}

.footer-heading {
  margin: 0 0 1.4rem;
  padding-bottom: 0.8rem;
  color: #8a847b;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid #d8d5cf;
}

.footer-col ul,
.footer-related ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li + li,
.footer-related li + li {
  margin-top: 0.8rem;
}

.footer-col a,
.footer-related a {
  color: #444444;
  font-size: 1.5rem;
}

.footer-more {
  margin-top: 1.4rem;
}

.footer-more a {
  color: #7b746a;
  font-size: 1.3rem;
}

.footer-copy {
  grid-column: 1 / -1;
  margin-top: 1.6rem;
  padding-top: 2rem;
  text-align: center;
  border-top: 1px solid #ddd8d1;
}

.footer-copy p {
  margin: 0;
  color: #8c867d;
  font-size: 1.2rem;
}

/* =========================
   8. Projects Page
========================= */
.projects-page {
  max-width: 72rem;
  margin: 0 auto;
}

.projects-intro {
  color: #666666;
  font-size: 1.6rem;
  line-height: 2;
}

.projects-group {
  margin-top: 4rem;
  color: #999999;
  font-size: 1.4rem;
}

.projects-list {
  margin-top: 3.2rem;
}

.projects-item {
  padding: 2.4rem 0;
  border-bottom: 1px solid #e5e5e5;
}

.projects-item h2 {
  color: #222222;
  font-size: 2rem;
  line-height: 1.6;
}

.projects-item p {
  margin-top: 0.8rem;
  color: #555555;
  font-size: 1.5rem;
  line-height: 1.9;
}

.projects-item a {
  color: #222222;
  text-decoration: none;
}

.projects-item a:hover {
  text-decoration: underline;
}

/* =========================
   9. Header / Navigation
========================= */

/* --- Brand Bar --- */
.brand-bar {
  background: #f7f7f7;
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}

.brand-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.8rem 1rem;
}

.brand-bar-left,
.brand-bar-nav {
  line-height: 1.4;
}

.brand-bar-home {
  color: #222222;
  transition: opacity 0.2s ease;
}

.brand-bar-home:hover {
  color: #111111;
  opacity: 0.7;
}

.brand-bar-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.brand-bar-nav > a::after {
  bottom: -9px;
  height: 1px;
  background: #222222;
}

.brand-bar-nav > a.current::after,
.brand-bar-nav > a:hover::after {
  height: 2px;
}

/* --- Site Header --- */
.site-header {
  z-index: 900;
  background: #fefefe;
  border-bottom: 1px solid #f3f3f3;
  transition: padding 0.3s ease, transform 0.3s ease;
}

.site-header .inner {
  padding: 1.6rem 1rem 1.2rem;
}

.site-header-title {
  text-align: center;
}

.site-header-title a {
  color: var(--color-text-main);
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: var(--line-height-tight);
  letter-spacing: 0.04em;
}

.site-header-title a:hover {
  opacity: 0.7;
}

.site-header-brand {
  display: none;
}

/* --- Local Nav 共通 --- */
.local-nav {
  margin-top: 1.2rem;
}

.local-nav__row {
  display: flex;
  align-items: center;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.local-nav__row > a::after {
  bottom: 0;
}

.local-nav__scroll {
  overflow-x: auto;
  overflow-y: hidden;
}

.local-nav__scroll-wrap {
  position: relative;
}

/* --- Menu Open（共通） --- */
.menu-open {
  display: none;
  border: 0;
  background: transparent;
  appearance: none;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

/* メニュー開いてるときは背景スクロール止める */
body.is-menu-open {
  overflow: hidden;
}


/* --- SP時（右上ボタン） --- */
@media screen and (max-width: 767px) {

  .menu-open {
    position: absolute;
    top: 0;
    right: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    font-size: 2rem;
    color: #333;
  }

}

/* --- SPメニュー内の「とじる」 --- */
#sp-menu .menu-open {
  width: auto;
  height: auto;
  font-size: 1.4rem;
  padding: 1rem;
}

/* --- SP Menu --- */

#sp-menu {
  width: 300px;
  height: 100%;
  transition: .4s;
  transform: translate(300px);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 300;
  background: #fff;
  overflow-y: scroll; 
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  text-align:center;
  padding:5rem 2rem 2rem;
}

#sp-menu:-webkit-scrollbar {
  display:none;
}
  
#sp-menu.active {
  transform: translate(0); 
}

.sp-menu-brand {
  margin-bottom: 2rem;
  padding: 0.6rem;
  border-top: 3px double #e9e9e9;
  border-bottom: 3px double #e9e9e9;
}

.sp-menu-brand a {
  color: #222222;
  font-size: 1.8rem;
  line-height: 1.4;
}

.sp-menu-brand a:hover {
  opacity: 0.7;
}

.sp-menu-section + .sp-menu-section {
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid #eeeeee;
}

.sp-menu-label {
  margin: 0 0 1.2rem;
  color: #666666;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sp-menu-global,
.sp-menu-local {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sp-menu-global li + li {
  margin-top: 1.2rem;
}

.sp-menu-local li + li {
  margin-top: 0.6rem;
}

.sp-menu-global a,
.sp-menu-local a {
  display: block;
  padding: 0.6rem 0.8rem;
  color: #222222;
  border-radius: 0.4rem;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.sp-menu-local a {
  padding: 0.1rem 0.8rem;
}

.sp-menu-global a:hover,
.sp-menu-local a:hover {
  background: #f7f7f7;
  opacity: 1;
}

.sp-menu-global .menu-en {
  display: block;
  font-size: 1.7rem;
  line-height: 1.4;
  font-weight: 500;
}

.sp-menu-global .menu-ja {
  display: block;
  margin-top: 0.2rem;
  color: #999999;
  font-size: 1.2rem;
  line-height: 1.4;
}

.sp-menu-search {
  margin-top: 1.8rem;
}

.sp-menu-search form {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.sp-menu-search .search_text {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  height: 4rem;
  padding: 0 1.2rem;
  font-size: 1.4rem;
  border: 1px solid #dddddd;
  border-radius: 0;
}

.sp-menu-search button {
  flex: 0 0 auto;
  width: 4rem;
  height: 4rem;
  background: #ffffff;
  border: 1px solid #dddddd;
  cursor: pointer;
}


.overlay {
   position: fixed;
   top: 0;
   left: 0;
   z-index: 200;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, .7);
   opacity: 0;
   visibility: hidden;
   transition: .3s linear;
   text-align: right;
}

.overlay.active {
   opacity: 1;
   visibility: visible;
}

/* =========================
   10. Atlas / Category Utility
========================= */
.archive-content--one-column {
  max-width: 88rem;
  margin: 0 auto;
}

.category-header {
  margin-bottom: 4rem;
  text-align: center;
}

.category-list-group + .category-list-group {
  margin-top: 4.8rem;
  padding-top: 4rem;
  border-top: 1px solid #e5e5e5;
}

.category-list-group h2 {
  margin-bottom: 1rem;
}

.category-list-lead {
  margin-bottom: 1.6rem;
  color: #666666;
}

.category-list-group ul li + li {
  margin-top: 0.8rem;
}

/* =========================
   11. Site Local Nav
========================= */

/* --- IRO --- */
.local-nav--iro {
  margin-top: 1.2rem;
}

.local-nav--iro .local-nav__row--iro {
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem 1.6rem;
}

.local-nav--iro .local-nav__row--iro > a {
  padding: 0.3rem 0.8rem 0.5rem;
  font-size: 1.5rem;
}

.local-nav--iro .local-nav__row--iro > a::after {
  bottom: 0;
  height: 1px;
  background: #222222;
}

.local-nav--iro .local-nav__row--iro > a.current {
  color: #ffffff;
  background: #333333;
}

.local-nav--iro .local-nav__row--iro > a.current::after {
  height: 0;
}

/* --- dic --- */
.local-nav--dic {
  margin-top: 1.2rem;
}

.local-nav--dic .local-nav__row--country {
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem 1.6rem;
}

.local-nav--dic .local-nav__row--country > a {
  padding: 0.3rem 0.8rem 0.5rem;
  font-size: 1.5rem;
}

.local-nav--dic .local-nav__row--country > a::after {
  bottom: 0;
  height: 1px;
  background: #222222;
}

.local-nav--dic .local-nav__row--country > a.current {
  color: #ffffff;
  background: #333333;
}

.local-nav--dic .local-nav__row--country > a.current::after {
  height: 0;
}

.local-nav--dic .local-nav__scroll-wrap {
  margin-top: 1rem;
}

.local-nav--dic .local-nav__row--tone {
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem 0.8rem;
  padding-bottom: 0.4rem;
}

.local-nav--dic .local-nav__row--tone > a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 0.5rem;
  font-size: 1.4rem;
}

.local-nav--dic .local-nav__row--tone > a::after {
  bottom: -0.4rem;
  height: 2px;
  background: #555555;
}

.local-nav--dic .local-nav__row--tone > a::before {
  content: "";
  flex: 0 0 auto;
  width: 0.6rem;
  height: 0.6rem;
  background: #cccccc;
  border-radius: 50%;
}

.local-nav--dic .local-nav__row--tone > a.tone-momo::before     { background: #e8b7c8; }
.local-nav--dic .local-nav__row--tone > a.tone-aka::before      { background: #c85a5a; }
.local-nav--dic .local-nav__row--tone > a.tone-daidai::before   { background: #d58a45; }
.local-nav--dic .local-nav__row--tone > a.tone-ki::before       { background: #d4b64c; }
.local-nav--dic .local-nav__row--tone > a.tone-midori::before   { background: #6d9b6f; }
.local-nav--dic .local-nav__row--tone > a.tone-ao::before       { background: #5b84b8; }
.local-nav--dic .local-nav__row--tone > a.tone-murasaki::before { background: #8a73a8; }
.local-nav--dic .local-nav__row--tone > a.tone-cha::before      { background: #8b6a52; }
.local-nav--dic .local-nav__row--tone > a.tone-bw::before       { background: #8d8d8d; }

.local-nav--dic .local-nav__row--tone > a.current::before {
  transform: scale(1.2);
}

/* --- Birth --- */
.local-nav--birth .local-nav__row--birth {
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem 0.6rem;
  margin-top: 1.2rem;
}

.local-nav--birth .local-nav__row--birth > a {
  padding: 0 0.5rem;
  font-size: 1.4rem;
}

.local-nav--birth .local-nav__row--birth > a::after {
  bottom: -0.5rem;
  height: 2px;
  background: #555555;
}

/* =========================
   12. Responsive
========================= */
@media (max-width: 959px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3.2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-title {
    font-size: 2.6rem;
  }
}

@media screen and (min-width: 768px) {
  .is-scrolled .site-header .inner {
    padding: 0.9rem 1rem 0.8rem;
  }

  .is-scrolled .site-header-brand {
    display: inline;
  }

  .is-scrolled .site-header-title a {
    font-size: 1.7rem;
    line-height: 1.3;
  }

  .is-scrolled .local-nav--birth .local-nav__row--birth {
    gap: 1rem 1.2rem;
    margin-top: 0.8rem;
  }

  .is-scrolled .local-nav--birth .local-nav__row--birth > a {
    font-size: 1.3rem;
  }

  .is-scrolled .local-nav--birth .local-nav__row--birth > a::after {
    bottom: -0.3rem;
  }

  .is-scrolled .local-nav--dic {
    margin-top: 0.8rem;
  }

  .is-scrolled .local-nav--dic .local-nav__row--country {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 1.2rem;
  }

  .is-scrolled .local-nav--dic .local-nav__row--country > a {
    padding: 0.3rem 0.7rem 0.3rem;
    font-size: 1.3rem;
  }

  .is-scrolled .local-nav--dic .local-nav__row--country > a::after {
    bottom: -0.4rem;
  }

  .is-scrolled .local-nav--dic .local-nav__scroll-wrap {
    margin-top: 0.7rem;
  }

  .is-scrolled .local-nav--dic .local-nav__scroll {
    padding: 0 1rem 0.4rem;
    text-align: center;
  }

  .is-scrolled .local-nav--dic .local-nav__row--tone {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
    white-space: nowrap;
  }

  .is-scrolled .local-nav--dic .local-nav__row--tone > a {
    flex: 0 0 auto;
    gap: 0.4rem;
    font-size: 1.3rem;
  }

  .is-scrolled .local-nav--dic .local-nav__row--tone > a::after {
    bottom: 0;
  }

  .is-scrolled .local-nav--dic .local-nav__row--tone > a::before {
    width: 0.55rem;
    height: 0.55rem;
  }
}

@media screen and (max-width: 767px) {
  .brand-bar {
    display: none;
  }

  .label-pc {
    display: none;
  }

  .label-sp {
    display: inline;
  }

  .site-header .inner {
    padding: 1rem 0 0.4rem;
  }

  .site-header-title {
    display: block;
    padding: 0 1rem;
    text-align: left;
  }

  .site-header-brand {
    display: inline;
  }

  .site-header-title a {
    font-size: 1.9rem;
    line-height: 1.3;
  }

  .local-nav--iro .local-nav__row--iro {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 1.2rem 0.8rem;
    overflow-x: auto;
    padding: 0 1rem;
    white-space: nowrap;
  }

  .local-nav--iro .local-nav__row--iro > a {
    flex: 0 0 auto;
    padding: 0.3rem 0.5rem 0.1rem;
    font-size: 1.4rem;
  }

  .local-nav--birth .local-nav__row--birth {
    position: relative;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 1.2rem 0.6rem;
    margin-top: 0.9rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 1rem 0.5rem;
    white-space: nowrap;
  }

  .local-nav--birth .local-nav__row--birth::before {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.1rem;
    height: 1px;
    background: #e5e5e5;
  }

  .local-nav--birth .local-nav__row--birth > a {
    flex: 0 0 auto;
    font-size: 1.4rem;
  }

  .local-nav--birth .local-nav__row--birth > a::after {
    bottom: -0.4rem;
  }

  .local-nav--dic .local-nav__row--country {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 1.2rem 0.8rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 1rem;
    white-space: nowrap;
  }

  .local-nav--dic .local-nav__row--country > a {
    flex: 0 0 auto;
    padding: 0.3rem 0.5rem 0.1rem;
    font-size: 1.4rem;
  }

  .local-nav--dic .local-nav__scroll-wrap {
    margin-top: 0;
  }

  .local-nav--dic .local-nav__scroll-wrap::before {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0;
    height: 1px;
    background: #e5e5e5;
  }

  .local-nav--dic .local-nav__scroll {
    padding: 0 1rem;
    text-align: left;
  }

  .local-nav--dic .local-nav__row--tone {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1.2rem 0.6rem;
    white-space: nowrap;
  }

  .local-nav--dic .local-nav__row--tone > a {
    flex: 0 0 auto;
    gap: 0.35rem;
    font-size: 1.3rem;
  }

  .local-nav--dic .local-nav__row--tone > a::after {
    bottom: -0.4rem;
  }

  .local-nav--dic .local-nav__row--tone > a::before {
    width: 0.5rem;
    height: 0.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-title {
    font-size: 2.3rem;
  }

  .footer-desc {
    font-size: 1.4rem;
  }

  .footer-links-main {
    gap: 0.6rem 1.2rem;
  }

  .footer-links-main a,
  .footer-col a,
  .footer-related a {
    font-size: 1.4rem;
  }

  .site-footer {
    margin-top: 4.8rem;
    padding: 4rem 1.6rem 2.4rem;
  }

  .footer-copy {
    margin-top: 0.4rem;
    padding-top: 1.6rem;
  }

  .link-post a {
    display: block;
  }

  .table-form th,
  .table-form td {
    display: block;
    width: 100%;
  }

  .table-form th {
    padding-bottom: 0;
    text-align: left;
  }

  .table-form .empty {
    display: none;
  }
  
}

/* =========================
   13. HTML整理版への差分
   - / 用
   - header〜main〜footer の構造整理に対応
========================= */

/* パンくず */
.page-breadcrumb {
  margin: 0;
}

.page-breadcrumb .inner {
  padding-top: 1rem;
  padding-bottom: 0;
  width:100%;
  max-width:1100px;
  margin:0 auto;
}

/* メインレイアウト */
#main.layout-main {
  display: flex;
  gap: 3.2rem;
  align-items: flex-start;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding:  2rem;
  background: #ffffff;
}

#main.layout-main #primary {
  flex: 1 1 auto;
  min-width: 0;
}

#main.layout-main #secondary {
  flex: 0 0 300px;
  width: 300px;
  min-width: 0;
}

/* 記事全体 */
.entry {
  min-width: 0;
}

.entry-header {
  margin-bottom: 2.4rem;
}

.entry-header img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 1.6rem;
}

.entry-header h1 {
  margin: 0 0 1.6rem;
  font-size: 2.4rem;
  line-height: 1.5;
  font-family: var(--font-heading);
  font-weight:normal;
}

.entry-header p {
  font-family: var(--font-heading);
  font-weight:normal;
}

.entry-content {
  min-width: 0;
}

.entry-footer {
  margin-top: 3rem;
}

/* スマホ */
@media screen and (max-width: 767px) {
  .page-breadcrumb .inner {
    padding-top: 0.8rem;
  }

  #main.layout-main {
    display: block;
    padding: 0 1.6rem;
  }

  #main.layout-main #secondary {
    width: 100%;
    margin-top: 3rem;
  }

  .entry-header {
    margin-bottom: 2rem;
  }

  .entry-header h1 {
    font-size: 2.1rem;
  }
}

/*  ウィジェット
--------------------------------------- */

#primary .widget {
  margin: 30px auto;
  text-align:center;
  max-width:728px;
}

#primary .widget h2,
#primary .widget h4,
#primary .widget p{
  text-align: left;
}

#primary .main-btm {
  text-align: left;
}

#primary .main-btm img {
  max-width: 250px;
}
#primary .post-pr h3 {
  margin:0;
  padding: 10px;
  background: #7cd3d7;
  border: none;
  color : #fff;
  font-size: 1.4rem;
}
#primary .post-pr > div {
  padding:15px;
  border:5px solid #7cd3d7;
  border-top:none;
  text-align: left;
}

#secondary .widget {
  margin: 0 auto 20px 0;
  background: #B7E1DF url(/common/assets/images/bg-blue.jpg);
  padding: 3px;
}

#secondary .widget .textwidget,
#secondary .widget .menu-site-nav-container  {
  background: #fff;
  padding: 15px;
}

#secondary .widget h3 {
  padding: 15px;
  font-size: 1.6rem;
  color: #39a;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}

#secondary .widget p {
  font-size: 1.5rem;
}


#secondary .widget li {
  border-bottom: 1px solid #f6f6f6;
  position: relative;
  list-style:none;
}

#secondary .widget li img {
  position: absolute;
}

#secondary .widget li a {
  display: block;
  text-decoration:none;
  color:#333;
  position: relative;
  transition: .2s;
  font-size: 1.4rem;
  text-indent:-1.2em;
  padding: .5em 1em .5em 2.2em;
}

#secondary .widget li a:before  {
  content: "◇";
  transition: .2s;
  margin:0 .2em 0 0;
}

#secondary .widget li a:hover {
  color:#02A1E9; /* Blue */
  text-decoration:none;
}

#secondary .widget li a:hover:before {
  content: "◆";
  color:#02A1E9; /* Blue */
}

#secondary .widget .menu-site-nav-container li a:before {
  content: "\f114";
  font-family: icomoon;
  font-weight:normal;
  margin:0 .5em 0 0;
}

#secondary .widget .menu-site-nav-container li a:hover:before {
  content: "\f07b";
  font-family: icomoon;
}

#secondary .widget .clink a {
  display: table;
  text-decoration:none;
  color:#333;
  border-bottom: 1px solid #f6f6f6;
  padding: 10px 0;
  font-weight: normal;
}

#secondary .widget .clink a:hover {
  color:#02A1E9; /* Blue */
  text-decoration:none;
}

#secondary .widget .clink span {
  display: table-cell;
  width:60px;
  height:60px;
  overflow: hidden;
  position: relative;
}

#secondary .widget .clink span img {
  position: absolute;
  max-width:none;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}

#secondary .widget .clink p {
  display: table-cell;
  margin: 0 ;
  padding: 0 0 0 15px;
  font-size:14px;
  vertical-align: middle;
}

#secondary .widget .clink-1 a {
  display:block;
  text-decoration:none;
  color:#333;
  border-bottom: 1px solid #f6f6f6;
  padding: 10px 0;
  font-weight: bold;
  text-align: center;
}

#secondary .widget .clink-1 a:hover {
  color:#02A1E9; /* Blue */
}

#secondary .widget .clink-1 a p{
  font-size: 16px;
}

.side-ad {
  margin: 0 auto 20px 0;
}


/* ページトップへ
-------------------------------------------*/

.page-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 50px;
  height: 50px;
  padding: 0;

  border: 0;
  background: transparent;
  appearance: none;
  cursor: pointer;

  line-height: 1;

  /* 初期は非表示 */
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.3s;
}

body.is-scrolled .page-top {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.page-top img {
  display: block;
  width: 50px;
  height: auto;
}

/* Rinker
****************************************/
.yyi-rinker-img-s .yyi-rinker-image {
  width: 56px;
  min-width: 56px;
  margin:auto;
}
.yyi-rinker-img-m .yyi-rinker-image {
  width: 175px;
  min-width: 175px;
  margin:auto;
}
.yyi-rinker-img-l .yyi-rinker-image {
  width: 200px;
  min-width: 200px;
  margin:auto;
}
.yyi-rinker-img-s .yyi-rinker-image img.yyi-rinker-main-img {
  width: auto;
  max-height: 56px;
}
.yyi-rinker-img-m .yyi-rinker-image img.yyi-rinker-main-img {
  width: auto;
  max-height: 170px;
}
.yyi-rinker-img-l .yyi-rinker-image img.yyi-rinker-main-img {
  width: auto;
  max-height: 200px;
}

div.yyi-rinker-contents div.yyi-rinker-box ul.yyi-rinker-links li {
    list-style: none;
}
div.yyi-rinker-contents ul.yyi-rinker-links {
  border: none;
}
div.yyi-rinker-contents ul.yyi-rinker-links li a {
  text-decoration: none;
}
div.yyi-rinker-contents {
    margin: 2em 0;
}
div.yyi-rinker-contents div.yyi-rinker-box {
    display: flex;
    padding: 26px 26px 0;
    border: 3px solid #f5f5f5;
    box-sizing: border-box;
}
@media (min-width: 768px) {
    div.yyi-rinker-contents div.yyi-rinker-box {
        padding: 26px 26px 0;
    }
}
@media (max-width: 767px) {
    div.yyi-rinker-contents div.yyi-rinker-box {
        flex-direction: column;
        padding: 26px 14px 0;
    }
}
div.yyi-rinker-box div.yyi-rinker-image {
    display: flex;
    flex: none;
    justify-content: center;
}
div.yyi-rinker-box div.yyi-rinker-image a {
    display: inline-block;
    height: fit-content;
    margin-bottom: 26px;
}
div.yyi-rinker-image img.yyi-rinker-main-img {
    display: block;
    max-width: 100%;
    height: auto;
}
div.yyi-rinker-img-s img.yyi-rinker-main-img {
    width: 56px;
}
div.yyi-rinker-img-m img.yyi-rinker-main-img {
    width: 120px;
}
div.yyi-rinker-img-l img.yyi-rinker-main-img {
    width: 200px;
}
div.yyi-rinker-box div.yyi-rinker-info {
    display: flex;
    width: 100%;
    flex-direction: column;
}
@media (min-width: 768px) {
    div.yyi-rinker-box div.yyi-rinker-info {
        padding-left: 26px;
    }
}
@media (max-width: 767px) {
    div.yyi-rinker-box div.yyi-rinker-info {
        text-align: center;
    }
    div.yyi-rinker-box div.yyi-rinker-info div.yyi-rinker-detail {
        text-align: left;
    }
}
div.yyi-rinker-info div.yyi-rinker-title a {
    color: #333;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
}
div.yyi-rinker-info div.yyi-rinker-detail {
    display: flex;
    flex-direction: column;
    padding: 8px 0 12px;
}
div.yyi-rinker-detail div:not(:last-child) {
    padding-bottom: 8px;
}
div.yyi-rinker-detail div.credit-box {
    font-size: 12px;
}
div.yyi-rinker-detail div.credit-box a {
    text-decoration: underline;
}
div.yyi-rinker-detail div.brand,
div.yyi-rinker-detail div.price-box {
    font-size: 14px;
}
@media (max-width: 767px) {
    div.price-box span.price {
        display: block;
    }
}
div.yyi-rinker-info div.free-text {
    order: 2;
    padding-top: 8px;
    font-size: 14px;
}
div.yyi-rinker-info ul.yyi-rinker-links {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 14px;
    padding: 0;
    list-style-type: none;
}
div.yyi-rinker-info ul.yyi-rinker-links li {
    display: inherit;
    flex-direction: column;
    align-self: flex-end;
    text-align: center;
}
@media (min-width: 768px) {
    div.yyi-rinker-info ul.yyi-rinker-links li:not(:last-child){
        margin-right: 8px;
    }
    div.yyi-rinker-info ul.yyi-rinker-links li {
        margin-bottom: 12px;
    }
}
@media (max-width: 767px) {
    div.yyi-rinker-info ul.yyi-rinker-links li {
        width: 100%;
        margin-bottom: 10px;
    }
}
ul.yyi-rinker-links li.amazonkindlelink a {
    background-color: #37475a;
}
ul.yyi-rinker-links li.amazonlink a {
    background-color: #f9bf51;
}
ul.yyi-rinker-links li.rakutenlink a {
    background-color: #d53a3a;
}
ul.yyi-rinker-links li.yahoolink a {
    background-color: #76c2f3;
}
ul.yyi-rinker-links li.freelink1 a {
    background-color: #5db49f;
}
ul.yyi-rinker-links li.freelink2 a {
    background-color: #7e77c1;
}
ul.yyi-rinker-links li.freelink3 a {
    background-color: #3974be;
}
ul.yyi-rinker-links li.freelink4 a {
    background-color: #333;
}
ul.yyi-rinker-links a.yyi-rinker-link {
    display: flex;
    position: relative;
    width: 100%;
    min-height: 38px;
    overflow-x: hidden;
    flex-wrap: wrap-reverse;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    box-shadow: 0 1px 6px 0 rgba(0,0,0,0.12);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: 0.3s ease-out;
    box-sizing: border-box;
}
ul.yyi-rinker-links a.yyi-rinker-link:after {
    position: absolute;
    right: 12px;
    width: 6px;
    height: 6px;
    border-top: 2px solid;
    border-right: 2px solid;
    content: "";
    transform: rotate(45deg);
    box-sizing: border-box;
}
ul.yyi-rinker-links a.yyi-rinker-link:hover {
    box-shadow: 0 4px 6px 2px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}
@media (min-width: 768px) {
    ul.yyi-rinker-links a.yyi-rinker-link {
        padding: 6px 22px 6px 16px;
    }
}
@media (max-width: 767px) {
    ul.yyi-rinker-links a.yyi-rinker-link {
        padding: 6px 24px;
    }
}
div.yyi-rinker-contents.yyi-rinker-design-tate  div.yyi-rinker-box{
    flex-direction: column;
}

div.yyi-rinker-contents.yyi-rinker-design-slim div.yyi-rinker-box .yyi-rinker-links {
    flex-direction: column;
}

div.yyi-rinker-contents.yyi-rinker-design-slim div.yyi-rinker-info {
    width: 100%;
}

div.yyi-rinker-contents.yyi-rinker-design-slim .yyi-rinker-title {
    text-align: center;
}

div.yyi-rinker-contents.yyi-rinker-design-slim .yyi-rinker-links {
    text-align: center;
}
div.yyi-rinker-contents.yyi-rinker-design-slim .yyi-rinker-image {

    margin: auto;
}

div.yyi-rinker-contents.yyi-rinker-design-slim div.yyi-rinker-info ul.yyi-rinker-links li {
  align-self: stretch;
}
div.yyi-rinker-contents.yyi-rinker-design-slim div.yyi-rinker-box div.yyi-rinker-info {
  padding: 0;
}
div.yyi-rinker-contents.yyi-rinker-design-slim div.yyi-rinker-box {
  flex-direction: column;
  padding: 14px 5px 0;
  min-height: 450px;
}

div.yyi-rinker-box div.yyi-rinker-info {
  text-align: left;
}

.yyi-rinker-design-slim div.yyi-rinker-box div.yyi-rinker-info {
  text-align: center;
}

.yyi-rinker-design-slim div.price-box span.price {
  display: block;
}

div.yyi-rinker-contents.yyi-rinker-design-slim div.yyi-rinker-info div.yyi-rinker-title a{
  font-size:16px;
}

div.yyi-rinker-contents.yyi-rinker-design-slim ul.yyi-rinker-links li.amazonkindlelink:before,  div.yyi-rinker-contents.yyi-rinker-design-slim ul.yyi-rinker-links li.amazonlink:before,  div.yyi-rinker-contents.yyi-rinker-design-slim ul.yyi-rinker-links li.rakutenlink:before,  div.yyi-rinker-contents.yyi-rinker-design-slim ul.yyi-rinker-links li.yahoolink:before {
  font-size:12px;
}

div.yyi-rinker-contents.yyi-rinker-design-slim ul.yyi-rinker-links li a {
  font-size: 13px;
}
.entry-content ul.yyi-rinker-links li {
  padding: 0;
}

.yyi-rinker-design-slim div.yyi-rinker-info ul.yyi-rinker-links li {
  width: 100%;
  margin-bottom: 10px;
}
 .yyi-rinker-design-slim ul.yyi-rinker-links a.yyi-rinker-link {
  padding: 10px 24px;
}

/* アイコンフォント
****************************************/
@font-face {
  font-family: 'icomoon';
  src:  url('/common/assets/fonts/icomoon.eot');
  src:  url('/common/assets/fonts/icomoon.eot') format('embedded-opentype'),
    url('/common/assets/fonts/icomoon.ttf') format('truetype'),
    url('/common/assets/fonts/icomoon.woff') format('woff'),
    url('/common/assets/fonts/icomoon.svg') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-flag-Italy .path1:before {
  content: "\e90c";
  color: rgb(0, 146, 70);
}
.icon-flag-Italy .path2:before {
  content: "\e90d";
  margin-left: -1.5em;
  color: rgb(255, 255, 255);
}
.icon-flag-Italy .path3:before {
  content: "\e90e";
  margin-left: -1.5em;
  color: rgb(206, 43, 55);
}
.icon-flag-france .path1:before {
  content: "\e90f";
  color: rgb(237, 41, 57);
}
.icon-flag-france .path2:before {
  content: "\e910";
  margin-left: -1.5em;
  color: rgb(255, 255, 255);
}
.icon-flag-france .path3:before {
  content: "\e911";
  margin-left: -1.5em;
  color: rgb(0, 35, 149);
}
.icon-flag-jpan .path1:before {
  content: "\e912";
  color: rgb(255, 255, 255);
}
.icon-flag-jpan .path2:before {
  content: "\e913";
  margin-left: -1.5em;
  color: rgb(188, 0, 45);
}
.icon-facebook:before {
  content: "\e904";
}
.icon-hatena:before {
  content: "\e900";
}
.icon-instagram:before {
  content: "\e901";
}
.icon-twitter:before {
  content: "\e902";
}
.icon-line:before {
  content: "\e903";
}
.icon-heart:before {
  content: "\f004";
}
.icon-star1:before {
  content: "\f005";
}
.icon-star-o:before {
  content: "\f006";
}
.icon-heart-o1:before {
  content: "\f08a";
}
.icon-square-o:before {
  content: "\f096";
}
.icon-globe:before {
  content: "\f0ac";
}
.icon-square:before {
  content: "\f0c8";
}
.icon-registered:before {
  content: "\f25d";
}
.icon-amazon:before {
  content: "\f270";
}
.icon-tag:before {
  content: "\e909";
}
.icon-caret-right:before {
  content: "\e907";
}
.icon-list:before {
  content: "\e908";
}
.icon-info-circle:before {
  content: "\e906";
}
.icon-star:before {
  content: "\e905";
}
.icon-search:before {
  content: "\f002";
}
.icon-check:before {
  content: "\f00c";
}
.icon-folder:before {
  content: "\f07b";
}
.icon-copy:before {
  content: "\f0c5";
}
.icon-angle-left:before {
  content: "\f104";
}
.icon-home1:before {
  content: "\f015";
}
.icon-circle-close:before {
  content: "\f057";
}
.icon-tel:before {
  content: "\f095";
}
.icon-mail:before {
  content: "\f0e0";
}
.icon-angle-right:before {
  content: "\f105";
}
.icon-folder-o:before {
  content: "\f114";
}
.icon-circle-right:before {
  content: "\f138";
}
.icon-play:before {
  content: "\f04c";
}
.icon-bars:before {
  content: "\f0ca";
}
.icon-arrow-right:before {
  content: "\e90a";
}
.icon-quill:before {
  content: "\e90b";
}
.icon-book:before {
  content: "\e91f";
}

/* ヘッダー下エリア
--------------------------------------- */

#header-area {
  padding: 60px 30px;
  background: url(/common/assets/images/mura-ki.jpg) center center;
  background-size: cover;
}

#header-area .inner {
  padding: 10px 5px;
  text-align: left;
}

#header-area .inner {
  text-align: center;
  padding: 30px 20px;
  background:rgba(255,255,255,0.5);
  outline: 2px solid rgba(255,255,255,.5);
  outline-offset: 2px;
}

#header-area h1 {
  color: #555;
  font-size: 1.8rem;
}

#header-area h2 {
  color: #555;
  font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
  #header-area {
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 1070px) {
  #header-area {
    padding: 60px 0;
  }

}


/* 色ページ：アクセントカラー制御 */
.color-page .color-data {
  border-color: var(--accent-color);
}

.color-page .color-data th {
  background: var(--accent-color);
  color: var(--accent-text);
}

.color-page h2 {
  border-color: var(--accent-color);
}

.color-page .paging {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--accent-text);
}

.color-page .paging a {
  color: var(--accent-text);
}