@charset "UTF-8";

/* =============================================
 CSS assets
============================================= */
@font-face {
  font-family: NotoSansCJKjp;
  font-weight: 400;
  font-style: normal;
  src: url("../font/NotoSansCJKjp-Regular.woff") format("woff");
}

/* =============================================
 Base / Reset
============================================= */
main * {
  box-sizing: border-box;
}

html {
  width: 100vw;
}

body,
div,
p,
h1,
h2,
h3,
h4,
h5,
span,
article,
aside,
figcaption,
figure,
footer,
header,
nav,
section,
ul,
ol {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  background-color: rgba(0, 0, 0, 0);
  line-height: 1.5;
}

body {
  background-color: #1e2b3f !important;
  width: 100%;
}

main {
  color: #000;
  background-color: #e9e9e9 !important;
  font-family: "ヒラギノ角ゴ ProN W3",
    "Hiragino Kaku Gothic ProN W3",
    "Hiragino Sans",
    Meiryo,
    "MS PGothic",
    sans-serif !important;
  line-height: 1;
  margin-top: 0;
}

main div,
main span,
main object,
main iframe,
main h1,
main h2,
main h3,
main h4,
main h5,
main h6,
main p,
main blockquote,
main pre,
main a,
main abbr,
main address,
main cite,
main code,
main del,
main dfn,
main em,
main img,
main ins,
main kbd,
main q,
main s,
main samp,
main small,
main strong,
main sub,
main sup,
main var,
main b,
main u,
main i,
main dl,
main dt,
main dd,
main ol,
main ul,
main li,
main fieldset,
main form,
main label,
main legend,
main table,
main caption,
main tbody,
main tfoot,
main thead,
main tr,
main th,
main td,
main article,
main aside,
main canvas,
main details,
main embed,
main figure,
main figcaption,
main footer,
main header,
main hgroup,
main main,
main menu,
main nav,
main output,
main ruby,
main section,
main summary,
main time,
main mark,
main audio,
main video,
main button,
body input,
header.ETheader,
header.ETheader input {
  font-family: "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3",
    "游ゴシック",
    "YuGothic",
    "メイリオ",
    Verdana,
    sans-serif !important;
}


ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

a:link,
a:visited {
  color: inherit;
}

img {
  vertical-align: bottom;
}

span {
  line-height: inherit;
}

b,
em,
strong,
mark {
  color: inherit;
}

/* =============================================
 Utility
============================================= */
.float_r {
  float: right;
  margin: 17px 40px 17px 17px;
}

.float_l {
  float: left;
  margin: 17px 17px 17px 40px;
}

.displayNone {
  display: none;
}

.font12 {
  font-size: 12px;
}

.font14 {
  font-size: 14px;
}

.font18 {
  font-size: 18px;
}

.textLeft {
  text-align: left;
}

.fontNormal {
  font-weight: normal;
}

.clearfix {
  display: inline-block;
}

.clearfix::after {
  clear: both;
  display: block;
  content: " ";
}

/* 開閉エリア用(汎用, js操作用) */
.retractableArea .text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  transition: display 0.5s ease;
}

.retractableArea.isopen .text {
  display: block;
}

/* =============================================
 Layout
============================================= */
main.header-isfixed {
  margin-top: 35px;
}

#main_inner {
  margin: 0 auto;
}

#single_post_outer {
  width: 100%;
}

/* =============================================
 Common Parts
============================================= */
/* ---------------------
 typeヘッダー
---------------------- */
.header .header-inside {
  min-height: 29px;
}

.header-id {
  top: 5px;
  left: 5px;
}

/* ---------------------
 ETヘッダー
---------------------- */
.ETheader {
  height: 81px;
}

.ETheader .logo {
  display: block;
  height: 46px;
  margin: auto;
}

.ETheader .logo img {
  width: 181px;
  height: 19.5px;
  display: block;
  margin: auto;
  padding-top: 17px;
  /* iosでタップ時にaltを表示しないようにするため */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  pointer-events: auto;
}

.ETheader nav {
  background-color: #007a51;
  width: 100%;
  position: relative;
}

.ETheader h1 {
  height: 46px;
}

.ETheader nav .hamburger-menu-open-btn {
  position: absolute;
  right: 0px;
  top: 6px;
  width: 49px;
  height: 40px;
  margin: 0px;
  padding: 0px;
  z-index: 10000;
}


.hamburger-line {
  display: inline-block;
  position: absolute;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background-color: #FFF;
  transition: all .4s;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
  -ms-transition: all .4s;
  left: 10px;
}

.line-1 {
  top: 11px;
}

.line-2 {
  top: 19px;
}

.line-3 {
  top: 27px;
}

@media only screen and (max-width:350px) {
  .line-2 {
    top: 7px;
  }

  .line-3 {
    top: 14px;
  }
}

/* ---------------------
 ハンバーガーメニュー
---------------------- */
.menu {
  background-color: rgba(0, 0, 0, 0.85);
  transition: width .1s ease;
  width: 0;
  padding: 0 20px;
  right: -40px;
  display: block;
}

.menu.active {
  width: 70%;
  right: 0;
}

.menu-cover {
  opacity: 0;
  overflow: hidden;
}

.menu .logo {
  display: block;
  margin: auto;
  margin-top: 20px;
}

.menu .logo img {
  width: 181px;
  height: 19.5px;
  display: block;
  margin: auto;
  padding-top: 26px;
}

.menu .hamburger-menu-close-btn {
  position: absolute;
  right: 0px;
  top: 38px;
  width: 49px;
  height: 40px;
  margin: 0px;
  padding: 0px;
  z-index: 10000;
}

.menu .hamburger-menu-close-btn .line-1 {
  transform: translateY(6px) rotate(-45deg);
}

.menu .hamburger-menu-close-btn .line-3 {
  top: 23px;
  transform: translateY(-6px) rotate(45deg);
}

.menu section {
  margin: 20px 0;
  min-width: 70vw;
}

.menu section h3 {
  font-weight: bold;
  color: #FFF;
  margin-bottom: 5px;
}

.menu section.hamburger-menu-category-area ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu section.hamburger-menu-category-area li a {
  display: block;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  border: 1px solid #fff;
  color: #fff;
  transition: background 0.3s, color 0.3s;
}

.menu section.hamburger-menu-category-area li a:active {
  background: rgba(221, 221, 221, 0.5);
}

/* 接するセルの線が重なって中央の線が2倍の太さになってしまうためセルごとにborder調整*/
/*最右列は左枠線なし */
.menu section.hamburger-menu-category-area li:nth-child(2n) a {
  border-left: none;
}

/* 最下行は上枠線なし */
.menu section.hamburger-menu-category-area li:nth-last-child(-n+2) a {
  border-top: none;
}


.menu section.hamburger-menu-topics-area li {
  padding: 15px;
  text-align: left;
  position: relative;
}

.menu section.hamburger-menu-topics-area li a {
  padding-bottom: 5px;
  border-bottom: 1px solid #e6e6e6;
  display: block;
  text-decoration: none;
}

.menu section.hamburger-menu-topics-area li a span {
  transition: background 0.3s, color 0.3s;
}

.menu section.hamburger-menu-topics-area li a:active span {
  background: rgba(221, 221, 221, 0.5);
}

.menu section.hamburger-menu-topics-area li a:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 15px;
  top: 7px;
  right: 16.5px;
  border-bottom: 1px solid #fff;
}

.menu section.hamburger-menu-topics-area li a:after {
  content: "";
  position: absolute;
  width: 13px;
  height: 15px;
  top: 4px;
  right: 9px;
  transform: rotate(45deg);
  border-bottom: 1px solid #fff;
}

.menu section.hamburger-menu-tag-area ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.menu section.hamburger-menu-tag-area li {
  text-align: center;
  overflow: hidden;
}

.menu section.hamburger-menu-tag-area li a {
  border: 1px solid #FFFFFF;
  padding: 5px 12px;
  border-radius: 35px;
  display: block;
  transition: background 0.3s, color 0.3s;
  text-decoration: none;
}

.menu section.hamburger-menu-tag-area li a:active {
  background: rgba(221, 221, 221, 0.5);
}

.menu section.hamburger-menu-sns-area ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.menu section.hamburger-menu-sns-area li {
  width: 67px;
}

.menu section.hamburger-menu-sns-area li a {
  display: block;
  position: relative;
}

.menu section.hamburger-menu-sns-area li a::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0);
  transition: background-color 0.3s ease;
}

.menu section.hamburger-menu-sns-area li a:active:after {
  background-color: rgba(255, 255, 255, 0.4);
}

.menu section.hamburger-menu-sns-area li img {
  width: 100%;
  border: 1px solid #FFFFFF;
  border-radius: 4px;
  display: block;
}

.menu section.hamburger-menu-others-area div {
  padding: 0;
  margin-bottom: 15px;
}

.menu section.hamburger-menu-others-area ul {
  text-align: right;
  margin: 30px 0;
}

.menu section.hamburger-menu-others-area .banner a::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0);
  transition: background-color 0.3s ease;
}

.menu section.hamburger-menu-others-area .banner a:active::after {
  background-color: rgba(255, 255, 255, 0.4);
}

.menu section.hamburger-menu-others-area ul li {
  margin-bottom: 10px;
}

.menu section.hamburger-menu-others-area ul li a {
  transition: background 0.3s, color 0.3s;
  text-decoration: none;
}

.menu section.hamburger-menu-others-area ul li a:active {
  background: rgba(221, 221, 221, 0.5);
}

/* ---------------------
 ETヘッダーメニュー
---------------------- */
.ETheader-nav-ul {
  display: flex;
  justify-content: center;
  background-color: inherit;
  justify-content: space-between;
  width: 100%;
  height: 35px;
  align-items: center;
  top: 0;
  transition: all 300ms 0s ease;
  position: relative;
  transform: translateZ(0);
  z-index: 100;
}

.ETheader .ETheader-nav-wrapper.isFixed {
  position: fixed;
  z-index: 10;
  background-color: #007a51;
  width: 100%;
  height: 35px;
  top: 0;
}

.ETheader-nav-ul>li {
  display: inline-block;
  color: #fff;
  font-size: 11.5px;
  font-weight: bold;
  text-align: center;
  height: 100%;
  line-height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ETheader-nav-ul>li:nth-of-type(1) {
  position: relative;
  width: 35%;
}

.ETheader-nav-ul>li:nth-of-type(2) {
  width: 25%;
}

.ETheader-nav-ul>li:nth-of-type(3) {
  width: 20%;
}

.ETheader-nav-ul>li:nth-of-type(4) {
  width: 20%;
  justify-content: space-around;
  position: relative;
}

.ETheader-nav-ul>li:nth-of-type(1)::before {
  content: "";
  position: absolute;
  right: 0;
  border-right: 1px solid white;
  display: block;
  height: 13px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.ETheader li:nth-of-type(4) a {
  padding-right: 4vw !important;
}

.ETheader-nav-ul>li img,
.ETheader-nav-ul>li svg {
  width: 11px;
  height: 11px;
  position: absolute;
  left: 8px;
}

.ETheader-nav-ul>li>a,
.ETheader-nav-ul>li>details {
  width: 75%;
}

.ETheader nav .searchbox {
  display: none !important;
}

.ETheader svg {
  display: none;
}


/* ---------------------
 ETヘッダー_カテゴリーアコーディオンメニュー
---------------------- */
.ETheader-category-accordion-menu {
  --arrow-size: 14px;
  --anime-speed: .1s;
}

.ETheader-category-accordion-title {
  list-style: none;
  position: relative;
  padding-left: 23px;
  text-align: center;
}

.ETheader-category-accordion-title::-webkit-details-marker {
  display: none;
}

.ETheader-category-accordion-menu .ETheader-category-accordion-title::-webkit-details-marker {
  /* iOSで表示されるデフォルトの三角形アイコンを消す */
  display: none;
}

.ETheader-category-accordion-menu span.icon-bar {
  display: block;
  -webkit-clip-path: polygon(100% 13%, 50% 100%, 0 13%, 8% 0, 50% 73%, 92% 0);
  clip-path: polygon(100% 13%, 50% 100%, 0 13%, 8% 0, 50% 73%, 92% 0);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 4px;
  width: var(--arrow-size);
  height: calc(var(--arrow-size) * .6);
  margin: auto;
  background: #fff;
  transition: transform var(--anime-speed);
}

.ETheader-category-accordion-menu[open] .ETheader-category-accordion-title .icon-bar {
  transform: rotate(180deg);
}

.ETheader-category-accordion-menu-ul {
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.85);
  position: absolute;
  left: 0;
  width: 100%;
  top: 35px;
}

.ETheader-category-accordion-menu-ul li {
  padding: 9px 15px 10px 15px;
  text-align: left;
  position: relative;
  font-weight: normal;
}

.ETheader-category-accordion-menu-ul li:first-child {
  margin-top: 7px;
}

.ETheader-category-accordion-menu-ul li:last-child {
  margin-bottom: 9px;
}

.ETheader-category-accordion-menu-ul li a {
  padding-bottom: 5px;
  border-bottom: 1px solid #e6e6e6;
  display: block;
  transition: background 0.3s, color 0.3s;
}

.ETheader-category-accordion-menu-ul li a:active,
.ETheader-category-accordion-menu-ul li a:hover {
  text-decoration: none;
}

.ETheader-category-accordion-menu-ul li a:active span {
  background: rgba(221, 221, 221, 0.5);
}

.ETheader-category-accordion-menu-ul li a::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 15px;
  top: 7px;
  right: 14.5px;
  border-bottom: 1px solid #fff;
}

.ETheader-category-accordion-menu-ul li a::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 15px;
  top: 4.5px;
  right: 8px;
  transform: rotate(45deg);
  border-bottom: 1px solid #fff;
}

/* ---------------------
 ETヘッダー_検索モーダル
---------------------- */
.modal_content {
  display: none;
  position: relative;
  width: 100%;
  height: 0;
  z-index: 10000;
}

.modal_content .overlay {
  width: 100%;
  height: 100vh;
}

.modal_content .modal {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.85);
  top: 0px;
  transition: height .1s ease;
  width: 100%;
  height: 0px;
  overflow: hidden;
}

.modal_content.active .modal {
  height: 66px;
}

.modal_content [id="ETnav_list_in_modal"] {
  position: relative;
}

.modal_content #___gcse_0 {
  width: 93%;
  margin: 0 auto;
}

.modal_content form.gsc-search-box {
  margin-top: 10px;
  box-sizing: border-box;
}

.modal_content .gsc-input-box,
.modal_content table.gsc-search-box,
.modal_content table.gsc-search-box tbody,
.modal_content table.gsc-search-box tr,
.modal_content td.gsib_a,
.modal_content input#gsc-i-id1 {
  border: none !important;
  outline: none !important;
  background: none !important;
}

.modal_content table.gsc-search-box td.gsc-input {
  border: 1px solid #e6e6e6;
  padding-right: 0;
}

.modal_content table.gsc-search-box td.gsc-input input {
  color: #fff;
  font-size: 14px;
  padding-right: 25px !important;
  width: 90% !important;
}

.modal_content table.gsc-search-box td.gsc-input input::placeholder {
  color: #e6e6e6;
}

.modal_content .gsc-input-box {
  padding-top: 4px;
  padding-bottom: 4px;
}

.modal_content .gsc-search-button {
  height: 44px !important;
  position: relative;
}

.modal_content .gsc-search-button .gsc-search-button-v2 {
  position: absolute;
  border: none;
  padding: 11px 20px 11px 20px;
  top: 0;
  right: calc(2px + 5%);
  border-top: 1px solid #e6e6e6;
  border-right: 2px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  border-left: 2px solid #e6e6e6;
  border-radius: 0;
  background-color: #545454;
}

.modal_content .gsc-search-button .gsc-search-button-v2:active {
  background: rgba(221, 221, 221, 0.5);
}

.modal_content .gsc-control-cse {
  padding: 0;
  margin-right: 32px;
}

.modal_content .gsc-search-button .gsc-search-button-v2 img {
  width: 16px !important;
  height: 16px !important;
}

.modal_content .gsst_b {
  line-height: 16px !important;
  margin-top: 8px;
}

.modal_content .gscb_a {
  line-height: 14px !important;
}

/* ---------------------
 フッター
---------------------- */
.pagetop-btn#pagetopBtn {
  position: fixed;
  bottom: 56px;
  right: 3%;
  z-index: 100;
  display: none;
}

.pagetop-btn#pagetopBtn::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  background: #007a51;
  border-radius: 50%;
  top: 0;
  right: 0;
}

.pagetop-btn#pagetopBtn::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 19px;
  right: 17px;
}

.pagetop-btn.twitter {
  position: fixed;
  bottom: 56px;
  right: calc(3% + 50px);
  z-index: 100;
}

.pagetop-btn.twitter::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  background: #0f1419;
  border: solid 1px #CFD9DE;
  border-radius: 50%;
  top: 0;
  right: 0;
}

.pagetop-btn.twitter::after {
  position: absolute;
  content: "";
  width: 22px;
  height: 23px;
  display: inline-block;
  background: url(../img/x_logo_white.png) no-repeat;
  background-size: 100%;
  vertical-align: middle;
  top: 11px;
  right: 12px;
}

.pagetop-btn.hatena {
  position: fixed;
  bottom: 56px;
  right: 3%;
  z-index: 100;
}

.pagetop-btn.hatena::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  background: #fff;
  border: solid 1px #CFD9DE;
  border-radius: 50%;
  top: 0;
  right: 0;
}

.pagetop-btn.hatena::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  background: url(../img/hatebu.png) no-repeat;
  background-size: 100%;
  vertical-align: middle;
  top: 13px;
  right: 10px;
}

.page-footer {
  background-color: #1e2b3f;
  color: #fff;
  font-size: 11px;
  letter-spacing: 1px;
  line-height: 17px;
}

.page-footer .foot-text {
  padding: 25px 3% 0;
  font-size: 10.5px;
}

.page-footer .seals {
  float: right;
  margin-right: 4%;
}

.page-footer .seals li {
  display: inline-block;
  zoom: 1;
  margin-right: 10px;
  vertical-align: middle;
}

.page-footer .copyright {
  width: 100%;
  font-size: 8px;
  float: right;
  border-top: 1px solid #2b3b54;
  margin: 20px 0 30px 0;
  padding-top: 20px;
  text-align: right;
}

.page-footer .copyright small {
  font-size: 10px;
  padding: 11px 5px 10px;
}

@media screen and (max-width: 320px) {
  .page-footer .field {
    width: 93px;
  }
}

/* ---------------------
 下部メニュー
---------------------- */
.bottom-menus {
  padding: 20px 0 10px;
}

.bottom-menus .bottom_line {
  border-bottom: solid 1px #c8c8c8;
  margin: 10px 15px;
}

.bottom-menus hr {
  margin: 0 10px;
}

.bottom-menus__links-list1 {
  padding: 0 20px;
}

.bottom-menus__links-list1 a {
  display: block;
  color: black;
  font-size: 14px;
}

.bottom-menus__links-list1 a:link,
.bottom-menus__links-list1 a:visited {
  color: black;
}

.bottom-menus__links-list1 a::before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: 100%;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 7px;
}

.bottom-menus__links-list1 .concept-link::before {
  background-image: url(../img/ET_SP.png);
}

.bottom-menus__links-list1 .contact-link {
  margin-bottom: 30px;
}

.bottom-menus__links-list1 .contact-link::before {
  background-image: url(../img/mail_SP.png);
}

.bottom-menus__links-list1 li {
  margin-bottom: 10px;
}

.bottom-menus__links-list1 li:last-of-type {
  margin-bottom: 0;
}

.bottom-menus__links-list2 {
  text-align: right;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.bottom-menus__links-list2 .sitemap {
  margin-right: 20px;
  color: #000;
}

.bottom-menus .engineer-dictionary-links {
  padding: 30px 0;
  margin: 0 20px;
}

.bottom-menus .engineer-dictionary-links_ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
}

.bottom-menus .engineer-dictionary-links_ul>li {
  padding: 0 20px;
  position: relative;
  margin-bottom: 10px;
}

.bottom-menus .engineer-dictionary-links_ul>li>a {
  font-size: 14px;
  color: black;
  display: block;
}

.bottom-menus .engineer-dictionary-links_ul>li.title {
  width: 100%;
  font-weight: bold;
  margin-bottom: 11px;
}

.bottom-menus .engineer-dictionary-links_ul>li.title a {
  text-decoration: none;
}

.bottom-menus .engineer-dictionary-links_ul li:not(:last-child):not(:first-child)>a::after {
  content: "|";
  position: absolute;
  right: 0;
  top: 0;
}

.bottom-menus .engineer-dictionary-links_ul li.border_none a::after {
  content: none !important;
}

.bottom-menus .tag-links {
  margin: 20px;
}

.bottom-menus .tags {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  height: calc((1em + 4px*2 + 8px) * 4);
  overflow: hidden;
  line-height: 1em;
}

.bottom-menus .tags li {
  background-color: #6d6d6d;
  color: #fff;
  font-size: 14px;
  padding: 4px 5px;
  border-radius: 3px;
  margin-right: 8px;
  margin-bottom: 8px;
}

.bottom-menus .tags li:hover {
  opacity: 0.8;
}

.bottom-menus .tag-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 11px;
}

.bottom-menus .tag-accordion {
  margin-top: 13px;
  text-align: center;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
}

.bottom-menus .tag-accordion span {
  position: relative;
}

.bottom-menus .tag-accordion span.close:after {
  background-image: url(../img/down_arrow.png);
  position: absolute;
  top: -1px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-size: contain;
  width: 20px;
  height: 20px;
  content: '';
  -webkit-transition: -webkit-transform .4s;
  transition: transform .4s;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}

/* ---------------------
 ショートコード
---------------------- */
.series-description {
  display: block;
  margin: 25px 0;
  border-bottom: 1px solid #e5e5e5;
}

.series-description__heading {
  padding-left: 55px;
  position: relative;
  margin-bottom: 10px;
}

.series-description__heading__title {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 2;
}

.series-description__heading__title:hover {
  text-decoration: none;
}

.series-description__heading__shoulder {
  display: inline-block;
  width: 100%;
  font-size: 12px;
  font-weight: normal;
  line-height: 2;
  margin-top: 2px;
}

.series-description__heading::before {
  padding: 0 4px;
  margin-right: 10px;
  background: #000;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  position: absolute;
  line-height: 1.5;
  left: 0;
  top: 6px;
}

.series-description__heading--series::before {
  content: "連載";
}

.series-description__heading--special::before {
  content: "特集";
}

.series-description__heading a.series-description__heading__title {
  color: #000;
  text-decoration: underline;
}

.series-description__body {
  font-size: 13px;
  line-height: 2;
  margin-bottom: 20px;
}

.series-description:hover {
  text-decoration: none;
}

.article-image {
  margin: 2em 0;
  text-align: center;
}

.article-image a {
  text-decoration: underline;
}

.article-image a:hover {
  text-decoration: none;
}

.article-image__imgBox img {
  max-width: 100%;
}

.article-image__imgBox.isResponsive {
  display: block;
  position: relative;
  height: 0;
  overflow: hidden;
}

.article-image__imgBox.isResponsive img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.article-image__caption {
  padding: 18px 0;
  color: #555;
  text-align: left;
}

.article-image__caption__heading {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 3px;
}

.article-image__caption__body {
  font-size: 13px;
}

.article-image__caption__heading,
.article-image__caption__body {
  line-height: 1.8;
}

.article-image__caption--bg-gray {
  background: #e9e9e9;
  padding: 18px;
}

.article-image__caption--heading-none {
  padding-top: 8px;
  padding-bottom: 8px;
}

.article-image__caption a {
  color: #555;
}

.profile {
  background: #e9e9e9;
  padding: 20px 15px 15px;
  margin: 2em 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #555;
}

.profile__img {
  width: 113px;
  height: 113px;
  border-radius: 70px;
  margin: 0 20px 20px 0;
}

.profile__text {
  display: flex;
  flex-direction: column;
  align-self: center;
}

.profile__text__heading {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.profile__text__body {
  font-size: 13px;
}

.profile__text__heading,
.profile__text__body {
  line-height: 1.8;
}

.profile__text__heading a,
.profile__text__body a {
  text-decoration: underline;
}

.profile__text__heading a:hover,
.profile__text__body a:hover {
  text-decoration: none;
}

.profile a {
  color: #555;
}

.box-design {
  margin: 2em 0;
  padding: 20px 15px;
  background: #daeae6;
  word-break: break-all;
}

.box-design a {
  text-decoration: underline;
}

.box-design a:hover {
  text-decoration: none;
}

.box-design__heading--design1,
.box-design__text--design1 {
  font-size: 14px;
  color: #007a51;
  line-height: 1.8;
}

.box-design__heading--design1 {
  margin-bottom: 20px;
  padding-bottom: 17px;
  border-bottom: 1px solid #007a51;
  font-weight: bold;
}

.box-design__heading--design2 {
  margin-bottom: 20px;
  padding-left: 3px;
  border-left: 5px solid #007a51;
  font-size: 14px;
  font-weight: bold;
  color: #007a51;
  line-height: 1.2;
  position: relative;
}

.box-design__heading--design2::before {
  content: "";
  position: absolute;
  width: 101%;
  height: 160%;
  left: -8px;
  border-bottom: 1px solid #007a51;
}

.box-design__text--design1,
.box-design__textdesign2 {
  color: #000;
}

.box-design__text--design2 {
  font-size: 13px;
  color: #000;
  line-height: 1.8;
}

.box-design a {
  color: #000;
}

.quotation {
  margin: 2em 0;
  padding: 45px 20px;
  background: #e9e9e9;
  border-left: 6px solid #ddd;
  position: relative;
}

.quotation::before,
.quotation::after {
  position: absolute;
  font-size: 45px;
  font-family: "游ゴシック", "游ゴシック体";
  font-weight: bold;
  color: #bbb;
  line-height: 1;
}

.quotation::before {
  content: "\201C";
  top: 15px;
  left: 15px;
}

.quotation::after {
  content: "\201D";
  right: 15px;
  bottom: -10px;
}

.quotation__sentence,
.quotation__source {
  font-size: 13px;
  line-height: 2;
  color: #555;
}

.quotation__sentence {
  margin-bottom: 5px;
}

.quotation__source::before {
  content: "引用元：";
  display: inline-block;
}

.quotation a {
  text-decoration: underline;
}

.quotation a:hover {
  text-decoration: none;
}

.quotation a {
  color: #555;
}

.balloon-block {
  margin: 30px 0 20px;
  line-height: 1.5;
}

.balloon-block>.balloon-type-left::after,
.balloon-block>.balloon-type-right::after {
  display: block;
  clear: both;
  content: "";
}

.balloon-block>.balloon-type-left>.balloon-speaker {
  float: left;
  margin-right: -70px;
  width: 55px;
}

.balloon-block>.balloon-type-right>.balloon-speaker {
  float: right;
  margin-left: -70px;
  width: 55px;
}

.balloon-block>.balloon-type-left>.balloon-speaker>.balloon-icon,
.balloon-block>.balloon-type-right>.balloon-speaker>.balloon-icon {
  text-align: center;
  height: 60px;
}

.balloon-block>.balloon-type-left>.balloon-speaker>.balloon-icon>img.balloon-icon,
.balloon-block>.balloon-type-right>.balloon-speaker>.balloon-icon>img.balloon-icon {
  height: 54px;
  width: 54px;
  border-style: solid;
  border-width: 1px;
  border-color: #ccc;
  border-radius: 50%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.balloon-block>.balloon-type-left>.balloon-speaker>.balloon-speaker-name,
.balloon-block>.balloon-type-right>.balloon-speaker>.balloon-speaker-name {
  overflow: hidden;
  text-align: center;
  font-size: 12px;
  padding: 0;
}

.balloon-block>.balloon-type-right>.balloon-speaker-name {
  text-align: right;
  margin-right: 60px;
  margin-bottom: 5px;
}

.balloon-block>.balloon-type-left>.balloon-speaker-name {
  text-align: left;
  margin-left: 60px;
  margin-bottom: 5px;
}

.balloon-block>.balloon-type-left>.balloon-area::before {
  position: absolute;
  top: 14px;
  left: -12px;
  z-index: 3;
  width: 0;
  height: 0;
  border-top: 6px solid #ccc;
  border-right: 6px solid #ccc;
  border-bottom: 6px solid transparent;
  border-left: 6px solid transparent;
  content: "";
}

.balloon-block>.balloon-type-left>.balloon-area::after {
  position: absolute;
  top: 15px;
  left: -10px;
  z-index: 3;
  width: 0;
  height: 0;
  border-top: 6px solid #fff;
  border-right: 6px solid #fff;
  border-bottom: 6px solid transparent;
  border-left: 6px solid transparent;
  content: "";
}

.balloon-block>.balloon-type-right>.balloon-area::before {
  position: absolute;
  top: 14px;
  right: -12px;
  z-index: 3;
  width: 0;
  height: 0;
  border-top: 6px solid #ccc;
  border-right: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #ccc;
  content: "";
}

.balloon-block>.balloon-type-right>.balloon-area::after {
  position: absolute;
  top: 15px;
  right: -10px;
  z-index: 3;
  width: 0;
  height: 0;
  border-top: 6px solid #fff;
  border-right: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #fff;
  content: "";
}

.balloon-block>.balloon-type-left>.balloon-area>.balloon-text,
.balloon-block>.balloon-type-right>.balloon-area>.balloon-text {
  font-size: 14px;
  line-height: 1.8;
  position: relative;
  padding: 15px 17px;
  z-index: 2;
  background-color: #fff;
  border-style: solid;
  border-width: 1px;
  border-color: #ccc;
  border-radius: 10px;
  word-wrap: break-word;
  word-break: break-word;
}

@media screen and (min-width: 721px) {
  .balloon-block>.balloon-type-left>.balloon-area {
    float: left;
    position: relative;
    margin-left: 75px;
    margin-right: 75px;
  }
}

@media screen and (max-width: 720px) {
  .balloon-block>.balloon-type-left>.balloon-area {
    float: left;
    position: relative;
    margin-left: 72px;
  }
}

@media screen and (min-width: 721px) {
  .balloon-block>.balloon-type-right>.balloon-area {
    float: right;
    position: relative;
    margin-right: 80px;
    margin-left: 80px;
  }
}

@media screen and (max-width: 720px) {
  .balloon-block>.balloon-type-right>.balloon-area {
    float: right;
    position: relative;
    margin-right: 72px;
  }
}

.jobBoad {
  font-size: 14px;
  line-height: 1.7;
  height: 95px;
  width: 100%;
  background-color: #e5e5e5;
  margin: 11px 0;
  display: flex;
  flex-direction: row;
}

.jobBoad:nth-of-type(even) {
  background-color: rgba(255, 255, 255, 0.5);
}

.jobBoad .pic {
  width: auto;
  height: auto;
  max-height: 80px;
  max-width: 100px;
}

.jobBoad .innerLouter {
  float: left;
  display: table;
  margin: 0 1.5% 0 1.5%;
  padding: 0;
  height: 95px;
  width: 30%;
}

.jobBoad .inner_boxR {
  width: 100%;
  height: 95px;
  display: flex;
  align-items: center;
}

.jobBoad .inner_boxL {
  display: table-cell;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  text-align: center;
}

.jobBoad .text {
  padding: 0 3% 0 3%;
  font-weight: bold;
  line-height: 1.2;
}

.jobBoad .text .name {
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 1px;
  color: #888;
}

.jobBoad .text a {
  font-size: 15px;
  padding-top: 5px;
}

@media only screen and (min-device-width: 568px) {
  .jobBoad .innerLouter {
    background: #d3d3d3;
    margin: 0;
  }

  .jobBoad .inner_boxR {
    width: 70%;
  }
}

.su-table {
  width: 100%;
  margin-bottom: 1.5em;
}

.su-table table {
  width: 100% !important;
  margin: 0 !important;
  border-collapse: collapse !important;
  font-size: 1em !important;
  border: 1px solid #ccc !important;
  table-layout: auto !important;
}

.su-table table th {
  text-align: center !important;
  padding: 1em !important;
  font-size: 1em !important;
  font-weight: bold !important;
  color: #333 !important;
  border: 1px solid #ccc !important;
  background: #f0f0f0 !important;
}

.su-table table td {
  padding: 0.5em 1em !important;
  border: 1px solid #ccc !important;
  background: #fff !important;
}

.su-table-responsive {
  overflow-x: auto;
}

.su-table-responsive table {
  width: auto !important;
  min-width: 100% !important;
}

.su-table-responsive table th,
.su-table-responsive table td {
  word-break: initial !important;
}

.su-table-alternate table tr:nth-child(even) td {
  background-color: #f7f7f7 !important;
}

.su-table-fixed table {
  table-layout: fixed !important;
}

/* ---------------------
 クイックタグ
---------------------- */
.marker_yellow {
  background: linear-gradient(transparent 80%, #f8e81c 0);
  font-weight: 700;
  font-family: sans-serif;
}

.b_green {
  color: #159671;
  font-weight: bold;
  font-size: 15px;
  padding: 10px 0;
  margin: 0px !important;
  line-height: 1.5 !important;
}

.youtube-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 1em 0;
}

.youtube-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ---------------------
 ページネーション
---------------------- */
.pagination {
  text-align: center;
  margin: 50px 0 60px 0;
}

.pagination li {
  font-size: 14px;
  display: inline-block;
  margin: 0 5px;
}

.pagination li a {
  font-size: 12px;
  color: #000;
  display: inline-block;
  background-color: #fff;
  height: 32px;
  width: 32px;
  padding: 10px 0;
  box-sizing: border-box;
  line-height: 1;
  text-decoration: none !important;
}

.pagination li a:hover {
  text-decoration: none;
  background-color: #007a51;
  color: #fff;
}

.pagination .now a {
  background-color: #007a51;
  color: #fff;
}

.pagination li.dot {
  background-color: transparent;
}

.pagination li.next a {
  background-image: url(//type.jp/et/feature/sta/img/pagen.png);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 5px;
}

.pagination li.prev a {
  background-image: url(//type.jp/et/feature/sta/img/pagep.png);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 5px;
}

.pagination li.next a:hover {
  background-image: url(//type.jp/et/feature/sta/img/pagen_on.png);
}

.pagination li.prev a:hover {
  background-image: url(//type.jp/et/feature/sta/img/pagep_on.png);
}

/* ---------------------
 記事リンクカード
---------------------- */
.cardArea {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 0 15px;
}

.cardArea a {
  text-decoration: none;
}

.cardArea a:hover img {
  opacity: 0.7;
}

.cardArea a:hover .title {
  text-decoration: underline;
}

.cardArea .title {
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.card {
  width: 47.5%;
  height: auto;
  background-color: #fff;
  margin-bottom: 15px;
  box-shadow: 0 2px rgba(0, 0, 0, 0.1);
}

.card__imgBox {
  display: block;
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: calc(630 / 1200 * 100%);
}

.card__imgBox img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.card .text {
  color: #888;
  line-height: 1.8;
  padding: 0 0 0 0;
}

.card__inner {
  padding: 15px 14px 15px 14px;
}

.card__inner .date time {
  color: #888;
}

.card__inner .title {
  font-size: 11px;
  line-height: 1.8;
  margin-top: 5px;
  letter-spacing: 0.5px;
  height: 57px;
  -webkit-line-clamp: 3;
}

.card--black .card__inner {
  background: #000;
}

.card--black .date time,
.card--black .newMark,
.card--black .title {
  color: #fff;
}

.card--large {
  width: 100%;
  height: auto;
  margin-bottom: 17px;
}

.card--large:last-of-type {
  margin-bottom: 25px;
}

.card--large .card__inner {
  padding: 16px 15px 10px 15px;
}

.card--large .title {
  font-size: 16px;
  height: 72px;
  margin: 3px 0 5px 0;
  line-height: 1.55;
}

.card--large .text {
  font-size: 11px;
  color: #888;
  line-height: 2;
  height: 40px;
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  letter-spacing: 1.5px;
}

.list-card {
  margin-bottom: 5px;
  width: 100%;
}

.cardArea .list-card+.list-card::before {
  display: block;
  content: '';
  margin: 18px 0;
  border-top: 1px #c5c5c5 solid;
}

.list-card a {
  display: flex;
}

.list-card__imgBox {
  width: 154px;
  height: 81px;
  margin: 5px 15px 0 0;
}

.list-card__imgBox img {
  width: 100%;
  height: auto;
}

.list-card__inner {
  width: calc(100% - 145px);
  margin: 5px 0;
}

.list-card__inner .title {
  font-size: 15px;
  min-height: 45px;
  max-height: 67.5px;
  -webkit-line-clamp: 3;
  line-height: 1.5;
  margin-bottom: 5px;
}

.list-card__inner .date {
  color: #888;
}

.list-card:last-of-type .list-card__inner {
  border-bottom: none;
}

.cardArea.in_article.ranking {
  width: 100%;
  margin: 0 calc(50% - 50vw);
  color: #fff;
  background: #000;
  padding: 20px 15px 13px;
}

.cardArea.in_article.ranking .cardAreaName {
  margin: 20px auto 40px;
}

.cardArea.in_article.ranking .list-card__inner .title,
.cardArea.in_article.ranking .list-card__inner .newMark {
  color: white;
}

.cardArea.in_article.ranking .list-card__inner .date {
  color: #b8b8b8;
}

.cardArea.in_article.ranking .list-card:last-of-type {
  margin-bottom: 0;
}

.cardArea.in_article.ranking .more-button {
  margin: 30px auto;
}

.cardArea.ranking article {
  counter-increment: ranking;
}

.rank {
  position: relative;
  display: block;
}

.rank::before {
  content: counter(ranking);
  position: absolute;
  font-style: oblique;
  font-size: 20px;
  color: #fff;
  right: 10px;
  bottom: 2px;
  z-index: 2;
  width: 1em;
  text-align: right;
}

.rank::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: 0;
  bottom: 5px;
  opacity: 0.7;
  border-top: 12px solid transparent;
  border-right: 12px solid #000;
  border-bottom: 35px solid #000;
  border-left: 35px solid transparent;
  z-index: 1;
  text-align: right;
}

.tag-list {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  margin-top: 10px;
  max-height: 1.8em;
  line-height: 1.8em;
  overflow: hidden;
}

.tag-list li {
  color: #007A51;
  margin-right: 8px;
}

.tag-list li:hover {
  text-decoration: underline #007A51;
}

.jobBoard_feature {
  padding: 0 15px 13px;
}

.jobBoard_feature .cardAreaName {
  margin: 40px auto;
}

.jobBoard_feature .card {
  margin: 17px 0 0 0;
  display: flex;
  width: 100%;
  height: 95px;
  color: #000;
  background-color: #fff;
  box-shadow: none;
  position: relative;
}

@media screen and (min-width: 415px) {
  .jobBoard_feature .card {
    height: 95px;
  }
}

.jobBoard_feature .card__imgBox {
  width: 130px;
  height: 95px;
  margin-right: 15px;
  padding: 0;
}

.jobBoard_feature .card__inner {
  padding: 0;
  width: calc(100vw - 145px - 40px);
  border-bottom: 0;
  display: flex;
  align-items: center;
}

.jobBoard_feature .card__inner .text {
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 15px;
}

.cardArea.related {
  padding: 0 15px;
}

/* ---------------------
 その他共通パーツ
---------------------- */
.pageName {
  padding: 28px 15px 19px;
  font-size: 24.5px;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 2px;
}

.lead {
  margin: 0 15px;
  padding: 15px 0;
  border-top: 1px solid #d7d7d7;
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 1.1px;
}

.lead .retractableArea {
  font-size: 11px;
}

.lead .retractableArea .moreBtn {
  display: block;
  text-align: right;
  color: #888;
}

.lead .retractableArea .moreBtn::before {
  content: "[";
  color: inherit;
}

.lead .retractableArea .moreBtn::after {
  content: "]";
  color: inherit;
}

.cardAreaName {
  font-size: 22px;
  text-align: center;
  line-height: 1;
  letter-spacing: 1.5px;
  margin: 20px auto;
}

.cardAreaName .CN_under {
  display: block;
  font-weight: normal;
  padding-top: 10px;
  font-size: 11px;
  letter-spacing: 1px;
}

hr {
  border: none;
  border-bottom: 1px solid #b5b5b5;
}

.newMark {
  color: #007a51;
  padding-right: 3px;
}

.more-button {
  margin: 20px auto;
}

.more-button a {
  display: inline-block;
  position: relative;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 38px;
  text-align: center;
  color: #fff;
  width: 230px;
  height: 38px;
  background: linear-gradient(90deg, #47aa5e 20%, #007a51 100%);
}

.more-button a.title:hover {
  background-color: rgba(0, 122, 81, 0.8);
  text-decoration: none;
  opacity: 0.7;
}

.more-button a::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 15px;
  top: 5px;
  right: 15px;
  border-bottom: 2px solid #fff;
}

.more-button a::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 15px;
  top: 4px;
  right: 8px;
  transform: rotate(43deg);
  border-bottom: 2px solid #fff;
}

.follow-twitter {
  background-color: #0f1419;
  border-radius: 3px;
  margin: 0 auto;
  padding: 9px 0;
  width: 238px;
  display: block;
  color: #fff;
  font-size: 12px;
  text-align: center;
}

.follow-twitter::before {
  content: "";
  width: 17px;
  height: 18px;
  display: inline-block;
  background: url(../img/x_logo_white.png) no-repeat;
  background-size: 100%;
  vertical-align: middle;
  margin-right: 12px;
}

.follow-twitter:link,
.follow-twitter:visited {
  color: white !important;
}

.follow-twitter--large {
  border-radius: 5px;
  padding: 17px 0;
  width: 249px;
  font-size: 14px;
  font-weight: bold;
}

.follow-twitter--large::before {
  width: 25px;
  height: 26px;
}

.banner {
  padding: 15px;
}

.banner a {
  display: block;
  position: relative;
  height: 0;
  overflow: hidden;
}

.banner a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.iframeAmazon {
  margin: 10px 7%;
  text-align: center;
}

/* ---------------------
 埋め込みウィジェット
---------------------- */
.twitter-tweet.twitter-tweet-rendered {
  margin: 0 auto;
  width: 100% !important;
}

.twitter-tweet.twitter-tweet-rendered iframe {
  margin: 0 auto !important;
  max-width: 414px !important;
}

.instagram-media {
  margin: 0 auto !important;
  max-width: 414px !important;
  min-width: initial !important;
}

.fb_iframe_widget {
  text-align: center;
}

.fb_iframe_widget span {
  max-width: 414px !important;
  width: 100% !important;
  text-align: center;
}

#facebookPlagin {
  margin: 20px 0;
  border-bottom: 1px solid #bfbfbf;
}

/* =============================================
 Page / Single 固有
============================================= */
/* ---------------------
 TOP / スライダー(slick)
---------------------- */
.slider {
  overflow: hidden;
  position: relative;
  opacity: 0;
}

.slider.slick-initialized {
  opacity: 1;
  transition: opacity 0.3s linear;
  position: relative;
}

.slider .slick-track {
  display: flex;
}

.slick-slide.card--brandpanel {
  display: inline-block;
  height: 100%;
  box-shadow: none;
  margin: 0;
  background-color: #000;
}

.slick-slide.card--brandpanel a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

.slick-slide.card--brandpanel .card__inner {
  background: #000;
  height: 95px;
  padding: 15px 4% 10px;
}

.slick-slide.card--brandpanel .date time,
.slick-slide.card--brandpanel .newMark,
.slick-slide.card--brandpanel .title {
  color: #fff;
}

.slick-slide.card--brandpanel .date {
  padding-top: 10px;
  font-size: 12px;
}

.slick-slide.card--brandpanel .date time {
  font-size: 98%;
}

.slick-slide.card--brandpanel .title {
  margin: 0;
  height: 45px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.7;
}

.arrow {
  position: absolute;
  width: 13%;
  height: 52.5vw;
  max-width: 50px;
  z-index: 5;
  top: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.arrow.right::after,
.arrow.left::after {
  content: "";
  min-width: 8px;
  min-height: 8px;
  width: 1.5vw;
  max-width: 14px;
  max-height: 14px;
  height: 1.5vw;
  border: 0;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
}

.arrow.left {
  left: 0;
}

.arrow.left::after {
  left: 45%;
  border-bottom: solid 2px #c0babb;
  border-left: solid 2px #c0babb;
}

.arrow.right {
  right: 0;
}

.arrow.right::after {
  right: 45%;
  border-top: solid 2px #c0babb;
  border-right: solid 2px #c0babb;
}

.arrow.right::before,
.arrow.left::before {
  position: absolute;
  content: "";
  min-width: 18px;
  min-height: 18px;
  width: 8vw;
  height: 8vw;
  max-width: 28px;
  max-height: 28px;
  border-radius: 50%;
  background-color: #fffa;
}

/* ---------------------
 TOP / その他
---------------------- */
[id="index_top_outer"] .cardArea.latest .card--large:nth-of-type(3),
[id="index_top_outer"] .cardArea.pickup .card--large:nth-of-type(2) {
  margin-bottom: 20px;
}

[id="index_top_outer"] .cardArea.latest .cardAreaName,
[id="index_top_outer"] .cardArea.dictionary .cardAreaName {
  margin: 23px auto 19px;
}

[id="index_top_outer"] .cardArea.pickup {
  margin-bottom: 0;
}

/* ---------------------
 記事ページ
---------------------- */
.top-article-image {
  margin: 0 calc(50% - 50vw);
  display: block;
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: calc(630 / 1200 * 109%);
}

.top-article-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

[id="postHeader"] {
  padding: 20px 0 25px;
  border-bottom: solid 2px #e5e5e5;
  width: 100%;
}

[id="postHeader"] h1 {
  color: #000;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 13px;
}

[id="postHeader"] .date {
  width: 100%;
  margin-right: 14px;
  font-size: 12px;
  line-height: 1;
  color: #000;
  display: flex;
}

[id="postHeader"] .date .newMark {
  font-size: 13px;
}

[id="postHeader"] .date .PR {
  color: #888;
  font-size: 9px;
  padding-top: 2px;
}

[id="postHeader"] .date time {
  color: #000;
  font-size: 13px;
  letter-spacing: 0;
}

[id="postHeader"] .date a.hash {
  margin-left: 13px;
  font-size: 13px;
  color: #000;
}

[id="postHeader"] .date a.hash::before {
  content: "＃";
}

[id="postHeader"] .tag-list {
  clear: both;
  max-height: calc(20px + 8px);
}

[id="postHeader"] .tag-list li {
  background-color: #6d6d6d;
  color: #fff;
  padding: 4px 5px;
  border-radius: 3px;
  margin-right: 8px;
  margin-bottom: 10px;
}

[id="postHeader"] .tag-list li a {
  text-decoration: none !important;
}

[id="postHeader"] .tag-list li:hover {
  opacity: 0.8;
}

[id="single_post"] {
  color: #000;
  background: #fff;
  padding: 0 4% 15px;
  width: 100%;
  box-shadow: 0 2px rgba(0, 0, 0, 0.1);
}

[id="single_post"] h2 {
  font-size: 17px;
  color: #008b65;
  margin: 30px 0 15px;
  border-left: 7px solid #008b65;
  padding-left: 10px;
}

[id="single_post"] h3 {
  font-size: 15px;
  padding: 4%;
  margin: 10px 0;
  background-image: url(../img/h4_back_SP.png);
  background-size: 8px;
  background-repeat: repeat;
}

[id="single_post"]>p {
  font-size: 14px;
  margin: 10px 0;
  line-height: 2;
  word-break: break-word;
}

[id="single_post"] strong {
  font-weight: bold;
}

[id="single_post"] p iframe {
  max-height: 267px !important;
}

@media screen and (min-width: 415px) {
  [id="single_post"] p iframe {
    max-height: 500px !important;
  }
}

[id="single_post"] a:not([class]):link,
[id="single_post"] a:not([class]):visited {
  text-decoration: underline;
}

[id="single_post"] a:not([class]):hover {
  text-decoration: none;
}

[id="single_post"] code {
  font-size: 14px;
}

[id="toc_container"] {
  padding: 10px;
  margin: 2em 0;
  background: #fff;
  border: solid 1px #e5e5e5;
}

[id="toc_container"] a {
  text-decoration: underline;
}

[id="toc_container"] a:hover {
  text-decoration: none;
}

[id="toc_container"] .toc_title {
  display: inline-block;
  background: #000;
  padding: 1px 5px 0;
  margin-bottom: 8px;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  line-height: 1.6;
}

[id="toc_container"] ul ul {
  margin-left: 20px;
  margin-bottom: 5px;
}

[id="toc_container"] li {
  line-height: 2;
}

[id="toc_container"] a {
  display: block;
  font-size: 14px;
  padding-left: 23px;
  color: #000;
}

[id="toc_container"] ul {
  counter-reset: number;
}

[id="toc_container"] ul a::before {
  counter-increment: number;
  content: counter(number) ".";
  display: inline-block;
  margin-right: 10px;
  color: #555;
  font-weight: bold;
}

[id="toc_container"] ul ul a {
  font-size: 12px;
  padding-left: 36px;
}

[id="toc_container"] ul ul a::before {
  content: none;
}

.sns {
  margin: 50px 0 25px 0;
}

.sns .sns__head {
  font-weight: bold;
  text-align: center;
  font-size: 14px;
  margin-bottom: 10px;
}

.sns .follow-twitter {
  margin-bottom: 20px;
}

.sns .sns__list {
  margin: 0 auto;
  padding: 0;
  width: 92%;
  display: flex;
  justify-content: space-between;
}

.sns li {
  width: 22%;
  background: #fff no-repeat center center;
  border: 1px solid #c9c9c9;
  border-radius: 3px;
  font-size: 11px;
  text-align: center;
}

.sns li a {
  display: block;
  height: 27px;
  padding: 3px 0;
  color: #fff;
  text-decoration: none;
}

.sns li.twitter {
  background-image: url(../img/x_logo_black.png);
  background-size: 17px auto;
}

.sns li.line {
  background-image: url(../img/line.png);
  background-size: 33.5px auto;
}

.sns li.facebook {
  background-image: url(../img/facebook.png);
  background-size: 18.5px auto;
}

.sns li.hatena {
  background-image: url(../img/hatebu.png);
  background-size: 17.5px auto;
}

[id="single_post_outer"] .pagination {
  margin: 50px 0 0;
  clear: both;
}

[id="single_post_outer"] .nextLink+.pagination {
  margin: 12px 0 0;
}

[id="single_post_outer"] .nextLink {
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1.4;
  margin: 30px 0 0;
  clear: both;
}

[id="single_post_outer"] .nextLink a {
  display: block;
  margin-top: 2px;
}

/* ---------------------
 カテゴリページ
---------------------- */
[id="category"] .pagination {
  padding: 15px 0 30px 0;
  margin: 0;
}

/* ---------------------
 ランキングページ
---------------------- */
[id="ranking"] .rank::after {
  bottom: 0;
}

/* ---------------------
 404ページ
---------------------- */
.page404 h1 {
  font-size: 14px;
  margin: 10px 4% 0;
  line-height: 2;
  font-weight: normal;
}

/* ---------------------
 サイトマップページ
---------------------- */
.page-sitemap {
  color: #000;
  background: #fff;
}

.page-sitemap h1 {
  font-size: 22px;
}

.page-sitemap [id="single_post"] {
  padding: 0 4% 30px;
}

.page-sitemap h2 {
  font-size: 17px;
  color: #008b65;
  margin: 20px 0 15px;
  border-left: 7px solid #008b65;
  padding-left: 10px;
}

.page-sitemap .sitemap-list a {
  text-decoration: underline;
  display: block;
  color: #000;
  padding-left: 5px;
  line-height: 2;
}

.page-sitemap .sitemap-list a:hover {
  text-decoration: none;
}

.page-sitemap .sitemap-list>li {
  display: flex;
  align-items: center;
}

.page-sitemap .sitemap-list>li::before {
  content: "\025b6";
  font-size: 12px;
  color: #007a51;
}

.page-sitemap .sitemap-list>li>a {
  font-weight: bold;
}

.page-sitemap .sitemap-list__children,
.page-sitemap .sitemap-list__grandchildren {
  margin-left: 20px;
}

.page-sitemap .sitemap-list__children li,
.page-sitemap .sitemap-list__grandchildren li {
  display: flex;
}

.page-sitemap .sitemap-list__children li::before,
.page-sitemap .sitemap-list__grandchildren li::before {
  content: "\2514";
  margin: 3px 3px 0 0;
}

.page-sitemap .sitemap-list__children a,
.page-sitemap .sitemap-list__grandchildren a {
  padding-left: 2px;
}

/* ---------------------
 連載一覧 ＆ 特集一覧ページ
---------------------- */
.pageSeries {
  width: 100%;
  padding: 0 15px;
  margin-bottom: 100px;
}

.pageSeries hr {
  margin: 0;
}

.pageSeries .lead {
  padding: 23px 9px;
  font-size: 14px;
  line-height: 2;
  margin: 0;
}

.pageSeries li {
  margin-bottom: 6vw;
}

.pageSeries a {
  display: block;
}

.series_links.large a {
  display: block;
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: calc(150 / 600 * 100%);
}

.series_links.large a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.series_links.small {
  border-top: 1px solid #b5b5b5;
}

.series_links.small li {
  border-bottom: 1px solid #b5b5b5;
  margin: 0;
}

.series_links.small a {
  padding: 17px 0;
  color: black;
  font-size: 14px;
  font-weight: bold;
}

/* ---------------------
 コンセプトページ
---------------------- */
.pageConcept {
  width: 100%;
}

.pageConcept a:link,
.pageConcept a:visited {
  color: black;
}

.pageConcept__text {
  font-size: 3.3vw;
  margin: 0 auto 50px;
  padding: 31vw 25vw 19vw;
  line-height: 8vw;
  background: url(../img/concept_bg_sp.png) no-repeat;
  background-size: 100%;
  width: 100%;
  height: 237vw;
}

.pageConcept__text h1 {
  display: block;
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: calc(86 / 360 * 100%);
  margin: 0 auto 9.5vw;
  width: 47vw;
}

.pageConcept__text h1 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.pageConcept__text p {
  margin-bottom: 8vw;
  line-height: 2;
}

.pageConcept__text p .kerning {
  letter-spacing: -1px;
}

.pageConcept__text p br {
  display: none;
}

.pageConcept__promotion {
  text-align: center;
  margin-bottom: 60px;
}

.pageConcept__promotion p {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 18px;
}

.pageConcept__promotion a {
  font-size: 14px;
}

.pageConcept__promotion .follow-twitter {
  margin-bottom: 20px;
}

.pageConcept__promotion a.writer,
.pageConcept__promotion a.contact {
  display: inline-block;
  padding: 10px;
  letter-spacing: 0.8px;
}

.pageConcept__promotion a.writer::before {
  background: url(../img/person.png) no-repeat;
}

.pageConcept__promotion a.contact::before {
  background: url(../img/mail_SP.png) no-repeat;
}

.pageConcept__promotion a.writer::before,
.pageConcept__promotion a.contact::before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: 100%;
  vertical-align: middle;
  margin-right: 5px;
}

.pageConcept .cardArea {
  padding: 0 15px;
}

iframe.footer-iframe {
  width: 1px;
  height: 1px;
  border: none;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 0;
}

/* ショートコード - 関連記事 */
.related-post {
  display: flex;
  overflow: hidden;
  /* 親要素からはみ出す部分を隠す */
  margin: 30px auto;
  width: 100%;
  height: 90px;
  border: 1px solid #E8E9EA;
  border-radius: 4px;
}

.related-post-link {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  width: 100%;
}

.related-post-image {
  width: 90px;
  /* 固定幅 */
  height: 90px;
  /* 固定高さ */
  flex-shrink: 0;
  /* 画像が縮小されないようにする */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* 右寄せ */
  overflow: hidden;
  /* 画像がはみ出さないようにする */
}

.related-post-image img {
  width: 90px;
  /* 固定幅 */
  height: 90px;
  /* 固定高さ */
  object-fit: cover;
  display: block;
  object-position: center;
}

.related-post-text {
  width: calc(100% - 90px);
  /* カードサイズ - 画像幅 */
  padding: 10px;
  background-color: #fff;
  color: #333;
  word-break: break-word;
}

.related-post-text strong {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 2行で省略する */
  overflow: hidden;
  text-overflow: ellipsis;
  /* 省略記号の表示 */
  font-size: 12px;
  margin-bottom: 5px;
  color: #000;
}

.related-post-text em {
  font-size: 9px;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 2行で省略する */
  overflow: hidden;
  text-overflow: ellipsis;
  /* 省略記号の表示 */
}

.related-post:hover {
  border: 1.5px solid #888;
}

/* ショートコード - 会員限定コンテンツ */
.type-member-card {
  background: #fff;
  border-radius: 6px;
  border: solid 1px #d7d7d7;
  padding: 12px 0px;
  text-align: center;
  box-shadow: 3px 4px 3px 0 rgba(0, 0, 0, 0.25);
  width: 100%;
  margin: 20px auto;
  position: relative;
}

.type-member-card::before {
  content: "";
  width: 102%;
  height: 43px;
  display: block;
  /* 上ほど透明、下に向かってやや白く */
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 10%,
      rgba(255, 255, 255, 0.7) 20%,
      rgba(255, 255, 255, 1) 40%);
  position: absolute;
  top: -44px;
  left: -1%;
}

.type-member-card__title {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 7px;
  position: relative;
  padding-left: 25px;
  display: inline-block;
  height: 26px;
  line-height: 26px;
}

.type-member-card__title::before {
  background: url(../img/icon_member_content.png) no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  left: 0px;
  top: 2px;
  display: inline-block;
  width: 20px;
  height: 20px;
}

.type-member-card__text {
  font-size: 14px;
  line-height: 1.3;
}

.type-member-card__buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.type-member-card .type-member-card__btn {
  width: calc(45% - 5px);
  height: 40px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  display: block;
  min-width: 0;
  box-sizing: border-box;
  color: #fff;
  transition: background 0.2s ease;
}

.type-member-card__btn--login {
  background: #1c9be3;
  line-height: 40px;
}

.type-member-card__btn--login:hover,
.type-member-card__btn--login:active {
  background: rgba(28, 155, 227, 0.8);
}

.type-member-card__btn--register {
  background: #ff6347;
  padding: 4px 0px;
  line-height: 1;
}

.type-member-card__btn--register:hover,
.type-member-card__btn--register:active {
  background: rgba(255, 99, 71, 0.8);
}

.type-member-card__btn--register span {
  font-size: 11px;
  margin-bottom: 1px;
}

.type-member-card__link {
  margin-top: 10px;
}

.type-member-card__about {
  font-size: 14px;
  color: #555;
  text-decoration: underline;
}

.type-member-card .tt-wrap {
  position: relative;
  display: inline-block;
}

.type-tooltip {
  position: absolute;
  top: 20px;
  left: -25vw;
  background: #000;
  opacity: 0.86;
  color: #fff;
  padding: 14px 16px;
  border-radius: 10px;
  width: 80vw;
  display: none;
  z-index: 10;
  text-align: left;
}

.type-tooltip .tt-title {
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 13px;
}

.type-tooltip .tt-text {
  font-size: 14px;
  line-height: 1.4;
}

.tt-close {
  position: absolute;
  top: 6px;
  right: 10px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 21px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.type-tooltip.show {
  display: block;
}

.type-member-card .tt-btn {
  cursor: pointer;
  user-select: none;
}