@charset "UTF-8";
/* ==========================================================================
リセット
========================================================================== */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

/* HTML5 display definitions
----------------------------------------------------------------- */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

/* Links
----------------------------------------------------------------- */
a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
----------------------------------------------------------------- */
abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 1rem;
  line-height: 1;
  margin: 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
----------------------------------------------------------------- */
img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
----------------------------------------------------------------- */
figure {
  margin: 30px 0;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
----------------------------------------------------------------- */
button,
input,
optgroup,
select,
textarea {
  outline: none;
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
  border: none;
  padding: 0;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

/* Tables
----------------------------------------------------------------- */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* ==========================================================================
グローバル変数
=========================================================================*/
/*-==========================================================================
mixin
==========================================================================*/
/*-==========================================================================
ブレイクポイント
==========================================================================*/
/* less_than_xx */
/* more_than_xx */
/* ==========================================================================
汎用CSS
========================================================================== */
/* サイト全体のフォントサイズや色に関する設定
----------------------------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  text-justify: inter-ideograph;
  vertical-align: baseline;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

::-moz-selection {
  color: #525252;
  background-color: #ffd0c4;
}

::selection {
  color: #525252;
  background-color: #ffd0c4;
}

::-moz-selection {
  color: #525252;
  background-color: #ffd0c4;
}

.f-common-wrap {
  overflow: clip;
}

a {
  color: #333;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0;
  text-align: justify;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

hr {
  overflow: visible;
  border: 0;
  border-top: 1px solid #e9e9e9;
  text-align: inherit;
  margin: 0 0 0 0;
}

div {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
ul li {
  list-style-type: none;
  text-align: justify;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

table {
  border-collapse: collapse;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  width: 100%;
  text-align: justify;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0;
}

label {
  cursor: pointer;
}

/* ==========================================================================
アニメーション
========================================================================== */
/* fadeIm fadeOut
----------------------------------------------------------------- */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*-==========================================================================
特定の画面幅で表示・非表示するクラス（CSSの順番の上書きの関係で、utilityフォルダには置かず、こちらに記載)
==========================================================================*/
@media screen and (min-width: 1401px) {
  .f-visible-1400 {
    display: block;
  }
}
@media screen and (max-width: 1400px) {
  .f-visible-1400 {
    display: none !important;
  }
}

@media screen and (min-width: 1201px) {
  .f-visible-1400pc {
    display: block;
  }
}
@media screen and (max-width: 1200px) {
  .f-visible-1400pc {
    display: none !important;
  }
}

@media screen and (min-width: 993px) {
  .f-visible-1400pclp {
    display: block;
  }
}
@media screen and (max-width: 992px) {
  .f-visible-1400pclp {
    display: none !important;
  }
}

@media screen and (min-width: 993px) {
  .f-visible-lp {
    display: none !important;
  }
}
@media screen and (min-width: 821px) and (max-width: 992px) {
  .f-visible-lp {
    display: block;
  }
}
@media screen and (max-width: 820px) {
  .f-visible-lp {
    display: none !important;
  }
}

@media screen and (min-width: 993px) {
  .f-visible-lptbsp {
    display: none !important;
  }
}
@media screen and (max-width: 992px) {
  .f-visible-lptbsp {
    display: block;
  }
}

@media screen and (min-width: 821px) {
  .f-visible-tb {
    display: none !important;
  }
}
@media screen and (min-width: 577px) and (max-width: 820px) {
  .f-visible-tb {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .f-visible-tb {
    display: none !important;
  }
}

@media screen and (min-width: 821px) {
  .f-visible-1400pclptb {
    display: block;
  }
}
@media screen and (max-width: 820px) {
  .f-visible-1400pclptb {
    display: none !important;
  }
}

@media screen and (min-width: 821px) {
  .f-visible-tbsp {
    display: none !important;
  }
}
@media screen and (max-width: 820px) {
  .f-visible-tbsp {
    display: block;
  }
}

@media screen and (min-width: 577px) {
  .f-visible-1400pclptbsp {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .f-visible-1400pclptbsp {
    display: none !important;
  }
}

@media screen and (min-width: 577px) {
  .f-visible-sp {
    display: none !important;
  }
}
@media screen and (max-width: 576px) {
  .f-visible-sp {
    display: block;
  }
}

/* ==========================================================================
ヘッダー
========================================================================== */
header {
  position: relative;
}

.l-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 80px;
  z-index: 900;
  position: relative;
  padding: 10px 20px;
}
@media screen and (max-width: 576px) {
  .l-header {
    height: 55px;
    padding-left: 10px;
  }
}

.l-header-logo {
  position: relative;
  max-width: 537px;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .l-header-logo {
    width: 75%;
  }
}
.l-header-logo h1 {
  position: relative;
  height: 100%;
  width: 100%;
}
.l-header-logo h1 a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.l-header-logo h1 a:hover {
  opacity: 0.75;
}
.l-header-logo h1 a img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

/* ドロワーメニュー
----------------------------------------------------------------- */
.l-toggle {
  display: block;
  width: 80px;
  height: 80px;
  background-image: url(/resource/images/menu_open.svg);
  -webkit-transition: background-image 0.1s linear;
  transition: background-image 0.1s linear;
  background-size: contain;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  cursor: pointer;
}
@media screen and (max-width: 576px) {
  .l-toggle {
    height: 55px;
    width: 55px;
  }
}

body.open {
  overflow: hidden;
}
body.open .l-toggle {
  background-image: url(/resource/images/menu_close.svg);
}

.l-drawer {
  display: none;
  width: 394px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 998;
}
.l-drawer .l-drawer-body {
  position: absolute;
  width: 100%;
  height: 100%;
}
.l-drawer .l-drawer-body .l-drawer-nav-main {
  position: relative;
  height: 100%;
  padding: 80px 63px;
  background-color: #ca1a1b;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu {
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu > a,
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion-btn {
  color: #fff;
  display: block;
  position: relative;
  font-size: 32px;
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  padding: 20px 10px;
}
@media screen and (max-width: 576px) {
  .l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu > a,
  .l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion-btn {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu > a .ja,
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion-btn .ja {
  font-size: 12px;
  font-size: 0.75rem;
  display: block;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu > a::after,
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion-btn::after {
  content: "";
  width: 32px;
  height: 21px;
  background-image: url(/resource/images/header_drawer_circle.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 18px;
  left: -2px;
}
@media screen and (max-width: 576px) {
  .l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu > a::after,
  .l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion-btn::after {
    width: 30px;
    height: 18px;
  }
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu > a:hover,
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion-btn:hover {
  opacity: 0.8;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu--ex {
  position: relative;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu--ex img {
  position: absolute;
  top: 20px;
  right: 0;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion {
  width: 100%;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion .l-drawer-accordion-btn {
  position: relative;
  display: block;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 576px) {
  .l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion .l-drawer-accordion-btn {
    padding: 20px 10px;
  }
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion .l-drawer-accordion-btn .toggle {
  position: absolute;
  top: 27px;
  right: 0;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background-color: #fff;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion .l-drawer-accordion-btn .toggle::before, .l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion .l-drawer-accordion-btn .toggle::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  background-color: #ca1a1b;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 50%;
  right: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion .l-drawer-accordion-btn .toggle::before {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion .l-drawer-accordion-btn .toggle::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion .l-drawer-accordion-btn.close .toggle::before {
  -webkit-transform: rotate(0deg) translateX(5px);
          transform: rotate(0deg) translateX(5px);
  opacity: 0;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion .l-drawer-accordion-btn.close .toggle::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion .l-drawer-accordion-content {
  display: none;
  padding-bottom: 1em;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion .l-drawer-accordion-content .l-drawer-accordion-content__menu {
  margin: 0;
  border-bottom: none;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion .l-drawer-accordion-content .l-drawer-accordion-content__menu a {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #fff;
  margin-left: 1em;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion .l-drawer-accordion-content .l-drawer-accordion-content__menu a:before {
  content: "-";
  display: inline-block;
  margin-right: 3px;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion .l-drawer-accordion-content .l-drawer-accordion-content__menu a:hover {
  opacity: 0.8;
}
.l-drawer .l-drawer-body .l-drawer-nav-main .l-drawer-nav-main__menu .l-drawer-accordion .l-drawer-accordion-content .l-drawer-accordion-content__menu ul {
  margin-left: 1em;
}

/* ==========================================================================
フッター
========================================================================== */
.l-footer {
  background-color: #333;
}

.l-footer-logo {
  text-align: center;
  padding: 2.5rem;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 576px) {
  .l-footer-logo {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 820px) {
  .l-footer-logo img {
    width: 58vw;
  }
}
@media screen and (max-width: 576px) {
  .l-footer-logo img {
    width: 100%;
  }
}
.l-footer-logo p {
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .l-footer-logo p {
    font-size: 10px;
    font-size: 0.625rem;
  }
}

/* メニュー
----------------------------------------------------------------- */
.l-footer-nav {
  background-color: #333;
  padding: 3.75rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 5%;
}
@media screen and (max-width: 576px) {
  .l-footer-nav {
    display: block;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.l-footer-nav a {
  color: #fff;
}
.l-footer-nav a:hover {
  color: #ca1a1b !important;
}
.l-footer-nav .l-footer-nav-main {
  width: 100%;
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-col h3 {
  font-size: 18px;
  font-size: 1.125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 7px;
  margin-bottom: 7px;
  position: relative;
}
@media screen and (max-width: 820px) {
  .l-footer-nav .l-footer-nav-main .l-footer-nav-col h3 {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 576px) {
  .l-footer-nav .l-footer-nav-main .l-footer-nav-col h3 {
    text-align: center;
    border-bottom: none;
  }
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-col h3::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 7px;
  height: 8px;
  background: #ca1a1b;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
}
@media screen and (max-width: 820px) {
  .l-footer-nav .l-footer-nav-main .l-footer-nav-col h3::after {
    width: 5px;
    height: 6px;
  }
}
@media screen and (max-width: 576px) {
  .l-footer-nav .l-footer-nav-main .l-footer-nav-col h3::after {
    display: none;
  }
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-col h3.noicon::after {
  display: none;
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-col h3.ex::after {
  width: 13px;
  height: 10px;
  background-image: url(/resource/images/ico_arrow_ex_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-clip-path: none;
          clip-path: none;
  background-color: transparent;
  top: 10px;
  -webkit-transform: none;
          transform: none;
}
@media screen and (max-width: 820px) {
  .l-footer-nav .l-footer-nav-main .l-footer-nav-col h3.ex::after {
    width: 9px;
    height: 8px;
    top: 5px;
  }
}
@media screen and (max-width: 576px) {
  .l-footer-nav .l-footer-nav-main .l-footer-nav-col h3.ex::after {
    display: inline-block !important;
    position: static;
    left: auto;
    margin-left: 10px;
  }
}
@media screen and (max-width: 576px) {
  .l-footer-nav .l-footer-nav-main .l-footer-nav-col h3.ex {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-col + .l-footer-nav-col {
  margin-top: 5em;
}
@media screen and (max-width: 820px) {
  .l-footer-nav .l-footer-nav-main .l-footer-nav-col + .l-footer-nav-col {
    margin-top: 3em;
  }
}
@media screen and (max-width: 576px) {
  .l-footer-nav .l-footer-nav-main .l-footer-nav-col + .l-footer-nav-col {
    margin-top: 0px;
  }
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-col h4 {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
}
@media screen and (max-width: 820px) {
  .l-footer-nav .l-footer-nav-main .l-footer-nav-col h4 {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-col h5 {
  font-size: 12px;
  font-size: 0.75rem;
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-col h5 a {
  font-weight: 400;
  line-height: 2;
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-col h5 a::before {
  display: none !important;
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-col .l-footer-nav-col-sub + .l-footer-nav-col-sub {
  margin-top: 2em;
}
@media screen and (max-width: 820px) {
  .l-footer-nav .l-footer-nav-main .l-footer-nav-col .l-footer-nav-col-sub + .l-footer-nav-col-sub {
    margin-top: 10px;
  }
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-parent:last-child {
  margin-right: 0;
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-parent__inner {
  line-height: 1.7;
}
@media screen and (max-width: 820px) {
  .l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-parent__inner {
    margin-bottom: 1.875rem;
    text-align: center;
  }
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-parent__inner a {
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  text-indent: -6px;
  padding-left: 6px;
  display: inline-block;
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-parent__inner a::before {
  content: "-";
  display: inline;
  margin-right: 2px;
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-parent__inner a.ex {
  position: relative;
  padding-right: 20px;
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-parent__inner a.ex::before {
  display: none;
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-parent__inner a.ex::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 13px;
  height: 10px;
  background-image: url(/resource/images/ico_arrow_ex_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
}
@media screen and (max-width: 820px) {
  .l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-parent__inner a.ex::after {
    width: 9px;
    height: 8px;
  }
}
@media screen and (max-width: 820px) {
  .l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-parent__inner a.ex {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.l-footer-nav .l-footer-nav-main .l-footer-nav-parent .l-footer-nav-child {
  font-size: 12px;
  border-left: 3px solid #5c5c5c;
  padding-left: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
}

/* コピーライト
----------------------------------------------------------------- */
.l-copyright {
  background-color: #474747;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  padding: 13.5px 0;
}

/* ページトップに戻るボタン
----------------------------------------------------------------- */
a#pagetop {
  line-height: 0;
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 100;
}
a#pagetop img {
  width: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a#pagetop:hover img {
  opacity: 0.7;
}

/* ==========================================================================
ページタイトル
=========================================================================*/
.l-page-title {
  margin-top: -80px;
  width: 100%;
  position: relative;
}
.l-page-title .l-page-title-mv {
  height: 335px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 820px) {
  .l-page-title .l-page-title-mv {
    height: 250px;
  }
}
@media screen and (max-width: 576px) {
  .l-page-title .l-page-title-mv {
    height: 183px;
    margin-top: -55px;
  }
}
.l-page-title .l-container-large {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -60px;
}
@media screen and (max-width: 820px) {
  .l-page-title .l-container-large {
    padding-left: 5%;
    padding-right: 5%;
    margin-top: -30px;
  }
}
@media screen and (max-width: 576px) {
  .l-page-title .l-container-large {
    margin-top: -40px;
  }
}
.l-page-title .l-page-title-inner {
  background-color: #fff;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 60px;
  padding-top: 60px;
}
@media screen and (max-width: 576px) {
  .l-page-title .l-page-title-inner {
    padding-bottom: 0;
  }
}
.l-page-title .l-page-title-inner .l-page-title-jp {
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .l-page-title .l-page-title-inner .l-page-title-jp {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.l-page-title .l-page-title-inner .l-page-title-en {
  font-family: "Poppins", sans-serif;
  font-size: 66px;
  font-size: 4.125rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 576px) {
  .l-page-title .l-page-title-inner .l-page-title-en {
    font-size: 44px;
    font-size: 2.75rem;
  }
}
.l-page-title .l-page-title-inner .l-page-title-en span {
  position: relative;
  display: inline-block;
  color: #ca1a1b;
}
.l-page-title .l-page-title-inner .l-page-title-en span::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 62px;
  background-image: url(/resource/images/ico_circle_red.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: -5px;
  left: -37px;
}
@media screen and (max-width: 820px) {
  .l-page-title .l-page-title-inner .l-page-title-en span::before {
    width: 76px;
    height: 50px;
    left: -23px;
  }
}
@media screen and (max-width: 576px) {
  .l-page-title .l-page-title-inner .l-page-title-en span::before {
    width: 52px;
    height: 33px;
    top: -6px;
    left: -14px;
  }
}

/* ==========================================================================
セクション
=========================================================================*/
.l-sec-small {
  padding: 1rem 0;
}

.l-sec-medium {
  padding: 2.5rem 0;
}

.l-sec-large {
  padding: 4rem 0;
}
@media screen and (max-width: 576px) {
  .l-sec-large {
    padding: 3.75rem 0;
  }
}

.l-sec-xlarge {
  padding: 5rem 0;
}
@media screen and (max-width: 576px) {
  .l-sec-xlarge {
    padding: 3.75rem 0;
  }
}

.l-sec-xxlarge {
  padding: 6.5rem 0;
}
@media screen and (max-width: 820px) {
  .l-sec-xxlarge {
    padding: 5rem 0;
  }
}

.l-sec-xxlarge-remove-top {
  padding: 0 0 6.5rem;
}
@media screen and (max-width: 576px) {
  .l-sec-xxlarge-remove-top {
    padding: 0 0 6.5rem;
  }
}

.l-sec-xxxlarge-remove-top {
  padding: 0 0 8.75rem;
}
@media screen and (max-width: 820px) {
  .l-sec-xxxlarge-remove-top {
    padding: 0 0 7.5rem;
  }
}
@media screen and (max-width: 576px) {
  .l-sec-xxxlarge-remove-top {
    padding: 0 0 6.25rem;
  }
}

/* 背景色付き */
.l-sec-bg {
  position: relative;
  z-index: 0;
}
.l-sec-bg::before {
  z-index: -1;
  content: "";
  width: 100%;
  height: 355px;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(243, 243, 243) 100%);
  background: -webkit-gradient(linear, 50% 97.19%, 50% 0.5%, color-stop(0, rgba(255, 255, 255, 0)), color-stop(1, rgb(243, 243, 243)));
  background: -ms-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(243, 243, 243) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#F3F3F3' ,GradientType=0)";
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), to(rgb(243, 243, 243)));
  background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, rgb(243, 243, 243) 100%);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgb(243, 243, 243) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F3F3F3", endColorstr="#FFFFFF", GradientType=0);
}

/* 下層ページ各セクション冒頭のリード部分 */
.l-sec-lead-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .l-sec-lead-flex {
    display: block;
  }
}
.l-sec-lead-flex + * {
  margin-top: 4rem;
}

.l-sec-lead-flex-text {
  -webkit-flex-basis: 57.75%;
      -ms-flex-preferred-size: 57.75%;
          flex-basis: 57.75%;
}
@media screen and (max-width: 820px) {
  .l-sec-lead-flex-text {
    -webkit-flex-basis: 48%;
        -ms-flex-preferred-size: 48%;
            flex-basis: 48%;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 576px) {
  .l-sec-lead-flex-text {
    margin-bottom: 20px;
  }
}

.l-sec-lead-flex-image {
  -webkit-flex-basis: 36.53%;
      -ms-flex-preferred-size: 36.53%;
          flex-basis: 36.53%;
}
@media screen and (max-width: 820px) {
  .l-sec-lead-flex-image {
    -webkit-flex-basis: 48%;
        -ms-flex-preferred-size: 48%;
            flex-basis: 48%;
  }
}

/* ==========================================================================
コンテナーボックス
=========================================================================*/
.l-container,
.l-container-small,
.l-container-large {
  margin-left: auto;
  margin-right: auto;
  padding-left: 6%;
  padding-right: 6%;
}
@media screen and (max-width: 820px) {
  .l-container,
  .l-container-small,
  .l-container-large {
    padding-left: 10%;
    padding-right: 10%;
  }
}
@media screen and (max-width: 576px) {
  .l-container,
  .l-container-small,
  .l-container-large {
    padding-left: 5%;
    padding-right: 5%;
  }
}

.l-container {
  max-width: calc(980px + 12%);
}

.l-container-small {
  max-width: calc(720px + 12%);
}

.l-container-large {
  max-width: calc(1120px + 12%);
}

/*-==========================================================================
FlexBox
==========================================================================*/
/* FlexBox （カスタマイズ可）
----------------------------------------------------------------- */
.c-flex,
.c-flex--align-items-center,
.c-flex--flex-start {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-flex .c-flex-2-clm,
.c-flex--align-items-center .c-flex-2-clm,
.c-flex--flex-start .c-flex-2-clm {
  width: 50%;
}
@media screen and (max-width: 576px) {
  .c-flex .c-flex-2-clm,
  .c-flex--align-items-center .c-flex-2-clm,
  .c-flex--flex-start .c-flex-2-clm {
    width: 100%;
  }
}
.c-flex .c-flex-3-clm,
.c-flex--align-items-center .c-flex-3-clm,
.c-flex--flex-start .c-flex-3-clm {
  width: 30%;
}
@media screen and (max-width: 576px) {
  .c-flex .c-flex-3-clm,
  .c-flex--align-items-center .c-flex-3-clm,
  .c-flex--flex-start .c-flex-3-clm {
    width: 100%;
  }
}
.c-flex .c-flex-4-clm,
.c-flex--align-items-center .c-flex-4-clm,
.c-flex--flex-start .c-flex-4-clm {
  width: 20%;
}
@media screen and (max-width: 576px) {
  .c-flex .c-flex-4-clm,
  .c-flex--align-items-center .c-flex-4-clm,
  .c-flex--flex-start .c-flex-4-clm {
    width: 100%;
  }
}
.c-flex .c-flex-5-clm,
.c-flex--align-items-center .c-flex-5-clm,
.c-flex--flex-start .c-flex-5-clm {
  width: 15%;
}
@media screen and (max-width: 576px) {
  .c-flex .c-flex-5-clm,
  .c-flex--align-items-center .c-flex-5-clm,
  .c-flex--flex-start .c-flex-5-clm {
    width: 100%;
  }
}
.c-flex .c-flex-flex-1,
.c-flex--align-items-center .c-flex-flex-1,
.c-flex--flex-start .c-flex-flex-1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 576px) {
  .c-flex,
  .c-flex--align-items-center,
  .c-flex--flex-start {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

.c-flex--flex-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 2.5rem 5%;
}

/* FlexBox(既存のtemplateの仕組みを踏襲)
----------------------------------------------------------------- */
.c-flex-small,
.c-flex-medium,
.c-flex-large,
.c-flex-collapse {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

.c-flex-small {
  gap: 1.25rem 1.25rem;
}
.c-flex-small .c-flex-5-clm,
.c-flex-small .c-flex-5-clm-sp {
  width: calc((100% - 80px) / 5);
}
.c-flex-small .c-flex-4-clm {
  width: calc((100% - 60px) / 4);
}
.c-flex-small .c-flex-3-clm {
  width: calc((100% - 40px) / 3);
}
.c-flex-small .c-flex-2-clm {
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 820px) {
  .c-flex-small .c-flex-5-clm-sp {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 576px) {
  .c-flex-small .c-flex-5-clm,
  .c-flex-small .c-flex-4-clm,
  .c-flex-small .c-flex-3-clm,
  .c-flex-small .c-flex-2-clm {
    width: 100%;
  }
  .c-flex-small .c-flex-5-clm-sp {
    width: calc((100% - 20px) / 2);
  }
}

.c-flex-medium {
  gap: 2.5rem 2.5rem;
}
.c-flex-medium .c-flex-3-clm {
  width: calc((100% - 80px) / 3);
}
.c-flex-medium .c-flex-2-clm {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 576px) {
  .c-flex-medium .c-flex-3-clm,
  .c-flex-medium .c-flex-2-clm {
    width: 100%;
  }
}

.c-flex-large {
  gap: 2.5rem 3.75rem;
}
.c-flex-large .c-flex-3-clm {
  width: calc((100% - 120px) / 3);
}
.c-flex-large .c-flex-2-clm {
  width: calc((100% - 60px) / 2);
}
@media screen and (max-width: 576px) {
  .c-flex-large .c-flex-3-clm,
  .c-flex-large .c-flex-2-clm {
    width: 100%;
  }
}

.c-flex-collapse .c-flex-5-clm {
  width: 20%;
}
.c-flex-collapse .c-flex-4-clm {
  width: 25%;
}
.c-flex-collapse .c-flex-3-clm {
  width: 33.3333333333%;
}
.c-flex-collapse .c-flex-2-clm {
  width: 50%;
}
@media screen and (max-width: 576px) {
  .c-flex-collapse .c-flex-5-clm,
  .c-flex-collapse .c-flex-4-clm,
  .c-flex-collapse .c-flex-3-clm,
  .c-flex-collapse .c-flex-2-clm {
    width: 100%;
  }
}

/*-==========================================================================
グリッド
==========================================================================*/
/* グリッド　
----------------------------------------------------------------- */
.c-grid-small,
.c-grid-medium,
.c-grid-large,
.c-grid-collapse {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

.c-grid-small > * {
  margin-left: 1%;
}
.c-grid-small > *:first-child {
  margin-left: 0;
}
.c-grid-small .c-grid-5-clm,
.c-grid-small .c-grid-5-clm-sp {
  width: 19.2%;
}
.c-grid-small .c-grid-4-clm {
  width: 24.25%;
}
.c-grid-small .c-grid-3-clm {
  width: 32.6666666667%;
}
.c-grid-small .c-grid-2-clm {
  width: 49.5%;
}
@media screen and (max-width: 576px) {
  .c-grid-small > * {
    margin-top: 1rem;
    margin-left: 0;
  }
  .c-grid-small > *:first-child {
    margin-top: 0;
  }
  .c-grid-small .c-grid-5-clm,
  .c-grid-small .c-grid-4-clm,
  .c-grid-small .c-grid-3-clm,
  .c-grid-small .c-grid-2-clm {
    width: 100%;
  }
  .c-grid-small .c-grid-5-clm-sp {
    width: 48%;
    margin-top: 0;
  }
  .c-grid-small .c-grid-5-clm-sp:nth-child(n+3) {
    margin-top: 1rem;
  }
  .c-grid-small .c-grid-5-clm-sp:nth-child(odd) {
    margin-right: 4%;
  }
}

.c-grid-medium > * {
  margin-left: 4%;
}
.c-grid-medium > *:first-child {
  margin-left: 0;
}
.c-grid-medium .c-grid-3-clm {
  width: 30.6666666667%;
}
.c-grid-medium .c-grid-2-clm {
  width: 48%;
}
@media screen and (max-width: 576px) {
  .c-grid-medium > * {
    margin-top: 1.875rem;
    margin-left: 0;
  }
  .c-grid-medium > *:first-child {
    margin-top: 0;
  }
  .c-grid-medium .c-grid-3-clm,
  .c-grid-medium .c-grid-2-clm {
    width: 100%;
  }
}

.c-grid-large > * {
  margin-left: 6%;
}
.c-grid-large > *:first-child {
  margin-left: 0;
}
.c-grid-large .c-grid-3-clm {
  width: 96%;
}
.c-grid-large .c-grid-2-clm {
  width: 47%;
}
@media screen and (max-width: 576px) {
  .c-grid-large > * {
    margin-top: 2.5rem;
    margin-left: 0;
  }
  .c-grid-large > *:first-child {
    margin-top: 0;
  }
  .c-grid-large .c-grid-3-clm,
  .c-grid-large .c-grid-2-clm {
    width: 100%;
  }
}

.c-grid-collapse .c-grid-5-clm {
  width: 20%;
}
.c-grid-collapse .c-grid-4-clm {
  width: 25%;
}
.c-grid-collapse .c-grid-3-clm {
  width: 33.3333333333%;
}
.c-grid-collapse .c-grid-2-clm {
  width: 50%;
}
@media screen and (max-width: 576px) {
  .c-grid-collapse .c-grid-5-clm,
  .c-grid-collapse .c-grid-4-clm,
  .c-grid-collapse .c-grid-3-clm,
  .c-grid-collapse .c-grid-2-clm {
    width: 100%;
  }
}

.c-grid-pdf:nth-child(n+6) {
  margin-top: 1.875rem;
}
.c-grid-pdf:nth-of-type(6n) {
  margin-left: 0 !important;
}

/* ==========================================================================
リスト
=========================================================================*/
.c-list-num {
  counter-reset: number;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.c-list-num li {
  position: relative;
  padding-left: 1.5rem;
  margin-top: 2em;
}
.c-list-num li:before {
  content: counter(number) ".";
  counter-increment: number;
  position: absolute;
  display: inline-block;
  color: #ca1a1b;
  font-weight: 800;
  margin-left: -1.5rem;
}

.c-list-num-divider {
  counter-reset: number;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.c-list-num-divider li {
  border-bottom: 1px solid #e9e9e9;
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 1rem;
  margin-top: 1rem;
}
.c-list-num-divider li:before {
  content: counter(number);
  counter-increment: number;
  position: absolute;
  display: inline-block;
  color: #ca1a1b;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  margin-left: -2rem;
}

.c-list-dot li {
  text-indent: -1em;
  margin-left: 1em;
}
.c-list-dot li:before {
  content: "・";
  color: #ff9849;
  font-weight: 700;
}

/* ==========================================================================
テーブル
=========================================================================*/
.c-tb-pattern1 tr {
  border-bottom: 1px solid #e9e9e9;
}
.c-tb-pattern1 tr:first-child {
  border-top: 1px solid #e9e9e9;
}
.c-tb-pattern1 tr th, .c-tb-pattern1 tr td {
  padding: 1rem;
}
@media screen and (max-width: 576px) {
  .c-tb-pattern1 tr th, .c-tb-pattern1 tr td {
    line-height: 1.7;
  }
}
.c-tb-pattern1 tr th {
  font-weight: 700;
  text-align: center;
  vertical-align: top;
  width: 30%;
}
@media screen and (max-width: 576px) {
  .c-tb-pattern1 tr th {
    text-align: left;
  }
}

.c-tb-pattern2 {
  border: 1px solid #e9e9e9;
}
@media screen and (max-width: 576px) {
  .c-tb-pattern2 tr {
    border-top: 1px solid #e9e9e9;
  }
  .c-tb-pattern2 tr:first-child {
    border: none;
  }
}
.c-tb-pattern2 tr th, .c-tb-pattern2 tr td {
  border: 1px solid #e9e9e9;
  padding: 1rem 1.5rem;
}
@media screen and (max-width: 576px) {
  .c-tb-pattern2 tr th, .c-tb-pattern2 tr td {
    display: block;
    border: none;
    line-height: 1.7;
  }
}
.c-tb-pattern2 tr th {
  color: #ca1a1b;
  background-color: #f7f7f7;
  font-weight: 700;
  text-align: center;
  vertical-align: top;
  width: 30%;
}
@media screen and (max-width: 576px) {
  .c-tb-pattern2 tr th {
    width: 100%;
    padding: 1rem 0;
  }
}
.c-tb-pattern2 tr td dl {
  margin: 0;
}
.c-tb-pattern2 tr td dl dt {
  color: #ff9849;
  font-weight: 700;
  float: left;
  width: 50px;
  min-width: 50px;
}
.c-tb-pattern2 tr td dl dd {
  margin-left: 50px;
}

.c-tb-pattern3 {
  overflow: auto;
}
@media screen and (max-width: 576px) {
  .c-tb-pattern3 {
    max-height: 445px;
  }
}
.c-tb-pattern3::-webkit-scrollbar {
  width: 8px;
  background: #e9e9e9;
}
.c-tb-pattern3::-webkit-scrollbar:horizontal {
  height: 8px;
  background: #e9e9e9;
}
.c-tb-pattern3::-webkit-scrollbar-thumb {
  background: #ca1a1b;
  border-radius: 4px;
}
.c-tb-pattern3::-webkit-scrollbar-thumb:horizontal {
  background: #ca1a1b;
  border-radius: 4px;
}
.c-tb-pattern3 table {
  width: 100%;
  min-width: 720px;
}
.c-tb-pattern3 table th, .c-tb-pattern3 table td {
  border: solid 1px #d4d4d4;
  padding: 1rem 1.5rem;
  text-align: center;
  font-weight: 700;
}
.c-tb-pattern3 table th {
  color: #ca1a1b;
  background-color: #e9e9e9;
}
.c-tb-pattern3 table td {
  font-weight: 400;
  padding: 0.5rem 1.5rem;
}
.c-tb-pattern3 table .first {
  background-color: #f7f7f7;
  font-weight: 700;
}

/* ==========================================================================
モーダルウィンドウ
=========================================================================*/
.c-modal {
  display: none;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

.c-modal-bg {
  background: rgba(51, 51, 51, 0.7);
  height: 100vh;
  width: 100%;
}

.c-modal-content {
  color: #fff;
  background: rgba(255, 255, 255, 0);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 80%;
  max-width: 720px;
}
@media screen and (max-width: 1200px) {
  .c-modal-content {
    width: 90%;
  }
}

.c-modal-content-inner {
  position: relative;
}
.c-modal-content-inner .c-modal-close {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 0;
  position: absolute;
  top: -1.5rem;
  right: 0;
}

.c-modal-open {
  display: block;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-modal-open:hover {
  opacity: 0.7;
}
.c-modal-open:before {
  content: "+";
  display: block;
  color: #ca1a1b;
  background-color: #fff;
  width: 1rem;
  height: 1rem;
  text-align: center;
  line-height: 0.8;
  padding: 4px;
  position: absolute;
  top: 2px;
  left: 2px;
}

/* ==========================================================================
ナビ
=========================================================================*/
.c-page-nav {
  margin-bottom: 4rem;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .c-page-nav {
    margin-top: 50px;
  }
}
.c-page-nav .c-page-nav-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  font-size: 14px;
  text-align: center;
  gap: 15px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 576px) {
  .c-page-nav .c-page-nav-wrap {
    gap: 10px;
  }
}
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu {
  background-color: #f7f7f7;
  -webkit-flex-basis: 230px;
      -ms-flex-preferred-size: 230px;
          flex-basis: 230px;
  height: 54px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 820px) {
  .c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu {
    height: 49px;
    -webkit-flex-basis: 207px;
        -ms-flex-preferred-size: 207px;
            flex-basis: 207px;
  }
}
@media screen and (max-width: 576px) {
  .c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu {
    max-width: initial;
    -webkit-flex-basis: 273px;
        -ms-flex-preferred-size: 273px;
            flex-basis: 273px;
  }
}
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu:nth-child(4) {
  margin-right: auto;
}
@media screen and (max-width: 820px) {
  .c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu:nth-child(4) {
    margin-right: 0;
  }
}
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.3;
  color: #333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 820px) {
  .c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu a {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  right: 15px;
  width: 7px;
  height: 8px;
  background: #ca1a1b;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu a:hover {
  color: #fff;
  background-color: #333;
}
.c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu--blank {
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 576px) {
  .c-page-nav .c-page-nav-wrap .c-page-nav-wrap__menu--blank {
    display: none;
  }
}

.c-page-nav-tag {
  margin: auto;
}
.c-page-nav-tag .c-page-nav-tag-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  text-align: center;
}
.c-page-nav-tag .c-page-nav-tag-wrap .c-page-nav-tag-wrap__menu {
  display: inline-block;
  background-color: #ca1a1b;
  margin: 2px;
}
.c-page-nav-tag .c-page-nav-tag-wrap .c-page-nav-tag-wrap__menu a {
  display: block;
  color: #fff;
  line-height: 3;
  padding: 0 3rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-page-nav-tag .c-page-nav-tag-wrap .c-page-nav-tag-wrap__menu a:hover {
  opacity: 0.7;
}

.c-related-nav {
  background-color: #f7f7f7;
  padding: 3.75rem 0;
}
@media screen and (max-width: 576px) {
  .c-related-nav {
    padding: 2.5rem 0;
  }
}
.c-related-nav .c-related-nav__ttl {
  color: #ca1a1b;
  border-left: 4px solid #ca1a1b;
  line-height: 1.5;
  padding-left: 12px;
}

.c-related-tmb {
  position: relative;
}
.c-related-tmb .c-related-tmb__ttl {
  text-align: center;
  color: #ca1a1b;
  background-color: #fff;
  background-image: url(/resource/images/ico_arrow_right_main.svg);
  background-size: 10px auto;
  background-position: center right 22px;
  background-repeat: no-repeat;
  font-size: 14px;
  font-weight: 700;
  line-height: 3.375;
}
.c-related-tmb a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-related-tmb a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
パンくずリスト
=========================================================================*/
.c-breadcrumb,
.c-breadcrumb-ft {
  font-size: 12px;
  line-height: 32px;
}
@media screen and (max-width: 992px) {
  .c-breadcrumb,
  .c-breadcrumb-ft {
    font-size: 10px;
  }
}
.c-breadcrumb .c-breadcrumb-wrap,
.c-breadcrumb-ft .c-breadcrumb-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 992px) {
  .c-breadcrumb .c-breadcrumb-wrap,
  .c-breadcrumb-ft .c-breadcrumb-wrap {
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
}
.c-breadcrumb .c-breadcrumb-wrap .c-breadcrumb-wrap__list,
.c-breadcrumb-ft .c-breadcrumb-wrap .c-breadcrumb-wrap__list {
  color: #676767;
  white-space: nowrap;
}
.c-breadcrumb .c-breadcrumb-wrap .c-breadcrumb-wrap__list a,
.c-breadcrumb-ft .c-breadcrumb-wrap .c-breadcrumb-wrap__list a {
  color: #676767;
}
.c-breadcrumb .c-breadcrumb-wrap .c-breadcrumb-wrap__list:first-child img,
.c-breadcrumb-ft .c-breadcrumb-wrap .c-breadcrumb-wrap__list:first-child img {
  width: 10px;
  vertical-align: baseline;
}
@media screen and (max-width: 992px) {
  .c-breadcrumb .c-breadcrumb-wrap .c-breadcrumb-wrap__list:first-child img,
  .c-breadcrumb-ft .c-breadcrumb-wrap .c-breadcrumb-wrap__list:first-child img {
    width: 9px;
  }
}
.c-breadcrumb .c-breadcrumb-wrap .c-breadcrumb-wrap__list:nth-child(n+2),
.c-breadcrumb-ft .c-breadcrumb-wrap .c-breadcrumb-wrap__list:nth-child(n+2) {
  padding-left: 16px;
  position: relative;
}
.c-breadcrumb .c-breadcrumb-wrap .c-breadcrumb-wrap__list:nth-child(n+2):before,
.c-breadcrumb-ft .c-breadcrumb-wrap .c-breadcrumb-wrap__list:nth-child(n+2):before {
  content: "";
  width: 3px;
  height: 3px;
  border: 0px;
  border-top: solid 1px #676767;
  border-right: solid 1px #676767;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 5px;
  bottom: 0;
  margin: auto;
}

.c-breadcrumb-ft .c-breadcrumb-wrap {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* ==========================================================================
メールフォーム
=========================================================================*/
/* 入力>確認>完了のnav
----------------------------------------------------------------- */
ul.p-contact-nav {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1.875rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
ul.p-contact-nav::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  background-color: #333;
  aspect-ratio: 1/360;
  max-width: 1px;
  width: 100%;
  max-width: 300px;
  height: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
ul.p-contact-nav li {
  display: block;
  border: 1px solid #333;
  background-color: #fff;
  position: relative;
  max-width: 100px;
  height: 100px;
  width: 100%;
}
ul.p-contact-nav li.p-contact-nav__active {
  border: 2px solid #ca1a1b;
}
ul.p-contact-nav li.p-contact-nav__active span {
  color: #ca1a1b;
}
ul.p-contact-nav li span {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: #333;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 700;
}

/* フォーム
----------------------------------------------------------------- */
.c-form-wrap table {
  font-size: 16px;
  font-size: 1rem;
}
.c-form-wrap table tr {
  border-bottom: 1px solid #e9e9e9;
}
.c-form-wrap table tr:first-child {
  border-top: 1px solid #e9e9e9;
}
.c-form-wrap table tr th,
.c-form-wrap table tr td {
  padding: 1.25rem 0;
}
@media screen and (max-width: 992px) {
  .c-form-wrap table tr th,
  .c-form-wrap table tr td {
    display: block;
  }
}
.c-form-wrap table tr th {
  font-weight: 700;
  text-align: left;
  vertical-align: top;
  position: relative;
  width: 240px;
}
@media screen and (max-width: 992px) {
  .c-form-wrap table tr th {
    padding: 1.25rem 0 0;
    width: 100%;
  }
}
.c-form-wrap table tr th.c-form-required:after {
  content: "必須";
  position: absolute;
  right: 25px;
  top: 26px;
  background-color: #ca1a1b;
  border-radius: 10px;
  color: #fff;
  font-weight: 400;
  font-size: 12px;
  line-height: 21px;
  width: 53px;
  text-align: center;
  margin-left: 14px;
  vertical-align: middle;
  padding-bottom: 1px;
}
@media screen and (max-width: 992px) {
  .c-form-wrap table tr td {
    padding: 8px 0 1.25rem 0;
  }
}
.c-form-wrap div.c-form-required {
  position: relative;
}
@media screen and (max-width: 576px) {
  .c-form-wrap div.c-form-required {
    text-align: center;
  }
}
.c-form-wrap div.c-form-required::after {
  content: "必須";
  display: inline-block;
  background-color: #ca1a1b;
  border-radius: 10px;
  color: #fff;
  font-weight: 400;
  font-size: 12px;
  line-height: 21px;
  width: 53px;
  text-align: center;
  margin-left: 14px;
}
@media screen and (max-width: 992px) {
  .c-form-wrap div.c-form-required::after {
    top: 0.35rem;
    margin-left: 0.2rem;
  }
}
@media screen and (max-width: 576px) {
  .c-form-wrap div.c-form-required::after {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-left: 0;
    top: auto;
    bottom: -30px;
  }
}

.c-form-radio,
.c-form-checkbox {
  display: inline-block;
  border: 3px solid #d4d4d4;
  margin: -4px 8px 0 0;
  height: 24px;
  width: 24px;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.c-form-radio:not(:disabled),
.c-form-checkbox:not(:disabled) {
  cursor: pointer;
}

.c-form-radio {
  border-radius: 50%;
}
.c-form-radio:checked {
  border: 7px solid #ca1a1b;
}

.c-form-checkbox {
  background-color: #fff;
  position: relative;
}
.c-form-checkbox:checked:before {
  content: "";
  width: 20px;
  height: 8px;
  display: block;
  position: absolute;
  left: 1px;
  top: -3px;
  border-left: 4px solid #ca1a1b;
  border-bottom: 4px solid #ca1a1b;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 820px) {
  .c-form-checkbox:checked:before {
    top: -5px;
  }
}

.c-form-radio-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 1.25rem;
}

.c-form-input,
.c-form-select,
.c-form-textarea {
  display: inline-block;
  background-color: #f7f7f7;
  border: 1px solid #d4d4d4;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  vertical-align: middle;
  padding: 4px 8px;
  max-width: 480px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .c-form-input,
  .c-form-select,
  .c-form-textarea {
    max-width: 100%;
  }
}

::-webkit-input-placeholder {
  color: #adadad;
}

::-moz-placeholder {
  color: #adadad;
}

:-ms-input-placeholder {
  color: #adadad;
}

::-ms-input-placeholder {
  color: #adadad;
}

::placeholder {
  color: #adadad;
}

.c-form-select,
.c-form-input {
  height: 40px;
}

.c-form-select-wrap {
  position: relative;
}
.c-form-select-wrap select.c-form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.c-form-select-wrap:after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0px;
  border-right: solid 1px #ca1a1b;
  border-bottom: solid 1px #ca1a1b;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 40%;
  right: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}

.c-form-privacy {
  background-color: #f7f7f7;
  margin-top: 2.5rem;
  padding: 2.5rem 3.75rem;
}
@media screen and (max-width: 576px) {
  .c-form-privacy {
    padding: 1.875rem 5% 3.125rem;
  }
}
.c-form-privacy .c-form-privacy-panel {
  background-color: #fff;
  border: 1px solid #d4d4d4;
  font-size: 14px;
  height: 180px;
  margin-top: 1rem;
  padding: 2rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  resize: both;
  margin-left: auto;
  margin-right: auto;
}

.c-form-privacy-checkbox {
  cursor: pointer;
}
@media screen and (max-width: 820px) {
  .c-form-privacy-checkbox {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-contact-not-sale-txt {
  text-align: center;
  margin-bottom: 5rem;
}
.p-contact-not-sale-txt p {
  border-bottom: 4px solid #ca1a1b;
  display: inline-block;
  margin: 0 auto;
  font-weight: 700;
}

.p-contact-not-sale-cheackbox {
  border: 1px solid #333;
  padding: 2rem 0;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 576px) {
  .p-contact-not-sale-cheackbox {
    padding: 2.5rem 0 3.125rem;
  }
}

/*-==========================================================================
背景
==========================================================================*/
.c-bg-white {
  background-color: #fff !important;
}

.c-bg-lightgray {
  background-color: #e9e9e9 !important;
}

.c-bg-silver {
  background-color: #d4d4d4 !important;
}

.c-bg-gray {
  background-color: #676767 !important;
}

.c-bg-whitesmoke {
  background-color: #f7f7f7 !important;
}

.c-bg-black {
  background-color: #333 !important;
}

.c-bg-main {
  background-color: #ca1a1b !important;
}

.c-bg-sub {
  background-color: #ff9849 !important;
}

.c-bg-hover {
  background-color: #71b8d2 !important;
}

.c-bg-bg {
  background-color: #f3f3f3 !important;
}

.c-bg-selection_txt {
  background-color: #525252 !important;
}

.c-bg-selection_bg {
  background-color: #ffd0c4 !important;
}

.c-bg-tomato {
  background-color: #ef423b !important;
}

/* ==========================================================================
ボタン
=========================================================================*/
.c-btn-main,
.c-btn-main--white {
  text-align: center;
  max-width: 290px;
}
.c-btn-main > a,
.c-btn-main > button,
.c-btn-main > span,
.c-btn-main--white > a,
.c-btn-main--white > button,
.c-btn-main--white > span {
  display: block;
  background-image: url(/resource/images/ico_arrow_circle_red.png);
  background-size: 32px auto;
  background-position: center right 22px;
  background-repeat: no-repeat;
  font-size: 16px;
  font-weight: 700;
  line-height: 4.5;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 820px) {
  .c-btn-main > a,
  .c-btn-main > button,
  .c-btn-main > span,
  .c-btn-main--white > a,
  .c-btn-main--white > button,
  .c-btn-main--white > span {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.c-btn-main > a:hover,
.c-btn-main > button:hover,
.c-btn-main > span:hover,
.c-btn-main--white > a:hover,
.c-btn-main--white > button:hover,
.c-btn-main--white > span:hover {
  background-color: #ca1a1b;
  color: #fff;
  background-image: url(/resource/images/ico_arrow_circle_white.svg);
}
.c-btn-main > a span,
.c-btn-main > button span,
.c-btn-main > span span,
.c-btn-main--white > a span,
.c-btn-main--white > button span,
.c-btn-main--white > span span {
  -webkit-transform: translateX(-1em);
          transform: translateX(-1em);
  display: inline-block;
}
.c-btn-main--ex a,
.c-btn-main--ex button,
.c-btn-main--ex span,
.c-btn-main--white--ex a,
.c-btn-main--white--ex button,
.c-btn-main--white--ex span {
  background-image: url(/resource/images/ico_ex_circle_red.svg);
}
.c-btn-main--ex a:hover,
.c-btn-main--ex button:hover,
.c-btn-main--ex span:hover,
.c-btn-main--white--ex a:hover,
.c-btn-main--white--ex button:hover,
.c-btn-main--white--ex span:hover {
  background-image: url(/resource/images/ico_ex_circle_white.svg);
}

.c-btn-main--white a,
.c-btn-main--white button {
  background-color: #fff;
  background-image: url(/resource/images/ico_arrow_main.svg);
}
.c-btn-card,
.c-btn-card--tmb {
  border: 2px solid #e9e9e9;
  padding: 2rem 2.5rem;
  position: relative;
}
@media screen and (max-width: 992px) {
  .c-btn-card,
  .c-btn-card--tmb {
    padding: 2.5rem;
  }
}
@media screen and (max-width: 576px) {
  .c-btn-card,
  .c-btn-card--tmb {
    padding: 1.875rem;
  }
}
.c-btn-card .c-btn-card__ttl,
.c-btn-card--tmb .c-btn-card__ttl {
  margin-bottom: 8px;
}
.c-btn-card .c-btn-card__txt,
.c-btn-card--tmb .c-btn-card__txt {
  color: #676767;
}
.c-btn-card .c-btn-card__txt span,
.c-btn-card--tmb .c-btn-card__txt span {
  color: #ff9849;
}
.c-btn-card a,
.c-btn-card--tmb a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-card a:hover,
.c-btn-card--tmb a:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.c-btn-card-tmb1,
.c-btn-card-tmb2 {
  padding: 0;
}
.c-btn-card-tmb1 .c-btn-card-tmb-mask,
.c-btn-card-tmb2 .c-btn-card-tmb-mask {
  overflow: hidden;
  height: 194px;
}
.c-btn-card-tmb1 .c-btn-card-tmb-mask img,
.c-btn-card-tmb2 .c-btn-card-tmb-mask img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.c-btn-card-tmb1 .c-btn-card-tmb__txt,
.c-btn-card-tmb2 .c-btn-card-tmb__txt {
  font-size: 14px;
}
.c-btn-card-tmb1 .c-btn-card-tmb__txt span,
.c-btn-card-tmb2 .c-btn-card-tmb__txt span {
  color: #ff9849;
}

.c-btn-card-tmb2 {
  border: 1px solid #e9e9e9;
}
.c-btn-card-tmb2 .c-btn-card-tmb2-mask {
  height: 164px;
}

.c-btn-pdf {
  text-align: left;
  line-height: 1;
  text-indent: -35.2px;
  padding-left: 35.2px;
}
.c-btn-pdf a::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 35px;
  vertical-align: middle;
  background: url(/resource/images/ico_pdf.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  margin-right: 8px;
}
.c-btn-pdf a span {
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1.2;
  position: relative;
  top: -8px;
}
.c-btn-pdf:hover {
  opacity: 0.6;
}

/* ==========================================================================
カード
=========================================================================*/
.c-card-small,
.c-card-medium {
  border: 1px solid #e9e9e9;
}

.c-card-small {
  padding: 1rem;
}

.c-card-medium {
  padding: 2.5rem;
}

.c-card-pattern1 {
  border: 1px solid rgba(202, 26, 27, 0.2);
}
.c-card-pattern1 .c-card-pattern1-head {
  background-color: rgba(202, 26, 27, 0.2);
  text-align: center;
  padding: 2rem 1rem;
}
.c-card-pattern1 .c-card-pattern1-head .c-card-pattern1-head__ttl {
  color: #ca1a1b;
}
.c-card-pattern1 .c-card-pattern1__txt {
  padding: 2.5rem;
}
.c-card-pattern1 .c-card-pattern1__txt-sm {
  padding: 1.5rem;
}

.c-card-pattern2 {
  border: 4px solid #ff9849;
  padding: 1.5rem;
  text-align: center;
}
.c-card-pattern2 .c-card-pattern2__ttl {
  color: #ff9849;
  font-size: 30px;
  font-size: 1.875rem;
}
.c-card-pattern2 .c-card-pattern2__ttl span {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 8px;
}
.c-card-pattern2 .c-card-pattern2__sub-ttl {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 1.5rem;
}
.c-card-pattern2 .c-card-pattern2__txt {
  text-align: left;
  margin-top: 1rem;
}

/* ==========================================================================
テキスト・タイトル
=========================================================================*/
/* テキスト
----------------------------------------------------------------- */
.c-txt-en {
  font-family: "Poppins", sans-serif;
}

.c-txt-bold {
  font-weight: 700;
}

.c-txt-base {
  font-size: 1rem;
}

.c-txt-small {
  font-size: 14px;
}

.c-txt-large {
  font-size: 20px;
  font-size: 1.25rem;
}

.c-txt-link {
  color: #ca1a1b;
  text-decoration: underline;
}
.c-txt-link:hover {
  color: #71b8d2;
  text-decoration: none;
}

.c-txt-center {
  text-align: center !important;
}

.c-txt-left {
  text-align: left !important;
}

.c-txt-right {
  text-align: right !important;
}

.c-txt-white {
  color: #fff !important;
}

.c-txt-lightgray {
  color: #e9e9e9 !important;
}

.c-txt-silver {
  color: #d4d4d4 !important;
}

.c-txt-gray {
  color: #676767 !important;
}

.c-txt-whitesmoke {
  color: #f7f7f7 !important;
}

.c-txt-black {
  color: #333 !important;
}

.c-txt-main {
  color: #ca1a1b !important;
}

.c-txt-sub {
  color: #ff9849 !important;
}

.c-txt-hover {
  color: #71b8d2 !important;
}

.c-txt-bg {
  color: #f3f3f3 !important;
}

.c-txt-selection_txt {
  color: #525252 !important;
}

.c-txt-selection_bg {
  color: #ffd0c4 !important;
}

.c-txt-tomato {
  color: #ef423b !important;
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

h2 {
  font-size: 30px;
  font-size: 1.875rem;
}

h3 {
  font-size: 26px;
  font-size: 1.625rem;
}

h4 {
  font-size: 20px;
  font-size: 1.25rem;
}

h5 {
  font-size: 18px;
  font-size: 1.125rem;
}

h6 {
  font-size: 16px;
  font-size: 1rem;
}

.c-txt-lead {
  font-size: 16px;
  font-size: 1rem;
  text-align: left;
}

/* 見出し・タイトル
----------------------------------------------------------------- */
.c-ttl-main-bg {
  background-color: #ca1a1b;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3.75rem 5%;
}
@media screen and (max-width: 576px) {
  .c-ttl-main-bg {
    padding: 2.5rem 5%;
  }
}

.c-ttl-lv1 {
  font-size: 66px;
  font-size: 4.125rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin-bottom: 0.75em;
}
@media screen and (max-width: 820px) {
  .c-ttl-lv1 {
    font-size: 60px;
    font-size: 3.75rem;
  }
}
@media screen and (max-width: 576px) {
  .c-ttl-lv1 {
    font-size: 54px;
    font-size: 3.375rem;
  }
}
.c-ttl-lv1::first-letter {
  color: #ca1a1b;
}
.c-ttl-lv1 span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (max-width: 820px) {
  .c-ttl-lv1 span {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 576px) {
  .c-ttl-lv1 span {
    font-size: 16px;
    font-size: 1rem;
  }
}
.c-ttl-lv1::before {
  content: "";
  width: 82px;
  height: 53px;
  background-image: url(/resource/images/ico_circle_red.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -10px;
  left: -40px;
}
.c-ttl-lv1--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.c-ttl-lv1--white {
  color: #fff;
}
.c-ttl-lv1--white::first-letter {
  color: #fff;
}
.c-ttl-lv1--white::before {
  background-image: url(/resource/images/ico_circle_white.svg);
}
.c-ttl-lv1--medium {
  font-size: 46px;
  font-size: 2.875rem;
}
.c-ttl-lv1--medium span {
  font-size: 14px;
  font-size: 0.875rem;
}
.c-ttl-lv1--medium::before {
  width: 54px;
  height: 35px;
  top: -5px;
  left: -20px;
}

.c-ttl-lv2 {
  font-size: 40px;
  font-size: 2.5rem;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 820px) {
  .c-ttl-lv2 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 576px) {
  .c-ttl-lv2 {
    font-size: 32px;
    font-size: 2rem;
  }
}
.c-ttl-lv2 span {
  font-size: 20px;
  font-size: 1.25rem;
  color: #ca1a1b;
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 820px) {
  .c-ttl-lv2 span {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 576px) {
  .c-ttl-lv2 span {
    font-size: 16px;
    font-size: 1rem;
  }
}
.c-ttl-lv2 .sm {
  color: #333;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 1.5em;
}

.c-ttl-lv3 {
  margin-bottom: 2em;
  border-left: 4px solid #ca1a1b;
  border-bottom: 1px solid #333;
  padding: 0 0 7px 20px;
}
@media screen and (max-width: 576px) {
  .c-ttl-lv3 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

/* リード部分用 */
.c-ttl-lead {
  text-align: center;
  font-size: 26px;
  font-size: 1.625rem;
  margin-bottom: 1em;
}
@media screen and (max-width: 820px) {
  .c-ttl-lead {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 576px) {
  .c-ttl-lead {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.c-ttl-lead::after {
  content: "";
  width: 30px;
  height: 3px;
  background-color: #ca1a1b;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

/* 電話番号
----------------------------------------------------------------- */
.c-txt-tel {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 992px) {
  .c-txt-tel {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.c-txt-tel img {
  margin-right: 4px;
  width: 21px;
  vertical-align: baseline;
}
@media screen and (max-width: 992px) {
  .c-txt-tel img {
    width: 14px;
  }
}
.c-txt-tel a[href^="tel:"] {
  color: #ca1a1b;
  display: inline-block;
  pointer-events: none;
}
@media screen and (max-width: 576px) {
  .c-txt-tel a[href^="tel:"] {
    pointer-events: auto;
  }
  .c-txt-tel a[href^="tel:"]:hover {
    color: #71b8d2;
  }
}

/* ==========================================================================
トップページ
========================================================================== */
/* スライドショー
----------------------------------------------------------------- */
.p-idx-slide-wrap {
  margin-top: -80px;
  height: 768px;
  position: relative;
}
@media screen and (max-width: 820px) {
  .p-idx-slide-wrap {
    height: 1120px;
    max-height: 100vh;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-slide-wrap {
    height: 667px;
  }
}
.p-idx-slide-wrap .p-idx-slide-catch {
  z-index: 1;
  position: absolute;
  left: 8.5%;
  bottom: 70px;
  max-width: 600px;
}
@media screen and (max-width: 820px) {
  .p-idx-slide-wrap .p-idx-slide-catch {
    width: 65.85vw;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-slide-wrap .p-idx-slide-catch {
    width: 80%;
  }
}
.p-idx-slide-wrap .p-idx-slide-catch img {
  max-width: 100%;
}
.p-idx-slide-wrap .p-idx-slide-catch .p-idx-slide-catch__circle {
  position: absolute;
  top: -86px;
  left: -140px;
}
@media screen and (max-width: 820px) {
  .p-idx-slide-wrap .p-idx-slide-catch .p-idx-slide-catch__circle {
    top: -8vw;
    left: -15vw;
    width: 30.24vw;
  }
}
.p-idx-slide-wrap .p-idx-slide-items {
  height: 100%;
}
.p-idx-slide-wrap .p-idx-slide-items .p-idx-slide-item {
  height: 100%;
  /* 画面の高さに応じて調整 */
  background-size: cover;
  background-position: center;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 4s ease;
  transition: -webkit-transform 4s ease;
  transition: transform 4s ease;
  transition: transform 4s ease, -webkit-transform 4s ease;
  /* ゆっくりズームさせる */
}
.p-idx-slide-wrap .p-idx-slide-items .p-idx-slide-item1 {
  background-image: url(/resource/images/topimage1.jpg);
}
@media screen and (max-width: 820px) {
  .p-idx-slide-wrap .p-idx-slide-items .p-idx-slide-item1 {
    background-image: url(/resource/images/topimage1_tb.jpg);
  }
}
.p-idx-slide-wrap .p-idx-slide-items .p-idx-slide-item2 {
  background-image: url(/resource/images/topimage2.jpg);
}
@media screen and (max-width: 820px) {
  .p-idx-slide-wrap .p-idx-slide-items .p-idx-slide-item2 {
    background-image: url(/resource/images/topimage2_tb.jpg);
  }
}
.p-idx-slide-wrap .p-idx-slide-items .p-idx-slide-item3 {
  background-image: url(/resource/images/topimage3.jpg);
}
@media screen and (max-width: 820px) {
  .p-idx-slide-wrap .p-idx-slide-items .p-idx-slide-item3 {
    background-image: url(/resource/images/topimage3_tb.jpg);
  }
}
.p-idx-slide-wrap .p-idx-slide-items .p-idx-slide-item4 {
  background-image: url(/resource/images/topimage4.jpg);
}
@media screen and (max-width: 820px) {
  .p-idx-slide-wrap .p-idx-slide-items .p-idx-slide-item4 {
    background-image: url(/resource/images/topimage4_tb.jpg);
  }
}
.p-idx-slide-wrap .p-idx-slide-items .p-idx-slide-item5 {
  background-image: url(/resource/images/topimage5.jpg);
}
@media screen and (max-width: 820px) {
  .p-idx-slide-wrap .p-idx-slide-items .p-idx-slide-item5 {
    background-image: url(/resource/images/topimage5_tb.jpg);
  }
}
@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
    /* 拡大率 */
  }
}
@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
    /* 拡大率 */
  }
}
.p-idx-slide-wrap .p-idx-slide-items .add-animation {
  -webkit-animation: zoomUp 10s linear 0s normal both;
          animation: zoomUp 10s linear 0s normal both;
}
.p-idx-slide-wrap .p-idx-slide-items .slick-list {
  pointer-events: none;
  height: 100%;
}
.p-idx-slide-wrap .p-idx-slide-items .slick-track {
  height: 100%;
}
.p-idx-slide-wrap .p-idx-slide-items .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 15px;
}
.p-idx-slide-wrap .p-idx-slide-items .slick-dots li {
  width: 32px;
  height: 3px;
  margin: 0 4px;
}
.p-idx-slide-wrap .p-idx-slide-items .slick-dots li button {
  padding: 0;
  width: 32px;
  height: 3px;
}
.p-idx-slide-wrap .p-idx-slide-items .slick-dots li button:before {
  content: "";
  width: 32px;
  height: 3px;
  opacity: 0.7;
  font-size: 0;
  background-color: #fff;
  border-radius: 1.5px;
}
.p-idx-slide-wrap .p-idx-slide-items .slick-dots li button:hover:before {
  opacity: 1;
}
.p-idx-slide-wrap .p-idx-slide-items .slick-dots li.slick-active button:before {
  opacity: 1;
  background-color: #ca1a1b;
}
.p-idx-slide-wrap .p-idx-slide-items .slick-next,
.p-idx-slide-wrap .p-idx-slide-items .slick-prev {
  z-index: 2;
  width: 25px;
  height: 25px;
}
.p-idx-slide-wrap .p-idx-slide-items .slick-next:before,
.p-idx-slide-wrap .p-idx-slide-items .slick-prev:before {
  display: none;
}
.p-idx-slide-wrap .p-idx-slide-items .slick-next {
  right: 20px;
  width: 20px;
  height: 20px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.p-idx-slide-wrap .p-idx-slide-items .slick-prev {
  left: 20px;
  width: 20px;
  height: 20px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.slick-dotted.slick-slider {
  margin: 0 auto !important;
}

/* リード
----------------------------------------------------------------- */
.p-idx-lead {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
  position: relative;
}
@media screen and (max-width: 820px) {
  .p-idx-lead {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-lead {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    z-index: 1;
  }
}

.p-idx-lead-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .p-idx-lead-wrap {
    display: block;
  }
}

.p-idx-lead-contents {
  padding-left: max(6%, (100% - 1120px) / 2);
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 30px;
}
@media screen and (max-width: 576px) {
  .p-idx-lead-contents {
    padding-left: 5%;
    padding-right: 5%;
    margin-bottom: 4.5rem;
  }
}

.p-idx-lead__p {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 3em;
}
@media screen and (max-width: 820px) {
  .p-idx-lead__p {
    font-size: 16px;
    font-size: 1rem;
  }
}

.p-idx-lead__catch {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 2em;
}
@media screen and (max-width: 820px) {
  .p-idx-lead__catch {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.p-idx-lead__catch em {
  color: #ca1a1b;
  font-style: normal;
}

.p-idx-lead-img {
  -webkit-flex-basis: 55%;
      -ms-flex-preferred-size: 55%;
          flex-basis: 55%;
}
@media screen and (max-width: 820px) {
  .p-idx-lead-img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-flex-basis: 48%;
        -ms-flex-preferred-size: 48%;
            flex-basis: 48%;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-lead-img {
    width: 86.9vw;
    margin-right: 0;
    margin-left: auto;
  }
}

/* 事業内容
----------------------------------------------------------------- */
.p-idx-business {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}
@media screen and (max-width: 820px) {
  .p-idx-business {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-business {
    padding-top: 290px;
    margin-top: -220px;
  }
}

.p-idx-business-box {
  background-color: #fff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.p-idx-business-box a {
  display: block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.p-idx-business-box a:hover {
  opacity: 0.7;
}
.p-idx-business-box .p-idx-secondary-txt {
  padding: 25px 25px 60px 25px;
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
  padding-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 820px) {
  .p-idx-business-box .p-idx-secondary-txt {
    padding: 15px 15px 50px 15px;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-business-box .p-idx-secondary-txt {
    padding: 25px 25px 50px 25px;
  }
}
.p-idx-business-box .p-idx-secondary-txt img {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 32px;
}
@media screen and (max-width: 820px) {
  .p-idx-business-box .p-idx-secondary-txt p {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-business-box .p-idx-secondary-txt p {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-idx-business-box .p-idx-secondary-txt__ttl {
  color: #333;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 820px) {
  .p-idx-business-box .p-idx-secondary-txt__ttl {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-business-box .p-idx-secondary-txt__ttl {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/* 採用情報
----------------------------------------------------------------- */
.p-idx-recruit {
  padding-bottom: 6.5rem;
}
@media screen and (max-width: 820px) {
  .p-idx-recruit {
    padding-bottom: 5rem;
  }
}
.p-idx-recruit a {
  display: block;
  border: 4px solid #ca1a1b;
  background-image: url(/resource/images/idx_recruit_bg.jpg);
  background-position: top 25% center;
  background-size: cover;
  padding: 2.5rem 3.75rem;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 576px) {
  .p-idx-recruit a {
    padding: 1.875rem 2.5rem 7.5rem 1.875rem;
  }
}
.p-idx-recruit a:hover {
  opacity: 0.8;
}
.p-idx-recruit a .c-ttl-lv1 {
  margin-bottom: 0.4em;
}
.p-idx-recruit a p {
  color: #fff;
}
@media screen and (max-width: 820px) {
  .p-idx-recruit a p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-idx-recruit__button {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #ca1a1b;
  color: #fff;
  text-align: center;
  max-width: 290px;
  width: 100%;
  display: block;
  background-image: url(/resource/images/ico_arrow_circle_ex_white.svg);
  background-size: 32px auto;
  background-position: center right 22px;
  background-repeat: no-repeat;
  font-size: 16px;
  font-weight: 700;
  line-height: 4.5;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 576px) {
  .p-idx-recruit__button {
    width: 240px;
  }
}

/* お知らせ
----------------------------------------------------------------- */
.p-idx-news {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 820px) {
  .p-idx-news {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-news {
    padding-top: 3.75rem;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-news .l-container {
    padding: 0;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-news .c-grid-medium {
    display: block;
  }
}
.p-idx-news .p-idx-news-list-ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem 7%;
}
@media screen and (max-width: 576px) {
  .p-idx-news .p-idx-news-list-ttl {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-news .p-idx-news-list-ttl .c-ttl-lv1 {
    margin-bottom: 0;
  }
}
.p-idx-news .p-idx-news-list-items {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 1px;
  padding: 0.8125rem 1rem 0;
  margin-left: 0;
}
@media screen and (max-width: 576px) {
  .p-idx-news .p-idx-news-list-items {
    padding: 0 5%;
  }
}
.p-idx-news .p-idx-news-list-items ul {
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .p-idx-news .p-idx-news-list-items ul {
    padding-top: 0;
  }
}
.p-idx-news .p-idx-news-list-items ul li {
  border-bottom: 1px solid rgba(38, 38, 38, 0.5);
}
.p-idx-news .p-idx-news-list-items ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding: 0.75rem 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 576px) {
  .p-idx-news .p-idx-news-list-items ul li a {
    display: block;
  }
}
.p-idx-news .p-idx-news-list-items ul li a *,
.p-idx-news .p-idx-news-list-items ul li a ::before,
.p-idx-news .p-idx-news-list-items ul li a ::after {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 576px) {
  .p-idx-news .p-idx-news-list-items ul li a {
    padding: 0.8125rem 0.5rem;
  }
}
.p-idx-news .p-idx-news-list-items ul li a .p-idx-news-list-article-data {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 576px) {
  .p-idx-news .p-idx-news-list-items ul li a .p-idx-news-list-article-data {
    display: block;
    line-height: 1;
  }
}
.p-idx-news .p-idx-news-list-items ul li a .p-idx-news-list-article-ttl {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-left: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  vertical-align: middle;
}
@media screen and (max-width: 576px) {
  .p-idx-news .p-idx-news-list-items ul li a .p-idx-news-list-article-ttl {
    margin-left: 0;
  }
}
.p-idx-news .p-idx-news-list-items ul li a .p-idx-news-list-article-ttl::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 7px;
  height: 8px;
  background: #ca1a1b;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.p-idx-news .p-idx-news-list-items ul li a:hover {
  color: #ca1a1b;
}
.p-idx-news .p-idx-news-list-items .p-idx-news-list-btn {
  display: block;
  text-align: right;
  line-height: 1;
}
.p-idx-news .p-idx-news-list-items .p-idx-news-list-btn a {
  font-size: 0.75rem;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-idx-news .p-idx-news-list-items .p-idx-news-list-btn a:hover {
  color: #ca1a1b;
}

/* お問い合わせエリア
----------------------------------------------------------------- */
.p-idx-contact-wrap {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 3.75rem 0;
}
@media screen and (max-width: 576px) {
  .p-idx-contact-wrap {
    padding: 1.875rem 0;
    margin-top: 3.75rem;
  }
}
.p-idx-contact-wrap .p-idx-contact-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #ca1a1b;
}
@media screen and (max-width: 820px) {
  .p-idx-contact-wrap .p-idx-contact-box {
    width: 78vw;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-contact-wrap .p-idx-contact-box {
    display: block;
    width: 100%;
  }
}
.p-idx-contact-wrap .p-idx-contact-box > * {
  width: 50%;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1.875rem 5%;
}
@media screen and (max-width: 576px) {
  .p-idx-contact-wrap .p-idx-contact-box > * {
    width: 100%;
  }
}
.p-idx-contact-wrap .p-idx-contact-box > *:last-child {
  border-left: 1px solid #e9e9e9;
}
@media screen and (max-width: 576px) {
  .p-idx-contact-wrap .p-idx-contact-box > *:last-child {
    border-top: 1px solid #e9e9e9;
    border-left: none;
  }
}
.p-idx-contact-wrap .p-idx-contact-box p {
  color: #fff;
  line-height: 1.5;
}
@media screen and (max-width: 576px) {
  .p-idx-contact-wrap .p-idx-contact-box p {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-idx-contact-wrap .p-idx-contact-box .c-btn-main {
  margin-top: 1.5rem;
}
@media screen and (max-width: 576px) {
  .p-idx-contact-wrap .p-idx-contact-box .c-btn-main {
    margin-top: 15px;
    width: 200px;
  }
}
@media screen and (max-width: 820px) {
  .p-idx-contact-wrap .p-idx-contact-box .c-btn-main a {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 576px) {
  .p-idx-contact-wrap .p-idx-contact-box .c-btn-main a {
    font-size: 12px;
    font-size: 0.75rem;
    background-size: 20px 20px;
    background-position: center right 15px;
    line-height: 4;
  }
}
.p-idx-contact-wrap .p-idx-contact-box .c-btn-main a:hover {
  opacity: 0.8;
  background-color: #fff;
  color: #333;
  background-image: url(/resource/images/ico_arrow_circle_red.png);
}

/* ==========================================================================
会社案内
========================================================================== */
/* ごあいさつ
----------------------------------------------------------------- */
@media screen and (max-width: 576px) {
  .p-about-message p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-about-message p + p {
  margin-top: 2em;
}
.p-about-message .p-about-message__name {
  font-size: 20px;
  font-size: 1.25rem;
  text-align: right;
  font-weight: 600;
  margin-bottom: 3.75rem;
  line-height: 1.5;
}
@media screen and (max-width: 576px) {
  .p-about-message .p-about-message__name {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.p-about-message .p-about-message__name .sm {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 576px) {
  .p-about-message .p-about-message__name .sm {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

/* 企業理念
----------------------------------------------------------------- */
.p-about-philosophy-contents-box {
  margin-bottom: 104px;
}

.p-about-philosophy-contents-box__list li {
  text-indent: -50px;
  padding-left: 50px;
}
@media screen and (max-width: 576px) {
  .p-about-philosophy-contents-box__list li {
    text-indent: -43px;
    padding-left: 43px;
  }
}
.p-about-philosophy-contents-box__list li + li {
  margin-top: 10px;
}

/* 茨城支社のCREDO
----------------------------------------------------------------- */
.p-about-credo-contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, auto);
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  margin-bottom: 6.5rem;
}
@media screen and (max-width: 576px) {
  .p-about-credo-contents {
    display: block;
    margin-bottom: 5rem;
  }
}

.p-about-credo-contents-box {
  border: 1px solid #ca1a1b;
  position: relative;
  padding: 55px 40px 20px 40px;
}
@media screen and (max-width: 820px) {
  .p-about-credo-contents-box {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.p-about-credo-contents-box + .p-about-credo-contents-box {
  margin-top: 20px;
}
.p-about-credo-contents-box__title {
  background-color: #ca1a1b;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 40px 5px 15px;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 0% 100%);
}
@media screen and (max-width: 576px) {
  .p-about-credo-contents-box__title {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-about-credo-contents-box__list, .p-about-credo-contents-box__text {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 600;
}
@media screen and (max-width: 576px) {
  .p-about-credo-contents-box__list, .p-about-credo-contents-box__text {
    font-size: 18px !important;
  }
}

.p-about-credo-contents-box1 {
  grid-area: 1/1/2/3;
}

.p-about-credo-contents-box2 {
  grid-area: 2/1/3/3;
}

.p-about-credo-contents-box3 {
  grid-area: 3/1/4/3;
}

.p-about-credo-contents-box4 {
  grid-area: 4/1/5/2;
}

.p-about-credo-contents-box5 {
  grid-area: 4/2/5/3;
}

/* 支社概要
----------------------------------------------------------------- */
.p-about-profile-table {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
}
@media screen and (max-width: 820px) {
  .p-about-profile-table {
    max-width: 502px;
  }
}
@media screen and (max-width: 576px) {
  .p-about-profile-table {
    width: calc(100% - 60px);
  }
}
.p-about-profile-table tr:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.p-about-profile-table th,
.p-about-profile-table td {
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 820px) {
  .p-about-profile-table th,
  .p-about-profile-table td {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-about-profile-table th {
  font-weight: 400;
  text-align: center;
  width: 210px;
  vertical-align: top;
}
@media screen and (max-width: 820px) {
  .p-about-profile-table th {
    width: 110px;
  }
}
@media screen and (max-width: 576px) {
  .p-about-profile-table th {
    text-align: left;
    width: 100px;
  }
}

.p-about-profile-map {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5rem;
}
@media screen and (max-width: 820px) {
  .p-about-profile-map {
    max-width: 502px;
  }
}
.p-about-profile-map iframe {
  width: 100%;
  height: 180px;
}
@media screen and (max-width: 820px) {
  .p-about-profile-map iframe {
    height: 125px;
  }
}
@media screen and (max-width: 576px) {
  .p-about-profile-map iframe {
    height: 142px;
  }
}

.p-about-profile-thumbs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 25px;
}
@media screen and (max-width: 576px) {
  .p-about-profile-thumbs {
    display: block;
    width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 576px) {
  .p-about-profile-thumbs > div + div {
    margin-top: 15px;
  }
}

/* 事業所
----------------------------------------------------------------- */
.p-about-office-base {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5rem;
}
@media screen and (max-width: 576px) {
  .p-about-office-base {
    display: block;
  }
}

.p-about-office-base-list {
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
}
@media screen and (max-width: 576px) {
  .p-about-office-base-list {
    margin-bottom: 40px;
  }
}
.p-about-office-base-list li {
  padding-left: 33px;
  position: relative;
}
@media screen and (max-width: 576px) {
  .p-about-office-base-list li {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-about-office-base-list li img {
  position: absolute;
  top: 0;
  left: 0;
}
.p-about-office-base-list li h4 {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 576px) {
  .p-about-office-base-list li h4 {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-about-office-base-list li + li {
  margin-top: 1.875rem;
}

.p-about-office-base-map {
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  padding: 0 40px;
}
@media screen and (max-width: 820px) {
  .p-about-office-base-map {
    padding-right: 0;
  }
}
@media screen and (max-width: 576px) {
  .p-about-office-base-map {
    padding-left: 0;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-about-office-table tr:not(:last-child) th,
.p-about-office-table tr:not(:last-child) td {
  padding-bottom: 50px;
}
@media screen and (max-width: 576px) {
  .p-about-office-table tr:not(:last-child) th,
  .p-about-office-table tr:not(:last-child) td {
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 576px) {
  .p-about-office-table tr:not(:last-child) td {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 576px) {
  .p-about-office-table th,
  .p-about-office-table td {
    display: block;
  }
}
.p-about-office-table th {
  width: 310px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
  vertical-align: top;
}
@media screen and (max-width: 576px) {
  .p-about-office-table th {
    font-size: 16px;
    font-size: 1rem;
    width: 100%;
  }
}
.p-about-office-table th::before {
  content: "■";
  color: #ca1a1b;
  font-size: 14px;
  font-size: 0.875rem;
  position: absolute;
  top: 5px;
  left: 0;
}
@media screen and (max-width: 576px) {
  .p-about-office-table th::before {
    top: 1px;
  }
}
@media screen and (max-width: 576px) {
  .p-about-office-table td {
    font-size: 14px;
    font-size: 0.875rem;
    margin-left: 1.5em;
  }
}

.p-about-office-insurance,
.p-about-office-communication {
  margin-bottom: 6.5rem;
}
@media screen and (max-width: 576px) {
  .p-about-office-insurance,
  .p-about-office-communication {
    margin-bottom: 5rem;
  }
}

/* ==========================================================================
自動車関連事業
========================================================================== */
/* リード
----------------------------------------------------------------- */
.p-automotive-lead {
  padding-bottom: 4rem;
  padding-top: 2.5rem;
}
@media screen and (max-width: 820px) {
  .p-automotive-lead {
    padding-top: 0px;
  }
}
@media screen and (max-width: 576px) {
  .p-automotive-lead {
    padding-top: 40px;
  }
}
@media screen and (max-width: 820px) {
  .p-automotive-lead p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-automotive-lead p + p {
  margin-top: 2em;
}
.p-automotive-lead img {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 820px) {
  .p-automotive-lead img {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 576px) {
  .p-automotive-lead img {
    width: 643px;
    max-width: none;
  }
}

/* マーケティング
----------------------------------------------------------------- */
@media screen and (max-width: 820px) {
  .p-automotive-marketing p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-automotive-marketing-link {
  margin-top: 6.5rem;
}
.p-automotive-marketing-link a {
  text-align: center;
  position: relative;
  overflow: hidden;
  display: block;
  padding: 70px 20px;
}
.p-automotive-marketing-link a:hover .p-automotive-marketing-link__bg {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}
.p-automotive-marketing-link a:hover .c-btn-main span {
  background-color: #ca1a1b;
  color: #fff;
  background-image: url(/resource/images/ico_arrow_circle_white.svg);
}
.p-automotive-marketing-link__title {
  color: #fff;
  font-size: 26px;
  font-size: 1.625rem;
  margin-bottom: 0.75em;
}
.p-automotive-marketing-link__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/* ロジスティクス
----------------------------------------------------------------- */
.p-automotive-logistics {
  padding-bottom: 200px;
}
@media screen and (max-width: 820px) {
  .p-automotive-logistics {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 820px) {
  .p-automotive-logistics p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-automotive-logistics-supply__title {
  background-color: #fdf6f6;
  color: #ca1a1b;
  font-size: 22px;
  font-size: 1.375rem;
  text-align: center;
  padding: 10px;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, calc(100% - 15px) 50%, 100% 100%, 0% 100%, 20px 50%);
          clip-path: polygon(0% 0%, 100% 0%, calc(100% - 15px) 50%, 100% 100%, 0% 100%, 20px 50%);
  margin-bottom: 2em;
}

.p-automotive-logistics-supply-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 8.75rem;
}
@media screen and (max-width: 576px) {
  .p-automotive-logistics-supply-flex {
    display: block;
  }
}

.p-automotive-logistics-supply-flex-box {
  border: 1px solid #ca1a1b;
  padding: 1.875rem 25px;
  -webkit-flex-basis: 31.6%;
      -ms-flex-preferred-size: 31.6%;
          flex-basis: 31.6%;
  position: relative;
}
.p-automotive-logistics-supply-flex-box img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25rem;
}
.p-automotive-logistics-supply-flex-box::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  bottom: 0;
  right: 0;
  background-color: #ca1a1b;
  -webkit-clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
}
@media screen and (max-width: 576px) {
  .p-automotive-logistics-supply-flex-box + .p-automotive-logistics-supply-flex-box {
    margin-top: 20px;
  }
}

.p-automotive-logistics-datasheet__title {
  margin-bottom: 1em;
  font-size: 22px;
  font-size: 1.375rem;
}

.p-automotive-logistics-datasheet-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: -50px;
}
@media screen and (max-width: 576px) {
  .p-automotive-logistics-datasheet-list {
    display: block;
    margin-top: -20px;
  }
}
.p-automotive-logistics-datasheet-list li {
  -webkit-flex-basis: 29.59%;
      -ms-flex-preferred-size: 29.59%;
          flex-basis: 29.59%;
  margin-top: 3.125rem;
}
@media screen and (max-width: 820px) {
  .p-automotive-logistics-datasheet-list li {
    -webkit-flex-basis: 48%;
        -ms-flex-preferred-size: 48%;
            flex-basis: 48%;
  }
}
.p-automotive-logistics-datasheet-list li h5 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.75em;
}
@media screen and (max-width: 820px) {
  .p-automotive-logistics-datasheet-list li h5 {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-automotive-logistics-datasheet-list li a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.p-automotive-logistics-datasheet-list li a:hover {
  opacity: 0.7;
}

/* ==========================================================================
お役立ち営業
========================================================================== */
/* トヨタ販売店のサポート
----------------------------------------------------------------- */
.p-solution-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .p-solution-flex {
    display: block;
  }
}

.p-solution-client {
  background-color: #f7f7f7;
  padding: 65px 50px;
  position: relative;
  margin-top: 5rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 820px) {
  .p-solution-client {
    padding: 43px 30px;
  }
}
.p-solution-client__label {
  position: absolute;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.06em;
  top: 0;
  left: 0;
  background-color: #333;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 0% 100%);
  padding: 0 30px 0 15px;
}
@media screen and (max-width: 820px) {
  .p-solution-client__label {
    font-size: 13px;
    font-size: 0.8125rem;
    padding: 0 20px 0 10px;
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 13px) 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, calc(100% - 13px) 100%, 0% 100%);
  }
}

.p-solution-client-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .p-solution-client-flex {
    display: block;
  }
}

.p-solution-client-flex-text {
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 576px) {
  .p-solution-client-flex-text {
    margin-bottom: 20px;
  }
}
.p-solution-client-flex-text__num {
  font-size: min(42px, 3.2vw);
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (max-width: 820px) {
  .p-solution-client-flex-text__num {
    font-size: min(27px, 3.2vw);
  }
}
@media screen and (max-width: 576px) {
  .p-solution-client-flex-text__num {
    font-size: 27px;
    font-size: 1.6875rem;
  }
}
.p-solution-client-flex-text__num strong {
  color: #ca1a1b;
  font-family: "Poppins", sans-serif;
  display: inline-block;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  margin: 0 3px;
  font-size: min(62px, 6vw);
}
@media screen and (max-width: 820px) {
  .p-solution-client-flex-text__num strong {
    font-size: min(40px, 5.8vw);
  }
}
@media screen and (max-width: 576px) {
  .p-solution-client-flex-text__num strong {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

.p-solution-client-flex-image {
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
}

.p-solution-client-flex-text-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.p-solution-client-flex-text-title__text {
  font-size: 22px;
  font-size: 1.375rem;
  margin-left: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 820px) {
  .p-solution-client-flex-text-title__text {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-solution-client-flex-text-title__ico {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 820px) {
  .p-solution-client-flex-text-title__ico img {
    height: 42px;
  }
}

.p-solution-client-list {
  letter-spacing: -0.4em;
  margin-left: -12px;
  margin-top: 28px;
}
@media screen and (max-width: 820px) {
  .p-solution-client-list {
    margin-left: -5px;
  }
}
@media screen and (max-width: 576px) {
  .p-solution-client-list {
    margin-left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.p-solution-client-list li {
  letter-spacing: normal;
  display: inline-block;
  background-color: #fff;
  text-align: center;
  border: 1px solid #adadad;
  font-weight: 600;
  width: 210px;
  padding: 13px 10px;
  margin-left: 12px;
  margin-top: 12px;
  border-left: 3px solid #ca1a1b;
}
@media screen and (max-width: 820px) {
  .p-solution-client-list li {
    width: 135px;
    font-size: 10px;
    font-size: 0.625rem;
    margin-left: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 576px) {
  .p-solution-client-list li {
    -webkit-flex-basis: 48%;
        -ms-flex-preferred-size: 48%;
            flex-basis: 48%;
    margin-left: 0;
  }
}
@media screen and (max-width: 576px) {
  .p-solution-client-list li:nth-child(2n) {
    margin-left: 4%;
  }
}

/* お役立ち活動の一例 */
.p-solution-examples__title {
  margin-bottom: 2em;
  text-align: center;
  margin-top: 120px;
}
@media screen and (max-width: 820px) {
  .p-solution-examples__title {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.p-solution-examples__title img {
  margin-right: 10px;
  margin-bottom: 0;
  margin-top: 0;
}
@media screen and (max-width: 820px) {
  .p-solution-examples__title img {
    width: 38px;
  }
}

.p-solution-examples-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: -2%;
}
@media screen and (max-width: 576px) {
  .p-solution-examples-flex {
    display: block;
  }
}

.p-solution-examples-flex-box {
  -webkit-flex-basis: 31.63%;
      -ms-flex-preferred-size: 31.63%;
          flex-basis: 31.63%;
  border: 1px solid #333;
}
@media screen and (max-width: 820px) {
  .p-solution-examples-flex-box {
    margin-top: 4%;
  }
}
.p-solution-examples-flex-box:not(:nth-child(3n)) {
  margin-right: 2.555%;
}
@media screen and (max-width: 820px) {
  .p-solution-examples-flex-box:not(:nth-child(3n)) {
    margin-right: 0;
  }
}
@media screen and (max-width: 820px) {
  .p-solution-examples-flex-box:not(:nth-child(2n)) {
    margin-right: 4%;
  }
}
@media screen and (max-width: 576px) {
  .p-solution-examples-flex-box:not(:nth-child(2n)) {
    margin-right: 0;
  }
}
@media screen and (max-width: 820px) {
  .p-solution-examples-flex-box {
    -webkit-flex-basis: 48%;
        -ms-flex-preferred-size: 48%;
            flex-basis: 48%;
  }
}
@media screen and (max-width: 820px) {
  .p-solution-examples-flex-box p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-solution-examples-flex-box__title {
  padding: 14px 20px;
  background-color: #ebebeb;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 820px) {
  .p-solution-examples-flex-box__title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.p-solution-examples-flex-box__title::before {
  content: "";
  width: 22px;
  height: 22px;
  background-image: url(/resource/images/solution_exampels_ico_check.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
  margin-right: 10px;
}
.p-solution-examples-flex-box__contents {
  padding: 10px 20px;
}
.p-solution-examples-flex-box__contents p + p {
  border-top: 2px dotted #333;
  margin-top: 0.5em;
  padding-top: 0.5em;
}

.p-solution-client-flex-text-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 576px) {
  .p-solution-client-flex-text-wrap {
    display: block;
  }
}
.p-solution-client-flex-text-wrap .p-solution-client-flex-text__num {
  margin-left: 20px;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

/* 部品商・整備工場のサポート */
.p-solution-repair .p-solution-client {
  padding-bottom: 50px;
}
@media screen and (max-width: 576px) {
  .p-solution-repair .p-solution-client {
    padding-bottom: 1px;
  }
}
@media screen and (max-width: 576px) {
  .p-solution-repair .p-solution-client-flex-text-title__ico img {
    width: 35px;
  }
}

/* ==========================================================================
リテール事業
========================================================================== */
/* 共通
----------------------------------------------------------------- */
.p-retail-insurance-table {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.p-retail-insurance-table tr:not(:last-child) {
  border-bottom: 1px solid rgba(51, 51, 51, 0.5);
}
.p-retail-insurance-table tr th,
.p-retail-insurance-table tr td {
  padding-top: 10px;
  padding-bottom: 10px;
  vertical-align: top;
}
@media screen and (max-width: 820px) {
  .p-retail-insurance-table tr th,
  .p-retail-insurance-table tr td {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 576px) {
  .p-retail-insurance-table tr th,
  .p-retail-insurance-table tr td {
    display: block;
  }
}
.p-retail-insurance-table tr th {
  font-weight: 600;
  width: 217px;
  padding-right: 53px;
  padding-left: 77px;
}
@media screen and (max-width: 576px) {
  .p-retail-insurance-table tr th {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 576px) {
  .p-retail-insurance-table tr td {
    padding-top: 0;
  }
}

.p-retail-sec {
  margin-bottom: 6.5rem;
}

/* 運営会社
----------------------------------------------------------------- */
/* 沿革
----------------------------------------------------------------- */
.p-retail-history .p-retail-insurance-table tr th {
  padding-left: 35px;
}
@media screen and (max-width: 576px) {
  .p-retail-history .p-retail-insurance-table tr th {
    padding-left: 0;
  }
}

/* 各種方針
----------------------------------------------------------------- */
.p-retail-policy-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 820px) {
  .p-retail-policy-list {
    margin-top: -20px;
  }
}
@media screen and (max-width: 576px) {
  .p-retail-policy-list {
    display: block;
  }
}
.p-retail-policy-list li {
  -webkit-flex-basis: 29.5%;
      -ms-flex-preferred-size: 29.5%;
          flex-basis: 29.5%;
}
@media screen and (max-width: 820px) {
  .p-retail-policy-list li {
    -webkit-flex-basis: 48%;
        -ms-flex-preferred-size: 48%;
            flex-basis: 48%;
    margin-top: 20px;
  }
}
.p-retail-policy-list li:not(:nth-child(3n)) {
  margin-right: 5.75%;
}
@media screen and (max-width: 820px) {
  .p-retail-policy-list li:not(:nth-child(3n)) {
    margin-right: 0;
  }
}
@media screen and (max-width: 820px) {
  .p-retail-policy-list li:not(:nth-child(2n)) {
    margin-right: 4%;
  }
}
@media screen and (max-width: 576px) {
  .p-retail-policy-list li:not(:nth-child(2n)) {
    margin-right: 0;
  }
}
.p-retail-policy-list li a {
  display: block;
  border: 1px solid rgba(194, 194, 194, 0.5);
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 13px;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.p-retail-policy-list li a::after {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url(/resource/images/ico_ex_circle_red.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: container;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-retail-policy-list li a span {
  display: inline-block;
  -webkit-transform: translateX(-0.5em);
          transform: translateX(-0.5em);
}
.p-retail-policy-list li a:hover {
  opacity: 0.7;
}

.p-retail-shop {
  margin-bottom: 0;
}

.p-retail-shop-box {
  background-color: #f7f7f7;
  padding: 80px 13%;
}
@media screen and (max-width: 576px) {
  .p-retail-shop-box {
    padding: 40px 20px;
  }
}
.p-retail-shop-box + .p-retail-shop-box {
  margin-top: 2.5rem;
}

.p-retail-shop-box-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 4rem;
}
@media screen and (max-width: 576px) {
  .p-retail-shop-box-flex {
    display: block;
  }
}

.p-retail-shop-box-flex-data {
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
}
@media screen and (max-width: 820px) {
  .p-retail-shop-box-flex-data {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 576px) {
  .p-retail-shop-box-flex-data {
    margin-bottom: 20px;
  }
}
.p-retail-shop-box-flex-data__title {
  text-indent: -24px;
  padding-left: 24px;
  margin-bottom: 1em;
}
@media screen and (max-width: 820px) {
  .p-retail-shop-box-flex-data__title {
    font-size: 16px;
    font-size: 1rem;
    text-indent: -20px;
    padding-left: 20px;
  }
}
.p-retail-shop-box-flex-data__title::before {
  content: "■";
  display: inline;
  color: #ca1a1b;
  margin-right: 3px;
}

.p-retail-shop-box-flex-image {
  -webkit-flex-basis: 39.72%;
      -ms-flex-preferred-size: 39.72%;
          flex-basis: 39.72%;
}

.p-retail-shop-box-map iframe {
  width: 100%;
  height: 276px;
}

.p-retail-insurance-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 5rem;
}
@media screen and (max-width: 576px) {
  .p-retail-insurance-buttons {
    display: block;
  }
}
.p-retail-insurance-buttons li {
  -webkit-flex-basis: 29.5%;
      -ms-flex-preferred-size: 29.5%;
          flex-basis: 29.5%;
  margin: 0 10px;
}
@media screen and (max-width: 820px) {
  .p-retail-insurance-buttons li {
    -webkit-flex-basis: 48%;
        -ms-flex-preferred-size: 48%;
            flex-basis: 48%;
  }
}
@media screen and (max-width: 576px) {
  .p-retail-insurance-buttons li {
    margin: 20px 0;
  }
}
.p-retail-insurance-buttons li a {
  display: block;
  border: 1px solid rgba(194, 194, 194, 0.5);
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 13px;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.p-retail-insurance-buttons li a::after {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url(/resource/images/ico_ex_circle_red.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: container;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-retail-insurance-buttons li a span {
  display: inline-block;
  -webkit-transform: translateX(-0.5em);
          transform: translateX(-0.5em);
}
.p-retail-insurance-buttons li a:hover {
  opacity: 0.7;
}

.p-retail-mobile {
  padding-bottom: 200px;
}
@media screen and (max-width: 576px) {
  .p-retail-mobile {
    padding-bottom: 80px;
  }
}

/* ==========================================================================
地域活性化事業
========================================================================== */
.p-revitalization-lead {
  padding-top: 40px;
  padding-bottom: 0;
}
@media screen and (max-width: 820px) {
  .p-revitalization-lead p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 820px) {
  .p-revitalization-activities p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

/* 活動内容
----------------------------------------------------------------- */
.p-revitalization-activities__example {
  margin-bottom: 6.5rem;
}
@media screen and (max-width: 820px) {
  .p-revitalization-activities__example {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 576px) {
  .p-revitalization-activities__example {
    margin-bottom: 2.5rem;
  }
}
.p-revitalization-activities__example dt {
  font-weight: 400;
  margin-top: 2.5rem;
}
@media screen and (max-width: 820px) {
  .p-revitalization-activities__example dt,
  .p-revitalization-activities__example dd {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-revitalization-activities-thums {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 576px) {
  .p-revitalization-activities-thums {
    display: block;
  }
}
.p-revitalization-activities-thums > figure {
  -webkit-flex-basis: 47.9%;
      -ms-flex-preferred-size: 47.9%;
          flex-basis: 47.9%;
  margin-top: 50px;
  margin-bottom: 0;
}
@media screen and (max-width: 820px) {
  .p-revitalization-activities-thums > figure {
    margin-top: 30px;
    -webkit-flex-basis: 48%;
        -ms-flex-preferred-size: 48%;
            flex-basis: 48%;
  }
}
@media screen and (max-width: 576px) {
  .p-revitalization-activities-thums > figure + div {
    margin-top: 20px;
  }
}

.p-revitalization-activities-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 6.5rem;
}
@media screen and (max-width: 576px) {
  .p-revitalization-activities-flex {
    display: block;
  }
}

.p-revitalization-activities-flex-text {
  -webkit-flex-basis: 45.71%;
      -ms-flex-preferred-size: 45.71%;
          flex-basis: 45.71%;
}
@media screen and (max-width: 576px) {
  .p-revitalization-activities-flex-text + .p-revitalization-activities-flex-text {
    margin-top: 40px;
  }
}

.p-revitalization-activities-box {
  background-color: #f7f7f7;
  margin-top: 4rem;
  padding: 4rem;
}
@media screen and (max-width: 820px) {
  .p-revitalization-activities-box {
    padding: 1.875rem;
  }
}
.p-revitalization-activities-box__title {
  font-size: 22px;
  font-size: 1.375rem;
  margin-bottom: 1em;
}
.p-revitalization-activities-box__title span {
  color: #ca1a1b;
}
.p-revitalization-activities-box__list {
  margin-top: 1.875rem;
}

/* 茨城ワクドキクラブ
----------------------------------------------------------------- */
.p-revitalization-wakudoki {
  padding-bottom: 1.875rem;
}
@media screen and (max-width: 820px) {
  .p-revitalization-wakudoki p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-revitalization-wakudoki-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 1.25rem;
}
@media screen and (max-width: 576px) {
  .p-revitalization-wakudoki-flex {
    display: block;
  }
}

.p-revitalization-wakudoki-flex-box {
  -webkit-flex-basis: 47.95%;
      -ms-flex-preferred-size: 47.95%;
          flex-basis: 47.95%;
  background-color: #fff;
  margin-top: 2.5rem;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 576px) {
  .p-revitalization-wakudoki-flex-box {
    margin-top: 20px;
  }
}
.p-revitalization-wakudoki-flex-box__title {
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 0.5em;
}
.p-revitalization-wakudoki-flex-box__title::before {
  content: "■";
  color: #ca1a1b;
  margin-right: 3px;
}

.p-revitalization-wakudoki-flex-box-inner {
  padding: 30px;
}

/* 急速充電・水素ステーション
----------------------------------------------------------------- */
.p-revitalization-ev_fcv {
  padding-top: 6.5rem;
  padding-bottom: 200px;
}
@media screen and (max-width: 820px) {
  .p-revitalization-ev_fcv {
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 820px) {
  .p-revitalization-ev_fcv p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-revitalization-ev_fcv-contents {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.p-revitalization-ev_fcv-box + .p-revitalization-ev_fcv-box {
  margin-top: 4rem;
}

.p-revitalization-ev_fcv-box__title {
  margin-bottom: 1em;
}
.p-revitalization-ev_fcv-box__title::before {
  content: "■";
  display: inline;
  color: #ca1a1b;
  margin-right: 5px;
}

.p-revitalization-ev_fcv-box-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .p-revitalization-ev_fcv-box-flex {
    display: block;
  }
}

.p-revitalization-ev_fcv-box-flex-text {
  -webkit-flex-basis: 57.7%;
      -ms-flex-preferred-size: 57.7%;
          flex-basis: 57.7%;
}
@media screen and (max-width: 576px) {
  .p-revitalization-ev_fcv-box-flex-text {
    margin-bottom: 20px;
  }
}
.p-revitalization-ev_fcv-box-flex-text table tr:not(:last-child) {
  border-bottom: 1px solid rgba(51, 51, 51, 0.5);
}
.p-revitalization-ev_fcv-box-flex-text table tr th,
.p-revitalization-ev_fcv-box-flex-text table tr td {
  padding-top: 10px;
  padding-bottom: 10px;
  vertical-align: top;
}
@media screen and (max-width: 820px) {
  .p-revitalization-ev_fcv-box-flex-text table tr th,
  .p-revitalization-ev_fcv-box-flex-text table tr td {
    font-size: 14px;
  }
}
.p-revitalization-ev_fcv-box-flex-text table tr th {
  font-weight: 400;
  text-align: center;
  width: 130px;
}
.p-revitalization-ev_fcv-box-flex-text table tr td {
  padding-left: 30px;
}

.p-revitalization-ev_fcv-box-flex-image {
  -webkit-flex-basis: 36.5%;
      -ms-flex-preferred-size: 36.5%;
          flex-basis: 36.5%;
}

/* ==========================================================================
各種方針
========================================================================== */
.p-policies-health-list {
  counter-reset: num;
  padding-left: 0;
}
.p-policies-health-list > li {
  list-style: none;
  position: relative;
  padding-left: 2em;
  counter-increment: num;
}
@media screen and (max-width: 820px) {
  .p-policies-health-list > li {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-policies-health-list > li::before {
  content: counter(num) " .";
  position: absolute;
  left: 0;
}
.p-policies-health-list > li + li {
  margin-top: 2em;
}

.p-policies-health-list-sub {
  counter-reset: num;
  padding-left: 0;
}
.p-policies-health-list-sub li {
  list-style: none;
  position: relative;
  counter-increment: num;
}
@media screen and (max-width: 820px) {
  .p-policies-health-list-sub li {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-policies-health-list-sub li::before {
  position: absolute;
  left: 0;
}
.p-policies-health-list-sub--num li {
  padding-left: 2em;
}
.p-policies-health-list-sub--num li::before {
  content: counter(num) " ）";
}
.p-policies-health-list-sub--latin li {
  padding-left: 1.5em;
}
.p-policies-health-list-sub--latin li::before {
  content: counter(num, lower-alpha) ".";
}

.p-policies-dl {
  margin-top: 2.5rem;
}
@media screen and (max-width: 820px) {
  .p-policies-dl dt,
  .p-policies-dl dd {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-policies-dl dt {
  font-weight: 400;
}
.p-policies-dl dd + dt {
  margin-top: 2em;
}

/* 健康経営宣言
----------------------------------------------------------------- */
@media screen and (max-width: 820px) {
  .p-policies-health {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 820px) {
  .p-policies-health p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 576px) {
  .p-policies-health img {
    width: 680px;
    max-width: none;
  }
}

.p-policies-health__name {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 576px) {
  .p-policies-health__name {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-policies-health__name .sm {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 576px) {
  .p-policies-health__name .sm {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-policies-health__title {
  margin-top: 3em;
  font-size: 20px;
  font-size: 1.25rem;
}

/* CSR方針
----------------------------------------------------------------- */
@media screen and (max-width: 820px) {
  .p-policies-csr {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

/* 個人情報保護方針
----------------------------------------------------------------- */
.p-policies-privacy p {
  margin-bottom: 2em;
}
@media screen and (max-width: 820px) {
  .p-policies-privacy p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

/* カスタマーハラスメント対応指針
----------------------------------------------------------------- */
.p-policies-customer {
  padding-bottom: 208px;
}
@media screen and (max-width: 820px) {
  .p-policies-customer p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-policies-customer-button li {
  -webkit-flex-basis: 333px;
      -ms-flex-preferred-size: 333px;
          flex-basis: 333px;
}
.p-policies-customer-button li a {
  line-height: 1.5;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* ==========================================================================
お問い合わせ
========================================================================== */
@media screen and (max-width: 820px) {
  .p-contact_business_recruit p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

/* 商品に関するお問い合わせ
----------------------------------------------------------------- */
.p-contact-products {
  padding-bottom: 200px;
}

.p-contact-product-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5rem;
}
@media screen and (max-width: 576px) {
  .p-contact-product-head {
    display: block;
  }
}

.p-contact-product-head-text {
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
}
@media screen and (max-width: 576px) {
  .p-contact-product-head-text {
    margin-bottom: 30px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-contact-product-head-tel {
  -webkit-flex-basis: 46%;
      -ms-flex-preferred-size: 46%;
          flex-basis: 46%;
}

.p-contact-product-head-tel-inner {
  border: 1px solid #333;
  text-align: center;
  padding: 30px 20px;
}
.p-contact-product-head-tel-inner h3 {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 12px;
}
.p-contact-product-head-tel-inner__number {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #ca1a1b;
  line-height: 1.1;
}
@media screen and (max-width: 576px) {
  .p-contact-product-head-tel-inner__number {
    font-size: 37px;
    font-size: 2.3125rem;
  }
}
.p-contact-product-head-tel-inner__number img {
  margin-right: 5px;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
@media screen and (max-width: 576px) {
  .p-contact-product-head-tel-inner__number img {
    width: 20px;
  }
}
.p-contact-product-head-tel-inner p {
  text-align: center;
}

.p-contact-products-certificate {
  margin-bottom: 5rem;
}

.p-contact-product-certificate-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .p-contact-product-certificate-flex {
    display: block;
  }
}

.p-contact-product-certificate-flex-image {
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
}

.p-contact-product-certificate-flex-text {
  -webkit-flex-basis: 46%;
      -ms-flex-preferred-size: 46%;
          flex-basis: 46%;
}
@media screen and (max-width: 820px) {
  .p-contact-product-certificate-flex-text li {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 820px) {
  .p-contact-products-caution p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

/* ==========================================================================
お知らせ
========================================================================== */
.l-news-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}
@media screen and (max-width: 820px) {
  .l-news-wrap {
    display: block;
  }
}

.l-news-articles {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 7.5%;
}
@media screen and (max-width: 820px) {
  .l-news-articles {
    margin-right: 0;
    margin-bottom: 60px;
  }
}

.l-news-sidebar {
  -webkit-flex-basis: 290px;
      -ms-flex-preferred-size: 290px;
          flex-basis: 290px;
}
.l-news-sidebar__title {
  font-size: 18px;
  font-size: 1.125rem;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-weight: 400;
}

.l-news-sidebar__list li a {
  border: 1px solid #c2c2c2;
  padding: 15px 10px 15px 30px;
  display: block;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.l-news-sidebar__list li a::after {
  content: "";
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
  background-image: url(/resource/images/ico_arrow_circle_red.png);
  background-position: center;
  background-size: contain;
}
.l-news-sidebar__list li a:hover {
  opacity: 0.7;
}
.l-news-sidebar__list li + li {
  margin-top: 20px;
}

.l-news-sidebar-col + .l-news-sidebar-col {
  margin-top: 4rem;
}

/* 記事
----------------------------------------------------------------- */
.p-news-article + .p-news-article {
  margin-top: 30px;
}
.p-news-article a {
  display: block;
  background-color: #f7f7f7;
  padding: 40px 30px;
}
.p-news-article .p-news-article-data {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-bottom: 15px;
}
.p-news-article .p-news-article-data__category {
  display: inline-block;
  background-color: #ca1a1b;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0 15px;
  margin-right: 1em;
}
.p-news-article .p-news-article__title {
  font-size: 20px;
  font-size: 1.25rem;
}
.p-news-article .p-news-article-content {
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: 5rem;
  padding: 2.5rem 0;
}
@media screen and (max-width: 820px) {
  .p-news-article .p-news-article-content {
    margin-bottom: 3.75rem;
  }
}
.p-news-article .p-news-article-content p:nth-child(n+2) {
  margin-top: 1.5rem;
}
.p-news-article .p-news-article-content a {
  color: #ff9849;
  text-decoration: underline;
}
.p-news-article .p-news-article-content a:hover {
  color: #71b8d2;
  text-decoration: none;
}

/* ページネーション
----------------------------------------------------------------- */
.wp-pagenavi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3.75rem;
  position: relative;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi .current {
  color: #fff;
  background-color: #ca1a1b;
}

.wp-pagenavi span,
.wp-pagenavi a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ca1a1b;
  background-color: #e9e9e9;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  width: 2rem;
  height: 2rem;
  margin: 0 0.25rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.wp-pagenavi a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.wp-pagenavi a:hover {
  color: #fff;
  background-color: #ca1a1b;
}
.wp-pagenavi a.first, .wp-pagenavi a.last {
  width: auto;
  font-size: 14px;
  padding: 0.5rem;
}

/* 個別ページ
----------------------------------------------------------------- */
.p-single-wrap {
  padding-bottom: 200px;
}

.p-news-single-wrap {
  margin-bottom: 120px;
}

.p-news-single-article .p-news-article {
  background-color: #f7f7f7;
  padding: 40px 40px;
}
.p-news-single-article .p-news-article__title {
  margin-bottom: 1em;
}

.p-news-article-contents * + * {
  margin-top: 20px;
}
.p-news-article-contents a {
  padding: 0;
  text-decoration: underline;
}

/* ==========================================================================
 スクロール
=========================================================================*/
.u-scroll-anchor {
  display: block;
}
@media screen and (max-width: 992px) {
  .u-scroll-anchor {
    padding-top: 3.75rem;
    margin-top: -3.75rem;
  }
}

/* ==========================================================================
マージン・パディング
=========================================================================*/
/* マージン
----------------------------------------------------------------- */
.u-margin-auto {
  margin: auto;
}

.u-margin-remove {
  margin: 0 !important;
}

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

.u-margin-xxsmall-top {
  margin-top: 10px;
}

.u-margin-xsmall-top {
  margin-top: 1rem;
}
@media screen and (max-width: 820px) {
  .u-margin-xsmall-top {
    margin-top: 14px;
  }
}
@media screen and (max-width: 576px) {
  .u-margin-xsmall-top {
    margin-top: 10px;
  }
}

.u-margin-small-top {
  margin-top: 1.5rem;
}
@media screen and (max-width: 820px) {
  .u-margin-small-top {
    margin-top: 1.25rem;
  }
}

.u-margin-medium-small-top {
  margin-top: 1.875rem;
}
@media screen and (max-width: 820px) {
  .u-margin-medium-small-top {
    margin-top: 1.875rem;
  }
}
@media screen and (max-width: 576px) {
  .u-margin-medium-small-top {
    margin-top: 1.875rem;
  }
}

.u-margin-medium-top {
  margin-top: 2.5rem;
}
@media screen and (max-width: 820px) {
  .u-margin-medium-top {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 576px) {
  .u-margin-medium-top {
    margin-top: 2.5rem;
  }
}

.u-margin-large-top {
  margin-top: 4rem;
}
@media screen and (max-width: 576px) {
  .u-margin-large-top {
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 576px) {
  .u-margin-large-top {
    margin-top: 2.5rem;
  }
}

.u-margin-xlarge-top {
  margin-top: 5rem;
}
@media screen and (max-width: 820px) {
  .u-margin-xlarge-top {
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 576px) {
  .u-margin-xlarge-top {
    margin-top: 3.75rem;
  }
}

.u-margin-xxlarge-top {
  margin-top: 6.5rem;
}
@media screen and (max-width: 820px) {
  .u-margin-xxlarge-top {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 576px) {
  .u-margin-xxlarge-top {
    margin-top: 5rem;
  }
}

.u-margin-small-bottom {
  margin-bottom: 1.25rem;
}

/* パディング
----------------------------------------------------------------- */
.u-padding-remove {
  padding: 0 !important;
}

.u-padding-small {
  padding: 1.25rem;
}

.u-padding-medium {
  padding: 2.5rem;
}

.u-padding-large {
  padding: 3.75rem;
}
@media screen and (max-width: 576px) {
  .u-padding-large {
    padding: 2.5rem;
  }
}

.u-padding-top-xlarge {
  padding-top: 5rem;
}
@media screen and (max-width: 820px) {
  .u-padding-top-xlarge {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 576px) {
  .u-padding-top-xlarge {
    padding-top: 3.75rem;
  }
}

.u-padding-xxlarge-top {
  padding-top: 6.25rem;
}
@media screen and (max-width: 820px) {
  .u-padding-xxlarge-top {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 576px) {
  .u-padding-xxlarge-top {
    padding-top: 5rem;
  }
}

.u-padding-small-bottom {
  padding-bottom: 1.25rem;
}/*# sourceMappingURL=main.css.map */