@charset "UTF-8";
/*====================================================================
フロントエンド用スタイル
====================================================================*/
/*====================================================================
変数
====================================================================*/
/*====================================================================
ミックスイン
====================================================================*/
/*====================================================================
CSSリセット
====================================================================*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  border: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

/*====================================================================
ベーススタイル
====================================================================*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: #333;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2.1;
  word-break: break-word;
  overflow-wrap: break-word;
  background: #fafafa;
}
body::before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  content: "";
  pointer-events: none;
}
body.is-lock {
  height: 100%;
  overflow: hidden;
}
body.is-overlay::before {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  content: "";
}

img {
  max-width: 100%;
  height: auto;
  font-size: 0;
  line-height: 0;
  vertical-align: bottom;
  border: none;
  image-rendering: -webkit-optimize-contrast;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  line-height: 1.5;
}

h1 {
  font-size: 30px;
}

h2 {
  color: #004672;
  font-size: 30px;
  text-align: center;
}
@media screen and (max-width: 991px) {
  h2 {
    font-size: 24px;
  }
}
h2 span:first-child:not(:last-child) {
  display: block;
  color: #95989a;
  font-weight: normal;
  font-size: 17px;
  font-family: "PT Sans", sans-serif;
}
@media screen and (max-width: 991px) {
  h2 span:first-child:not(:last-child) {
    font-size: 12px;
  }
}

h3 {
  color: #004672;
  font-size: 24px;
}
@media screen and (max-width: 991px) {
  h3 {
    font-size: 18px;
  }
}
h3 span:first-child:not(:last-child) {
  display: block;
  color: #95989a;
  font-weight: normal;
  font-size: 17px;
  font-family: "PT Sans", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 991px) {
  h3 span:first-child:not(:last-child) {
    font-size: 12px;
  }
}

h4 {
  font-size: 18px;
}

a {
  color: #333;
  text-decoration: none;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

strong {
  font-weight: bold;
}

figure {
  margin: 0;
}

iframe {
  display: block;
  max-width: 100%;
  margin: 0;
}

button {
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  background: none;
  border: none;
}
button:focus:not(.focus-visible) {
  outline: none;
}

input[type=text],
input[type=tel],
input[type=mail],
input[type=number],
select,
textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 52px;
  padding: 0 15px;
  font-size: inherit;
  font-family: inherit;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=mail]:focus,
input[type=number]:focus,
select:focus,
textarea:focus {
  outline: none;
  -webkit-box-shadow: 0 0 6px #4ab9ff;
          box-shadow: 0 0 6px #4ab9ff;
}

select {
  background-image: url(../images/common/icon_select.svg);
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 13px;
}

textarea {
  height: auto;
  padding: 1em;
  resize: none;
}

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

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

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

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

::placeholder {
  color: #ccc;
}

/*---------------------------------
# 共通クラス
---------------------------------*/
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  word-wrap: normal !important;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}

.container,
.container-wide {
  position: relative;
  margin: 0 auto;
  padding: 0 13px;
}
.container::after,
.container-wide::after {
  display: table;
  clear: both;
  content: "";
}

.container {
  max-width: 986px;
}

.container-wide {
  max-width: 1306px;
}

.clearfix::after {
  display: table;
  clear: both;
  content: "";
}

@-webkit-keyframes fadeInUp {
  0% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.slick-track::before, .slick-track::after {
  display: table;
  content: "";
}
.slick-track::after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*====================================================================
左右揃え
====================================================================*/
.u-ta-l {
  text-align: left !important;
}

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

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

@media screen and (min-width: 992px) {
  .u-ta-l--pc {
    text-align: left !important;
  }
}

@media screen and (min-width: 992px) {
  .u-ta-c--pc {
    text-align: center !important;
  }
}

@media screen and (min-width: 992px) {
  .u-ta-r--pc {
    text-align: right !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-ta-l--tb {
    text-align: left !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-ta-c--tb {
    text-align: center !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-ta-r--tb {
    text-align: right !important;
  }
}

@media screen and (max-width: 768px) {
  .u-ta-l--sp {
    text-align: left !important;
  }
}

@media screen and (max-width: 768px) {
  .u-ta-c--sp {
    text-align: center !important;
  }
}

@media screen and (max-width: 768px) {
  .u-ta-r--sp {
    text-align: right !important;
  }
}

/*====================================================================
色
====================================================================*/
.u-fc-white {
  color: #fff !important;
}

.u-bc-white {
  background-color: #fff !important;
}

.u-fc-black {
  color: #333 !important;
}

.u-bc-black {
  background-color: #333 !important;
}

.u-fc-primary {
  color: #004672 !important;
}

.u-bc-primary {
  background-color: #004672 !important;
}

.u-fc-primary-dark {
  color: #0b2d43 !important;
}

.u-bc-primary-dark {
  background-color: #0b2d43 !important;
}

.u-fc-secondary {
  color: #4ab9ff !important;
}

.u-bc-secondary {
  background-color: #4ab9ff !important;
}

.u-fc-tertiary {
  color: #61b3fd !important;
}

.u-bc-tertiary {
  background-color: #61b3fd !important;
}

.u-fc-quaternary {
  color: #a9d6ff !important;
}

.u-bc-quaternary {
  background-color: #a9d6ff !important;
}

.u-fc-quinary {
  color: #dbf1ff !important;
}

.u-bc-quinary {
  background-color: #dbf1ff !important;
}

.u-fc-gray_primary {
  color: #888 !important;
}

.u-bc-gray_primary {
  background-color: #888 !important;
}

.u-fc-gray_secondary {
  color: #ccc !important;
}

.u-bc-gray_secondary {
  background-color: #ccc !important;
}

.u-fc-gray_tertiary {
  color: #e6e6e6 !important;
}

.u-bc-gray_tertiary {
  background-color: #e6e6e6 !important;
}

.u-fc-body {
  color: #fafafa !important;
}

.u-bc-body {
  background-color: #fafafa !important;
}

.u-fc-accent {
  color: #fd569e !important;
}

.u-bc-accent {
  background-color: #fd569e !important;
}

.u-fc-alert {
  color: #e82a56 !important;
}

.u-bc-alert {
  background-color: #e82a56 !important;
}

/*====================================================================
要素表示・非表示
====================================================================*/
.u-none {
  display: none !important;
}

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

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

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

.u-show {
  display: block !important;
}

@media screen and (min-width: 992px) {
  .u-show--pc {
    display: block !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-show--tb {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .u-show--sp {
    display: block !important;
  }
}

/*====================================================================
フォント
====================================================================*/
.u-fs-2 {
  font-size: 2px !important;
}

.u-fs-4 {
  font-size: 4px !important;
}

.u-fs-6 {
  font-size: 6px !important;
}

.u-fs-8 {
  font-size: 8px !important;
}

.u-fs-10 {
  font-size: 10px !important;
}

.u-fs-12 {
  font-size: 12px !important;
}

.u-fs-14 {
  font-size: 14px !important;
}

.u-fs-16 {
  font-size: 16px !important;
}

.u-fs-18 {
  font-size: 18px !important;
}

.u-fs-20 {
  font-size: 20px !important;
}

.u-fs-22 {
  font-size: 22px !important;
}

.u-fs-24 {
  font-size: 24px !important;
}

.u-fs-26 {
  font-size: 26px !important;
}

.u-fs-28 {
  font-size: 28px !important;
}

.u-fs-30 {
  font-size: 30px !important;
}

.u-fs-32 {
  font-size: 32px !important;
}

.u-fs-34 {
  font-size: 34px !important;
}

.u-fs-36 {
  font-size: 36px !important;
}

.u-fs-38 {
  font-size: 38px !important;
}

.u-fs-40 {
  font-size: 40px !important;
}

.u-fs-42 {
  font-size: 42px !important;
}

.u-fs-44 {
  font-size: 44px !important;
}

.u-fs-46 {
  font-size: 46px !important;
}

.u-fs-48 {
  font-size: 48px !important;
}

.u-fs-50 {
  font-size: 50px !important;
}

.u-fs-52 {
  font-size: 52px !important;
}

.u-fs-54 {
  font-size: 54px !important;
}

.u-fs-56 {
  font-size: 56px !important;
}

.u-fs-58 {
  font-size: 58px !important;
}

.u-fs-60 {
  font-size: 60px !important;
}

@media screen and (min-width: 1200px) {
  .u-fs-2--pc {
    font-size: 2px !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-fs-4--pc {
    font-size: 4px !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-fs-6--pc {
    font-size: 6px !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-fs-8--pc {
    font-size: 8px !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-fs-10--pc {
    font-size: 10px !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-fs-12--pc {
    font-size: 12px !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-fs-14--pc {
    font-size: 14px !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-fs-16--pc {
    font-size: 16px !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-fs-18--pc {
    font-size: 18px !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-fs-20--pc {
    font-size: 20px !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-fs-22--pc {
    font-size: 22px !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-fs-24--pc {
    font-size: 24px !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-fs-26--pc {
    font-size: 26px !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-fs-28--pc {
    font-size: 28px !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-fs-30--pc {
    font-size: 30px !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-fs-32--pc {
    font-size: 32px !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-fs-34--pc {
    font-size: 34px !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-fs-36--pc {
    font-size: 36px !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-fs-38--pc {
    font-size: 38px !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-fs-40--pc {
    font-size: 40px !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-fs-42--pc {
    font-size: 42px !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-fs-44--pc {
    font-size: 44px !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-fs-46--pc {
    font-size: 46px !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-fs-48--pc {
    font-size: 48px !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-fs-50--pc {
    font-size: 50px !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-fs-52--pc {
    font-size: 52px !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-fs-54--pc {
    font-size: 54px !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-fs-56--pc {
    font-size: 56px !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-fs-58--pc {
    font-size: 58px !important;
  }
}

@media screen and (min-width: 1200px) {
  .u-fs-60--pc {
    font-size: 60px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-2--tb {
    font-size: 2px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-4--tb {
    font-size: 4px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-6--tb {
    font-size: 6px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-8--tb {
    font-size: 8px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-10--tb {
    font-size: 10px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-12--tb {
    font-size: 12px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-14--tb {
    font-size: 14px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-16--tb {
    font-size: 16px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-18--tb {
    font-size: 18px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-20--tb {
    font-size: 20px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-22--tb {
    font-size: 22px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-24--tb {
    font-size: 24px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-26--tb {
    font-size: 26px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-28--tb {
    font-size: 28px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-30--tb {
    font-size: 30px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-32--tb {
    font-size: 32px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-34--tb {
    font-size: 34px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-36--tb {
    font-size: 36px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-38--tb {
    font-size: 38px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-40--tb {
    font-size: 40px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-42--tb {
    font-size: 42px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-44--tb {
    font-size: 44px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-46--tb {
    font-size: 46px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-48--tb {
    font-size: 48px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-50--tb {
    font-size: 50px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-52--tb {
    font-size: 52px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-54--tb {
    font-size: 54px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-56--tb {
    font-size: 56px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-58--tb {
    font-size: 58px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .u-fs-60--tb {
    font-size: 60px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-2--sp {
    font-size: 2px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-4--sp {
    font-size: 4px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-6--sp {
    font-size: 6px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-8--sp {
    font-size: 8px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-10--sp {
    font-size: 10px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-12--sp {
    font-size: 12px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-14--sp {
    font-size: 14px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-16--sp {
    font-size: 16px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-18--sp {
    font-size: 18px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-20--sp {
    font-size: 20px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-22--sp {
    font-size: 22px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-24--sp {
    font-size: 24px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-26--sp {
    font-size: 26px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-28--sp {
    font-size: 28px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-30--sp {
    font-size: 30px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-32--sp {
    font-size: 32px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-34--sp {
    font-size: 34px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-36--sp {
    font-size: 36px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-38--sp {
    font-size: 38px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-40--sp {
    font-size: 40px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-42--sp {
    font-size: 42px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-44--sp {
    font-size: 44px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-46--sp {
    font-size: 46px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-48--sp {
    font-size: 48px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-50--sp {
    font-size: 50px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-52--sp {
    font-size: 52px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-54--sp {
    font-size: 54px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-56--sp {
    font-size: 56px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-58--sp {
    font-size: 58px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-fs-60--sp {
    font-size: 60px !important;
  }
}

.u-ff-main {
  font-family: "Noto Sans JP", sans-serif !important;
}

.u-ff-pt {
  font-family: "PT Sans", sans-serif !important;
}

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

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

/*====================================================================
影
====================================================================*/
.u-shadow {
  -webkit-box-shadow: 0 3px 6px rgba(97, 179, 253, 0.5);
          box-shadow: 0 3px 6px rgba(97, 179, 253, 0.5);
}

.u-boxShadow {
  -webkit-box-shadow: 0 3px 6px rgba(97, 179, 253, 0.5);
          box-shadow: 0 3px 6px rgba(97, 179, 253, 0.5);
  display: block;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
}

/*====================================================================
影
====================================================================*/
.u-boxHover {
  -webkit-transition: 0.3s background-color;
  transition: 0.3s background-color;
}
@media screen and (min-width: 1200px) {
  .u-boxHover:hover {
    background-color: #dbf1ff;
  }
}

/*====================================================================
影
====================================================================*/
.u-textLink {
  color: #4ab9ff;
  text-decoration: underline;
}
@media screen and (min-width: 1200px) {
  .u-textLink:hover {
    opacity: 0.5;
  }
}
.u-textLink--hasArrow {
  position: relative;
  padding-left: 1.2em;
}
.u-textLink--hasArrow::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1em;
  height: 1em;
  background: url(../images/common/icon_arrow_blue.svg) no-repeat center/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
}
.u-textLink--external {
  position: relative;
  padding-right: 2em;
}
.u-textLink--external::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1em;
  height: 1em;
  background: url(../images/common/icon_externalLink.svg) no-repeat center/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
}

/*====================================================================
ボタン
====================================================================*/
.c-btn {
  -webkit-box-shadow: 0 3px 6px rgba(97, 179, 253, 0.5);
          box-shadow: 0 3px 6px rgba(97, 179, 253, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 310px;
  height: 52px;
  padding: 0 40px 0 30px;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
  background: url(../images/common/icon_arrow_white.svg) no-repeat right 15px center/18px #004672;
  border-radius: 100px;
}
@media screen and (min-width: 1200px) {
  .c-btn {
    cursor: pointer;
    -webkit-transition: 0.3s opacity;
    transition: 0.3s opacity;
  }
  .c-btn:hover {
    opacity: 0.5;
  }
  .c-btn:hover img {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .c-btn {
    max-width: calc(100vw - 13px * 2);
    margin: 0 auto;
  }
}
.c-btn--white {
  background-color: #fff;
}
.c-btn--black {
  background-color: #333;
}
.c-btn--primary {
  background-color: #004672;
}
.c-btn--primary-dark {
  background-color: #0b2d43;
}
.c-btn--secondary {
  background-color: #4ab9ff;
}
.c-btn--tertiary {
  background-color: #61b3fd;
}
.c-btn--quaternary {
  background-color: #a9d6ff;
}
.c-btn--quinary {
  background-color: #dbf1ff;
}
.c-btn--gray_primary {
  background-color: #888;
}
.c-btn--gray_secondary {
  background-color: #ccc;
}
.c-btn--gray_tertiary {
  background-color: #e6e6e6;
}
.c-btn--body {
  background-color: #fafafa;
}
.c-btn--accent {
  background-color: #fd569e;
}
.c-btn--alert {
  background-color: #e82a56;
}
.c-btn--back {
  padding: 0 30px 0 40px;
  background-color: #888;
  background-image: url(../images/common/icon_arrow_back.svg);
  background-position: left 15px center;
}

/*====================================================================
パンくず
====================================================================*/
.c-breadcrumb {
  max-width: 1220px;
  margin: 0 auto 60px;
  padding: 0 13px;
  color: #888;
}
@media screen and (max-width: 768px) {
  .c-breadcrumb {
    display: none;
  }
}
.c-breadcrumb span {
  margin-right: 0.3em;
}
.c-breadcrumb span:not(:first-child) {
  margin-left: 0.3em;
}
.c-breadcrumb a {
  color: #4ab9ff;
}
@media screen and (min-width: 1200px) {
  .c-breadcrumb a:hover {
    opacity: 0.5;
  }
}

/*====================================================================
フォーム、フォームパーツ
====================================================================*/
.c-form__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
  text-align: center;
}
.c-form__navItem {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 180px;
  height: 34px;
  color: #fff;
  line-height: 1.3;
  text-align: center;
  background: #ccc;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .c-form__navItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    height: 60px;
  }
}
.c-form__navItem:not(:last-child) {
  margin-right: 50px;
}
@media screen and (max-width: 768px) {
  .c-form__navItem:not(:last-child) {
    margin-right: 16px;
  }
}
.c-form__navItem:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -32px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: url(../images/common/form_arrow.svg) no-repeat center/contain;
  content: "";
}
@media screen and (max-width: 768px) {
  .c-form__navItem:not(:last-child)::after {
    right: -14px;
    width: 12px;
    height: 12px;
  }
}
.c-form__navItem--active {
  color: #4ab9ff;
  background: #dbf1ff;
}
.c-form__navItem--active:not(:last-child)::after {
  background-image: url(../images/common/form_arrow_active.svg);
}
.c-form__navItem span:first-child {
  margin-right: 1em;
  font-size: 17px;
  font-family: "PT Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .c-form__navItem span:first-child {
    margin-right: 0;
  }
}
.c-form__navItem span:last-child {
  font-weight: bold;
  font-size: 16px;
}
.c-form__inner {
  padding: 40px 60px;
}
@media screen and (max-width: 768px) {
  .c-form__inner {
    padding: 40px 13px;
  }
}
.c-form__leadTxt {
  margin-bottom: 2.5em;
  line-height: 1.4;
}
.c-form__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
}
.c-form__btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 180px;
}
.c-form__btn[disabled] {
  color: #ccc;
  background-color: #e6e6e6;
  background-image: url(../images/common/icon_arrow_gray.svg);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.c-form__btn + .c-form__btn {
  margin-left: 20px;
}
.c-form__error {
  margin-bottom: 2.5em;
  color: #e82a56;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.3;
}
.c-form__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1.4;
}
.c-form__radio label {
  display: block;
  cursor: pointer;
}
.c-form__radio label:not(:first-child) {
  margin-top: 12px;
}
.c-form__radio span {
  position: relative;
  display: block;
  padding-left: 35px;
}
.c-form__radio span::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 22px;
  height: 22px;
  border: 2px solid #ccc;
  border-radius: 100px;
  content: "";
}
.c-form__radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.c-form__radio input[type=radio]:checked + span::before {
  border: 6px solid #4ab9ff;
}
.c-form__radio input[type=radio]:focus-visible + span {
  background: #4ab9ff;
}
.c-form__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1.4;
}
.c-form__checkbox label {
  display: block;
  min-height: 22px;
  cursor: pointer;
}
.c-form__checkbox label:not(:first-child) {
  margin-top: 12px;
}
.c-form__checkbox span {
  position: relative;
  display: block;
  padding-left: 35px;
}
.c-form__checkbox span::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 22px;
  height: 22px;
  border: 2px solid #ccc;
  border-radius: 2px;
  content: "";
}
.c-form__checkbox span::after {
  position: absolute;
  top: 2px;
  left: 6px;
  width: 9px;
  height: 14px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  border-radius: 2px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
  content: "";
}
.c-form__checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.c-form__checkbox input[type=checkbox]:checked + span::before {
  background: #4ab9ff;
  border-color: #4ab9ff;
}
.c-form__checkbox input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.c-form__checkbox input[type=checkbox]:focus-visible + span::before {
  border-color: #004672;
}
.c-form__inputTtl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0.2em;
  font-weight: bold;
}
.c-form__inputTtl:not(:first-of-type) {
  margin-top: 1.8em;
}
.c-form__inputTtl span {
  margin-right: auto;
  margin-left: 5px;
  padding: 0.1em 1em;
  color: #fff;
  font-size: 12px;
  font-family: "PT Sans", sans-serif;
  line-height: 1.4;
  background: #e82a56;
  border-radius: 100px;
}
.c-form__inputTtl small {
  max-width: calc(100% - 10em);
  color: #888;
  font-weight: normal;
  font-size: 12px;
  line-height: 1.3;
}
@media screen and (min-width: 769px) {
  .c-form__inputTtl small {
    display: none;
  }
}
.c-form__inputCnt textarea {
  width: 100%;
  height: 140px;
}
.c-form__inputCnt .is-disabled {
  background-color: rgba(232, 42, 86, 0.1);
}
.c-form__inputError {
  margin-top: 4px;
  color: #e82a56;
  font-weight: bold;
  line-height: 1.3;
}
.c-form__termTtl {
  margin-bottom: 0.2em;
  font-weight: bold;
}
.c-form__termCnt {
  height: 120px;
  margin-bottom: 20px;
  padding: 5px 20px;
  overflow-y: scroll;
  border: 2px solid #888;
}
.c-form__termTxt:not(:last-child) {
  margin-bottom: 1em;
}
.c-form__confirmTtl {
  padding: 0 1em;
  font-weight: bold;
}
.c-form__confirmTxt {
  padding: 0 1em 1em;
  line-height: 1.4;
}
.c-form__confirmTxt:not(:last-of-type) {
  margin-bottom: 1em;
  border-bottom: 1px solid #ccc;
}
.c-form__thanksTtl {
  margin-bottom: 1em;
  font-size: 20px;
}
.c-form__thanksTxt {
  line-height: 1.4;
  text-align: center;
}
.c-form__back {
  max-width: 180px;
  margin: 100px auto 0;
}
@media screen and (max-width: 768px) {
  .c-form__back {
    max-width: 310px;
    margin-top: 40px;
  }
}
.c-form__attention {
  color: #e82a56;
  line-height: 1.7;
  margin-bottom: 1.8em;
}
.c-form__attention li {
  position: relative;
  padding-left: 1em;
}
.c-form__attention li:not(:first-child) {
  margin-top: 4px;
}
.c-form__attention li::before {
  position: absolute;
  left: 0;
  content: "※";
}
.c-form__attention span {
  font-weight: bold;
}

/*====================================================================
お知らせショートコード
====================================================================*/
.c-infoList__item:not(:last-child) {
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .c-infoList__item:not(:last-child) {
    margin-bottom: 22px;
  }
}
.c-infoList__link {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  -ms-grid-columns: 5em 50px 120px 1fr;
  grid-template-columns: 5em 50px 120px 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 3px 40px;
  -webkit-transition: 0.3s background-color;
  transition: 0.3s background-color;
}
.c-infoList__link > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.c-infoList__link > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.c-infoList__link > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.c-infoList__link > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
}
@media screen and (min-width: 1200px) {
  .c-infoList__link:hover {
    background: rgba(74, 185, 255, 0.2);
  }
}
@media screen and (max-width: 768px) {
  .c-infoList__link {
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    -ms-grid-columns: 5em 40px 1fr;
    grid-template-columns: 5em 40px 1fr;
    padding: 0;
  }
  .c-infoList__link > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .c-infoList__link > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .c-infoList__link > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .c-infoList__link > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .c-infoList__link > *:nth-child(5) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .c-infoList__link > *:nth-child(6) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
}
.c-infoList__date {
  -ms-grid-column: 1;
  grid-column: 1;
  white-space: nowrap;
}
.c-infoList__new {
  -ms-grid-column: 2;
  grid-column: 2;
  margin-top: 2px;
  color: #4ab9ff;
  font-weight: bold;
  font-size: 12px;
  font-family: "PT Sans", sans-serif;
  text-align: center;
}
.c-infoList__cat {
  -ms-grid-column: 3;
  grid-column: 3;
  margin-top: 5px;
  color: #fff;
  font-weight: bold;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
  border-radius: 100px;
}
@media screen and (max-width: 768px) {
  .c-infoList__cat {
    width: 120px;
  }
}
.c-infoList__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-column: 4;
  grid-column: 4;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 15px;
}
@media screen and (max-width: 1199px) {
  .c-infoList__ttl {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .c-infoList__ttl {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1/4;
    width: 100%;
    margin-top: -4px;
    margin-left: 0;
  }
}
.c-infoList__txt {
  max-width: 500px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media screen and (max-width: 1199px) {
  .c-infoList__txt {
    white-space: initial;
  }
}
.c-infoList__fileExt {
  margin: 0 0.3em;
  padding: 0 0.3em;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  font-family: "PT Sans", sans-serif;
  line-height: 1.3;
  background: #888;
  border-radius: 2px;
}
.c-infoList__fileSize {
  font-size: 12px;
}
.c-infoList__link--url .c-infoList__txt {
  padding-right: 20px;
  background: url(../images/common/icon_externalLink.svg) no-repeat right/12px;
}
.c-infoList__notFound {
  text-align: center;
}

/*====================================================================
ページタイトル
====================================================================*/
.c-pageTtl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 260px;
  padding-top: 95px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto 100%;
}
@media screen and (max-width: 768px) {
  .c-pageTtl {
    height: 195px;
    padding-top: 75px;
  }
}
.c-pageTtl span:first-child:not(:last-child) {
  color: #888;
  font-weight: normal;
  font-size: 17px;
  font-family: "PT Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .c-pageTtl span:first-child:not(:last-child) {
    font-size: 12px;
  }
}
.c-pageTtl span:last-child {
  color: #004672;
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .c-pageTtl span:last-child {
    font-size: 24px;
  }
}
.c-pageTtl--hasBg {
  height: 288px;
  margin-bottom: 40px;
  background-color: #a9d6ff;
}
@media screen and (max-width: 768px) {
  .c-pageTtl--hasBg {
    height: 190px;
  }
}
.c-pageTtl--hasBg span:first-child:not(:last-child) {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-pageTtl--hasBg span:first-child:not(:last-child) {
    font-size: 12px;
  }
}
.c-pageTtl--hasBg span:last-child {
  color: #fff;
  font-size: 47px;
  text-shadow: 0 3px 6px rgba(97, 179, 253, 0.5);
}
@media screen and (max-width: 768px) {
  .c-pageTtl--hasBg span:last-child {
    font-size: 24px;
  }
}

/*====================================================================
フォーム、フォームパーツ
====================================================================*/
.c-pagination {
  position: relative;
  padding: 0 150px;
}
@media screen and (max-width: 768px) {
  .c-pagination {
    padding: 0;
  }
}
.c-pagination .info {
  position: absolute;
  top: 3px;
  left: 0;
  color: #888;
}
@media screen and (max-width: 768px) {
  .c-pagination .info {
    position: static;
    margin-bottom: 30px;
  }
}
.c-pagination .pages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-pagination svg {
  height: 11px;
}
.c-pagination .pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  margin: 2px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .c-pagination .pager {
    width: 40px;
    height: 40px;
  }
}
.c-pagination .pager.current {
  color: #4ab9ff;
  font-weight: bold;
}
.c-pagination span.first svg, .c-pagination span.prev svg, .c-pagination span.next svg, .c-pagination span.last svg {
  fill: #d5d5d5;
}
.c-pagination a.first svg, .c-pagination a.prev svg, .c-pagination a.next svg, .c-pagination a.last svg {
  fill: #4ab9ff;
}
@media screen and (max-width: 768px) {
  .c-pagination .prev {
    margin-right: auto;
  }
  .c-pagination .next {
    margin-left: auto;
  }
}

/*====================================================================
サービス関連ページ CVエリア
====================================================================*/
.c-serviceCv__inner {
  padding: 20px 13px;
  background: #dbf1ff;
  border-radius: 10px;
}
.c-serviceCv__ttl {
  margin-bottom: 0.5em;
  padding-left: 15px;
  line-height: 1.15;
}
.c-serviceCv__ttl span:first-child:not(:last-child) {
  display: inline;
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
}
@media screen and (max-width: 768px) {
  .c-serviceCv__ttl span:last-child {
    display: block;
    padding-left: 5px;
  }
}
@media screen and (max-width: 768px) {
  .c-serviceCv__ttl {
    padding-left: 5px;
  }
}
.c-serviceCv__btn {
  margin: 0 auto;
}

/*====================================================================
サービス関連ページメインビジュアル
====================================================================*/
.c-serviceMv {
  position: relative;
  height: 35.1vw;
  min-height: 500px;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .c-serviceMv {
    height: auto;
    min-height: auto;
    margin-bottom: 50px;
    padding-top: 95px;
    padding-bottom: 20px;
    background-repeat: no-repeat;
    background-position: right top 45vw;
    background-size: contain;
  }
}
.c-serviceMv__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  margin-top: 30px;
  margin-left: -480px;
  padding: 0 13px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 991px) {
  .c-serviceMv__inner {
    left: 13px;
    margin-top: 0;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .c-serviceMv__inner {
    position: static;
    -webkit-transform: none;
            transform: none;
  }
}
.c-serviceMv__lead {
  display: block;
  width: 100%;
  max-width: 440px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 768px) {
  .c-serviceMv__lead {
    max-width: 300px;
    margin-bottom: 10px;
  }
}
.c-serviceMv__ttl {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-bottom: 20px;
}
.c-serviceMv__ttl img {
  width: 100%;
}
.c-serviceMv__ttl::after {
  position: absolute;
  left: 0;
  width: 144px;
  height: 132px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}
@media screen and (max-width: 768px) {
  .c-serviceMv__ttl::after {
    width: 110px;
    height: 100px;
  }
}
.c-serviceMv__txt {
  margin-left: 140px;
  color: #004672;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .c-serviceMv__txt {
    margin: 60vw 0 0;
  }
}
.c-serviceMv__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .c-serviceMv__video {
    display: none;
  }
}

/*====================================================================
メインコンテンツエリア
====================================================================*/
.l-contents {
  padding-bottom: 160px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-contents {
    padding-bottom: 100px;
  }
}

.l-main {
  display: block;
}

/*====================================================================
ヘッダー
====================================================================*/
.l-header {
  position: fixed;
  top: 20px;
  left: 0;
  z-index: 3;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-header {
    top: 10px;
  }
}
.l-header__inner {
  -webkit-box-shadow: 0 3px 6px rgba(97, 179, 253, 0.5);
          box-shadow: 0 3px 6px rgba(97, 179, 253, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 74px;
  padding-left: 30px;
  background: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    height: 60px;
    padding-left: 20px;
  }
}
.l-header__logo {
  font-size: 0;
}
@media screen and (min-width: 1200px) {
  .l-header__logo {
    cursor: pointer;
    -webkit-transition: 0.3s opacity;
    transition: 0.3s opacity;
  }
  .l-header__logo:hover {
    opacity: 0.5;
  }
  .l-header__logo:hover img {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    width: 110px;
  }
}
.l-header__btn {
  position: relative;
  width: 55px;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .l-header__btn {
    display: none;
  }
}
.l-header__btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  margin-left: -11px;
  background: #2390ed;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.l-header__btn span:nth-child(1) {
  margin-top: -8px;
}
.l-header__btn span:nth-child(3) {
  margin-top: 8px;
}
.l-header__btn[aria-expanded=true] span:nth-child(1) {
  margin-top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-header__btn[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.l-header__btn[aria-expanded=true] span:nth-child(3) {
  margin-top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/*====================================================================
ヘッダーナビゲーション
====================================================================*/
.l-headerNav {
  height: 100%;
  margin-left: auto;
  font-size: 16px;
  background: transparent;
}
@media screen and (max-width: 991px) {
  .l-headerNav {
    font-size: 12px;
  }
}
.l-headerNav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.l-headerNav__list > .menu-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.l-headerNav__list > .menu-item:not(.contact) {
  padding: 0 13px;
}
@media screen and (max-width: 1199px) {
  .l-headerNav__list > .menu-item:not(.contact) {
    padding: 0 2px;
  }
}
@media screen and (max-width: 768px) {
  .l-headerNav__list > .menu-item:not(.contact) {
    display: none;
  }
}
.l-headerNav__list > .menu-item:not(.contact) > a {
  padding: 0 1.1em 1px 1.1em;
  line-height: 1.5;
  border-radius: 100px;
  -webkit-transition: 0.3s background, 0.3s color;
  transition: 0.3s background, 0.3s color;
}
.l-headerNav__list > .menu-item:not(.contact).menu-item-has-children:hover > a, .l-headerNav__list > .menu-item:not(.contact):not(.menu-item-has-children) > a:hover {
  color: inherit;
  background: #dbf1ff;
}
.l-headerNav__list > .menu-item:not(.contact).current-menu-item > a, .l-headerNav__list > .menu-item:not(.contact).current-menu-parent > a {
  color: #fff;
  background: #4ab9ff;
}
.l-headerNav__list > .menu-item:not(.contact).menu-item-has-children:hover .sub-menu-wrap {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-headerNav__list > .menu-item.contact {
  min-width: 240px;
}
@media screen and (max-width: 1199px) {
  .l-headerNav__list > .menu-item.contact {
    min-width: 150px;
  }
}
@media screen and (max-width: 768px) {
  .l-headerNav__list > .menu-item.contact {
    width: 60px;
    min-width: 60px;
  }
}
.l-headerNav__list > .menu-item.contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  background: #004672;
  border-radius: 0 10px 10px 0;
}
@media screen and (min-width: 1200px) {
  .l-headerNav__list > .menu-item.contact a {
    cursor: pointer;
    -webkit-transition: 0.3s opacity;
    transition: 0.3s opacity;
  }
  .l-headerNav__list > .menu-item.contact a:hover {
    opacity: 0.5;
  }
  .l-headerNav__list > .menu-item.contact a:hover img {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .l-headerNav__list > .menu-item.contact a {
    font-size: 0;
    background-image: url(../images/common/icon_mail.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px auto;
    border-radius: 0;
  }
}
.l-headerNav__list > .menu-item.service .sub-menu-wrap,
.l-headerNav__list > .menu-item.company .sub-menu-wrap {
  position: fixed;
  top: 100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.l-headerNav__list > .menu-item.ir .sub-menu-wrap {
  position: absolute;
  top: 70px;
  left: 13px;
}
.l-headerNav__list .sub-menu-wrap {
  padding-top: 15px;
  font-weight: bold;
  line-height: 1.25;
  white-space: nowrap;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-headerNav__list .sub-menu {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 95px 10px 15px;
  background: #fff;
  border: 1px solid #61b3fd;
  border-radius: 10px;
}
.l-headerNav__list .sub-menu img {
  display: block;
  max-width: 110px;
  margin: 0 auto 20px;
}
.l-headerNav__list .sub-menu .menu-item:first-child {
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  padding-left: 25px;
  font-weight: bold;
  font-size: 30px;
  text-align: left;
}
.l-headerNav__list .sub-menu .menu-item:first-child a {
  display: inline-block;
  padding-right: 30px;
  color: #4ab9ff;
}
.l-headerNav__list .sub-menu .menu-item:first-child a[href="#"] {
  pointer-events: none;
}
.l-headerNav__list .sub-menu .menu-item:first-child a:not([href="#"]) {
  background: url(../images/common/icon_arrow_blue.svg) no-repeat right bottom 4px/24px;
}
@media screen and (min-width: 1200px) {
  .l-headerNav__list .sub-menu .menu-item:first-child a:not([href="#"]) {
    cursor: pointer;
    -webkit-transition: 0.3s opacity;
    transition: 0.3s opacity;
  }
  .l-headerNav__list .sub-menu .menu-item:first-child a:not([href="#"]):hover {
    opacity: 0.5;
  }
  .l-headerNav__list .sub-menu .menu-item:first-child a:not([href="#"]):hover img {
    opacity: 1;
  }
}
.l-headerNav__list .sub-menu .menu-item:first-child a span {
  display: block;
  color: #ccc;
  font-weight: normal;
  font-size: 17px;
  font-family: "PT Sans", sans-serif;
}
.l-headerNav__list .sub-menu .menu-item:not(:first-child) {
  width: 150px;
}
.l-headerNav__list .sub-menu .menu-item:not(:first-child) a {
  display: block;
  padding: 5px 10px 38px;
  color: #004672;
  background: url(../images/common/icon_arrow_blue.svg) no-repeat bottom 10px center/18px;
  border-radius: 10px;
  -webkit-transition: 0.3s background-color;
  transition: 0.3s background-color;
}
.l-headerNav__list .sub-menu .menu-item:not(:first-child) a:hover {
  background-color: #dbf1ff;
}

/*====================================================================
フッターメインナビゲーション
====================================================================*/
.l-footerMainNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .l-footerMainNav {
    display: none;
  }
}
.l-footerMainNav a {
  position: relative;
  display: inline-block;
  padding: 0.2em 0 0.2em 1.2em;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .l-footerMainNav a:not([href="#"]) {
    cursor: pointer;
  }
  .l-footerMainNav a:not([href="#"]):hover {
    text-decoration: underline;
  }
}
.l-footerMainNav a[href="#"] {
  cursor: initial;
}
.l-footerMainNav a::before {
  position: absolute;
  top: 1.1em;
  left: 0;
  width: 0.6em;
  height: 0.6em;
  border-top: 1px solid;
  border-right: 1px solid;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  content: "";
}
.l-footerMainNav__list {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  padding-right: 1em;
}
.l-footerMainNav__list:first-child {
  -webkit-box-flex: 5;
      -ms-flex: 5;
          flex: 5;
}
.l-footerMainNav__list:last-child {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  padding-right: 0;
}
.l-footerMainNav__list > .menu-item:not(:last-child) {
  margin-bottom: 1.2em;
}
.l-footerMainNav__list > .menu-item > .sub-menu {
  margin-top: 0.5em;
}

/*====================================================================
フッターサブナビゲーション
====================================================================*/
.l-footerSubNav {
  padding: 17px 0;
  font-size: 10px;
  background: #0b2d43;
}
@media screen and (max-width: 768px) {
  .l-footerSubNav {
    margin-top: 40px;
    padding: 0;
    background: transparent;
  }
}
.l-footerSubNav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l-footerSubNav__list {
    display: block;
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
@media screen and (max-width: 768px) {
  .l-footerSubNav .menu-item {
    margin-bottom: 1.5em;
  }
}
.l-footerSubNav a {
  padding: 0.5em;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .l-footerSubNav a {
    cursor: pointer;
  }
  .l-footerSubNav a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 768px) {
  .l-footerSubNav a {
    position: relative;
    padding-left: 1em;
  }
  .l-footerSubNav a::before {
    position: absolute;
    top: 1.1em;
    left: 0;
    width: 0.6em;
    height: 0.6em;
    border-top: 1px solid;
    border-right: 1px solid;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    content: "";
  }
}

/*====================================================================
フッター
====================================================================*/
.l-footer {
  position: relative;
  color: #fff;
  background: #004672;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 40px 10px;
  }
}
.l-footer__info {
  margin-right: 140px;
}
@media screen and (max-width: 991px) {
  .l-footer__info {
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__info {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 1200px) {
  .l-footer__logo {
    cursor: pointer;
    -webkit-transition: 0.3s opacity;
    transition: 0.3s opacity;
  }
  .l-footer__logo:hover {
    opacity: 0.5;
  }
  .l-footer__logo:hover img {
    opacity: 1;
  }
}
.l-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 60px 0 50px;
}
@media screen and (max-width: 768px) {
  .l-footer__inner {
    padding: 0;
    display: block;
  }
}
.l-footer__copy {
  margin-top: 1em;
  font-size: 12px;
  line-height: 1.66;
}
@media screen and (max-width: 768px) {
  .l-footer__copy {
    font-size: 10px;
  }
}
.l-footer__infoList:not(:first-child) {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .l-footer__infoList:not(:first-child) {
    width: calc(100% - 142px);
    margin: 0;
  }
}
.l-footer__bnrBox {
  width: 234px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .l-footer__bnrBox {
    width: 100%;
  }
}
.l-footer__bnrList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 11px;
  padding: 6px 0;
}
@media screen and (max-width: 768px) {
  .l-footer__bnrList {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin: 0 6px;
  }
}
.l-footer__bnrLink {
  margin-top: 0.8em;
  color: #fff;
  font-size: 10px;
}
@media screen and (min-width: 1200px) {
  .l-footer__bnrLink {
    cursor: pointer;
  }
  .l-footer__bnrLink:hover {
    text-decoration: underline;
  }
}

/*====================================================================
スマホ ドロワー
====================================================================*/
.l-drawer {
  -webkit-box-shadow: 0 3px 6px rgba(97, 179, 253, 0.5);
          box-shadow: 0 3px 6px rgba(97, 179, 253, 0.5);
  position: fixed;
  top: 82px;
  right: 15px;
  left: 15px;
  z-index: 3;
  display: none;
  padding: 15px 0;
  font-weight: bold;
  font-size: 18px;
  background: #fff;
  border-radius: 10px;
}
.l-drawer__list {
  max-height: calc(100vh - 150px);
  padding: 0 27px;
  padding-bottom: 15px;
  overflow-y: scroll;
}
.l-drawer__list a {
  display: block;
  padding-right: 30px;
  background: url(../images/common/icon_arrow_blue.svg) no-repeat right top 10px/18px;
}
.l-drawer__list a[target=_blank] .title {
  padding-right: 20px;
  background: url(../images/common/icon_externalLink.svg) no-repeat right/13px;
}
.l-drawer__list > .menu-item:not(:last-child) {
  margin-bottom: 10px;
}
.l-drawer__list > .menu-item.menu-item-has-children > a {
  background-image: url(../images/common/nav_icon_plus.svg);
}
.l-drawer__list > .menu-item.menu-item-has-children > a.is-open {
  background-image: url(../images/common/nav_icon_minus.svg);
}
.l-drawer__list > .menu-item.contact, .l-drawer__list > .menu-item.download {
  padding: 0 10px;
}
.l-drawer__list > .menu-item.contact a, .l-drawer__list > .menu-item.download a {
  -webkit-box-shadow: 0 3px 6px rgba(97, 179, 253, 0.5);
          box-shadow: 0 3px 6px rgba(97, 179, 253, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 52px;
  color: #fff;
  background: url(../images/common/icon_arrow_white.svg) no-repeat right 20px center/18px;
  border-radius: 100px;
}
.l-drawer__list > .menu-item.contact .description, .l-drawer__list > .menu-item.download .description {
  display: block;
  margin-bottom: 0.5em;
  color: #004672;
  font-weight: normal;
  font-size: 16px;
  text-align: center;
}
.l-drawer__list > .menu-item.contact a {
  padding-right: 0;
  background-color: #004672;
}
.l-drawer__list > .menu-item.download a {
  padding-right: 0;
  background-color: #fd569e;
}
.l-drawer .sub-menu {
  display: none;
  padding-left: 0.5em;
  font-weight: normal;
}
.l-drawer .sub-menu a {
  padding: 0.5em 0;
  line-height: 1.2;
}

/*====================================================================
TOPへ戻る
====================================================================*/
.l-pageTop {
  position: fixed;
  bottom: 50px;
  left: 0;
  width: 100%;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .l-pageTop {
    bottom: 15px;
  }
  .l-pageTop img {
    width: 19px;
  }
}
.l-pageTop.is-fixed {
  position: absolute;
  bottom: 135px;
}
@media screen and (max-width: 768px) {
  .l-pageTop.is-fixed {
    top: -20px;
    bottom: auto;
  }
}
.l-pageTop__btn {
  -webkit-box-shadow: 0 3px 6px rgba(97, 179, 253, 0.5);
          box-shadow: 0 3px 6px rgba(97, 179, 253, 0.5);
  display: none;
  float: right;
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 50%;
  -webkit-transition: none !important;
  transition: none !important;
  pointer-events: auto;
}
@media screen and (min-width: 1200px) {
  .l-pageTop__btn {
    cursor: pointer;
    -webkit-transition: 0.3s opacity;
    transition: 0.3s opacity;
  }
  .l-pageTop__btn:hover {
    opacity: 0.5;
  }
  .l-pageTop__btn:hover img {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .l-pageTop__btn {
    width: 40px;
    height: 40px;
  }
}

/*====================================================================
TOPへ戻る
====================================================================*/
.l-fixedNav {
  position: fixed;
  bottom: 40px;
  left: 0;
  z-index: 1;
  display: none;
  width: 100%;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .l-fixedNav {
    bottom: 10px;
  }
}
.l-fixedNav__list {
  -webkit-box-shadow: 0 3px 6px rgba(97, 179, 253, 0.5);
          box-shadow: 0 3px 6px rgba(97, 179, 253, 0.5);
  z-index: 1;
  display: inline-block;
  padding: 20px 10px;
  font-weight: bold;
  background: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .l-fixedNav__list {
    width: 175px;
    padding: 10px;
  }
}
.l-fixedNav__item {
  width: 320px;
}
@media screen and (max-width: 768px) {
  .l-fixedNav__item {
    width: 100%;
  }
}
.l-fixedNav__item:not(:last-child) {
  margin-bottom: 7px;
}
.l-fixedNav__item:last-child .c-btn {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .l-fixedNav__item:last-child .c-btn {
    font-size: 12px;
  }
}
.l-fixedNav__link {
  max-width: 100%;
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .l-fixedNav__link {
    max-width: 100%;
    padding: 0 25px 0 5px;
    font-size: 12px;
    background-position: right 10px center;
    background-size: 12px;
  }
}

/*====================================================================
トップページ
====================================================================*/
.p-home {
  background: transparent;
}

.p-homeMv {
  position: relative;
  height: 52.7vw;
  min-height: 600px;
  overflow: hidden;
  background-color: #9fd3ff;
}
@media screen and (max-width: 768px) {
  .p-homeMv {
    height: 100vh;
  }
}
.p-homeMv__scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 78px;
  color: #fff;
  font-size: 16px;
  font-family: "PT Sans", sans-serif;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1200px) {
  .p-homeMv__scroll {
    cursor: pointer;
    -webkit-transition: 0.3s opacity;
    transition: 0.3s opacity;
  }
  .p-homeMv__scroll:hover {
    opacity: 0.5;
  }
  .p-homeMv__scroll:hover img {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .p-homeMv__scroll {
    height: 50px;
    font-size: 12px;
  }
}
.p-homeMv__scroll::after {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 1px;
  height: 45px;
  background: currentColor;
  opacity: 0;
  -webkit-animation: homeMvScroll 1.4s ease-in-out infinite;
          animation: homeMvScroll 1.4s ease-in-out infinite;
  content: "";
}
@-webkit-keyframes homeMvScroll {
  0% {
    top: 30px;
    height: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    top: 60px;
    height: 0;
    opacity: 0;
  }
}
@keyframes homeMvScroll {
  0% {
    top: 30px;
    height: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    top: 60px;
    height: 0;
    opacity: 0;
  }
}
.p-homeMv .slick-dots {
  position: absolute;
  top: 50%;
  left: 60px;
  z-index: 2;
  font-size: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 1199px) {
  .p-homeMv .slick-dots {
    left: 13px;
  }
}
@media screen and (max-width: 768px) {
  .p-homeMv .slick-dots {
    top: 30%;
  }
}
.p-homeMv .slick-dots button {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}
@media screen and (max-width: 1199px) {
  .p-homeMv .slick-dots button {
    width: 12px;
    height: 12px;
  }
}
.p-homeMv .slick-dots button::before {
  position: absolute;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  margin-left: -3px;
  background: #fff;
  border-radius: 50%;
  content: "";
}
@media screen and (max-width: 1199px) {
  .p-homeMv .slick-dots button::before {
    width: 4px;
    height: 4px;
    margin-top: -2px;
    margin-left: -2px;
  }
}
.p-homeMv .slick-dots .slick-active button {
  background: rgba(35, 144, 237, 0.2);
}

.p-homeSlideBg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 50%;
  height: 100%;
  margin-top: -500px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  opacity: 0;
  -webkit-transition: opacity 0.5s, margin-top 1s;
  transition: opacity 0.5s, margin-top 1s;
}
@media screen and (max-width: 768px) {
  .p-homeSlideBg {
    width: 90%;
    -webkit-transform: none;
            transform: none;
  }
}
.p-homeSlideBg.slick-initialized {
  margin-top: 0;
  opacity: 1;
}
.p-homeSlideBg__item {
  bottom: 100%;
  height: 52.7vw !important;
  min-height: 600px;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 90%;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.p-homeSlideBg__item--1 {
  background-image: url(../images/home/mv_bg_01.png);
}
.p-homeSlideBg__item--2 {
  background-image: url(../images/home/mv_bg_02.png);
}
.p-homeSlideBg__item--3 {
  background-image: url(../images/home/mv_bg_03.png);
}
.p-homeSlideBg__item:focus-visible {
  outline: none;
}
@media screen and (max-width: 768px) {
  .p-homeSlideBg__item {
    background-position: left -50px top -50px;
    -webkit-transform: none;
            transform: none;
  }
}

.p-homeSlideTxt {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 100%;
  max-width: 986px;
  height: 400px;
  margin-top: 400px;
  margin-left: -90px;
  padding: 0 13px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: opacity 0.5s, margin-top 1s;
  transition: opacity 0.5s, margin-top 1s;
}
@media screen and (max-width: 1199px) {
  .p-homeSlideTxt {
    height: 100%;
    margin-left: 0;
  }
}
.p-homeSlideTxt.slick-initialized {
  margin-top: 0;
  opacity: 1;
}
.p-homeSlideTxt__item {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 400px !important;
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
@media screen and (max-width: 1199px) {
  .p-homeSlideTxt__item {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .p-homeSlideTxt__item {
    height: 100vh !important;
    min-height: 600px;
    padding-bottom: 60px;
  }
}
.p-homeSlideTxt__item:focus-visible {
  outline: none;
}
.p-homeSlideTxt__item.slick-slide[aria-hidden=true]:not([tabindex="-1"]) + .slick-cloned[aria-hidden=true], .p-homeSlideTxt__item.slick-current {
  opacity: 1;
}
.p-homeSlideTxt__inner {
  width: 100%;
  padding-left: 95px;
}
@media screen and (max-width: 768px) {
  .p-homeSlideTxt__inner {
    padding: 0 13px;
  }
}
.p-homeSlideTxt__ttl {
  position: relative;
  margin-bottom: 0.7em;
}
@media screen and (max-width: 768px) {
  .p-homeSlideTxt__ttl {
    padding-top: 100px;
  }
}
.p-homeSlideTxt__ttl span:first-child:not(:last-child) {
  position: absolute;
  top: -7px;
  left: -92px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
  height: 80px;
  color: #4ab9ff;
  font-weight: bold;
  font-size: 12px;
  line-height: 1;
  background: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .p-homeSlideTxt__ttl span:first-child:not(:last-child) {
    top: 0;
    left: 20px;
  }
}
.p-homeSlideTxt__ttl--hasNum span:first-child:not(:last-child) {
  font-size: 12px;
}
.p-homeSlideTxt__ttl--hasNum span:first-child:not(:last-child) em {
  font-weight: bold;
  font-size: 40px;
}
.p-homeSlideTxt__ttl img {
  max-width: 532px;
}
.p-homeSlideTxt__txt {
  color: #004672;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
}
.p-homeSlideTxt__txt em {
  display: block;
  margin: 0.6em 0;
  font-size: 1.25em;
}
.p-homeSlideTxt__txt span {
  border-bottom: 2px solid #61b3fd;
}

.p-homeSlideMedia {
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.5s, top 1s, right 1s;
  transition: opacity 0.5s, top 1s, right 1s;
}
@media screen and (max-width: 768px) {
  .p-homeSlideMedia {
    top: 0;
    right: -100%;
    z-index: 1;
  }
}
.p-homeSlideMedia.slick-initialized {
  top: 0;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .p-homeSlideMedia.slick-initialized {
    right: 0;
  }
}
.p-homeSlideMedia__item {
  position: relative;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 52.7vw !important;
  min-height: 600px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-homeSlideMedia__item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: 100vh !important;
    min-height: auto;
    padding-top: 30%;
  }
}
.p-homeSlideMedia__item:focus-visible {
  outline: none;
}
.p-homeSlideMedia__video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1199px) {
  .p-homeSlideMedia__video {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .p-homeSlideMedia__img {
    display: none !important;
  }
}

.p-homeService {
  position: relative;
  margin-bottom: 130px;
  padding-top: 90px;
}
@media screen and (max-width: 768px) {
  .p-homeService {
    margin-bottom: 60px;
    padding-top: 40px;
  }
}
.p-homeService__ttl {
  margin-bottom: 1.8em;
}
.p-homeService__subTtl {
  max-width: 22em;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-homeService__subTtl {
    max-width: 100%;
    padding: 0 13px;
  }
}
.p-homeService__txt {
  max-width: 390px;
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .p-homeService__txt {
    max-width: 100%;
    padding: 0 13px;
  }
}
.p-homeService__img {
  position: absolute;
  top: 35%;
  right: 0;
  z-index: -1;
  width: calc(50% + 100px);
}
@media screen and (max-width: 768px) {
  .p-homeService__img {
    position: static;
    width: auto;
    max-width: calc(100% + 13px);
    margin-right: -13px;
  }
}

.p-homeAbout {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .p-homeAbout {
    margin-bottom: 55px;
  }
}
.p-homeAbout__ttl {
  margin-bottom: 1.8em;
}
.p-homeAbout__frame {
  position: relative;
  padding-top: 56.25%;
}
.p-homeAbout__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.p-homeAbout__player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-homeInfo {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-homeInfo {
    margin-bottom: 60px;
  }
}
.p-homeInfo__ttl {
  margin-bottom: 0.7em;
}
.p-homeInfo__list {
  -webkit-box-shadow: 0 3px 6px rgba(97, 179, 253, 0.5);
          box-shadow: 0 3px 6px rgba(97, 179, 253, 0.5);
  display: block;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  padding: 25px 0;
}
@media screen and (max-width: 768px) {
  .p-homeInfo__list {
    padding: 40px 13px 20px;
  }
}
.p-homeInfo__btn {
  margin: 35px auto 0;
}

.p-homeCompany {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-homeCompany {
    margin-bottom: 60px;
  }
}
.p-homeCompany__ttl {
  margin-bottom: 0.7em;
}
.p-homeCompany__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-homeCompany__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-homeCompany__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .p-homeCompany__item {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: calc(50% - 6px);
    margin-bottom: 10px;
  }
}
.p-homeCompany__item:not(:last-child) {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .p-homeCompany__item:not(:last-child) {
    margin-right: 0;
  }
}
.p-homeCompany__link {
  display: block;
  height: 100%;
  padding: 20px 0 17px;
}
.p-homeCompany__img {
  width: 100%;
  max-width: 185px;
  margin-bottom: 15px;
}

.p-homeIr {
  margin-bottom: 80px;
  padding: 60px 0;
  background: url(../images/home/ir_bg.png) no-repeat left top #e7edef;
}
@media screen and (max-width: 768px) {
  .p-homeIr {
    margin-bottom: 60px;
    padding: 30px 0;
    background-size: 200px;
  }
}
.p-homeIr__ttl {
  margin-bottom: 0.7em;
}
.p-homeIr__grid {
  display: -ms-grid;
  display: grid;
  grid-gap: 20px;
  -ms-grid-rows: 1fr 20px 1fr;
  grid-template-rows: 1fr 1fr;
  -ms-grid-columns: 3fr 20px 1fr;
  grid-template-columns: 3fr 1fr;
}
.p-homeIr__grid > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-homeIr__grid > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.p-homeIr__grid > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.p-homeIr__grid > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
@media screen and (max-width: 768px) {
  .p-homeIr__grid {
    grid-gap: 12px;
    -ms-grid-rows: 1fr 12px 180px;
    grid-template-rows: 1fr 180px;
    -ms-grid-columns: 1fr 12px 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .p-homeIr__grid > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .p-homeIr__grid > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .p-homeIr__grid > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .p-homeIr__grid > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}
.p-homeIr__gridItem:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  -ms-grid-column: 1;
  grid-column: 1;
  padding: 45px 0;
}
@media screen and (max-width: 768px) {
  .p-homeIr__gridItem:nth-child(1) {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    padding: 40px 13px 20px;
  }
}
.p-homeIr__gridItem:nth-child(2), .p-homeIr__gridItem:nth-child(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 25px 0;
}
@media screen and (max-width: 768px) {
  .p-homeIr__gridItem:nth-child(2), .p-homeIr__gridItem:nth-child(3) {
    min-height: 185px;
    padding: 15px 0;
  }
}
.p-homeIr__gridItem:nth-child(2) {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 2;
  grid-column: 2;
}
@media screen and (max-width: 768px) {
  .p-homeIr__gridItem:nth-child(2) {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
.p-homeIr__gridItem:nth-child(3) {
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 2;
  grid-column: 2;
}
@media screen and (max-width: 768px) {
  .p-homeIr__gridItem:nth-child(3) {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
.p-homeIr__gridImg {
  width: 100%;
  max-width: 143px;
}
.p-homeIr__gridTtl {
  margin-top: auto;
}
.p-homeIr__subTtl {
  margin-bottom: 1em;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .p-homeIr__subTtl {
    margin-bottom: 0.5em;
    padding-left: 0;
  }
}
.p-homeIr__more {
  float: right;
  margin: 20px 40px 0 0;
}
@media screen and (max-width: 768px) {
  .p-homeIr__more {
    margin-top: 20px;
    margin-right: 13px;
  }
}
.p-homeIr__btn {
  margin: 35px auto 0;
}

.p-homeRecruit__ttl {
  margin-bottom: 0.7em;
}
.p-homeRecruit__link {
  display: block;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (min-width: 1200px) {
  .p-homeRecruit__link {
    cursor: pointer;
    -webkit-transition: 0.3s opacity;
    transition: 0.3s opacity;
  }
  .p-homeRecruit__link:hover {
    opacity: 0.5;
  }
  .p-homeRecruit__link:hover img {
    opacity: 1;
  }
}
.p-homeRecruit__img {
  width: 100%;
}

/*====================================================================
プライバシーポリシー関連ページ
====================================================================*/
.p-policy__inner {
  padding: 40px 60px 30px;
}
@media screen and (max-width: 768px) {
  .p-policy__inner {
    padding: 20px 13px;
  }
}
.p-policy__inner > div {
  counter-reset: h3;
}
.p-policy__inner > div > div {
  counter-reset: h4;
}
.p-policy__inner p {
  margin-bottom: 2em;
}
.p-policy__inner h2 {
  margin-bottom: 1em;
  color: inherit;
  font-size: 22px;
  text-align: left;
}
.p-policy__inner h2:not(:first-child) {
  margin-top: 2em;
}
.p-policy__inner h3 {
  margin: 2em 0 1em;
  color: inherit;
  font-size: 20px;
  text-align: left;
}
.p-policy__inner h3::before {
  content: counter(h3) ". ";
  counter-increment: h3;
}
.p-policy__inner h3:first-of-type:last-of-type::before {
  content: none;
}
.p-policy__inner h4 {
  margin: 1em 0 0.5em;
  color: inherit;
  font-size: inherit;
}
.p-policy__inner h4::before {
  content: "(" counter(h4) ") ";
  counter-increment: h4;
}
.p-policy__inner h4:first-of-type:last-of-type::before {
  content: none;
}
.p-policy__inner ol,
.p-policy__inner ul {
  margin-bottom: 1em;
  padding-left: 1.5em;
}
.p-policy__inner ol {
  list-style: decimal outside;
}
.p-policy__inner ul {
  list-style: disc outside;
}
.p-policy__inner dl {
  margin-top: 0.5em;
}
.p-policy__inner dt {
  font-weight: bold;
}
.p-policy__inner dd {
  padding-left: 1em;
}
.p-policy__sign {
  margin-top: 3em;
  text-align: right;
}
.p-policy__sign p {
  margin-top: 20px;
}

/*====================================================================
サイトマップ
====================================================================*/
.p-sitemap__inner {
  padding: 40px 60px 30px;
  color: #4ab9ff;
}
@media screen and (max-width: 768px) {
  .p-sitemap__inner {
    padding: 20px 13px;
  }
}
.p-sitemap__inner a {
  position: relative;
  padding-left: 15px;
  color: inherit;
  text-decoration: underline;
}
.p-sitemap__inner a::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid;
  border-right: 1px solid;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  content: "";
}
.p-sitemap__inner a[href="#"] {
  pointer-events: none;
}
.p-sitemap__inner a[target=_blank] {
  padding-right: 20px;
  background: url(../images/common/icon_externalLink.svg) no-repeat right/13px;
}
@media screen and (min-width: 1200px) {
  .p-sitemap__inner a:hover {
    opacity: 0.5;
  }
}
.p-sitemap__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-sitemap__main {
    display: block;
  }
}
.p-sitemap__mainCol:first-child {
  width: 310px;
}
@media screen and (max-width: 768px) {
  .p-sitemap__mainCol:first-child {
    width: 100%;
  }
}
.p-sitemap__mainCol > li > a {
  display: inline-block;
  margin-bottom: 0.4em;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
}
.p-sitemap__mainCol > li > a::before {
  top: 14px;
}
.p-sitemap__mainCol ul {
  margin-bottom: 1.5em;
  margin-left: 1em;
}
.p-sitemap__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-sitemap__sub {
    display: block;
  }
}
.p-sitemap__sub li:nth-child(odd) {
  width: 310px;
}
@media screen and (max-width: 768px) {
  .p-sitemap__sub li:nth-child(odd) {
    width: 100%;
  }
}
.p-sitemap__sub li:nth-child(even) {
  width: calc(100% - 310px);
}
@media screen and (max-width: 768px) {
  .p-sitemap__sub li:nth-child(even) {
    width: 100%;
  }
}

/*====================================================================
トップメッセージ
====================================================================*/
.p-message .c-pageTtl {
  background-image: url(../images/message/ttl_bg.png);
}
.p-message__inner {
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .p-message__inner {
    padding: 20px 13px;
  }
}
.p-message__img {
  width: 100%;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-message__img {
    margin-bottom: 20px;
  }
}
.p-message__ttl {
  margin-bottom: 1.7em;
}
@media screen and (max-width: 768px) {
  .p-message__ttl {
    margin-bottom: 0.5em;
  }
}
.p-message__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 3.5em;
}
@media screen and (max-width: 768px) {
  .p-message__name {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 2em;
  }
}
.p-message__name span:first-child {
  margin-right: 1em;
  line-height: 1.2;
}
.p-message__name span:last-child {
  font-size: 2em;
}
.p-message__txt p:not(:last-child) {
  margin-bottom: 2em;
}
.p-message__txt small {
  font-size: 14px;
}

/*====================================================================
会社概要
====================================================================*/
.p-company .c-pageTtl {
  background-image: url(../images/company/ttl_bg.png);
}
.p-company__inner {
  padding: 40px 80px;
}
.p-company__inner:first-child {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-company__inner {
    padding: 20px 13px;
  }
}

.p-companyInfo {
  margin-bottom: 20px;
}
.p-companyInfo__row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1em 0;
}
.p-companyInfo__row::after {
  position: absolute;
  right: -1.5em;
  bottom: 0;
  left: -1.5em;
  height: 1px;
  background: #ccc;
  content: "";
}
@media screen and (max-width: 768px) {
  .p-companyInfo__row::after {
    right: 0;
    left: 0;
  }
}
.p-companyInfo__ttl {
  width: 11em;
  font-weight: bold;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .p-companyInfo__ttl {
    width: 7em;
  }
}
.p-companyInfo__txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-companyInfo__txt small {
  font-size: 12px;
}

.p-companyMap__ttl {
  color: inherit;
  font-size: inherit;
  text-align: left;
}
.p-companyMap__ttl:not(:first-of-type) {
  margin-top: 3em;
}
.p-companyMap__frame {
  display: block;
  width: 100%;
  height: 260px;
  margin: 10px 0;
}

.p-companyHistory {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-companyHistory {
    display: block;
  }
}
.p-companyHistory__ttl {
  width: 12em;
  color: inherit;
  font-size: 16px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-companyHistory__ttl {
    width: 100%;
    margin-bottom: 1em;
  }
}
.p-companyHistory__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-companyHistory__subTtl {
  font-weight: bold;
}
.p-companyHistory__subTtl:not(:first-of-type) {
  margin-top: 1em;
}
.p-companyHistory__txt {
  max-width: 33em;
}

/*====================================================================
関連会社
====================================================================*/
.p-group .c-pageTtl {
  background-image: url(../images/group/ttl_bg.png);
}
.p-group__inner {
  padding: 40px 60px;
}
@media screen and (max-width: 768px) {
  .p-group__inner {
    padding: 20px 13px;
  }
}
.p-group__inner:not(first-child) {
  margin-top: 40px;
}
.p-group__ttl {
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .p-group__ttl {
    margin-bottom: 0;
  }
}
.p-group__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 30px 0 60px;
}
@media screen and (max-width: 768px) {
  .p-group__gallery {
    display: block;
  }
}
.p-group__galleryImg {
  width: calc(50% - 10px);
}
@media screen and (max-width: 768px) {
  .p-group__galleryImg {
    width: 100%;
  }
}

.p-groupInfo {
  margin-bottom: 20px;
}
.p-groupInfo__row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1em 0;
}
@media screen and (max-width: 768px) {
  .p-groupInfo__row {
    display: block;
  }
}
.p-groupInfo__row::after {
  position: absolute;
  right: -1.5em;
  bottom: 0;
  left: -1.5em;
  height: 1px;
  background: #ccc;
  content: "";
}
@media screen and (max-width: 768px) {
  .p-groupInfo__row::after {
    right: 0;
    left: 0;
  }
}
.p-groupInfo__ttl {
  width: 11em;
  font-weight: bold;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .p-groupInfo__ttl {
    width: 100%;
    font-size: 14px;
  }
}
.p-groupInfo__txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-groupMap__txt {
  line-height: 1.4;
}
.p-groupMap__frame {
  display: block;
  width: 100%;
  height: 260px;
  margin-top: 10px;
}

/*====================================================================
企業理念
====================================================================*/
.p-philosophy .c-pageTtl {
  background-image: url(../images/philosophy/ttl_bg.png);
}

.p-philosophyLead {
  position: relative;
  padding-top: 30px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-philosophyLead {
    padding-top: 16px;
    margin-bottom: 40px;
  }
}
.p-philosophyLead::before {
  position: absolute;
  top: 35px;
  right: 0;
  z-index: -2;
  width: 100%;
  height: 800px;
  background: url(../images/philosophy/bg_02.png) no-repeat right top;
  content: "";
}
@media screen and (max-width: 768px) {
  .p-philosophyLead::before {
    top: -60px;
    height: 78vw;
    background-size: contain;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
}
.p-philosophyLead::after {
  position: absolute;
  bottom: -390px;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 800px;
  background: url(../images/philosophy/bg_02.png) no-repeat right top;
  content: "";
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (max-width: 768px) {
  .p-philosophyLead::after {
    content: none;
  }
}
.p-philosophyLead .container::before {
  position: absolute;
  top: -80px;
  right: -20px;
  z-index: -1;
  width: 100%;
  height: 240px;
  background: url(../images/philosophy/bg_01.png) no-repeat top;
  content: "";
}
@media screen and (max-width: 768px) {
  .p-philosophyLead .container::before {
    top: -21px;
    left: -8px;
    height: 27vw;
    background-size: contain;
  }
}
.p-philosophyLead__item:not(:first-child) {
  margin-top: 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-philosophyLead__item:not(:first-child) {
    margin-top: 40px;
  }
}
.p-philosophyLead__item:not(:first-child)::before {
  position: absolute;
  bottom: 365px;
  right: -20px;
  z-index: -1;
  width: 100%;
  height: 240px;
  background: url(../images/philosophy/bg_01.png) no-repeat top;
  content: "";
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (max-width: 768px) {
  .p-philosophyLead__item:not(:first-child)::before {
    top: -50px;
    left: -8px;
    height: 27vw;
    background-size: contain;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@media screen and (max-width: 768px) {
  .p-philosophyLead__item:not(:first-child)::after {
    position: absolute;
    top: -30px;
    right: -13px;
    height: 78vw;
    z-index: -2;
    width: 100%;
    background: url(../images/philosophy/bg_02.png) no-repeat right top;
    background-size: contain;
    content: "";
  }
}
.p-philosophyLead__ttl {
  line-height: 1.2;
}
.p-philosophyLead__ttl span {
  display: inline-block;
  padding-top: 0.5em;
}
.p-philosophyLead__txt {
  padding-top: 1.5em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-philosophyLead__txt {
    padding-top: 2em;
  }
}
.p-philosophyLead__subTxt {
  margin: 0 auto;
  padding-top: 2em;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .p-philosophyLead__subTxt {
    padding-top: 2.5em;
  }
}

.p-philosophyList__inner {
  padding: 40px 40px 80px;
}
@media screen and (max-width: 768px) {
  .p-philosophyList__inner {
    padding: 20px 13px;
  }
}
.p-philosophyList__item {
  position: relative;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-philosophyList__item {
    padding-top: 20px;
  }
}
.p-philosophyList__item:not(:last-child) {
  margin-bottom: 40px;
}
.p-philosophyList__item::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 600px;
  height: 600px;
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
}
@media screen and (max-width: 768px) {
  .p-philosophyList__item::before {
    width: 80vw;
    height: 80vw;
  }
}
.p-philosophyList__item:nth-child(1)::before {
  background-image: url(../images/philosophy/bg_03.png);
}
.p-philosophyList__item:nth-child(1) .p-philosophyList__ttl {
  background-image: url(../images/philosophy/icon_01.png);
}
.p-philosophyList__item:nth-child(1) .p-philosophyList__txt {
  max-width: 47em;
}
.p-philosophyList__item:nth-child(2)::before {
  background-image: url(../images/philosophy/bg_04.png);
}
.p-philosophyList__item:nth-child(2) .p-philosophyList__ttl {
  background-image: url(../images/philosophy/icon_02.png);
}
.p-philosophyList__item:nth-child(2) .p-philosophyList__txt {
  max-width: 59em;
}
.p-philosophyList__item:nth-child(3)::before {
  background-image: url(../images/philosophy/bg_05.png);
}
.p-philosophyList__item:nth-child(3) .p-philosophyList__ttl {
  background-image: url(../images/philosophy/icon_03.png);
}
.p-philosophyList__item:nth-child(3) .p-philosophyList__txt:nth-of-type(1) {
  max-width: 60em;
}
.p-philosophyList__item:nth-child(3) .p-philosophyList__txt:nth-of-type(2) {
  max-width: 45em;
}
.p-philosophyList__ttl {
  position: relative;
  margin-bottom: 1.5em;
  padding-top: 90px;
  line-height: 1;
  background-repeat: no-repeat;
  background-position: top;
}
@media screen and (max-width: 768px) {
  .p-philosophyList__ttl {
    padding-top: 40px;
    background-size: 30px;
  }
}
.p-philosophyList__subTtl {
  position: relative;
  margin-bottom: 0.5em;
}
.p-philosophyList__subTtl:not(:first-of-type) {
  margin-top: 1em;
}
.p-philosophyList__txt {
  position: relative;
  max-width: 630px;
  margin: 0 auto;
}

/*====================================================================
IR情報
====================================================================*/
.p-ir .c-pageTtl {
  background-color: #e7edef;
  background-image: url(../images/ir/ttl_bg.png);
}
.p-ir .c-pageTtl span:first-child {
  color: #888;
}
.p-ir .c-pageTtl span:last-child {
  color: #004672;
}

.p-irNewsList {
  padding-bottom: 60px;
}
.p-irNewsList__ttl {
  margin-bottom: 1em;
}
.p-irNewsList__inner {
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .p-irNewsList__inner {
    padding: 30px 13px;
  }
}
.p-irNewsList__btn {
  margin: 35px auto 0;
}
@media screen and (max-width: 768px) {
  .p-irNewsList__btn {
    margin-top: 20px;
  }
}

.p-irFinancial {
  padding: 60px 0;
  background-color: #e7edef;
}
@media screen and (max-width: 768px) {
  .p-irFinancial {
    padding: 20px 0;
  }
}
.p-irFinancial__inner {
  padding: 55px 40px 40px;
  background: url(../images/ir/financial_bg_01.png) no-repeat left calc(50% - 220px) top 45px/202px auto #fff;
}
@media screen and (max-width: 768px) {
  .p-irFinancial__inner {
    padding: 270px 13px 40px;
    background-position: top 30px center;
  }
}
.p-irFinancial__ttl {
  max-width: 480px;
  margin-bottom: 1em;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .p-irFinancial__ttl {
    margin-bottom: 0.5em;
    padding: 0 13px;
  }
}
.p-irFinancial__txt {
  max-width: 480px;
  margin-left: auto;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-irFinancial__txt {
    padding: 0 13px;
  }
}
.p-irFinancial__btn {
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .p-irFinancial__btn {
    margin-top: 20px;
  }
}

.p-irDocument {
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-irDocument {
    padding-top: 40px;
  }
}
.p-irDocument__ttl {
  margin-bottom: 1em;
}
.p-irDocument__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-irDocument__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 769px) {
  .p-irDocument__item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .p-irDocument__item:not(:last-child) {
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-irDocument__item {
    width: calc(50% - 13px / 2);
    margin-bottom: 13px;
  }
}
.p-irDocument__link {
  display: block;
  height: 100%;
  padding: 20px 0 25px;
}
.p-irDocument__subTtl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 2.4em;
  line-height: 1.2;
}
.p-irDocument__img {
  max-width: 185px;
}

/*====================================================================
IRニュース
====================================================================*/
.p-irNews__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .p-irNews__header {
    display: block;
  }
}
.p-irNews__select {
  width: 280px;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .p-irNews__select {
    width: 100%;
    margin: 0 0 10px;
  }
}
.p-irNews__cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 7px;
}
@media screen and (max-width: 768px) {
  .p-irNews__cat {
    display: block;
    padding-bottom: 0;
  }
}
.p-irNews__catBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 42px;
  font-weight: bold;
  font-size: 18px;
  border-radius: 6px;
  cursor: pointer;
}
.p-irNews__catBtn.is-active, .p-irNews__catBtn:hover {
  background: #e6e6e6;
}
@media screen and (max-width: 768px) {
  .p-irNews__catBtn {
    display: none;
  }
}
.p-irNews__catBtn:not(:last-child) {
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .p-irNews__catBtn:not(:last-child) {
    margin-right: 0;
  }
}
.p-irNews__toggleBtn {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-irNews__toggleBtn {
    position: relative;
    display: block;
    width: 100%;
    height: 36px;
    font-size: 0;
  }
  .p-irNews__toggleBtn::before {
    position: absolute;
    top: 9px;
    left: 50%;
    width: 12px;
    height: 12px;
    margin-left: -6px;
    border-right: 2px solid #4ab9ff;
    border-bottom: 2px solid #4ab9ff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    content: "";
  }
  .p-irNews__toggleBtn.is-open::before {
    top: 15px;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
}
.p-irNews__inner {
  margin-bottom: 30px;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .p-irNews__inner {
    padding: 30px 13px;
  }
}
.p-irNews .c-irList__item {
  display: none;
}

/*====================================================================
決算短信
====================================================================*/
.p-results__inner {
  margin-bottom: 30px;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .p-results__inner {
    padding: 30px 13px;
  }
}

/*====================================================================
会社説明会資料
====================================================================*/
.p-explanation__inner {
  margin-bottom: 30px;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .p-explanation__inner {
    padding: 30px 13px;
  }
}

/*====================================================================
有価証券報告書
====================================================================*/
.p-report__inner {
  margin-bottom: 30px;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .p-report__inner {
    padding: 30px 13px;
  }
}

/*====================================================================
株主総会
====================================================================*/
.p-meeting__inner {
  margin-bottom: 30px;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .p-meeting__inner {
    padding: 30px 13px;
  }
}

/*====================================================================
サービス
====================================================================*/
.p-service .c-pageTtl {
  background-image: url(../images/service/ttl_bg.png);
}

.p-serviceList {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-serviceList {
    margin-bottom: 100px;
  }
}
.p-serviceList__ttl {
  margin-bottom: 40px;
  padding: 0 13px;
}
.p-serviceList__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-serviceList__item {
    display: block;
  }
}
.p-serviceList__item:not(:last-child) {
  margin-bottom: 90px;
}
.p-serviceList__img {
  width: 40vw;
}
@media screen and (max-width: 768px) {
  .p-serviceList__img {
    width: calc(100% - 13px);
    margin-bottom: 20px;
  }
}
.p-serviceList__inner {
  width: 520px;
  margin-left: 90px;
  padding: 0 26px;
}
@media screen and (max-width: 768px) {
  .p-serviceList__inner {
    width: 100%;
    margin-left: 0;
  }
}
.p-serviceList__subTtl {
  margin-bottom: 1.2em;
}
.p-serviceList__txt span {
  letter-spacing: -0.1em;
}
.p-serviceList__btn {
  max-width: 285px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .p-serviceList__btn {
    margin-top: 30px;
  }
}

.p-serviceFaq__ttl {
  margin-bottom: 0.8em;
}
.p-serviceFaq__nav {
  margin-bottom: 120px;
}
.p-serviceFaq__item {
  padding-left: 30px;
  background: url(../images/service/faq_icon.svg) no-repeat left top 11px/18px;
}
.p-serviceFaq__item:not(:last-child) {
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-serviceFaq__item {
    background-position: top 8px left 0;
  }
}
.p-serviceFaq__link {
  color: #4ab9ff;
  text-decoration: underline;
}
@media screen and (min-width: 1200px) {
  .p-serviceFaq__link {
    cursor: pointer;
    -webkit-transition: 0.3s opacity;
    transition: 0.3s opacity;
  }
  .p-serviceFaq__link:hover {
    opacity: 0.5;
  }
  .p-serviceFaq__link:hover img {
    opacity: 1;
  }
}

.p-serviceFaqBox:not(:last-child) {
  margin-bottom: 80px;
}
.p-serviceFaqBox__ttl {
  margin-bottom: 1em;
  padding-left: 30px;
  font-size: 20px;
  background: url(../images/service/faq_box_icon.svg) no-repeat left top 3px/24px;
}
.p-serviceFaqBox__subTtl {
  margin-bottom: 0.5em;
  font-size: 14px;
}
.p-serviceFaqBox__subTtl:not(:first-of-type) {
  margin-top: 2.5em;
}
.p-serviceFaqBox__txt + .p-serviceFaqBox__txt {
  margin-top: 2em;
}
.p-serviceFaqBox__inner {
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .p-serviceFaqBox__inner {
    padding: 40px 13px;
  }
}
.p-serviceFaqBox__frame {
  margin-top: 20px;
  padding: 20px 25px;
  background: #dbf1ff;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-serviceFaqBox__frame {
    padding: 10px;
  }
}
.p-serviceFaqBox__frameTxt {
  color: #004672;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.8;
}
.p-serviceFaqBox__fig {
  margin: 40px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-serviceFaqBox__fig {
    margin-right: -15vw;
  }
}
.p-serviceFaqBox__fig .p-serviceFaqBox__img {
  width: 100%;
  max-width: 598px;
}
.p-serviceFaqBox__pic {
  margin: 40px 0;
  text-align: center;
  display: block;
}
.p-serviceFaqBox__pic .p-serviceFaqBox__img {
  width: 100%;
  max-width: 716px;
}
.p-serviceFaqBox__list {
  padding-left: 1.5em;
  list-style: outside disc;
}
.p-serviceFaqBox__tbl {
  line-height: 1.3;
  text-align: left;
  border: 4px solid #004672;
  border-radius: 4px;
  border-collapse: separate;
  border-spacing: 0;
}
.p-serviceFaqBox__tbl thead th {
  padding: 15px 20px;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  background: #004672;
}
@media screen and (max-width: 768px) {
  .p-serviceFaqBox__tbl thead th:first-child {
    width: 120px;
  }
}
.p-serviceFaqBox__tbl tbody td {
  padding: 15px 20px;
  color: #004672;
  background: #fff;
}
.p-serviceFaqBox__tbl tbody tr:not(:last-child) td {
  border-bottom: 2px solid #004672;
}

/*====================================================================
マイナンバーサービス
====================================================================*/
.p-mynumber .c-serviceMv {
  background-color: #b0f4ed;
}
@media screen and (max-width: 768px) {
  .p-mynumber .c-serviceMv {
    background-image: url(../images/service/mynumber/mv_bg.png);
  }
}
.p-mynumber .c-serviceMv__ttl::after {
  top: calc(100% - 20px);
  background-image: url(../images/service/mynumber/mv_img.png);
}
@media screen and (max-width: 768px) {
  .p-mynumber .c-serviceMv__ttl::after {
    top: calc(100% - 40px);
  }
}
.p-mynumber__ttl {
  margin-bottom: 3.3em;
  padding: 0 26px;
}
@media screen and (max-width: 768px) {
  .p-mynumber__ttl {
    margin-bottom: 2em;
  }
}
.p-mynumber__container {
  background: url(../images/service/mynumber/bg_01.png) no-repeat top 30px center/contain;
}

.p-mynumberService {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-mynumberService {
    margin-bottom: 40px;
  }
}
.p-mynumberService__inner {
  padding: 40px 50px;
}
@media screen and (max-width: 768px) {
  .p-mynumberService__inner {
    padding: 40px 13px;
  }
}
.p-mynumberService__ttl {
  margin-bottom: 0.3em;
}
.p-mynumberService__ttl:not(:first-of-type) {
  margin-top: 1em;
}

.p-mynumberInfo {
  margin-bottom: 80px;
}
.p-mynumberInfo__inner {
  display: -ms-grid;
  display: grid;
  grid-gap: 12px;
  -ms-grid-rows: auto 12px auto;
  grid-template-rows: auto auto;
  -ms-grid-columns: 1.5fr 12px 1fr;
  grid-template-columns: 1.5fr 1fr;
  padding: 40px 50px;
}
.p-mynumberInfo__inner > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-mynumberInfo__inner > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.p-mynumberInfo__inner > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.p-mynumberInfo__inner > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
@media screen and (max-width: 768px) {
  .p-mynumberInfo__inner {
    padding: 40px 13px;
  }
}
.p-mynumberInfo__col:nth-child(1) {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  border-right: 4px solid #ccc;
  border-bottom: 4px solid #ccc;
  border-left: 4px solid #ccc;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-mynumberInfo__col:nth-child(1) {
    border-width: 2px;
  }
}
.p-mynumberInfo__col:nth-child(1) .p-mynumberInfo__ttl {
  padding: 0.5em 0;
  border-radius: 5px 5px 0 0;
}
.p-mynumberInfo__col:nth-child(1) .p-mynumberInfo__boxList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .p-mynumberInfo__col:nth-child(1) .p-mynumberInfo__boxList {
    display: block;
    padding: 10px;
  }
}
.p-mynumberInfo__col:nth-child(1) .p-mynumberInfo__box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px;
  border-radius: 10px;
}
.p-mynumberInfo__col:nth-child(1) .p-mynumberInfo__box:first-child {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .p-mynumberInfo__col:nth-child(1) .p-mynumberInfo__box:first-child {
    margin: 0 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-mynumberInfo__col:nth-child(1) .p-mynumberInfo__boxTxt {
    margin-top: 1em;
    line-height: 1.3;
  }
}
.p-mynumberInfo__col:nth-child(2) {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-flow: column-reverse;
          flex-flow: column-reverse;
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  grid-column: 1;
  margin-top: 16px;
  border-top: 4px solid #ccc;
  border-right: 4px solid #ccc;
  border-left: 4px solid #ccc;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-mynumberInfo__col:nth-child(2) {
    border-width: 2px;
  }
}
.p-mynumberInfo__col:nth-child(2) .p-mynumberInfo__ttl {
  padding: 0.5em 0;
  border-radius: 0 0 5px 5px;
}
.p-mynumberInfo__col:nth-child(2) .p-mynumberInfo__box {
  position: relative;
  top: -20px;
  margin: 0 20px;
  border: 4px solid #a9d6ff;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-mynumberInfo__col:nth-child(2) .p-mynumberInfo__box {
    margin: 0 10px;
  }
}
.p-mynumberInfo__col:nth-child(2) .p-mynumberInfo__boxTtl {
  padding: 0.5em 0;
}
.p-mynumberInfo__col:nth-child(2) ul {
  max-width: 370px;
  margin: 20px auto;
  padding-left: 1.5em;
  line-height: 1.4;
  list-style: outside disc;
}
@media screen and (max-width: 768px) {
  .p-mynumberInfo__col:nth-child(2) ul {
    margin: 20px 10px;
  }
}
.p-mynumberInfo__col:nth-child(2)::before {
  position: absolute;
  top: -62px;
  left: 50%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 52px;
  height: 52px;
  margin-left: -26px;
  color: #fff;
  font-size: 30px;
  background: #ccc;
  border-radius: 50%;
  content: "+";
}
@media screen and (max-width: 768px) {
  .p-mynumberInfo__col:nth-child(2)::before {
    top: -48px;
    width: 40px;
    height: 40px;
    margin-left: -20px;
  }
}
.p-mynumberInfo__col:nth-child(3) {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 2;
  grid-column: 2;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  line-height: 1.4;
  border: 4px solid #ccc;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-mynumberInfo__col:nth-child(3) {
    border-width: 2px;
  }
}
.p-mynumberInfo__col:nth-child(3) .p-mynumberInfo__ttl {
  padding: 0.5em 0;
}
.p-mynumberInfo__col:nth-child(3)::before {
  position: absolute;
  top: -46px;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 52px;
  height: 52px;
  margin-left: -26px;
  color: #fff;
  font-size: 30px;
  background: #ccc;
  border-radius: 50%;
  content: "+";
}
@media screen and (max-width: 768px) {
  .p-mynumberInfo__col:nth-child(3)::before {
    top: -30px;
    width: 40px;
    height: 40px;
    margin-left: -20px;
  }
}

.p-mynumberMerit {
  margin: 100px 0 130px;
}
@media screen and (max-width: 768px) {
  .p-mynumberMerit {
    margin: 80px 0;
  }
}
.p-mynumberMerit__inner {
  padding: 40px 60px;
}
@media screen and (max-width: 768px) {
  .p-mynumberMerit__inner {
    padding: 40px 13px;
  }
}
.p-mynumberMerit__ttl {
  margin-bottom: 1.7em;
}
.p-mynumberMerit__box {
  position: relative;
  min-height: 122px;
}
.p-mynumberMerit__box:not(:last-child) {
  margin-bottom: 50px;
}
.p-mynumberMerit__boxImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 122px;
}
@media screen and (max-width: 768px) {
  .p-mynumberMerit__boxImg {
    position: static;
    float: left;
  }
}
.p-mynumberMerit__boxInner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-mynumberMerit__boxTtl {
  margin-bottom: 0.5em;
  padding-left: 145px;
}
@media screen and (max-width: 768px) {
  .p-mynumberMerit__boxTtl {
    padding-left: 0;
  }
}
.p-mynumberMerit__boxTxt {
  padding-left: 145px;
}

.p-mynumberReason {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-mynumberReason {
    margin-bottom: 80px;
  }
}
.p-mynumberReason__ttl {
  margin-bottom: 0.7em;
}
.p-mynumberReason__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  counter-reset: number;
}
@media screen and (max-width: 768px) {
  .p-mynumberReason__list {
    display: block;
  }
}
.p-mynumberReason__item {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 85px 30px 40px;
}
.p-mynumberReason__item:not(:last-child) {
  margin-right: 16px;
}
@media screen and (max-width: 768px) {
  .p-mynumberReason__item:not(:last-child) {
    margin: 0 0 20px;
  }
}
.p-mynumberReason__item::before {
  position: absolute;
  top: 25px;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 52px;
  height: 52px;
  margin-left: -26px;
  color: #fff;
  font-weight: bold;
  font-size: 32px;
  background: #4ab9ff;
  border-radius: 50%;
  content: counter(number);
  counter-increment: number;
}
.p-mynumberReason__itemImg {
  max-width: 133px;
  margin-bottom: 20px;
}
.p-mynumberReason__itemTtl {
  margin-bottom: 0.7em;
}

/*====================================================================
住民税徴収額更新
====================================================================*/
.p-residenttax .c-serviceMv {
  background-color: #e3e2ff;
}
@media screen and (max-width: 768px) {
  .p-residenttax .c-serviceMv {
    background-image: url(../images/service/residenttax/mv_bg.png);
  }
}
.p-residenttax .c-serviceMv__ttl::after {
  top: calc(100% - 50px);
  background-image: url(../images/service/residenttax/mv_img.png);
}
@media screen and (max-width: 768px) {
  .p-residenttax .c-serviceMv__ttl::after {
    top: calc(100% - 40px);
  }
}
.p-residenttax__ttl {
  margin-bottom: 3.3em;
  padding: 0 26px;
}
@media screen and (max-width: 768px) {
  .p-residenttax__ttl {
    margin-bottom: 2em;
  }
}
.p-residenttax__container {
  background: url(../images/service/residenttax/bg_01.png) no-repeat top 30px center/contain;
}

.p-residenttaxPoint {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-residenttaxPoint {
    margin-bottom: 80px;
  }
}
.p-residenttaxPoint__inner {
  padding: 40px 50px;
}
@media screen and (max-width: 768px) {
  .p-residenttaxPoint__inner {
    padding: 40px 13px;
  }
}
.p-residenttaxPoint__ttl {
  margin-bottom: 0.3em;
}
.p-residenttaxPoint__ttl:not(:first-of-type) {
  margin-top: 1em;
}
.p-residenttaxPoint__img {
  margin-top: 50px;
}

.p-residenttaxService {
  margin: 120px 0 80px;
}
@media screen and (max-width: 768px) {
  .p-residenttaxService {
    margin: 80px 0;
  }
}
.p-residenttaxService__inner {
  padding: 40px 50px;
}
@media screen and (max-width: 768px) {
  .p-residenttaxService__inner {
    padding: 40px 13px;
  }
}
.p-residenttaxService__ttl {
  margin-bottom: 1.7em;
}
.p-residenttaxService__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: -40px;
}
@media screen and (max-width: 768px) {
  .p-residenttaxService__list {
    display: block;
  }
}
.p-residenttaxService__item {
  position: relative;
  width: calc(50% - 20px);
  min-height: 122px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-residenttaxService__item {
    width: 100%;
  }
}
.p-residenttaxService__itemImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 122px;
}
@media screen and (max-width: 768px) {
  .p-residenttaxService__itemImg {
    position: static;
    float: left;
  }
}
.p-residenttaxService__itemTtl {
  margin-bottom: 0.5em;
  padding-left: 145px;
}
@media screen and (max-width: 768px) {
  .p-residenttaxService__itemTtl {
    padding-left: 0;
  }
}
.p-residenttaxService__itemTxt {
  padding-left: 145px;
}

.p-residenttaxCase {
  margin-bottom: 80px;
}
.p-residenttaxCase__ttl {
  margin-bottom: 0.7em;
}
.p-residenttaxCase__inner {
  padding: 40px 70px;
}
@media screen and (max-width: 768px) {
  .p-residenttaxCase__inner {
    padding: 40px 13px;
  }
}
.p-residenttaxCase__subTtl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .p-residenttaxCase__subTtl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
            flex-flow: column-reverse;
  }
}
.p-residenttaxCase__subTtl img {
  max-width: 133px;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .p-residenttaxCase__subTtl img {
    margin: 20px 0 0;
  }
}
.p-residenttaxCase__subTtl span {
  margin-top: 10px;
}
.p-residenttaxCase__memberTtl {
  margin-bottom: 0.5em;
}
.p-residenttaxCase__memberList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-residenttaxCase__memberList {
    display: block;
    margin-bottom: 20px;
  }
}
.p-residenttaxCase__memberItem {
  width: calc(33.3% - 7px);
  margin-bottom: 20px;
  padding: 20px;
  font-size: 13px;
  background: #dbf1ff;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-residenttaxCase__memberItem {
    width: 100%;
    margin-bottom: 10px;
  }
}
.p-residenttaxCase__memberItem span {
  display: block;
  margin-bottom: 1em;
  font-weight: bold;
  font-size: 12px;
  font-family: "PT Sans", sans-serif;
  line-height: 1;
}
.p-residenttaxCase__memberItem span em {
  font-size: 2.3em;
}
.p-residenttaxCase__memberImg {
  max-width: 190px;
}
.p-residenttaxCase__tbl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-residenttaxCase__tbl {
    display: block;
  }
}
.p-residenttaxCase__tbl table {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  table-layout: fixed;
}
.p-residenttaxCase__tbl table:first-child {
  margin-right: 50px;
}
@media screen and (max-width: 768px) {
  .p-residenttaxCase__tbl table:first-child {
    margin: 0 0 -1px;
  }
}
.p-residenttaxCase__tbl th,
.p-residenttaxCase__tbl td {
  padding: 0.6em 1.5em;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  .p-residenttaxCase__tbl th,
  .p-residenttaxCase__tbl td {
    padding: 0.7em;
  }
}
.p-residenttaxCase__tbl th {
  text-align: left;
  background: #dbf1ff;
}
.p-residenttaxCase__tbl td {
  font-weight: bold;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-residenttaxCase__tbl td {
    width: 9em;
  }
}

.p-residenttaxReason {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-residenttaxReason {
    margin-bottom: 80px;
  }
}
.p-residenttaxReason__ttl {
  margin-bottom: 0.7em;
}
.p-residenttaxReason__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  counter-reset: number;
}
@media screen and (max-width: 768px) {
  .p-residenttaxReason__list {
    display: block;
  }
}
.p-residenttaxReason__item {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 85px 30px 40px;
}
.p-residenttaxReason__item:not(:last-child) {
  margin-right: 16px;
}
@media screen and (max-width: 768px) {
  .p-residenttaxReason__item:not(:last-child) {
    margin: 0 0 20px;
  }
}
.p-residenttaxReason__item::before {
  position: absolute;
  top: 25px;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 52px;
  height: 52px;
  margin-left: -26px;
  color: #fff;
  font-weight: bold;
  font-size: 32px;
  background: #4ab9ff;
  border-radius: 50%;
  content: counter(number);
  counter-increment: number;
}
.p-residenttaxReason__itemImg {
  max-width: 129px;
  margin-bottom: 20px;
}
.p-residenttaxReason__itemTtl {
  margin-bottom: 0.7em;
}

/*====================================================================
マイナンバーサービス
====================================================================*/
.p-yearend .c-serviceMv {
  background-color: #bce8ff;
}
@media screen and (max-width: 768px) {
  .p-yearend .c-serviceMv {
    background-image: url(../images/service/yearend/mv_bg.png);
  }
}
.p-yearend .c-serviceMv__ttl::after {
  top: calc(100% - 20px);
  background-image: url(../images/service/yearend/mv_img.png);
}
@media screen and (max-width: 768px) {
  .p-yearend .c-serviceMv__ttl::after {
    top: calc(100% - 50px);
  }
}
.p-yearend .c-serviceMv__bnr {
  display: inline-block;
  margin: 10px 0 0 110px;
}
@media screen and (max-width: 768px) {
  .p-yearend .c-serviceMv__bnr {
    display: block;
    width: 210px;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-yearend__ttl {
  margin-bottom: 1.2em;
  padding: 0 26px;
}
@media screen and (max-width: 768px) {
  .p-yearend__ttl {
    margin-bottom: 2em;
  }
}
.p-yearend__container {
  background: url(../images/service/yearend/bg_01.png) no-repeat top 30px center/contain;
}

.p-yearendLead {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .p-yearendLead {
    margin-bottom: 80px;
  }
}
.p-yearendLead__pic {
  display: block;
  margin-bottom: 40px;
  text-align: center;
}
.p-yearendLead__img {
  width: 100%;
}
.p-yearendLead__txt {
  margin-bottom: 30px;
  padding: 20px;
  line-height: 1.4;
  border-radius: 10px;
}
.p-yearendLead__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 40px;
  border-radius: 10px;
  counter-reset: number;
}
@media screen and (max-width: 768px) {
  .p-yearendLead__list {
    display: block;
    padding: 40px 13px;
  }
}
.p-yearendLead__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-yearendLead__item:not(:last-child) {
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .p-yearendLead__item:not(:last-child) {
    margin: 0 0 50px;
  }
}
.p-yearendLead__item:not(:last-child) .p-yearendLead__itemTxt::after {
  position: absolute;
  top: 50%;
  right: -19px;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border-top: 4px solid #4ab9ff;
  border-right: 4px solid #4ab9ff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  content: "";
}
@media screen and (max-width: 768px) {
  .p-yearendLead__item:not(:last-child) .p-yearendLead__itemTxt::after {
    top: calc(100% + 10px);
    right: 50%;
    margin: 0 -7px 0 0;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
}
.p-yearendLead__itemImg {
  display: block;
  max-width: 100px;
  margin: 0 auto 15px;
}
.p-yearendLead__itemTxt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 60px;
  padding-left: 65px;
  color: #004672;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.3;
  background: #dbf1ff;
  border-radius: 1000px;
}
.p-yearendLead__itemTxt::before {
  position: absolute;
  top: 50%;
  left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 45px;
  height: 45px;
  margin-top: -22.5px;
  color: #fff;
  font-size: 26px;
  background: #4ab9ff;
  border-radius: 50%;
  content: counter(number);
  counter-increment: number;
}

.p-yearendCase {
  margin-bottom: 80px;
}
.p-yearendCase__ttl {
  margin-bottom: 1em;
}
.p-yearendCase__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .p-yearendCase__inner {
    display: block;
    padding: 40px 13px;
  }
}
.p-yearendCase__fig {
  width: 221px;
}
@media screen and (max-width: 768px) {
  .p-yearendCase__fig {
    width: 110px;
    margin: 0 auto 20px;
  }
}
.p-yearendCase__cnt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .p-yearendCase__cnt {
    margin: 0;
  }
}
.p-yearendCase__subTtl {
  margin-bottom: 0.2em;
}
.p-yearendCase__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -9px;
}
@media screen and (max-width: 768px) {
  .p-yearendCase__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-yearendCase__bnr {
  margin: 0 11px;
}
@media screen and (max-width: 768px) {
  .p-yearendCase__bnr {
    margin: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

.p-yearendMovie {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-yearendMovie {
    margin-bottom: 70px;
  }
}
.p-yearendMovie__ttl {
  margin-bottom: 1.8em;
}
@media screen and (max-width: 768px) {
  .p-yearendMovie__ttl {
    margin-bottom: 0.8em;
  }
}
.p-yearendMovie__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: -50px;
  counter-reset: number;
}
@media screen and (max-width: 768px) {
  .p-yearendMovie__list {
    margin-right: -13px;
    margin-bottom: 0;
    margin-left: -13px;
  }
}
.p-yearendMovie__item {
  width: calc(50% - 32px);
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-yearendMovie__item {
    margin: 0 7px;
  }
}
.p-yearendMovie__txt {
  padding: 0.5em 18px 0;
  line-height: 1.7;
}
.p-yearendMovie__frame {
  position: relative;
  padding-top: 56.25%;
}
.p-yearendMovie__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.p-yearendMovie__player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-yearendPoint {
  margin: 100px 0 80px;
}
@media screen and (max-width: 768px) {
  .p-yearendPoint {
    margin-top: 80px;
  }
}
.p-yearendPoint__ttl {
  margin-bottom: 20px;
  padding: 40px 13px;
}
.p-yearendPoint__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-yearendPoint__inner {
    display: block;
  }
}
.p-yearendPoint__box {
  position: relative;
  width: calc(50% - 10px);
  padding: 90px 40px 40px;
}
@media screen and (max-width: 768px) {
  .p-yearendPoint__box {
    width: 100%;
    padding: 90px 13px 40px;
  }
  .p-yearendPoint__box:first-child {
    margin-bottom: 20px;
  }
}
.p-yearendPoint__boxTtl {
  position: absolute;
  top: 20px;
  right: 40px;
  left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.4em 0;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-yearendPoint__boxTtl {
    right: 13px;
    left: 13px;
  }
}
.p-yearendPoint__boxTtl img {
  margin-right: 5px;
}
.p-yearendPoint__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  counter-reset: number;
}
.p-yearendPoint__item:not(:last-child) {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .p-yearendPoint__item:not(:last-child) {
    margin-bottom: 40px;
  }
}
.p-yearendPoint__itemTtl {
  position: relative;
  margin-bottom: 0.5em;
  padding-left: 35px;
  color: #004672;
  font-size: 16px;
}
.p-yearendPoint__itemTtl::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 26px;
  height: 26px;
  margin-top: -13px;
  color: #fff;
  font-size: 16px;
  background: #4ab9ff;
  border-radius: 50%;
  content: counter(number);
  counter-increment: number;
}
.p-yearendPoint__img {
  float: left;
  width: 122px;
}
@media screen and (max-width: 768px) {
  .p-yearendPoint__img {
    margin-right: 20px;
  }
}
.p-yearendPoint__txt {
  padding-left: 140px;
}
@media screen and (max-width: 768px) {
  .p-yearendPoint__txt {
    padding-left: 0;
  }
}

.p-yearendReason {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-yearendReason {
    margin-bottom: 80px;
  }
}
.p-yearendReason__ttl {
  margin-bottom: 1.7em;
}
.p-yearendReason__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  counter-reset: number;
}
@media screen and (max-width: 768px) {
  .p-yearendReason__list {
    display: block;
  }
}
.p-yearendReason__item {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 85px 30px 40px;
}
.p-yearendReason__item:not(:last-child) {
  margin-right: 16px;
}
@media screen and (max-width: 768px) {
  .p-yearendReason__item:not(:last-child) {
    margin: 0 0 20px;
  }
}
.p-yearendReason__item::before {
  position: absolute;
  top: 25px;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 52px;
  height: 52px;
  margin-left: -26px;
  color: #fff;
  font-weight: bold;
  font-size: 32px;
  background: #4ab9ff;
  border-radius: 50%;
  content: counter(number);
  counter-increment: number;
}
.p-yearendReason__itemImg {
  max-width: 154px;
  margin-bottom: 20px;
}
.p-yearendReason__itemTtl {
  margin-bottom: 0.7em;
}

.p-yearendEasy {
  margin-bottom: 80px;
}
.p-yearendEasy__ttl {
  margin-bottom: 1em;
}
.p-yearendEasy__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .p-yearendEasy__box {
    display: block;
    padding: 40px 13px;
  }
}
.p-yearendEasy__box:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-yearendEasy__box:nth-child(even) .p-yearendEasy__cnt {
  margin-left: 0;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .p-yearendEasy__box:nth-child(even) .p-yearendEasy__cnt {
    margin: 0;
  }
}
.p-yearendEasy__box:not(:last-child) {
  margin-bottom: 40px;
}
.p-yearendEasy__fig {
  width: 250px;
}
.p-yearendEasy__cnt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .p-yearendEasy__cnt {
    margin: 0;
  }
}
.p-yearendEasy__itemTtl {
  margin-bottom: 1.4em;
}
.p-yearendEasy__itemImg {
  display: block;
  max-width: 250px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-yearendEasy__itemTxt {
    margin-top: 1em;
  }
}

/*====================================================================
給与計算アウトソーシング
====================================================================*/
.p-payroll .c-serviceMv {
  background-color: #c4dcff;
}
@media screen and (max-width: 768px) {
  .p-payroll .c-serviceMv {
    background-image: url(../images/service/payroll/mv_bg.png);
  }
}
.p-payroll .c-serviceMv__ttl::after {
  top: calc(100% - 50px);
  background-image: url(../images/service/payroll/mv_img.png);
}
@media screen and (max-width: 768px) {
  .p-payroll .c-serviceMv__ttl::after {
    top: calc(100% - 40px);
  }
}
.p-payroll__ttl {
  margin-bottom: 1.5em;
  padding: 0 26px;
}
@media screen and (max-width: 768px) {
  .p-payroll__ttl {
    margin-bottom: 2em;
  }
}
.p-payroll__container {
  background: url(../images/service/payroll/bg_01.png) no-repeat top 30px center/contain;
}

.p-payrollLead {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-payrollLead {
    margin-bottom: 80px;
  }
}
.p-payrollLead__pic {
  display: block;
  max-width: 840px;
  margin: 0 auto 60px;
  text-align: center;
}
.p-payrollLead__img {
  width: 100%;
}
.p-payrollLead__txt {
  padding: 20px;
  line-height: 1.4;
  border-radius: 10px;
}

.p-payrollMovie {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-payrollMovie {
    margin-bottom: 80px;
  }
}
.p-payrollMovie__ttl {
  margin-bottom: 1.8em;
}
@media screen and (max-width: 768px) {
  .p-payrollMovie__ttl {
    margin-bottom: 0.8em;
  }
}
.p-payrollMovie__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: -50px;
  counter-reset: number;
}
@media screen and (max-width: 768px) {
  .p-payrollMovie__list {
    margin-right: -13px;
    margin-left: -13px;
  }
}
.p-payrollMovie__item {
  width: calc(50% - 32px);
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-payrollMovie__item {
    margin: 0 7px;
  }
}
.p-payrollMovie__txt {
  padding: 0.5em 18px 0;
  line-height: 1.7;
}
.p-payrollMovie__frame {
  position: relative;
  padding-top: 56.25%;
}
.p-payrollMovie__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.p-payrollMovie__player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-payrollReason {
  margin-bottom: 50px;
}
.p-payrollReason__ttl {
  margin-bottom: 2em;
}
.p-payrollReason__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  counter-reset: number;
}
@media screen and (max-width: 768px) {
  .p-payrollReason__list {
    display: block;
  }
}
.p-payrollReason__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px 20px 30px;
}
.p-payrollReason__item:not(:last-child) {
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  .p-payrollReason__item:not(:last-child) {
    margin: 0 0 20px;
  }
}
.p-payrollReason__itemTtl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  margin-bottom: 20px;
  border-radius: 10px;
}
.p-payrollReason__itemTtl span {
  position: relative;
  display: inline-block;
  padding-left: 45px;
}
.p-payrollReason__itemTtl span::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: -17px;
  color: #fff;
  font-size: 20px;
  background: #4ab9ff;
  border-radius: 50%;
  content: counter(number);
  counter-increment: number;
}
.p-payrollReason__itemSubTtl {
  margin-bottom: 0.5em;
}
.p-payrollReason__itemImg {
  display: block;
  max-width: 132px;
  margin: 0 auto 20px;
}

.p-payrollPoint {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-payrollPoint {
    margin-bottom: 60px;
  }
}
.p-payrollPoint__list {
  counter-reset: number;
}
.p-payrollPoint__box {
  padding: 15px 40px 40px;
}
@media screen and (max-width: 768px) {
  .p-payrollPoint__box {
    padding: 10px 13px 40px;
  }
}
.p-payrollPoint__box:not(:last-child) {
  margin-bottom: 40px;
}
.p-payrollPoint__boxTtl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  margin-bottom: 20px;
  border-radius: 10px;
}
.p-payrollPoint__boxTtl span {
  position: relative;
  display: inline-block;
  padding-left: 45px;
}
.p-payrollPoint__boxTtl span::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: -17px;
  color: #fff;
  font-size: 20px;
  background: #4ab9ff;
  border-radius: 50%;
  content: counter(number);
  counter-increment: number;
}
.p-payrollPoint__boxSubTtl {
  margin-bottom: 1.5em;
}

.p-payrollPoint1__img {
  width: 100%;
  max-width: 788px;
}

.p-payrollPoint2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-payrollPoint2 {
    display: block;
  }
}
.p-payrollPoint2__img:first-child {
  width: 41%;
}
@media screen and (max-width: 768px) {
  .p-payrollPoint2__img:first-child {
    width: 100%;
    margin-bottom: 20px;
  }
}
.p-payrollPoint2__img:last-child {
  width: 56%;
}
@media screen and (max-width: 768px) {
  .p-payrollPoint2__img:last-child {
    width: 100%;
  }
}

.p-payrollPoint3__box {
  border: 4px solid #ccc;
  border-radius: 10px;
}
.p-payrollPoint3__box:last-child {
  position: relative;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-payrollPoint3__box:last-child {
    margin-top: 10px;
  }
}
.p-payrollPoint3__box:last-child::before {
  position: absolute;
  top: -45px;
  left: 50%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 52px;
  height: 52px;
  margin-left: -26px;
  color: #fff;
  font-size: 30px;
  background: #ccc;
  border-radius: 50%;
  content: "+";
}
@media screen and (max-width: 768px) {
  .p-payrollPoint3__box:last-child::before {
    top: -24px;
    width: 28px;
    height: 28px;
    margin-left: -14px;
    font-size: 16px;
  }
}
.p-payrollPoint3__boxTtl {
  padding: 0.5em 0;
  border-radius: 5px 5px 0 0;
}
.p-payrollPoint3__fig {
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .p-payrollPoint3__fig {
    margin-bottom: 40px;
  }
}
.p-payrollPoint3__img {
  width: 100%;
  max-width: 850px;
}
.p-payrollPoint3__inner {
  padding: 16px;
}
@media screen and (max-width: 768px) {
  .p-payrollPoint3__inner {
    padding: 10px;
  }
}
.p-payrollPoint3__box--basic .p-payrollPoint3__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-payrollPoint3__box--basic .p-payrollPoint3__list {
    display: block;
  }
}
.p-payrollPoint3__box--basic .p-payrollPoint3__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0.6em 0;
  border: 4px solid #a9d6ff;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-payrollPoint3__box--basic .p-payrollPoint3__item {
    padding: 0;
    border-width: 3px;
  }
}
.p-payrollPoint3__box--basic .p-payrollPoint3__item:not(:last-child) {
  margin-right: 8px;
}
@media screen and (max-width: 768px) {
  .p-payrollPoint3__box--basic .p-payrollPoint3__item:not(:last-child) {
    margin: 0 0 4px;
  }
}
.p-payrollPoint3__box--option .p-payrollPoint3__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 4px solid #a9d6ff;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-payrollPoint3__box--option .p-payrollPoint3__list {
    display: block;
  }
}
.p-payrollPoint3__box--option .p-payrollPoint3__list:not(:last-child) {
  margin-bottom: 10px;
}
.p-payrollPoint3__box--option .p-payrollPoint3__listTtl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 155px;
  line-height: 1.4;
  border-right: 4px solid #a9d6ff;
  border-radius: 5px 0 0 5px;
}
@media screen and (max-width: 768px) {
  .p-payrollPoint3__box--option .p-payrollPoint3__listTtl {
    display: block;
    width: 100%;
    padding: 0.5em 0;
    border: none;
    border-radius: 5px 5px 0 0;
  }
}
.p-payrollPoint3__box--option .p-payrollPoint3__listInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 24px 10px;
}
@media screen and (max-width: 768px) {
  .p-payrollPoint3__box--option .p-payrollPoint3__listInner {
    display: block;
    padding: 10px 10px 6px;
  }
}
.p-payrollPoint3__box--option .p-payrollPoint3__listItem {
  width: calc(33.3% - 4px);
  margin-bottom: 10px;
  padding: 0.2em 0;
  border: 3px solid #ccc;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-payrollPoint3__box--option .p-payrollPoint3__listItem {
    width: 100%;
    margin-bottom: 4px;
    padding: 0;
  }
}

.p-payrollHelp {
  margin: 100px 0 80px;
}
@media screen and (max-width: 768px) {
  .p-payrollHelp {
    margin-top: 60px;
  }
}
.p-payrollHelp__inner {
  padding: 40px 50px;
}
@media screen and (max-width: 768px) {
  .p-payrollHelp__inner {
    padding: 40px 13px;
  }
}
.p-payrollHelp__ttl {
  margin-bottom: 1.7em;
}
.p-payrollHelp__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: -40px;
}
@media screen and (max-width: 768px) {
  .p-payrollHelp__list {
    display: block;
  }
}
.p-payrollHelp__item {
  position: relative;
  width: calc(50% - 20px);
  min-height: 122px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-payrollHelp__item {
    width: 100%;
  }
}
.p-payrollHelp__itemImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 122px;
}
@media screen and (max-width: 768px) {
  .p-payrollHelp__itemImg {
    position: static;
    float: left;
  }
}
.p-payrollHelp__itemTtl {
  margin-bottom: 0.5em;
  padding-left: 145px;
}
@media screen and (max-width: 768px) {
  .p-payrollHelp__itemTtl {
    padding-left: 0;
  }
}
.p-payrollHelp__itemTxt {
  padding-left: 145px;
}

.p-payrollCase {
  margin-bottom: 100px;
}
.p-payrollCase__ttl {
  margin-bottom: 0.7em;
}
.p-payrollCase__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 40px;
}
@media screen and (max-width: 768px) {
  .p-payrollCase__inner {
    display: block;
    padding: 40px 13px;
  }
}
.p-payrollCase__img {
  width: 100%;
  max-width: 221px;
}
@media screen and (max-width: 768px) {
  .p-payrollCase__img {
    display: block;
    max-width: 110px;
    margin: 0 auto 20px;
  }
}
.p-payrollCase__tbl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  .p-payrollCase__tbl {
    display: block;
    margin: 0;
  }
}
.p-payrollCase__tbl table {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  table-layout: fixed;
}
.p-payrollCase__tbl table:first-child {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .p-payrollCase__tbl table:first-child {
    margin: 0 0 -1px;
  }
}
.p-payrollCase__tbl th,
.p-payrollCase__tbl td {
  padding: 0.6em 1.5em;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  .p-payrollCase__tbl th,
  .p-payrollCase__tbl td {
    padding: 0.4em 1em;
  }
}
.p-payrollCase__tbl th {
  width: 12em;
  text-align: left;
  background: #dbf1ff;
}
.p-payrollCase__tbl td {
  font-weight: bold;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-payrollCase__tbl td {
    width: 9em;
  }
}

/*====================================================================
資料ダウンロード
====================================================================*/
.p-download__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 991px) {
  .p-download__inner {
    display: block;
  }
}
.p-download .c-form {
  width: 490px;
}
@media screen and (max-width: 991px) {
  .p-download .c-form {
    width: 100%;
  }
}
.p-download .c-form__inner {
  max-width: 800px;
  margin: 0 auto;
}
.p-download .c-form__inputCnt {
  overflow: hidden;
}
.p-download .c-form__inputCnt input {
  width: 100%;
}
.p-download .c-form__navItem {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  height: 60px;
  max-width: 277px;
}
.p-download .c-form__navItem span:first-child {
  margin: 0;
}
.p-download .c-form__demoNum {
  margin-top: 1.8em;
  display: none;
}
.p-download .c-form__demoNum small {
  max-width: calc(100% - 6em);
}
.p-download .c-form__term {
  margin-top: 40px;
}
.p-download .c-form__term .c-form__checkbox {
  max-width: 300px;
  margin: 0 auto;
}

.p-downloadInfo {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 20px;
}
@media screen and (max-width: 991px) {
  .p-downloadInfo {
    margin: 0 0 60px;
  }
}
.p-downloadInfo__ttl {
  margin-bottom: 1.2em;
  font-size: 24px;
  text-align: left;
}
@media screen and (max-width: 991px) {
  .p-downloadInfo__ttl {
    font-size: 20px;
    margin-top: 1em;
  }
}
.p-downloadInfo__inner {
  padding: 20px 30px;
}
@media screen and (max-width: 991px) {
  .p-downloadInfo__inner {
    padding: 40px 13px;
  }
}
.p-downloadInfo__lead {
  line-height: 1.5;
}
.p-downloadInfo__box {
  margin-top: 40px;
}
@media screen and (max-width: 991px) {
  .p-downloadInfo__box {
    margin-top: 30px;
  }
}
.p-downloadInfo__subTtl {
  margin-bottom: 0.2em;
  font-size: 20px;
}
.p-downloadInfo__list {
  margin-bottom: 1.5em;
  padding-left: 1.5em;
  line-height: 1.4;
  list-style: disc outside;
}
.p-downloadInfo__thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: -15px;
}
.p-downloadInfo__thumbImg {
  width: calc(50% - 10px);
  margin-bottom: 15px;
}

/*====================================================================
お問い合わせ
====================================================================*/
.p-contact .c-form__inner {
  max-width: 800px;
  margin: 0 auto;
}
.p-contact .c-form__inputCnt input {
  width: 100%;
}
.p-contact .c-form__inputCnt--md input {
  max-width: 470px;
}
@media screen and (max-width: 768px) {
  .p-contact .c-form__inputCnt--md input {
    max-width: 100%;
  }
}
.p-contact .c-form__inputCnt--sm input {
  max-width: 260px;
}
@media screen and (max-width: 768px) {
  .p-contact .c-form__inputCnt--sm input {
    max-width: 100%;
  }
}
.p-contact .c-form__inputCnt .c-form__checkbox {
  margin-bottom: 20px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.p-contact .c-form__inputCnt .c-form__checkbox__text {
  margin-top: 12px;
}
.p-contact .c-form__inputCnt .c-form__checkbox__text .note {
  font-size: 12px;
}
.p-contact .c-form__inputCnt .c-form__checkbox__text input[type=text] {
  margin-top: 8px;
}
.p-contact .c-form__term {
  max-width: 470px;
  margin: 40px auto 0;
}
.p-contact .c-form__term .c-form__checkbox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-contact .c-form__termTtl {
  text-align: center;
}

/*====================================================================
投稿詳細（お知らせ）
====================================================================*/
.p-info__inner {
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .p-info__inner {
    padding: 40px 13px;
  }
}
.p-info__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .p-info__meta {
    margin-bottom: 10px;
  }
}
.p-info__cat {
  min-width: 120px;
  margin-left: 12px;
  padding: 0 1em;
  color: #fff;
  font-weight: bold;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
  border-radius: 100px;
}
.p-info__ttl {
  margin-bottom: 2em;
  color: #004672;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .p-info__ttl {
    margin-bottom: 1em;
  }
}
.p-info__thumb {
  margin-bottom: 40px;
}
.p-info__thumb img {
  width: 100%;
}
.p-info__content {
  line-height: 1.7;
}
.p-info__content p {
  margin-bottom: 2em;
}
.p-info__content h2,
.p-info__content h3 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
.p-info__content h2 {
  font-size: 24px;
  text-align: left;
}
.p-info__content h3 {
  font-size: 18px;
}
.p-info__content a:link {
  color: #0000EE;
  text-decoration: underline;
}
.p-info__content a:visited {
  color: #551A8B;
  text-decoration: underline;
}
.p-info__content a:active {
  color: #FF0000;
  text-decoration: underline;
}
.p-info__back {
  margin: 40px auto 0;
}

/*====================================================================
投稿一覧（お知らせ）
====================================================================*/
.p-infoList__cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
  margin-bottom: 20px;
  padding: 7px;
  -webkit-box-flex: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
@media screen and (max-width: 768px) {
  .p-infoList__cat {
    display: block;
    padding-bottom: 0;
  }
}
.p-infoList__catLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 42px;
  font-weight: bold;
  font-size: 18px;
  border-radius: 6px;
  cursor: pointer;
}
.p-infoList__catLink:not(:last-child) {
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .p-infoList__catLink {
    display: none;
  }
}
.p-infoList__catLink.is-active, .p-infoList__catLink:hover {
  background: #e6e6e6;
}
.p-infoList__toggleBtn {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-infoList__toggleBtn {
    position: relative;
    display: block;
    width: 100%;
    height: 36px;
    font-size: 0;
  }
  .p-infoList__toggleBtn::before {
    position: absolute;
    top: 9px;
    left: 50%;
    width: 12px;
    height: 12px;
    margin-left: -6px;
    border-right: 2px solid #4ab9ff;
    border-bottom: 2px solid #4ab9ff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    content: "";
  }
  .p-infoList__toggleBtn.is-open::before {
    top: 15px;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
}
.p-infoList__inner {
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .p-infoList__inner {
    padding: 40px 13px;
  }
}
.p-infoList .c-pagination {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-infoList .c-pagination {
    margin-top: 20px;
  }
}

/*====================================================================
投稿詳細（導入事例）
====================================================================*/
.p-case {
  padding-top: 130px;
  background: url(../images/case/ttl_bg.png) no-repeat left top;
}
@media screen and (max-width: 768px) {
  .p-case {
    padding-top: 110px;
    background-size: 90%;
  }
}
.p-case__ttl {
  margin-bottom: 2.2em;
  color: #004672;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .p-case__ttl {
    font-size: 24px;
  }
  .p-case__ttl br {
    display: none;
  }
}
.p-case__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-case__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
            flex-flow: column-reverse;
  }
}
.p-case__lead {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 20px;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .p-case__lead {
    margin: 20px 0 0;
    padding: 40px 13px;
  }
}
.p-case__thumb {
  margin-bottom: 10px;
}
.p-case__thumb img {
  width: 100%;
}
.p-case__leadTtl {
  margin-bottom: 10px;
  padding: 20px;
  font-size: 18px;
  text-align: center;
  background: #dbf1ff;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-case__leadTtl {
    padding: 10px;
    font-size: 16px;
    text-align: left;
  }
  .p-case__leadTtl br {
    display: none;
  }
}
.p-case__leadTxt {
  line-height: 1.7;
}
.p-case__info {
  width: 290px;
  padding: 30px 30px;
}
@media screen and (max-width: 768px) {
  .p-case__info {
    width: 100%;
    padding: 30px 13px;
    text-align: center;
  }
}
.p-case__logo {
  width: 120px;
  margin-bottom: 10px;
}
.p-case__companyName {
  color: inherit;
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-case__companyName {
    text-align: center;
  }
}
.p-case__industry {
  margin-bottom: 2.5em;
  color: #888;
}
.p-case__service {
  display: inline-block;
  padding: 0 1.5em;
  font-size: 13px;
  line-height: 1.5;
  background: #dbf1ff;
  border-radius: 1000px;
}
.p-case__infoList {
  margin-top: 1.5em;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .p-case__infoList {
    text-align: left;
  }
}
.p-case__infoSubTtl {
  font-weight: bold;
}
.p-case__infoSubTtl:not(:first-of-type) {
  margin-top: 0.5em;
}
.p-case__sectionList {
  padding: 60px 40px;
}
@media screen and (max-width: 768px) {
  .p-case__sectionList {
    padding: 40px 13px;
  }
}
.p-case__section:not(:first-child) {
  margin-top: 80px;
}
.p-case__sectionTtl {
  margin-bottom: 1em;
  font-size: 20px;
  text-align: left;
}
.p-case__sectionImg {
  float: right;
  width: 300px;
  margin: 0 0 30px 40px;
}
@media screen and (max-width: 768px) {
  .p-case__sectionImg {
    display: block;
    float: none;
    width: 100%;
    margin: 0 0 30px;
  }
}
.p-case__speaker {
  font-weight: bold;
  line-height: 1.7;
}
.p-case__speaker:not(:first-child) {
  margin-top: 1em;
}
.p-case__speakerTxt {
  line-height: 1.7;
}
.p-case__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  padding: 20px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .p-case__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    padding: 20px 13px;
  }
}
.p-case__navItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 50%;
  padding: 0 10px;
  color: #4ab9ff;
}
@media screen and (max-width: 768px) {
  .p-case__navItem {
    max-width: 100%;
  }
}
.p-case__navItem a {
  position: relative;
  color: #4ab9ff;
  font-weight: bold;
  font-size: 18px;
  text-decoration: underline;
}
@media screen and (min-width: 1200px) {
  .p-case__navItem a {
    cursor: pointer;
    -webkit-transition: 0.3s opacity;
    transition: 0.3s opacity;
  }
  .p-case__navItem a:hover {
    opacity: 0.5;
  }
  .p-case__navItem a:hover img {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .p-case__navItem a {
    font-size: 14px;
  }
}
.p-case__navItem a::before {
  position: absolute;
  top: 0.7em;
  width: 0.4em;
  height: 0.4em;
  border-top: 1px #4ab9ff solid;
  border-left: 1px #4ab9ff solid;
  content: "";
}
@media screen and (max-width: 768px) {
  .p-case__navItem--prev {
    margin-right: auto;
  }
}
.p-case__navItem--prev a {
  padding-left: 20px;
}
.p-case__navItem--prev a::before {
  left: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .p-case__navItem--next {
    margin-left: auto;
  }
}
.p-case__navItem--next a {
  padding-right: 20px;
}
.p-case__navItem--next a::before {
  right: 0;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.p-case__back {
  margin: 40px auto 0;
}

/*====================================================================
投稿一覧（導入事例）
====================================================================*/
.p-caseList .c-pageTtl {
  background-image: url(../images/case_list/ttl_bg.png);
}
.p-caseList__box {
  display: block;
  padding: 40px;
}
@media screen and (min-width: 1200px) {
  .p-caseList__box {
    cursor: pointer;
    -webkit-transition: 0.3s opacity;
    transition: 0.3s opacity;
  }
  .p-caseList__box:hover {
    opacity: 0.5;
  }
  .p-caseList__box:hover img {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .p-caseList__box {
    display: block;
    padding: 40px 13px;
  }
}
.p-caseList__box:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-caseList__box:not(:last-child) {
    margin-bottom: 40px;
  }
}
.p-caseList__thumb {
  float: left;
  width: 320px;
}
.p-caseList__thumb img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-caseList__thumb {
    float: none;
    width: 100%;
    margin-bottom: 10px;
  }
}
.p-caseList__inner {
  float: right;
  width: calc(100% - 320px);
  padding-left: 60px;
}
@media screen and (max-width: 768px) {
  .p-caseList__inner {
    float: none;
    width: 100%;
    padding-left: 0;
  }
}
.p-caseList__ttl {
  float: right;
  width: calc(100% - 320px);
  margin-bottom: 1em;
  padding-left: 60px;
  font-size: 24px;
  line-height: 1.2;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-caseList__ttl {
    float: none;
    width: 100%;
    padding-left: 0;
    font-size: 20px;
  }
}
.p-caseList__ttl br {
  display: none;
}
.p-caseList__companyName {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
}
.p-caseList__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5px;
}
.p-caseList__service {
  padding: 0 1.5em;
  font-weight: bold;
  font-size: 13px;
  line-height: 1.5;
  background: #dbf1ff;
  border-radius: 1000px;
}
.p-caseList__industry {
  margin-left: 1em;
}
.p-caseList__lead {
  line-height: 1.7;
}
.p-caseList__lead br {
  display: none;
}
/*# sourceMappingURL=style.css.map */