@charset "UTF-8";
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/*****************************************************
  Foundation
*****************************************************/
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
* 1. Set default font family to sans-serif.
* 2. Prevent iOS text size adjust after orientation change, without disabling
*    user zoom.
*/
html {
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  font-family: sans-serif;
  /* 2 */
}

/**
* Remove default margin.
*/
body {
  margin: 0;
}

/* HTML5 display definitions
========================================================================== */
/**
* Correct `block` display not defined for any HTML5 element in IE 8/9.
* Correct `block` display not defined for `details` or `summary` in IE 10/11
* and Firefox.
* Correct `block` display not defined for `main` in IE 11.
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
* 1. Correct `inline-block` display not defined in IE 8/9.
* 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
*/
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
* Prevent modern browsers from displaying `audio` without controls.
* Remove excess height in iOS 5 devices.
*/
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
* Address `[hidden]` styling not present in IE 8/9/10.
* Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
*/
[hidden],
template {
  display: none;
}

/* Links
========================================================================== */
/**
* Remove the gray background color from active links in IE 10.
*/
a {
  background-color: transparent;
}

/**
* Improve readability when focused and also mouse hovered in all browsers.
*/
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
========================================================================== */
/**
* Address styling not present in IE 8/9/10/11, Safari, and Chrome.
*/
abbr[title] {
  border-bottom: 1px dotted;
}

/**
* Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
*/
b,
strong {
  font-weight: bold;
}

/**
* Address styling not present in Safari and Chrome.
*/
dfn {
  font-style: italic;
}

/**
* Address variable `h1` font-size and margin within `section` and `article`
* contexts in Firefox 4+, Safari, and Chrome.
*/
h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

/**
* Address styling not present in IE 8/9.
*/
mark {
  background: #ff0;
  color: #000;
}

/**
* Address inconsistent and variable font size in all browsers.
*/
small {
  font-size: 80%;
}

/**
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
*/
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
========================================================================== */
/**
* Remove border when inside `a` element in IE 8/9/10.
*/
img {
  border: 0;
}

/**
* Correct overflow not hidden in IE 9/10/11.
*/
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
========================================================================== */
/**
* Address margin not present in IE 8/9 and Safari.
*/
figure {
  margin: 0;
}

/**
* Address differences between Firefox and other browsers.
*/
hr {
  box-sizing: content-box;
  height: 0;
}

/**
* Contain overflow in all browsers.
*/
pre {
  overflow: auto;
}

/**
* Address odd `em`-unit font size rendering in all browsers.
*/
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
========================================================================== */
/**
* Known limitation: by default, Chrome and Safari on OS X allow very limited
* styling of `select`, unless a `border` property is set.
*/
/**
* 1. Correct color not being inherited.
*    Known issue: affects color of disabled elements.
* 2. Correct font properties not being inherited.
* 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
*/
button,
input,
optgroup,
select,
textarea {
  /* 2 */
  margin: 0;
  color: inherit;
  /* 1 */
  font: inherit;
  /* 3 */
}

/**
* Address `overflow` set to `hidden` in IE 8/9/10/11.
*/
button {
  overflow: visible;
}

/**
* Address inconsistent `text-transform` inheritance for `button` and `select`.
* All other form control elements do not inherit `text-transform` values.
* Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
* Correct `select` style inheritance in Firefox.
*/
button,
select {
  text-transform: none;
}

/**
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
*    and `video` controls.
* 2. Correct inability to style clickable `input` types in iOS.
* 3. Improve usability and consistency of cursor style between image-type
*    `input` and others.
*/
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
* Re-set default cursor for disabled elements.
*/
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
* Remove inner padding and border in Firefox 4+.
*/
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/**
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
* the UA stylesheet.
*/
input {
  line-height: normal;
}

/**
* It's recommended that you don't attempt to style these elements.
* Firefox's implementation doesn't respect box-sizing, padding, or width.
*
* 1. Address box sizing set to `content-box` in IE 8/9/10.
* 2. Remove excess padding in IE 8/9/10.
*/
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
* Fix the cursor style for Chrome's increment/decrement buttons. For certain
* `font-size` values of the `input`, it causes the cursor style of the
* decrement button to change from `default` to `text`.
*/
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
* 1. Address `appearance` set to `searchfield` in Safari and Chrome.
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome
*    (include `-moz` to future-proof).
*/
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 2 */
  box-sizing: content-box;
}

/**
* Remove inner padding and search cancel button in Safari and Chrome on OS X.
* Safari (but not Chrome) clips the cancel button when the search input has
* padding (and `textfield` appearance).
*/
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
* Define consistent border, margin, and padding.
*/
fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
  border: 1px solid #c0c0c0;
}

/**
* 1. Correct `color` not being inherited in IE 8/9/10/11.
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
*/
legend {
  /* 1 */
  padding: 0;
  border: 0;
  /* 2 */
}

/**
* Remove default vertical scrollbar in IE 8/9/10/11.
*/
textarea {
  overflow: auto;
}

/**
* Don't inherit the `font-weight` (applied by a rule above).
* NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
*/
optgroup {
  font-weight: bold;
}

/* Tables
========================================================================== */
/**
* Remove most spacing between table cells.
*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

html {
  overflow-x: hidden;
  font-size: 62.5%;
}

html.-open {
  /* overflow: hidden; ページ内リンク制御のため解除*/
}

html.-open::after {
  display: block;
  z-index: 2;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: transparent;
  content: '';
  opacity: .7;
}

body {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
  word-wrap: break-word;
  min-width: 100%;
  overflow-x: hidden;
  background: #fff;
  color: #3d3d3d;
  font: 400 1.6em/1.8 "Noto Sans JP", Meiryo, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Hiragino Kaku Gothic ProN", sans-serif;
  word-break: break-word;
  line-height:1.25;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

* {
  box-sizing: border-box;
}

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

em {
  font-style: normal;
}

p {
  margin: 0;
}


img {
  -webkit-touch-callout: none;
  max-width: 100%;
  height: auto;
  vertical-align: top;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  transition: 0.1s linear;
}

select {
  white-space: nowrap;
}

a {
  color: #0068b7;
  text-decoration: none;
  opacity: 1;
  transition: 0.1s linear;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  body {
    font: 400 1.6em/1.8 "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Hiragino Kaku Gothic ProN", sans-serif;
    line-height: 1.5;
  }
  a:hover {
    text-decoration: none;
  }
}

/*****************************************************
  Layout
*****************************************************/
/* =================================================
  Frame
================================================= */
.l-main {
  position: relative;
  margin:  0;
  padding: 80px 30px 0;
}

.l-container {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .l-main {
    margin: 50px 0 0;
    padding: 0 10px;
  }
}

/* =================================================
  Header
================================================= */
.l-header {
  z-index: 3;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0 15px;
  background: #fff;
  transition: all .3s ease;
}

.l-header_inner {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1080px;
  height: 80px;
  margin: 0 auto;
  padding: 20px 0;
  transition: all .3s ease;
}

.l-header_logo {
  margin: 0;
}

.l-header_logo a {
  display: flex;
  align-items: center;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  color: #1a1a1a;
  font-weight: 700;
}

.l-header_logo a:hover {
  text-decoration: none;
  opacity: .7;
}

.l-header_logo_image {
  display: block;
  /*height: 40px;*/
  height: 29px;
}


.l-header_toggle {
  display: none;
}

body.-open .l-header {
  box-shadow: none;
}

.l-header.-compact {
  box-shadow:0px 2px 3px -1px #e4e4e4;
}

@media (max-width: 767px) {
  .l-header {
    height: 50px;
    padding: 0;
  }
  .l-header_inner {
    display: block;
    height: 50px;
    padding: 10px;
  }

  .l-header_logo {
    margin: 0;
    width:48%;
    max-width:200px;
  }

  .l-header_logo_image {
    height: 6vw;
    max-height: 40px;
  }
  .l-header_toggle {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    padding: 28px 0 0;
    background: #c6c7cb;
    color: #3d3d3d;
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: -1px;
    text-align: center;
    border-radius: 4px;
  }
  .l-header_toggle::after {
    display: inline;
  }
  .l-header_toggle.-open::after {
  
  }
  .l-header_toggle span {
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    width: 16px;
    height: 2px;
    margin: 0 auto;
    background: #3d3d3d;
    transition: all .3s ease-out;
  }
  .l-header_toggle span:nth-child(1) {
    top: 9px;
  }
  .l-header_toggle span:nth-child(2) {
    top: 15px;
  }
  .l-header_toggle span:nth-child(3) {
    top: 21px;
  }
  .l-header_toggle.-open span {
    width: 20px;
  }
  .l-header_toggle.-open span:nth-child(1) {
    top: 15px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .l-header_toggle.-open span:nth-child(2) {
    opacity: 0;
  }
  .l-header_toggle.-open span:nth-child(3) {
    top: 15px;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  .l-header_toggle.-open + .l-gnav {
    -webkit-overflow-scrolling: touch;
    visibility: visible;
    overflow: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  .l-header_toggle.-open + .l-gnav a {
    visibility: visible;
  }
}

@media (min-width: 769px) {
  .l-nav .l-header_utility_bottom, .l-nav .l-header_link {
    display: none;
  }
}

/* =================================================
  Footer
================================================= */
.l-footer {
  padding: 0 30px;
  background:#f2f2f2;
}

.l-footer_inner {
  max-width:1080px;
  margin:0 auto;
  padding:110px 20px 20px 20px ;
  text-align: center;
}

.l-footer_logo {
  max-width:530px;
  margin:20px auto ;
}


.l-footer_pagetop {
  z-index: 2;
  position: fixed;
  bottom: 40px;
  left: calc((100vw - 1080px)/2 + 1080px + 20px);
  width: 50px;
  height: 50px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.3);
  transition: .3s linear;
}

.l-footer_pagetop:hover {
  background: rgba(0, 0, 0, 0.7);
}

.l-footer_pagetop a {
  display: block;
  position: relative;
  height: 100%;
  overflow: hidden;
  text-indent: -100vh;
  white-space: nowrap;
}

.l-footer_pagetop a::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  margin-top: 3px;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
}

.l-footer_copyright {
  margin: 15px 0 0;
  font-size: 1.3rem;
  display: block;
}


@media (max-width: 1120px) {
  .l-footer_pagetop {
    right: 20px;
    left: auto;
  }
}

@media (max-width: 767px) {
  .l-footer {
    padding: 0 10px 0;
    font-size: 1.2rem;
    line-height: 1.5;
  }
  
  .l-footer_inner {
    max-width:100%;
    margin:0 auto;
    padding:25px 10px 5px 10px ;
    text-align: center;
  }

  
  .l-footer_pagetop {
    right: 10px;
    bottom: 40px;
    left: auto;
    width:30px;
    height:30px;
  }
  
  .l-footer_logo {
    max-width:75%;
    margin:0 auto 15px auto ;
  }

  .l-footer_copyright {
    margin: 15px 0px 0 0;
    font-size: 1rem;
    display: block;
  }
}

/* =================================================
  .l-nav
================================================= */
.l-nav {
  margin: 0 -30px;
  padding: 0 30px;
}

.l-nav:hover {
  color: #007fe0;
}

.l-nav_list {
  display: table;
}

.l-nav_listItem {
  display: table-cell;
  padding: 0 0 0 2em;
  font-size: 2.4rem;
  font-weight: 700;
}

.l-nav_listItem a {
  color: #3d3d3d;
}

@media (max-width: 1160px) {
  .l-nav_listItem {
    font-size: 2vw;
  }

} /* end case-1160 */

@media (min-width: 769px) {

  .l-nav.-show {
    display: block;
  }
}

@media (max-width: 767px) {
  .l-nav {
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    display: block;
    height: 100vh;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    background: transparent;
    position: absolute;
    top:0px;
    right:-100%;
    width:50%;
    transition: 1s;
  }
  
  .l-nav.-open {
    display: block;
    right:0;
    transition: 1s;
  }
  
  .l-nav_inner {
    height: 100%;
    padding: 50px 15px 50px;
    overflow: auto;
    background: rgba(0,0,0,0.75); 
  }
  .l-nav_list {
    display: block;
  }
  .l-nav_listItem {
    display: block;
    padding: 10px 0;
    font-size: 4vw;
    font-weight: 700;
  }
  .l-nav_listItem a {
    color: #fff; 
    display: block;
  }
  .l-nav_menu {
    display: block;
    padding: 20px 0 0;
  }
}

/* =================================================
  .l-section
================================================= */

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

.u-mr0 {
  margin-right: 0px !important;
}

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

.u-ml0 {
  margin-left: 0px !important;
}

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

.u-mr5 {
  margin-right: 5px !important;
}

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

.u-ml5 {
  margin-left: 5px !important;
}

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

.u-mr10 {
  margin-right: 10px !important;
}

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

.u-ml10 {
  margin-left: 10px !important;
}

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

.u-mr15 {
  margin-right: 15px !important;
}

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

.u-ml15 {
  margin-left: 15px !important;
}

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

.u-mr20 {
  margin-right: 20px !important;
}

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

.u-ml20 {
  margin-left: 20px !important;
}

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

.u-mr25 {
  margin-right: 25px !important;
}

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

.u-ml25 {
  margin-left: 25px !important;
}

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

.u-mr30 {
  margin-right: 30px !important;
}

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

.u-ml30 {
  margin-left: 30px !important;
}

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

.u-mr35 {
  margin-right: 35px !important;
}

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

.u-ml35 {
  margin-left: 35px !important;
}

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

.u-mr40 {
  margin-right: 40px !important;
}

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

.u-ml40 {
  margin-left: 40px !important;
}

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

.u-mr45 {
  margin-right: 45px !important;
}

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

.u-ml45 {
  margin-left: 45px !important;
}

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

.u-mr50 {
  margin-right: 50px !important;
}

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

.u-ml50 {
  margin-left: 50px !important;
}

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

.u-mr55 {
  margin-right: 55px !important;
}

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

.u-ml55 {
  margin-left: 55px !important;
}

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

.u-mr60 {
  margin-right: 60px !important;
}

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

.u-ml60 {
  margin-left: 60px !important;
}

.u-mt65 {
  margin-top: 65px !important;
}

.u-mr65 {
  margin-right: 65px !important;
}

.u-mb65 {
  margin-bottom: 65px !important;
}

.u-ml65 {
  margin-left: 65px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-mr70 {
  margin-right: 70px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-ml70 {
  margin-left: 70px !important;
}

.u-mt75 {
  margin-top: 75px !important;
}

.u-mr75 {
  margin-right: 75px !important;
}

.u-mb75 {
  margin-bottom: 75px !important;
}

.u-ml75 {
  margin-left: 75px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-mr80 {
  margin-right: 80px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-ml80 {
  margin-left: 80px !important;
}

.u-mt85 {
  margin-top: 85px !important;
}

.u-mr85 {
  margin-right: 85px !important;
}

.u-mb85 {
  margin-bottom: 85px !important;
}

.u-ml85 {
  margin-left: 85px !important;
}

.u-mt90 {
  margin-top: 90px !important;
}

.u-mr90 {
  margin-right: 90px !important;
}

.u-mb90 {
  margin-bottom: 90px !important;
}

.u-ml90 {
  margin-left: 90px !important;
}

.u-mt95 {
  margin-top: 95px !important;
}

.u-mr95 {
  margin-right: 95px !important;
}

.u-mb95 {
  margin-bottom: 95px !important;
}

.u-ml95 {
  margin-left: 95px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-mr100 {
  margin-right: 100px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

.u-ml100 {
  margin-left: 100px !important;
}

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

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

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

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

@media (max-width: 767px) {
  .u-mtNormal {
    margin-top: 15px !important;
  }
  .u-mtLarge {
    margin-top: 30px !important;
  }
  .u-mbNormal {
    margin-bottom: 15px !important;
  }
  .u-mbLarge {
    margin-bottom: 30px !important;
  }
}

.u-pt0 {
  padding-top: 0px !important;
}

.u-pr0 {
  padding-right: 0px !important;
}

.u-pb0 {
  padding-bottom: 0px !important;
}

.u-pl0 {
  padding-left: 0px !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-pr5 {
  padding-right: 5px !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-pl5 {
  padding-left: 5px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-pr15 {
  padding-right: 15px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-pl15 {
  padding-left: 15px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-pr25 {
  padding-right: 25px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-pl25 {
  padding-left: 25px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-pr35 {
  padding-right: 35px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-pl35 {
  padding-left: 35px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pr40 {
  padding-right: 40px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-pl40 {
  padding-left: 40px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-pr45 {
  padding-right: 45px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-pl45 {
  padding-left: 45px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pr50 {
  padding-right: 50px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-pl50 {
  padding-left: 50px !important;
}

.u-pt55 {
  padding-top: 55px !important;
}

.u-pr55 {
  padding-right: 55px !important;
}

.u-pb55 {
  padding-bottom: 55px !important;
}

.u-pl55 {
  padding-left: 55px !important;
}

.u-pt60 {
  padding-top: 60px !important;
}

.u-pr60 {
  padding-right: 60px !important;
}

.u-pb60 {
  padding-bottom: 60px !important;
}

.u-pl60 {
  padding-left: 60px !important;
}

.u-pt65 {
  padding-top: 65px !important;
}

.u-pr65 {
  padding-right: 65px !important;
}

.u-pb65 {
  padding-bottom: 65px !important;
}

.u-pl65 {
  padding-left: 65px !important;
}

.u-pt70 {
  padding-top: 70px !important;
}

.u-pr70 {
  padding-right: 70px !important;
}

.u-pb70 {
  padding-bottom: 70px !important;
}

.u-pl70 {
  padding-left: 70px !important;
}

.u-pt75 {
  padding-top: 75px !important;
}

.u-pr75 {
  padding-right: 75px !important;
}

.u-pb75 {
  padding-bottom: 75px !important;
}

.u-pl75 {
  padding-left: 75px !important;
}

.u-pt80 {
  padding-top: 80px !important;
}

.u-pr80 {
  padding-right: 80px !important;
}

.u-pb80 {
  padding-bottom: 80px !important;
}

.u-pl80 {
  padding-left: 80px !important;
}

.u-pt85 {
  padding-top: 85px !important;
}

.u-pr85 {
  padding-right: 85px !important;
}

.u-pb85 {
  padding-bottom: 85px !important;
}

.u-pl85 {
  padding-left: 85px !important;
}

.u-pt90 {
  padding-top: 90px !important;
}

.u-pr90 {
  padding-right: 90px !important;
}

.u-pb90 {
  padding-bottom: 90px !important;
}

.u-pl90 {
  padding-left: 90px !important;
}

.u-pt95 {
  padding-top: 95px !important;
}

.u-pr95 {
  padding-right: 95px !important;
}

.u-pb95 {
  padding-bottom: 95px !important;
}

.u-pl95 {
  padding-left: 95px !important;
}

.u-pt100 {
  padding-top: 100px !important;
}

.u-pr100 {
  padding-right: 100px !important;
}

.u-pb100 {
  padding-bottom: 100px !important;
}

.u-pl100 {
  padding-left: 100px !important;
}

.u-wAuto {
  width: auto !important;
}

.u-w5 {
  width: 5% !important;
}

.u-w10 {
  width: 10% !important;
}

.u-w15 {
  width: 15% !important;
}

.u-w20 {
  width: 20% !important;
}

.u-w25 {
  width: 25% !important;
}

.u-w30 {
  width: 30% !important;
}

.u-w35 {
  width: 35% !important;
}

.u-w40 {
  width: 40% !important;
}

.u-w45 {
  width: 45% !important;
}

.u-w50 {
  width: 50% !important;
}

.u-w55 {
  width: 55% !important;
}

.u-w60 {
  width: 60% !important;
}

.u-w65 {
  width: 65% !important;
}

.u-w70 {
  width: 70% !important;
}

.u-w75 {
  width: 75% !important;
}

.u-w80 {
  width: 80% !important;
}

.u-w85 {
  width: 85% !important;
}

.u-w90 {
  width: 90% !important;
}

.u-w95 {
  width: 95% !important;
}

.u-w100 {
  width: 100% !important;
}

.u-fs11 {
  font-size: 1.1rem !important;
}

.u-fs12 {
  font-size: 1.2rem !important;
}

.u-fs13 {
  font-size: 1.3rem !important;
}

.u-fs14 {
  font-size: 1.4rem !important;
}

.u-fs15 {
  font-size: 1.5rem !important;
}

.u-fs16 {
  font-size: 1.6rem !important;
}

.u-fs17 {
  font-size: 1.7rem !important;
}

.u-fs18 {
  font-size: 1.8rem !important;
}

.u-fs19 {
  font-size: 1.9rem !important;
}

.u-fs20 {
  font-size: 2rem !important;
}

.u-fs21 {
  font-size: 2.1rem !important;
}

.u-fs22 {
  font-size: 2.2rem !important;
}

.u-fs23 {
  font-size: 2.3rem !important;
}

.u-fs24 {
  font-size: 2.4rem !important;
}

.u-fs25 {
  font-size: 2.5rem !important;
}

.u-fs26 {
  font-size: 2.6rem !important;
}

.u-fs27 {
  font-size: 2.7rem !important;
}

.u-fs28 {
  font-size: 2.8rem !important;
}

.u-fs29 {
  font-size: 2.9rem !important;
}

.u-fs30 {
  font-size: 3rem !important;
}

.u-fs31 {
  font-size: 3.1rem !important;
}

.u-fs32 {
  font-size: 3.2rem !important;
}

.u-fs33 {
  font-size: 3.3rem !important;
}

.u-fs34 {
  font-size: 3.4rem !important;
}

.u-fs35 {
  font-size: 3.5rem !important;
}

.u-fsBig {
  font-size: 2rem !important;
}

.u-fsSmall {
  font-size: 1.4rem !important;
}

@media (max-width: 767px) {
  .u-fsBig {
    font-size: 1.8rem !important;
  }
}

.u-textbold {
  font-weight: 700 !important;
}

.u-textnormal {
  font-weight: 400 !important;
}

.u-textthin {
  font-weight: 200 !important;
}

.u-emp {
  color: #cc0000;
}

.u-emp-style01 {
  color: #e66000;
}

.u-emp-style02 {
  color: #00802a;
}

.u-emp-style03 {
  color: #809900;
}

.u-clear {
  clear: both !important;
}

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

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

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

.u-vm {
  vertical-align: middle !important;
}

.u-vt {
  vertical-align: top !important;
}

.u-vb {
  vertical-align: bottom !important;
}

@media (min-width: 769px) {
  .u-ac-pc {
    text-align: center !important;
  }
  .u-ar-pc {
    text-align: right !important;
  }
  .u-al-pc {
    text-align: left !important;
  }
  .u-vm-pc {
    vertical-align: middle !important;
  }
  .u-vt-pc {
    vertical-align: top !important;
  }
  .u-vb-pc {
    vertical-align: bottom !important;
  }
}

@media (max-width: 767px) {
  .u-ac-sp {
    text-align: center !important;
  }
  .u-ar-sp {
    text-align: right !important;
  }
  .u-al-sp {
    text-align: left !important;
  }
  .u-vm-sp {
    vertical-align: middle !important;
  }
  .u-vt-sp {
    vertical-align: top !important;
  }
  .u-vb-sp {
    vertical-align: bottom !important;
  }
}

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

@media (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
  .u-sp {
    display: inherit !important;
  }
}

/* -----------------------------------------------
  .c-btn
----------------------------------------------- */
.c-btn {
  display: block;
  position: relative;
  margin-top: 30px;
  padding: 16px;
  border-radius: 2px;
  outline: none;
  background: #0068b7;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: .2s linear;
}

.c-btn.c-grid_col {
  margin-top: 0;
}

.c-btn:hover {
  background: #007fe0;
  text-decoration: none;
}

.c-btn.-transition {
  background: #cc0000;
}

.c-btn.-transition:hover {
  background: #e60000;
}

.c-btn.-return {
  background: #828999;
}

.c-btn.-return:hover {
  background: #9096a4;
}

.c-btn.-inline {
  display: inline-table;
  min-width: 0;
  min-height: 51px;
  margin-top: 0;
  margin-left: 20px;
}

.c-btn.-flex {
  display: table;
  min-width: 135px;
}

.c-btn.-small {
  min-width: 40%;
}

.c-btn.-medium {
  min-width: 50%;
}

.c-btn.-large {
  min-width: 75%;
}

.c-btn.-center {
  margin-right: auto;
  margin-left: auto;
}

.c-btn.-right {
  margin-left: auto;
}

.c-btn[class*="-next"], .c-btn[class*="-prev"] {
  padding-right: 35px;
  padding-left: 35px;
}

.c-btn.-next::after {
  display: block;
  position: absolute;
  top: 0;
  right: 22px;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto 0;
  border-width: 4px 0 4px 5px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  content: '';
  transition: 0.1s linear;
}

.c-btn.-prev::before {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 22px;
  width: 0;
  height: 0;
  margin: auto 0;
  border-width: 4px 5px 4px 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
  content: '';
  transition: 0.1s linear;
}

.c-btn.-toggle {
  padding-right: 35px;
  padding-left: 35px;
}

.c-btn.-toggle::before {
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 10px;
  height: 2px;
  margin: auto 0;
  background: #fff;
  content: '';
}

.c-btn.-toggle::after {
  display: block;
  position: absolute;
  top: 0;
  right: 24px;
  bottom: 0;
  width: 2px;
  height: 10px;
  margin: auto 0;
  background: #fff;
  content: '';
  transition: 0.1s linear;
}

.c-btn.-toggle.-open::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.c-btn_ico {
  display: inline-block;
  position: relative;
}

.c-btn_ico.-external {
  padding-right: 19px;
  background: url(/assets/images/common/ico_external_02.svg) 100% 50% no-repeat;
}

.c-btn_ico.-down {
  padding-right: 17px;
}

.c-btn_ico.-down::after {
  display: block;
  position: absolute;
  top: 0;
  right: 4px;
  bottom: 0;
  width: 6px;
  height: 6px;
  margin: auto 0;
  -webkit-transform: rotate(45deg) translateY(-3px);
          transform: rotate(45deg) translateY(-3px);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: '';
  transition: 0.1s linear;
}

.c-btn_ico.-loading {
  display: block;
  text-indent: -9999px;
}

.c-btn_ico.-loading::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 25px;
  margin: auto;
  background: url(/assets/images/common/ico_loading.svg) 50% 50% no-repeat;
  background-size: 25px auto;
  content: '';
}

.c-btn.c-grid_col {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .c-btn {
    min-width: 0;
    padding: 13px;
  }
  .c-btn.-inline {
    display: block;
    width: 100%;
    min-height: 0;
    margin-left: 0;
  }
  .c-btn.-flex {
    display: block;
    width: 100%;
    min-width: 0;
  }
  .c-btn.-small {
    min-width: 0;
  }
  .c-btn.-medium {
    min-width: 0;
  }
  .c-btn[class*="-next"], .c-btn[class*="-prev"] {
    padding-right: 30px;
    padding-left: 30px;
  }
  .c-btn.-next::after {
    right: 16px;
  }
  .c-btn.-prev::before {
    left: 16px;
  }
}


/* -----------------------------------------------
  .c-btnList
----------------------------------------------- */
.c-btnList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -15px;
}

.c-btnList_item {
  padding: 0 15px;
}

.c-btnList_item [class*="c-btn"] {
  min-width: 240px;
  margin: 0;
}

.c-btnList.-rtl {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .c-btnList {
    display: block;
    margin: 0;
  }
  .c-btnList_item {
    padding: 0;
  }
  .c-btnList_item + .c-btnList_item {
    margin-top: 15px;
  }
}

/* -----------------------------------------------
  .c-grid
----------------------------------------------- */
.c-grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -24px;
}

.c-grid.-center {
  justify-content: center;
}

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

.c-grid > .c-grid_col {
  margin-bottom: 24px;
  margin-left: 23.9px;
}

.c-grid > .c-grid_col.-span1 {
  width: calc(((100% / 12) * 1) - 24px);
}

.c-grid > .c-grid_col.-span2 {
  width: calc(((100% / 12) * 2) - 24px);
}

.c-grid > .c-grid_col.-span3 {
  width: calc(((100% / 12) * 3) - 24px);
}

.c-grid > .c-grid_col.-span4 {
  width: calc(((100% / 12) * 4) - 24px);
}

.c-grid > .c-grid_col.-span5 {
  width: calc(((100% / 12) * 5) - 24px);
}

.c-grid > .c-grid_col.-span6 {
  width: calc(((100% / 12) * 6) - 24px);
}

.c-grid > .c-grid_col.-span7 {
  width: calc(((100% / 12) * 7) - 24px);
}

.c-grid > .c-grid_col.-span8 {
  width: calc(((100% / 12) * 8) - 24px);
}

.c-grid > .c-grid_col.-span9 {
  width: calc(((100% / 12) * 9) - 24px);
}

.c-grid > .c-grid_col.-span10 {
  width: calc(((100% / 12) * 10) - 24px);
}

.c-grid > .c-grid_col.-span11 {
  width: calc(((100% / 12) * 11) - 24px);
}

.c-grid > .c-grid_col.-span12 {
  width: calc(((100% / 12) * 12) - 24px);
}

.c-grid.-division2 > .c-grid_col {
  width: calc((100% / 2) - 24px);
}

.c-grid.-division3 > .c-grid_col {
  width: calc((100% / 3) - 24px);
}

.c-grid.-division4 > .c-grid_col {
  width: calc((100% / 4) - 24px);
}

.l-article .c-grid {
  margin-left: -24px;
}

.l-article .c-grid > .c-grid_col {
  margin-bottom: 24px;
  margin-left: 24px;
}

.l-article .c-grid > .c-grid_col.-span1 {
  width: calc(((100% / 10) * 1) - 24px);
}

.l-article .c-grid > .c-grid_col.-span2 {
  width: calc(((100% / 10) * 2) - 24px);
}

.l-article .c-grid > .c-grid_col.-span3 {
  width: calc(((100% / 10) * 3) - 24px);
}

.l-article .c-grid > .c-grid_col.-span4 {
  width: calc(((100% / 10) * 4) - 24px);
}

.l-article .c-grid > .c-grid_col.-span5 {
  width: calc(((100% / 10) * 5) - 24px);
}

.l-article .c-grid > .c-grid_col.-span6 {
  width: calc(((100% / 10) * 6) - 24px);
}

.l-article .c-grid > .c-grid_col.-span7 {
  width: calc(((100% / 10) * 7) - 24px);
}

.l-article .c-grid > .c-grid_col.-span8 {
  width: calc(((100% / 10) * 8) - 24px);
}

.l-article .c-grid > .c-grid_col.-span9 {
  width: calc(((100% / 10) * 9) - 24px);
}

.l-article .c-grid > .c-grid_col.-span10 {
  width: calc(((100% / 10) * 10) - 24px);
}

.l-article .c-grid.-division2 > .c-grid_col {
  width: calc((100% / 2) - 24px);
}

.l-article .c-grid.-division3 > .c-grid_col {
  width: calc((100% / 3) - 24px);
}

.l-article .c-grid.-division4 > .c-grid_col {
  width: calc((100% / 4) - 24px);
}

@media (max-width: 1350px) {
  .c-grid[data-tabgrid="false"] {
    display: block;
  }
  .c-grid[data-tabgrid="false"] > .c-grid_col {
    width: auto;
    float: none;
  }
  .c-grid[data-tabgrid="false"] > .c-grid_col.-span1 {
    width: auto;
  }
  .c-grid[data-tabgrid="false"] > .c-grid_col.-span2 {
    width: auto;
  }
  .c-grid[data-tabgrid="false"] > .c-grid_col.-span3 {
    width: auto;
  }
  .c-grid[data-tabgrid="false"] > .c-grid_col.-span4 {
    width: auto;
  }
  .c-grid[data-tabgrid="false"] > .c-grid_col.-span5 {
    width: auto;
  }
  .c-grid[data-tabgrid="false"] > .c-grid_col.-span6 {
    width: auto;
  }
  .c-grid[data-tabgrid="false"] > .c-grid_col.-span7 {
    width: auto;
  }
  .c-grid[data-tabgrid="false"] > .c-grid_col.-span8 {
    width: auto;
  }
  .c-grid[data-tabgrid="false"] > .c-grid_col.-span9 {
    width: auto;
  }
  .c-grid[data-tabgrid="false"] > .c-grid_col.-span10 {
    width: auto;
  }
  .c-grid[data-tabgrid="false"] > .c-grid_col.-span11 {
    width: auto;
  }
  .c-grid[data-tabgrid="false"] > .c-grid_col.-span12 {
    width: auto;
  }
  .c-grid[data-tabgrid="false"] > .c-grid_col.c-btn {
    width: calc(100% -  24px);
  }
  .c-grid[data-tabgrid="2"] > .c-grid_col {
    width: calc((100% / 2) - 24px);
  }
  .c-grid[data-tabgrid="3"] > .c-grid_col {
    width: calc((100% / 3) - 24px);
  }
  .l-article .c-grid[data-tabgrid="false"] > .c-grid_col {
    width: auto;
    float: none;
  }
  .l-article .c-grid[data-tabgrid="false"] > .c-grid_col.-span1 {
    width: auto;
  }
  .l-article .c-grid[data-tabgrid="false"] > .c-grid_col.-span2 {
    width: auto;
  }
  .l-article .c-grid[data-tabgrid="false"] > .c-grid_col.-span3 {
    width: auto;
  }
  .l-article .c-grid[data-tabgrid="false"] > .c-grid_col.-span4 {
    width: auto;
  }
  .l-article .c-grid[data-tabgrid="false"] > .c-grid_col.-span5 {
    width: auto;
  }
  .l-article .c-grid[data-tabgrid="false"] > .c-grid_col.-span6 {
    width: auto;
  }
  .l-article .c-grid[data-tabgrid="false"] > .c-grid_col.-span7 {
    width: auto;
  }
  .l-article .c-grid[data-tabgrid="false"] > .c-grid_col.-span8 {
    width: auto;
  }
  .l-article .c-grid[data-tabgrid="false"] > .c-grid_col.-span9 {
    width: auto;
  }
  .l-article .c-grid[data-tabgrid="false"] > .c-grid_col.-span10 {
    width: auto;
  }
  .l-article .c-grid[data-tabgrid="false"] > .c-grid_col.c-btn {
    width: calc(100% - 24px);
  }
  .l-article .c-grid[data-tabgrid="2"] > .c-grid_col {
    width: calc((100% / 2) - 24px);
  }
  .l-article .c-grid[data-tabgrid="3"] > .c-grid_col {
    width: calc((100% / 3) - 24px);
  }
}

@media (max-width: 767px) {
  .c-grid {
    margin-left: -15px;
  }
  .c-grid > .c-grid_col {
    margin-bottom: 15px;
    margin-left: 14.9px;
  }
  .c-grid > .c-grid_col.-span1 {
    width: calc(((100% / 12) * 1) - 15px);
  }
  .c-grid > .c-grid_col.-span2 {
    width: calc(((100% / 12) * 2) - 15px);
  }
  .c-grid > .c-grid_col.-span3 {
    width: calc(((100% / 12) * 3) - 15px);
  }
  .c-grid > .c-grid_col.-span4 {
    width: calc(((100% / 12) * 4) - 15px);
  }
  .c-grid > .c-grid_col.-span5 {
    width: calc(((100% / 12) * 5) - 15px);
    width: calc((100% / 2) - 15px);
  }
  .c-grid > .c-grid_col.-span6 {
    width: calc(((100% / 12) * 6) - 15px);
    width: calc((100% / 2) - 15px);
  }
  .c-grid > .c-grid_col.-span7 {
    width: calc(((100% / 12) * 7) - 15px);
    width: calc((100% / 2) - 15px);
  }
  .c-grid > .c-grid_col.-span8 {
    width: calc(((100% / 12) * 8) - 15px);
    width: calc((100% / 2) - 15px);
  }
  .c-grid > .c-grid_col.-span9 {
    width: calc(((100% / 12) * 9) - 15px);
    width: calc((100% / 2) - 15px);
  }
  .c-grid > .c-grid_col.-span10 {
    width: calc(((100% / 12) * 10) - 15px);
    width: calc((100% / 2) - 15px);
  }
  .c-grid > .c-grid_col.-span11 {
    width: calc(((100% / 12) * 11) - 15px);
    width: calc((100% / 2) - 15px);
  }
  .c-grid > .c-grid_col.-span12 {
    width: calc(((100% / 12) * 12) - 15px);
    width: calc((100% / 2) - 15px);
  }
  .c-grid.-division2 > .c-grid_col {
    width: calc((100% / 2) - 15px);
  }
  .c-grid.-division3 > .c-grid_col {
    width: calc((100% / 3) - 15px);
  }
  .c-grid.-division4 > .c-grid_col {
    width: calc((100% / 4) - 15px);
  }
  .c-grid[data-spgrid="false"] {
    display: block;
  }
  .c-grid[data-spgrid="false"] > .c-grid_col {
    width: auto;
    float: none;
  }
  .c-grid[data-spgrid="false"] > .c-grid_col.c-btn {
    width: calc(100% -  15px);
  }
  .c-grid[data-spgrid="false"] > .c-grid_col.-span1 {
    width: auto;
  }
  .c-grid[data-spgrid="false"] > .c-grid_col.-span2 {
    width: auto;
  }
  .c-grid[data-spgrid="false"] > .c-grid_col.-span3 {
    width: auto;
  }
  .c-grid[data-spgrid="false"] > .c-grid_col.-span4 {
    width: auto;
  }
  .c-grid[data-spgrid="false"] > .c-grid_col.-span5 {
    width: auto;
  }
  .c-grid[data-spgrid="false"] > .c-grid_col.-span6 {
    width: auto;
  }
  .c-grid[data-spgrid="false"] > .c-grid_col.-span7 {
    width: auto;
  }
  .c-grid[data-spgrid="false"] > .c-grid_col.-span8 {
    width: auto;
  }
  .c-grid[data-spgrid="false"] > .c-grid_col.-span9 {
    width: auto;
  }
  .c-grid[data-spgrid="false"] > .c-grid_col.-span10 {
    width: auto;
  }
  .c-grid[data-spgrid="false"] > .c-grid_col.-span11 {
    width: auto;
  }
  .c-grid[data-spgrid="false"] > .c-grid_col.-span12 {
    width: auto;
  }
  .c-grid[data-spgrid="2"] > .c-grid_col {
    width: calc((100% / 2) - 15px);
  }
  .c-grid[data-spgrid="3"] > .c-grid_col {
    width: calc((100% / 3) - 15px);
  }
  .l-article .c-grid {
    margin-left: -15px;
  }
  .l-article .c-grid > .c-grid_col {
    margin-bottom: 15px;
    margin-left: 14.9px;
  }
  .l-article .c-grid > .c-grid_col.-span1 {
    width: calc(((100% / 10) * 1) - 15px);
  }
  .l-article .c-grid > .c-grid_col.-span2 {
    width: calc(((100% / 10) * 2) - 15px);
  }
  .l-article .c-grid > .c-grid_col.-span3 {
    width: calc(((100% / 10) * 3) - 15px);
  }
  .l-article .c-grid > .c-grid_col.-span4 {
    width: calc(((100% / 10) * 4) - 15px);
  }
  .l-article .c-grid > .c-grid_col.-span5 {
    width: calc((100% / 2) - 15px);
  }
  .l-article .c-grid > .c-grid_col.-span6 {
    width: calc((100% / 2) - 15px);
  }
  .l-article .c-grid > .c-grid_col.-span7 {
    width: calc((100% / 2) - 15px);
  }
  .l-article .c-grid > .c-grid_col.-span8 {
    width: calc((100% / 2) - 15px);
  }
  .l-article .c-grid > .c-grid_col.-span9 {
    width: calc((100% / 2) - 15px);
  }
  .l-article .c-grid > .c-grid_col.-span10 {
    width: calc((100% / 2) - 15px);
  }
  .l-article .c-grid.-division2 > .c-grid_col {
    width: calc((100% / 2) - 15px);
  }
  .l-article .c-grid.-division3 > .c-grid_col {
    width: calc((100% / 3) - 15px);
  }
  .l-article .c-grid.-division4 > .c-grid_col {
    width: calc((100% / 4) - 15px);
  }
  .l-article .c-grid[data-spgrid="2"] > .c-grid_col {
    width: calc((100% / 2) - 15px);
  }
  .l-article .c-grid[data-spgrid="3"] > .c-grid_col {
    width: calc((100% / 3) - 15px);
  }
  .l-article .c-grid[data-spgrid="false"] > .c-grid_col {
    width: auto;
  }
  .l-article .c-grid[data-spgrid="false"] > .c-grid_col.c-btn {
    width: calc(100% - 15px);
  }
  .l-article .c-grid[data-spgrid="false"] > .c-grid_col.-span1 {
    width: auto;
  }
  .l-article .c-grid[data-spgrid="false"] > .c-grid_col.-span2 {
    width: auto;
  }
  .l-article .c-grid[data-spgrid="false"] > .c-grid_col.-span3 {
    width: auto;
  }
  .l-article .c-grid[data-spgrid="false"] > .c-grid_col.-span4 {
    width: auto;
  }
  .l-article .c-grid[data-spgrid="false"] > .c-grid_col.-span5 {
    width: auto;
  }
  .l-article .c-grid[data-spgrid="false"] > .c-grid_col.-span6 {
    width: auto;
  }
  .l-article .c-grid[data-spgrid="false"] > .c-grid_col.-span7 {
    width: auto;
  }
  .l-article .c-grid[data-spgrid="false"] > .c-grid_col.-span8 {
    width: auto;
  }
  .l-article .c-grid[data-spgrid="false"] > .c-grid_col.-span9 {
    width: auto;
  }
  .l-article .c-grid[data-spgrid="false"] > .c-grid_col.-span10 {
    width: auto;
  }
}


/* -----------------------------------------------
  .js-spAccordion
----------------------------------------------- */
@media (max-width: 767px) {
  .js-spAccordion + * {
    display: none;
  }
}



/* -----------------------------------------------
  title
----------------------------------------------- */

.p-headlineLevel2 {
  font-size: 4rem;
  font-weight: 900;
  color:#e63556;
  margin:40px 0
}
.p-headlineLevel2 .-spacer {
  letter-spacing: -0.5em;
}

@media (max-width: 1160px) {
  .p-headlineLevel2 {
    font-size: 3.3vw;
    margin:4vw 0;

  }  
} /* end case-1160 */

@media (max-width: 767px) {
  .p-headlineLevel2 {
    font-size: 5.2vw;
    text-align: center;
    margin:4vw 0
  }  
} /* end case-768 */


.p-headlineLevel3 {
  font-size: 4rem;
  font-weight: 900;
  text-align: center;
  color:#3d3d3d;
  margin:20px 0 40px 0; 
}

.p-pageNav_headline  {
  text-align: center;
  margin:0 0 80px 0;
}

.p-pageNav_headline span {
  font-size: 4rem;
  color:#fff;
  background: #e63556;
  padding:5px 40px;
  border-radius: 50px;
  margin:0 auto;
  line-height: 66px;
}

.p-common_text {
  font-size: 1.9rem;
  line-height: 1.5;
}

@media (max-width: 1160px) {
  .p-headlineLevel3 {
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    color:#3d3d3d;
    margin:20px 0 40px 0; 
  }

  .p-pageNav_headline  {
    text-align: center;
    margin:0 0 80px 0;
  }

  .p-pageNav_headline span {
    font-size: 3.4vw;
    padding:5px 4vw;
    line-height: 1;
  }

  .p-common_text {
    font-size: 1.9rem;
    line-height: 1.5;
  }

} /* end case-1160 */


@media (max-width: 767px) {
  .p-headlineLevel3 {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    color:#3d3d3d;
    margin:0px 0 12px 0; 
  }

  .p-pageNav_headline  {
    text-align: center;
    margin:0 0 14vw 0;
  }

  .p-pageNav_headline span {
    font-size: 4.6vw;
  }

  .p-common_text {
    font-size: 1.2rem;
    line-height: 1.5;
  }

} /* end case-768 */


.p-serviceFlow {
  /* margin:150px 0 20px 0 ; 人のiconあり*/
  margin:50px 0 0px 0 ;
  padding:0 0 50px 0;
  background: url("../images/common/bg_arrow_big.svg") no-repeat center top 85px / 85%;
}

.p-serviceFlow_pattern {
  
}

.p-serviceFlow_pattern_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -30px;
  padding:0 30px;
}

.p-serviceFlow_pattern_listItem {
  width:calc(33.333333% - 30px );
  background: #3d3d3d;
  color:#ffe45f;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left:30px;
  padding:30px 25px;
  font-size:2.7rem;
  font-weight: 700;
  position: relative;
  border-radius: 20px;

}



.p-serviceFlow_pattern_listItem:before {
  display: none; /* 人のアイコンなし */
  content:"";
  width:114px;
  height:114px;
  background-image:url(../images/common/icon_rep.png);
  background-size: contain;
  position: absolute;
  top:-90px;
  left:50%;
  transform:translateX(-50%);
}

.p-serviceFlow_pattern_listItem_text {
  
}

.p-serviceFlow_issue {
  margin-top:35px;
}

.p-serviceFlow_issue_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -30px;
  padding:0 30px;
  position: relative;
}

.p-serviceFlow_issue_list:after {
  content:"";
  width:114px;
  height:114px;
  background:url(../images/common/icon_rep02.png) no-repeat left top;
  background-size: contain;
  position: absolute;
  top:13%;
  right:5%;
}


.p-serviceFlow_issue_listItem {
  width:calc(33.333333% - 30px );
  background: #ffe45f;
  color:#3d3d3d;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin:45px 0 0 30px;
  padding:25px;
  font-size:2.4rem;
  font-weight: 900;
  position: relative;
  border-radius: 20px;
  border:solid 3px #3d3d3d;
}

.p-serviceFlow_issue_listItem:before {
  content:"";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 30px 12px;
  border-color: transparent transparent #3d3d3d transparent;
  position: absolute;
  top:-30px;
  left:50%;
  transform:translateX(-50%);
}


.p-serviceFlow_issue_listItem:after {
  content:"";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 22px 8px;
  border-color: transparent transparent #ffe45f transparent;
  position: absolute;
  top:-22px;
  left:50%;
  transform:translateX(-50%);
}

.p-serviceFlow_issue_listItem:nth-child(2) {
  width:calc(33.33333% - 27px);
}


.p-serviceFlow_resolution {
  background-image: url("../images/common/bg_bar_left.png") , url("../images/common/bg_bar_right.png");
  background-repeat:no-repeat;
  background-position: left bottom , right bottom;
  margin:65px 0 0 0;
}

.p-serviceFlow_resolution_text {
  color:#006eb0;
  font-size: 5rem;
  font-weight: 900;
  text-align: center;
  
}

@media (max-width: 1160px) {



  
  .p-serviceFlow {
    margin:5vw 0 0px 0 ;
    padding:0 0 5vw 0;
    background: url("../images/common/bg_arrow_big.svg") no-repeat center top 8vw / 75vw;
  }

  .p-serviceFlow_pattern {
    
  }

  .p-serviceFlow_pattern_list {
    margin-left: -2vw;
    padding:0 2vw;
  }
  
  .p-serviceFlow_issue_list:after {
    width:10vw;
    height:10vw;
    top:4vw;
    right:3.5vw;
  }

  .p-serviceFlow_pattern_listItem {
    width:calc(33.333333% - 2vw );
    margin-left:2vw;
    
    padding:2vw;
    font-size:2.3vw;
  }
  .p-serviceFlow_issue_listItem:nth-child(2) {
    width:calc(33.33333% - 1.9vw );
  }

  .p-serviceFlow_pattern_listItem:before {
    width:10vw;
    height:10vw;
    top:-8vw;
  
  }

  .p-serviceFlow_issue {
    margin-top:3.4vw;
  }

  .p-serviceFlow_issue_list {
    margin-left: -2vw;
    padding:0 2vw;
  }

  .p-serviceFlow_issue_listItem {
    width:calc(33.333333% - 2vw );
    margin:4vw 0 0 2vw;
    padding:2vw;
    font-size:2vw;
  }

  .p-serviceFlow_resolution {
    margin:6vw 0 0 0;
  }

  .p-serviceFlow_resolution_text {
    font-size: 4.1vw;
  }


} /* end case-1160 */

@media (max-width: 767px) {

  .p-serviceFlow {
    margin:6vw 0 0px 0 ;
    padding:0 0 5vw 0;
    background: url("../images/common/bg_arrow_big__sp.svg") no-repeat center bottom 0 / 75vw;
  }

  .p-serviceFlow_pattern_list {
    margin-left: -2vw;
    padding:0 2vw;
  }
  
  .p-serviceFlow_issue_list:after {
    width:15vw;
    height:15vw;
    top:21vw;
    right:4.5vw;
  }
  .p-serviceFlow_pattern_listItem {
    padding:2vw 1.5vw;
    border-radius: 8px;
    font-size:3vw;
  }
  
  .p-serviceFlow_pattern_listItem:before {
    width:10vw;
    height:10vw;
    top:-8vw;
  
  }

  .p-serviceFlow_issue {
    margin-top:3.4vw;
  }

  .p-serviceFlow_issue_list {
    margin-left: -4vw;
    padding:0 6vw;
  }

  .p-serviceFlow_issue_listItem {
    width:calc(50% - 4vw );
    margin:4vw 0 0 4vw;
    padding:2vw 1vw;
    font-size:3vw;
    border-radius:8px;
    border-width:2px;
  }


  .p-serviceFlow_issue_listItem:nth-child(1) {
    order:1
  }
  
  .p-serviceFlow_issue_listItem:nth-child(2) {
    width:calc(50% - 4vw );
    order:2
  }
  
  .p-serviceFlow_issue_listItem:nth-child(3) {
    order:4
  }
  
  .p-serviceFlow_issue_listItem:nth-child(4) {
    order:3
  }
  
  .p-serviceFlow_issue_listItem:nth-child(5) {
    order:5
  }

  .p-serviceFlow_issue_listItem:nth-child(4) {
    width:calc(51% - 4vw );
  }
  .p-serviceFlow_issue_listItem:before {
    content:"";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 12px 5px;
    border-color: transparent transparent #3d3d3d transparent;
    position: absolute;
    top:-12px;
    left:50%;
    transform:translateX(-50%);
  }
  
  
  .p-serviceFlow_issue_listItem:after {
    content:"";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 4px 11px 4px;
    border-color: transparent transparent #ffe45f transparent;
    position: absolute;
    top:-9px;
    left:50%;
    transform:translateX(-50%);
  }
  
  .p-serviceFlow_resolution {
    background-image: url("../images/common/bg_bar_left__sp.png") , url("../images/common/bg_bar_right__sp.png");
    margin:6vw 0 0 0;
    background-size: 45px;
  }

  .p-serviceFlow_resolution_text {
    font-size: 4.5vw;
  }


} /* end case-768 */


.p-pageNav_block {
  margin:0 0 70px 0; 
  padding-top:20px;
}

.p-pageNav_list {
  display: flex;
  justify-content: space-between;
  margin:0 0 0 -10px;
}

.p-pageNav_listItem {
  border:solid 7px #3d3d3d;
  margin:0 0 0 10px;
  flex:1;
  text-align: center;
  position: relative;
}

.p-pageNav_link {
  display: flex;
  flex-direction: column;
  height:100%;
  padding: 30px 0;
  color:#000;
}
.p-pageNav_link:hover {
  text-decoration: none;
}

.-typeA .p-pageNav_link:hover {
  background-color:#e5f6fc;
}

.-typeB .p-pageNav_link:hover {
  background-color:#eef1f8;
}

.-typeC .p-pageNav_link:hover {
  background-color:#efeef6;
}

.-typeD .p-pageNav_link:hover {
  background-color:#e5f5f6;
}

.-typeE .p-pageNav_link:hover {
  background-color:#ecf7ed;
}


.p-base_label:before {
  content:"A";
  font-size: 4rem;
  font-weight: 700;
  color:#fff;
  width:70px;
  height:70px;
  text-align: center;
  line-height: 70px;
  display: block;
  margin:-70px auto 0;
  background-color:#00a4e3;
  border-radius:50%;
}

.-typeA .p-base_label:before ,  
.-typeA.p-base_label:before {
  content:"A";
  background-color:#00a4e3;
}

.-typeB .p-base_label:before ,
.-typeB.p-base_label:before {
  content:"B";
  background-color:#5876b8;
}

.-typeC .p-base_label:before ,
.-typeC.p-base_label:before {
  content:"C";
  background-color:#6355a1;
}

.-typeD .p-base_label:before ,
.-typeD.p-base_label:before {
  content:"D";
  background-color:#00a0a7;
}

.-typeE .p-base_label:before ,
.-typeE.p-base_label:before {
  content:"E";
  background-color:#42b049;
}

.p-pageNav_image {
  margin:25px 40px 25px;
}

.p-pageNav_text {
  font-size: 1.8rem;
  font-weight: 500;
  margin:0 0 15px 0;
}

.p-pageNav_title {
  font-size: 2.3rem;
  margin:0 0 25px 0;
  font-weight: 700;
}

.p-btn_block {
  margin-top:auto;
}

.p-baseBtn {
  font-size: 1.7rem;
  color:#000;
  display: table;
  min-width:135px;
  padding:5px;
  border:solid 2px #00a3e3;
  border-radius: 12px;
  line-height: 25px;
  margin:0 auto;
  
}

.p-baseBtn:hover ,
.p-pageNav_listItem:hover .p-baseBtn {
  text-decoration: none;
  color:#fff;
}

.-typeA .p-baseBtn:hover:before ,
.-typeB .p-baseBtn:hover:before ,
.-typeC .p-baseBtn:hover:before ,
.-typeD .p-baseBtn:hover:before ,
.-typeE .p-baseBtn:hover:before ,
.-typeA:hover .p-baseBtn:before ,
.-typeB:hover .p-baseBtn:before ,
.-typeC:hover .p-baseBtn:before ,
.-typeD:hover .p-baseBtn:before ,
.-typeE:hover .p-baseBtn:before 
 {
  border-color: transparent transparent transparent #fff; 
}

.p-baseBtn:before {
  content:"";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent #00a3e3; 
  margin-right:0.5em;
}

.-typeA .p-baseBtn {
  border-color:#00a4e3;
}

.-typeB .p-baseBtn {
  border-color:#5876b8;
}
.-typeC .p-baseBtn {
  border-color:#6355a1;
}

.-typeD .p-baseBtn {
  border-color:#00a0a7;
}

.-typeE .p-baseBtn {
  border-color:#42b049;
}

.-typeA .p-baseBtn:hover ,
.-typeA:hover .p-baseBtn {
  background-color:#00a4e3;
}

.-typeB .p-baseBtn:hover ,
.-typeB:hover .p-baseBtn {
  background-color:#5876b8;
}
.-typeC .p-baseBtn:hover ,
.-typeC:hover .p-baseBtn {
  background-color:#6355a1;
}

.-typeD .p-baseBtn:hover ,
.-typeD:hover .p-baseBtn {
  background-color:#00a0a7;
}

.-typeE .p-baseBtn:hover ,
.-typeE:hover .p-baseBtn {
  background-color:#42b049;
}

.-typeA .p-baseBtn:before {
  border-color: transparent transparent transparent #00a3e3; 
}

.-typeB .p-baseBtn:before {
  border-color: transparent transparent transparent #5876b8; 
}
.-typeC .p-baseBtn:before {
  border-color: transparent transparent transparent #6355a1; 
}

.-typeD .p-baseBtn:before {
  border-color: transparent transparent transparent #00a0a7; 
}

.-typeE .p-baseBtn:before {
  border-color: transparent transparent transparent #42b049; 
}

@media (max-width: 1160px) {
  
  
  .p-pageNav_list {
    margin:0 0 0 0px;
    flex-wrap: wrap;
  }

  .p-pageNav_listItem {
    border:solid 3px #3d3d3d;
    margin:0 0 0 10px;
    flex:none;
    width:calc(33.333333% - 20px)
  }

  .p-pageNav_listItem:nth-child(1) , 
  .p-pageNav_listItem:nth-child(2) {
    width:calc(50% - 20px);
    margin:0 0 50px 0;
  }
  .p-pageNav_listItem:nth-child(3) { 
    margin:0;
  }
  
} /* end case-1160 */


@media (max-width: 767px) {
  
  .p-pageNav_block {
    margin:0 0 25px 0; 
  }

  .p-pageNav_list {
    display: block;
    margin:0 0 0 0px;
  }

  .p-pageNav_listItem {
    border:solid 3px #3d3d3d;
    margin:25px 0 0 0px;
    width:100%
  }
  .p-pageNav_listItem:nth-child(1) , 
  .p-pageNav_listItem:nth-child(2) {
    width:100%;
    margin:25px 0 0px 0;
  }
  
  .p-pageNav_listItem:nth-child(3) { 
    margin:25px 0 0px 0;
  }

  .p-pageNav_link {
    display: block;
    height:100%;
    padding: 20px 10px 10px 10px ;
    text-align: left;
    line-height: 1.2;
  }

  .p-base_label:before {
    content:"A";
    font-size: 1.6rem;
    font-weight: 700;
    color:#fff;
    width:30px;
    height:30px;
    text-align: center;
    line-height: 30px;
    display: block;
    margin:0px auto 0;
    background-color:#00a4e3;
    border-radius:50%;
    position: absolute;
    top:-18px;
    left:50%;
    transform:translateX(-50%);
  }


  .p-pageNav_image {
    margin:0 3% 15px 0; 
    width:22%;
    float:left;
  }

  .p-pageNav_text {
    font-size: 3vw;
    margin:0 0 5px 0;
    
    width:75%;
    float:left;
  }

  .p-pageNav_title {
    font-size: 4.8vw;
    margin:0 0 15px 0;
    width:75%;
    float:left;
  }

  .p-btn_block {
    margin-top:auto;
  }

  .p-baseBtn {
    font-size: 1.7rem;
    color:#000;
    font-weight: 500;
    display: table;
    min-width:100%;
    padding:5px;
    border:solid 2px #00a3e3;
    border-radius: 6px;
    line-height: 25px;
    margin:0 auto;
    text-align: center;
  }


} /* end case-768 */


/* hover 打消し */
@media (max-width: 768px) { 
  
  .-typeA .p-pageNav_link:hover {
    background-color:#fff;
  }

  .-typeB .p-pageNav_link:hover {
    background-color:#fff;
  }

  .-typeC .p-pageNav_link:hover {
    background-color:#fff;
  }

  .-typeD .p-pageNav_link:hover {
    background-color:#fff;
  }

  .-typeE .p-pageNav_link:hover {
    background-color:#fff;
  }
  
  .p-baseBtn:hover ,
  .p-pageNav_listItem:hover .p-baseBtn {
    text-decoration: none;
    color:#000;
  }


  .-typeA .p-baseBtn:hover:before ,
  .-typeA:hover .p-baseBtn:before {
    border-color: transparent transparent transparent #00a3e3; 
  }
  .-typeB .p-baseBtn:hover:before ,
  .-typeB:hover .p-baseBtn:before {
    border-color: transparent transparent transparent #5876b8; 

  }
  .-typeC .p-baseBtn:hover:before ,
  .-typeC:hover .p-baseBtn:before {
    border-color: transparent transparent transparent #6355a1; 
  }
  .-typeD .p-baseBtn:hover:before ,
  .-typeD:hover .p-baseBtn:before {
    border-color: transparent transparent transparent #00a0a7; 
  }
  .-typeE .p-baseBtn:hover:before ,
  .-typeE:hover .p-baseBtn:before {
    border-color: transparent transparent transparent #42b049; 
  }


  
  .-typeA .p-baseBtn:hover ,
  .-typeA:hover .p-baseBtn {
    background-color:#fff;
  }

  .-typeB .p-baseBtn:hover ,
  .-typeB:hover .p-baseBtn {
    background-color:#fff;
  }
  .-typeC .p-baseBtn:hover ,
  .-typeC:hover .p-baseBtn {
    background-color:#fff;
  }

  .-typeD .p-baseBtn:hover ,
  .-typeD:hover .p-baseBtn {
    background-color:#fff;
  }

  .-typeE .p-baseBtn:hover ,
  .-typeE:hover .p-baseBtn {
    background-color:#fff;
  }

} /* end case-768 */


.p-grayArea {
  background:#f2f2f2;
  margin:0 -30px;
  padding:120px 0 70px 0;
  position: relative;
}

.p-grayArea:before {
  content:"";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 81px 105px 0 105px;
  border-color: #ffffff transparent transparent transparent;
  display: block;
  position: absolute;
  top:-1px;
  left:50%;
  transform:translateX(-50%);
}

.p-whiteArea {
  background:#fff;
  margin:0 -30px;
  padding:120px 0 70px 0;
  position: relative;
}

.p-whiteArea:before {
  content:"";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 81px 105px 0 105px;
  border-color: #f2f2f2 transparent transparent transparent;
  display: block;
  position: absolute;
  top:-1px;
  left:50%;
  transform:translateX(-50%);
}

.p-catchCopy {
}

.p-catchCopy_title {
  width:71.2%;
  margin:0 auto;
}

.p-menberList {
  display: flex;
  justify-content: space-between;
  margin:40px 0 100px 0;
}

.p-menberListItem {
  position: relative;
  text-align: center;
  width:80px;
}
.p-menberListItem_text {
  position: absolute;
  bottom:-1.5em;
  left:50%;
  transform:translateX(-50%);
  font-size: 1.5rem;
  font-weight: 500;
  color:#006eb0;
  width:150%;

  
}


.p-menberListItem_text_more {
  text-align: left;
  font-size: 2.1rem;
  font-weight: 500;
  color:#006eb0;
  margin:15px 0 0 0;
}

.p-catchCopy_text01 {
  font-size: 4rem;
  color:#006eb0;
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.05em;
  margin:0 0 10px 0;
  line-height: 1;
}
.p-catchCopy_text02 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;

}



@media (max-width: 1160px) {
  .p-grayArea {
    background:#f2f2f2;
    margin:0 -30px;
    padding:10vw 30px 10vw 30px;
    position: relative;
  }
  .p-whiteArea {
    margin:0 0px;
    padding:120px 0 70px 0;
  }

  .p-whiteArea:before {
    content:"";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 81px 105px 0 105px;
    border-color: #f2f2f2 transparent transparent transparent;
    display: block;
    position: absolute;
    top:-1px;
    left:50%;
    transform:translateX(-50%);
  }
} /* end case-1160 */


@media (max-width: 767px) {
  .p-grayArea {
    background:#f2f2f2;
    margin:0 -10px;
    padding:8vw 10px 8vw 10px;
    position: relative;
  }

  .p-grayArea:before {
    border-width: 14px 28px 0 28px;
  }

  .p-whiteArea {
    background:#fff;
    padding:8vw 0 8vw 0;
    position: relative;
  }

  .p-whiteArea:before {
    border-width: 14px 28px 0 28px;
  }
} /* end case-768 */

@media (max-width: 1160px) {

  .p-menberList {
    display: flex;
    justify-content: space-between;
    margin:40px 0 100px 0;
    
    flex-wrap: wrap;
    padding:0 13vw;
  }

  .p-menberListItem {
    position: relative;
    text-align: center;
    width:80px;
    width:18%;
    margin-left:2%;
    margin-bottom:5vw;
  }
  .p-menberListItem_text {
    position: absolute;
    bottom:-1.5em;
    left:50%;
    transform:translateX(-50%);
    font-size: 2vw;
    font-weight: 500;
    color:#006eb0;
    width:150%;
  }

  .p-menberListItem_text_more {
    text-align: left;
    font-size: 2.6vw;
    margin:2vw 0 0 2vw;
  }

  .p-catchCopy_text01 {
    font-size: 4.4vw;
  }
  .p-catchCopy_text02 {
    font-size: 2.6vw;
    font-weight: 700;
    text-align: center;

  }


} /* end case-1160 */

@media (max-width: 767px) {

  .p-catchCopy_title {
    width:100%;
    margin:10px auto;
  }


  .p-menberList {
    display: flex;
    justify-content: space-between;
    margin:5.6vw 0 5.6vw -6%;
    
    flex-wrap: wrap;
    padding:0 8vw;
  }

  .p-menberListItem {
    position: relative;
    text-align: center;
    width:80px;
    width:14%;
    margin-left:6%;
    margin-bottom:7vw;
  }
  .p-menberListItem_text {
    position: absolute;
    bottom:-1.5em;
    left:50%;
    transform:translateX(-50%);
    font-size: 1rem;
    font-weight: 500;
    color:#006eb0;
    width:150%;
  }

  .p-menberListItem_text_more {
    text-align: left;
    font-size: 2.6vw;
    margin:2vw 0 0 2vw;
  }

  .p-catchCopy_text01 {
    font-size: 4.2vw;
  }
  .p-catchCopy_text02 {
    font-size: 2.6vw;
    font-weight: 700;
    text-align: center;

  }
} /* end case-768 */




.p-circleBlock {
  width:710px;
  position: relative;
  margin:120px auto 250px auto;

}

.p-circle {

}


.p-balloonText {
  font-size: 2.8rem;
  font-weight: 700;
  color:#00a4e3;
  border:solid 3px #00a4e3;
  border-radius:8px;
  background:#fff;
  padding: 20px;
  text-align: center;
  position: relative;
  transition: none;
}

.p-balloonText:hover {
  text-decoration: none;
}

.p-balloonText:before {
  content:"";
  position:absolute;
  bottom:-36px;
  left:50%;
  transform:translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 36px 15px 0 15px;
  border-color: #00a4e3 transparent transparent transparent;
}

.p-balloonText:after {
  content:"";
  position:absolute;
  bottom:-30px;
  left:50%;
  transform:translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 12px 0 12px;
  border-color: #fff transparent transparent transparent;
  z-index: 2;
}

.p-balloonText.-typeA {
  color:#00a4e3;
  border-color: #00a4e3;  

}

.p-balloonText.-typeB {
  color:#5876b8;
  border-color: #5876b8;  
}

.p-balloonText.-typeC {
  color:#6355a1;
  border-color: #6355a1;  
    
}

.p-balloonText.-typeD {
  color:#00a0a7;
  border-color: #00a0a7;  
}

.p-balloonText.-typeE {
  color:#42b049;
  border-color: #42b049;  
}

.p-balloonText.-typeA:hover {
  color:#fff;
  background-color: #00a4e3;  
}

.p-balloonText.-typeB:hover  {
  color:#fff;
  background-color: #5876b8;  
}

.p-balloonText.-typeC:hover  {
  color:#fff;
  background-color: #6355a1;  
    
}

.p-balloonText.-typeD:hover  {
  color:#fff;
  background-color: #00a0a7;  
}

.p-balloonText.-typeE:hover  {
  color:#fff;
  background-color: #42b049;  
}

.p-balloonText.-typeA:hover:after {
  border-color: #00a4e3 transparent transparent transparent;
}

.p-balloonText.-typeB:hover:after  {
  border-color: #5876b8 transparent transparent transparent;
}

.p-balloonText.-typeC:hover:after  {
  border-color: #6355a1 transparent transparent transparent;    
}

.p-balloonText.-typeD:hover:after  {
  border-color: #00a0a7 transparent transparent transparent;
}

.p-balloonText.-typeE:hover:after  {
  border-color: #42b049 transparent transparent transparent;
}

.p-balloonText.-typeA:before {
  border-color: #00a4e3 transparent transparent transparent;
}

.p-balloonText.-typeB:before  {
  border-color: #5876b8 transparent transparent transparent;
}

.p-balloonText.-typeC:before  {
  border-color: #6355a1 transparent transparent transparent;    
}

.p-balloonText.-typeD:before  {
  border-color: #00a0a7 transparent transparent transparent;
}

.p-balloonText.-typeE:before  {
  border-color: #42b049 transparent transparent transparent;
}

.p-circleBlock .p-balloonText {
  position: absolute; 
  z-index: 1;
}

.p-circleBlock .p-balloonText.-typeA {
  top:-30px;
  right:-72px;
}

.p-circleBlock .p-balloonText.-typeB {
  bottom:-36px;
  right:-118px;
}

.p-circleBlock .p-balloonText.-typeC {
  bottom:4px;
  left:-173px;
}

.p-circleBlock .p-balloonText.-typeD {
  top:190px;
  left:-77px;
}

.p-circleBlock .p-balloonText.-typeE {
  top:4px;
  left:-144px;
}

.p-circleBlock .p-balloonText.-typeB:before {
  transform:translateX(-50%) rotate(180deg);
  bottom:auto;
  top:-36px;
}

.p-circleBlock .p-balloonText.-typeB:after {
  transform:translateX(-50%) rotate(180deg);
  bottom:auto;
  top:-30px;
}
.p-circleBlock .p-balloonText.-typeC:before {
  transform:translateY(-50%) rotate(270deg);
  bottom:auto;
  right:-33px;
  left:auto;
  top:50%;
}

.p-circleBlock .p-balloonText.-typeC:after {
  transform:translateY(-50%) rotate(270deg);
  bottom:auto;
  right:-27px;
  left:auto;
  top:50%;
}

.p-circleBlock .p-balloonText.-typeE:before {
  transform:translateY(-50%) rotate(270deg);
  bottom:auto;
  right:-33px;
  left:auto;
  top:50%;
}

.p-circleBlock .p-balloonText.-typeE:after {
  transform:translateY(-50%) rotate(270deg);
  bottom:auto;
  right:-27px;
  left:auto;
  top:50%;
}


@media (max-width: 1160px) {
  

  .p-circleBlock {
    width:560px;
    position: relative;
    margin:120px auto 250px auto;
  }

  .p-balloonText {
    font-size: 2rem;
    padding: 15px;
    border-radius: 6px;

  }
  

  .p-circleBlock .p-balloonText.-typeA {
    top:-30px;
    right:-48px;
  }

  .p-circleBlock .p-balloonText.-typeB {
    bottom:-31px;
    right:-79px;
  }

  .p-circleBlock .p-balloonText.-typeC {
    bottom:4px;
    left:-122px;
  }

  .p-circleBlock .p-balloonText.-typeD {
    top:142px;
    left:-52px;
  }

  .p-circleBlock .p-balloonText.-typeE {
    top:4px;
    left:-103px;
  }


} /* end case-1160 */

/* hover 打消し */
@media (max-width: 768px) {
  
  .p-balloonText.-typeA:hover {
    color:#00a4e3;
    background-color: #fff;  
  }

  .p-balloonText.-typeB:hover  {
    color:#5876b8;
    background-color: #fff;  
  }

  .p-balloonText.-typeC:hover  {
    color:#6355a1;
    background-color: #fff;  
      
  }

  .p-balloonText.-typeD:hover  {
    color:#00a0a7;
    background-color: #fff;  
  }

  .p-balloonText.-typeE:hover  {
    color:#42b049;
    background-color: #fff;  
  }

  .p-balloonText.-typeA:hover:after {
    border-color: #fff transparent transparent transparent;
  }

  .p-balloonText.-typeB:hover:after  {
    border-color: #fff transparent transparent transparent;
  }

  .p-balloonText.-typeC:hover:after  {
    border-color: #fff transparent transparent transparent;    
  }

  .p-balloonText.-typeD:hover:after  {
    border-color: #fff transparent transparent transparent;
  }

  .p-balloonText.-typeE:hover:after  {
    border-color: #fff transparent transparent transparent;
  }

} /* end case-768 */


@media (max-width: 767px) {
  
  .p-circleBlock {
    width:250px;
    margin:40px auto 60px auto;
  }

  .p-balloonText {
    font-size: 1.1rem;
    padding: 5px;
    border-width: 2px;

  }
  
  .p-balloonText:before {
    content:"";
    position:absolute;
    bottom:-16px;
    left:50%;
    transform:translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 16px 5px 0 5px;
    border-color: #00a4e3 transparent transparent transparent;
  }

  .p-balloonText:after {
    content:"";
    position:absolute;
    bottom:-10px;
    left:50%;
    transform:translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 3px 0 3px;
    border-color: #fff transparent transparent transparent;
    z-index: 2;
  }

  .p-circleBlock .p-balloonText.-typeA {
    top:-20px;
    right:-30px;
  }

  .p-circleBlock .p-balloonText.-typeB {
    bottom:-36px;
    right:-14px;
  }

  .p-circleBlock .p-balloonText.-typeC {
    bottom:-45px;
    left:25px;
  }

  .p-circleBlock .p-balloonText.-typeD {
    top:62px;
    left:-30px;
  }

  .p-circleBlock .p-balloonText.-typeE {
    top:-45px;
    left:29px;
  }
  
  .p-circleBlock .p-balloonText.-typeB:before {
    top:-16px;
  }

  .p-circleBlock .p-balloonText.-typeB:after {
    top:-10px;
  }
  
  .p-circleBlock .p-balloonText.-typeC:before {
    left:50%;
    top:-16px;
    right:auto;
    bottom:auto;
    transform:translateX(-50%) rotate(180deg);
  }

  .p-circleBlock .p-balloonText.-typeC:after {
    left:50%;
    top:-10px;
    right:auto;
    bottom:auto;
    transform:translateX(-50%) rotate(180deg);
  }
  
  .p-circleBlock .p-balloonText.-typeE:before {
    bottom:-16px;
    left:50%;
    top:auto;
    right:auto;
    transform:translateX(-50%);
  }

  .p-circleBlock .p-balloonText.-typeE:after {
    bottom:-10px;
    left:50%;
    top:auto;
    right:auto;
    transform:translateX(-50%);
  }

} /* end case-768 */



.p-solution_block {
  background:url("../images/common/bg_type_a.svg") no-repeat right 50px top 50px;  
  background-position:calc(50% + 500px) 100px;
  background-size:500px;
  margin:100px 0 0 0;
  padding-top:20px;

}

.p-solution_block.-typeA {
  background-image:url("../images/common/bg_type_a.svg")
}

.p-solution_block.-typeB {
  background-image:url("../images/common/bg_type_b.svg")
}

.p-solution_block.-typeC {
  background-image:url("../images/common/bg_type_c.svg")
}

.p-solution_block.-typeD {
  background-image:url("../images/common/bg_type_d.svg")
}

.p-solution_block.-typeE {
  background-image:url("../images/common/bg_type_e.svg")
}

.p-solution {
  border-top:solid 6px #3d3d3d;
}

.p-solution.p-base_label:before {
  margin-top:-39px;
}
.p-solution_title {
  font-size: 4.2rem;
  font-weight: 900;
  margin:40px 0;
}

.p-solution_subtitle {
  font-size: 2rem;
  font-weight: 700;
  margin:15px 0
}

.p-solution_text {
  margin:10px 0;
  text-indent:-1em;
  padding-left:1em;
}

.p-solution_output {
  margin:45px 0;
  display: flex;
  
}

.p-solution_output_textbox {
  
}

.p-solution_output_label {
  color:#fff;
  background:#00a4e3;
  font-size: 1.8rem;
  padding:2px 10px ;
  margin:0 25px 15px 0; 
  display: inline-block;
}

.p-solution_output_text {
  line-height:1.5;
  font-weight: 500; 
  margin:0 25px 0 0 ;
}

.p-solution_output_imgbox {
  
}

.p-solution_comment {
  background:#e5f6fc;
  border-radius:12px;
  padding:20px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.p-solution_comment_icon {
  width:88px;
  text-align: center;
  margin:0 40px 0 0 ; 
}



.p-solution_comment_text {
  flex:1;
  font-size: 1.9rem;
  line-height:1.6;
  border-left:solid 3px #fff;
  padding:10px 0 10px 25px;
  position: relative;
}

.p-solution_comment_text:before {
  content:"";
  position:absolute;
  bottom:-36px;
  top:50%;
  left:-20px;
  transform:translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12.5px 20px 12.5px 0;
  border-color: transparent #fff transparent transparent;  
}

.p-solution_comment_text:after {
  content:"";
  position:absolute;
  bottom:-36px;
  top:50%;
  left:-15px;
  transform:translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 18px 11px 0;
  border-color: transparent #e5f6fc transparent transparent;  
}

.-typeA .p-solution_comment_text:after {
  border-color: transparent #e5f6fc transparent transparent;  
}

.-typeB .p-solution_comment_text:after {
  border-color: transparent #eef1f8 transparent transparent;  
}

.-typeC .p-solution_comment_text:after {
  border-color: transparent #efeef6 transparent transparent;  
}

.-typeD .p-solution_comment_text:after {
  border-color: transparent #e5f5f6 transparent transparent;  
}

.-typeE .p-solution_comment_text:after {
  border-color: transparent #ecf7ed transparent transparent;  
}


.p-solution_comment_text strong {
  color:#e63556;
}

@media (max-width: 1160px) {
  

  .p-solution_block {
    background:url("../images/common/bg_type_a.svg") no-repeat right 0px top 100px;  
    background-size:350px;
    margin:100px 0 0 0;
    padding:20px 10px 0 10px;

  }
  
  .p-solution {
    border-top:solid 6px #3d3d3d;
  }

  .p-solution.p-base_label:before {
    margin-top:-39px;
  }
  .p-solution_title {
    font-size: 3.8rem;
    font-weight: 900;
    margin:40px 0;
  }

  .p-solution_subtitle {
    font-size: 2rem;
    font-weight: 700;
    margin:15px 0
  }

  .p-solution_text {
    margin:10px 0;
    text-indent:-1em;
    padding-left:1em;
  }

  .p-solution_output {
    margin:45px 0;
    display: flex;
    
  }

  .p-solution_output_textbox {
    
  }

  .p-solution_output_label {
    color:#fff;
    background:#00a4e3;
    font-size: 1.8rem;
    padding:2px 10px ;
    margin:0 25px 15px 0; 
    display: inline-block;
  }

  .p-solution_output_text {
    line-height:1.4;
    font-weight: 500; 
    margin:0 25px 0 0 ;
  }

  .p-solution_output_imgbox {
    
  }

  .p-solution_comment {
    background:#e5f6fc;
    border-radius:12px;
    padding:30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .p-solution_comment_icon {
    width:88px;
    text-align: center;
    margin:0 40px 0 0 ; 
  }



  .p-solution_comment_text {
    flex:1;
    font-size: 1.9rem;
    line-height:1.6;
    border-left:solid 3px #fff;
    padding:0 0 0 25px;
    position: relative;
  }

  .p-solution_comment_text:before {
    content:"";
    position:absolute;
    bottom:-36px;
    top:50%;
    left:-20px;
    transform:translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12.5px 20px 12.5px 0;
    border-color: transparent #fff transparent transparent;  
  }

  .p-solution_comment_text:after {
    content:"";
    position:absolute;
    bottom:-36px;
    top:50%;
    left:-15px;
    transform:translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 18px 11px 0;
    border-color: transparent #e5f6fc transparent transparent;  
  }




} /* end case-1160 */

@media (max-width: 767px) {
  
  .p-solution_block {
    background:url("../images/common/bg_type_a.svg") no-repeat right 12px top 32px;  
    background-size:80px;
    margin:15px 0 0 0;
    padding:20px 0 0 0;

  }
  
  .p-solution {
    border-top:solid 3px #3d3d3d;
  }

  .p-solution.p-base_label:before {
    margin-top:0px;
    font-size: 1.8rem;
  }
  .p-solution_title {
    font-size: 1.8rem;
    font-weight: 900;
    margin:30px 0 0 0 ;
  }

  .p-solution_subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    margin:10px 0 5px 0 ;
  }

  .p-solution_text {
    font-size: 1.2rem;
    margin:5px 0;
  }

  .p-solution_output {
    margin:15px 0;
    display: flex;
    flex-direction: column;
  }

  .p-solution_output_textbox {
    
  }

  .p-solution_output_label {
    color:#fff;
    background:#00a4e3;
    font-size: 1.2rem;
    padding:2px 10px ;
    margin:0 5px 5px 0; 
    display: inline-block;
  }

  .p-solution_output_text {
    line-height:1.4;
    font-weight: 500; 
    margin:0 5px 0 0 ;
    font-size: 1.2;
    font-size: 1.2rem;
    
  }

  .p-solution_output_imgbox {
    width:50%;
    margin:10px auto;
    min-height: 1%;
  }

  .p-solution_comment {
    border-radius:8px;
    padding:15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .p-solution_comment_icon {
    width:55px;
    text-align: center;
    margin:0 20px 0 0 ; 
    font-size: 1rem;
  }

  .p-solution_comment_icon figure {
    width:80%;
    margin:0 auto;
  }

  .p-solution_comment_text {
    flex:1;
    font-size: 1.1rem;
    line-height:1.6;
    border-left:solid 3px #fff;
    padding:0 0 0 15px;
    position: relative;
  }

  .p-solution_comment_text:before {
    content:"";
    position:absolute;
    bottom:-36px;
    top:50%;
    left:-20px;
    transform:translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12.5px 20px 12.5px 0;
    border-color: transparent #fff transparent transparent;  
  }

  .p-solution_comment_text:after {
    content:"";
    position:absolute;
    bottom:-36px;
    top:50%;
    left:-15px;
    transform:translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 18px 11px 0;
    border-color: transparent #e5f6fc transparent transparent;  
  }


} /* end case-768 */


/* -----------------------------------------------
  .p-panel
----------------------------------------------- */

.p-panel {
  display: flex;
  position: relative;
  background-color: #fff;
  padding:55px;
  margin:85px 0 0 0 ;
}

.p-panel:before {
  position: absolute;
  margin: 0;
  top:-35px;
  left:50%;
  transform:translateX(-50%);
}

.p-panel:after {
  content:"";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 26px 26px 0 0;
  border-color: #f2f2f2 transparent transparent transparent;
  position: absolute;
  top:0;
  left:0;
}

.p-panel_textbox {
  flex:1;
}

.p-panel_title {
  position: relative;
  margin:0 0  20px  0;
  font-weight: 900;
  font-size: 3.6rem;
  font-size: 3.3rem
}

.p-panel_subtitle {
  font-size: 3.6rem;
  font-size: 3.3rem;
  font-weight: 900;
  margin:0 0  30px  0;

}

.p-panel_subtitle span {
  font-weight: 500;
}

.p-panel_text {
  
}

.p-panel_imagebox {
  margin:0 0 0 55px ;
  width:50%;
  min-height: 1%;
}

@media (max-width: 1160px) {
  
  .p-panel {
    padding:55px;
    margin:85px 0 0 0 ;
  }


  .p-panel_textbox {
    flex:1;
  }

  .p-panel_title {
    font-size: 3rem
  }

  .p-panel_subtitle {
    font-size: 3rem;
  }


  .p-panel_text {
    
  }

  .p-panel_imagebox {
    margin:0 0 0 25px ;
    width:30%;
  }

} /* end case-1160 */


@media (max-width: 767px) {
  
  .p-panel {
    display: flex;
    position: relative;
    background-color: #fff;
    padding:25px;
    margin:25px 0 0 0 ;
    flex-direction: column;
  }

  .p-panel:before {
    position: absolute;
    margin: 0;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
  }

  .p-panel:after {
    border-width: 13px 13px 0 0;
  }

  .p-panel_textbox {
    flex:0 1 auto;
  }

  .p-panel_title {
    margin:0 0  5px  0;
    font-size: 1.5rem;
  }

  .p-panel_subtitle {
    font-size: 1.5rem;
    margin:0 0  10px  0;

  }
  
  .p-panel_imagebox {
    margin:20px 0 0 0px ;
    width:100%;
  }

} /* end case-768 */

.p-base_table {
  margin:15px 0 0 0;
}

.p-base_table table {
  width:100%;
  border-bottom:solid 7px #3d3d3d;
}

.p-base_table caption {
  text-align: right;
  font-size: 2rem;
  padding:0 0 5px 0;
}



.p-base_table tr {
  border-top:solid 7px #3d3d3d;
}


.p-base_table th {
  width:33%;
  text-align:left;
  height: 145px;
  padding:5px 25px 5px 75px;
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
}

.p-base_table td {
  width:33%;
  line-height: 1.5;
  padding:5px 5px 5px 25px;
  font-size: 2rem;
  font-weight: 700;
}

.p-base_table td.-bg_gray {
  background:#f2f2f2;
  font-size: 1.8rem;
  font-weight: 400;
  padding:5px 20px;
}

.p-base_table .p-base_label:before {
  width:50px;
  height:50px;
  line-height: 50px;
  margin:0;
  position: absolute;
  top:50%;
  top:69px;
  left:0;
  transform: translateY(-50%);
  font-size: 3rem;
} 

.p-contact_block {
  background: #ffc9cf;
  padding:40px;
  border-radius: 20px;
  max-width:560px;
  margin:30px auto -60px auto;
}

.p-contact_text {
  font-size: 2.4rem;
  font-weight: 900;
  text-align: center;
  margin:0 0 20px 0;
}

.p-contact_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width:450px;
  background: #e63556;
  color:#fff;
  font-size: 3.4rem;
  font-weight: 900;
  border-bottom:solid 3px #3d3d3d;
  padding:30px 5px;
  margin: 0 auto ;
}

.p-contact_btn:hover {
  text-decoration: none;
  opacity: 0.7;
}

.p-contact_btn.-floating {
  border-width: 2px;
  padding:14px;
  font-size: 1.8rem;
  position: fixed;
  bottom:40px;
  min-width:328px;
  left:50%;
  transform:translateX(-50%);
  opacity:0;
  z-index:-1;
  transition:0.8s;
}

.p-contact_btn.-floating.-active {
  opacity:1;
  z-index: 1; 
  transition:0.8s;

}

.p-contact_btn.-floating.-active:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .p-base_table table {
    border-bottom:none;
    margin:20px 0 0 0;
  }

  .p-base_table caption {
    text-align: right;
    font-size: 1rem;
    padding:0 0 5px 0;
  }



  .p-base_table tr {
    border-top:solid 3px #3d3d3d;
  }


  .p-base_table th {
    display: block;
    width:100%;
    text-align:left;
    height: auto;
    padding:25px 0 5px 0 ;
    font-size: 1.9rem;
    font-weight: 900;
    position: relative;
  }

  .p-base_table td {
    display: block;
    width:100%;
    line-height: 1.5;
    padding:5px 0 35px 0;
    font-size: 1.5rem;
    font-weight: 900;
  }

  .p-base_table td.-bg_gray {
    background:transparent;
    font-size: 1.2rem;
    font-weight: 400;
    padding:5px 0px;
  }

  .p-base_table tr:last-of-type td {
    padding-bottom:0;
  }

  .p-base_table .p-base_label:before {
    width:30px;
    height:30px;
    line-height: 30px;
    margin:0;
    position: absolute;
    top:0px;
    left:50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
  } 

  .p-contact_block {
    background: #ffc9cf;
    padding:30px;
    border-radius: 12px;
    max-width:100%;
    margin:0px auto 30px auto;
  }

  .p-contact_text {
    font-size: 1.5rem;
    font-weight: 900;
    text-align: center;
    margin:0 0 20px 0;
  }

  .p-contact_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width:100%;
    background: #e63556;
    color:#fff;
    font-size: 5vw;
    font-weight: 700;
    border-bottom:solid 3px #3d3d3d;
    padding:15px 5px;
    
  }

  .p-contact_btn:hover {
    text-decoration: none;
    opacity: 0.7;
  }

  .p-contact_btn.-floating {
    border-width: 2px;
    padding:8px;
    font-size: 1.4rem;
    position: fixed;
    bottom:40px;
    min-width:45px;
    width:60%;
    left:50%;
    transform:translateX(-50%);
    opacity:0;
    z-index:-1;
    transition:0.8s;
  }

} /* end case-768 */











.p-base_color_a {
  color:#00a4e3;
}

.p-base_color_b {
  color:#5876b8;
}
.p-base_color_c {
  color:#6355a1;
}

.p-base_color_d {
  color:#00a0a7;
}

.p-base_color_e {
  color:#42b049;
}

.p-base_bg_a {
  background-color:#00a4e3;
}

.p-base_bg_b {
  background-color:#5876b8 ;
}

.p-base_bg_c {
  background-color:#6355a1;
}

.p-base_bg_d {
  background-color:#00a0a7;
}

.p-base_bg_e {
  background-color:#42b049;
}

.p-base_bg_a_pale {
  background-color:#e5f6fc;
}

.p-base_bg_b_pale {
  background-color:#eef1f8;
}

.p-base_bg_c_pale {
  background-color:#efeef6;
}

.p-base_bg_d_pale {
  background-color:#e5f5f6;
}

.p-base_bg_e_pale {
  background-color:#ecf7ed;
}


/* -----------------------------------------------
  .c-animate
----------------------------------------------- */

.c-animate_slideup {
  opacity:0;
  transform:translateY(25%);
  transition: transform 1s , opacity 1s;
}
.c-animate_slideup.-active {
  opacity:1;
  transform:translateY(0);
  transition: transform 1s , opacity 1s;
}

.c-animate_slidein__left {
  opacity:0;
  transform:translateX(-100%);
  transition: 1s
}
.c-animate_slidein__left.-active {
  opacity:1;
  transform:translateX(0%);
  transition: 1s
}

.c-animate_slidein__right {
  opacity:0;
  transform:translateX(100%);
  transition: 1s
}

.c-animate_slidein__right.-active {
  opacity:1;
  transform:translateX(0%);
  transition: 1s
}

.c-animate_bounce {
  opacity:0;
  transform:scale(0);
  transition: opacity .8s 0s, transform .8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s, -webkit-transform .8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}

.c-animate_bounce.-active {
  opacity:1;
  transform:scale(1);
}

/* -----------------------------------------------
  .p-scroll
----------------------------------------------- */
.p-scroll_balloon  {
  display: none;
}

@media (max-width: 767px) {
  .p-scroll_balloon {
    display: block;
    position: relative;
    padding: 7px 10px;
    background: #828999;
    color: #fff;
    font-size: 1.1rem;
  }
  .p-scroll_balloon.-top {
    margin-bottom: 7px;
  }
  .p-scroll_balloon.-top::after {
    display: block;
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-width: 7px 5.5px 0 5.5px;
    border-style: solid;
    border-color: #828999 transparent transparent transparent;
    content: '';
  }
  .p-scroll_balloon.-bottom {
    margin-top: 7px;
  }
  .p-scroll_balloon.-bottom::before {
    display: block;
    position: absolute;
    top: -7px;
    right: 0;
    left: 0;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-width: 0 5.5px 7px 5.5px;
    border-style: solid;
    border-color: transparent transparent #828999 transparent;
    content: '';
  }
  .p-scroll_wrap {
    -webkit-overflow-scrolling: touch;
    margin: 2px 0;
    padding: 7px 0;
    overflow-x: auto;
  }
  .p-scroll_wrap::-webkit-scrollbar {
    height: 2px;
    background: #f2f2f2;
  }
  .p-scroll_wrap::-webkit-scrollbar-thumb {
    background: #d9d9d9;
  }
  .p-scroll_contents {
    width: 796px;
  }
}


/* -----------------------------------------------
  .p-snsList
----------------------------------------------- */
.p-snsList {
  display: flex;
  justify-content: flex-end;
  line-height: 1;
}

.p-snsList_item + .p-snsList_item {
  margin-left: 5px;
}

/* Slider */
.slick-slider {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  display: block;
  position: relative;
  touch-action: pan-y;
  user-select: none;
}

.slick-list {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
  -webkit-animation: fadeIn 2s ease 0s;
          animation: fadeIn 2s ease 0s;
}

.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 {
  display: flex;
  position: relative;
  top: 0;
  left: 0;
  margin: 0 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;
  min-height: 1px;
  float: left;
}

[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;
}

/* Slider */
/* Arrows */
.slick-prev,
.slick-next {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  display: block;
  z-index: 1;
  position: absolute;
  top: 50%;
  width: 40px;
  height: 80px;
  padding: 0;
  transform: translate(0, -50%);
  border: none;
  outline: none;
  background: #000;
  background: rgba(0, 0, 0, 0.6);
  color: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  opacity: .7;
}

.slick-prev::before,
.slick-next::before {
  display: inline-block;
  width: 19px;
  height: 19px;
  content: '';
}

.slick-prev {
  left: 0;
}

[dir='rtl'] .slick-prev {
  right: 0;
  left: auto;
}

.slick-prev::before {
  margin-left: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
}

.slick-next {
  right: 0;
}

[dir='rtl'] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next::before {
  margin-right: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

@media (max-width: 767px) {
  .slick-prev {
    left: -18px;
  }
  .slick-next {
    right: -18px;
  }
}

/*****************************************************
  Print
*****************************************************/
@media print {
  .l-main {
    margin-top: 0 !important;
  }
  .l-header {
    position: static !important;
  }
  .l-footer_pagetop {
    display: none !important;
  }
  .p-hero_main .slick-track {
    width: 100% !important;
  }
  .p-hero_main_item.slick-active {
    position: static !important;
  }
}

@media print and (max-width: 767px) {
  .l-main {
    margin-top: 0 !important;
  }
}

/*****************************************************
  Clears
*****************************************************/
.l-container:after {
  display: block;
  clear: both;
  content: '';
}
