@charset "UTF-8";
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
figure {
  margin: 0;
  padding: 0;
}

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

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-weight: normal;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  line-height: 1.4;
}

img {
  vertical-align: bottom;
}

br {
  letter-spacing: 0;
}

a {
  text-decoration: none;
}

main,
section,
header,
footer,
nav,
figure,
address {
  display: block;
}

address {
  font-weight: normal;
  font-style: normal;
}

picture {
  display: block;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

mark {
  background-color: transparent;
  color: inherit;
}

sub {
  vertical-align: baseline;
  font-size: x-small;
}

hr {
  box-sizing: content-box;
  margin: 0;
  padding: 0;
  height: 0;
  border: 0;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=password],
input[type=url],
textarea {
  box-sizing: border-box;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 0;
  background-image: none;
  font-size: inherit !important;
  font-family: inherit;

  -webkit-appearance: none;
}

input[type=button],
input[type=submit] {
  border: none;
}

input[type=checkbox],
input[type=radio] {
  margin-right: 0.3em;
  vertical-align: middle;
}

label {
  cursor: pointer;
}

button {
  padding: 0;
  outline: inherit;
  border: none;
  background: transparent;
  cursor: pointer;

  -webkit-appearance: none;

     -moz-appearance: none;

          appearance: none;
}

button img {
  display: block;
}

textarea {
  resize: vertical;
}

select {
  padding: 3px 5px;
  background-color: #fff;
  font-family: sans-serif;

  -webkit-appearance: none;

     -moz-appearance: none;

          appearance: none;
}

body {
  -webkit-text-size-adjust: 100%;
}

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

input[type=image] {
  max-width: 100%;
  background-color: #fff;
}

input[type=submit],
input[type=button] {
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
}

/*** @keyframs
*************************************************/
@-webkit-keyframes scaleOut {
  0% {
    transform: scale(1.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scaleOut {
  0% {
    transform: scale(1.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes slideInLeft {
  from {
    visibility: visible;
    transform: translateX(-30%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  from {
    visibility: visible;
    transform: translateX(-30%);
  }
  to {
    transform: translateX(0);
  }
}
@-webkit-keyframes slideInRight {
  from {
    visibility: visible;
    transform: translateX(30%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    visibility: visible;
    transform: translateX(30%);
  }
  to {
    transform: translateX(0);
  }
}
html {
  font-size: 62.5%;
}

body {
  overflow-x: hidden;
  background-color: white;
  color: black;
  font-family: Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", "Roboto", Meiryo, "メイリオ", "Lucida Grande", Verdana, Arial, sans-serif;
}
a {
  color: inherit;
  transition: opacity 0.2s ease-out;
}
a:hover {
  opacity: 0.5;
}

/* html
---------------------------------------------------------*/
html {
  height: 100%;
}

/* body
---------------------------------------------------------*/
body {
  height: 100%;
  background-color: #eeeeee;
  font-size: 16px;
  font-size: 1.6rem;
}

/* wrapper : 全体を囲むラッパー
---------------------------------------------------------*/
.l-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-height: 100vh;
  height: 100%;
}

.is-menu-opend.l-wrapper {
  overflow: hidden;
}

/* inner : ページ幅を適用するクラス
---------------------------------------------------------*/
.l-inner {
  position: relative;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-right: calc( constant(safe-area-inset-right) + 20px );
  padding-right: calc( env(safe-area-inset-right) + 20px );
  padding-left: 20px;
  padding-left: calc( constant(safe-area-inset-left) + 20px );
  padding-left: calc( env(safe-area-inset-left) + 20px );
  max-width: 1366px;
}

.l-inner--narrow {
  max-width: 1110px;
}

/* ヘッダー
---------------------------------------------------------*/
.l-header {
  position: relative;
  z-index: 10;
}
.l-header > .l-inner {
  padding-bottom: 41px;
}

.l-header__upper {
  display: flex;
  height: 60px;
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: #dc000c;

  align-items: center;
}

.l-header__upper__pcnavi {
  display: none;
}

.l-header__notification,
.l-header__search-toggle {
  display: flex;
  margin-right: 0;
  margin-left: auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: white;
  color: #dc000c;

  justify-content: center;
  align-items: center;
}

.l-header__notification {
  display: none;
}

.l-header__lang-toggle {
  display: none;
}

.l-header__avatar {
  display: flex;
  overflow: hidden;
  margin-right: 0;
  margin-left: 5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #888888;
  color: #acacac;

  justify-content: center;
  align-items: center;
}

.l-header__navi-toggle {
  display: flex;
  margin-right: 0;
  margin-left: 5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #dc000c;

  justify-content: center;
  align-items: center;
}

.l-header__navi {
  position: absolute;
  top: 61px;
  right: 50%;
  overflow: hidden;
  box-sizing: border-box;
  padding: 20px 40px 0;
  min-height: 100vmax;
  width: 100%;
  height: calc(100vh - 41px);
  background-color: #eeeeee;
  transform: translateX(50%);
}

.l-header__navi__header {
  display: flex;
  margin-bottom: 30px;

  align-items: center;
}
.l-header__navi__header .c-link-arrow {
  margin-left: 20px;
}

.l-header__counter {
  position: absolute;
  right: 20px;
  bottom: 0;
}

.is-menu-opend .l-header__search-toggle,
.is-menu-opend .l-header__avatar {
  display: none;
}

.l-header__2ndrow {
  display: flex;

  align-items: center;
}

/* コンテンツ領域
---------------------------------------------------------*/
.l-contents {
  flex: 1;
}

/* サイドバー付2カラムの場合
 *    .l-inner 内包
---------------------------------------------------------*/

.l-contents__aside {
  display: none;
}

.l-contents__main {
  overflow: hidden;
  padding-bottom: 50px;

  flex: auto;
}

.l-contents__inner {
  padding: 50px 20px;
}
.l-contents__inner p {
  line-height: 1.8;
}

.l-contents__inner--form {
  margin: 50px 0;
  border-radius: 5px;
  background-color: white;
}

.l-contents__inner--large {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 697px;
}

.l-contents__inner--small {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 500px;
}

/* フッター
---------------------------------------------------------*/
.l-footer {
  position: relative;
  margin-top: 60px;
}

.l-footer__totop {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 100;
}

.l-footer__upper {
  padding-top: 60px;
  border-width: 2px 0 0;
  border-style: solid;
  border-color: #dc000c;
}

.l-footer__upper__links {
  margin-top: 20px;
  text-align: center;
}
.l-footer__upper__links .c-link + .c-link {
  margin-right: 0;
  margin-left: 30px;
}

.l-footer__lower {
  padding-top: 42px;
  padding-bottom: 60px;
}

.l-footer__lower__navi {
  display: flex;
  margin: 0 auto;
  margin-top: -1em;
  padding-bottom: 50px;
  max-width: 375px;

  justify-content: space-between;
  flex-wrap: wrap;
}
.l-footer__lower__navi li {
  margin-top: 1em;
  width: 50%;
}
.l-footer__lower__navi a {
  display: block;
  font-weight: bold;
  font-size: 1.2rem;
}

/* 概要       : 汎用セクション
 * 使用ページ : 汎用
 * タグ       : section
---------------------------------------------------------*/
/* 概要       : トップページのスクロールセクション
 * 使用ページ : home
 * タグ       : section
---------------------------------------------------------*/
/* 概要       : only for debug
 * 使用ページ : style
 * タグ       : section
---------------------------------------------------------*/
.l-section--style {
  padding: 30px 0;
}

.c-burger::before, .c-burger::after, .c-burger span {
  display: block;
  width: 100%;
  height: 1px;
  border-radius: 2px;
  background-color: white;
  content: "";
  transform-origin: center;
}

/* 概要     : メニュー用バーガーアイコン
 * 使用箇所 : ヘッダー SP
 * タグ     : div
---------------------------------------------------------*/
.c-burger {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 15px;
  height: 6px;

  justify-content: center;
}
.c-burger span {
  position: relative;
  opacity: 0;
}
.c-burger::before {
  position: absolute;
  top: 0;
  left: 0;
}
.c-burger::after {
  position: absolute;
  bottom: 0;
  left: 0;
}

.c-burger {
  transform-origin: left center;
}
#js-navi-toggle.is-open .c-burger::before {
  transform: translate(0, 2.5px) rotate(-45deg);
}
#js-navi-toggle.is-open .c-burger::after {
  transform: translate(0, -2.5px) rotate(45deg);
}

/* 概要     : 基本クラス
 * 使用箇所 : 汎用
 * タグ     : button
---------------------------------------------------------*/
.c-button {
  display: flex;
  box-sizing: border-box;
  padding: 0 2em;
  height: 50px;
  border-radius: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  font-size: 1.4rem;
  transition: opacity 0.2s ease-out;

  align-items: center;
}
.c-button:hover {
  opacity: 0.5;
}

.c-button__inner {
  display: flex;

  align-items: center;
}

.c-button--ghost {
  display: flex;
  box-sizing: border-box;
  padding: 0 2em;
  height: 50px;
  border-radius: 25px;
  background-color: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  font-size: 1.4rem;
  transition: opacity 0.2s ease-out;

  align-items: center;
}
.c-button--ghost:hover {
  opacity: 0.5;
}

.c-button--solid {
  display: flex;
  box-sizing: border-box;
  padding: 0 2em;
  height: 50px;
  border-radius: 25px;
  background-color: #dc000c;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  color: white;
  font-weight: bold;
  font-size: 1.4rem;
  transition: opacity 0.2s ease-out;

  align-items: center;
}
.c-button--solid:hover {
  opacity: 0.5;
}

.c-button--border {
  display: flex;
  box-sizing: border-box;
  padding: 0 2em;
  height: 50px;
  border: 1px solid;
  border-color: #dc000c;
  border-radius: 25px;
  background-color: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  font-size: 1.4rem;
  transition: opacity 0.2s ease-out;

  align-items: center;
}
.c-button--border:hover {
  opacity: 0.5;
}

.c-button--disable {
  display: flex;
  box-sizing: border-box;
  padding: 0 2em;
  height: 50px;
  border-radius: 25px;
  background-color: #cccccc;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  color: #888888;
  font-weight: bold;
  font-size: 1.4rem;
  transition: opacity 0.2s ease-out;

  align-items: center;
}
.c-button--disable:hover {
  opacity: 0.5;
}

.c-button--circleS-border {
  display: flex;
  box-sizing: border-box;
  padding: 0 2em;
  padding: 0 !important;
  width: 30px;
  height: 30px;
  border: 1px solid;
  border-color: #dc000c;
  border-radius: 15px;
  background-color: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  color: #dc000c;
  font-weight: bold;
  font-size: 1.4rem;
  transition: opacity 0.2s ease-out;

  align-items: center;
  justify-content: center;
}
.c-button--circleS-border:hover {
  opacity: 0.5;
}

.c-button--circleS-border-update {
  display: flex;
  box-sizing: border-box;
  padding: 0 2em;
  padding: 0 !important;
  width: 250px;
  height: 30px;
  border: 1px solid;
  border-color: #dc000c;
  border-radius: 15px;
  background-color: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  color: #dc000c;
  font-weight: bold;
  font-size: 1.4rem;
  transition: opacity 0.2s ease-out;
  position: absolute;
  top: 600px;
  left: 500px;

  align-items: center;
  justify-content: center;
}

.c-button--widthS {
  margin-right: auto;
  margin-left: auto;
  max-width: 200px;

  justify-content: center;
}

button.c-button--widthS {
  width: 200px;
}

.c-button--widthL {
  margin-right: auto;
  margin-left: auto;
  max-width: 380px;
  width: 100%;

  justify-content: center;
}

/* 概要     : スマホ段落ちするカラム
 * 使用箇所 : 汎用
 * タグ     : div
---------------------------------------------------------*/

.c-column--vstart {
  align-items: flex-start !important;
}

.c-column--vcenter {
  align-items: center !important;
}

.c-column--vstretch {
  align-items: stretch !important;
}

.c-column--hstart {
  justify-content: flex-start !important;
}

.c-column--reverse {
  flex-direction: row-reverse;
}

.c-column__item {
  box-sizing: border-box;
  width: 100%;

  flex: auto;
}
.c-column__item + .c-column__item {
  margin-top: 30px;
}

.c-column__item--none {
  flex: none;
}

.c-column__item--selfCenter {
  -ms-grid-row-align: center !important;
      align-self: center !important;
}

.c-column--keep {
  display: flex;

  justify-content: center;
}
.c-column--keep .c-column__item + .c-column__item {
  margin-top: 0 !important;
}

/* 概要     : 画像用カラムアイテム（直下に<img>）
 * 使用法   : .c-column__item.c-column__image
---------------------------------------------------------*/
.c-column__image img {
  width: 100%;
  height: 100%;
  font-family: "object-fit:cover;";

  -o-object-fit: cover;

     object-fit: cover;
}

/* 概要     : 常にカラム（space-between）
 * 使用箇所 : 汎用（ヘッダー・フッター）
 * 使用法   : 単体で使用
 * タグ     : div
---------------------------------------------------------*/
.c-space-between {
  display: flex;

  justify-content: space-between;
  align-items: center;
}

.c-space-between__left {
  margin-right: auto;
  margin-left: 0;
}

.c-space-between__right {
  margin-right: 0;
  margin-left: auto;
}

/* 概要     : 特集詳細ページのスタイル
 * 使用箇所 : features_entry
 * 使用法   : .c-column.c-column--feature
 * タグ     : div
---------------------------------------------------------*/
.c-column--feature {
  margin-top: 50px;
}
.c-column--feature .c-column__image img {
  font-family: "object-fit:contain;";

  -o-object-fit: contain;

     object-fit: contain;
}
.c-column--feature .c-heading--large {
  text-align: left;
}
.c-column--feature [class^=c-link-button] {
  margin-top: 30px;
  max-width: 200px;
}

/* 概要     : copyrights
 * 使用箇所 : footer
 * タグ     : small
---------------------------------------------------------*/
.c-copyrights {
  display: flex;
  color: #888888;
  font-weight: bold;
  font-size: 1.2rem;

  justify-content: center;
  align-items: center;
}
.c-copyrights span {
  margin-right: 0.5em;
  font-weight: 700 !important;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* 概要     : ドロップダウンリスト（selectを使用しない場合）
 * 使用箇所 : 汎用
 * タグ     : div > button (__toggle) + ul (__list)
---------------------------------------------------------*/
.c-dropdown {
  position: relative;
  display: block;
}

.c-dropdown__toggle {
  display: flex;
  padding: 0 20px;
  height: 30px;
  border-radius: 20px;
  background-color: #dc000c;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;

  justify-content: center;
  align-items: center;
}
.c-dropdown__toggle svg,
.c-dropdown__toggle i {
  margin-left: 0.5em;
}

.c-dropdown__list {
  position: absolute;
  right: 0;
  bottom: -10px;
  z-index: 20;
  display: none;
  padding: 5px;
  min-width: 100%;
  border-radius: 5px;
  background-color: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transform: translate(0, 100%);
}
.c-dropdown__list li {
  display: flex;
  height: 30px;
  background-color: #eeeeee;
  font-size: 1.4rem;

  align-items: center;
}
.c-dropdown__list li a {
  display: flex;
  padding: 0 5px;
  width: 100%;
  height: 30px;
  background-color: white;

  align-items: center;
}
.c-dropdown__list li svg,
.c-dropdown__list li i {
  padding: 0 5px;
  color: #dc000c;
}

.c-dropdown__list.is-open {
  display: block;
}

/* 概要     : <form>
 * 使用箇所 : 汎用
 * タグ     : form
---------------------------------------------------------*/
.c-form {
  display: block;
  margin: 30px 0;
  font-size: 1.4rem;
}
.c-form .c-button--border {
  color: #dc000c;
}

/* 概要     : form内複数項目を一行に納める際に使用
 * 使用箇所 : 汎用
 * タグ     : div
---------------------------------------------------------*/
.c-form__row {
  display: flex;
  width: 100%;

  align-items: center;
}
.c-form__row > *:nth-child(odd) {
  margin-right: 5px;

  flex: 1;
}
.c-form__row > *:nth-child(even) {
  margin-left: 5px;

  flex: 1;
}

.c-form__row + .c-form__row {
  margin-top: 10px;
}

/* 概要     : form内項目を一行ごとにする際に使用
 * 使用箇所 : 汎用
 * タグ     : fieldset
---------------------------------------------------------*/
.c-form__fieldset {
  display: block;
}
.c-form__fieldset label {
  font-weight: bold;
}
.c-form__fieldset label + input {
  margin-top: 5px;
}
.c-form__fieldset + .c-form__fieldset {
  margin-top: 20px;
}

/* 概要     : フォーム要素の基本スタイル
 * タグ     : input, textarea, select
---------------------------------------------------------*/
input[type=text],
input[type=email],
input[type=tel],
input[type=password],
textarea {
  box-sizing: border-box;
  padding: 0.5em 1em;
  width: 100%;
  border: none;
  border: 1px solid;
  border-color: #dededf;
  border-radius: 5px;
}

input.form-width-mini {
  width: 130px !important;
}

input.form-width-small {
  width: 200px !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #888888;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #888888;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #888888;
}

input::placeholder,
textarea::placeholder {
  color: #888888;
}

select {
  display: block;
  box-sizing: border-box;
  margin: 0;
  padding: 0.6em 1.4em 0.5em 0.8em;
  max-width: 100%;
  width: 100%;
  height: 100%;
  border: 1px solid #dddddd;
  border-radius: 5px;
  background-color: white;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23dc000c%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"), linear-gradient(to bottom, white 0%, white 100%);
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.65em auto, 100%;
  background-repeat: no-repeat, repeat;
  box-shadow: none;
  color: inherit;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 1.5;

  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

/* 概要     : 枠内コンテンツ
 * 使用箇所 : 汎用
 * タグ     : div, section, article
---------------------------------------------------------*/
.c-frame {
  display: block;
  box-sizing: border-box;
  padding: 40px;
  width: 100%;
  border-radius: 5px;
  background-color: white;
}

/* 概要     : グリッド
 * 使用箇所 : 汎用
 * タグ     : div
---------------------------------------------------------*/
.c-grid {
  display: -ms-grid;
  display: grid;
}

/* 概要     : 出展企業グリッド
 * 使用箇所 : all, company
 * タグ     : div
---------------------------------------------------------*/
.c-grid--company-cards {
  position: relative;

  -ms-grid-columns: (1fr)[2];

  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.c-grid--company-cards__more {
  position: absolute;
  right: 50%;
  bottom: 0;
  display: flex;
  width: 100%;
  height: 200px;
  background-image: linear-gradient(to bottom, rgba(238, 238, 238, 0) 0%, #eeeeee 80%);
  transform: translateX(50%);

  justify-content: center;
  align-items: flex-end;
}
.c-grid--company-cards__more button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  color: #dc000c;
  transition: opacity 0.2s ease-out;
}
.c-grid--company-cards__more button:hover {
  opacity: 0.5;
}

/* 概要     : 特集グリッド
 * 使用箇所 : features
 * タグ     : div
---------------------------------------------------------*/
.c-grid--feature-cards {
  position: relative;

  -ms-grid-columns: (1fr)[1];

  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

/* 概要     : 使い方グリッド
 * 使用箇所 : guide
 * タグ     : div.c-grid.c-grid--guide
 *              > section.c-grid--guide__item
---------------------------------------------------------*/
.c-grid--guide {
  margin: 40px 0 50px;

  -ms-grid-columns: (1fr)[1];

  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

/* 概要     : 見出し
 * 使用箇所 : 汎用
 * タグ     : h1 - h6, p
---------------------------------------------------------*/
.c-heading--medium, .c-heading--large, .c-heading--title {
  line-height: 1.2;
}

.c-heading--title {
  text-align: center;
  font-size: 50px;
  font-size: 5rem;
}

.c-heading--large {
  margin-bottom: 30px;
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
}

.c-heading--medium {
  margin-bottom: 30px;
  padding-top: 0.7em;
  border-width: 2px 0 0;
  border-style: dotted;
  border-color: #dc000c;
  color: #dc000c;
  font-size: 18px;
  font-size: 1.8rem;
}

/* 概要     : 見出し（画像）
 * タグ     : h1 - h6
---------------------------------------------------------*/
.c-heading--image {
  display: flex;
  margin-bottom: 20px;

  justify-content: center;
  align-content: center;
}
.c-heading--image img {
  display: block;
}

/* 概要     : 見出しセット
 * タグ     : div > span.en + span.jp
 * 箇所     : 汎用
---------------------------------------------------------*/
.c-heading-set {
  display: flex;
}
.c-heading-set .en {
  display: block;
  font-weight: 700 !important;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
}
.c-heading-set .jp {
  display: block;
  font-weight: bold;
}

/* 概要     : 見出しセット（タイトル）
 * タグ     : h1 > span.en + span.jp
 * 箇所     : 汎用
---------------------------------------------------------*/
.c-heading-set--title {
  flex-direction: column;
  margin-top: 60px;
  margin-bottom: 60px;

  align-items: center;
  justify-content: center;
}
.c-heading-set--title .en {
  color: #dc000c;
  font-size: 50px;
  font-size: 5rem;
}
.c-heading-set--title .jp {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
}

.c-heading-set--headline1 {
  margin-bottom: 30px;
  padding-top: 30px;
  border-width: 2px 0 0;
  border-style: solid;
  border-color: #dc000c;

  align-items: center;
}
.c-heading-set--headline1 .en {
  color: #dc000c;
  font-size: 24px;
  font-size: 2.4rem;
}
.c-heading-set--headline1 .jp {
  margin-left: 20px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
}

/* 概要     : 水平線
 * 使用箇所 : 汎用
 * タグ     : hr
---------------------------------------------------------*/
.c-hr {
  display: block;
  margin: 35px 0 20px;
  width: 100%;
  height: 1px;
  border: none;
  background-color: #dddddd;
}

/* 概要     : ドットの水平線
---------------------------------------------------------*/
.c-hr--dotted {
  display: block;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, black 1px, white 0, white 2px);
  background-position: 0 0;
  background-size: 3px 1px;
  background-repeat: repeat-x;
}

/* 概要     : 通常のリンク
 * 使用箇所 : 汎用
 * タグ     : a
---------------------------------------------------------*/
.c-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease-out;
}
.c-link:hover {
  opacity: 0.5;
}

.c-link--uline {
  color: #dc000c;
  text-decoration: underline;
}
.c-link--uline:hover {
  text-decoration: none;
  opacity: 1;
}

/* 概要     : ボタン形状のリンク
 * 使用箇所 : 汎用
 * タグ     : a
---------------------------------------------------------*/
.c-link-button--ghost {
  display: flex;
  box-sizing: border-box;
  padding: 0 2em;
  height: 40px;
  border-radius: 20px;
  background-color: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  font-size: 1.4rem;
  transition: opacity 0.2s ease-out;

  align-items: center;
}
.c-link-button--ghost:hover {
  opacity: 0.5;
}

.c-link-button--solid {
  display: flex;
  box-sizing: border-box;
  padding: 0 2em;
  height: 40px;
  border-radius: 20px;
  background-color: #dc000c;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  color: white;
  font-weight: bold;
  font-size: 1.4rem;
  transition: opacity 0.2s ease-out;

  align-items: center;
}
.c-link-button--solid:hover {
  opacity: 0.5;
}

.c-link-button--border {
  display: flex;
  box-sizing: border-box;
  padding: 0 2em;
  height: 40px;
  border: 1px solid;
  border-color: #dc000c;
  border-radius: 20px;
  background-color: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  font-size: 1.4rem;
  transition: opacity 0.2s ease-out;

  align-items: center;
}
.c-link-button--border:hover {
  opacity: 0.5;
}

.c-link-button--circle-border {
  display: flex;
  box-sizing: border-box;
  padding: 0 2em;
  padding: 0 !important;
  width: 50px;
  height: 50px;
  border: 1px solid;
  border-color: #dc000c;
  border-radius: 25px;
  background-color: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  color: #dc000c;
  font-weight: bold;
  font-size: 1.4rem;
  transition: opacity 0.2s ease-out;

  align-items: center;
  justify-content: center;
}
.c-link-button--circle-border:hover {
  opacity: 0.5;
}

.c-link-button--border-fixed {
  display: flex;
  box-sizing: border-box;
  padding: 0 2em;
  height: 40px;
  border: 1px solid;
  border-color: #dc000c;
  border-radius: 20px;
  background-color: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  font-size: 1.4rem;
  transition: opacity 0.2s ease-out;

  align-items: center;
}
.c-link-button--border-fixed:hover {
  opacity: 0.5;
}

.c-link-button--widthS {
  margin-right: auto;
  margin-left: auto;
  max-width: 200px;

  justify-content: center;
}

.c-link-button--widthL {
  margin-right: auto;
  margin-left: auto;
  max-width: 380px;
  width: 100%;

  justify-content: center;
}

.c-link-button--center {
  justify-content: center;
}

/* 概要     : リンク（複数）を囲む要素
 * 使用箇所 : 汎用
 * タグ     : div > a
---------------------------------------------------------*/
.c-link-button-container {
  display: flex;

  justify-content: center;
  flex-wrap: wrap;
}
.c-link-button-container .c-link-button--widthS {
  width: 100%;
}
.c-link-button-container .c-link-button--widthS + .c-link-button--widthS {
  margin-top: 20px;
}
.c-link-button-container .c-link-button--border {
  color: #dc000c;
}

/* 概要     : リンクボタン内部に fa アイコンを含む
 * 使用箇所 : 汎用
 * タグ     : a
---------------------------------------------------------*/
.c-link-button--with-icon > svg,
.c-link-button--with-icon > i {
  margin-right: 0.3em;
}
.c-link-button--with-icon.c-link-button--ghost > svg,
.c-link-button--with-icon.c-link-button--ghost > i, .c-link-button--with-icon.c-link-button--border-fixed > svg,
.c-link-button--with-icon.c-link-button--border-fixed > i {
  color: #dc000c;
}

/* 概要     : リンクボタン内部のカウンター表示
 * 使用箇所 : company
 * タグ     : span
---------------------------------------------------------*/
.c-link-button__counter {
  display: inline-flex;
  margin-left: 0.6em;
  padding: 0 0.2em;
  height: 20px;
  border-radius: 10px;
  background-color: #eeeeee;
  color: #888888;
  font-size: 1rem;

  align-items: center;
}

/* 概要     : ブランドリンクボタン
 * 使用箇所 : login
 * タグ     : a
---------------------------------------------------------*/
.c-link-button--brand {
  margin-top: 20px;
  border: 1px solid #dddddd;

  justify-content: center;
}
.c-link-button--brand img,
.c-link-button--brand svg,
.c-link-button--brand i {
  margin-right: 0.3em;
}
.c-link-button--brand .fa-facebook-f {
  color: #1778F2;
}

/* 概要     : エントリー内リスト
 * 使用箇所 : 汎用
 * タグ     : ul
---------------------------------------------------------*/
ul.c-list-entry {
  line-height: 1.8;
}
ul.c-list-entry > li {
  padding-left: 21px;
}
ul.c-list-entry ul, ul.c-list-entry ol {
  padding-left: 21px;
}

/* 概要     : エントリー内番号付きリスト
 * 使用箇所 : 汎用
 * タグ     : ol
---------------------------------------------------------*/
ol.c-ordered-list {
  counter-reset: list-item;
}
ol.c-ordered-list > li {
  padding-left: 23px;
  line-height: 1.75;
}
ol.c-ordered-list > li::before {
  display: inline-flex;
  margin-right: 5px;
  margin-left: -23px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: white;
  content: counter(list-item);
  font-weight: 500;
  font-size: 12px;

  justify-content: center;
  align-items: center;
}
ol.c-ordered-list ul, ol.c-ordered-list ol {
  padding-left: 23px;
}

/* 概要     : シンプルな定義リスト(横並び) 
 * 使用箇所 : 汎用
 * タグ     : dl
---------------------------------------------------------*/
dl.c-defined-list dt {
  display: inline;
  font-weight: normal;
}
dl.c-defined-list dd {
  display: inline;
  margin-left: 1em;
}
dl.c-defined-list dd + dt::before {
  content: "\a";
  white-space: pre;
}

/* 概要     : インラインリスト
 *            要素がインラインに並び、キャレットが付く
 * 使用箇所 : 汎用
 * タグ     : ul
---------------------------------------------------------*/
.c-list-inline {
  display: flex;

  justify-content: flex-start;
  align-items: center;
}
.c-list-inline li {
  padding: 0.2em 0;
}

.c-list-inline--pcheader {
  color: #dc000c;
  font-weight: bold;
  font-size: 14px;
  font-size: 1.4rem;
}
.c-list-inline--pcheader li {
  margin-left: 40px;
}

.c-list-inline--sns {
  margin: 0 auto;
  width: 290px;

  justify-content: space-between;
}
.c-list-inline--sns a {
  display: flex;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  color: #dc000c;

  justify-content: center;
  align-items: center;
}

/* 概要     : シンプルリスト（通常の・）
 * 使用箇所 : 汎用
 * タグ     : ul
---------------------------------------------------------*/
.c-list-simple > li {
  padding-left: 21px;
}
.c-list-simple > li::before {
  display: inline-block;
  margin-left: -21px;
  width: 21px;
  content: "・";
}

/* 概要     : シンプルリスト（通常の・をテキストに含める）
 * 使用箇所 : 汎用
 * タグ     : ul
---------------------------------------------------------*/
.c-list-inside > li {
  padding-left: 1.2em;
}
.c-list-inside > li:first-letter {
  margin-left: -1em;
}
.c-list-inside > li + li {
  margin-top: 0.75em;
}

/* 概要     : 検索（input + button）
 * 使用箇所 : 汎用
 * タグ     : div.c-search
 *              > input.c-search__input
 *              + button.c-search__button
---------------------------------------------------------*/
.c-search {
  position: relative;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  max-width: 600px;

  align-items: center;
}

input.c-search__input {
  box-sizing: border-box;
  padding: 0.3em 1em 0.3em 40px;
  width: 100%;
  height: 40px;
  border: 1px solid #dddddd;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.c-search__button {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  width: 40px;
  height: 40px;
  color: #dc000c;
  transform: translateY(-50%);

  justify-content: center;
  align-items: center;
}

/* 概要     : PCサイズから段組するテーブル
 * 使用箇所 : 汎用
 * タグ     : div, table
---------------------------------------------------------*/
.c-sptable {
  display: block;
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.c-sptable__thead {
  display: block;
}

.c-sptable__tbody {
  display: block;
}

.c-sptable__tr {
  display: block;
}

.c-sptable__th {
  position: relative;
  display: block;
  box-sizing: border-box;
  padding: 1em 0 10px;
  white-space: nowrap;
  font-weight: bold;
}

.c-sptable__td {
  display: block;
  box-sizing: border-box;
  padding-bottom: 1em;
  border-bottom: 1px solid #dddddd;
  word-break: break-word;
}

.c-sptable__th {
  vertical-align: middle;
}

.c-sptable__td {
  vertical-align: middle;
}
.c-sptable--form .c-sptable__td {
  border: none;
}

/* 概要     : 通常のテーブル
 * 使用箇所 : 汎用
 * タグ     : table
---------------------------------------------------------*/
.c-table {
  width: 100%;
  border-collapse: collapse;
}
.c-table th,
.c-table td {
  padding: 20px;
  border-bottom: 2px solid #dddddd;
}
.c-table th {
  padding-right: 10px;
  vertical-align: text-top;
  text-align: left;
  white-space: nowrap;
  font-weight: bold;
}
.c-table td {
  padding-left: 10px;
}
.c-table td.v-center > * {
  vertical-align: middle;
}

/* 概要     : シンプルな下線（）
 * 使用箇所 : モーダル内
 * タグ     : table
---------------------------------------------------------*/
.c-table-chart {
  margin-top: 30px;
  margin-bottom: 40px;
  width: 100%;
}
.c-table-chart th,
.c-table-chart td {
  border-bottom: 1px solid #dddddd;
  vertical-align: text-top;
  text-align: left;
  line-height: 1.5;
}
.c-table-chart th {
  padding-bottom: 0.5em;
}
.c-table-chart td,
.c-table-chart tbody th {
  box-sizing: border-box;
  padding-top: 1em;
  padding-bottom: 1em;
  width: 50%;
  word-break: break-word;
}
.c-table-chart thead th:first-child,
.c-table-chart td:first-child {
  padding-right: 0.5em;
}
.c-table-chart thead th:not(:first-child),
.c-table-chart td:not(:first-child) {
  padding-left: 0.5em;
}
.c-table-chart tbody th,
.c-table-chart tr.with-caption td {
  padding-bottom: 0;
  border-bottom: none;
}

/* 概要     : 画面サイズ小でスクロールヒント
 * 使用箇所 : 汎用
 * タグ     : div.c-scrollable-table
 *              > table.c-scrollable-table__inner
 *                > table.c-scrollable-table__table
---------------------------------------------------------*/
.c-scrollable-table {
  background-color: white;
}

.c-scrollable-table__inner {
  position: relative;
  overflow: auto;
  width: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.2)) 0 0/20px 100%, linear-gradient(to right, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.2)) right/20px 100%;
  background-attachment: scroll;
  background-repeat: no-repeat;
}

.c-scrollable-table__table {
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white 15px) 0 0/50px 100%, linear-gradient(to right, rgba(255, 255, 255, 0), white 15px) right/50px 100%;
  background-attachment: local;
  background-repeat: no-repeat;
}
.c-scrollable-table__table th {
  padding: 16px;
  text-align: left;
  font-weight: normal;
}
.c-scrollable-table__table td {
  padding: 10px 16px;
  white-space: nowrap;
}
.c-scrollable-table__table .c-link-button--border-fixed {
  background-color: transparent;
}

/* 概要     : リード情報ページでのスタイル
 * 使用箇所 : report
---------------------------------------------------------*/
.c-scrollable-table--report {
  overflow: hidden;
  border-radius: 5px;
}
.c-scrollable-table--report .icon {
  display: inline-flex;
  overflow: hidden;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: #888888;
  color: #acacac;
  font-size: 1.8rem;

  justify-content: center;
  align-items: center;
}
.c-scrollable-table--report .title {
  margin-left: 10px;
  vertical-align: text-bottom;
}
.c-scrollable-table--report tr:last-child td {
  border-bottom: 0;
}

/* 概要     : アカウント情報（来場者）
 * 使用箇所 : user
 * タグ     : article
---------------------------------------------------------*/
.p-account {
  display: block;
}

.p-account__header {
  display: flex;
  font-size: 3rem;

  align-items: center;
}

.p-account__avatar {
  display: flex;
  overflow: hidden;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background-color: #888888;
  color: #acacac;

  flex: none;
  justify-content: center;
  align-items: center;
}

.p-account__name {
  margin-left: 20px;
}
.p-account__name .p-custom-input--toggled {
  flex-wrap: wrap;
}
.p-account__name .p-custom-input--toggled > input {
  padding: 0.2em 0.7em;
  max-width: 6em;
}
.p-account__name span {
  display: block;
  margin-left: 10px;

  flex: none;
}

.p-account__body {
  margin-top: 20px;
}

/* 概要     : 吹き出し（顔写真＋文章）
 * 使用箇所 : company（チャットウィンドウ）
 * タグ     : div
---------------------------------------------------------*/
.c-balloon--right, .c-balloon--left {
  position: relative;
  display: flex;
}

.c-balloon__avatar {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: #888888;
  color: #acacac;

  align-items: center;
  justify-content: center;
}

.c-balloon__body {
  position: relative;
  padding: 0.7em 1.3em;
  border-radius: 5px;
  color: #222;
  font-size: 1.4rem;
}
.c-balloon__body p {
  margin-top: 0 !important;
  line-height: 1.8;
}

/* 左側に顔（顔＋文章） */
.c-balloon--left {
  justify-content: flex-start;
}
.c-balloon--left .c-balloon__body {
  margin-right: 30px;
  margin-left: 60px;
  background-color: #ffeced;
}
.c-balloon--left .c-balloon__avatar + .c-balloon__body::before {
  position: absolute;
  bottom: 0;
  left: 0;
  border: 10px solid transparent;
  border-top-color: #ffeced;
  content: "";
  transform: translateX(-50%);
}

/* 右側に顔（文章＋顔） */
.c-balloon--right {
  justify-content: flex-end;
}
.c-balloon--right .c-balloon__body {
  margin-right: 0;
  margin-left: 80px;
  background-color: #eeeeee;
}

.c-balloon--left + .c-balloon--right .c-balloon__body::before {
  position: absolute;
  right: 0;
  bottom: 0;
  border: 10px solid transparent;
  border-top-color: #eee;
  content: "";
  transform: translateX(50%);
}

[class^=c-balloon] + [class^=c-balloon] {
  margin-top: 10px;
}

/* 概要     : ブランディングエリア（ロゴ）
 * 使用箇所 : ヘッダー
 * タグ     : a, p
---------------------------------------------------------*/
.p-branding {
  display: block;
  margin-right: auto;
  margin-left: 0;
  width: 180px;
}

/* 概要     : 来場者数カウンター
 * 使用箇所 : 汎用
 * タグ     : div, section, article
---------------------------------------------------------*/
.p-counter {
  display: inline-flex;
  padding: 0 20px;
  width: auto;
  height: 30px;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.05);
  font-size: 1rem;

  align-items: center;
}
.p-counter svg,
.p-counter i {
  color: #dc000c;
  font-size: 1.4rem;
}

.p-counter__number {
  margin: 0 5px;
  color: #dc000c;
  font-weight: 700 !important;
  font-size: 1.4rem;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* 概要     : 出展企業カード(個別）
 * 使用箇所 : 汎用
 * タグ     : article
---------------------------------------------------------*/
.p-company-card {
  display: block;
  width: 100%;
  height: clamp(280px, 37.33vw, 424px);
  border-radius: 5px;
  background-image: linear-gradient(to bottom, #bbb 50%, white 90%, white 100%);
}

/* 概要     : マシンカード(個別）インナー
 * 使用箇所 : home
              ※後からのブロックリンク化対応
 * タグ     : a
---------------------------------------------------------*/
a.p-company-card__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
  padding: 10px;
  width: 100%;
  height: 100%;
}

.p-company-card__dummy {
  padding-top: 20px;
  color: #707070;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
}

.p-company-card__name {
  margin-top: auto;
  color: #dc000c;
  font-weight: bold;
  font-size: 1.2rem;
}

.p-company-card__logo {
  margin-top: 10px;
  margin-bottom: 0;
  width: 100%;
}
.p-company-card__logo img {
  width: 100%;
  height: 100%;

  -o-object-fit: contain;

     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

/* 概要     : 企業情報詳細
 * 使用箇所 : company
 * タグ     : div
---------------------------------------------------------*/
.p-company-info {
  display: block;
  margin-top: 10px;
  margin-bottom: 60px;
}

/* 概要     : 企業情報詳細　カルーセル部分
 * 使用箇所 : company
 * タグ     : div
---------------------------------------------------------*/
.p-company-info__carousel {
  position: relative;
}
.p-company-info__carousel img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);

  -o-object-fit: cover;

     object-fit: cover;
}

.p-company-info__carousel .swiper {
  padding-bottom: 10px;
}
.p-company-info__carousel .swiper-horizontal > .swiper-pagination-bullets {
  position: relative;
  bottom: 0;
  margin-top: 20px;
}
.p-company-info__carousel .swiper-pagination-bullet {
  width: 60px;
  height: 60px;
  border-radius: 0;
  background-color: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  color: inherit;
  text-align: center;
  font-weight: 700 !important;
  font-size: 20px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 60px;
  opacity: 1;
}
.p-company-info__carousel .swiper-pagination-bullet-active {
  background-color: #dc000c;
  color: white;
}

.p-company-info__carousel__counter {
  position: absolute;
  right: 20px;
  bottom: 100px;
  z-index: 1;
  display: flex;
  box-sizing: border-box;
  padding: 0 10px;
  width: 126px;
  height: 32px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.5);

  align-items: center;
}
.p-company-info__carousel__counter svg,
.p-company-info__carousel__counter i {
  margin-right: 3px;
  color: #dc000c;
  font-size: 1.2rem;
}
.p-company-info__carousel__counter span {
  color: white;
  white-space: nowrap;
  font-weight: 700 !important;
  font-size: 1.4rem;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* 概要     : 企業情報詳細　本体
 * 使用箇所 : company
 * タグ     : div
---------------------------------------------------------*/
.p-company-info__body {
  display: flex;
  flex-direction: column;
  padding-top: 30px;
}

.p-company-info__body__inner {
  display: block;
  overflow: scroll;
  width: 100%;
  height: clamp(270px, 46.41vw, 634px);
}
.p-company-info__body__inner p {
  font-size: 1.4rem;
  line-height: 1.8;
}
.p-company-info__body__inner p + p {
  margin-top: 25px;
}

.p-company-info__body__header {
  display: flex;

  align-items: flex-start;
}

.p-company-info__body__logo img {
  width: 100%;
  height: 100%;

  -o-object-fit: contain;

     object-fit: contain;
}

.p-company-info__body__bookmark {
  display: flex;
  margin-right: 10px;
  margin-left: auto;
  width: 40px;
  height: 40px;
  border: 1px solid #dddddd;
  border-radius: 20px;

  justify-content: center;
  align-items: center;
}
.p-company-info__body__bookmark svg,
.p-company-info__body__bookmark i {
  color: #acacac;
}

.p-company-info__body__bookmark_red svg,
.p-company-info__body__bookmark_red i {
  color: #f90606;
}

.p-company-info__body__name {
  margin-top: 1em;
  font-weight: bold;
  font-size: 1.4rem;
}

.p-company-info__body__catch {
  margin-top: 1em;
}

.p-company-info__body__link {
  display: block;
}
.p-company-info__body__link .fa-laptop {
  color: #dc000c;
}
.p-company-info__body__link span {
  color: inherit;
}

.p-company-info__body__buttons {
  display: flex;
  margin-top: auto;
  padding-top: 20px;

  flex-wrap: wrap;
  gap: 10px;
}
.p-company-info__body__buttons a {
  padding: 0 1em;
  width: calc(50% - 10px);
  font-size: 1.2rem;

  flex: auto;
}

/* slick
-------------------------------------------------------- */
.p-carousel .slick-slide {
  box-sizing: border-box;
}
.p-carousel .slick-slide img {
  margin-right: auto;
  margin-left: auto;
}

/* 概要     : カスタムされた<input type=text>
 * 使用箇所 : 汎用
 * タグ     : input
---------------------------------------------------------*/
/* 概要     : 入力可と不可を切り替えられる<input type=text>
 * 使用箇所 : 汎用
 * タグ     : div > input + button
---------------------------------------------------------*/
.p-custom-input--toggled {
  display: flex;
  width: 100%;

  align-items: center;
}
.p-custom-input--toggled > input {
  width: calc(100% - 40px);
  font-size: inherit;
}
.p-custom-input--toggled > button {
  margin-left: 10px;
}

.p-custom-input--toggled2 > button {
  margin-left: 50px;
}
.p-custom-input--toggled > input[disabled] {
  border-color: transparent;
  background-color: transparent;
  color: black;
  opacity: 1;
}

/* 概要     : ドラッグ&ドロップによるファイル入力
 * 使用箇所 : 汎用
 * タグ     : div > div(__area) + button
---------------------------------------------------------*/
.p-dragdrop {
  position: relative;
  display: flex;

  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.p-dragdrop__area {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 200px;
  height: 200px;
  border-radius: 20px;
  background-color: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  text-align: center;

  justify-content: center;
}
.p-dragdrop__area svg,
.p-dragdrop__area i {
  color: #dddddd;
  font-size: 5rem;
}
.p-dragdrop__area span {
  display: block;
  margin-top: 20px;
  color: #222;
  font-size: 1.4rem;
}
.p-dragdrop__area img {
  width: 100%;
  height: 100%;

  -o-object-fit: cover;

     object-fit: cover;
}

.p-dragdrop__button {
  position: relative;
  margin-top: 20px;
}
.p-dragdrop__button span {
  color: black;
}
.p-dragdrop__button svg,
.p-dragdrop__button i {
  margin-right: 10px;
  color: #dc000c;
}

.p-dragdrop__button__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* 概要     : 特集カード(個別）
 * 使用箇所 : features_index
 * タグ     : article
---------------------------------------------------------*/
.p-feature-card {
  display: block;
  width: 100%;
  border-radius: 5px;
  background-color: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* 概要     : 特集カード(個別）インナー
 * 使用箇所 : features_index
              ※後からのブロックリンク化対応
 * タグ     : a
---------------------------------------------------------*/
.p-feature-card__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
  padding: 10px;
  width: 100%;
  height: 100%;
}

.p-feature-card__image {
  display: block;
  transition: opacity 0.2s ease-out;
}
.p-feature-card__image:hover {
  opacity: 0.5;
}
.p-feature-card__image img {
  width: 100%;
  height: 100%;

  -o-object-fit: cover;

     object-fit: cover;
}

.p-feature-card__body {
  padding: 27px 30px 30px;
}
.p-feature-card__body .c-heading--large {
  text-align: left;
}

/* 概要     : キービジュアル
 * 使用箇所 : 共通（home以外）
 * タグ     : div
---------------------------------------------------------*/
.p-keyvisual {
  display: flex;
  width: 100%;

  justify-content: center;
  align-items: center;
}

/* 概要     : キービジュアル
 * 使用箇所 : all
 * タグ     : div
---------------------------------------------------------*/
.p-keyvisual--all {
  position: relative;
}
.p-keyvisual--all > .l-inner {
  z-index: 1;
}

.p-keyvisual--all .p-keyvisual__title {
  position: relative;
  display: flex;
  padding-top: 30px;

  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.p-keyvisual--all .p-keyvisual__title .p-keyvisual__title__icon {
  margin-right: 10px;
  width: 89px;
}
.p-keyvisual--all .p-keyvisual__title .p-keyvisual__title__typo {
  flex: auto;
}
.p-keyvisual--all .p-keyvisual__title .p-keyvisual__title__date {
  display: block;
  box-sizing: border-box;
  margin-top: 24px;
  padding: 10px 15px;
  width: 100%;
  border-radius: 5px;
  background-color: white;
  font-weight: 700 !important;
  font-size: 3.4rem;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1;
}

.p-keyvisual--all__image {
  width: 100%;
  text-align: right;
}
.p-keyvisual--all__image img {
  width: 100%;
  height: 100%;

  -o-object-fit: cover;

     object-fit: cover;
}

.p-keyvisual--all .p-keyvisual__catch {
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: bold;
}

/* 概要     : キービジュアル（特集バナー詳細）
 * 使用箇所 : features_entry
 * タグ     : div
---------------------------------------------------------*/
.p-keyvisual--feature img {
  width: 100%;
  height: 100%;

  -o-object-fit: cover;

     object-fit: cover;
}

/* 概要     : リンクリスト
 * 使用箇所 : mylist, history, report
 * タグ     : ul.p-link-list
 *              > li.p-link-list__item
 *                > a.p-link-list__link
---------------------------------------------------------*/
.p-link-list {
  width: 100%;
}

.p-link-list__item {
  position: relative;
  display: flex;
  padding: 10px 20px;
  border-bottom: 1px solid #dddddd;
  background-color: white;

  align-items: center;
}
.p-link-list__item:first-child {
  border-radius: 5px 5px 0 0;
}
.p-link-list__item:last-child {
  border: none;
  border-radius: 0 0 5px 5px;
}
.p-link-list__item .icon {
  display: flex;
  overflow: hidden;
  margin-right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: #888888;
  color: #acacac;
  font-size: 1.8rem;

  flex: none;
  justify-content: center;
  align-items: center;
}
.p-link-list__item .title {
  display: block;
}

.p-link-list__link-circle {
  display: flex;
  box-sizing: border-box;
  margin-right: 0;
  margin-left: auto;
  padding: 0 2em;
  padding: 0 !important;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: #dc000c;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  color: white;
  font-weight: bold;
  font-size: 1.4rem;
  transition: opacity 0.2s ease-out;

  flex: none;
  align-items: center;
  justify-content: center;
}
.p-link-list__link-circle:hover {
  opacity: 0.5;
}

/* 概要     : マイリストのリンクリスト
 * 使用箇所 : mylist
 * タグ     : ul.p-link-list.p-link-list--mylist
---------------------------------------------------------*/
.p-link-list--mylist {
  display: -ms-grid;
  display: grid;

  -ms-grid-columns: (1fr)[1];

  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.p-link-list--mylist .p-link-list__item {
  border-radius: 5px;
}
.p-link-list--mylist .button-close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #eeeeee;

  justify-content: center;
  align-items: center;
}
.p-link-list--mylist .button-close::before, .p-link-list--mylist .button-close::after {
  display: block;
  width: 8px;
  height: 1px;
  border-radius: 2px;
  background-color: #888888;
  content: "";
  transform-origin: center;
}
.p-link-list--mylist .button-close::before {
  transform: translateX(50%) rotate(45deg);
}
.p-link-list--mylist .button-close::after {
  transform: translateX(-50%) rotate(-45deg);
}

/*
 * 概要     : モーダル（チャット画面）
 *  Micromodal.js を使用
 *  jsのデフォルトスタイルは、sass/object/project/vender/_micromodal.scss
 * 使用箇所 : company
 * タグ     : div
---------------------------------------------------------*/
.p-modal__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: flex;
  background: rgba(0, 0, 0, 0.6);

  justify-content: center;
  align-items: center;
}

.p-modal__container {
  position: relative;
  overflow-y: auto;
  box-sizing: border-box;
  max-width: 500px;
  max-height: 100vh;
  border-radius: 4px;
  background-color: white;
}

.p-modal__header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  padding: 10px;
  background-color: #dc000c;
  color: white;

  justify-content: space-between;
  align-items: center;
}

.p-modal__title {
  padding-left: 10px;
  font-weight: bold;
  font-size: 1.4rem;
}

.p-modal__close {
  display: flex;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;

  justify-content: center;
  align-items: center;
}
.p-modal__close::before, .p-modal__close::after {
  display: block;
  width: 25px;
  height: 1px;
  border-radius: 2px;
  background-color: #dc000c;
  content: "";
  transform-origin: center;
}
.p-modal__close::before {
  transform: translateX(50%) rotate(45deg);
}
.p-modal__close::after {
  transform: translateX(-50%) rotate(-45deg);
}

.p-modal__content {
  padding: 20px;
  line-height: 1.8;
}

.p-modal__footer {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  padding: 10px;
  background-color: #f2f2f2;
}
.p-modal__footer form {
  display: flex;

  align-items: center;
}
.p-modal__footer button {
  margin-right: 0;
  margin-left: auto;
}

.p-modal__footer__input {
  margin: 0 auto;
  padding: 0 10px;

  flex: 1;
}
.p-modal__footer__input input[type=text] {
  width: 100%;
  border: 0;
  background-color: transparent;
}

@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@-webkit-keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

#js-navi {
  display: none;
}

#js-navi.is-open {
  display: block;
}

/* 概要     : グローバルナビの親要素（SP）
 * 使用箇所 : ヘッダー
 * タグ     : nav
---------------------------------------------------------*/
.p-navi {
  top: 0;
  z-index: 100;
  width: 100%;
}

/* 概要     : グローバルナビ
 * 使用箇所 : ヘッダー
 * タグ     : ul
---------------------------------------------------------*/
.p-navi__list {
  position: static;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

.p-navi__list__item {
  margin: 10px 0;
}
.p-navi__list__item a {
  display: flex;
  box-sizing: border-box;
  padding: 0 30px;
  height: 60px;
  border-radius: 30px;
  background-color: white;
  transition: opacity 0.2s ease-out;

  align-items: center;
}
.p-navi__list__item a:hover {
  opacity: 0.5;
}
.p-navi__list__item svg,
.p-navi__list__item i {
  color: #dc000c;
}
.p-navi__list__item span {
  margin-left: 0.5em;
  color: black;
  font-weight: bold;
  font-size: 1.4rem;
}
.p-navi__list__item svg.fa-long-arrow-alt-right,
.p-navi__list__item i.fa-long-arrow-alt-right {
  margin-right: 0;
  margin-left: auto;
  color: #dddddd;
}

.u-align-left {
  text-align: left !important;
}

.u-align-left__center {
  text-align: left;
}

.u-align-center {
  text-align: center !important;
}

.u-align-center__left {
  text-align: center;
}

.u-align-right {
  text-align: right !important;
}

.u-align-right__center {
  text-align: right;
}

.u-bg-half {
  background: linear-gradient(to bottom, white 50%, #f5f7fa 0);
}

.u-image-svg-asset {
  display: none;
}

.u-image-block {
  display: block;
}

.u-image-block-center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.u-image-x2 {
  max-width: 50%;
}

/* 親要素を満たす */
.u-image-fill {
  min-width: 100%;
  min-height: 100%;
}

/* img を囲む要素につける */
.u-image-cover-center {
  position: relative;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 100%;

  justify-content: center;
  align-items: center;
}
.u-image-cover-center > img {
  position: absolute;
  right: 50%;
  bottom: 50%;
  display: block;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, 50%);
}

/* スマホ時inner内にあるが、横幅=画面幅 */
.u-image-spvmax {
  position: relative;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
}

/* デコ（影 + 角丸） */
.u-image-deco {
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.u-link-hover {
  transition: opacity 0.2s ease-out;
}
.u-link-hover:hover {
  opacity: 0.5;
}

.u-link-uline {
  color: #093586;
  text-decoration: underline;
}
.u-link-uline:hover {
  text-decoration: none;
}

.u-link-noline {
  text-decoration: none;
}
.u-link-noline:hover {
  text-decoration: underline;
}

.u-mt0 {
  margin-top: 0px !important;
}

.u-mb0 {
  margin-bottom: 0px !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mt55 {
  margin-top: 55px !important;
}

.u-mb55 {
  margin-bottom: 55px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-text-bold {
  font-weight: bold !important;
}

.u-text-normal {
  font-weight: normal !important;
}

.u-text-strike {
  text-decoration: line-through;
}

.u-text-underline {
  text-decoration: underline;
}

.u-text-color-caution {
  color: #ff0000;
}

.u-text-color-error {
  color: #ff0000;
}

.u-text-color-placeholder {
  color: #888888;
}

.u-text-color-default {
  color: black !important;
}

.u-text-color-red {
  color: #dc000c;
}

.u-text-time {
  font-size: 14px;
  font-size: 1.4rem;
}

.u-text-notice {
  color: #888888;
  font-size: 14px;
  font-size: 1.4rem;
}

p.u-text-notice {
  margin-top: 1em !important;
  line-height: 1.3 !important;
}

.u-text-required {
  padding: 0 0.5em;
  color: #ff0000;
  font-size: 14px;
  font-size: 1.4rem;
}

.u-text-lead {
  margin: 30px 0;
  color: #dc000c;
  font-weight: normal;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.8;
}

.u-text-sentence {
  line-height: 1.8;
}
.u-text-sentence p + p {
  margin-top: 1em;
}

.u-only-sp {
  display: block;
}

.u-only-sp-inline {
  display: inline;
}

.u-only-pc {
  display: none;
}

.u-only-pc-inline {
  display: none;
}

.u-hide {
  display: none !important;
}

.u-typo-body {
  font-size: 16px;
  font-size: 1.6rem;
}

.u-typo-small {
  font-size: 14px;
  font-size: 1.4rem;
}

.u-typo-mini {
  font-size: 12px;
  font-size: 1.2rem;
}

.u-typo-LL {
  font-size: 28px;
  font-size: 2.8rem;
}

.u-typo-L {
  font-size: 20px;
  font-size: 2rem;
}

.u-typo-M {
  font-size: 16px;
  font-size: 1.6rem;
}

.u-typo-S {
  font-size: 14px;
  font-size: 1.4rem;
}

.u-typo-SS {
  font-size: 12px;
  font-size: 1.2rem;
}

.u-width-quarter {
  width: 25%;
}

.u-width-half {
  width: 50%;
}

.u-width-full {
  width: 100%;
}

.u-width-full__half {
  width: 100%;
}

.u-none-background {
  background: none !important;
}

.u-none-border {
  border: none !important;
}

.u-sp-full {
  position: relative;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
}

/* =========================================================
   Foundation
========================================================= */
/* initialize
-------------------------------------------------------- */
/* ========================================================
   Layout
======================================================== */
/* ========================================================
   Object
======================================================== */
/* component
-------------------------------------------------------- */
/* project
-------------------------------------------------------- */
/* interaction */
/* vender */
/* utility
-------------------------------------------------------- */
@media only print, screen and (min-width: 750px){
  a[href*="tel:"]{
    pointer-events: none;
  }
  body{
    font-size: 16px;
    font-size: 1.6rem;
  }
  .is-menu-opend.l-wrapper{
    overflow: auto;
  }
  .l-contents--sidebar > .l-inner{
    display: flex;
  }
  .l-contents--sidebar .l-contents__main{
    padding-left: min(5.85vw, 80px);
  }
  .l-contents__aside{
    display: block;
    flex: 0 0 300px;
  }
  .l-contents__main--narrow{
    max-width: 600px;
  }
  .l-contents__inner p{
    line-height: 1.8;
  }
  .l-contents__inner{
    padding: 50px 60px;
  }
  .c-column{
    display: flex;
    justify-content: center;
  }
  .c-column__item + .c-column__item{
    margin-top: 0;
  }
  .c-column__item:nth-child(odd){
    padding-right: 15px;
  }
  .c-column__item:nth-child(even){
    padding-left: 15px;
  }
  .c-column--reverse .c-column__item:nth-child(odd){
    padding-right: 0;
    padding-left: 15px;
  }
  .c-column--reverse .c-column__item:nth-child(even){
    padding-right: 15px;
    padding-left: 0;
  }
  .c-column__item--2{
    width: 50%;
  }
  .c-column--3{
    margin-left: -30px;
  }
  .c-column--3 .c-column__item{
    padding-right: 0;
    padding-left: 30px;
    width: 33.33%;
  }
  .c-column__item--3{
    width: 33.33%;
  }
  .c-copyrights{
    margin-right: 0;
    margin-left: auto;
    align-self: flex-end;
  }
  .c-dropdown__toggle{
    height: 40px;
    font-size: 1.4rem;
  }
  .c-form__row + .c-form__row{
    margin-top: 20px;
  }
  .c-grid--company-cards{
    grid-template-columns: repeat(auto-fill, minmax(163px, 245px));
    justify-content: center;
  }
  .c-grid--feature-cards{
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .c-grid--guide{
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
  .c-heading--title{
    font-size: 50px;
    font-size: 5rem;
  }
  .c-heading--large{
    font-size: 24px;
    font-size: 2.4rem;
  }
  .c-heading--medium{
    font-size: 18px;
    font-size: 1.8rem;
  }
  .c-heading-set--title .en{
    font-size: 50px;
    font-size: 5rem;
  }
  .c-heading-set--title .jp{
    font-size: 14px;
    font-size: 1.4rem;
  }
  .c-heading-set--title{
    margin-top: 0;
    margin-bottom: 30px;
  }
  .c-heading-set--headline1 .en{
    font-size: 24px;
    font-size: 2.4rem;
  }
  .c-heading-set--headline1 .jp{
    font-size: 14px;
    font-size: 1.4rem;
  }
  .c-link-button--ghost{
    display: flex;
    box-sizing: border-box;
    padding: 0 2em;
    height: 50px;
    border-radius: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    font-size: 1.4rem;
    transition: opacity 0.2s ease-out;
    align-items: center;
  }
  .c-link-button--ghost:hover{
    opacity: 0.5;
  }
  .c-link-button--solid{
    display: flex;
    box-sizing: border-box;
    padding: 0 2em;
    height: 50px;
    border-radius: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    font-size: 1.4rem;
    transition: opacity 0.2s ease-out;
    align-items: center;
  }
  .c-link-button--solid:hover{
    opacity: 0.5;
  }
  .c-link-button--border{
    display: flex;
    box-sizing: border-box;
    padding: 0 2em;
    height: 50px;
    border-radius: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    font-size: 1.4rem;
    transition: opacity 0.2s ease-out;
    align-items: center;
  }
  .c-link-button--border:hover{
    opacity: 0.5;
  }
  .c-link-button-container{
    flex-wrap: nowrap;
  }
  .c-link-button-container .c-link-button--widthS{
    margin-top: 0;
    width: 200px;
  }
  .c-link-button-container .c-link-button--widthS:nth-of-type(odd){
    margin-right: 10px;
  }
  .c-link-button-container .c-link-button--widthS:nth-of-type(even){
    margin-left: 10px;
  }
  .c-link-button-container .c-link-button--widthS + .c-link-button--widthS{
    margin-top: 0;
  }
  .c-link-button__counter{
    padding: 0 1em;
    height: 30px;
    border-radius: 15px;
    font-size: 1.4rem;
  }
  .c-link-button__counter > svg,
.c-link-button__counter > i{
    margin-right: 0.3em;
  }
  ul.c-list-entry{
    line-height: 1.8;
  }
  .c-list-inline--pcheader{
    font-size: 14px;
    font-size: 1.4rem;
  }
  .c-sptable{
    display: table;
  }
  .c-sptable__thead{
    display: table-header-group;
  }
  .c-sptable__tbody{
    display: table-row-group;
  }
  .c-sptable__tr{
    display: table-row;
  }
  .c-sptable__th{
    display: table-cell;
    padding: 10px 10px 10px 0;
    width: 150px;
    border-bottom: 1px solid #dddddd;
  }
  .c-sptable__td{
    display: table-cell;
    padding: 10px 20px;
  }
  .c-sptable--form .c-sptable__th,
.c-sptable--form .c-sptable__td{
    border: none;
  }
  .c-table-chart{
    margin-top: 30px;
  }
  .c-balloon__body p{
    line-height: 1.8;
  }
  .p-counter__number{
    font-size: 2rem;
  }
  a.p-company-card__inner{
    padding: 20px;
  }
  .p-company-card__dummy{
    font-size: 3rem;
  }
  .p-company-info__body__inner p{
    line-height: 1.8;
  }
  .p-company-info__body__inner p + p{
    margin-top: 29px;
  }
  .p-company-info__body__bookmark{
    margin-right: 20px;
    width: 50px;
    height: 50px;
    border-width: 2px;
    border-radius: 25px;
  }
  .p-company-info__body__buttons a{
    padding: 0 2em;
    font-size: 1.4rem;
  }
  .p-dragdrop{
    justify-content: flex-start;
  }
  .p-dragdrop__button{
    margin-top: 0;
    margin-left: 30px;
  }
  .p-feature-card__inner{
    padding: 20px;
  }
  .p-keyvisual--all .p-keyvisual__title{
    padding-top: 75px;
    align-items: flex-start;
  }
  .p-keyvisual--all .p-keyvisual__title .p-keyvisual__title__icon{
    width: 130px;
  }
  .p-keyvisual--all .p-keyvisual__title .p-keyvisual__title__typo{
    max-width: 574px;
    flex: auto;
  }
  .p-keyvisual--all .p-keyvisual__title .p-keyvisual__title__date{
    position: absolute;
    bottom: -3px;
    left: 0;
    padding: 0;
    padding-left: 140px;
    width: auto;
    background-color: transparent;
    font-size: 6.4rem;
  }
  .p-keyvisual--all .p-keyvisual__catch{
    margin-top: 30px;
    margin-bottom: 0;
    font-size: 1.6rem;
  }
  .p-link-list--mylist{
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .p-modal__content{
    line-height: 1.8;
  }
  .u-align-left__center{
    text-align: center;
  }
  .u-align-center__left{
    text-align: left;
  }
  .u-align-right__center{
    text-align: center;
  }
  .u-image-spvmax{
    position: static;
    left: unset;
    margin-left: auto;
    width: auto;
  }
  .u-text-time{
    font-size: 14px;
    font-size: 1.4rem;
  }
  .u-text-notice{
    font-size: 14px;
    font-size: 1.4rem;
  }
  .u-text-required{
    font-size: 14px;
    font-size: 1.4rem;
  }
  .u-text-lead{
    font-size: 18px;
    font-size: 1.8rem;
  }
  .u-text-lead{
    line-height: 1.8;
  }
  .u-text-sentence{
    line-height: 1.8;
  }
  .u-only-sp{
    display: none;
  }
  .u-only-sp-inline{
    display: none;
  }
  .u-only-pc{
    display: block;
  }
  .u-only-pc-inline{
    display: inline;
  }
  .u-typo-body{
    font-size: 16px;
    font-size: 1.6rem;
  }
  .u-typo-small{
    font-size: 14px;
    font-size: 1.4rem;
  }
  .u-typo-mini{
    font-size: 12px;
    font-size: 1.2rem;
  }
  .u-typo-LL{
    font-size: 30px;
    font-size: 3rem;
  }
  .u-typo-L{
    font-size: 24px;
    font-size: 2.4rem;
  }
  .u-typo-M{
    font-size: 16px;
    font-size: 1.6rem;
  }
  .u-typo-S{
    font-size: 14px;
    font-size: 1.4rem;
  }
  .u-typo-SS{
    font-size: 12px;
    font-size: 1.2rem;
  }
  .u-width-full__half{
    width: 50%;
  }
  .u-sp-full{
    position: static;
    left: initial;
    margin-left: 0;
    width: auto;
  }
}
@media only print, screen and (min-width: 1000px){
  .l-inner{
    padding-right: 50px;
    padding-right: calc( constant(safe-area-inset-right) + 50px );
    padding-right: calc( env(safe-area-inset-right) + 50px );
    padding-left: 50px;
    padding-left: calc( constant(safe-area-inset-left) + 50px );
    padding-left: calc( env(safe-area-inset-left) + 50px );
  }
  .l-header > .l-inner{
    padding-bottom: 61px;
  }
  .l-header__upper{
    min-height: 87px;
    height: auto;
    border-bottom-width: 2px;
  }
  .l-header__upper__pcnavi{
    display: block;
  }
  .l-header__notification,
.l-header__search-toggle{
    width: 40px;
    height: 40px;
  }
  .l-header__notification{
    display: flex;
    margin-left: 20px;
  }
  .l-header__search-toggle{
    margin-left: 10px;
  }
  .l-header__lang-toggle{
    display: block;
    margin-left: 10px;
  }
  .l-header__avatar{
    margin-left: 10px;
    width: 40px;
    height: 40px;
  }
  .l-header__navi-toggle{
    display: none;
  }
  .l-header__counter{
    right: 50px;
  }
  .l-header__2ndrow{
    margin-right: 0;
    margin-left: auto;
  }
  .l-footer > .l-inner{
    display: flex;
    align-items: flex-start;
  }
  .l-footer__upper{
    margin-top: 0;
  }
  .l-footer__upper__links{
    text-align: left;
  }
  .l-footer__lower{
    display: flex;
    padding-top: 60px;
    padding-left: 60px;
    border-width: 2px 0 0;
    border-style: solid;
    border-color: #dc000c;
    flex: 1;
  }
  .l-footer__lower__navi{
    margin-left: 0;
    padding-bottom: 0;
  }
  .l-footer__lower__navi a{
    font-size: 1.4rem;
  }
  .p-account__body{
    width: 610px;
  }
  .p-branding{
    margin-right: 70px;
  }
  .p-counter{
    height: 40px;
    font-size: 1.4rem;
  }
  .p-counter svg,
.p-counter i{
    font-size: 1.6rem;
  }
  .p-company-info{
    display: flex;
    margin-top: 20px;
    margin-bottom: 100px;
    align-items: stretch;
  }
  .p-company-info__carousel{
    min-height: 675px;
    min-width: 390px;
    flex: 0 1 auto;
  }
  .p-company-info__body{
    padding-top: 0;
    padding-left: 50px;
    flex: auto;
  }
  .p-keyvisual--all{
    height: 410px;
  }
  .p-keyvisual--all .p-keyvisual__title{
    margin-left: 50px;
  }
  .p-keyvisual--all__image{
    position: absolute;
    right: 30px;
    bottom: 0;
    max-width: 668px;
  }
  .p-keyvisual--all .p-keyvisual__catch{
    margin-left: 50px;
  }
  #js-navi.is-open{
    display: none;
  }
}
@media only print, screen and (min-width: 1366px){
  .l-header__counter{
    position: static;
    right: auto;
    margin-right: 0;
    margin-left: auto;
  }
  .p-keyvisual--all__image{
    right: calc(50% - 683px);
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx){
  body{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}