@charset "UTF-8";
/* ==================================================
   Layout
================================================== */
/* Block
-------------------------------------------------- */
/**
 * Element
 */
/* ==================================================
   Fonts
================================================== */
/*-
@font-face {
font-family: 'Lato';
font-style: normal;
font-weight: normal;
src: local('Lato'), url('../fonts/lato/Lato.woff') format('woff');
}
-*/
@font-face {
  font-family: 'Lusitana';
  font-style: normal;
  font-weight: normal;
  src: local("Lusitana"), url("../fonts/lusitana/Lusitana-Regular.woff") format("woff");
}

@font-face {
  font-family: 'Lusitana';
  font-style: normal;
  font-weight: 600;
  src: local("Lusitana"), url("../fonts/lusitana/Lusitana-Bold.woff") format("woff");
}

@font-face {
  font-family: 'Baskerville';
  font-style: normal;
  font-weight: normal;
  src: local("Baskerville Normal"), url("../fonts/baskerville/Baskerville.woff") format("woff");
}

/* ==================================================
   Base
================================================== */
/* Mixin
-------------------------------------------------- */
/* ======================================================

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-> scss -> _config.scss

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

====================================================== */
/**
 * Mediaquery
 */
/**
 * Font Size
 */
/**
 * Font Family
 */
/**
 * Inner
 */
/**
 * Image-trim
 */
/**
 * border-radius
 */
/* ======================================================

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-> scss -> _mixin.scss

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

====================================================== */
/**
 * Mediaquery Display
 */
/**
 * Clearfix
 */
/**
 * Prefix
 */
/**
 * Position Center（親要素に対して上下中央寄せ）
 */
/**
 * Flexbox
 */
/**
 * CSS grid
 */
/**
 * Color
 */
/**
 * Font size
 */
/**
 * Font-family
 */
/**
 * Transition
 */
/**
 * Calc
 */
/**
 * Inner
 */
/**
 * Image-trim
 */
/**
 * Gap-margin
 */
/**
 * Gap-padding
 */
/* Base
-------------------------------------------------- */
/* ======================================================

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-> scss -> base -> _color.scss

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

====================================================== */
/* ==================================================
   Color Stylez
================================================== */
/**
 * SNS Color
 */
/* ==================================================
   Color Palette Style
================================================== */
/* ======================================================

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-> scss -> base -> _normalize.scss

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

====================================================== */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  list-style-type: none;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* ======================================================

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-> scss -> base -> _base.scss

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

====================================================== */
/* ==================================================
   Base Style
   ================================================== */
html {
  font-size: 62.5%;
  /*-
  @include min-width(md){
    font-size: 71.42857142%;
  }
  -*/
}

body {
  width: 100%;
  margin: 0 auto;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
  font-family: "Lato", "ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "メイリオ", "Yu Gothic", YuGothic, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: 400;
  letter-spacing: 0.09em;
  color: #040102;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

a {
  color: #A29369;
  text-decoration: none;
}

a, a:before, a:after {
  -webkit-transition: 0.16s cubic-bezier(0.17, 0.935, 0.305, 1);
  transition: 0.16s cubic-bezier(0.17, 0.935, 0.305, 1);
  color: #0B3D91;
}

a:hover {
  text-decoration: none;
  opacity: 0.6;
  color: #A29369;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Lato", "ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: 400;
}

p {
  font-family: "Lato", "ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: 400;
}

img {
  max-width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cf:after {
  content: "";
  display: block;
  clear: both;
}

/**
 * テキストの選択
 */
::-moz-selection {
  background: #dedede;
}
::selection {
  background: #dedede;
}

::-moz-selection {
  background: #dedede;
}

/**
 * Scroll Bar
 */
/*-
// 縦スクロールバー（幅）
::-webkit-scrollbar {
	width: 4px; }

// 横スクロールバー（幅）
::-webkit-scrollbar:horizontal {
	height: 12px; }

// スクロールバー軌道（色）
::-webkit-scrollbar-track {
  background: $color-scrollbar;
}

// 軌道のコーナー（色）
::-webkit-scrollbar-corner {
	background: $color-scrollbar;
}

// 移動タブ（色・角丸み）
::-webkit-scrollbar-thumb {
  background: $color-scrollbar;
	border-radius: 12px;
}
-*/
/**
 * iOS
 */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/* Layout
-------------------------------------------------- */
/* ======================================================

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-> scss -> layout -> _header.scss

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

====================================================== */
/* ==================================================
   Header
================================================== */
@keyframes logoZoomOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@-webkit-keyframes logoZoomOut {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30%);
            transform: translateX(-30%);
  }
  75% {
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.l-header {
  width: 100%;
  max-width: 100vw;
  -webkit-transition: 0.16s cubic-bezier(0.17, 0.935, 0.305, 1);
  transition: 0.16s cubic-bezier(0.17, 0.935, 0.305, 1);
}

.l-header-bar {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 0 10px;
  position: fixed;
  top: 0;
  left: 0;
  max-width: 100vw;
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 6px rgba(4, 1, 2, 0.2);
          box-shadow: 0 2px 6px rgba(4, 1, 2, 0.2);
  z-index: 1000;
  -webkit-transition: 0.4s cubic-bezier(0.17, 0.935, 0.305, 1);
  transition: 0.4s cubic-bezier(0.17, 0.935, 0.305, 1);
}

@media screen and (max-width: 767px) {
  .l-header-bar {
    padding: 0;
  }
}

.l-header-bar.fixed {
  -webkit-transition: none;
  transition: none;
}

@media screen and (max-width: 767px) {
  .l-header-bar.fixed {
    padding: 0;
  }
}

.l-header-left {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: auto;
  margin-bottom: 0;
  padding-left: 20px;
  -webkit-transition: 1.2s cubic-bezier(0.17, 0.935, 0.305, 1);
  transition: 1.2s cubic-bezier(0.17, 0.935, 0.305, 1);
}

.l-header-left .c-logo {
  display: block;
  width: 260px;
  max-width: 30vw;
  margin-right: 1em;
}

@media screen and (max-width: 767px) {
  .l-header-left .c-logo {
    margin-right: 10px;
    max-width: 43vw;
  }
}

.l-header-left .c-logo img {
  display: block;
}

.l-header-left .c-logo:hover {
  opacity: 1;
}

.l-header-left .c-desc {
  display: inline-block;
  font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  margin-right: 1em;
}

@media screen and (max-width: 1199px) {
  .l-header-left .c-desc {
    display: none;
  }
}

.l-header .l-header-right {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: auto;
  max-height: 68px;
  padding-right: 20px;
  -webkit-transition: 1.2s cubic-bezier(0.17, 0.935, 0.305, 1);
  transition: 1.2s cubic-bezier(0.17, 0.935, 0.305, 1);
}

@media screen and (max-width: 479px) {
  .l-header .l-header-right {
    padding-right: 12px;
  }
}

.l-header .l-header-right a {
  display: block;
}

.l-header .l-header-right a img {
  vertical-align: top;
}

@media screen and (max-width: 479px) {
  .l-header .l-header-right a img {
    height: 52px;
  }
}

@media screen and (max-width: 1199px) {
  .l-header .l-header-right .p-consultation {
    display: none;
  }
}

.l-header .l-header-right .c-tel {
  margin-right: 1em;
}

@media screen and (max-width: 991px) {
  .l-header .l-header-right .c-tel {
    margin-right: 0;
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .l-header .header__right__con {
    display: none;
  }
}

.l-header .header__right__nav--sp {
  display: none;
}

@media screen and (max-width: 991px) {
  .l-header .header__right__nav--sp {
    display: inline-block;
    margin-bottom: 19px;
  }
}

.l-header .l-header-nav {
  position: relative;
  max-width: 100vw;
  background-color: #0B3D91;
}

@media screen and (max-width: 991px) {
  .l-header .l-header-nav {
    display: none;
  }
}

.l-header .l-header-nav .inner {
  width: 100%;
  max-width: calc( 1280px + 3% * 2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 3%;
  padding-right: 3%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1199px) {
  .l-header .l-header-nav .inner {
    padding: 0;
  }
}

.l-header .l-header-nav ul {
  width: 100%;
  margin: 0 auto;
  list-style: none;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.l-header .l-header-nav .l-menu {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 1px;
  background-color: #fff;
  height: 45px;
  line-height: 45px;
  text-align: center;
  position: relative;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0;
  text-align: center;
}

.l-header .l-header-nav .l-menu a {
  display: block;
  position: relative;
  text-decoration: none;
  color: #040102;
  font-weight: 600;
  padding: 0 2em 0 1em;
}

.l-header .l-header-nav .l-menu a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #040102;
}

.l-header .l-header-nav .l-menu a:hover:before {
  height: 3px;
}

.l-header .l-header-nav .l-menu a:after {
  position: absolute;
  content: '';
  width: 0.6em;
  height: 0.6em;
  right: 1.6em;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  border-right: 2px solid #040102;
  border-bottom: 2px solid #040102;
}

.l-header .l-header-nav .l-menu-second {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 10;
  width: 100%;
  padding: 2em;
  background-color: #aaaaaa;
}

.l-header.trend .l-header-bar {
  padding: 0;
}

@media screen and (max-width: 767px) {
  .l-header.trend .l-header-bar {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.l-header.trend .l-header-right {
  padding-right: 0;
}

@media screen and (max-width: 767px) {
  .l-header.trend .l-header-right {
    width: 100%;
    text-align: right;
  }
}

.l-header.trend .c-logo {
  color: #040102;
  font-weight: 600;
  padding: 25px 0;
  max-width: 48vw;
  margin-right: 0;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
}

@media screen and (max-width: 991px) {
  .l-header.trend .c-logo {
    padding: 15px 0;
  }
}

.l-header.trend .p-credit {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media screen and (max-width: 767px) {
  .l-header.trend .p-credit {
    display: none;
  }
}

.l-header.trend nav ul {
  width: 100%;
  margin: 0 auto;
  list-style: none;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.l-header.trend nav .l-menu {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 1px;
  background-color: #fff;
  text-align: center;
  position: relative;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0;
  text-align: center;
}

.l-header.trend nav .l-menu a {
  display: block;
  position: relative;
  text-decoration: none;
  color: #040102;
  font-weight: 600;
  padding: 0.5em 1em;
  white-space: nowrap;
}

#hamburger {
  width: 32px;
  height: 32px;
  padding-top: 16px;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: block;
  margin-left: 20px;
}

@media screen and (min-width: 992px) {
  #hamburger {
    display: none !important;
  }
}

@media screen and (max-width: 479px) {
  #hamburger {
    margin-left: 12px;
  }
}

#hamburger span {
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  left: 0;
}

#hamburger span:first-child {
  top: 8px;
}

#hamburger span:nth-child(2) {
  top: calc(50% - 1px);
}

#hamburger span:nth-child(3) {
  bottom: 8px;
}

#hamburger b {
  font-size: 11px;
  font-size: 1.1rem;
}

#overlay {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
  display: none;
}

#drawer-menu {
  width: 260px;
  height: 100vh;
  padding-bottom: 120px;
  overflow-y: scroll;
  background: #fff;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 200;
  -webkit-transform: translateX(320px);
          transform: translateX(320px);
  -webkit-transition: 0.3s cubic-bezier(0.17, 0.935, 0.305, 1);
  transition: 0.3s cubic-bezier(0.17, 0.935, 0.305, 1);
}

#drawer-menu.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

#drawer-menu .drawer-btn {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 18px;
  font-size: 1.8rem;
  padding: 0.8em 0;
  border-radius: 4px;
  letter-spacing: 0;
  font-weight: 700;
  text-align: center;
}

#drawer-menu .drawer-btn .ja {
  display: block;
}

#drawer-menu .drawer-btn .icon {
  margin-right: 10px;
}

#drawer-menu .drawer-btn.member {
  background-color: rgba(59, 83, 167, 0.1);
  margin-bottom: 5px;
}

#drawer-menu .drawer-btn.mypage {
  background-color: rgba(162, 147, 105, 0.1);
}

#drawer-menu .drawer-menu__nav {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

#drawer-menu .drawer-menu__nav li {
  border-bottom: 1px solid #ccc;
}

#drawer-menu .drawer-menu__nav li a {
  display: block;
  padding: 15px;
}

#drawer-menu #close {
  position: relative;
  width: 28px;
  height: 28px;
  display: block;
  margin-left: auto;
}

#drawer-menu #close span {
  width: 28px;
  height: 2px;
  background: #040102;
  position: absolute;
  left: 50%;
  top: 50%;
}

#drawer-menu #close span:first-child {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

#drawer-menu #close span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

#drawer-menu .inner {
  padding: 15px;
}

#drawer-menu .p-cta {
  margin-top: 20px;
}

#drawer-menu .p-cta .c-btn-box {
  display: block;
}

#drawer-menu .p-cta .c-btn-box .c-btn, #drawer-menu .p-cta .c-btn-box .c-sort input[type=submit], .c-sort #drawer-menu .p-cta .c-btn-box input[type=submit],
#drawer-menu .p-cta .c-btn-box .c-form input[type=submit], .c-form #drawer-menu .p-cta .c-btn-box input[type=submit], #drawer-menu .p-cta .c-btn-box .p-contact.subscription .c-form input[type="submit"], .p-contact.subscription .c-form #drawer-menu .p-cta .c-btn-box input[type="submit"] {
  width: 100%;
  margin-top: 0;
}

#drawer-menu .p-cta .c-btn-box .c-btn:nth-of-type(n+2), #drawer-menu .p-cta .c-btn-box .c-sort input:nth-of-type(n+2)[type=submit], .c-sort #drawer-menu .p-cta .c-btn-box input:nth-of-type(n+2)[type=submit],
#drawer-menu .p-cta .c-btn-box .c-form input:nth-of-type(n+2)[type=submit], .c-form #drawer-menu .p-cta .c-btn-box input:nth-of-type(n+2)[type=submit], #drawer-menu .p-cta .c-btn-box .p-contact.subscription .c-form input:nth-of-type(n+2)[type="submit"], .p-contact.subscription .c-form #drawer-menu .p-cta .c-btn-box input:nth-of-type(n+2)[type="submit"] {
  margin-top: 10px;
}

#drawer-menu .p-cta .c-bnr {
  margin-top: 10px;
}

/* ======================================================

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-> scss -> layout -> _footer.scss

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

====================================================== */
/* ==================================================
   Footer
================================================== */
.l-footer .p-footer-btn {
  width: 100%;
  max-width: 422px;
  height: 125px;
  padding: 1em;
  text-align: center;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 1em;
}

@media screen and (max-width: 1079px) {
  .l-footer .p-footer-btn {
    max-width: 100%;
    height: 96px;
    border-radius: 4px;
  }
}

.l-footer .p-footer-btn .p-footer-btn__text {
  text-align: center;
  position: relative;
  color: #ffffff;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
}

.l-footer .p-footer-btn .has-icon {
  position: relative;
  padding-left: 2em;
  display: inline-block;
  vertical-align: middle;
}

.l-footer .p-footer-btn .has-icon .c-icon {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.l-footer .p-footer-btn.footer__top__wrap__phon {
  background-color: #f9dd41;
  -webkit-box-shadow: 0px 5px 0px #c4ab45;
  box-shadow: 0px 5px 0px #c4ab45;
}

.l-footer .p-footer-btn.footer__top__wrap__phon.blue {
  background-color: #3B53A7;
  -webkit-box-shadow: 0px 5px 0px #283871;
  box-shadow: 0px 5px 0px #283871;
}
.l-footer .p-footer-btn.footer__top__wrap__phon.pgreen {
  background-color: #4FB4BF;
  -webkit-box-shadow: 0px 5px 0px #149187;
  box-shadow: 0px 5px 0px #149187;
}
.l-footer .p-footer-btn.footer__top__wrap__phon.pblue {
  background-color: #5394D8;
  -webkit-box-shadow: 0px 5px 0px #4d67c1;
  box-shadow: 0px 5px 0px #4d67c1;
}

.l-footer .p-footer-btn.footer__top__wrap__phon .c-number {
  width: 100%;
  max-width: 188px;
  margin-top: 6px;
}

.l-footer .p-footer-btn.footer__top__wrap__pc {
  background-color: #0B3D91;
  -webkit-box-shadow: 0px 5px 0px #283871;
  box-shadow: 0px 5px 0px #283871;
}

.l-footer .p-footer-btn.footer__top__wrap__mail {
  background-color: #149187;
  -webkit-box-shadow: 0px 5px 0px #128077;
  box-shadow: 0px 5px 0px #128077;
}

.l-footer .p-footer-btn.footer__top__wrap__mail .footer__top__wrap__mail__span {
  font-size: 12px;
  font-size: 1.2rem;
  display: block;
  margin-top: 0.5em;
}

@media screen and (max-width: 1079px) {
  .l-footer .p-footer-btn:nth-child(n+2) {
    margin-top: 20px;
  }
}

.l-footer .p-sitemap {
  background-color: #E6F0EF;
}

.l-footer .p-sitemap .c-heading-07 {
  font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: 400;
  color: #040102;
}

.l-footer .p-sitemap .c-heading-07.mt{
  margin-top: 2em;
}

.l-footer .footer__top {
  background-color: #e5e5e5;
}

.l-footer .footer__top__p {
  text-align: center;
  color: #263b2d;
  margin: 0 auto;
  padding: 1.5em 0 1em;
  font-size: 24px;
  font-size: 2.4rem;
  font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: 400;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .l-footer .footer__top__p {
    font-size: 20px;
    font-size: 2rem;
  }

 
}

.l-footer .footer__top__p__br::after {
  content: "\A";
  white-space: pre;
}

.l-footer .footer__top__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0px auto;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  width: 100%;
  max-width: calc( 896px + 3% * 2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 3%;
  padding-right: 3%;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}

@media screen and (max-width: 1079px) {
  .l-footer .footer__top__wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.l-footer .footer__middle {
  background-color: #c0dbd9;
}

.l-footer .footer__middle .p-footer-message {
  width: 100%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media screen and (max-width: 767px) {
  .l-footer .footer__middle .p-footer-message {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.l-footer .footer__middle .c-text {
  padding: 40px;
}

.l-footer .footer__middle .c-media {
  width: 480px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 40px;
  margin-top: -80px;
}

@media screen and (max-width: 767px) {
  .l-footer .footer__middle .c-media {
    width: 100%;
    margin: 0 auto;
  }
}

.l-footer .footer__middle .c-media img {
  display: block;
}

@media screen and (max-width: 767px) {
  .l-footer .footer__middle .c-media img {
    width: 60vw;
    margin: 0 auto;
  }
}

.l-footer .footer__bottom .inner {
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.l-footer .footer__bottom .p-address,
.l-footer .footer__bottom .c-tel {
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 13px;
  font-size: 1.3rem;
}

.l-footer .footer__bottom .p-address dt,
.l-footer .footer__bottom .c-tel dt {
  width: 10em;
  text-align: center;
  padding: 0.3em;
  border-radius: 2px;
  background-color: #c0dbd9;
  margin-right: 1em;
  font-size: 0.9em;
  font-weight: 600;
}

.l-footer .footer__bottom .p-address dd,
.l-footer .footer__bottom .c-tel dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.l-footer .footer__bottom .p-address dd address,
.l-footer .footer__bottom .c-tel dd address {
  font-style: normal;
}

.l-footer .footer__bottom .c-tel {
  margin-top: 1em;
}

.l-footer .footer__bottom__left {
  width: 100%;
  max-width: 400px;
}

.l-footer .footer__bottom__left a {
  display: block;
  margin: 0 auto;
  /*text-align: center;*/
  margin-bottom: 2em;
}

.l-footer .footer__bottom__left a img {
  display: inline;
  position: relative;
  left: -2%;
  max-width: 100%;
}

@media screen and (max-width: 1199px) {
  .l-footer .footer__bottom__left {
    max-width: 337px;
    margin: 0 auto;
  }
}

.l-footer .footer__bottom__left__p {
  font-size: 15px;
  font-size: 1.5rem;
  color: #333333;
}

@media screen and (max-width: 767px) {
  .l-footer .footer__bottom__left__p {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 767px) {
  .l-footer .footer__bottom__left__p {
    width: 100%;
    margin: 20px auto;
  }
}

.l-footer .footer__bottom__right {
  width: 100%;
  max-width: 633px;
  margin-left: 43px;
}

.l-footer .footer__bottom__right__iframe iframe{
  max-width: 604px;
  width: 100%;
  height: 354px;
}

@media screen and (max-width: 1199px) {
  .l-footer .footer__bottom__right {
    max-width: 337px;
    margin: 0 auto;
  }
}

.l-footer .footer__bottom__right__p {
  font-size: 15px;
  font-size: 1.5rem;
  margin-bottom: 1em;
  color: #333333;
}

@media screen and (max-width: 767px) {
  .l-footer .footer__bottom__right__p {
    font-size: 13px;
    font-size: 1.3rem;
  }

  .l-footer .footer__bottom__right {
    max-width: 100%;
    margin: 2em auto 0;
  }

  .l-footer .footer__bottom__right__iframe iframe{
    max-width: 100%;
    width: 100%;
    height: 290px;
  }
}

.l-footer .footer__bottom__right__copyright {
  display: block;
  padding: 40px 5% 0;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 1199px) {
  .l-footer .footer__bottom__right__copyright {
    width: 100%;
  }
}

.l-footer .footer__bottom__right__copyright a {
  color: #040102;
}

/* ======================================================

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-> scss -> layout -> _common.scss

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

====================================================== */
/* ==================================================
   Common Content
   ================================================== */
#wrap {
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s cubic-bezier(0.17, 0.935, 0.305, 1);
  transition: 0.3s cubic-bezier(0.17, 0.935, 0.305, 1);
}

#wrap.open {
  -webkit-transform: translateX(-260px);
          transform: translateX(-260px);
}

#contents {
  position: relative;
  padding: 40px 0;
}

@media screen and (min-width: 992px) {
  #contents {
    padding: 80px 0;
  }
}

#contents.top {
  padding-top: 0 !important;
}

.inner {
  width: 100%;
  max-width: calc( 1080px + 3% * 2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 3%;
  padding-right: 3%;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 80px 0;
}

@media screen and (max-width: 991px) {
  .section {
    padding: 40px 0;
  }
}

.section.start {
  padding-top: 0;
}

.section.end {
  padding-bottom: 0;
}

.c-block {
  display: inline-block;
}

.c-trim {
  /*-画像を内包する親要素-*/
  width: 100%;
  position: relative;
  overflow: hidden;
}

.c-trim:after {
  /*-c-trim の疑似要素に指定-*/
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 75%;
  /*-画像の縦横比を指定 初期値は75%（LDサイズ）-*/
}

.c-trim .c-trim__inner {
  /*-c-trim の直下にあるdivまたはaタグに指定-*/
  position: absolute !important;
  width: 100%;
  height: 100%;
}

.c-trim .c-trim__inner img {
  /*-トリミングしたい画像や要素に指定*/
  display: block;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

/* Object
-------------------------------------------------- */
/**
 * Component
 */
/* ======================================================

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-> scss -> module -> _headline.scss

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

====================================================== */
/* ==================================================
   Headline Style
   ================================================== */
h1 {
  font-size: 3.2rem;
  margin-bottom: 0.95em;
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 0.95em;
}

h3 {
  font-size: 2.4rem;
  margin-bottom: 0.95em;
}

h4 {
  font-size: 2rem;
  margin-bottom: 0.95em;
}

h5 {
  font-size: 1.6rem;
  margin-bottom: 0.95em;
}

h6 {
  font-size: 1.2rem;
  margin-bottom: 0.95em;
}

.c-heading-01, .p-ma-content .c-box .c-heading-building {
  text-align: center;
  font-size: 30px;
  font-size: 3rem;
  font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: 400;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .c-heading-01, .p-ma-content .c-box .c-heading-building {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 479px) {
  .c-heading-01, .p-ma-content .c-box .c-heading-building {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.c-heading-02, .p-intermediary .p-results-sort h4, .p-ma-merit .c-container ul.heart:before, .p-ma-merit .c-container ul.sander:before, .p-ma-trend .c-reading dl dt, .p-ma-trend .p-ma-lead p dl dt, .p-ma-lead .p-ma-trend p dl dt {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 0.95em;
}

@media screen and (max-width: 767px) {
  .c-heading-02, .p-intermediary .p-results-sort h4, .p-ma-merit .c-container ul.heart:before, .p-ma-merit .c-container ul.sander:before, .p-ma-trend .c-reading dl dt, .p-ma-trend .p-ma-lead p dl dt, .p-ma-lead .p-ma-trend p dl dt {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.c-heading-03, .c-post:not(.interview) .entry-content h2, .c-post:not(.interview) .entry-content .h2 {
  font-weight: bold;
  margin-bottom: 0.375em;
  color: #60AC42;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #60AC42;
  font-size: 1.25em;
  margin-bottom: 1em;
  line-height: 1.2;
}

.c-heading-04, .c-post.interview .p-interview-main .entry-content h2 {
  font-size: 28px;
  font-size: 2.8rem;
  display: inline-block;
  padding: 0.2em 0.2em 0.1em;
  background-color: #D1F0ED;
  font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: 400;
  font-weight: 600;
  line-height: 1.3;
}

@media screen and (max-width: 991px) {
  .c-heading-04, .c-post.interview .p-interview-main .entry-content h2 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .c-heading-04, .c-post.interview .p-interview-main .entry-content h2 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.c-heading-05 {
  text-align: center;
  font-size: 48px;
  font-size: 4.8rem;
  font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: 400;
  font-weight: 600;
}

@media screen and (max-width: 991px) {
  .c-heading-05 {
    font-size: 36px;
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 767px) {
  .c-heading-05 {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 479px) {
  .c-heading-05 {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.c-heading-06 {
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .c-heading-06 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.c-heading-07 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
  padding-left: 1em;
  color: #0B3D91;
}

.c-heading-07:before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4em 0 0.4em 0.6em;
  border-color: transparent transparent transparent #2B2E57;
}

.c-heading-08 {
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
}

.c-heading-08 span {
  display: inline-block;
  padding: 0.5em 2em;
  border: 1px solid #A29369;
}

.c-heading-09 {
  font-weight: bold;
  color: #fff;
  padding: 0.8em 1em;
  text-align: center;
  background-color: #0B3D91;
  margin-bottom: 1em;
  line-height: 1.2;
  font-size: 20px;
  font-size: 2rem;
}

.c-heading-search {
  position: relative;
  display: block;
  margin-bottom: 0.9em;
  font-size: 36px;
  font-size: 3.6rem;
  font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: 400;
  font-weight: bold;
  padding-left: 1.5em;
}

@media screen and (max-width: 767px) {
  .c-heading-search {
    font-size: 24px;
    font-size: 2.4rem;
    padding-left: 2em;
  }
}

@media screen and (max-width: 479px) {
  .c-heading-search {
    font-size: 20px;
    font-size: 2rem;
  }
}

.c-heading-search:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  vertical-align: middle;
  width: 1.1em;
  height: 1.1em;
  background-color: #0B3D91;
  border-radius: 4px;
  background-image: url(../images/icon/icon-search.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px auto;
}

@media screen and (max-width: 767px) {
  .c-heading-search:before {
    width: 1.6em;
    height: 1.6em;
  }
}

.c-heading-search span {
  display: inline-block;
  text-align: left;
  font-size: 26px;
  font-size: 2.6rem;
  font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: 400;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .c-heading-search span {
    font-size: 16px;
    font-size: 1.6rem;
    font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
    font-weight: 400;
  }
}

.c-heading-medal {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 4em;
}

@media screen and (max-width: 767px) {
  .c-heading-medal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-heading-medal .c-icon {
  width: 93px;
  max-width: 20vw;
  margin-right: 2em;
}

@media screen and (max-width: 767px) {
  .c-heading-medal .c-icon {
    margin-right: 0;
    margin-bottom: 1em;
  }
}

.c-heading-medal .c-heading, .c-heading-medal .p-privacy .c-deflist dt, .p-privacy .c-deflist .c-heading-medal dt {
  font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: 400;
  font-size: 42px;
  font-size: 4.2rem;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 0;
}

@media screen and (max-width: 1079px) {
  .c-heading-medal .c-heading, .c-heading-medal .p-privacy .c-deflist dt, .p-privacy .c-deflist .c-heading-medal dt {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 767px) {
  .c-heading-medal .c-heading, .c-heading-medal .p-privacy .c-deflist dt, .p-privacy .c-deflist .c-heading-medal dt {
    font-size: 24px;
    font-size: 2.4rem;
    text-align: center;
  }
}

/* ======================================================

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-> scss -> module -> _button.scss

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

====================================================== */
/* ==================================================
   Button Style
================================================== */
.c-btn, .c-sort input[type=submit],
.c-form input[type=submit], .p-contact.subscription .c-form input[type="submit"] {
  display: block;
  width: 100%;
  max-width: 360px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0px;
  padding: 1em 2em;
  border: 1px solid #000000;
  color: black;
  position: relative;
  text-align: center;
  margin: 60px auto 0;
}

.c-btn .icon-arrow, .c-sort input[type=submit] .icon-arrow, .c-form input[type=submit] .icon-arrow, .p-contact.subscription .c-form input[type="submit"] .icon-arrow {
  position: absolute;
  width: 1em;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-btn:hover, .c-sort input:hover[type=submit],
.c-form input:hover[type=submit], .p-contact.subscription .c-form input:hover[type="submit"] {
  opacity: 1;
  color: #000;
}

.c-btn.border, .c-sort input.border[type=submit],
.c-form input.border[type=submit], .p-contact.subscription .c-form input.border[type="submit"], .p-intermediary .p-results-sort input[type="submit"] {
  background-color: #0B3D91;
  color: #fff;
  border: none;
  border-bottom: 3px solid #072D6B;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
}

.c-btn.tel, .c-sort input.tel[type=submit],
.c-form input.tel[type=submit], .p-contact.subscription .c-form input.tel[type="submit"] {
  background-color: #f9dd41;
  border-bottom-color: #c4ab45;
}

.c-btn.tel.blue{
  background-color: #3B53A7;
  -webkit-box-shadow: 0px 5px 0px #283871;
  box-shadow: 0px 5px 0px #283871;
  border-bottom-color:#283871;
}

@media screen and (min-width: 768px) {
  .c-btn.tel, .c-sort input.tel[type=submit],
  .c-form input.tel[type=submit], .p-contact.subscription .c-form input.tel[type="submit"] {
    background-color: transparent;
    border-bottom-color: transparent;
  }
}

@media screen and (min-width: 768px) {
  .c-btn.tel small, .c-sort input.tel[type=submit] small, .c-form input.tel[type=submit] small, .p-contact.subscription .c-form input.tel[type="submit"] small {
    display: block;
    width: 100%;
    background-color: #007CB7;
    padding: 0.3em;
  }
}

.c-btn.arrow, .c-sort input.arrow[type=submit],
.c-form input.arrow[type=submit], .p-contact.subscription .c-form input.arrow[type="submit"] {
  padding-right: 2em;
  position: relative;
  overflow: hidden;
}

.c-btn.arrow span, .c-sort input.arrow[type=submit] span, .c-form input.arrow[type=submit] span, .p-contact.subscription .c-form input.arrow[type="submit"] span {
  position: relative;
  z-index: 2;
}

.c-btn.arrow:before, .c-sort input.arrow[type=submit]:before,
.c-form input.arrow[type=submit]:before, .p-contact.subscription .c-form input.arrow[type="submit"]:before {
  position: absolute;
  content: '';
  top: 0;
  left: -600px;
  z-index: 0;
  width: 600px;
  height: 600px;
  -webkit-transform: rotate(45deg) translateX(-50%);
          transform: rotate(45deg) translateX(-50%);
  background-color: #040102;
  -webkit-transition-duration: 1.6s;
          transition-duration: 1.6s;
}

.c-btn.arrow:after, .c-sort input.arrow[type=submit]:after,
.c-form input.arrow[type=submit]:after, .p-contact.subscription .c-form input.arrow[type="submit"]:after {
  position: absolute;
  content: '';
  width: 0.6em;
  height: 0.6em;
  right: 1.3em;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  border-right: 2px solid #040102;
  border-bottom: 2px solid #040102;
}

.c-btn.arrow:hover, .c-sort input.arrow:hover[type=submit],
.c-form input.arrow:hover[type=submit], .p-contact.subscription .c-form input.arrow:hover[type="submit"] {
  opacity: 1;
  color: #fff;
}

.c-btn.arrow:hover:before, .c-sort input.arrow[type=submit]:hover:before,
.c-form input.arrow[type=submit]:hover:before, .p-contact.subscription .c-form input.arrow[type="submit"]:hover:before {
  left: 50%;
}

.c-btn.arrow:hover:after, .c-sort input.arrow[type=submit]:hover:after,
.c-form input.arrow[type=submit]:hover:after, .p-contact.subscription .c-form input.arrow[type="submit"]:hover:after {
  border-color: #fff;
}

/* ======================================================

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-> scss -> module -> _entry-content.scss

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

====================================================== */
/* ==================================================
  .entry-content
================================================== */
.entry-content {
  /* img */
  /* clearfix */
}

.entry-content p {
  display: block;
  margin: 1em 0;
}

.entry-content strong {
  font-weight: bold;
}

.entry-content em {
  font-style: italic;
}

.entry-content blockquote {
  display: block;
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 40px;
  -webkit-margin-end: 40px;
}

.entry-content .aligncenter {
  display: block !important;
  margin: 0 auto !important;
  text-align: center;
}

.entry-content .alignright {
  float: right;
  text-align: right;
}

.entry-content .alignleft {
  float: left;
  text-align: left;
}

.entry-content img[class*="wp-image-"],
.entry-content img[class*="attachment-"] {
  height: auto;
  max-width: 100%;
}

.entry-content .clearfix {
  overflow: hidden;
  zoom: 1;
}

.entry-content .clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.entry-content ul:not([class]) {
  display: block !important;
}

.entry-content ul:not([class]) li {
  position: relative;
  padding-left: 1.5em;
  margin: 0;
  display: block !important;
}
.entry-content ul:not([class]) > li:nth-child(n+2) {
	margin-top: 1em;
}

.entry-content ul:not([class]) li:before {
  content: " ";
  width: 9px;
  height: 9px;
  display: block;
  position: absolute;
  border-radius: 50%;
  left: 0.5em;
  top: 0.5em;
  background: #666;
}

.entry-content ul:not([class]) li ul li:before {
  width: 5px;
  height: 5px;
  top: 10px;
  border-radius: 0;
}

.entry-content ul:not([class]) li ul li ul li:before {
  width: 14px;
  height: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -2px;
  border-radius: 0;
}

.entry-content ol {
  counter-reset: number;
  display: block !important;
}

.entry-content ol:not([class]) li {
  list-style: none;
  position: relative;
  padding-left: 2.0em;
  margin: 10px 0;
  display: block !important;
}

.entry-content ol:not([class]) > li:before {
  counter-increment: number;
  content: counter(number);
  width: 20px;
  height: 20pz;
  font-weight: bold;
  font-family: 'Lato', sans-serif;
  font-size: 0.9em;
  display: block;
  text-align: center;
  line-height: 20px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 3px;
}

.entry-content li ol:not([class]) li:before {
  background: #999;
  background: none;
  color: #555;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 0.9em;
  border-radius: 50%;
  top: 3px;
}

/* entry content */
.entry-content {
  padding: 0 0 1.5em;
  overflow: hidden;
}

#post-not-found .entry-content {
  overflow: inherit;
}

.entry-content p {
  margin: 0 0 1.6em;
  line-height: 1.75;
}

.entry-content table {
  width: 100%;
  font-size: 0.92em;
  border: 1px solid #efefef;
  margin-bottom: 1.5em;
}

.entry-content table caption {
  margin: 0 0 7px;
  font-size: 0.75em;
  color: #9fa6b4;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.entry-content tr {
  border-bottom: 1px solid #efefef;
}

.entry-content td {
  padding: .8em;
  border: 1px solid #cfcfcf;
  background: #fff;
  background: rgba(255, 255, 255, 0.6);
}

.entry-content td input {
  margin: 3px 0;
}

.entry-content th {
  background-color: #eee;
  border: 1px solid #dedede;
  padding: .8em;
}

.entry-content blockquote {
  padding: 20px 3%;
  margin: 2.5em 0 3em;
  position: relative;
  opacity: .8;
  background-color: rgba(96, 172, 66, 0.3);
  display: block;
  text-align: center;
  line-height: 1;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.entry-content blockquote > *:last-child {
  margin-bottom: 0;
}

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

.entry-content blockquote h1,
.entry-content blockquote h2,
.entry-content blockquote h3,
.entry-content blockquote h4 {
  margin-top: 0 !important;
}

.entry-content dt {
  font-weight: bold;
  margin-bottom: 2%;
}

.entry-content dd {
  margin-left: 0;
  font-size: .95em;
  margin-bottom: 4%;
}

.entry-content img {
  max-width: 100%;
  height: auto;
}

.entry-content .blocks-gallery-item img {
  margin-bottom: 0;
}

.entry-content .size-auto, f .entry-content .size-full,
.entry-content .size-large,
.entry-content .size-medium,
.entry-content .size-thumbnail {
  max-width: 100%;
  height: auto;
}

.entry-content pre {
  background: #666;
  background: rgba(0, 0, 0, 0.54);
  color: #f8f9fa;
  font-size: 0.88em;
  padding: 1.2em 1.7em;
  margin: 0.2em 0 2.2em;
  border-radius: 5px;
}

.entry-content .wp-block-image .aligncenter > figcaption,
.entry-content .wp-block-image .alignleft > figcaption,
.entry-content .wp-block-image .alignright > figcaption,
.entry-content .wp-block-image.is-resized > figcaption {
  display: block;
  width: 100%;
  margin-top: .5em !important;
  color: #555d66 !important;
  font-size: 13px !important;
}

.wp-caption {
  max-width: 100%;
  background: #fff;
  padding: 5px;
  margin-bottom: 1.8em;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 3px;
}

.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}

.wp-caption p.wp-caption-text {
  font-size: 0.75em;
  margin: 4px 0;
  text-align: center;
}

iframe {
  max-width: 100%;
}

iframe.wp-embedded-content {
  width: 100%;
}

#content .entry-content h1 a,
#content .entry-content .h1 a,
#content .entry-content h2 a,
#content .entry-content .h2 a,
#content .entry-content h3 a,
#content .entry-content .h3 a,
#content .entry-content h4 a,
#content .entry-content .h4 a,
#content .entry-content h5 a,
#content .entry-content .h5 a {
  text-decoration: none;
}

#content .entry-content h1,
#content .entry-content .h1 {
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.333em;
}

#content .entry-content h2,
#content .entry-content .h2 {
  margin-top: 2em;
}

#content .entry-content h3,
#content .entry-content .h3 {
  font-size: 1.3em;
  font-weight: bold;
  color: #149187;
  font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: 400;
  margin-top: 1.8em;
  border-bottom: none;
}

#content .entry-content h4,
#content .entry-content .h4 {
  font-size: 1.2em;
  font-weight: 700;
  font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: 400;
  margin-top: 1.5em;
  margin-bottom: 1em;
}

#content .entry-content h5,
#content .entry-content .h5 {
  font-size: 1em;
  font-weight: 700;
  line-height: 2em;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1.5em;
  margin-bottom: 1em;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/* ==================================================
  Table of Conntents Plus
================================================== */
#ez-toc-container {
  padding: 1em;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* ======================================================

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-> scss -> module -> _hero.scss

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

====================================================== */
/* ==================================================
   Hero Content
================================================== */
.c-hero {
  background-image: url(../images/hero/hero.png);
  background-position: center bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-color: #E3F7F7;
}

.c-hero.intermediary {
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .c-hero.intermediary {
    padding: 5vw 0;
  }
}

.c-hero.intermediary .inner {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-hero.intermediary .c-text {
  width: 48%;
}

@media screen and (max-width: 767px) {
  .c-hero.intermediary .c-text {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 2em;
  }
}

.c-hero.intermediary .c-text h1 {
  font-weight: 600;
  font-size: 26px;
  font-size: 2.6rem;
}

@media screen and (max-width: 767px) {
  .c-hero.intermediary .c-text h1 {
    font-size: 20px;
    font-size: 2rem;
  }
}

.c-hero.intermediary .c-text .p-hero-result {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 600;
  display: inline-block;
  padding: 0 1em;
  border-radius: 3em;
  border: 4px solid #0B3D91;
  color: #0B3D91;
  margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
  .c-hero.intermediary .c-text .p-hero-result {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.c-hero.intermediary .c-text .c-desc {
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .c-hero.intermediary .c-text .c-desc {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.c-hero.intermediary .c-text .c-desc small {
  display: block;
  margin-top: 1em;
  font-size: 0.8em;
}

.c-hero.intermediary .c-cta {
  width: 48%;
  background-color: #ffffff;
}

@media screen and (max-width: 767px) {
  .c-hero.intermediary .c-cta {
    width: 100%;
    padding: 1.5em;
  }
}

.c-hero.intermediary .c-cta h2 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .c-hero.intermediary .c-cta h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.c-hero.intermediary .c-cta .c-desc {
  font-size: 18px;
  font-size: 1.8rem;
}

.c-hero.intermediary .c-cta .c-media {
  margin: 1.5em 0;
}

.c-hero.page {
  background-image: unset;
  background-color: #263B2D;
}

.c-hero.page > .c-container {
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 1199px) {
  .c-hero.page > .c-container {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.c-hero.page > .c-container > .c-text {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 60px;
  min-height: 25.26vw;
  margin-bottom: 160px;
  width: 50%;
  background-color: #ffffff;
}

@media screen and (max-width: 1199px) {
  .c-hero.page > .c-container > .c-text {
    min-height: unset;
    width: 60%;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .c-hero.page > .c-container > .c-text {
    padding: 2em 0;
  }
}

.c-hero.page > .c-container > .c-text h1 {
  margin-bottom: 0;
  text-align: center;
  font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: 400;
  font-size: 60px;
  font-size: 6rem;
}

@media screen and (max-width: 991px) {
  .c-hero.page > .c-container > .c-text h1 {
    font-size: 40px;
    font-size: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .c-hero.page > .c-container > .c-text h1 {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

.c-hero.page > .c-container > .c-text h1 .ja,
.c-hero.page > .c-container > .c-text h1 .en {
  display: block;
}

.c-hero.page > .c-container > .c-text h1 .ja {
  font-size: 15px;
  font-size: 1.5rem;
}

.c-hero.page > .c-container > .c-text h1 .en {
  font-family: Baskerville !important;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.c-hero.page > .c-container > .c-media {
  width: 50%;
  margin-bottom: 60px;
}

@media screen and (max-width: 1199px) {
  .c-hero.page > .c-container > .c-media {
    width: 40%;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .c-hero.page > .c-container > .c-media {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 1199px) {
  .c-hero.page > .c-container > .c-media img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.c-hero.interview {
  overflow: hidden;
}

@media screen and (min-width: 992px) {
  .c-hero.interview > .c-container > .c-text {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .c-hero.interview > .c-container > .c-text {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media screen and (max-width: 991px) {
  .c-hero.interview > .c-container > .c-text h1 img {
    max-width: 72%;
  }
}

.c-hero.interview > .c-container > .c-text h1 span {
  display: block;
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (min-width: 992px) {
  .c-hero.interview > .c-container > .c-text h1 span {
    display: none;
  }
}

.c-hero.interview > .c-container > .c-media {
  position: relative;
  width: 100%;
  padding-left: 50%;
}

@media screen and (max-width: 991px) {
  .c-hero.interview > .c-container > .c-media {
    padding-left: 0;
    margin-bottom: 0;
    display: none;
  }
}

.c-hero.interview > .c-container > .c-media:after {
  content: '';
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 50%;
  height: calc( 100% - 160px);
  background-color: #ffffff;
  background-image: url(../images/hero/hero-title-youtube.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 56%;
}

@media screen and (max-width: 991px) {
  .c-hero.interview > .c-container > .c-media:after {
    content: none;
  }
}

@media screen and (max-width: 991px) {
  .c-hero.interview > .c-container > .c-media {
    width: 100%;
  }
}

.c-hero.pagetitle {
  text-align: center;
  background-image: unset;
  background-color: #ffffff;
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
}

.c-hero.pagetitle h1 {
  padding: 2em 0;
  margin: 0;
  font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: 400;
}

@media screen and (max-width: 991px) {
  .c-hero.pagetitle h1 {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .c-hero.pagetitle h1 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.c-hero.pagetitle h1 picture {
  display: block;
}

.c-hero.pagetitle h1 img {
  max-width: 48%;
  display: block;
  margin: 0 auto;
}

.c-hero.pagetitle h1 span {
  display: block;
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (min-width: 992px) {
  .c-hero.pagetitle h1 span {
    display: none;
  }
}

.c-hero.trend {
  height: 420px;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-hero.trend .c-text {
  font-size: 42px;
  font-size: 4.2rem;
}

.c-hero.trend .c-text p {
  font-weight: 600;
  margin-bottom: 0.5em;
}

.c-hero.trend .c-text h1 {
  font-size: 0.5em;
  font-weight: 600;
}

/* ======================================================

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-> scss -> module -> _pagination.scss

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

====================================================== */
/* ==================================================
   Pagination
   ================================================== */
.pagination,
.wp-pagenavi {
  width: 100%;
  margin: 60px 0;
  padding: 0;
  text-align: center;
}

.pagination a,
.pagination > span,
.wp-pagenavi a,
.wp-pagenavi > span {
  position: relative;
  display: inline-block;
  margin: 0.5em 0.8em;
  padding: 0.8em 1.2em;
  text-decoration: none;
  width: auto;
  color: #040102;
  background: #d2d2d2;
}

@media screen and (max-width: 767px) {
  .pagination a,
  .pagination > span,
  .wp-pagenavi a,
  .wp-pagenavi > span {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.pagination a:hover,
.wp-pagenavi a:hover {
  opacity: 0.5;
}

.pagination .current,
.wp-pagenavi .current {
  color: #fff;
  background: #0B3D91;
}

.post-content .pagination,
.post-content .wp-pagenavi {
  margin: 0;
}

/* ======================================================

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-> scss -> module -> _breadcrumb.scss

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

====================================================== */
/* ==================================================
   Bread Crumb
   ================================================== */
.c-breadcrumb {
  background-color: #efefef;
}

.c-breadcrumb ul {
  padding: 1em 0;
  background: transparent;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .c-breadcrumb ul {
    padding: 12px 5%;
  }
}

.c-breadcrumb ul li {
  font-size: 13px;
  font-size: 1.3rem;
  margin: 0.5em;
}

.c-breadcrumb ul li a {
  color: #040102;
  text-decoration: underline;
}

.c-breadcrumb ul li i {
  margin-left: 10px;
}

/**
 * Utility
 */
/* ======================================================

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-> scss -> module -> _c-flexexbox.scss

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

====================================================== */
/* ==================================================
  flexbox Style
================================================== */
.c-flex {
  width: 100%;
  display: -webkit-c-flexex;
  display: c-flexex;
}

.c-flex.c-wrap--wrap {
  c-flexex-wrap: wrap;
}

.c-flex.c-wrap--nowrap {
  c-flexex-wrap: nowrap;
}

.c-flex.c-justify--between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-flex.c-justify--start {
  -webkit-box-pack: c-flexex-start;
      -ms-flex-pack: c-flexex-start;
          justify-content: c-flexex-start;
}

.c-flex.c-justify--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-flex.c-justify--end {
  -webkit-box-pack: c-flexex-end;
      -ms-flex-pack: c-flexex-end;
          justify-content: c-flexex-end;
}

.c-flex.c-align--start {
  -webkit-box-align: c-flexex-start;
      -ms-flex-align: c-flexex-start;
          align-items: c-flexex-start;
}

.c-flex.c-align--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-flex.c-align--end {
  -webkit-box-align: c-flexex-end;
      -ms-flex-align: c-flexex-end;
          align-items: c-flexex-end;
}

.c-flex.c-direction--row {
  c-flexex-direction: row;
}

.c-flex.c-direction--row-r {
  c-flexex-direction: row-reverse;
}

.c-flex.c-direction--col {
  c-flexex-direction: column;
}

.c-flex.c-direction--col-r {
  c-flexex-direction: column-reverse;
}

.c-flex .c-basis--auto {
  c-flexex-basis: auto;
}

.c-flex .c-self--left {
  margin-left: 0;
  margin-right: auto;
}

.c-flex .c-self--right {
  margin-right: 0;
  margin-left: auto;
}

@media screen and (max-width: 1199px) {
  .c-flex-min--xlg {
    display: block !important;
  }
}

@media screen and (min-width: 1200px) {
  .c-flex-max--xlg {
    display: block !important;
  }
}

@media screen and (max-width: 1079px) {
  .c-flex-min--lg {
    display: block !important;
  }
}

@media screen and (min-width: 1080px) {
  .c-flex-max--lg {
    display: block !important;
  }
}

@media screen and (max-width: 991px) {
  .c-flex-min--md {
    display: block !important;
  }
}

@media screen and (min-width: 992px) {
  .c-flex-max--md {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .c-flex-min--sm {
    display: block !important;
  }
}

@media screen and (min-width: 768px) {
  .c-flex-max--sm {
    display: block !important;
  }
}

@media screen and (max-width: 479px) {
  .c-flex-min--xs {
    display: block !important;
  }
}

@media screen and (min-width: 480px) {
  .c-flex-max--xs {
    display: block !important;
  }
}

/* ======================================================

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-> scss -> module -> _display.scss

- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

====================================================== */
/* ==================================================
   Display Style
================================================== */
@media screen and (max-width: 1079px) {
  .c-min-lg {
    display: none !important;
  }
}

@media screen and (min-width: 1080px) {
  .c-max-lg {
    display: none !important;
  }
}

@media screen and (max-width: 991px) {
  .c-min-md {
    display: none !important;
  }
}

@media screen and (min-width: 992px) {
  .c-max-md {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .c-min-sm {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .c-max-sm {
    display: none !important;
  }
}

@media screen and (max-width: 479px) {
  .c-min-xs {
    display: none !important;
  }
}

@media screen and (min-width: 480px) {
  .c-max-xs {
    display: none !important;
  }
}

.c-block {
  display: inline-block;
}

/**
 * Project
 */
.l-main .c-news__list {
  max-width: 885px;
}

.l-main .c-news__list__box {
  border-top: 1px solid rgba(82, 82, 82, 0.3);
}

.l-main .c-news__list__box .c-date {
  font-size: 16px;
  font-size: 1.6rem;
  vertical-align: middle;
  padding-right: 20px;
}

@media screen and (max-width: 767px) {
  .l-main .c-news__list__box .c-date {
    display: none;
  }
}

.l-main .c-news__list__box .c-category {
  font-size: 12px;
  font-size: 1.2rem;
  vertical-align: middle;
  padding-right: 20px;
  width: 120px;
}

@media screen and (max-width: 767px) {
  .l-main .c-news__list__box .c-category {
    width: 45%;
    text-align: center;
    padding: 1em 0;
  }
}

.l-main .c-news__list__box .c-category span {
  background-color: #0B3D91;
  color: #fff;
  padding: 4px 4px;
}

@media screen and (max-width: 767px) {
  .l-main .c-news__list__box .c-category span {
    display: block;
  }
}

.l-main .c-news__list__box .c-desc {
  font-size: 16px;
  font-size: 1.6rem;
  max-width: 640px;
  padding: 2em 0;
  vertical-align: middle;
}

@media screen and (max-width: 991px) {
  .l-main .c-news__list__box .c-desc {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .l-main .c-news__list__box .c-desc {
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .l-main .c-news th,
  .l-main .c-news td {
    　　border-bottom: none;
    display: block;
    width: 100%;
  }
}

.c-pagenavi {
  text-align: center;
  margin-top: 80px;
}

/* ==================================================
   Column
================================================== */
.c-hero.blog {
  background-image: url(../images/hero/hero_column.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.c-hero.blog h1 {
  font-size: 42px;
  font-size: 4.2rem;
  color: #fff;
  padding: 2em 0;
  font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: 400;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .c-hero.blog h1 {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.c-hero.blog h1 .ja {
  display: block;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .c-column {
    margin: 0 auto;
  }
}

.c-column .inner {
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  max-width: calc( 1200px + 3% * 2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 3%;
  padding-right: 3%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 991px) {
  .c-column .inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.c-column .l-sidebar {
  width: 100%;
  max-width: 300px;
  margin-right: 5.28vw;
}

@media screen and (max-width: 991px) {
  .c-column .l-sidebar {
    max-width: 100%;
    padding-top: 80px;
  }
}

.c-column .l-sidebar.youtube, .c-column .l-sidebar.trend {
  margin-right: 0;
  margin-left: 5.28vw;
}

.c-column .l-sidebar.youtube .aside.popular .c-trim, .c-column .l-sidebar.youtube .aside.recent .c-trim {
  width: 120px;
}

.c-column .l-sidebar.youtube .aside.popular .c-trim:after, .c-column .l-sidebar.youtube .aside.recent .c-trim:after {
  padding-bottom: 56.25%;
}

.c-column .aside:nth-child(n+2) {
  padding-top: 40px;
}

.c-column .aside__inner {
  background-color: #F2F2F2;
  padding: 20px;
}

.c-column .aside__title {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 0;
  color: #ffffff;
  font-weight: 600;
  font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: 400;
  padding: 1em;
  background-color: #263B2D;
}

.c-column .aside.popular li:nth-child(n+2), .c-column .aside.recent li:nth-child(n+2) {
  padding-top: 10px;
}

.c-column .aside.popular a, .c-column .aside.recent a {
  color: black;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.c-column .aside.popular .c-trim, .c-column .aside.recent .c-trim {
  position: relative;
  width: 100%;
  overflow: hidden;
  width: 80px;
  margin-right: 10px;
}

.c-column .aside.popular .c-trim:after, .c-column .aside.recent .c-trim:after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
}

.c-column .aside.popular .c-trim .c-trim__inner, .c-column .aside.recent .c-trim .c-trim__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-column .aside.popular .c-trim .c-trim__inner img, .c-column .aside.recent .c-trim .c-trim__inner img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

.c-column .aside.popular .c-text, .c-column .aside.recent .c-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.c-column .aside.popular .c-text .c-title, .c-column .aside.recent .c-text .c-title {
  font-weight: 600;
  line-height: 1.5;
  font-size: 15px;
  font-size: 1.5rem;
}

.c-column .aside.popular .c-text .c-date, .c-column .aside.recent .c-text .c-date {
  display: block;
  text-align: right;
  font-size: 13px;
  font-size: 1.3rem;
}

.c-column .aside.category .aside__title {
  margin-bottom: 0.5em;
}

.c-column .aside.category .category-list li:nth-of-type(n+2) {
  margin-top: 0.5em;
}

.c-column .aside.category .category-list li a {
  display: block;
  padding: 0.5em;
  border: 1px solid #0B3D91;
  border-radius: 4px;
}

.c-column .aside.archive .aside__title {
  margin-bottom: 0.5em;
}

.c-column .aside.archive select {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  padding: 0.5em;
  background-color: #ffffff;
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Lato", "ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: 400;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.c-column .aside.tagcloud a {
  display: inline-block;
  padding: 0.2em 0.6em;
  color: #ffffff;
  background-color: #0B3D91;
  margin: 0 0.5em  0.5em 0;
}

.c-column .aside.bnr div {
  text-align: center;
}

.c-column .aside.bnr div:nth-of-type(n+2) {
  margin-top: 2em;
}

.c-column .aside.bnr div a {
  display: inline-block;
}

.c-column .l-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (max-width: 991px) {
  .c-column .l-main {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    max-width: 100%;
  }
}

.c-column .l-main .c-column__list li {
  margin-bottom: 40px;
}

.c-column .l-main .c-column__list li a {
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  color: #000;
}

.c-column .l-main .c-column__list li .c-column__list__box__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (max-width: 767px) {
  .c-column .l-main .c-column__list li .c-column__list__box__left {
    max-width: 400px;
  }
}

.c-column .l-main .c-column__list li .c-column__list__box__left h2 {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (max-width: 991px) {
  .c-column .l-main .c-column__list li .c-column__list__box__left h2 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .c-column .l-main .c-column__list li .c-column__list__box__left h2 {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.c-column .l-main .c-column__list li .c-column__list__box__left .c-category {
  font-size: 13px;
  font-size: 1.3rem;
  background-color: #0B3D91;
  color: #fff;
  padding: 4px 4px;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .c-column .l-main .c-column__list li .c-column__list__box__left .c-category {
    display: none;
  }
}

.c-column .l-main .c-column__list li .c-column__list__box__left .c-disc {
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 1.4em;
}

@media screen and (max-width: 767px) {
  .c-column .l-main .c-column__list li .c-column__list__box__left .c-disc {
    font-size: 11px;
    font-size: 1.1rem;
    margin-top: 1em;
  }
}

@media screen and (max-width: 767px) {
  .c-column .l-main .c-column__list li .c-column__list__box__left .c-disc {
    font-size: 11px;
    font-size: 1.1rem;
    margin-top: 5px;
  }
}

.c-column .l-main .c-column__list li .c-column__list__box__left .c-info {
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 1em;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media screen and (max-width: 767px) {
  .c-column .l-main .c-column__list li .c-column__list__box__left .c-info {
    font-size: 11px;
    font-size: 1.1rem;
    margin-top: 5px;
  }
}

.c-column .l-main .c-column__list li .c-column__list__box__left .c-info .c-next {
  position: relative;
  padding-left: 1.1em;
  border-bottom: 1px solid rgba(82, 82, 82, 0.3);
  color: black;
  font-weight: bold;
}

.c-column .l-main .c-column__list li .c-column__list__box__left .c-info .c-next:before {
  content: "";
  background-image: url("../images/icon/img_icon_left.png");
  color: #73A776;
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 1em;
  height: 1em;
  display: block;
  background-size: cover;
}

.c-column .l-main .c-column__list li .c-column__list__box__right {
  width: 240px;
  max-width: 40%;
  margin-right: 30px;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

@media screen and (max-width: 991px) {
  .c-column .l-main .c-column__list li .c-column__list__box__right {
    padding-right: 20px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .c-column .l-main .c-column__list li .c-column__list__box__right {
    padding-right: 15px;
  }
}

.c-column .l-main .c-column__list li .c-column__list__box__right .c-trim {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.c-column .l-main .c-column__list li .c-column__list__box__right .c-trim:after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 64%;
}

.c-column .l-main .c-column__list li .c-column__list__box__right .c-trim .c-trim__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-column .l-main .c-column__list li .c-column__list__box__right .c-trim .c-trim__inner img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

.c-column .l-main .news-press__wrap__content a {
  color: #040102;
  border-bottom-color: #E2E2E2;
}

.l-sub-container {
  background-color: #E6F0EF;
  padding: 100px;
}

@media screen and (max-width: 767px) {
  .l-sub-container {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 10px;
  }
}

.l-sub-container h1 {
  position: relative;
  font-size: 42px;
  font-size: 4.2rem;
  margin: auto;
  padding-bottom: 1em;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  max-width: 900px;
}

@media screen and (max-width: 767px) {
  .l-sub-container h1 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.l-sub-container h1 span {
  display: block;
  max-width: 760px;
  margin-left: 40px;
}

@media screen and (max-width: 767px) {
  .l-sub-container h1 span {
    margin-left: 20px;
  }
}

.l-sub-container h1 img {
  height: 134px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .l-sub-container h1 img {
    height: 70px;
  }
}

.l-sub-container .l-main___box .c-title {
  font-weight: bold;
  font-size: 24px;
  font-size: 2.4rem;
  margin-top: 0.9em;
}

@media screen and (max-width: 767px) {
  .l-sub-container .l-main___box .c-title {
    font-size: 20px;
    font-size: 2rem;
  }
}

.l-sub-container .l-main___box .c-text {
  font-size: 16px;
  font-size: 1.6rem;
  margin: 2em 0;
}

@media screen and (max-width: 767px) {
  .l-sub-container .l-main___box .c-text {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.l-sub-container .c-btm__top {
  text-align: center;
  margin-top: 100px;
  padding-bottom: 2em;
}

.l-sub-container .c-btm__top .c-btn, .l-sub-container .c-btm__top .c-sort input[type=submit], .c-sort .l-sub-container .c-btm__top input[type=submit],
.l-sub-container .c-btm__top .c-form input[type=submit], .c-form .l-sub-container .c-btm__top input[type=submit], .l-sub-container .c-btm__top .p-contact.subscription .c-form input[type="submit"], .p-contact.subscription .c-form .l-sub-container .c-btm__top input[type="submit"] {
  color: #2B2E57;
  font-size: 18px;
  font-size: 1.8rem;
  background: #F2F2F2;
  display: inline-block;
  cursor: pointer;
  position: relative;
  border: 1px solid #E2E2E2;
  padding: 0.8em 4em;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .l-sub-container .c-btm__top .c-btn, .l-sub-container .c-btm__top .c-sort input[type=submit], .c-sort .l-sub-container .c-btm__top input[type=submit],
  .l-sub-container .c-btm__top .c-form input[type=submit], .c-form .l-sub-container .c-btm__top input[type=submit], .l-sub-container .c-btm__top .p-contact.subscription .c-form input[type="submit"], .p-contact.subscription .c-form .l-sub-container .c-btm__top input[type="submit"] {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.l-sub-container .c-btm__top .c-btn:before, .l-sub-container .c-btm__top .c-sort input[type=submit]:before, .c-sort .l-sub-container .c-btm__top input[type=submit]:before,
.l-sub-container .c-btm__top .c-form input[type=submit]:before, .c-form .l-sub-container .c-btm__top input[type=submit]:before, .l-sub-container .c-btm__top .p-contact.subscription .c-form input[type="submit"]:before, .p-contact.subscription .c-form .l-sub-container .c-btm__top input[type="submit"]:before {
  content: "";
  background-image: url("../images/icon/img_icon_left_black.png");
  position: absolute;
  right: 1em;
  top: 1.2em;
  width: 1em;
  height: 1em;
  display: block;
  background-size: cover;
}

.l-sub-container .c-btm__top .c-btn:after, .l-sub-container .c-btm__top .c-sort input[type=submit]:after, .c-sort .l-sub-container .c-btm__top input[type=submit]:after,
.l-sub-container .c-btm__top .c-form input[type=submit]:after, .c-form .l-sub-container .c-btm__top input[type=submit]:after, .l-sub-container .c-btm__top .p-contact.subscription .c-form input[type="submit"]:after, .p-contact.subscription .c-form .l-sub-container .c-btm__top input[type="submit"]:after {
  content: "";
  background-image: url("../images/icon/img_icon_left_black.png");
  position: absolute;
  right: 1em;
  top: 1.2em;
  width: 1em;
  height: 1em;
  display: block;
  background-size: cover;
}

/* ==================================================
   Pages
================================================== */
@keyframes fadeInOperator {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30%);
            transform: translateX(-30%);
  }
  75% {
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes fadeInOperator {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30%);
            transform: translateX(-30%);
  }
  75% {
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeInCustomer {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30%);
            transform: translateX(30%);
  }
  75% {
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes fadeInCustomer {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30%);
            transform: translateX(30%);
  }
  75% {
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.js-chatbot {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 2000;
  width: 100%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  max-width: 380px;
}

.js-chatbot-window {
  width: 100vw;
  max-width: 100%;
  height: 560px;
  position: relative;
  z-index: 2;
  -webkit-box-shadow: -2px -2px 6px rgba(4, 1, 2, 0.2);
          box-shadow: -2px -2px 6px rgba(4, 1, 2, 0.2);
}

@media (max-device-height: 580px) {
  .js-chatbot-window {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .js-chatbot-window {
    display: none;
  }
}

.js-chatbot-window:not(.home) {
  display: none;
}

.js-chatbot-header {
  background-color: #3B53A7;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 1em;
}

.js-chatbot-header h2 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}

.js-chatbot-header h2 small {
  display: block;
  font-size: 0.8em;
}

.js-chatbot-header .js-close {
  display: inline-block;
  font-size: 1.4em;
  color: #ffffff;
  cursor: pointer;
}

.js-chatbot-scroll {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: #ffffff;
  padding: 20px 0;
}

.js-chatbot form {
  width: 100%;
}

.js-chatbot .c-form {
  padding: 20px 40px 80px;
}

.js-chatbot #reset {
  display: none;
}

.js-chatbot .c-box {
  width: 100%;
  margin-bottom: 2em;
  -webkit-transition: 0.8s cubic-bezier(0.17, 0.935, 0.305, 1);
  transition: 0.8s cubic-bezier(0.17, 0.935, 0.305, 1);
}

.js-chatbot .c-box.operator.show {
  -webkit-animation-name: fadeInOperator;
          animation-name: fadeInOperator;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.js-chatbot .c-box.customer.show, .js-chatbot .c-box.confirm.show {
  -webkit-animation-name: fadeInCustomer;
          animation-name: fadeInCustomer;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.js-chatbot .c-box.operator {
  -webkit-transform: translateX(-30%);
          transform: translateX(-30%);
  opacity: 0;
}

.js-chatbot .c-box.operator .p-operator-message {
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.js-chatbot .c-box.operator .p-operator-message img {
  width: 2.6em;
  margin-right: 1em;
}

.js-chatbot .c-box.operator .p-operator-message p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1em;
  border-radius: 6px 6px 6px 0;
  background-color: #eeeeee;
  word-break: break-all;
}

.js-chatbot .c-box.customer {
  padding: 1em;
  border-radius: 6px 6px 0 6px;
  background-color: #ddd;
  -webkit-transform: translateX(30%);
          transform: translateX(30%);
  opacity: 0;
}

.js-chatbot .c-box.customer label {
  display: block;
  margin-bottom: 0.5em;
  font-weight: 600;
}

.js-chatbot .c-box.customer label:nth-of-type(n+2) {
  margin-top: 0.5em;
}

.js-chatbot .c-box.customer .wpcf7-form-control-wrap,
.js-chatbot .c-box.customer .wpcf7-form-control {
  display: block;
  width: 100%;
}

.js-chatbot .c-box.customer span.wpcf7-list-item {
  display: block;
  margin-left: 0;
}

.js-chatbot .c-box.customer span.wpcf7-list-item label {
  margin-bottom: 0;
}

.js-chatbot .c-box.confirm {
  margin-bottom: 0;
  -webkit-transform: translateX(30%);
          transform: translateX(30%);
  opacity: 0;
}

.js-chatbot .c-box.confirm dl {
  padding: 1em;
  border: 1px solid #ddd;
}

.js-chatbot .c-box.confirm dl dt {
  font-weight: 600;
  font-size: 0.9em;
  margin-bottom: 0.2em;
}

.js-chatbot .c-box.confirm dl dd {
  margin-bottom: 0.5em;
  font-size: 0.9em;
}

.js-chatbot div.wpcf7-validation-errors,
.js-chatbot div.wpcf7-acceptance-missing,
.js-chatbot div.wpcf7-mail-sent-ok {
  border: none;
  background-color: #eeeeee;
  padding: 1em;
  width: 100%;
  margin: 0;
  border-radius: 4px;
  line-height: 1.3;
  display: none !important;

}

.js-chatbot span.wpcf7-not-valid-tip {
  margin-top: 1em;
  font-size: 0.8em;
}

.js-chatbot table:nth-child(n+2) {
  margin-top: 4em;
}

.js-chatbot table caption {
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 0.95em;
  text-align: left;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .js-chatbot table caption {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.js-chatbot table th, .js-chatbot table td {
  border: 1px solid #E2E2E2;
}

@media screen and (max-width: 767px) {
  .js-chatbot table th, .js-chatbot table td {
    padding: 1em;
  }
}

.js-chatbot table th .c-note, .js-chatbot table td .c-note {
  display: block;
  margin-top: 0.5em;
  font-size: 0.8em;
}

@media screen and (max-width: 767px) {
  .js-chatbot table thead {
    display: none;
  }
}

.js-chatbot table thead th {
  background-color: #25857D;
  color: #ffffff;
  font-weight: 600;
}

.js-chatbot table tbody th {
  background-color: #f2f2f2;
}

.js-chatbot table table,
.js-chatbot table tr,
.js-chatbot table th,
.js-chatbot table td {
  display: block;
  width: 100%;
}

.js-chatbot table td {
  margin-bottom: 1em;
}

.js-chatbot table td .wpcf7-form-control-wrap {
  display: inline-block !important;
  width: 80% !important;
}

.js-chatbot table tr:last-child td .wpcf7-form-control-wrap {
  width: 100% !important;
}

.js-open {
  position: absolute;
  width: 100%;
  max-width: 360px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
}

@media (max-device-height: 580px) {
  .js-open {
    right: 50%;
    bottom: 10px;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    max-width: calc( 50% - 20px);
  }
}

@media screen and (max-width: 767px) {
  .js-open {
    right: 50%;
    bottom: 10px;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    max-width: calc( 100% - 20px);
  }
}

.js-open div {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 1em 0 0.8em;
  background-color: #0B3D91;
  color: #ffffff;
  text-align: center;
  font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: 400;
  font-size: 18px;
  font-size: 1.8rem;
  border-bottom: 4px solid #283871;
  cursor: pointer;
  -webkit-transition: 0.16s cubic-bezier(0.17, 0.935, 0.305, 1);
  transition: 0.16s cubic-bezier(0.17, 0.935, 0.305, 1);
}

@media screen and (max-width: 767px) {
  .js-open div {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 0.8em 0 0.5em;
  }
}

.js-open div:hover {
  background-color: #283871;
  border-bottom-color: #3B53A7;
}

.js-open div img {
  margin-right: 1em;
}

.p-cta {
  max-width: 1080px;
  margin: 0 auto;
}

.p-cta .c-lead {
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
}

.p-cta .c-btn-box {
  width: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.p-cta .c-btn-box .c-btn, .p-cta .c-btn-box .c-sort input[type=submit], .c-sort .p-cta .c-btn-box input[type=submit],
.p-cta .c-btn-box .c-form input[type=submit], .c-form .p-cta .c-btn-box input[type=submit], .p-cta .c-btn-box .p-contact.subscription .c-form input[type="submit"], .p-contact.subscription .c-form .p-cta .c-btn-box input[type="submit"] {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 49%;
  font-size: 28px;
  font-size: 2.8rem;
  max-width: none;
}

@media screen and (max-width: 991px) {
  .p-cta .c-btn-box .c-btn, .p-cta .c-btn-box .c-sort input[type=submit], .c-sort .p-cta .c-btn-box input[type=submit],
  .p-cta .c-btn-box .c-form input[type=submit], .c-form .p-cta .c-btn-box input[type=submit], .p-cta .c-btn-box .p-contact.subscription .c-form input[type="submit"], .p-contact.subscription .c-form .p-cta .c-btn-box input[type="submit"] {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .p-cta .c-btn-box .c-btn, .p-cta .c-btn-box .c-sort input[type=submit], .c-sort .p-cta .c-btn-box input[type=submit],
  .p-cta .c-btn-box .c-form input[type=submit], .c-form .p-cta .c-btn-box input[type=submit], .p-cta .c-btn-box .p-contact.subscription .c-form input[type="submit"], .p-contact.subscription .c-form .p-cta .c-btn-box input[type="submit"] {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 479px) {
  .p-cta .c-btn-box .c-btn, .p-cta .c-btn-box .c-sort input[type=submit], .c-sort .p-cta .c-btn-box input[type=submit],
  .p-cta .c-btn-box .c-form input[type=submit], .c-form .p-cta .c-btn-box input[type=submit], .p-cta .c-btn-box .p-contact.subscription .c-form input[type="submit"], .p-contact.subscription .c-form .p-cta .c-btn-box input[type="submit"] {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.p-cta .c-btn-box .c-btn span, .p-cta .c-btn-box .c-sort input[type=submit] span, .c-sort .p-cta .c-btn-box input[type=submit] span, .p-cta .c-btn-box .c-form input[type=submit] span, .c-form .p-cta .c-btn-box input[type=submit] span, .p-cta .c-btn-box .p-contact.subscription .c-form input[type="submit"] span, .p-contact.subscription .c-form .p-cta .c-btn-box input[type="submit"] span {
  display: block;
  width: 100%;
}

.p-cta .c-btn-box .c-btn span img, .p-cta .c-btn-box .c-sort input[type=submit] span img, .c-sort .p-cta .c-btn-box input[type=submit] span img, .p-cta .c-btn-box .c-form input[type=submit] span img, .c-form .p-cta .c-btn-box input[type=submit] span img, .p-cta .c-btn-box .p-contact.subscription .c-form input[type="submit"] span img, .p-contact.subscription .c-form .p-cta .c-btn-box input[type="submit"] span img {
  width: 100%;
  max-width: 60%;
}

@media screen and (max-width: 479px) {
  .p-cta .c-btn-box .c-btn span img, .p-cta .c-btn-box .c-sort input[type=submit] span img, .c-sort .p-cta .c-btn-box input[type=submit] span img, .p-cta .c-btn-box .c-form input[type=submit] span img, .c-form .p-cta .c-btn-box input[type=submit] span img, .p-cta .c-btn-box .p-contact.subscription .c-form input[type="submit"] span img, .p-contact.subscription .c-form .p-cta .c-btn-box input[type="submit"] span img {
    min-width: 8em;
  }
}

.p-cta .c-btn-box .c-btn small, .p-cta .c-btn-box .c-sort input[type=submit] small, .c-sort .p-cta .c-btn-box input[type=submit] small, .p-cta .c-btn-box .c-form input[type=submit] small, .c-form .p-cta .c-btn-box input[type=submit] small, .p-cta .c-btn-box .p-contact.subscription .c-form input[type="submit"] small, .p-contact.subscription .c-form .p-cta .c-btn-box input[type="submit"] small {
  font-size: 0.75em;
  margin-bottom: 0.5em;
  display: block;
}

.p-cta .c-btn-box .c-btn:before, .p-cta .c-btn-box .c-sort input[type=submit]:before, .c-sort .p-cta .c-btn-box input[type=submit]:before,
.p-cta .c-btn-box .c-form input[type=submit]:before, .c-form .p-cta .c-btn-box input[type=submit]:before, .p-cta .c-btn-box .p-contact.subscription .c-form input[type="submit"]:before, .p-contact.subscription .c-form .p-cta .c-btn-box input[type="submit"]:before {
  content: none;
}

.p-cta .c-btn-box .c-btn:after, .p-cta .c-btn-box .c-sort input[type=submit]:after, .c-sort .p-cta .c-btn-box input[type=submit]:after,
.p-cta .c-btn-box .c-form input[type=submit]:after, .c-form .p-cta .c-btn-box input[type=submit]:after, .p-cta .c-btn-box .p-contact.subscription .c-form input[type="submit"]:after, .p-contact.subscription .c-form .p-cta .c-btn-box input[type="submit"]:after {
  border-color: #ffffff;
}

.p-cta .c-btn-box .c-btn:hover, .p-cta .c-btn-box .c-sort input:hover[type=submit], .c-sort .p-cta .c-btn-box input:hover[type=submit],
.p-cta .c-btn-box .c-form input:hover[type=submit], .c-form .p-cta .c-btn-box input:hover[type=submit], .p-cta .c-btn-box .p-contact.subscription .c-form input:hover[type="submit"], .p-contact.subscription .c-form .p-cta .c-btn-box input:hover[type="submit"] {
  opacity: 0.6;
}

.p-cta .c-bnr {
  margin-top: 2em;
  display: block;
}

.p-cta .c-bnr img {
  display: block;
}

.p-cta .c-bnr.simulation {
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
}

.p-cta .c-bnr.simulation:hover {
  opacity: 1;
  -webkit-box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}

.top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  width: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media screen and (max-width: 1079px) {
  .top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.c-sort input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]),
.c-sort select,
.c-sort textarea,
.c-form input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]),
.c-form select,
.c-form textarea {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  padding: 0.5em;
  background-color: #ffffff;
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Lato", "ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
}

.c-sort textarea,
.c-form textarea {
  min-height: 6em;
}

@media screen and (max-width: 767px) {
  .c-sort span.wpcf7-list-item,
  .c-form span.wpcf7-list-item {
    display: block;
  }
}

.c-sort input[type="radio"],
.c-form input[type="radio"] {
  display: none;
}

.c-sort input[type="radio"] + span,
.c-form input[type="radio"] + span {
  position: relative;
  display: block;
  width: 100%;
  padding-left: 30px;
}

.c-sort input[type="radio"] + span:before, .c-sort input[type="radio"] + span:after,
.c-form input[type="radio"] + span:before,
.c-form input[type="radio"] + span:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: '';
  display: block;
  border-radius: 50%;
}

.c-sort input[type="radio"] + span:before,
.c-form input[type="radio"] + span:before {
  width: 20px;
  height: 20px;
  left: 0;
  background-color: #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.c-sort input[type="radio"] + span:after,
.c-form input[type="radio"] + span:after {
  width: 10px;
  height: 10px;
  left: 5px;
  background-color: #000000;
  z-index: 2;
  opacity: 0;
}

.c-sort input[type="radio"]:checked + span:after,
.c-form input[type="radio"]:checked + span:after {
  opacity: 1;
}

.c-sort input[type="checkbox"],
.c-form input[type="checkbox"] {
  display: block;
  visibility: hidden;
  width: 0;
  height: 0;
}

.c-sort input[type="checkbox"] + span,
.c-sort input[type="checkbox"] + label,
.c-form input[type="checkbox"] + span,
.c-form input[type="checkbox"] + label {
  position: relative;
  display: block;
  width: 100%;
  padding-left: 30px;
}

.c-sort input[type="checkbox"] + span:before, .c-sort input[type="checkbox"] + span:after,
.c-sort input[type="checkbox"] + label:before,
.c-sort input[type="checkbox"] + label:after,
.c-form input[type="checkbox"] + span:before,
.c-form input[type="checkbox"] + span:after,
.c-form input[type="checkbox"] + label:before,
.c-form input[type="checkbox"] + label:after {
  content: '';
  position: absolute;
  top: 50%;
}

.c-sort input[type="checkbox"] + span:before,
.c-sort input[type="checkbox"] + label:before,
.c-form input[type="checkbox"] + span:before,
.c-form input[type="checkbox"] + label:before {
  width: 18px;
  height: 18px;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #0B3D91;
  background-color: #ffffff;
  border-radius: 2px;
}

.c-sort input[type="checkbox"] + span:after,
.c-sort input[type="checkbox"] + label:after,
.c-form input[type="checkbox"] + span:after,
.c-form input[type="checkbox"] + label:after {
  left: 2px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  -webkit-transform-origin: top;
          transform-origin: top;
  border-left: 3px solid #0B3D91;
  border-bottom: 3px solid #0B3D91;
  width: 8px;
  height: 4px;
  z-index: 2;
  opacity: 0;
}

.c-sort input[type="checkbox"]:checked + span:after,
.c-sort input[type="checkbox"]:checked + label:after,
.c-form input[type="checkbox"]:checked + span:after,
.c-form input[type="checkbox"]:checked + label:after {
  opacity: 1;
}

.c-sort .c-btn, .c-sort input[type=submit], .c-sort .p-contact.subscription .c-form input[type="submit"], .p-contact.subscription .c-form .c-sort input[type="submit"],
.c-form .c-btn,
.c-form input[type=submit],
.p-contact.subscription .c-form input[type="submit"] {
  margin-top: 1em;
  background-color: #0B3D91;
  border: unset;
  color: #fff;
  width: 6em;
  padding: 0.4em;
  font-family: "Lato", "ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: 400;
  cursor: pointer;
}

.c-sort .c-btn.disabled, .c-sort input.disabled[type=submit], .c-sort .p-contact.subscription .c-form input.disabled[type="submit"], .p-contact.subscription .c-form .c-sort input.disabled[type="submit"],
.c-form .c-btn.disabled,
.c-form input.disabled[type=submit],
.p-contact.subscription .c-form input.disabled[type="submit"] {
  background-color: #aaa;
  pointer-events: none;
}

.c-sort .c-btn.active, .c-sort input.active[type=submit], .c-sort .p-contact.subscription .c-form input.active[type="submit"], .p-contact.subscription .c-form .c-sort input.active[type="submit"], .c-sort .c-btn:hover, .c-sort input:hover[type=submit], .c-sort .p-contact.subscription .c-form input:hover[type="submit"], .p-contact.subscription .c-form .c-sort input:hover[type="submit"], .c-sort .c-btn:focus, .c-sort input:focus[type=submit], .c-sort .p-contact.subscription .c-form input:focus[type="submit"], .p-contact.subscription .c-form .c-sort input:focus[type="submit"],
.c-form .c-btn.active,
.c-form input.active[type=submit],
.p-contact.subscription .c-form input.active[type="submit"],
.c-form .c-btn:hover,
.c-form input:hover[type=submit],
.p-contact.subscription .c-form input:hover[type="submit"],
.c-form .c-btn:focus,
.c-form input:focus[type=submit],
.p-contact.subscription .c-form input:focus[type="submit"] {
  color: #fff;
  outline: none !important;
}

.c-sort div.wpcf7-mail-sent-ok,
.c-sort div.wpcf7-mail-sent-ng,
.c-sort div.wpcf7-spam-blocked,
.c-sort div.wpcf7-validation-errors,
.c-sort .wpcf7-response-output,
.c-form div.wpcf7-mail-sent-ok,
.c-form div.wpcf7-mail-sent-ng,
.c-form div.wpcf7-spam-blocked,
.c-form div.wpcf7-validation-errors,
.c-form .wpcf7-response-output {
  border: none !important;
  background-color: #efefef !important;
  border-radius: 4px !important;
  padding: 1em !important;
}

.c-sort .c-heading, .c-sort .p-privacy .c-deflist dt, .p-privacy .c-deflist .c-sort dt {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
}

.c-sort .c-btn, .c-sort input[type=submit], .c-sort .p-contact.subscription .c-form input[type="submit"], .p-contact.subscription .c-form .c-sort input[type="submit"] {
  width: 100%;
}

.c-sort [data-sf-field-input-type="select"] {
  padding: 0;
}

.c-sort [data-sf-field-input-type="select"] label {
  width: 100%;
}

.c-sort [data-sf-field-input-type="select"] select {
  width: 100%;
}

.c-sort input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]),
.c-sort select,
.c-sort textarea {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  padding: 0.8em;
  background-color: #ffffff;
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  font-size: 1.6rem;
}

.c-table {
  width: 100%;
}

.c-table:nth-child(n+2) {
  margin-top: 4em;
}

.c-table caption {
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 0.95em;
  text-align: left;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .c-table caption {
    display: block;
  }
}

.c-table th, .c-table td {
  border: 1px solid #E2E2E2;
  padding: 1em;
}

.c-table thead th {
  background-color: #25857D;
  color: #ffffff;
  font-weight: 600;
}

.c-table tbody th {
  background-color: #f2f2f2;
}

/* ==================================================
   トップページ
================================================== */
.c-hero.home {
  width: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-hero.home .p-hero-left {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 50%;
  background-image: url(../images/top/topBack-left.png);
  background-size: cover;
  padding: 112px 5% 96px;
}

@media screen and (max-width: 1079px) {
  .c-hero.home .p-hero-left {
    width: 100%;
    padding: 40px 5%;
  }
}

.c-hero.home .p-hero-left .c-box {
  width: 100%;
}

.c-hero.home .p-hero-left .c-form {
  max-width: 480px;
  margin: 4em auto 0;
}

@media screen and (max-width: 991px) {
  .c-hero.home .p-hero-left .c-form {
    margin-top: 2em;
  }
}

.c-hero.home .p-hero-left .c-form ul {
  width: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  max-width: 600px;
}

.c-hero.home .p-hero-left .c-form ul .sf-field-search {
  padding: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.c-hero.home .p-hero-left .c-form ul .sf-field-search label {
  width: 100%;
}

.c-hero.home .p-hero-left .c-form ul .sf-field-search input {
  font-size: 16px;
  font-size: 1.6rem;
  height: 58px;
  line-height: 58px;
  width: 100%;
}

.c-hero.home .p-hero-left .c-form ul .sf-field-submit {
  padding: 0;
  width: 58px;
}

.c-hero.home .p-hero-left .c-form ul .sf-field-submit input[type="submit"] {
  width: 58px;
  height: 58px;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
  background-image: url(../images/icon/icon-search.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: #0B3D91;
  color: #0B3D91;
  border: none;
  margin-top: 0;
}

.c-hero.home .copy1 {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

.c-hero.home .copy2 {
  display: block;
  text-align: center;
  width: 100%;
  font-size: 42px;
  font-weight: normal;
  text-align: center;
  margin: 11px auto 0 auto;
  font-family: VDL-V7Mincho;
}

@media screen and (max-width: 767px) {
  .c-hero.home .copy2 {
    font-size: 7.0vw;
  }
}

.c-hero.home .p-keyword {
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 120px auto 0;
  position: relative;
}

@media screen and (max-width: 1079px) {
  .c-hero.home .p-keyword {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    margin-top: 40px;
  }
}

.c-hero.home .p-keyword .c-heading, .c-hero.home .p-keyword .p-privacy .c-deflist dt, .p-privacy .c-deflist .c-hero.home .p-keyword dt {
  width: 164px;
  padding: 0.5em 1em;
  background-color: #0B3D91;
  text-align: center;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-size: 1.6rem;
  margin-right: 1em;
}

@media screen and (max-width: 991px) {
  .c-hero.home .p-keyword .c-heading, .c-hero.home .p-keyword .p-privacy .c-deflist dt, .p-privacy .c-deflist .c-hero.home .p-keyword dt {
    margin-bottom: 1em;
    margin-right: 0;
  }
}

.c-hero.home .p-keyword-list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  list-style: none;
  padding: 1em;
  background-color: rgba(255, 255, 255, 0.4);
}

.c-hero.home .p-keyword-list li {
  display: inline-block;
  line-height: 26px;
  margin-right: 10px;
}

.c-hero.home .p-keyword-list li a {
  color: #040102;
  text-decoration: underline;
}

.c-hero.home .p-keyword .c-link {
  margin-top: 1em;
  width: 100%;
  text-align: right;
}

.c-hero.home .p-keyword .c-link a {
  display: inline-block;
  padding-right: 2em;
  color: #040102;
  position: relative;
}

.c-hero.home .p-keyword .c-link a:after {
  position: absolute;
  content: '';
  width: 0.4em;
  height: 0.4em;
  right: 0.4em;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  border-right: 2px solid #040102;
  border-bottom: 2px solid #040102;
}

.c-hero.home .p-hero-right {
  width: 50%;
  background-color: #a3ecec;
  position: relative;
}

@media screen and (max-width: 1079px) {
  .c-hero.home .p-hero-right {
    margin-top: 0;
    width: 100%;
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    padding: 2em;
  }
}

.c-hero.home .p-hero-right .c-sort {
  max-width: 400px;
  padding: 2em;
}

@media screen and (max-width: 1079px) {
  .c-hero.home .p-hero-right .c-sort {
    padding: 0;
    width: 100%;
  }
}

.c-hero.home .p-hero-right .c-sort input[type="submit"] {
  margin: 1em 0 0;
  max-width: unset;
}

.c-hero.home .p-hero-right .c-media {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 2em 2em;
}

@media screen and (max-width: 1079px) {
  .c-hero.home .p-hero-right .c-media {
    max-width: 40vw;
    margin: 0 0 0 auto;
    padding: 0;
  }
}

.p-home-hero {
  position: relative;
}

.p-home-hero .c-media a {
  display: block;
}

.p-home-hero .c-media a:hover {
  opacity: 1;
  /*-
        .p-home-hero-title{
          opacity: 0.8;
        }
        -*/
}

.p-home-hero .c-media a img {
  display: block;
  width: 100%;
}

.p-home-hero-title {
  position: absolute;
  bottom: 15%;
  left: 10%;
  max-width: 51.2666%;
  -webkit-transition: 0.16s cubic-bezier(0.17, 0.935, 0.305, 1);
  transition: 0.16s cubic-bezier(0.17, 0.935, 0.305, 1);
}

@media screen and (max-width: 767px) {
  .p-home-hero-title {
    max-width: 76%;
    left: 6.25%;
  }
}

.p-home-contents {
  text-align: center;
}

.p-home-contents picture {
  display: inline-block;
}

.p-home-contents img {
  max-width: 72vw;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .p-home-contents img {
    max-width: 90vw;
  }
}

.p-home-contents picture + picture {
  margin-top: 5vw;
}

.p-home-dividier:not(.point) {
  background-image: url(../images/top/home_devider_cover.png);
  background-size: cover;
  background-position: center;
  padding: 4.166vw 0;
}

@media screen and (max-width: 767px) {
  .p-home-dividier:not(.point) {
    padding: 19.2vw 0;
  }
}

.p-home-dividier:not(.point) p {
  color: #ffffff;
  font-size: 2.7vw;
  text-shadow: 0 0 6px #253D85;
  text-align: center;
  letter-spacing: 0;
}

@media screen and (max-width: 991px) {
  .p-home-dividier:not(.point) p {
    font-size: 4.0vw;
  }
}

@media screen and (max-width: 767px) {
  .p-home-dividier:not(.point) p {
    font-size: 8.1vw;
    line-height: 1.2;
  }
}

@media screen and (max-width: 767px) {
  .p-home-dividier:not(.point) p small {
    font-size: 0.72em;
    padding-bottom: 0.1em;
    display: block;
  }
}

.p-home-dividier img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .p-home-dividier.advisery small {
    display: inline-block;
    margin-bottom: 0.5em;
  }
  .p-home-dividier.advisery p {
    font-size: 6.7vw;
  }
}

.p-home-bnr {
  text-align: center;
}

.p-home-heading-1 {
  font-size: 2.5vw;
  text-align: center;
  font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: 400;
  color: #263B2D;
  letter-spacing: 0;
  font-weight: 600;
}

@media screen and (max-width: 991px) {
  .p-home-heading-1 {
    font-size: 4.0vw;
  }
}

@media screen and (max-width: 767px) {
  .p-home-heading-1 {
    font-size: 7.22vw;
  }
}

.p-home-desc-1, .p-home-desc-2, .p-home-compare-lead dt {
  margin-top: 2em;
  text-align: center;
  font-size: 1.45vw;
  color: #007CB7;
}

@media screen and (max-width: 991px) {
  .p-home-desc-1, .p-home-desc-2, .p-home-compare-lead dt {
    font-size: 2.4vw;
  }
}

@media screen and (max-width: 767px) {
  .p-home-desc-1, .p-home-desc-2, .p-home-compare-lead dt {
    font-size: 4.33vw;
  }
}

.p-home-desc-2, .p-home-compare-lead dt {
  font-size: 1.145vw;
  color: #040102;
}

@media screen and (max-width: 991px) {
  .p-home-desc-2, .p-home-compare-lead dt {
    font-size: 1.9vw;
  }
}

@media screen and (max-width: 767px) {
  .p-home-desc-2, .p-home-compare-lead dt {
    font-size: 4.33vw;
  }
}

.p-home-desc-2 .marker, .p-home-compare-lead dt .marker {
  display: inline;
  background-color: #ffff92;
  padding: 0 0.5em;
  position: relative;
}

.p-home-desc-2 .marker:before, .p-home-compare-lead dt .marker:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.3em 0.5em 0 0;
  border-color: #fff transparent transparent transparent;
}

.p-home-desc-2 .marker:after, .p-home-compare-lead dt .marker:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 1.3em 0.5em;
  border-color: transparent transparent #fff transparent;
}

.p-home-desc-3 {
  font-size: 2.3vw;
  font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: 400;
  text-align: center;
  font-weight: 600;
  margin: 1em 0;
}

@media screen and (max-width: 991px) {
  .p-home-desc-3 {
    font-size: 4vw;
  }
}

@media screen and (max-width: 767px) {
  .p-home-desc-3 {
    font-size: 7.22vw;
    line-height: 1.3;
  }
}

@media screen and (max-width: 767px) {
  .p-home-desc-3 small {
    display: inline-block;
    font-size: 0.8em;
    margin-bottom: 1em;
  }
}

.p-home-desc-3 .stripe {
  display: inline;
  padding: 0 0.6em 0.2em;
  background-image: url(../images/top/home_desc_stripe.png);
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: auto 0.4em;
}

.p-home-desc-3 .diamond {
  position: relative;
}

.p-home-desc-3 .diamond:before {
  content: '';
  position: absolute;
  top: -0.26em;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  width: 0.26em;
  height: 0.26em;
  border-radius: 2px;
  background-color: #040102;
}

.p-home-desc-4 {
  font-size: 1.45vw;
  margin-top: 0.5em;
  text-align: center;
  font-weight: 600;
  color: #149187;
}

@media screen and (max-width: 767px) {
  .p-home-desc-4 {
    font-size: 1.8vw;
  }
}

@media screen and (max-width: 767px) {
  .p-home-desc-4 {
    font-size: 4.33vw;
  }
}

.p-home-worries-list {
  width: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-home-worries-list .c-box {
  width: 49%;
  background: #F2F2F2;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 767px) {
  .p-home-worries-list .c-box {
    width: 72vw;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-home-worries-list .c-box h3 {
  margin-bottom: 0;
}

.p-home-worries-list .c-box h3 img {
  width: 100%;
}

.p-home-worries-list .c-box ul {
  padding: 0 1.5625vw 1.5625vw;
}

@media screen and (max-width: 767px) {
  .p-home-worries-list .c-box ul {
    padding: 0 7.2vw 7.2vw;
  }
}

.p-home-worries-list .c-box ul li {
  padding: 0.5em 0;
  font-size: 1.25vw;
  font-style: italic;
  font-weight: 400;
  text-align: left;
  border-bottom: 0.1em dotted;
  font-family: "ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: 400;
}

@media screen and (max-width: 991px) {
  .p-home-worries-list .c-box ul li {
    font-size: 2vw;
  }
}

@media screen and (max-width: 767px) {
  .p-home-worries-list .c-box ul li {
    font-size: 4.09vw;
  }
}

.p-home-worries-list .c-box:nth-child(1) {
  color: #149187;
  border-bottom-color: #149187;
}

@media screen and (max-width: 767px) {
  .p-home-worries-list .c-box:nth-child(1) {
    margin-bottom: 7.2vw;
  }
}

.p-home-worries-list .c-box:nth-child(2) {
  color: #007CB7;
  border-bottom-color: #007CB7;
}

.p-home-negative picture {
  margin-top: 2em;
}

.p-home-compare-lead {
  text-align: center;
}

.p-home-compare-lead dt {
  padding: 0.6em 1.5em;
  border: 1px solid #040102;
  display: inline-block;
  font-family: "ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: 400;
}

.p-home-compare-list {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .p-home-compare-list {
    max-width: 72vw;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 767px) {
  .p-home-compare-list {
    margin-top: 14.4vw;
  }
}

.p-home-compare-list .c-box {
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .p-home-compare-list .c-box {
    border-bottom: 2px dotted #040102;
    padding-bottom: 7.2vw;
    margin-bottom: 7.2vw;
  }
}

.p-home-compare-list .c-box h3 {
  width: 14.79vw;
}

@media screen and (max-width: 767px) {
  .p-home-compare-list .c-box h3 {
    width: 100%;
    text-align: center;
  }
}

.p-home-compare-list .c-box h3 img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .p-home-compare-list .c-box h3 img {
    width: 72vw;
  }
}

.p-home-compare-list .c-box .merit-demerit {
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1.5625vw 0;
}

@media screen and (min-width: 768px) {
  .p-home-compare-list .c-box .merit-demerit {
    border-top: 0.11em dotted #040102;
  }
}

.p-home-compare-list .c-box .merit, .p-home-compare-list .c-box .demerit {
  width: 50%;
  padding: 0 1.5625vw;
}

@media screen and (max-width: 767px) {
  .p-home-compare-list .c-box .merit, .p-home-compare-list .c-box .demerit {
    width: 100%;
    padding: 0 7.2vw;
  }
}

.p-home-compare-list .c-box .merit h4, .p-home-compare-list .c-box .demerit h4 {
  width: 8.33vw;
  margin-bottom: 0.2em;
}

@media screen and (max-width: 767px) {
  .p-home-compare-list .c-box .merit h4, .p-home-compare-list .c-box .demerit h4 {
    width: 28.9vw;
  }
}

.p-home-compare-list .c-box .merit h4 img, .p-home-compare-list .c-box .demerit h4 img {
  width: 100%;
}

.p-home-compare-list .c-box .merit ul, .p-home-compare-list .c-box .demerit ul {
  font-size: 1.145vw;
  padding-left: 1em;
}

@media screen and (max-width: 767px) {
  .p-home-compare-list .c-box .merit ul, .p-home-compare-list .c-box .demerit ul {
    font-size: 4.3vw;
  }
}

.p-home-compare-list .c-box .merit ul li, .p-home-compare-list .c-box .demerit ul li {
  position: relative;
  color: #253D85;
  padding-left: 0.8em;
  text-align: left;
  font-family: "ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: 400;
}

.p-home-compare-list .c-box .merit ul li:before, .p-home-compare-list .c-box .demerit ul li:before {
  position: absolute;
  left: 0;
  top: 0.7em;
  content: '';
  width: 0.36em;
  height: 0.36em;
  border-radius: 50%;
  background-color: #253d85;
}

@media screen and (min-width: 768px) {
  .p-home-compare-list .c-box .merit {
    border-right: 0.11em dotted #040102;
  }
}

@media screen and (max-width: 767px) {
  .p-home-compare-list .c-box .merit {
    margin-bottom: 7.2vw;
  }
}

.p-home-compare picture {
  margin-top: 2.08vw;
}

.p-home-example {
  background-color: #E5F1FB;
}

.p-home-example h2 {
  margin-top: -5.25vw;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .p-home-example h2 {
    margin-top: -60px;
  }
}

.p-home-example h2 img {
  width: 33.3333vw;
}

@media screen and (max-width: 767px) {
  .p-home-example h2 img {
    width: 83.8vw;
  }
}

.p-home-example ul {
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-home-example ul li {
  position: relative;
  width: calc( 33.3333% - 20px);
  padding: 2.2em 0;
  font-size: 1.25vw;
  font-style: italic;
  font-weight: 400;
  text-align: center;
  background-color: #ffffff;
  font-family: "ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: 400;
  color: #007CB7;
  margin-right: 30px;
  border: 1px solid #16B3EE;
}

@media screen and (max-width: 991px) {
  .p-home-example ul li {
    font-size: 2.2vw;
  }
}

@media screen and (max-width: 767px) {
  .p-home-example ul li {
    width: calc( 50% - 10px);
    margin-right: 20px;
    font-size: 4vw;
  }
}

.p-home-example ul li:after {
  position: absolute;
  top: 6px;
  left: 6px;
  content: '';
  width: calc( 100% - 12px);
  height: calc( 100% - 12px);
  border: 1px solid #16B3EE;
  opacity: 0.3;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .p-home-example ul li:nth-child(3n) {
    margin-right: 0;
  }
  .p-home-example ul li:nth-child(n+4) {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .p-home-example ul li:nth-child(2n) {
    margin-right: 0;
  }
  .p-home-example ul li:nth-child(n+3) {
    margin-top: 20px;
  }
}

.p-home-feature .p-home-desc-2, .p-home-feature .p-home-compare-lead dt, .p-home-compare-lead .p-home-feature dt {
  margin-bottom: 7.2vw;
}

.p-home-feature .p-home-desc-3 {
  margin-bottom: 7.2vw;
}

.p-home-feature .p-home-desc-3 small.stripe {
  display: inline-block;
  margin-bottom: 0.5em;
}

.p-home-first-flow {
  width: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 2em;
}

.p-home-first-flow dt {
  width: 100%;
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 292px;
  padding: 1em 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .p-home-first-flow dt {
    width: 100%;
  }
}

.p-home-first-flow dt.hearing {
  background-color: #314178;
}

.p-home-first-flow dt.suggest {
  background-color: #06635B;
}

.p-home-first-flow dd {
  width: 100%;
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: calc( 100% - 292px);
  text-align: left;
  padding: 1.5em;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .p-home-first-flow dd {
    width: 100%;
    margin: 2em 0;
    border-radius: 4px;
    background: #ffffff;
  }
}

.p-home-first-flow dd p {
  position: relative;
  padding-left: 3em;
  font-weight: 600;
}

.p-home-first-flow dd p:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 2em;
  height: 2em;
  background-image: url(../images/icon/icon_pen.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.p-home-first-flow dd p:nth-child(n+2) {
  margin-top: 1.5em;
}

.p-home-first-flow dd p small {
  display: block;
  margin-top: 0.5em;
  padding-left: 1em;
  font-size: 0.8em;
  font-weight: 400;
}

.p-contact-term ul {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.p-contact-term ul li {
  position: relative;
  padding-left: 6.6vw;
  background-color: #fff;
  font-size: 1.19vw;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  text-align: left;
  padding: 1.154vw 1.154vw 1.154vw 7.754vw;
}

@media screen and (max-width: 991px) {
  .p-contact-term ul li {
    font-size: 1.8vw;
    padding: 3.2vw 3.2vw 3.2vw 27.2vw;
  }
}

@media screen and (max-width: 767px) {
  .p-contact-term ul li {
    font-size: 3.85vw;
    padding: 7.2vw 7.2vw 7.2vw 27.2vw;
  }
}

.p-contact-term ul li:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 2.4vw;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  width: 1em;
  height: 0.8em;
  border-left: 0.3em solid #60AC42;
  border-bottom: 0.3em solid #60AC42;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .p-contact-term ul li:before {
    left: 7.6vw;
  }
}

.p-contact-term ul li:after {
  width: 6.6vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  background: #263B2D;
}

@media screen and (max-width: 991px) {
  .p-contact-term ul li:after {
    width: 20vw;
  }
}

.p-contact-term ul li:nth-child(n+2) {
  margin-top: 1em;
}

.p-home-point .p-home-point__title {
  text-align: center;
  font-size: 48px;
  font-size: 4.8rem;
  line-height: 1.3;
  margin-bottom: 2em;
  color: #040102;
  font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .p-home-point .p-home-point__title {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

.p-home-point ul li {
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.p-home-point ul li:nth-of-type(n+2) {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .p-home-point ul li {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-home-point ul li .c-media {
  position: relative;
  width: 400px;
  max-width: 40%;
  margin-right: 40px;
}

@media screen and (max-width: 767px) {
  .p-home-point ul li .c-media {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

.p-home-point ul li .c-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (max-width: 767px) {
  .p-home-point ul li .c-text {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
  }
}

.p-home-point .p-home-point__content {
  max-width: 1080px;
  width: 100%;
  margin: 85px auto 50px;
  position: relative;
}

@media screen and (max-width: 1079px) {
  .p-home-point .p-home-point__content {
    margin: 0 0 40px 0;
  }
}

.p-home-point .p-home-point__content__number {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
}

.p-home-point .p-home-point__content__point {
  text-align: center;
  font: 18px/34px VDL-V7Mincho;
  letter-spacing: 0px;
  color: #000000;
  width: 210px;
  height: 36px;
  background: #eeeeee;
  display: inline-block;
}

@media (max-width: 1080px) {
  .p-home-point .p-home-point__content__point {
    width: 210px;
    line-height: 36px;
    position: relative;
    top: -20px;
    left: 14px;
  }
}

@media screen and (max-width: 767px) {
  .p-home-point .p-home-point__content__point {
    top: -20px;
  }
}

.p-home-point .p-home-point__content__title1 {
  text-align: left;
  font: 30px/39px Hiragino Mincho Pro;
  letter-spacing: 0px;
  margin: 20px 0;
}

@media (max-width: 1080px) {
  .p-home-point .p-home-point__content__title1 {
    font-size: 30px;
    margin: 0 auto 25px;
    font-weight: bold;
  }
}

@media screen and (max-width: 767px) {
  .p-home-point .p-home-point__content__title1 {
    font-size: 24px;
    margin: 0 auto 25px;
  }
}

.p-home-point .p-home-point__content__title2 {
  text-align: left;
  font: 24px/31px Yu Gothic;
  font-weight: bold;
  letter-spacing: 0px;
  color: #ffffff;
  padding: 0.625em 1.25em;
  margin-bottom: 0.8em;
  background: #0B3D91 0% 0% no-repeat padding-box;
}

@media (max-width: 1080px) {
  .p-home-point .p-home-point__content__title2 {
    width: 100%;
    margin: 0 auto 25px;
  }
}

.p-home-point .p-home-point__content__text {
  text-align: left;
  font: 16px/29px Yu Gothic;
  letter-spacing: 0px;
}

@media (max-width: 1080px) {
  .p-home-point .p-home-point__content__text {
    margin: 0 auto;
  }
}

.p-home-interview .c-bnr {
  padding: 80px 0;
  text-align: center;
}

@media screen and (max-width: 1079px) {
  .p-home-interview .c-bnr {
    padding: 5%;
  }
}

.p-home-interview .c-heading, .p-home-interview .p-privacy .c-deflist dt, .p-privacy .c-deflist .p-home-interview dt {
  font-size: 42px;
  font-size: 4.2rem;
  font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: 400;
  text-align: center;
  display: block;
  margin: 0 auto 63px;
}

@media screen and (max-width: 767px) {
  .p-home-interview .c-heading, .p-home-interview .p-privacy .c-deflist dt, .p-privacy .c-deflist .p-home-interview dt {
    font-size: 24px;
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
}

.p-home-interview .c-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.p-home-interview .left {
  width: 100%;
  max-width: 50%;
  padding: 0 40px;
  margin: 0 auto;
}

@media screen and (max-width: 1079px) {
  .p-home-interview .left {
    max-width: 100%;
    padding: 0;
  }
}

.p-home-interview .left .c-text {
  width: 100%;
  padding: 60px;
  background-color: #263b2d;
  color: #ffffff;
}

@media screen and (max-width: 1079px) {
  .p-home-interview .left .c-text {
    padding: 5%;
  }
}

.p-home-interview .left .c-title {
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  display: block;
  margin: 0 auto 1.2em;
  padding-top: 80px;
}

@media screen and (max-width: 767px) {
  .p-home-interview .left .c-title {
    padding-top: 25px;
  }
}

.p-home-interview .left .c-desc {
  text-align: center;
  font: 15px/24px Yu Gothic;
  display: block;
  letter-spacing: 0.1em;
}

.p-home-interview .left .c-btn, .p-home-interview .left .c-sort input[type=submit], .c-sort .p-home-interview .left input[type=submit],
.p-home-interview .left .c-form input[type=submit], .c-form .p-home-interview .left input[type=submit], .p-home-interview .left .p-contact.subscription .c-form input[type="submit"], .p-contact.subscription .c-form .p-home-interview .left input[type="submit"] {
  color: #ffffff;
  border: 1px solid #fff;
  -webkit-transition: 0.16s cubic-bezier(0.17, 0.935, 0.305, 1);
  transition: 0.16s cubic-bezier(0.17, 0.935, 0.305, 1);
}

.p-home-interview .left .c-btn:hover, .p-home-interview .left .c-sort input:hover[type=submit], .c-sort .p-home-interview .left input:hover[type=submit],
.p-home-interview .left .c-form input:hover[type=submit], .c-form .p-home-interview .left input:hover[type=submit], .p-home-interview .left .p-contact.subscription .c-form input:hover[type="submit"], .p-contact.subscription .c-form .p-home-interview .left input:hover[type="submit"] {
  background-color: #fff;
  color: #263b2d;
}

.p-home-interview .right {
  width: 100%;
  max-width: 50%;
  margin: 0 auto;
}

@media screen and (max-width: 1079px) {
  .p-home-interview .right {
    max-width: 100%;
  }
}

.p-home-interview .right .c-media {
  position: relative;
  width: 100%;
  height: 100%;
}

.p-home-interview .right .c-media:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 1, 2, 0.2);
  pointer-events: none;
}

.p-home-interview .right .c-media:after {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: '';
  background-image: url(../images/icon/icon-start.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 6em;
  height: 6em;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .p-home-interview .right .c-media:after {
    width: 60px;
    height: 60px;
  }
}

.p-home-interview .right a {
  display: block;
  width: 100%;
  height: 100%;
}

.p-home-interview .right img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-home-search {
  max-width: 1080px;
  width: 100vw;
  margin: 0 auto;
}

.p-home-search .c-box:nth-child(n+2) {
  padding-top: 60px;
}

.p-home-search__wrap {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-home-search__wrap__content {
  display: block;
  width: 160px;
  min-width: 20%;
  margin: 0 0 15px;
}

@media screen and (max-width: 767px) {
  .p-home-search__wrap__content {
    width: 33.3333%;
    padding: 2.5px 5px;
  }
}

.p-home-search__wrap__content img {
  display: block;
}

.p-home-search .c-link {
  color: #263B2D;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}

.p-home-search .c-link.underline {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .p-home-search__more {
    display: block;
    width: 160px;
    margin-left: 50vw;
  }
}

.p-home-result {
  background: #f2f2f2 0% 0% no-repeat padding-box;
}

.p-home-result .c-result {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: none;
  padding-bottom: 0;
}

.p-home-result .c-result .c-result__left,
.p-home-result .c-result .c-result__right {
  width: 100%;
}

.p-home-result .c-result .c-result__center {
  margin: 20px 0;
}

.p-home-result .c-result .c-result__center img {
  display: block;
  margin: 0 auto;
}

.p-home-result__title {
  font-weight: 600;
  font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: 400;
  font-size: 42px;
  font-size: 4.2rem;
  text-align: center;
  margin-bottom: 0.9em;
}

@media screen and (max-width: 767px) {
  .p-home-result__title {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.p-home-result__wrap {
  margin: 0 auto;
  /*-
  .swiper-button-prev{
    left: 0;
    z-index: 20;
  }
  .swiper-button-next{
    right: 0;
    z-index: 20;
  }
  -*/
}

.p-home-result__wrap .swiper-container {
  /*-
    &:before,
    &:after{
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      z-index: 10;
      width: 40px;
      height: 100%;
      background-color: #f2f2f2;
    }
    &::after{
      left: auto;
      right: 0;
    }
    -*/
}

.p-home-result__wrap .swiper-container .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.p-home-result__wrap .swiper-container .swiper-slide {
  text-align: center;
}

.p-worries .p-worries-cover {
  background-color: #149187;
}

.p-worries .inner {
  position: relative;
}

@media screen and (max-width: 991px) {
  .p-worries .inner {
    padding-top: 6vw;
  }
}

@media screen and (max-width: px) {
  .p-worries .inner {
    padding-top: 16vw;
  }
}

.p-worries .c-icon {
  position: absolute;
  top: -10px;
  left: 0;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .p-worries .c-icon {
    width: 16vw;
  }
}

@media screen and (max-width: 767px) {
  .p-worries .c-icon {
    width: 24vw;
  }
}

.p-worries .c-container {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  max-width: 640px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .p-worries .c-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .p-worries .c-container .c-media {
    width: 100%;
    background-color: #ffffff;
    text-align: center;
    padding: 0.5em;
  }
  .p-worries .c-container .c-media:nth-of-type(n+2) {
    margin-top: 1em;
  }
}

.p-worries .c-container .c-media picture {
  display: block;
}

@media screen and (max-width: 767px) {
  .p-worries .c-container .c-media img {
    max-width: 80%;
    vertical-align: middle;
  }
}

.p-worries strong {
  position: relative;
  text-align: center;
  font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: 400;
  font-weight: 600;
  font-size: 36px;
  font-size: 3.6rem;
  color: #ffffff;
  display: block;
  width: 100%;
  background-color: #149187;
}

@media screen and (max-width: 767px) {
  .p-worries strong {
    font-size: 4.8vw;
    width: 100%;
    max-width: calc( 1080px + 3% * 2);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 3%;
    padding-right: 3%;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-worries strong:after {
  position: absolute;
  top: 100%;
  left: 0;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 80px 50vw 0 50vw;
  border-color: #149187 transparent transparent transparent;
}

@media screen and (max-width: 767px) {
  .p-worries strong:after {
    border-width: 4em 50vw 0 50vw;
  }
}

.p-worries strong > span {
  position: relative;
  z-index: 2;
}

.p-strength {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .p-strength {
    padding-top: 80px;
  }
}

@media screen and (max-width: 767px) {
  .p-strength {
    position: relative;
    padding-top: 8em;
  }
}

.p-strength-lead {
  width: 100%;
  display: inline-block;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2;
  font-weight: bold;
  margin-bottom: 2em;
}

@media screen and (max-width: 767px) {
  .p-strength-lead {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 991px) {
  .p-strength-lead br {
    display: none;
  }
}

.p-strength-circle {
  background-color: #f2f2f2;
}

.p-strength-circle .c-lead {
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
  font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: 400;
  font-weight: bold;
  margin-bottom: 0.9em;
}

.p-strength-circle-list {
  width: 100%;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media screen and (max-width: 767px) {
  .p-strength-circle-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 40px auto 0;
  }
}

.p-strength-circle-list .c-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .p-strength-circle-list .c-box {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
    text-align: center;
    margin: 0 auto 40px;
  }
}

.p-strength-circle-list .c-text {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  color: #0B3D91;
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
  background-color: #fff;
  padding: 0.6em 1em;
  font-weight: bold;
  margin-top: 1.5em;
}

.p-home-support {
  text-align: center;
}

.p-home-support.failure .c-heading, .p-home-support.failure .p-privacy .c-deflist dt, .p-privacy .c-deflist .p-home-support.failure dt {
  width: 100%;
  max-width: 1080px;
  background-color: #e2e2e2;
  color: #263b2d;
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: bold;
  padding: 0.8em;
}

.p-home-support.failure .c-desc {
  max-width: 1080px;
  width: 100%;
  background-color: #ffe0e0;
  text-align: center;
  padding: 30px 20px 20px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .p-home-support.failure .c-desc {
    height: auto;
  }
}

.p-home-support.failure .c-desc p {
  color: #263b2d;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1em;
}

.p-home-support.failure .p-strength-map {
  width: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 2em 0;
}

.p-home-support.failure .p-strength-map .c-name {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 155px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  padding: 1em 0;
  font-weight: bold;
  border-radius: 4px;
}

@media screen and (max-width: 767px) {
  .p-home-support.failure .p-strength-map .c-name {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.p-home-support.failure .p-strength-map .c-name.seller {
  background-color: #0B3D91;
}

.p-home-support.failure .p-strength-map .c-name.buyer {
  background-color: #F5C400;
}

.p-home-support.failure .p-strength-map .p-company {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 220px;
  background-color: #eee;
  margin: 0 45px;
  padding: 1em;
  border-radius: 4px;
}

@media screen and (max-width: 767px) {
  .p-home-support.failure .p-strength-map .p-company {
    margin-right: 0;
    margin: 0 20px;
    display: block;
  }
}

.p-home-support.failure ul {
  width: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-home-support.failure ul li {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: calc( 33.3333% - 10px);
  background-color: #fff;
  color: #b33232;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 0.5em 1em;
  font-weight: bold;
  border-radius: 6px;
}

@media screen and (max-width: 991px) {
  .p-home-support.failure ul li {
    max-width: 100%;
    width: 100%;
  }
  .p-home-support.failure ul li:nth-child(n+2) {
    margin-top: 1em;
  }
}

.p-home-support.success .c-heading, .p-home-support.success .p-privacy .c-deflist dt, .p-privacy .c-deflist .p-home-support.success dt {
  width: 100%;
  background: transparent -webkit-gradient(linear, left top, right top, from(#0B3D91), to(#F5C400)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #0B3D91 0%, #F5C400 100%) 0% 0% no-repeat padding-box;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  padding: 1em;
}

@media screen and (max-width: 767px) {
  .p-home-support.success .c-heading, .p-home-support.success .p-privacy .c-deflist dt, .p-privacy .c-deflist .p-home-support.success dt {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .p-home-support.success img {
    width: 90%;
  }
}

.q-and-a {
  background-image: url(../images/q-and-a/back.png);
  background-size: cover;
  width: 100%;
}

.q-and-a__wrap {
  position: relative;
  width: 100%;
  max-width: calc( 880px + 3% * 2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 3%;
  padding-right: 3%;
  margin-left: auto;
  margin-right: auto;
}

.q-and-a__wrap__question {
  width: 100%;
  display: inline-block;
  background-color: white;
  position: relative;
  z-index: 10;
  display: inline-table;
  padding: 2em 3.6em;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .q-and-a__wrap__question {
    padding: 1.5em 3.6em;
  }
}

.q-and-a__wrap__question__text {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: bold;
  color: #707070;
}

@media screen and (max-width: 767px) {
  .q-and-a__wrap__question__text {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.q-and-a__wrap__question__q {
  position: absolute;
  top: 50%;
  left: 0.5em;
  font-family: VDL-V7Mincho;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  font-size: 2em;
  font-weight: bold;
  color: #263b2d;
}

@media screen and (max-width: 767px) {
  .q-and-a__wrap__question__q {
    font-size: 1.5em;
  }
}

.q-and-a__wrap__question__plus {
  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .q-and-a__wrap__question__plus {
    width: 1em;
  }
}

.q-and-a__wrap__question__plus:nth-child(1) {
  top: 82px;
}

.q-and-a__wrap__question__plus--open {
  visibility: hidden;
}

.q-and-a__wrap__question__minus {
  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .q-and-a__wrap__question__minus {
    width: 1em;
  }
}

.q-and-a__wrap__answer {
  width: 90%;
  max-width: 880px;
  padding: 2em;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #000000;
  z-index: 3;
  background-color: #f2f2f2;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 5%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media screen and (max-width: 767px) {
  .q-and-a__wrap__answer {
    padding: 1.2em;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

@media (max-width: 1024px) {
  .q-and-a__wrap__answer {
    font-weight: 600;
  }
}

.q-and-a__wrap__answer--open {
  visibility: unset;
  margin: 0;
  position: absolute;
  z-index: 100;
  opacity: 1;
}

.p-home-column .p-home-column__wrap__content a {
  color: #000000;
}

@media screen and (max-width: 767px) {
  .p-home-column .p-home-column__wrap__content a {
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .p-home-column .p-home-column__wrap__content a .c-media {
    width: 200px;
    max-width: 40%;
    margin-right: 20px;
  }
}

.p-home-column .p-home-column__wrap__content a .c-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-home-column .p-home-column__wrap__content a .c-info {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.p-home-column__title {
  text-align: center;
  font-size: 40px;
  font-size: 4rem;
  font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: 400;
  font-weight: 600;
  color: #263b2d;
  margin-bottom: 0.9em;
}

@media screen and (max-width: 767px) {
  .p-home-column__title {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.p-home-column__wrap {
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .p-home-column__wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-home-column__wrap__content {
  width: calc( 33.3333% - 40px);
}

@media screen and (max-width: 1079px) {
  .p-home-column__wrap__content {
    width: calc( 33.3333% - 20px);
  }
}

@media screen and (max-width: 767px) {
  .p-home-column__wrap__content {
    width: 100%;
  }
}

.p-home-column__wrap__content:not(:nth-child(3n)) {
  margin-right: 60px;
}

@media screen and (max-width: 1079px) {
  .p-home-column__wrap__content:not(:nth-child(3n)) {
    margin-right: 30px;
  }
}

@media screen and (max-width: 767px) {
  .p-home-column__wrap__content:not(:nth-child(3n)) {
    margin-right: 0;
  }
}

.p-home-column__wrap__content:nth-child(n+4) {
  margin-top: 60px;
}

@media screen and (max-width: 1079px) {
  .p-home-column__wrap__content:nth-child(n+4) {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .p-home-column__wrap__content:nth-child(n+2) {
    margin-top: 20px;
  }
}

.p-home-column__wrap__content a:hover .c-media img {
  opacity: 0.8;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.p-home-column__wrap__content .c-media {
  background-color: #000000;
}

.p-home-column__wrap__content .c-media img {
  -webkit-transition: 0.4s cubic-bezier(0.17, 0.935, 0.305, 1);
  transition: 0.4s cubic-bezier(0.17, 0.935, 0.305, 1);
}

.p-home-column__wrap__content__title {
  text-align: left;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: bold;
  letter-spacing: 0px;
  color: #000000;
  margin: 1em 0;
}

.p-home-column__wrap__content__tag, .news-press__wrap__content__tag {
  display: inline-block;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0px;
  color: #ffffff;
  padding: 0.2em 1.0em;
  margin: 0 0.5em 0.5em 0;
  text-align: center;
  background: #0B3D91 0% 0% no-repeat padding-box;
  vertical-align: middle;
}

.p-home-column__wrap__content__body {
  text-align: left;
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 1em;
  letter-spacing: 0px;
  color: #000000;
  margin-bottom: 25px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-home-column__wrap__content__body {
    display: none;
  }
}

.p-home-column__wrap__content__more-btn {
  display: inline-block;
  line-height: 1;
}

.p-home-column__wrap__content__more-btn img {
  position: relative;
  width: 0.6em;
  top: -0.2em;
  vertical-align: middle;
  margin-right: 8px;
}

.p-home-column__wrap__content__time {
  display: inline-block;
  font-size: 14px;
  font-size: 1.4rem;
}

.news-press {
  background-color: #d1f0ed;
}

.news-press__title {
  text-align: center;
  font-size: 40px;
  font-size: 4rem;
  font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: 400;
  color: #263b2d;
  font-weight: 600;
  margin-bottom: 0.9em;
}

@media screen and (max-width: 767px) {
  .news-press__title {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

.news-press__wrap__content a {
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-bottom: 1.2em;
  border-bottom: 1px solid #99dbd5;
}

@media screen and (max-width: 767px) {
  .news-press__wrap__content a {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.news-press__wrap__content:nth-child(n+2) {
  padding-top: 1.2em;
}

.news-press__wrap__content__time {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0px;
}

@media screen and (max-width: 767px) {
  .news-press__wrap__content__time {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.news-press__wrap__content__tag {
  margin: 0 1.5em;
  white-space: nowrap;
}

.news-press__wrap__content__body {
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .news-press__wrap__content__body {
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: 0.5em;
  }
}

/* ==================================================
   成約実績
================================================== */
.p-result.has--cover {
  background-color: #E6F0EF;
  background-image: url(../images/result/result_cover.png);
  background-position: center bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.p-result-box:nth-of-type(n+2) {
  margin-top: 2em;
}

@media screen and (max-width: 767px) {
  .p-result-box:nth-of-type(n+2) {
    margin-top: 4em;
  }
}

.p-result-box .c-heading-02, .p-result-box .p-intermediary .p-results-sort h4, .p-intermediary .p-results-sort .p-result-box h4, .p-result-box .p-ma-merit .c-container ul.heart:before, .p-ma-merit .c-container .p-result-box ul.heart:before, .p-result-box .p-ma-merit .c-container ul.sander:before, .p-ma-merit .c-container .p-result-box ul.sander:before, .p-result-box .p-ma-trend .c-reading dl dt, .p-ma-trend .c-reading dl .p-result-box dt, .p-result-box .p-ma-trend .p-ma-lead p dl dt, .p-ma-trend .p-ma-lead p dl .p-result-box dt, .p-result-box .p-ma-lead .p-ma-trend p dl dt, .p-ma-lead .p-ma-trend p dl .p-result-box dt {
  font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .p-result-box .c-heading-02, .p-result-box .p-intermediary .p-results-sort h4, .p-intermediary .p-results-sort .p-result-box h4, .p-result-box .p-ma-merit .c-container ul.heart:before, .p-ma-merit .c-container .p-result-box ul.heart:before, .p-result-box .p-ma-merit .c-container ul.sander:before, .p-ma-merit .c-container .p-result-box ul.sander:before, .p-result-box .p-ma-trend .c-reading dl dt, .p-ma-trend .c-reading dl .p-result-box dt, .p-result-box .p-ma-trend .p-ma-lead p dl dt, .p-ma-trend .p-ma-lead p dl .p-result-box dt, .p-result-box .p-ma-lead .p-ma-trend p dl dt, .p-ma-lead .p-ma-trend p dl .p-result-box dt {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.p-result-box .c-desc {
  margin-bottom: 1em;
}

.c-result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 2em;
  border-bottom: 1px solid #E2E2E2;
}

@media screen and (max-width: 767px) {
  .c-result {
    display: inline;
  }
}

.c-result .c-result__image .c-trim:after {
  padding-bottom: 56.25%;
}

.c-result .c-result__left {
  width: 40%;
}

@media screen and (max-width: 767px) {
  .c-result .c-result__left {
    width: 100%;
  }
}

.c-result .c-result__left dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid #ddd;
  border-top: none;
}

.c-result .c-result__left dl dt {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 16px;
  font-size: 1.6rem;
  width: 30%;
  padding: 0.8em 0em 0.8em 0;
  background-color: #fff;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .c-result .c-result__left dl dt {
    padding: 0.5em 1em;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.c-result .c-result__left dl .title-top {
  background-color: #263B2D;
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
}

.c-result .c-result__left dl .title-top span {
  background-color: #0B3D91;
  padding: 0.2em 1em;
  font-size: 12px;
  font-size: 1.2rem;
  padding: 0.2em 1em;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .c-result .c-result__left dl .title-top span {
    padding: 0.2em 0.5em;
  }
}

.c-result .c-result__left dl .date-top {
  background-color: #263B2D;
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .c-result .c-result__left dl .date-top {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.c-result .c-result__left dl dd {
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: left;
  width: 70%;
  padding: 0.8em 1em;
  background-color: #fff;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .c-result .c-result__left dl dd {
    text-align: center;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.c-result .c-result__right {
  width: 40%;
}

@media screen and (max-width: 767px) {
  .c-result .c-result__right {
    width: 100%;
  }
}

.c-result .c-result__right dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid #ddd;
  border-top: none;
}

.c-result .c-result__right dl dt {
  font-size: 16px;
  font-size: 1.6rem;
  width: 30%;
  padding: 0.8em 0em 0.8em 0;
  background-color: #fff;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .c-result .c-result__right dl dt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.c-result .c-result__right dl .title-top {
  background-color: #F5C400;
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .c-result .c-result__right dl .title-top {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.c-result .c-result__right dl .title-top span {
  background-color: #E6BB5C;
  padding: 0.2em 1em;
  margin-bottom: 20px;
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
  .c-result .c-result__right dl .title-top span {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.c-result .c-result__right dl .date-top {
  background-color: #F5C400;
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .c-result .c-result__right dl .date-top {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.c-result .c-result__right dl dd {
  font-size: 16px;
  font-size: 1.6rem;
  width: 70%;
  padding: 0.8em 1em;
  background-color: #fff;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .c-result .c-result__right dl dd {
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
  }
}

.c-result .c-result__center {
  text-align: center;
  width: 20%;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .c-result .c-result__center {
    width: 100%;
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .c-result .c-result__center img {
    width: 30px;
    height: 30px;
  }
}

/* ==================================================
  無料相談／お問い合わせ／企業価値シミュレーション
================================================== */
.p-secret {
  font-size: 18px;
  font-size: 1.8rem;
  color: #000;
  font-weight: 600;
  background-color: #f9dd41;
  padding: 1.5em 0;
  text-align: center;
}

.p-secret p {
  font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: 400;
}

.p-contact .c-lead {
  text-align: center;
}

.p-contact .c-lead a {
  text-decoration: underline;
  color: #B33232;
}

.p-contact .c-tel {
  width: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid #E2E2E2;
  margin: 4em 0;
}

.p-contact .c-tel dt {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 280px;
  padding: 2em;
  background: linear-gradient(-45deg, #54b4bf 0%, #293187 60%);
  color: #ffffff;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .p-contact .c-tel dt {
    width: 100%;
    font-size: 18px;
    font-size: 1.8rem;
    padding: 1em;
  }
}

.p-contact .c-tel dt small {
  font-size: 0.9em;
  margin-top: 0.5em;
}

@media screen and (max-width: 767px) {
  .p-contact .c-tel dt small {
    margin-top: 0;
  }
}

.p-contact .c-tel dd {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 2em;
}

@media screen and (max-width: 767px) {
  .p-contact .c-tel dd {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    text-align: center;
    padding: 1em;
  }
  .p-contact .c-tel dd img {
    max-width: 80%;
  }
}

.p-contact .c-tel dd p {
  font-size: 16px;
  font-size: 1.6rem;
  color: #0B3D91;
  font-weight: 600;
  margin-bottom: 0.5em;
}

.p-contact .c-def-list {
  border: 1px solid #F5C400;
  background-color: #D1F0ED;
  text-align: left;
  padding: 40px 50px;
  margin: 4em 0;
}

@media screen and (max-width: 767px) {
  .p-contact .c-def-list {
    margin: 2em 0;
    padding: 2em;
  }
}

.p-contact .c-def-list dt {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid #F5C400;
}

@media screen and (max-width: 767px) {
  .p-contact .c-def-list dt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.p-contact .c-def-list dd {
  font-size: 16px;
  font-size: 1.6rem;
  position: relative;
  padding-left: 40px;
}

@media screen and (max-width: 767px) {
  .p-contact .c-def-list dd {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.p-contact .c-def-list dd:before, .p-contact .c-def-list dd:after {
  content: '';
  position: absolute;
  top: 50%;
}

.p-contact .c-def-list dd:before {
  left: 1px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  -webkit-transform-origin: top;
          transform-origin: top;
  border-left: 3px solid #F5C400;
  border-bottom: 3px solid #F5C400;
  width: 13px;
  height: 7px;
  z-index: 2;
}

.p-contact .c-def-list dd:after {
  width: 24px;
  height: 24px;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #F5C400;
  background-color: #ffffff;
  border-radius: 2px;
}

.p-contact .c-form input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]),
.p-contact .c-form select,
.p-contact .c-form textarea {
  border: 1px solid #E2E2E2;
  font-size: 16px;
  font-size: 1.6rem;
}

.p-contact .c-form input[type="radio"] + span:before {
  background-color: #E2E2E2;
}

.p-contact .c-form input[type="radio"] + span:after {
  background-color: #0B3D91;
}

.p-contact .c-form .required {
  background-color: #0B3D91;
  color: #ffffff;
  text-align: center;
  padding: 0.2em 0.8em;
  display: inline-block;
  font-size: 13px;
  font-size: 1.3rem;
}

.p-contact .c-form table {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  table-layout: fixed;
}

.p-contact .c-form table caption {
  text-align: left;
  background: #efefef;
  padding: 0.6em 1em;
  font-weight: 600;
  font-size: 2.0rem;
}

@media screen and (max-width: 767px) {
  .p-contact .c-form table caption {
    display: block;
    margin-bottom: 1em;
  }
}

.p-contact .c-form table th, .p-contact .c-form table td {
  padding: 1em 1.5em;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .p-contact .c-form table th, .p-contact .c-form table td {
    padding-left: 0;
    padding-right: 0;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.p-contact .c-form table th {
  width: 320px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .p-contact .c-form table th {
    padding: 0;
  }
}

.p-contact .c-form table th .required {
  float: right;
}

@media screen and (max-width: 767px) {
  .p-contact .c-form table th .required {
    float: none;
    margin-left: 1em;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.p-contact .c-form table td.industries p, .p-contact .c-form table td.area p {
  margin-bottom: 0.5em;
}

.p-contact .c-form table td.industries h3, .p-contact .c-form table td.area h3 {
  font-size: 16px;
  font-size: 1.6rem;
  margin-top: 1em;
  padding: 0.5em 1em;
  background-color: #efefef;
}

.p-contact .c-form table td.address .zip {
  margin-bottom: 0.5em;
}

.p-contact .c-form table td.address .zip .wpcf7-form-control-wrap {
  display: inline-block;
  width: 10em;
}

.p-contact .c-form table td.employees .wpcf7-form-control-wrap {
  display: inline-block;
}

.p-contact .c-form table td.employees .wpcf7-form-control-wrap input {
  width: 5em;
}

@media screen and (max-width: 767px) {
  .p-contact .c-form table tbody,
  .p-contact .c-form table tr,
  .p-contact .c-form table th,
  .p-contact .c-form table td {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: block;
  }
}

.p-contact input[type="submit"] {
  /* background-color: #f9dd41;*/
  font-size: 18px;
  font-size: 1.8rem;
  width: 100%;
  /* border-bottom: 3px solid #c4ab45;*/
  border-radius: 4px;
  max-width: 480px;
  padding: 0.8em 0;
  font-weight: 600;
  -webkit-transition: 0.16s cubic-bezier(0.17, 0.935, 0.305, 1);
  transition: 0.16s cubic-bezier(0.17, 0.935, 0.305, 1);
}

.p-contact input[type="submit"]:hover {
  opacity: 0.6;
}

.p-contact.simulation .c-form input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]),
.p-contact.simulation .c-form select,
.p-contact.simulation .c-form textarea {
  display: inline-block;
  max-width: 160px;
  margin-right: 0.5em;
}

.p-contact.simulation .c-form input[type="submit"] {
  background-color: #149187;
  border-bottom-color: #0E665F;
}

.p-contact.simulation .c-form table:nth-child(n+2) {
  margin-top: 4em;
}

.p-contact.simulation .c-form table caption {
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 0.95em;
  text-align: left;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .p-contact.simulation .c-form table caption {
    display: block;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.p-contact.simulation .c-form table th, .p-contact.simulation .c-form table td {
  border: 1px solid #E2E2E2;
}

@media screen and (max-width: 767px) {
  .p-contact.simulation .c-form table th, .p-contact.simulation .c-form table td {
    padding: 1em;
  }
}

.p-contact.simulation .c-form table th .c-note, .p-contact.simulation .c-form table td .c-note {
  display: block;
  margin-top: 0.5em;
  font-size: 0.8em;
}

@media screen and (max-width: 767px) {
  .p-contact.simulation .c-form table thead {
    display: none;
  }
}

.p-contact.simulation .c-form table thead th {
  background-color: #25857D;
  color: #ffffff;
  font-weight: 600;
}

.p-contact.simulation .c-form table tbody th {
  background-color: #f2f2f2;
}

.p-contact.simulation .c-form table.email {
  border-style: #F5C400;
  background-color: #D1F0ED;
}

.p-contact.simulation .c-form table.email th, .p-contact.simulation .c-form table.email td {
  background-color: unset;
  border: unset;
}

@media screen and (min-width: 768px) {
  .p-contact.simulation .c-form table.email th {
    padding-left: 60px;
  }
}

@media screen and (max-width: 767px) {
  .p-contact.simulation .c-form table.email th {
    text-align: center;
    padding-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-contact.simulation .c-form table.email td {
    padding-right: 60px;
  }
}

@media screen and (min-width: 768px) {
  .p-contact.simulation .c-form table.email tr:nth-child(1) th, .p-contact.simulation .c-form table.email tr:nth-child(1) td {
    padding-top: 60px;
  }
}

.p-contact.simulation .c-form table.email input[type="email"] {
  max-width: 480px !important;
}

.p-contact.simulation .c-form table.email .c-btn-box {
  margin-top: 0;
}

.p-contact.simulation .c-form table.email .c-btn-box input[type="submit"] {
  margin-top: 0;
}

.p-contact.subscription .c-form input[type="email"] {
  width: 100%;
}

.p-contact.subscription .c-form input[type="submit"] {
  background-color: #149187;
  border-bottom-color: #0E665F;
}

.p-magazine {
  background-color: #D1F0ED;
}

@media screen and (max-width: 767px) {
  .p-magazine .c-lead {
    text-align: left;
  }
}

.p-contact .c-tel .phone-area{
  margin-top: 1em;
}

.p-contact .c-tel .pbox{
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-contact .c-tel .pbox:not(:last-child){
  margin-bottom: 1em;
}

.p-contact .c-tel .pbox .ttl-box{
  width: 35%;
}

.p-contact .c-tel .pbox .img-box{
  width: 65%;
}

@media screen and (max-width: 767px) {
  .p-contact .c-tel .pbox{
    display: block;
  }

  .p-contact .c-tel .pbox .ttl-box{
    width: 100%;
    margin-bottom: 0.6em;
  }

  .p-contact .c-tel .pbox .img-box{
    width: 100%;
  }
}

/* ==================================================
  仲介会社
================================================== */
.p-intermediary .p-results-sort {
  background-color: #f2f2f2;
}

.p-intermediary .p-results-sort h4 {
  padding: 0;
}

@media screen and (max-width: 767px) {
  .p-intermediary .p-results-sort h4 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.p-intermediary .p-results-sort [data-sf-field-input-type="checkbox"] ul li.sf-level-0 {
  padding: 1em 0 0;
  background-color: #0B3D91;
  margin-bottom: 0;
}

.p-intermediary .p-results-sort [data-sf-field-input-type="checkbox"] ul li.sf-level-0 > label {
  padding-left: 30px;
  margin-left: 2em;
  font-weight: 600;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .p-intermediary .p-results-sort [data-sf-field-input-type="checkbox"] ul li.sf-level-0 > label {
    margin-left: 1em;
  }
}

.p-intermediary .p-results-sort [data-sf-field-input-type="checkbox"] ul li.sf-level-0 ul {
  background-color: #ffffff;
  padding: 0.5em 2em;
  margin: 1em 0 0;
}

@media screen and (max-width: 767px) {
  .p-intermediary .p-results-sort [data-sf-field-input-type="checkbox"] ul li.sf-level-0 ul {
    padding: 0.5em 1em;
  }
}

.p-intermediary .p-results-sort [data-sf-field-input-type="checkbox"] ul li.sf-level-0 ul li {
  display: inline-block;
  margin: 0 1em 0.5em 0;
}

.p-intermediary .p-results-sort [data-sf-field-input-type="checkbox"] ul li.sf-level-0 ul li label {
  padding-left: 30px;
}

.p-intermediary .p-results-sort input[type="submit"] {
  background-color: #149187;
  border-bottom-color: #0E665F;
  max-width: 480px;
  padding: 1em 2em;
}

.p-intermediary .p-results-sort input[type="submit"].search-filter-reset {
  background-color: #ddd;
  border-bottom: none;
  color: #000;
  font-size: 1.4rem;
  max-width: 200px;
  text-align: center;
  border-radius: 0;
}

.p-intermediary .p-results-sort .sf-field-search label,
.p-intermediary .p-results-sort .sf-field-search input[type="text"] {
  width: 100%;
}

.p-intermediary .p-results-sort .sf-field-taxonomy-achievements,
.p-intermediary .p-results-sort .sf-field-taxonomy-transaction,
.p-intermediary .p-results-sort .sf-field-taxonomy-sales,
.p-intermediary .p-results-sort .sf-field-taxonomy-desired {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-intermediary .p-results-sort .sf-field-taxonomy-achievements,
  .p-intermediary .p-results-sort .sf-field-taxonomy-transaction,
  .p-intermediary .p-results-sort .sf-field-taxonomy-sales,
  .p-intermediary .p-results-sort .sf-field-taxonomy-desired {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-intermediary .p-results-sort .sf-field-taxonomy-achievements h4,
.p-intermediary .p-results-sort .sf-field-taxonomy-transaction h4,
.p-intermediary .p-results-sort .sf-field-taxonomy-sales h4,
.p-intermediary .p-results-sort .sf-field-taxonomy-desired h4 {
  width: 200px;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .p-intermediary .p-results-sort .sf-field-taxonomy-achievements h4,
  .p-intermediary .p-results-sort .sf-field-taxonomy-transaction h4,
  .p-intermediary .p-results-sort .sf-field-taxonomy-sales h4,
  .p-intermediary .p-results-sort .sf-field-taxonomy-desired h4 {
    width: 100%;
  }
}

.p-intermediary .p-results-sort .sf-field-taxonomy-achievements > ul,
.p-intermediary .p-results-sort .sf-field-taxonomy-transaction > ul,
.p-intermediary .p-results-sort .sf-field-taxonomy-sales > ul,
.p-intermediary .p-results-sort .sf-field-taxonomy-desired > ul {
  width: calc( 100% - 200px);
  background-color: #ffffff !important;
  border-radius: 4px;
  padding: 1em 2em;
}

@media screen and (max-width: 767px) {
  .p-intermediary .p-results-sort .sf-field-taxonomy-achievements > ul,
  .p-intermediary .p-results-sort .sf-field-taxonomy-transaction > ul,
  .p-intermediary .p-results-sort .sf-field-taxonomy-sales > ul,
  .p-intermediary .p-results-sort .sf-field-taxonomy-desired > ul {
    width: 100%;
  }
}

.p-intermediary .p-results-sort .sf-field-taxonomy-achievements > ul li.sf-level-0,
.p-intermediary .p-results-sort .sf-field-taxonomy-transaction > ul li.sf-level-0,
.p-intermediary .p-results-sort .sf-field-taxonomy-sales > ul li.sf-level-0,
.p-intermediary .p-results-sort .sf-field-taxonomy-desired > ul li.sf-level-0 {
  display: inline-block;
  background-color: #efefef;
  border: 1px solid #dedede;
  padding: 0.5em 0.8em;
  border-radius: 2px;
  margin: 0.5em 1em 0.5em 0;
}

.p-intermediary .p-results-sort .sf-field-taxonomy-achievements > ul li.sf-level-0 > label,
.p-intermediary .p-results-sort .sf-field-taxonomy-transaction > ul li.sf-level-0 > label,
.p-intermediary .p-results-sort .sf-field-taxonomy-sales > ul li.sf-level-0 > label,
.p-intermediary .p-results-sort .sf-field-taxonomy-desired > ul li.sf-level-0 > label {
  color: #040102;
  margin-left: 0;
}

.p-intermediary .p-results-sort .c-sort.administrator .sf-field-taxonomy-achievements,
.p-intermediary .p-results-sort .c-sort.administrator .sf-field-taxonomy-transaction,
.p-intermediary .p-results-sort .c-sort.administrator .sf-field-taxonomy-sales,
.p-intermediary .p-results-sort .c-sort.administrator .sf-field-taxonomy-desired {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-intermediary .p-results-list li {
  padding-bottom: 30px;
  border-bottom: 1px solid #f2f2f2;
}

.p-intermediary .p-results-list li:nth-of-type(n+2) {
  margin-top: 30px;
}

.p-intermediary .p-results-list li a {
  display: block;
  color: #040102;
}

.p-intermediary .p-results-list li a:hover {
  opacity: 0.56;
}

.p-intermediary .p-results-list li .c-box {
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-intermediary .p-results-list li .c-box:first-child {
  margin-bottom: 1.5em;
}

.p-intermediary .p-results-list li .c-media {
  max-width: 240px;
  margin-right: 40px;
}

@media screen and (max-width: 767px) {
  .p-intermediary .p-results-list li .c-media {
    margin: 0 auto 2em;
  }
}

.p-intermediary .p-results-list li .c-media:after {
  padding-bottom: 60%;
}

.p-intermediary .p-results-list li .c-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (max-width: 767px) {
  .p-intermediary .p-results-list li .c-text {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    width: 100%;
  }
}

.p-intermediary .p-results-list li .c-text .c-title {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .p-intermediary .p-results-list li .c-text .c-title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.p-intermediary .p-results-list li .c-text .c-def-list dt {
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 0.5em;
}

.p-intermediary .p-results-list li .c-text .c-def-list dd span:not(:last-child):after {
  content: ', ';
}

.p-intermediary .p-results-list li .c-text .c-desc {
  font-size: 14px;
  font-size: 1.4rem;
}

.p-intermediary .p-results-list li table {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (max-width: 767px) {
  .p-intermediary .p-results-list li table {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}

.p-intermediary .p-results-list li table th {
  width: 6em;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .p-intermediary .p-results-list li table th {
    margin: 1em 0 0.5em;
  }
}

.p-intermediary .p-results-list li table td span {
  display: inline-block;
  padding: 0.1em 0.8em;
  border: 1px solid #040102;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0 0.5em 0.5em 0;
}

@media screen and (max-width: 767px) {
  .p-intermediary .p-results-list li table tr,
  .p-intermediary .p-results-list li table th,
  .p-intermediary .p-results-list li table td {
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.p-intermediary .p-results-list li .c-btn-box {
  margin-left: 40px;
  max-width: 225px;
}

.p-intermediary .p-results-list li .c-btn-box .c-btn, .p-intermediary .p-results-list li .c-btn-box .c-sort input[type=submit], .c-sort .p-intermediary .p-results-list li .c-btn-box input[type=submit],
.p-intermediary .p-results-list li .c-btn-box .c-form input[type=submit], .c-form .p-intermediary .p-results-list li .c-btn-box input[type=submit], .p-intermediary .p-results-list li .c-btn-box .p-contact.subscription .c-form input[type="submit"], .p-contact.subscription .c-form .p-intermediary .p-results-list li .c-btn-box input[type="submit"] {
  margin-top: 0.5em;
}

@media screen and (max-width: 767px) {
  .p-intermediary .p-results-list li .c-btn-box .c-btn, .p-intermediary .p-results-list li .c-btn-box .c-sort input[type=submit], .c-sort .p-intermediary .p-results-list li .c-btn-box input[type=submit],
  .p-intermediary .p-results-list li .c-btn-box .c-form input[type=submit], .c-form .p-intermediary .p-results-list li .c-btn-box input[type=submit], .p-intermediary .p-results-list li .c-btn-box .p-contact.subscription .c-form input[type="submit"], .p-contact.subscription .c-form .p-intermediary .p-results-list li .c-btn-box input[type="submit"] {
    margin-top: 1em;
  }
}

@media screen and (max-width: 767px) {
  .p-intermediary .p-results-list li .c-btn-box {
    margin-left: 0;
    max-width: 100%;
    width: 100%;
  }
}

.p-intermediary .p-results-list li.pickup {
  position: relative;
}

.p-intermediary .p-results-list li.pickup:before {
  position: absolute;
  top: 8px;
  left: 8px;
  content: 'オススメ';
  color: #fff;
  background-color: #0B3D91;
  text-align: center;
  padding: 0.3em 1em;
  z-index: 10;
  font-weight: 600;
  font-size: 0.8em;
  border-radius: 0.2em;
}

/* ==================================================
  解説動画
================================================== */
.p-interview-slider {
  overflow: visible;
}

.p-interview-slider .swiper-slide {
  width: 100%;
  max-width: 100% !important;
  margin-top: 0 !important;
}

.p-interview-slider .swiper-slide .c-media:after {
  padding-bottom: 49.38%;
}

.p-interview-slider .swiper-slide .c-text {
  padding-top: 0 !important;
}

@media screen and (max-width: 767px) {
  .p-interview-slider .swiper-slide .c-text {
    padding-top: 4em !important;
  }
}

.p-interview-slider .swiper-slide .c-info {
  position: relative !important;
  top: -0.8em !important;
  padding-right: 10em;
}

@media screen and (max-width: 767px) {
  .p-interview-slider .swiper-slide .c-info {
    bottom: calc( 100% - 3em) !important;
  }
}

.p-interview-slider .swiper-slide .c-icon {
  width: 6em;
}

.p-interview-slider .swiper-slide .c-excerpt {
  margin-top: 0 !important;
}

.p-interview-slider .swiper-control {
  position: absolute;
  right: 100%;
  bottom: 0;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: 160px;
  background-color: #263B2D;
  z-index: 300;
  color: #ffffff;
}

@media screen and (max-width: 991px) {
  .p-interview-slider .swiper-control {
    position: static;
    height: 80px;
  }
}

@media screen and (max-width: 991px) {
  .p-interview-slider .swiper-control {
    width: 100%;
  }
}

.p-interview-slider .swiper-control .c-container {
  padding: 5%;
  height: 100%;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.p-interview-slider .swiper-control .swiper-pagination-bullet {
  background-color: #ffffff;
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  cursor: pointer;
}

.p-interview-slider .swiper-control .swiper-pagination-bullet-active {
  background-color: #0B3D91;
}

.p-interview-slider .swiper-control [class^="swiper-button"] {
  cursor: pointer;
}

.p-interview .c-category {
  font-size: 11px;
  font-size: 1.1rem;
  background-color: #040102;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  padding: 0.6em 1.2em;
  margin-right: 0.5em;
  display: inline-block;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 767px) {
  .p-interview .c-category {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.p-interview .c-title,
.p-interview .c-post-title {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 600;
}

.p-interview .c-date {
  display: block;
  margin-bottom: 0.5em;
  color: #149187;
  font-weight: 600;
}

.p-interview-sort .sf-field-taxonomy-youtube_cat > ul {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: wrap;
          flex-direction: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.p-interview-sort .sf-field-taxonomy-youtube_cat > ul > li {
  display: inline-block;
  padding: 0.2em 0.8em;
  background-color: #eee;
  margin: 0 0.8em 0.8em 0;
}

.p-interview-slider, .p-interview-list {
  width: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-interview-slider .swiper-slide,
.p-interview-slider li, .p-interview-list .swiper-slide,
.p-interview-list li {
  background-color: #efefef;
}

.p-interview-slider .swiper-slide a,
.p-interview-slider li a, .p-interview-list .swiper-slide a,
.p-interview-list li a {
  display: block;
  color: #040102;
}

.p-interview-slider .swiper-slide a:hover,
.p-interview-slider li a:hover, .p-interview-list .swiper-slide a:hover,
.p-interview-list li a:hover {
  opacity: 1;
  color: #0B3D91;
}

.p-interview-slider .swiper-slide a:hover .c-media img,
.p-interview-slider li a:hover .c-media img, .p-interview-list .swiper-slide a:hover .c-media img,
.p-interview-list li a:hover .c-media img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0.8;
}

.p-interview-slider .swiper-slide a:hover .c-info .c-icon,
.p-interview-slider li a:hover .c-info .c-icon, .p-interview-list .swiper-slide a:hover .c-info .c-icon,
.p-interview-list li a:hover .c-info .c-icon {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.p-interview-slider .swiper-slide .c-media,
.p-interview-slider li .c-media, .p-interview-list .swiper-slide .c-media,
.p-interview-list li .c-media {
  background-color: #000;
  overflow: hidden;
}

.p-interview-slider .swiper-slide .c-media:after,
.p-interview-slider li .c-media:after, .p-interview-list .swiper-slide .c-media:after,
.p-interview-list li .c-media:after {
  padding-bottom: 56.25%;
}

.p-interview-slider .swiper-slide .c-media img,
.p-interview-slider li .c-media img, .p-interview-list .swiper-slide .c-media img,
.p-interview-list li .c-media img {
  -webkit-transition: 0.4s cubic-bezier(0.17, 0.935, 0.305, 1);
  transition: 0.4s cubic-bezier(0.17, 0.935, 0.305, 1);
}

.p-interview-slider .swiper-slide .c-text,
.p-interview-slider li .c-text, .p-interview-list .swiper-slide .c-text,
.p-interview-list li .c-text {
  position: relative;
  padding: 1.5em;
  font-size: 13px;
  font-size: 1.3rem;
}

.p-interview-slider .swiper-slide .c-icon,
.p-interview-slider li .c-icon, .p-interview-list .swiper-slide .c-icon,
.p-interview-list li .c-icon {
  position: absolute;
  right: 0;
  top: 2em;
  z-index: 10;
  width: 3em;
  -webkit-transition: 1.2s cubic-bezier(0.17, 0.935, 0.305, 1);
  transition: 1.2s cubic-bezier(0.17, 0.935, 0.305, 1);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transform-origin: center;
          transform-origin: center;
}

@media screen and (min-width: 992px) {
  .p-interview-slider .swiper-slide .c-icon,
  .p-interview-slider li .c-icon, .p-interview-list .swiper-slide .c-icon,
  .p-interview-list li .c-icon {
    display: none;
  }
}

.p-interview-slider .swiper-slide .c-icon img,
.p-interview-slider li .c-icon img, .p-interview-list .swiper-slide .c-icon img,
.p-interview-list li .c-icon img {
  display: block;
  width: 100%;
}

.p-interview-slider li, .p-interview-list li {
  width: calc( 25% - 12px);
}

@media screen and (max-width: 991px) {
  .p-interview-slider li, .p-interview-list li {
    width: calc( 50% - 8px);
    max-width: 600px;
  }
}

@media screen and (min-width: 992px) {
  .p-interview-slider li:not(:nth-child(4n)), .p-interview-list li:not(:nth-child(4n)) {
    margin-right: 16px;
  }
}

@media screen and (max-width: 991px) {
  .p-interview-slider li:not(:nth-child(even)), .p-interview-list li:not(:nth-child(even)) {
    margin-right: 16px;
  }
}

@media screen and (min-width: 992px) {
  .p-interview-slider li:nth-child(n+5), .p-interview-list li:nth-child(n+5) {
    margin-top: 40px;
  }
}

@media screen and (max-width: 991px) {
  .p-interview-slider li:nth-child(n+3), .p-interview-list li:nth-child(n+3) {
    margin-top: 40px;
  }
}

@media screen and (max-width: 479px) {
  .p-interview-slider li, .p-interview-list li {
    width: 100%;
  }
  .p-interview-slider li:nth-of-type(n+2), .p-interview-list li:nth-of-type(n+2) {
    margin-top: 2em;
  }
}

.p-interview-list.first .post {
  width: 100%;
}

.p-interview-list .post .c-media:after {
  padding-bottom: 56.25%;
}

.p-interview-related {
  width: 300px;
  margin-left: 40px;
  /*-
  h2{
    @include font-size(1.6);
    text-align: center;
    font-weight: 600;
    padding: 1em;
    background-color: #D1F0ED;
  }
  -*/
}

@media screen and (max-width: 991px) {
  .p-interview-related {
    width: 100%;
    margin-left: 0;
    padding-top: 4em;
  }
}

@media screen and (max-width: 991px) {
  .p-interview-related .p-interview-list {
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

@media screen and (max-width: 767px) {
  .p-interview-related .p-interview-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-interview-related .p-interview-list li {
  width: 100%;
  margin: 0;
}

@media screen and (max-width: 991px) {
  .p-interview-related .p-interview-list li:nth-child(1) {
    margin-top: 2em;
  }
}

@media screen and (max-width: 767px) {
  .p-interview-related .p-interview-list li:nth-child(1) {
    margin-top: 0;
  }
}

.p-interview-related .p-interview-list li:nth-child(n+2) {
  margin-top: 2em;
}

.p-interview-related .p-interview-list li .c-text {
  padding: 0;
}

.p-interview-related .p-interview-list li .c-info {
  position: relative;
  top: -1em;
  padding: 0 2em 0 0;
}

.p-interview-related .p-interview-list li .c-category {
  font-size: 12px;
  font-size: 1.2rem;
}

.p-interview-related .p-interview-list li .c-title {
  font-size: 14px;
  font-size: 1.4rem;
}

.p-interview-related .p-interview-list li .c-icon {
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.p-interview-related .p-interview-list li .c-excerpt {
  padding: 0 1em 1em;
  font-size: 13px;
  font-size: 1.3rem;
}

/* ==================================================
  single.php
================================================== */
.c-post {
  font-size: 16px;
  font-size: 1.6rem;
}

.c-post .c-sub__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 2em 0 3em 0;
}

.c-post .c-sub__box .c-date {
  font-size: 16px;
  font-size: 1.6rem;
}

.c-post .c-sub__box .c-category {
  padding-left: 20px;
}

.c-post .c-sub__box .c-category span {
  background-color: #0B3D91;
  color: #fff;
  padding: 4px 4px;
  margin-bottom: 20px;
  font-size: 13px;
  font-size: 1.3rem;
}

.c-post:not(.intermediary):not(.interview):not(.trend) .c-media {
  position: relative;
  width: 100%;
  padding-bottom: 60px;
  margin-bottom: 40px;
}

.c-post:not(.intermediary):not(.interview):not(.trend) .c-media img {
  position: relative;
  z-index: 2;
  max-width: 670px;
  display: block;
  margin: 0 auto 0 0;
}

@media screen and (max-width: 767px) {
  .c-post:not(.intermediary):not(.interview):not(.trend) .c-media img {
    width: 100%;
    height: auto;
  }
}

.c-post:not(.intermediary):not(.interview):not(.trend) .c-media:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 144px;
  width: 100%;
  background: #ffffff;
  background: -webkit-gradient(linear, left top, right top, color-stop(57%, #ffffff), color-stop(57%, #263b2d), to(#263b2d));
  background: linear-gradient(to right, #ffffff 57%, #263b2d 57%, #263b2d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#263b2d',GradientType=1 );
}

@media screen and (max-width: 767px) {
  .c-post:not(.intermediary):not(.interview):not(.trend) .c-media:before {
    width: 100%;
  }
}

.c-post.intermediary .c-post-title {
  text-align: left;
}

.c-post.intermediary .c-post-header {
  margin-bottom: 2em;
}

.c-post.intermediary .c-post-header .c-def-list {
  font-size: 14px;
  font-size: 1.4rem;
}

.c-post.intermediary .c-post-header .c-def-list dt {
  font-weight: 600;
  margin-bottom: 0.5em;
}

.c-post.intermediary .c-post-header .c-def-list dd .c-tag {
  display: inline-block;
  padding: 0.1em 1em;
  margin: 0 0.5em 0.5em 0;
  background-color: #0B3D91;
  color: #ffffff;
  text-align: center;
  font-size: 13px;
  font-size: 1.3rem;
}

.c-post.intermediary .entry-content .c-media {
  width: 440px;
  max-width: 40%;
  float: right;
  margin-left: 2em;
  margin-bottom: 2em;
}

@media screen and (max-width: 767px) {
  .c-post.intermediary .entry-content .c-media {
    float: none;
    margin: 0 auto 2em;
    max-width: 100%;
  }
}

.c-post.intermediary .p-intermediary-points ol {
  counter-reset: number 0;
}

.c-post.intermediary .p-intermediary-points ol li {
  color: #2B2E57;
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.c-post.intermediary .p-intermediary-points ol li:nth-of-type(n+2) {
  margin-top: 1em;
}

.c-post.intermediary .p-intermediary-points ol li:before {
  counter-increment: number 1;
  content: "ポイント" counter(number);
  display: block;
  border: 1px solid #0B3D91;
  color: #0B3D91;
  text-align: center;
  padding: 0.2em 0;
  max-width: 200px;
  width: 100%;
  margin-right: 1em;
}

@media screen and (max-width: 767px) {
  .c-post.intermediary .p-intermediary-points ol li:before {
    max-width: 8em;
  }
}

.c-post.intermediary .p-related .p-results-list {
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-post.intermediary .p-related .p-results-item {
  width: calc( 16.6666% - 10px);
}

.c-post.intermediary .p-related .p-results-item:not(:nth-child(4n)) {
  margin-right: 12px;
}

.c-post.intermediary .p-related .p-results-item a {
  color: #040102;
}

.c-post.intermediary .p-related .p-results-item .c-text {
  margin-top: 1em;
}

.c-post.intermediary .p-related .p-results-item .c-title {
  font-size: 16px;
  font-size: 1.6rem;
}

.c-post.intermediary .p-related .p-results-item .c-desc {
  font-size: 13px;
  font-size: 1.3rem;
}

.c-post.interview .embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.c-post.interview .embed-container iframe,
.c-post.interview .embed-container object,
.c-post.interview .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-post.interview .c-post-header {
  width: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 2em 0 4em;
  padding-bottom: 2em;
  border-bottom: 2px solid #e2e2e2;
}

@media screen and (max-width: 767px) {
  .c-post.interview .c-post-header {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.c-post.interview .l-container {
  width: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-post.interview .p-interview-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.c-post.trend .c-post-title {
  border-bottom: 1px solid #eee;
  padding-bottom: 1em;
}

.c-post.trend .c-media {
  text-align: center;
  margin-bottom: 2em;
}

.c-post.trend .p-trend-def h2 {
  display: inline-block;
  color: #0B3D91;
  border: 1px solid #0B3D91;
  border-radius: 4px;
  padding: 0.5em 1em;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
}

.c-post.trend .p-trend-info {
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 2em;
}

.c-post.trend .p-trend-info .p-trend-market {
  width: 48%;
  background-color: #149187;
  padding: 2em;
  text-align: center;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .c-post.trend .p-trend-info .p-trend-market {
    width: 100%;
  }
}

.c-post.trend .p-trend-info .p-trend-market h3 {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5em;
}

.c-post.trend .p-trend-info .p-trend-market .p-price {
  width: 100%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.c-post.trend .p-trend-info .p-trend-market .p-price img {
  margin-right: 0.5em;
}

.c-post.trend .p-trend-info .p-trend-market .p-price span {
  font-size: 1.46em;
  line-height: 1.2;
  margin: 0 0.2em;
}

.c-post.trend .p-trend-info .p-trend-market .p-compared {
  border-top: 1px solid #fff;
  padding-top: 0.8em;
  margin-top: 0.8em;
  font-size: 17px;
  font-size: 1.7rem;
}

.c-post.trend .p-trend-info .p-trend-share {
  width: 48%;
}

@media screen and (max-width: 767px) {
  .c-post.trend .p-trend-info .p-trend-share {
    width: 100%;
    margin-top: 2em;
  }
}

.c-post.trend .p-trend-info .p-trend-share h3 {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
}

.c-post.trend .p-trend-info .p-trend-share ul li {
  padding: 0.8em 1em;
  background-color: #eee;
}

.c-post.trend .p-trend-info .p-trend-share ul li:nth-child(n+2) {
  margin-top: 6px;
}

.c-post.trend .p-trend-info .p-trend-share ul li dl {
  width: 100%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.c-post.trend .p-trend-info .p-trend-share ul li dl dt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.c-post.trend .p-trend-info .p-trend-share ul li dl dd {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 8em;
  text-align: right;
}

.c-post.trend .entry-content h3 {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  padding: 0.8em;
  background-color: #eee;
  color: #040102 !important;
  font-weight: 600;
}

.c-post .p-intermediary-info .c-table {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  table-layout: fixed;
}

.c-post .p-intermediary-info .c-table tr th,
.c-post .p-intermediary-info .c-table tr td {
  padding: 1em 1.5em;
  border-bottom: 1px solid #e2e2e2;
}

.c-post .p-intermediary-info .c-table tr th {
  width: 314px;
  background-color: #f2f2f2;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .c-post .p-intermediary-info .c-table tr th {
    width: 8em;
  }
}

.c-post .c-post__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2em 0;
}

.c-post .c-post__box .c-post__box__left {
  margin: auto 0;
}

.c-post .c-post__box .c-post__box__left .c-trim {
  width: 350px;
  position: relative;
  overflow: hidden;
  height: 220px;
}

.c-post .c-post__box .c-post__box__left .c-trim .c-trim__inner {
  position: absolute !important;
  width: 100%;
  height: 100%;
}

.c-post .c-post__box .c-post__box__left .c-trim .c-trim__inner .c-trim__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

.c-post .c-post__box .c-post__box__right {
  padding-left: 2em;
}

.c-post .c-post__box .c-post__box__right p {
  font-size: 15px;
  font-size: 1.5rem;
}

.c-post .c-post-desc {
  font-size: 15px;
  font-size: 1.5rem;
  padding: 1em 0;
}

@media screen and (max-width: 767px) {
  .c-post .c-post-desc {
    padding: 0.5m 0;
  }
}

.c-post .pagenavi {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 5em 0;
}

@media screen and (max-width: 767px) {
  .c-post .pagenavi {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin: 3em 0;
  }
}

.c-post .pagenavi .c-btn, .c-post .pagenavi .c-sort input[type=submit], .c-sort .c-post .pagenavi input[type=submit],
.c-post .pagenavi .c-form input[type=submit], .c-form .c-post .pagenavi input[type=submit], .c-post .pagenavi .p-contact.subscription .c-form input[type="submit"], .p-contact.subscription .c-form .c-post .pagenavi input[type="submit"] {
  padding: 0.8em;
  color: #040102;
  border-color: #040102;
  width: 100%;
  max-width: 100%;
  margin-top: 0;
}

.c-post .pagenavi .c-btn:hover, .c-post .pagenavi .c-sort input:hover[type=submit], .c-sort .c-post .pagenavi input:hover[type=submit],
.c-post .pagenavi .c-form input:hover[type=submit], .c-form .c-post .pagenavi input:hover[type=submit], .c-post .pagenavi .p-contact.subscription .c-form input:hover[type="submit"], .p-contact.subscription .c-form .c-post .pagenavi input:hover[type="submit"] {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .c-post .pagenavi .c-btn, .c-post .pagenavi .c-sort input[type=submit], .c-sort .c-post .pagenavi input[type=submit],
  .c-post .pagenavi .c-form input[type=submit], .c-form .c-post .pagenavi input[type=submit], .c-post .pagenavi .p-contact.subscription .c-form input[type="submit"], .p-contact.subscription .c-form .c-post .pagenavi input[type="submit"] {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.c-post .pagenavi .c-btn:after, .c-post .pagenavi .c-sort input[type=submit]:after, .c-sort .c-post .pagenavi input[type=submit]:after,
.c-post .pagenavi .c-form input[type=submit]:after, .c-form .c-post .pagenavi input[type=submit]:after, .c-post .pagenavi .p-contact.subscription .c-form input[type="submit"]:after, .p-contact.subscription .c-form .c-post .pagenavi input[type="submit"]:after {
  position: absolute;
  top: 50%;
  content: '';
  width: 0.4em;
  height: 0.4em;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.c-post .pagenavi .back {
  max-width: 48%;
}

@media screen and (max-width: 767px) {
  .c-post .pagenavi .back {
    margin-right: auto;
  }
}

.c-post .pagenavi .back .c-btn, .c-post .pagenavi .back .c-sort input[type=submit], .c-sort .c-post .pagenavi .back input[type=submit],
.c-post .pagenavi .back .c-form input[type=submit], .c-form .c-post .pagenavi .back input[type=submit], .c-post .pagenavi .back .p-contact.subscription .c-form input[type="submit"], .p-contact.subscription .c-form .c-post .pagenavi .back input[type="submit"] {
  padding-left: 2.8em;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .c-post .pagenavi .back .c-btn, .c-post .pagenavi .back .c-sort input[type=submit], .c-sort .c-post .pagenavi .back input[type=submit],
  .c-post .pagenavi .back .c-form input[type=submit], .c-form .c-post .pagenavi .back input[type=submit], .c-post .pagenavi .back .p-contact.subscription .c-form input[type="submit"], .p-contact.subscription .c-form .c-post .pagenavi .back input[type="submit"] {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.c-post .pagenavi .back .c-btn:after, .c-post .pagenavi .back .c-sort input[type=submit]:after, .c-sort .c-post .pagenavi .back input[type=submit]:after,
.c-post .pagenavi .back .c-form input[type=submit]:after, .c-form .c-post .pagenavi .back input[type=submit]:after, .c-post .pagenavi .back .p-contact.subscription .c-form input[type="submit"]:after, .p-contact.subscription .c-form .c-post .pagenavi .back input[type="submit"]:after {
  right: auto;
  left: 1.3em;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
}

.c-post .pagenavi .next {
  max-width: 48%;
}

@media screen and (max-width: 767px) {
  .c-post .pagenavi .next {
    margin-left: auto;
  }
}

.c-post .pagenavi .next .c-btn, .c-post .pagenavi .next .c-sort input[type=submit], .c-sort .c-post .pagenavi .next input[type=submit],
.c-post .pagenavi .next .c-form input[type=submit], .c-form .c-post .pagenavi .next input[type=submit], .c-post .pagenavi .next .p-contact.subscription .c-form input[type="submit"], .p-contact.subscription .c-form .c-post .pagenavi .next input[type="submit"] {
  padding-right: 2.8em;
  text-align: right;
}

.c-post .pagenavi .next .c-btn:after, .c-post .pagenavi .next .c-sort input[type=submit]:after, .c-sort .c-post .pagenavi .next input[type=submit]:after,
.c-post .pagenavi .next .c-form input[type=submit]:after, .c-form .c-post .pagenavi .next input[type=submit]:after, .c-post .pagenavi .next .p-contact.subscription .c-form input[type="submit"]:after, .p-contact.subscription .c-form .c-post .pagenavi .next input[type="submit"]:after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.c-post .c-heading-02, .c-post .p-intermediary .p-results-sort h4, .p-intermediary .p-results-sort .c-post h4, .c-post .p-ma-merit .c-container ul.heart:before, .p-ma-merit .c-container .c-post ul.heart:before, .c-post .p-ma-merit .c-container ul.sander:before, .p-ma-merit .c-container .c-post ul.sander:before, .c-post .p-ma-trend .c-reading dl dt, .p-ma-trend .c-reading dl .c-post dt, .c-post .p-ma-trend .p-ma-lead p dl dt, .p-ma-trend .p-ma-lead p dl .c-post dt, .c-post .p-ma-lead .p-ma-trend p dl dt, .p-ma-lead .p-ma-trend p dl .c-post dt {
  border: none;
  font-weight: bold;
}

.c-post .p-post-recommend {
  margin-top: 2em;
}

.c-post .c-post__list {
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media screen and (max-width: 767px) {
  .c-post .c-post__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.c-post .c-post__list .c-post__list__box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
}

@media screen and (max-width: 767px) {
  .c-post .c-post__list .c-post__list__box {
    -webkit-box-flex: 0;
        -ms-flex: 0 auto;
            flex: 0 auto;
    width: calc( 50% - 5px);
  }
}

@media screen and (min-width: 768px) {
  .c-post .c-post__list .c-post__list__box:not(:last-child) {
    margin-right: 25px;
  }
}

@media screen and (max-width: 767px) {
  .c-post .c-post__list .c-post__list__box:nth-child(n+3) {
    margin-top: 2em;
  }
}

.c-post .c-post__list .c-post__list__box .c-trim {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.c-post .c-post__list .c-post__list__box .c-trim:after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 64%;
}

.c-post .c-post__list .c-post__list__box .c-trim .c-trim__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-post .c-post__list .c-post__list__box .c-trim .c-trim__inner img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

.c-post .c-post__list .c-post__list__box h3 {
  font-size: 15px;
  font-size: 1.5rem;
  max-width: 200px;
  border: none;
  padding: 1.2em 0 1em 0;
  margin: 0;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .c-post .c-post__list .c-post__list__box h3 {
    max-width: none;
  }
}

.c-post .c-post__list .c-post__list__box p {
  font-size: 14px;
  font-size: 1.4rem;
  max-width: 200px;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .c-post .c-post__list .c-post__list__box p {
    max-width: none;
  }
}

@media screen and (min-width: 768px) {
  .c-post .c-post__list .c-post__list__box:not(:nth-child(4)) {
    margin-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .c-post .c-post__list .c-post__list__box:not(:nth-child(2n)) {
    margin-right: 10px;
  }
}

/* ==================================================
  M&Aについて
================================================== */
.p-ma .c-reading, .p-ma .p-ma-lead p, .p-ma-lead .p-ma p {
  max-width: 880px;
}

.p-ma .c-reading h2, .p-ma .p-ma-lead p h2, .p-ma-lead .p-ma p h2 {
  font-size: 18px;
  font-size: 1.8rem;
}

.p-ma .c-reading h2:nth-child(n+2), .p-ma .p-ma-lead p h2:nth-child(n+2), .p-ma-lead .p-ma p h2:nth-child(n+2) {
  margin-top: 2em;
}

.p-ma-lead .c-heading-05 {
  text-align: left;
}

.p-ma-lead p {
  text-align: left;
  line-height: 2;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .p-ma-lead p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.p-ma-content {
  position: relative;
  padding-top: 15.625vw;
}

.p-ma-content:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  padding-bottom: 32.4vw;
}

@media screen and (max-width: 767px) {
  .p-ma-content:before {
    padding-bottom: 64.8vw;
  }
}

.p-ma-content .c-box {
  position: relative;
  z-index: 2;
  max-width: 750px;
  color: #ffffff;
  padding: 5em;
}

@media screen and (max-width: 991px) {
  .p-ma-content .c-box {
    padding: 2em;
  }
}

.p-ma-content .c-box .c-heading-building {
  position: relative;
  text-align: left;
  padding-left: 3em;
}

.p-ma-content .c-box .c-heading-building:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 2em;
  height: 2em;
  background-image: url(../images/icon/icon-bulding.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.p-ma-content .c-box dl dt {
  font-weight: 600;
}

.p-ma-content .c-box dl:nth-child(n+2) dt {
  margin-top: 1.5em;
}

.p-ma-content .c-reading, .p-ma-content .p-ma-lead p, .p-ma-lead .p-ma-content p {
  margin: 4em auto 0;
}

.p-ma-content.purpose:before {
  background-image: url(../images/ma/ma_cover_1.png);
  background-position: center;
  background-repeat: no-repeat;
}

.p-ma-content.purpose .c-box {
  background: #0B3D91;
  margin-left: auto;
}

.p-ma-content.market:before {
  background-image: url(../images/ma/ma_cover_2.png);
  background-position: center;
  background-repeat: no-repeat;
}

.p-ma-content.market .c-box {
  background: #263B2D;
  margin-right: auto;
}

.p-ma-content.market .c-box .c-heading-building {
  font-size: 38px;
  font-size: 3.8rem;
  padding-left: 0;
  padding-top: 2.8em;
}

@media screen and (max-width: 767px) {
  .p-ma-content.market .c-box .c-heading-building {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 479px) {
  .p-ma-content.market .c-box .c-heading-building {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.p-ma-content.market .c-box .c-heading-building:before {
  left: 0;
  top: 0;
  -webkit-transform: unset;
          transform: unset;
}

.p-ma-content.market .c-box .c-heading-building strong {
  font-size: 1.4em;
}

.p-ma-content.market .c-box .c-heading-building span {
  display: block;
}

.p-ma-content.market .c-box .c-heading-building span:nth-of-type(1) {
  text-align: left;
}

.p-ma-content.market .c-box .c-heading-building span:nth-of-type(2) {
  text-align: right;
}

.p-ma-merit {
  position: relative;
  background-color: #D1F0ED;
}

.p-ma-merit .c-container {
  position: relative;
  width: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-ma-merit .c-container ul {
  width: 48%;
}

@media screen and (max-width: 767px) {
  .p-ma-merit .c-container ul {
    width: 100%;
  }
}

.p-ma-merit .c-container ul li {
  position: relative;
  padding: 1em 1em 1em 4em;
  font-weight: 600;
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .p-ma-merit .c-container ul li {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.p-ma-merit .c-container ul li:before {
  content: '';
  position: absolute;
  left: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 2em;
  height: 2em;
}

.p-ma-merit .c-container ul li:nth-of-type(n+2) {
  margin-top: 1em;
}

.p-ma-merit .c-container ul.heart:before {
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 1em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-ma-merit .c-container ul.heart:before {
    content: 'メリット';
  }
}

.p-ma-merit .c-container ul.heart li {
  background-color: #ffffff;
  color: #263B2D;
}

.p-ma-merit .c-container ul.heart li:before {
  background-image: url(../images/icon/icon-heart.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .p-ma-merit .c-container ul.sander {
    margin-top: 4em;
  }
}

.p-ma-merit .c-container ul.sander:before {
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 1em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-ma-merit .c-container ul.sander:before {
    content: 'デメリット';
  }
}

.p-ma-merit .c-container ul.sander li {
  background-color: #263B2D;
  color: #ffffff;
}

.p-ma-merit .c-container ul.sander li:before {
  background-image: url(../images/icon/icon-sander.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.p-ma-merit .c-container p {
  width: 100%;
  text-align: right;
  font-weight: 600;
  font-size: 18px;
  font-size: 1.8rem;
  margin-top: 1em;
}

.p-ma-trend .c-heading-01, .p-ma-trend .p-ma-content .c-box .c-heading-building, .p-ma-content .c-box .p-ma-trend .c-heading-building {
  position: relative;
  padding: 2em 0;
  min-height: 200px;
}

@media screen and (max-width: 767px) {
  .p-ma-trend .c-heading-01, .p-ma-trend .p-ma-content .c-box .c-heading-building, .p-ma-content .c-box .p-ma-trend .c-heading-building {
    min-height: 6.4em;
  }
}

.p-ma-trend .c-heading-01:after, .p-ma-trend .p-ma-content .c-box .c-heading-building:after, .p-ma-content .c-box .p-ma-trend .c-heading-building:after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 200px 50vw 0 50vw;
  border-color: #D1F0ED transparent transparent transparent;
}

@media screen and (max-width: 767px) {
  .p-ma-trend .c-heading-01:after, .p-ma-trend .p-ma-content .c-box .c-heading-building:after, .p-ma-content .c-box .p-ma-trend .c-heading-building:after {
    border-width: 6.4em 50vw 0 50vw;
  }
}

.p-ma-trend .c-heading-01 span, .p-ma-trend .p-ma-content .c-box .c-heading-building span, .p-ma-content .c-box .p-ma-trend .c-heading-building span {
  position: relative;
  z-index: 2;
}

.p-ma-trend .c-reading, .p-ma-trend .p-ma-lead p, .p-ma-lead .p-ma-trend p {
  margin: 4em auto 0;
}

.p-ma-trend .c-reading:nth-of-type(n+2), .p-ma-trend .p-ma-lead p:nth-of-type(n+2), .p-ma-lead .p-ma-trend p:nth-of-type(n+2) {
  margin-top: 4em;
}

.p-ma-trend .c-reading dl dt, .p-ma-trend .p-ma-lead p dl dt, .p-ma-lead .p-ma-trend p dl dt {
  font-size: 18px;
  font-size: 1.8rem;
}

.p-ma-trend .c-reading dl dt:nth-child(n+2), .p-ma-trend .p-ma-lead p dl dt:nth-child(n+2), .p-ma-lead .p-ma-trend p dl dt:nth-child(n+2) {
  margin-top: 2em;
}

.p-ma-trend .c-reading dl dd, .p-ma-trend .p-ma-lead p dl dd, .p-ma-lead .p-ma-trend p dl dd {
  counter-reset: number 0;
}

.p-ma-trend .c-reading dl dd h2, .p-ma-trend .p-ma-lead p dl dd h2, .p-ma-lead .p-ma-trend p dl dd h2 {
  color: #2B2E57;
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.p-ma-trend .c-reading dl dd h2:before, .p-ma-trend .p-ma-lead p dl dd h2:before, .p-ma-lead .p-ma-trend p dl dd h2:before {
  counter-increment: number 1;
  content: "Point" counter(number);
  display: block;
  border: 1px solid #0B3D91;
  color: #0B3D91;
  text-align: center;
  padding: 0.2em 0;
  width: 8em;
  display: inline-block;
  margin-right: 1em;
}

/* ==================================================
  サービスご利用の流れ
================================================== */
.p-flow .inner {
  width: 100%;
  max-width: calc( 1280px + 3% * 2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 3%;
  padding-right: 3%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .p-flow .js-scale-contents {
    min-width: 1280px;
  }
}

.p-flow-list {
  width: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-flow-list-item {
  width: calc( 33.3333% - 54px);
  position: relative;
  border-radius: 4px;
}

@media screen and (max-width: 767px) {
  .p-flow-list-item {
    width: 100%;
  }
  .p-flow-list-item:nth-of-type(n+2) {
    margin-top: 2em;
  }
}

.p-flow-list-item h2 {
  padding: 2em 0;
  margin-bottom: 0;
  color: #149187;
  font-weight: 600;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media screen and (max-width: 767px) {
  .p-flow-list-item h2 {
    padding: 1.5em 0 0.5em;
    font-size: 20px;
    font-size: 2rem;
    height: auto !important;
  }
}

.p-flow-list-item h2 small {
  font-size: 0.6em;
  margin-top: 1em;
  display: block;
}

.p-flow-list-item h2 img {
  max-width: 60%;
}

@media screen and (max-width: 767px) {
  .p-flow-list-item h2 img {
    max-width: 40%;
  }
}

.p-flow-list-item .c-text ul {
  padding: 1.2em;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .p-flow-list-item .c-text ul {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.p-flow-list-item .c-text ul li {
  padding: 0.8em;
  background-color: #ffffff;
  color: #2B2E57;
  font-weight: 600;
  text-align: center;
}

.p-flow-list-item .c-text ul li:nth-of-type(n+2) {
  margin-top: 1em;
}

.p-flow-list-item .c-text ul li.blank {
  background-color: unset;
}

@media screen and (max-width: 767px) {
  .p-flow-list-item .c-text ul li.blank {
    background-color: #eee;
  }
}

@media screen and (min-width: 768px) {
  .p-flow-list-item .c-text ul li.blank span {
    display: inline-block;
    width: 1em;
    height: 1em;
    text-indent: 120%;
    overflow: hidden;
    white-space: nowrap;
  }
}

.p-flow-list-item .c-text ul li.interlocking {
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-flow-list-item .c-text ul li.interlocking:after {
    position: absolute;
    left: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 2;
    content: '';
    width: calc( 2.4em + 81px);
    height: 4px;
    background-color: #E2E2E2;
  }
  .p-flow-list-item .c-text ul li.interlocking:before,
  .p-flow-list-item .c-text ul li.interlocking span:before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    z-index: 3;
    width: 12px;
    height: 12px;
    background-color: #E2E2E2;
  }
  .p-flow-list-item .c-text ul li.interlocking:before {
    left: 100%;
  }
  .p-flow-list-item .c-text ul li.interlocking span:before {
    left: calc( 100% +  2.4em + 81px - 12px);
  }
}

.p-flow-list-item .c-text ul li.goal {
  background-color: #0B3D91;
  color: #fff;
}

.p-flow-list-item:nth-child(1) {
  background-color: #E0F8FF;
}

.p-flow-list-item:nth-child(2) {
  background-color: #DEFFFC;
}

@media screen and (min-width: 768px) {
  .p-flow-list-item:nth-child(2) {
    margin: 0 81px;
  }
}

.p-flow-list-item:nth-child(3) {
  background-color: #D1F0ED;
}

.p-flow-list.modal {
  display: block;
}

.p-flow .p-strength {
  margin: 0;
}

.p-flow .p-strength .inner {
  width: 100%;
  max-width: calc( 1240px + 3% * 2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 3%;
  padding-right: 3%;
  margin-left: auto;
  margin-right: auto;
}

.p-flow .p-strength-list {
  width: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-flow .p-strength-list li {
  width: 48%;
  max-width: 540px;
}

@media screen and (max-width: 767px) {
  .p-flow .p-strength-list li {
    width: 100%;
  }
  .p-flow .p-strength-list li:nth-of-type(n+2) {
    margin-top: 2em;
  }
}

.p-flow .p-strength-list li .c-media {
  margin-bottom: 2em;
}

.p-flow .p-strength-list li .c-text .c-heading-01, .p-flow .p-strength-list li .c-text .p-ma-content .c-box .c-heading-building, .p-ma-content .c-box .p-flow .p-strength-list li .c-text .c-heading-building {
  font-size: 24px;
  font-size: 2.4rem;
  text-align: left;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 767px) {
  .p-flow .p-strength-list li .c-text .c-heading-01, .p-flow .p-strength-list li .c-text .p-ma-content .c-box .c-heading-building, .p-ma-content .c-box .p-flow .p-strength-list li .c-text .c-heading-building {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 479px) {
  .p-flow .p-strength-list li .c-text .c-heading-01, .p-flow .p-strength-list li .c-text .p-ma-content .c-box .c-heading-building, .p-ma-content .c-box .p-flow .p-strength-list li .c-text .c-heading-building {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.p-flow-table .c-table th, .p-flow-table .c-table td {
  width: 25%;
  padding: 2em;
  vertical-align: middle;
  border: none;
  border-bottom: 1px solid #fff;
}

@media screen and (max-width: 767px) {
  .p-flow-table .c-table th, .p-flow-table .c-table td {
    padding: 1.5em;
  }
}

@media screen and (max-width: 767px) {
  .p-flow-table .c-table tbody,
  .p-flow-table .c-table tr,
  .p-flow-table .c-table th,
  .p-flow-table .c-table td {
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.p-flow-table .c-table th {
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 991px) {
  .p-flow-table .c-table th {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.p-flow-table .c-table th img {
  display: block;
  margin: 0 auto 1em;
  max-width: 2em;
  max-height: 2em;
}

.p-flow-table .c-table td {
  vertical-align: top;
  background-color: #f2f2f2;
  border-left: 1px solid #e2e2e2;
}

.p-flow-table .c-table td h2 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 991px) {
  .p-flow-table .c-table td h2 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.p-flow-table .c-table td p {
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 991px) {
  .p-flow-table .c-table td p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.p-flow-table .c-table .search th {
  background-color: #EEF8FC;
  color: #F5C400;
}

.p-flow-table .c-table .calc th {
  background-color: #CCF0FC;
  color: #149187;
}

.p-flow-table .c-table .matching th {
  background-color: #D1F0ED;
  color: #149187;
}

/* ==================================================
  料金について
================================================== */
.p-price-lead .inner {
  width: 100%;
  max-width: calc( 1280px + 3% * 2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 3%;
  padding-right: 3%;
  margin-left: auto;
  margin-right: auto;
}

.p-price-system-list {
  padding-top: 6em;
  width: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-price-system-list li {
  width: 30%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-price-system-list li {
    width: 100%;
  }
  .p-price-system-list li:nth-of-type(n+2) {
    margin-top: 4em;
  }
}

.p-price-system-list li h2 {
  padding: 2em 0;
  background-color: #DEFFFC;
  color: #149187;
  font-weight: 600;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media screen and (max-width: 1079px) {
  .p-price-system-list li h2 {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .p-price-system-list li h2 {
    padding: 1em 0;
    margin-bottom: 1.5em;
  }
}

.p-price-system-list li h2 img {
  max-width: 60%;
}

.p-price-system-list li .c-text p {
  text-align: center;
}

.p-price-system-list li .c-text dl dt {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  background-color: #74B459;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 0.8em;
  text-align: center;
}

.p-price-system-list li .c-text dl dt:before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 4px;
  height: 40px;
  background: #74B459;
}

.p-price-system-list li .c-text dl dt:after {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background-color: #74B459;
}

.p-price-system-list li .c-text dl dd {
  margin-top: 1em;
  font-size: 14px;
  font-size: 1.4rem;
}

.p-price-system-list li:nth-child(1) .c-text {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media screen and (max-width: 767px) {
  .p-price-system-list li:nth-child(3) {
    margin-top: 0;
  }
}

.p-price-system-list li .fee {
  position: absolute;
  left: 60%;
  top: -4em;
  z-index: 2;
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 600;
  color: #74B459;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .p-price-system-list li .fee {
    position: relative;
    left: unset;
    top: unset;
    border: 4px dotted #74B459;
    padding: 1em;
    margin: 2em 0;
  }
}

.p-price-system-list li .fee .square {
  display: block;
  border: 4px dotted #74B459;
  border-bottom: unset;
  margin-top: 0.5em;
  width: 100%;
  height: 2em;
}

@media screen and (max-width: 767px) {
  .p-price-system-list li .fee .square {
    display: none;
  }
}

.p-price-retainer .c-table th, .p-price-retainer .c-table td {
  vertical-align: middle;
}

.p-price-retainer .c-table th {
  width: 320px;
}

@media screen and (max-width: 767px) {
  .p-price-retainer .c-table th {
    width: 40%;
  }
}

.p-price .p-strength {
  margin: 0;
}

/* ==================================================
   会社概要
================================================== */
.p-company-lead {
  text-align: center;
}

.p-company-lead p:nth-of-type(n+2) {
  margin-top: 1em;
}

.p-company-consultant .c-heading-box {
  padding: 6em 0;
  background-image: url(../images/company/company_cover.png);
  background-position: center;
  background-repeat: no-repeat;
}

.p-company-consultant-list {
  width: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 479px) {
  .p-company-consultant-list {
    max-width: 320px;
    margin: 0 auto;
  }
}

.p-company-consultant-list li {
  width: calc( 33.3333% - 40px);
}

@media screen and (max-width: 1079px) {
  .p-company-consultant-list li {
    width: calc( 50% - 15px);
  }
}

@media screen and (max-width: 479px) {
  .p-company-consultant-list li {
    width: 100%;
  }
  .p-company-consultant-list li:nth-of-type(n+2) {
    margin-top: 2em;
  }
}

@media screen and (min-width: 1080px) {
  .p-company-consultant-list li:nth-child(3n-1) {
    margin: 0 40px;
  }
}

@media screen and (max-width: 1079px) {
  .p-company-consultant-list li:nth-child(odd) {
    margin-right: 30px;
  }
}

@media screen and (max-width: 479px) {
  .p-company-consultant-list li:nth-child(odd) {
    margin-right: 0;
  }
}

.p-company-consultant-list li .c-media img {
  display: block;
  width: 100%;
}

.p-company-consultant-list li .c-text {
  position: relative;
}


.p-company-consultant-list li .c-info {
  padding: 0 2em 1em;
  background-color: #F2F2F2;
}

@media screen and (max-width: 767px) {
  .p-company-consultant-list li .c-info {
    padding: 0 1em 1em;
  }
}

.p-company-consultant-list li .c-info .c-name {
  position: relative;
  top: -1em;
  padding: 0.3em 1.2em;
  font-size: 18px;
  font-size: 1.8rem;
  color: #ffffff;
  font-weight: 600;
  background: #007cb7;
  background: -webkit-gradient(linear, left top, right top, color-stop(1%, #007cb7), to(#62bfd2));
  background: linear-gradient(to right, #007cb7 1%, #62bfd2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007cb7', endColorstr='#62bfd2',GradientType=1 );
  display: inline-block;
  margin-bottom: 0;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .p-company-consultant-list li .c-info .c-name {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.p-company-consultant-list li .c-info .p-position {
  margin-top: -0.5em;
}

@media screen and (max-width: 767px) {
  .p-company-consultant-list li .c-info .p-position {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.p-company-consultant-list li .c-icon {
  position: absolute;
  right: 2em;
  bottom: 0;
  z-index: 10;
  width: 4em;
  -webkit-transition: 1.2s cubic-bezier(0.17, 0.935, 0.305, 1);
  transition: 1.2s cubic-bezier(0.17, 0.935, 0.305, 1);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.p-company-consultant-list li .c-icon img {
  display: block;
  width: 100%;
}

.p-company-consultant-list li .c-desc {
  padding: 2em;
}

@media screen and (max-width: 767px) {
  .p-company-consultant-list li .c-desc {
    padding: 1em;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.p-company-table {
  background-image: url(../images/company/company_cover.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-company-table .c-table {
  margin-top: 0;
}

.p-company-table .c-table th, .p-company-table .c-table td {
  border-color: transparent transparent #EDFBFF transparent;
}

.p-company-table .c-table th {
  background-color: unset;
}

@media screen and (max-width: 767px) {
  .p-company-table .c-table th {
    width: 9em;
    text-align: left;
    vertical-align: middle;
  }
}

/* ==================================================
  個人情報保護方針
================================================== */
.p-privacy .c-box {
  padding-top: 60px;
}

.p-privacy .c-box .c-heading-02, .p-privacy .c-box .p-intermediary .p-results-sort h4, .p-intermediary .p-results-sort .p-privacy .c-box h4, .p-privacy .c-box .p-ma-merit .c-container ul.heart:before, .p-ma-merit .c-container .p-privacy .c-box ul.heart:before, .p-privacy .c-box .p-ma-merit .c-container ul.sander:before, .p-ma-merit .c-container .p-privacy .c-box ul.sander:before, .p-privacy .c-box .p-ma-trend .c-reading dl dt, .p-ma-trend .c-reading dl .p-privacy .c-box dt, .p-privacy .c-box .p-ma-trend .p-ma-lead p dl dt, .p-ma-trend .p-ma-lead p dl .p-privacy .c-box dt, .p-privacy .c-box .p-ma-lead .p-ma-trend p dl dt, .p-ma-lead .p-ma-trend p dl .p-privacy .c-box dt {
  font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: 400;
  font-size: 20px;
  font-size: 2rem;
}

.p-privacy .c-orderlist {
  counter-reset: disc;
}

.p-privacy .c-orderlist > li {
  position: relative;
  padding-left: 3.2em;
  font-size: 14px;
  font-size: 1.4rem;
}

.p-privacy .c-orderlist > li:nth-of-type(n+2) {
  margin-top: 0.5em;
}

.p-privacy .c-orderlist > li:before {
  counter-increment: disc;
  content: "（" counter(disc) "）";
  position: absolute;
  top: 0;
  left: 0;
  width: 3.2em;
  text-align: right;
}

.p-privacy .c-list {
  counter-reset: disc;
  padding: 2em;
  border-radius: 4px;
  background-color: rgba(162, 147, 105, 0.1);
}

.p-privacy .c-list:nth-of-type(n+2) {
  margin-top: 1em;
}

.p-privacy .c-list > li {
  list-style-type: disc;
  font-size: 14px;
  font-size: 1.4rem;
  list-style-position: inside;
}

.p-privacy .c-list > li:nth-of-type(n+2) {
  margin-top: 0.5em;
}

.p-privacy .c-deflist {
  padding: 1em 0;
}

.p-privacy .c-deflist dt {
  font-weight: 600;
}

.p-privacy .c-deflist dt:nth-child(n+2) {
  margin-top: 2em;
  padding-top: 2em;
  border-top: 1px solid #ddd;
}

.p-privacy .c-map {
  margin-top: 1em;
}

.p-privacy .c-map .c-iframe {
  position: relative;
}

.p-privacy .c-map .c-iframe:after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 60%;
}

.p-privacy .c-map .c-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-privacy .c-desc p:nth-of-type(n+2) {
  margin-top: 2em;
}

.p-privacy .c-link {
  text-decoration: underline;
}

.p-privacy .c-table {
  width: 100%;
  margin-top: 1em;
  table-layout: fixed;
  border: 1px solid rgba(162, 147, 105, 0.2);
}

.p-privacy .c-table caption {
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1em;
}

.p-privacy .c-table th, .p-privacy .c-table td {
  font-size: 14px;
  font-size: 1.4rem;
  padding: 0.8em 1em;
}

@media screen and (min-width: 768px) {
  .p-privacy .c-table th, .p-privacy .c-table td {
    font-size: 15px;
    font-size: 1.5rem;
    padding: 2em 2em;
  }
}

.p-privacy .c-table th:nth-child(1), .p-privacy .c-table td:nth-child(1) {
  width: 8em;
}

@media screen and (min-width: 768px) {
  .p-privacy .c-table th:nth-child(1), .p-privacy .c-table td:nth-child(1) {
    width: 20em;
  }
}

.p-privacy .c-table th .c-month {
  display: inline-block;
  width: 3em;
  text-align: right;
}

.p-privacy .c-table thead th:first-child {
  text-align: right;
}

.p-privacy .c-table tbody th {
  text-align: right;
}

/* ==================================================
   サイトマップ
================================================== */
.p-sitemap {
  background-color: #f2f2f2;
}

.p-sitemap .c-sitemap-nav {
  width: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-sitemap .c-sitemap-nav > li {
  width: 100%;
}

@media screen and (min-width: 480px) {
  .p-sitemap .c-sitemap-nav > li {
    width: calc( 50% - 10px);
  }
}

.p-sitemap .c-sitemap-nav > li:nth-child(n+2) {
  margin-top: 4em;
}

@media screen and (min-width: 480px) {
  .p-sitemap .c-sitemap-nav > li:nth-child(n+2) {
    margin-top: 0;
  }
}

@media screen and (min-width: 480px) {
  .p-sitemap .c-sitemap-nav > li:nth-child(n+3) {
    margin-top: 4em;
  }
}

.p-sitemap .c-sitemap-nav > li .c-list li {
  border-top: 1px solid #ddd;
}

.p-sitemap .c-sitemap-nav > li .c-list li a {
  display: block;
  padding: 1em;
  color: #040102;
  font-weight: 600;
}

.p-sitemap .c-sitemap-nav > li .c-list li a span {
  position: relative;
}

.p-sitemap .c-sitemap-nav > li .c-list li a span:before {
  position: absolute;
  content: "";
  position: absolute;
  left: -1.7em;
  top: 0.15em;
  width: 1em;
  height: 1em;
  display: block;
  background-size: cover;
}

.p-sitemap .c-sitemap-nav > li .c-list li:last-child {
  border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 768px) {
 .p-sitemap .c-sitemap-nav > li:nth-child(n+2) {
    margin-top: 2em;
  }
}

/* ==================================================
  M&A業界別動向
================================================== */
.p-trend {
  background-color: #efefef;
}

.p-trend .inner {
  width: 100%;
  max-width: calc( 1240px + 3% * 2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 3%;
  padding-right: 3%;
  margin-left: auto;
  margin-right: auto;
}

.p-trend-list {
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-trend-list li {
  width: calc( 16.6666% - 6.7px);
}

@media screen and (max-width: 991px) {
  .p-trend-list li {
    width: calc( 25% - 6px);
  }
}

@media screen and (max-width: 767px) {
  .p-trend-list li {
    width: calc( 50% - 4px);
  }
}

@media screen and (min-width: 992px) {
  .p-trend-list li:not(:nth-child(6n)) {
    margin-right: 8px;
  }
  .p-trend-list li:nth-child(n+7) {
    margin-top: 15px;
  }
}

@media screen and (max-width: 991px) {
  .p-trend-list li:not(:nth-child(4n)) {
    margin-right: 8px;
  }
  .p-trend-list li:nth-child(n+5) {
    margin-top: 15px;
  }
}

@media screen and (max-width: 767px) {
  .p-trend-list li:nth-child(2n) {
    margin-right: 0;
  }
  .p-trend-list li:nth-child(n+3) {
    margin-top: 15px;
  }
}

.p-trend-list li a {
  position: relative;
  display: block;
  color: #040102;
}

.p-trend-list li a .p-new {
  position: absolute;
  top: 5px;
  left: 5px;
  display: inline-block;
  background-color: #E74C3C;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  padding: 0.3em 1.2em;
  border-radius: 2px;
  z-index: 10;
  font-size: 8px;
  font-size: 0.8rem;
}

.p-trend-list li .c-text {
  background-color: #ffffff;
}

.p-trend-list li .c-text .c-title {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 8px 15px;
  font-size: 15px;
  font-size: 1.5rem;
  margin-bottom: 0;
  border-bottom: 1px solid #eee;
  font-weight: 600;
}

.p-trend-list li .c-text .c-excerpt {
  padding: 8px 15px;
  font-size: 12px;
  font-size: 1.2rem;
}

.p-trend-news-list li {
  padding: 1em 0;
  border-bottom: 1px solid #eee;
}

.p-trend-news-list li .c-date {
  margin-bottom: 0.5em;
}

.p-trend-news-list li .c-category {
  margin-top: 1em;
}

.p-trend-news-list li .c-category a {
  padding: 0.2em 1em;
  border: 1px solid #eee;
  border-radius: 2px;
  color: #040102;
  margin-right: 0.5em;
}

/* ==================================================
  監修
================================================== */
.p-supervision {
  position: relative;
  padding: 1em;
  background-color: #efefef;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 2em;
}

@media screen and (max-width: 479px) {
  .p-supervision {
    display: block;
  }
}

.p-supervision:before {
  content: '監修';
  position: absolute;
  top: 0;
  left: 0;
  background: #3b53a7;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.2em;
  padding: 0.3em 0.8em;
  text-align: center;
  z-index: 10;
}

@media screen and (max-width: 479px) {
  .p-supervision:before {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.p-supervision .c-media {
  width: 160px !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (max-width: 479px) {
  .p-supervision .c-media {
    margin-right: 10px !important;
    margin-bottom: 10px !important;
    width: 96px !important;
    float: left;
  }
}

.p-supervision .c-media:before {
  content: none !important;
}

.p-supervision .c-media img {
  width: 100%;
  height: auto;
}

.p-supervision .c-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-supervision .c-text .c-info .c-name {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
}

@media screen and (max-width: 479px) {
  .p-supervision .c-text .c-info .c-name {
    letter-spacing: 0;
    line-height: 1.3;
  }
}

.p-supervision .c-text .c-info .p-position {
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 479px) {
  .p-supervision .c-text .c-info .p-position {
    letter-spacing: 0;
  }
}

.p-supervision .c-text .c-desc {
  font-size: 13px;
  font-size: 1.3rem;
}

/* ==================================================
  提携仲介会社登録
================================================== */
.p-partner-hero {
  position: relative;
}

.p-partner-hero .c-media img {
  display: block;
  width: 100%;
}

.p-partner-hero-title {
  position: absolute;
  left: 50%;
  top: 52%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 51.2666%;
}

@media screen and (max-width: 767px) {
  .p-partner-hero-title {
    max-width: 76%;
  }
}

.p-partner-lead {
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
}

.p-partner-lead p:nth-of-type(n+2) {
  margin-top: 2em;
}
.p-partner-lead p small {
	font-size: 0.8em;
	color: #3B53A7;
}

.p-partner-merit {
  text-align: center;
}

.p-partner-term .c-lead {
  text-align: center;
  font-size: 22px;
  font-size: 2.2rem;
}

.p-partner-term .c-table th, .p-partner-term .c-table td {
  font-size: 18px;
  font-size: 1.8rem;
}

.p-partner-term .c-table th {
  text-align: center;
  vertical-align: middle;
  color: #ffffff;
	width: 13.4em;
}

.p-partner-term .c-table td {
  padding: 1.5em 2em;
}
.p-partner-term .c-table td small {
	display: block;
	margin-top: 1em;
	font-size: 0.9em;
}
.p-partner-term .c-table td strong {
	font-weight: 600;
	color: #3B53A7;
}
.p-partner-term .c-table td ul {
	padding-left: 1.2em;
}
.p-partner-term .c-table td ul li {
	display: list-item;
	list-style-type: square;
}

.p-partner-term .c-table tr:nth-child(odd) th {
  background-color: #007CB7;
}

.p-partner-term .c-table tr:nth-child(even) th {
  background-color: #0192c8;
}

@media screen and (max-width: 767px) {
  .p-partner-term .c-table th, .p-partner-term .c-table td {
    display: block;
    width: 100%;
  }
}

/* ==================================================
  セカンドオピニオンサービス
================================================== */
.p-second-hero {
  position: relative;
}

.p-second-hero .c-media img {
  display: block;
  width: 100%;
}

.p-second-hero-title {
  position: absolute;
  bottom: 15%;
  left: 10%;
  max-width: 51.2666%;
}

@media screen and (max-width: 767px) {
  .p-second-hero-title {
    max-width: 76%;
    left: 6.25%;
  }
}

@media screen and (min-width: 768px) {
  .p-second-hero-title img {
    max-width: 100%;
    max-height: 30vw;
  }
}

.p-second-lead ul {
  margin-top: 2em;
}

.p-second-lead ul li {
  position: relative;
  padding: 1em;
  font-size: 1.25vw;
  font-weight: 400;
  background-color: #efefef;
  font-family: "ヒラギノ角ゴ Pro W3","ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: 400;
  color: #444;
  text-align: left;
  border: 1px solid #999;
}

@media screen and (max-width: 991px) {
  .p-second-lead ul li {
    font-size: 2.2vw;
  }
}

@media screen and (max-width: 767px) {
  .p-second-lead ul li {
    font-size: 4vw;
  }
}

.p-second-lead ul li:nth-child(n+2) {
  margin-top: 1em;
}

.p-second-lead ul li:after {
  position: absolute;
  top: 1px;
  left: 1px;
  content: '';
  width: calc( 100% - 2px);
  height: calc( 100% - 2px);
  border: 6px solid #bbb;
  opacity: 0.3;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  pointer-events: none;
}

.p-second-price picture {
  margin-top: 4em;
}

/* ==================================================
  事業再構築補助金LP
================================================== */
.p-jigyo-saikoutiku-hero {
  text-align: center;
  background-image: url(../images/jigyo-saikoutiku/jigyo-saikoutiku_cover.png);
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .p-jigyo-saikoutiku-hero {
    background-image: url(../images/jigyo-saikoutiku/jigyo-saikoutiku_cover_sp.png);
    background-size: cover;
  }
}

.p-jigyo-saikoutiku-hero h1 {
  position: relative;
  top: 3vw;
  display: inline-block;
  margin-bottom: 0;
  max-width: 1000px;
}

@media screen and (max-width: 767px) {
  .p-jigyo-saikoutiku-hero h1 {
    max-width: 93vw;
    top: 8vw;
  }
}

.p-jigyo-saikoutiku-hero h1 picture {
  display: inline-block;
}

.p-jigyo-saikoutiku-hero h1 img {
  max-width: 72vw;
  margin: 0 auto;
  vertical-align: top;
}

@media screen and (max-width: 991px) {
  .p-jigyo-saikoutiku-hero h1 img {
    max-width: 90vw;
  }
}

.p-jigyo-saikoutiku-contents {
  text-align: center;
}

.p-jigyo-saikoutiku-contents picture {
  display: inline-block;
}

.p-jigyo-saikoutiku-contents img {
  max-width: 72vw;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  .p-jigyo-saikoutiku-contents img {
    max-width: 90vw;
  }
}

@media screen and (max-width: 767px) {
  .p-jigyo-saikoutiku-contents img {
    max-width: 100%;
  }
}

.p-jigyo-saikoutiku-btn, .p-jigyo-saikoutiku-bnr {
  text-align: center;
  padding: 3.125vw 0;
}

@media screen and (max-width: 767px) {
  .p-jigyo-saikoutiku-btn, .p-jigyo-saikoutiku-bnr {
    padding: 6.66vw 0;
  }
}

.p-jigyo-saikoutiku-btn a, .p-jigyo-saikoutiku-bnr a {
  display: inline-block;
  max-width: 90.6vw;
}

.p-jigyo-saikoutiku-btn a picture, .p-jigyo-saikoutiku-bnr a picture {
  display: inline-block;
}

.p-jigyo-saikoutiku-btn a img, .p-jigyo-saikoutiku-bnr a img {
  max-width: 30vw;
  margin: 0 auto;
  vertical-align: top;
}

@media screen and (max-width: 991px) {
  .p-jigyo-saikoutiku-btn a img, .p-jigyo-saikoutiku-bnr a img {
    max-width: 60vw;
  }
}

@media screen and (max-width: 767px) {
  .p-jigyo-saikoutiku-btn a img, .p-jigyo-saikoutiku-bnr a img {
    max-width: 90vw;
  }
}

.p-jigyo-saikoutiku-bnr a img {
  max-width: 72vw;
  margin: 0 auto;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .p-jigyo-saikoutiku-bnr a img {
    max-width: 91.2vw;
  }
}

.p-jigyo-saikoutiku-footer {
  text-align: center;
  padding: 15px 0;
}

/* ==================================================
  遵守事項一覧
================================================== */

.ma-sonshu .js-scale-contents{
	min-width: 560px;
}
.ma-sonshu table{
	font-weight: 400;
}
.ma-sonshu table td{
	vertical-align: middle;
}
.ma-sonshu table td[colspan="4"]{
	font-weight: 600;
	font-size: 1.2em;
	background-color: #eee;
}
.ma-sonshu table td small{
	font-size: 0.8em;
}
.ma-sonshu table td:first-child{
	text-align: center;
}
@media screen and (max-width: 767px) {
	.ma-sonshu table td small{
		display: block;
	}
}


/* ==================================================
  税理士事務所専門仲介
================================================== */

.p-zeirishi-heading {
  font-size: 2.3vw;
  font-family:  Libre Baskerville Lusitana, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho",  Shippori , "ＭＳ Ｐ明朝", "MS PMincho", "serif";
  font-weight: 400;
  text-align: center;
  font-weight: 600;
  margin: 1em 0;
}

@media screen and (max-width: 991px) {
  .p-zeirishi-heading {
    font-size: 4vw;
  }
}

@media screen and (max-width: 767px) {
  .p-zeirishi-heading {
    font-size: 7.22vw;
    line-height: 1.3;
  }
}

@media screen and (max-width: 767px) {
  .p-zeirishi-heading small {
    display: inline-block;
    font-size: 0.8em;
    margin-bottom: 1em;
  }
}

.p-zeirishi-heading .stripe {
  display: inline;
  padding: 0 0.6em 0.2em;
  background-image: url(../images/top/home_desc_stripe.png);
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: auto 0.4em;
}

.p-zeirishi-heading .diamond {
  position: relative;
}

.p-zeirishi-heading .diamond:before {
  content: '';
  position: absolute;
  top: -0.26em;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  width: 0.26em;
  height: 0.26em;
  border-radius: 2px;
  background-color: #040102;
}

.p-zeirishi-hero {
  position: relative;
}

.p-zeirishi-hero .c-media img {
  display: block;
  width: 100%;
}

.p-zeirishi-hero-title {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  max-width: 51.2666%;
  height: 100%;
  padding: 2em 0;
}

@media screen and (max-width: 767px) {
  .p-zeirishi-hero-title {
    max-width: 76vw;
    width: 100%;
	display: flex;
	justify-content: center;
  }
}

.p-zeirishi-hero-title img{
  max-height: 100%;
}

.p-zeirishi-lead {
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .p-zeirishi-lead {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.p-zeirishi-lead figure figcaption{
  font-size: 0.8em;
  letter-spacing: 0.05em;
}


.p-zeirishi-lead p:nth-of-type(n+2) {
  margin-top: 2em;
}

.p-zeirishi-greeting {
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .p-zeirishi-greeting {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.p-zeirishi-greeting p:nth-child(n+2) {
  margin-top: 2em;
}

.p-zeirishi-greeting-reason {
  margin-top: 2em;
}

.p-zeirishi-greeting-reason .c-heading-01 {
  margin-bottom: 0;
  padding: 1em;
  color: #fff;
  background-color: #06635B;
}

.p-zeirishi-greeting-reason .c-text {
  padding: 2em;
  border: 1px solid #06635B;
  border-top: none;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .p-zeirishi-greeting-reason .c-text {
    padding: 1em;
  }
}

.p-zeirishi-greeting-reason .c-text p:nth-child(n+2),
.p-zeirishi-greeting-reason .c-text figure:nth-child(n+2) {
  margin-top: 2em;
}

.p-zeirishi-greeting-reason .c-text strong{
  display: block;
  text-align: center;
  font-weight: 400;
  color: #007CB7;
}

.p-zeirishi-merit {
  text-align: center;
}

.p-zeirishi-merit .c-heading-01 {
  font-size: 4.8em;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .p-zeirishi-merit .c-heading-01 {
    font-size: 3.2em;
  }
}

.p-zeirishi-merit .c-lead {
  text-align: center;
  font-size: 22px;
  font-size: 2.2rem;
  margin-top: 2em;
}
.p-zeirishi-merit .c-table th, .p-zeirishi-merit .c-table td {
  font-size: 18px;
  font-size: 1.8rem;
}

.p-zeirishi-merit .c-table th {
  text-align: center;
  vertical-align: middle;
  color: #ffffff;
  width: 10em;
}

.p-zeirishi-merit .c-table td {
  padding: 1.5em 2em;
}

.p-zeirishi-merit .c-table tr:nth-child(1) th {
  background-color: #007CB7;
}

.p-zeirishi-merit .c-table tr:nth-child(2) th {
  background-color: #0192c8;
}

@media screen and (max-width: 767px) {
  .p-zeirishi-merit .c-table th, .p-zeirishi-merit .c-table td {
    display: block;
    width: 100%;
  }
}

.p-zeirishi-merit p + p{
  margin-top: 1em;
}

.p-zeirishi-voice{
  background-color: #eee;
}
.p-zeirishi-voice-box{
  padding: 5px;
  background-color: #fff;
  border: 1.2px solid #16B3EE;
}
.p-zeirishi-voice-box-wrap{
  border: 1px solid #BBE7F3;
  padding: 1.5em;
}

.p-zeirishi-voice-box p{
  font-style: italic;
  color: #16B3EE;
  font-size: 1.2em;
}

@media screen and (max-width: 767px) {
  .p-zeirishi-voice-box p{
    font-size: 1em;
  }
}

.p-zeirishi-voice-box .c-name{
  text-align: right;
  margin-top: 2em;
  font-style: normal;
}

/*----------------
  2022.2.14 修正
------------------*/

.p-home-dividier.advisery,
.p-home-dividier.forward,
.p-home-dividier.believe {
  background-image: url(../images/top/home_devider_cover02.png);
}


/*----------------
  セミナー申込み
------------------*/

.p-seminor .p-partner-term .c-table th,
.p-seminor .p-partner-term .c-table td {
	font-size: 1.5rem;
}

.grecaptcha-badge { visibility: hidden; }


/*----------------
  CTAバナーエリア
------------------*/

.c-bnr-single {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 2em auto;
}
.c-bnr-single a {
  display: block;
}
@media screen and (min-width: 768px) {
	.c-bnr-single a {
  		width: calc( 50% - 0.5em );
	}
	.c-bnr-single a:nth-child(n+3) {
		width: 100%;
		margin-top: 1em;
	}
}

@media screen and (max-width: 767px) {
	.c-bnr-single a {
		width: 100%;
		margin: 0 auto 1em;
	}
}

/*----------------
  メルマガフォーム
------------------*/

@media screen and (max-width: 767px) {
	[id*="signupFormContainer_"] fieldset {
		padding: 0 !important;
		width: 100%;
	}
}
[id*="signupFormContainer_"] select {
    font-weight: normal;
    font-style: normal;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
	outline: none;
	padding: 15px !important;
}
@media screen and (min-width: 768px) {
	[class*="formbox-field_"] {
		width: 50%;
	}
}
[id*="formbox_screen_subscribe_"] {
	display: flex !important;
	flex-wrap: wrap;
}
.email-marketing-by-b {
	display: none !important;
}
.present fieldset[class*="formbox-field_"]:nth-last-child(-n+2){
	width: 100%;
}

/*----------------
  メルマガフォーム
------------------*/

.heading-20230613 {
	padding: 0.5em 1em;
    background: #601887;
    color: #fff;
	margin-top: 3em;
}
.heading-20230613 p {
	margin: 0 !important;
}
.heading-20230613 .wp-block-column:first-child {
	flex-basis: 2em !important;
}
.heading-20230613 h3 {
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	color: #fff !important;
}

@media screen and (max-width: 767px) {
	.heading-20230613 p {
		margin: 0 !important;
	}
}

/*----------------
  2023.05 ニュース・プレスリリース修正
------------------*/

.c-column.news .l-main {
  max-width: 44em;
  margin-left: auto;
  margin-right: auto;
}
.l-header-news {
  width: 100%;
  padding: 0.5em 20px;
  margin-bottom: 10px;
  text-align: center;
  background-color: #eee;
  transition: 0.1s;
}
.l-header-news a {
  text-decoration: underline;
  font-size: 1.4rem;
  line-height: 1.3;
  display: inline-block;
  color: #040102;
}
.l-header-bar.fixed .l-header-news {
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-header-news {
    margin-bottom: 0;
  }
  .l-header-news a {
    font-size: 1.2rem;
  }
}