@charset "UTF-8";
/* blockeffects */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes overlayIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes overlayIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
/*伸びたブロックを横に追いやるアニメーション*/
@-webkit-keyframes overlayOutL {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(102%);
            transform: translateX(102%);
  }
}
@keyframes overlayOutL {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(102%);
            transform: translateX(102%);
  }
}
@-webkit-keyframes overlayOutR {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-102%);
            transform: translateX(-102%);
  }
}
@keyframes overlayOutR {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-102%);
            transform: translateX(-102%);
  }
}
/* upeffects */
@-webkit-keyframes margintop {
  0% {
    margin-top: 100px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}
@keyframes margintop {
  0% {
    margin-top: 100px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}
/* webfont 変数　*/
/* ofi */
/* ========================================
 * foundation
 ======================================= */
/* html5reset-1.6.1.css */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, address,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  -webkit-text-size-adjust: none; /* added */
  margin: 0;
  padding: 0;
  border: 0;
  border-collapse: collapse; /* added */
  outline: 0;
  background: transparent;
  font-size: 100%;
  vertical-align: baseline;
}

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

address {
  font-style: normal;
}

nav ul {
  list-style: none;
}

ul li {
  list-style: none;
} /* added */
ol li {
  list-style: none;
} /* added */
blockquote, q {
  quotes: none;
}

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

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

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

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

del {
  text-decoration: line-through;
}

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

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

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

input, select {
  vertical-align: middle;
}

/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  line-height: 1.5; /* 2 */
  word-break: break-word; /* 6 */
  cursor: default; /* 1 */
     tab-size: 4; /* 3 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  margin: 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  padding: 0;
  list-style: none;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-size: 1em; /* 2 */
  font-family: monospace, monospace; /* 1 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-size: 1em; /* 2 */
  font-family: monospace, monospace; /* 1 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; /* 2 */
  border: 1px solid #a0a0a0; /* 1 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  color: inherit; /* 2 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  margin: auto;
  padding: 1em;
  border: solid;
  background-color: white;
  color: black;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation; /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden=false][hidden] {
  display: inline;
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

@font-face {
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/icomoon.eot?bbs74o");
  src: url("../fonts/icomoon.eot?bbs74o#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?bbs74o") format("truetype"), url("../fonts/icomoon.woff?bbs74o") format("woff"), url("../fonts/icomoon.svg?bbs74o#icomoon") format("svg");
  font-family: "icomoon";
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  speak: never;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  text-transform: none;
}

.icon-down_arrow:before {
  content: "\e313";
}

.icon-left_arrow:before {
  content: "\e314";
}

.icon-right_arrow:before {
  content: "\e315";
}

.icon-top_arrow:before {
  content: "\e316";
}

.icon-link:before {
  content: "\e900";
}

.icon-tag:before {
  content: "\e901";
}

.icon-check:before {
  content: "\e902";
}

.icon-arrow-up:before {
  content: "\e903";
}

.icon-pagetop:before {
  content: "\e904";
}

.icon-search:before {
  content: "\e905";
}

.icon-facebook:before {
  content: "\e906";
}

.icon-arrow-right:before {
  content: "\e907";
}

.icon-search-plus:before {
  content: "\e908";
}

.icon-phone:before {
  content: "\e909";
}

.icon-instagram:before {
  content: "\e90a";
}

.icon-home:before {
  content: "\e90b";
}

.icon-twitter:before {
  content: "\e90c";
}

.icon-line:before {
  content: "\e90d";
}

.icon-pin:before {
  content: "\e90e";
}

.icon-mail:before {
  content: "\e911";
}

.icon-youtube:before {
  content: "\e910";
}

.icon-facebook1:before {
  content: "\e912";
}

/*--------------------------------------------------------------------/
	body
/--------------------------------------------------------------------*/
html {
  font-size: 100%;
}

body {
  word-wrap: break-word;
  overflow-x: hidden;
  background: #fff;
  color: #202020;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  font-family: -apple-system, BlinkMacSystemFont, "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothicM, YuGothic, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.1em;
}

/*
section:after,
article:after {
	content: "";
	clear: both;
	display: block;
}
*/
/* heading 
----------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
}

/* a,img
----------------------------------------------------------------*/
a {
  color: #0E246B;
  vertical-align: top;
}
a:link, a:visited {
  text-decoration: underline;
}
a:hover, a:active {
  text-decoration: none;
}
a img {
  display: block;
  width: 100%;
}
a.hover img {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
a.hover img:hover {
  opacity: 0.6;
}
a[href*="javascript:void(0);"] {
  cursor: default;
}

picture img {
  width: 100%;
}

/* tel-link */
.tel-link a {
  text-decoration: none !important;
}

[id*=link-],
.scroll-position {
  margin-top: -64px;
  padding-top: 64px;
}

/* scroll-bar */
.scroll-bar::-webkit-scrollbar {
  width: 8px;
}
.scroll-bar::-webkit-scrollbar-track {
  background: transparent;
}
.scroll-bar::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 0 1px #fff;
  border-radius: 8px;
  background: #C9CED2;
          box-shadow: inset 0 0 0 1px #fff;
}

/* CSS Document */
/*====================================================================

	common.css

=====================================================================*/
/*--------------------------------------------------------------------/
	loader
/--------------------------------------------------------------------*/
.loader {
  z-index: 11;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: #fff;
}
.loader-block {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          align-items: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
.loader-circle {
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  background: #0E246B;
}

/* sk-chase */
.sk-chase {
  -webkit-animation: sk-chase 2.5s infinite linear both;
  position: relative;
  width: 48px;
  height: 48px;
          animation: sk-chase 2.5s infinite linear both;
}
.sk-chase-wrap {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
          align-items: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}

.sk-chase-dot {
  -webkit-animation: sk-chase-dot 2s infinite ease-in-out both;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
          animation: sk-chase-dot 2s infinite ease-in-out both;
}
.sk-chase-dot::before {
  -webkit-animation: sk-chase-dot-before 2s infinite ease-in-out both;
  display: block;
  width: 25%;
  height: 25%;
  border-radius: 100%;
  background-color: #0E246B;
  content: "";
          animation: sk-chase-dot-before 2s infinite ease-in-out both;
}
.sk-chase-dot:nth-child(1), .sk-chase-dot:nth-child(1)::before {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}
.sk-chase-dot:nth-child(2), .sk-chase-dot:nth-child(2)::before {
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}
.sk-chase-dot:nth-child(3), .sk-chase-dot:nth-child(3)::before {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}
.sk-chase-dot:nth-child(4), .sk-chase-dot:nth-child(4)::before {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}
.sk-chase-dot:nth-child(5), .sk-chase-dot:nth-child(5)::before {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s;
}
.sk-chase-dot:nth-child(6), .sk-chase-dot:nth-child(6)::before {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s;
}

@-webkit-keyframes sk-chase {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes sk-chase {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes sk-chase-dot {
  80%, 100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes sk-chase-dot {
  80%, 100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes sk-chase-dot-before {
  50% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
  }
  100%, 0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes sk-chase-dot-before {
  50% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
  }
  100%, 0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/*--------------------------------------------------------------------/
	header
/--------------------------------------------------------------------*/
.header {
  -webkit-transition: all 0.3s ease-in 0s;
  z-index: 8;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  width: 100%;
  padding-top: 6.4px;
  padding-top: 0.4rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  background: rgba(255, 255, 255, .9);
  transition: all 0.3s ease-in 0s;
}
.h-inner {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding: 0 4%;
}
.h-flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  -ms-flex-item-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      align-self: center;
          justify-content: space-between;
}
.h-logo {
  display: inline-block;
  max-width: 240px;
  margin-top: 12.8px;
  margin-top: 0.8rem;
  font-weight: normal;
  letter-spacing: 0;
  text-align: left;
}
.h-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          align-items: center;
          justify-content: flex-end;
}
.h-tel {
  margin-left: 32px;
  margin-left: 2rem;
  color: #fff;
  font-size: 1.42em;
  font-family: Oswald, sans-serif;
}
.h-tel i {
  color: #78CAF2;
  font-size: 0.92em;
}
.h-tel a {
  color: #fff;
}
.header.c-header .h-tel {
  color: #fff;
}
.header.c-header .h-tel i {
  color: #fff;
}
.header.fixed .h-tel {
  color: #202020;
}
.header.fixed .h-tel a {
  color: #202020;
}
.header.fixed .h-tel i {
  color: #78CAF2;
}

.g-nav {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          justify-content: flex-end;
}
.g-nav .contact a {
  display: inline-block;
  padding: 11.2px 32px 11.2px 56px;
  padding: 0.7rem 2rem 0.7rem 3.5rem;
  background: #FDF405;
  color: #000 !important;
}
.g-nav .contact a:after {
  speak: never;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e911";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "icomoon" !important;
  text-transform: none;
}
.g-nav .contact a::after {
  position: absolute;
  top: calc(50% - 0.5em) !important;
  left: 32px !important;
  left: 2rem !important;
}
.g-nav .contact a::before {
  display: none;
}
.g-nav .contact a:hover {
  background: #1E43A7;
  color: #fff !important;
}
.g-nav .member {
  margin-right: 10px !important;
}
.g-nav .member a {
  display: inline-block;
  padding: 11.2px 32px 11.2px 56px;
  padding: 0.7rem 2rem 0.7rem 3.5rem;
  background: #0E246B;
  color: #fff !important;
}
.g-nav .member a::after {
  position: absolute;
  top: calc(50% - 0.8em) !important;
  left: 32px !important;
  left: 2rem !important;
  width: 16px;
  height: 16px;
  content: url(../../assets/img/common/Icon-User.svg);
}
.g-nav .member a::before {
  display: none;
}
.g-nav .member a:hover {
  background: #1E43A7;
  color: #fff !important;
}
.g-nav > li:not(:last-child) {
  margin-right: 32px;
  margin-right: 2rem;
}
.g-nav > li:nth-last-of-type(n+4) > a::after {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: -15px;
  width: 1px;
  height: 17px;
          transform: translateY(-50%);
  background-color: #C9CED2;
  content: "";
}
.g-nav > li:nth-last-of-type(n+3) {
  padding-top: 7px;
}
.g-nav > li > a {
  -webkit-transition: all 0.3s ease 0s;
  position: relative;
  position: relative;
  padding-bottom: 7px;
  color: #202020;
  font-weight: 700;
  font-size: 1.07em;
  text-decoration: none !important;
  vertical-align: middle;
  transition: all 0.3s ease 0s;
}
.g-nav > li > a::before {
  -webkit-transition: all 0.3s ease 0s;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #0E246B;
  content: "";
  transition: all 0.3s ease 0s;
}
.g-nav > li > a:hover::before {
  width: 100%;
}
.header.c-header .g-nav > li > a {
  color: #202020;
}
.header.c-header .g-nav > li > a::before {
  background-color: #0E246B;
}
.header.fixed .g-nav > li > a {
  color: #202020;
}
.header.fixed .g-nav > li > a::before {
  background-color: #0E246B;
}
.header.fixed .g-nav > li > a:hover {
  color: #0E246B;
}
.g-nav__lv2 {
  position: relative;
}
.g-nav__lv2:hover ul {
  visibility: visible;
  top: 46px;
  opacity: 1;
}
.g-nav__lv2 ul {
  -webkit-transition: all 0.3s ease 0s;
  visibility: hidden;
  z-index: 10;
  position: absolute;
  top: 36px;
  left: 0;
  width: 240px;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease 0s;
}
.g-nav__lv2 ul a {
  -webkit-transition: all 0.3s ease 0s;
  display: block;
  position: relative;
  padding: 12px 16px;
  padding: 0.75rem 1rem;
  background: #fff;
  color: #5d9e36;
  font-size: 1em;
  line-height: 1.4;
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
}
.g-nav__lv2 ul a:hover {
  background: #232729;
  color: #fff;
}

.pc-lv2 {
  position: relative;
}
.pc-lv2:hover ul {
  visibility: visible;
  top: 48px;
  opacity: 1;
}
.pc-lv2 ul {
  -webkit-transition: all 0.3s ease 0s;
  visibility: hidden;
  z-index: 10;
  position: absolute;
  top: 30px;
  left: 0;
  width: 240px;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease 0s;
}
.pc-lv2 ul a {
  -webkit-transition: all 0.3s ease 0s;
  display: block;
  position: relative;
  padding: 12px 16px;
  padding: 0.75rem 1rem;
  background: #232729;
  color: #fff;
  font-size: 1em;
  line-height: 1.4;
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
}
.pc-lv2 ul a:hover {
  background: #FDF405;
  color: #202020;
}

/*--------------------------------------------------------------------/
		sp-nav
/--------------------------------------------------------------------*/
.body-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

@-webkit-keyframes menu-bar01 {
  0% {
    -webkit-transform: translateY(7px) rotate(45deg);
            transform: translateY(7px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(7px) rotate(0);
            transform: translateY(7px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}

@keyframes menu-bar01 {
  0% {
    -webkit-transform: translateY(7px) rotate(45deg);
            transform: translateY(7px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(7px) rotate(0);
            transform: translateY(7px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes menu-bar02 {
  0% {
    -webkit-transform: translateY(-7px) rotate(-45deg);
            transform: translateY(-7px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-7px) rotate(0);
            transform: translateY(-7px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    -webkit-transform: translateY(-7px) rotate(-45deg);
            transform: translateY(-7px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-7px) rotate(0);
            transform: translateY(-7px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(7px) rotate(0);
            transform: translateY(7px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(7px) rotate(45deg);
            transform: translateY(7px) rotate(45deg);
  }
}
@keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(7px) rotate(0);
            transform: translateY(7px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(7px) rotate(45deg);
            transform: translateY(7px) rotate(45deg);
  }
}
@-webkit-keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-7px) rotate(0);
            transform: translateY(-7px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-7px) rotate(-45deg);
            transform: translateY(-7px) rotate(-45deg);
  }
}
@keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-7px) rotate(0);
            transform: translateY(-7px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-7px) rotate(-45deg);
            transform: translateY(-7px) rotate(-45deg);
  }
}
/* スマホメニュー */

.hamburger {
  z-index: 10;
  position: fixed;
  top: 0px;
  top: 0rem;
  right: 0;
}
.open .hamburger-btn {
  background: transparent;
}
.hamburger-btn {
  -webkit-transition: all 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: relative;
  width: 52px;
  height: 52px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.4s;
}
.hamburger-btn span {
  -webkit-transition: all 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  position: absolute;
  left: 17px;
  width: 18px;
  height: 1px;
  border-radius: 2px;
  background-color: #0E246B;
  transition: all 0.4s;
}
.hamburger.fixed .hamburger-btn span {
  background-color: #202020;
}
.hamburger-btn span:nth-of-type(1) {
  -webkit-animation: menu-bar01 0.75s forwards;
  top: 18px;
          animation: menu-bar01 0.75s forwards;
}
.hamburger-btn span:nth-of-type(2) {
  -webkit-transition: all 0.25s 0.25s;
  top: 25px;
  opacity: 1;
  transition: all 0.25s 0.25s;
}
.hamburger-btn span:nth-of-type(3) {
  -webkit-animation: menu-bar02 0.75s forwards;
  bottom: 19px;
          animation: menu-bar02 0.75s forwards;
}
.hamburger-btn.active span {
  background-color: #fff;
}
.hamburger-btn.active span:nth-of-type(1) {
  -webkit-animation: active-menu-bar01 0.75s forwards;
          animation: active-menu-bar01 0.75s forwards;
}
.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active span:nth-of-type(3) {
  -webkit-animation: active-menu-bar03 0.75s forwards;
          animation: active-menu-bar03 0.75s forwards;
}

.sp-nav__list > li {
  width: 100%;
  margin: 0 auto;
  margin-top: -15px;
  border-bottom: 1px solid #fff;
  text-align: left;
  opacity: 0;
}
.sp-nav__list > li a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: relative;
  height: 60px;
  padding-left: 16px;
  padding-left: 1rem;
  color: #fff;
  line-height: 60px;
  text-decoration: none;
}
.sp-nav__list .sub-menu {
  display: none;
}
.sp-nav__list .sub-menu li {
  border-top: 1px dotted #fff;
}
.sp-nav__list .sub-menu li a {
  padding-left: 16px;
  padding-left: 1rem;
}
.sp-nav__list .sub-menu li a::before {
  margin-right: 12px;
  margin-right: 0.75rem;
  content: "-";
}

.sp-lv2 {
  position: relative;
  width: 100%;
}
.sp-lv2 > a::before, .sp-lv2 > a::after {
  -webkit-transition: all 0.3s ease 0s;
  display: block;
  position: absolute;
  top: 50%;
  right: 8px;
  width: 10px;
  height: 1px;
  background-color: #fff;
  content: "";
  font-style: normal;
  transition: all 0.3s ease 0s;
}
.sp-lv2 > a::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.sp-lv2 > a::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.sp-lv2 > a.active::before {
  display: none;
}
.sp-lv2 > a.active::after {
  -webkit-transform: rotate(180deg);
  top: 50%;
          transform: rotate(180deg);
}

.sp-nav__tel {
  margin-top: 16px;
  margin-top: 1rem;
  padding: 12px 0;
  padding: 0.75rem 0;
  background: #fff;
  opacity: 0;
}
body.open .sp-nav__tel {
  -webkit-transition: all 0.5s ease 1.3s;
  opacity: 1;
  transition: all 0.5s ease 1.3s;
}
.sp-nav__tel__time {
  margin-right: auto;
  margin-left: auto;
  color: #0E246B;
  text-align: center;
}
.sp-nav__tel__num {
  font-weight: 400;
  font-size: calc(1.5rem + 0.43478vw - 1.21739px);
  line-height: 1.2;
  font-family: Oswald, sans-serif;
  text-align: center;
}
.sp-nav__tel__num span {
  display: block;
  color: #0E246B;
}
.sp-nav__tel__num span:before {
  speak: never;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e909";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "icomoon" !important;
  text-transform: none;
}
.sp-nav__tel__num span::before {
  margin-right: 3.2px;
  margin-right: 0.2rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  font-weight: 100;
  font-size: 0.8em;
  line-height: 1;
}
.sp-nav__tel__num .tel-link a {
  color: rgb(8, 21, 62);
}

body.open .sp-nav__list > li {
  margin-top: 0;
  opacity: 1;
}
body.open .sp-nav__list > li:nth-child(1) {
  -webkit-transition: 0.5s ease 0.3s;
  transition: 0.5s ease 0.3s;
}
body.open .sp-nav__list > li:nth-child(2) {
  -webkit-transition: 0.5s ease 0.4s;
  transition: 0.5s ease 0.4s;
}
body.open .sp-nav__list > li:nth-child(3) {
  -webkit-transition: 0.5s ease 0.5s;
  transition: 0.5s ease 0.5s;
}
body.open .sp-nav__list > li:nth-child(4) {
  -webkit-transition: 0.5s ease 0.6s;
  transition: 0.5s ease 0.6s;
}
body.open .sp-nav__list > li:nth-child(5) {
  -webkit-transition: 0.5s ease 0.7s;
  transition: 0.5s ease 0.7s;
}
body.open .sp-nav__list > li:nth-child(6) {
  -webkit-transition: 0.5s ease 0.8s;
  transition: 0.5s ease 0.8s;
}
body.open .sp-nav__list > li:nth-child(7) {
  -webkit-transition: 0.5s ease 0.9s;
  transition: 0.5s ease 0.9s;
}
body.open .sp-nav__list > li:nth-child(8) {
  -webkit-transition: 0.5s ease 1s;
  transition: 0.5s ease 1s;
}
body.open .sp-nav__list > li:nth-child(9) {
  -webkit-transition: 0.5s ease 1.1s;
  transition: 0.5s ease 1.1s;
}
body.open .sp-nav__list > li:nth-child(10) {
  -webkit-transition: 0.5s ease 1.2s;
  transition: 0.5s ease 1.2s;
}
body.open .sp-nav__list > li:nth-child(11) {
  -webkit-transition: 0.5s ease 1.3s;
  transition: 0.5s ease 1.3s;
}

/*----------------------------------------------------------------
	contents
----------------------------------------------------------------*/
/* wrapper */
/* main */
.main::after {
  display: block;
  clear: both;
  content: "";
}
.main img {
  display: block;
}

/* contents */
.contents {
  background: #fff;
}

.l-cont_lg {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 4%;
  padding-left: 4%;
}

.l-cont {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 4%;
  padding-left: 4%;
}

.l-cont_l {
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 4%;
  padding-left: 4%;
}

.l-cont_xxl {
  max-width: 1640px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 4%;
  padding-left: 4%;
}

/* contents-box */
.l-box {
  z-index: 1;
  position: relative;
  width: 100%;
}
.l-box:not(:last-of-type) {
  margin-bottom: 128px;
  margin-bottom: 8rem;
}

[class*=bg-box] {
  padding: 32px 4%;
  padding: 2rem 4%;
}

.bg-box--gray {
  background: #F5F8FB;
}

/* works-box */
.works-box {
  position: relative;
  background: #fff;
  text-align: left;
}
.works-box a {
  display: block;
  position: relative;
  height: 100%;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  border: 1px solid #E5E9EC;
  text-decoration: none !important;
}
.works-box a:hover .works-box__btn span {
  background-color: #FDF405;
}
.works-box__img {
  z-index: 1;
  position: relative;
  width: 100%;
  overflow: hidden;
  overflow: hidden;
}
.works-box__img::before {
  display: block;
  position: relative;
  padding-top: 66.66%;
  content: "";
}
.works-box__img > div,
.works-box__img figure,
.works-box__img a,
.works-box__img picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.works-box__txt {
  padding: 16px 8% 32px;
  padding: 1rem 8% 2rem;
  background: #fff;
  color: #202020;
}
.works-box__tit {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  font-size: calc(1rem + 0.32609vw - 0.91304px);
}
.works-box__type {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 1em;
}
.works-box__btn {
  position: absolute;
  bottom: 32px;
  bottom: 2rem;
  left: 8%;
  width: 84%;
}
.works-box__btn span {
  -webkit-transition: all 0.3s ease 0s;
  display: block;
  position: relative;
  width: 100%;
  padding: 12px 4%;
  padding: 0.75rem 4%;
  background-color: #000;
  color: #fff;
  font-weight: normal;
  line-height: 1.4;
  font-family: Oswald, sans-serif;
  text-align: center;
  text-decoration: none;
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
}

/* c-box(common box) */
.c-box1 {
  position: relative;
  background: #fff;
  text-align: left;
}
.c-box1 a {
  display: block;
  position: relative;
  height: 100%;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  border: 1px solid #E5E9EC;
  text-decoration: none !important;
}
.c-box1 a:hover .c-box1__btn span {
  background-color: #FDF405;
}
.c-box1__img {
  z-index: 1;
  position: relative;
  width: 100%;
  overflow: hidden;
  overflow: hidden;
}
.c-box1__img::before {
  display: block;
  position: relative;
  padding-top: 66.66%;
  content: "";
}
.c-box1__img > div,
.c-box1__img figure,
.c-box1__img a,
.c-box1__img picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-box1__txt {
  padding: 16px 8% 32px;
  padding: 1rem 8% 2rem;
  background: #fff;
  color: #202020;
}
.c-box1__tit {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  font-size: calc(1rem + 0.32609vw - 0.91304px);
}
.c-box1__btn {
  position: absolute;
  bottom: 32px;
  bottom: 2rem;
  left: 8%;
  width: 84%;
}
.c-box1__btn span {
  -webkit-transition: all 0.3s ease 0s;
  display: block;
  position: relative;
  width: 100%;
  padding: 12px 4%;
  padding: 0.75rem 4%;
  background-color: #000;
  color: #fff;
  font-weight: normal;
  line-height: 1.4;
  font-family: Oswald, sans-serif;
  text-align: center;
  text-decoration: none;
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
}

.c-box2 a {
  -webkit-transition: all 0.3s ease 0s;
  display: block;
  width: 100%;
  height: 100%;
  padding: 24px 4%;
  padding: 1.5rem 4%;
  color: #979DA4;
  text-decoration: none;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.c-box2 a:hover {
  background: #F5F8FB;
}
.c-box2 a:hover h3,
.c-box2 a:hover .txt {
  text-decoration: underline !important;
}
.c-box2__img {
  z-index: 1;
  position: relative;
  width: 100%;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  overflow: hidden;
}
.c-box2__img::before {
  display: block;
  position: relative;
  padding-top: 66.66%;
  content: "";
}
.c-box2__img > div,
.c-box2__img figure,
.c-box2__img a,
.c-box2__img picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-box2-date {
  line-height: 1.4;
  font-family: Oswald, sans-serif;
}
.c-box2 .txt {
  font-size: 14.08px;
  font-size: 0.88rem;
}

.c-box3 {
  position: relative;
  background: #fff;
  text-align: left;
}
.c-box3 a {
  -webkit-transition: all 0.3s ease 0s;
  display: block;
  position: relative;
  height: 100%;
  border: 1px solid #E5E9EC;
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
}
.c-box3 a:hover {
  border-color: #0E246B;
}
.c-box3 a:hover .c-box3__txt::after {
  color: #0E246B;
}
.c-box3__img {
  overflow: hidden;
}
.c-box3__txt {
  position: relative;
  padding: 16px 8% 32px;
  padding: 1rem 8% 2rem;
  background: #fff;
  color: #202020;
}
.c-box3__list .feed-date {
  padding-right: 16px;
  padding-right: 1rem;
}
.c-box3__tit {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  font-size: calc(1rem + 0.32609vw - 0.91304px);
}

/*----------------------------------------------------------------
	common-parts
----------------------------------------------------------------*/
/*	heading
/--------------------------------------------------------------------*/
.heading-tit, .table-tit {
  position: relative;
  margin-bottom: calc(2rem + 0.3em);
  padding-bottom: calc(0.5rem + 0.3em);
  font-weight: 500;
  font-size: calc(1.1rem + 0.43478vw - 1.21739px);
  line-height: 1.4;
  text-align: center;
}
.heading-tit::before, .table-tit::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 32px;
  width: 2rem;
  height: 3px;
  background-color: #FDF405;
  content: "";
}
.heading-tit::after, .table-tit::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  width: 32px;
  width: 2rem;
  height: 3px;
  background-color: #0E246B;
  content: "";
}

[class*=heading-tit2] {
  margin-bottom: calc(2rem + 0.3em);
  font-weight: 400;
  font-size: calc(1.14rem + 0.65217vw - 1.82609px);
  line-height: 1.4;
  text-align: center;
}
[class*=heading-tit2] b {
  display: block;
  font-weight: 400;
  font-size: calc(1.4rem + 1.08696vw - 3.04348px);
  font-family: Oswald, sans-serif;
}
[class*=heading-tit2] small {
  display: inline-block;
  position: relative;
  padding: 0 1.5em;
  font-size: 0.78em;
}
[class*=heading-tit2] small::before, [class*=heading-tit2] small::after {
  position: absolute;
  top: calc(50% + 1px);
  width: 1em;
  height: 1px;
  content: "";
}
[class*=heading-tit2] small::before {
  left: 0;
}
[class*=heading-tit2] small::after {
  right: 0;
}

.heading-tit2--black {
  color: #000;
}
.heading-tit2--black small::before, .heading-tit2--black small::after {
  background: #000;
}
.heading-tit2--white {
  color: #fff;
}
.heading-tit2--white small::before, .heading-tit2--white small::after {
  background: #fff;
}
.heading-tit2--main {
  color: #0E246B;
  font-weight: 500;
  line-height: 1.2;
}
.heading-tit2--main b {
  font-weight: 500;
}
.heading-tit2--main small {
  color: #202020;
}
.heading-tit2--main small::before, .heading-tit2--main small::after {
  display: none;
}

.heading-tit3 {
  position: relative;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  padding-bottom: calc(0.75rem + 0.3em);
  border-bottom: 1px solid #C9CED2;
  font-weight: 500;
  font-size: calc(1.14rem + 0.21739vw - 0.6087px);
  line-height: 1.4;
}
.heading-tit3::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 20%;
  min-width: 80px;
  min-width: 5rem;
  height: 1px;
  background-color: #0E246B;
  content: "";
}

.heading-tit4 {
  position: relative;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  font-weight: 400;
  font-size: calc(1.14rem + 0.21739vw - 0.6087px);
  line-height: 1.4;
  text-align: center;
}

/* teble用のタイトル */
/* ol
/--------------------------------------------------------------------*/
.common-ol {
  margin-left: 5px;
  counter-reset: ol-num;
}
.common-ol > li {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.4;
  text-indent: -1.5em;
}
.common-ol > li::before {
  padding-right: 0.5em;
  content: counter(ol-num) ".";
  text-align: center;
  counter-increment: ol-num;
}
.common-ol > li:not(:last-child) {
  margin-bottom: 11.2px;
  margin-bottom: 0.7rem;
}

/* ul
/--------------------------------------------------------------------*/
.common-ul {
  text-align: left;
}
.common-ul li {
  position: relative;
  padding-left: 24px;
  padding-left: 1.5rem;
  line-height: 1.4;
}
.common-ul li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  content: "●";
  color: #979DA4;
  font-size: 0.8em;
}
.common-ul li:not(:last-child) {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

.common-ul2 {
  margin-left: 5px;
  text-align: left;
}
.common-ul2 li {
  position: relative;
  padding-left: 16px;
  padding-left: 1rem;
  line-height: 1.4;
}
.common-ul2 li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
  color: #202020;
}
.common-ul2 li:not(:last-child) {
  margin-bottom: 4.8px;
  margin-bottom: 0.3rem;
}

.caution-ul {
  margin-left: 5px;
}
.caution-ul li {
  position: relative;
  padding-left: 19.2px;
  padding-left: 1.2rem;
  color: #E1091F;
  line-height: 1.4;
}
.caution-ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
}
.caution-ul li:not(:last-child) {
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

/* dl
/--------------------------------------------------------------------*/
.common-dl {
  margin-bottom: 32px;
  margin-bottom: 2rem;
  margin-left: 5px;
}
.common-dl dt {
  line-height: 1.4;
}
.common-dl dt:before {
  padding-right: 0.3em;
  content: "●";
}
.common-dl dd:not(:last-child) {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.common-dl2 {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
.common-dl2 dt {
  margin-bottom: 11.2px;
  margin-bottom: 0.7rem;
  padding-bottom: 11.2px;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #C9CED2;
  font-weight: 500;
  font-size: 1.28em;
  line-height: 1.4;
}
.common-dl2 dd:not(:last-child) {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

/* table
----------------------------------------------------------------*/
.common-table {
  width: 100%;
  margin-bottom: 32px;
  margin-bottom: 2rem;
  font-size: 1.07em;
}
.common-table tr {
  border-bottom: 1px solid #C9CED2;
}
.common-table tr:first-child {
  border-top: 1px solid #C9CED2;
}
.common-table th, .common-table td.column-1 {
  padding: 16px 0;
  padding: 1rem 0;
  font-weight: normal;
  text-align: left;
}
.common-table td.column-2 {
  padding: 16px 20px 16px 8px;
  padding: 1rem 1.25rem 1rem 0.5rem;
}

.common-table2 {
  width: 100%;
  margin-bottom: 32px;
  margin-bottom: 2rem;
  font-size: 1em;
}
.common-table2 tr {
  border-bottom: 1px solid #C9CED2;
}
.common-table2 tr:first-child {
  border-top: 1px solid #C9CED2;
}
.common-table2 th, .common-table2 td.column-1 {
  padding: 16px 4%;
  padding: 1rem 4%;
  background: #F5F8FB;
  font-weight: normal;
  text-align: left;
}
.common-table2 td {
  padding: 16px 4%;
  padding: 1rem 4%;
  background-color: #fff;
}

/* table press CSS */
.tablepress td,
.tablepress th {
  padding: none;
}

.tablepress tbody td,
.tablepress tfoot th {
  border-top: none !important;
}

/* cotegory */
.category-list {
  line-height: 1.4;
}
.category-list__tit {
  min-width: 110px;
}
.category-list .category-item {
  min-width: 140px;
  margin-right: 4.8px;
  margin-right: 0.3rem;
  margin-bottom: 6.4px;
  margin-bottom: 0.4rem;
  padding: 4.8px 16px;
  padding: 0.3rem 1rem;
  font-size: 12.96px;
  font-size: 0.81rem;
  vertical-align: top;
}
.category-list__items {
  font-size: 0;
}
.category-list__items > * {
  display: inline-block;
  display: inline-block;
  margin-right: 2.4px;
  margin-right: 0.15rem;
  margin-bottom: 3.2px;
  margin-bottom: 0.2rem;
  font-size: 1.14em;
}
.category-list__items a {
  -webkit-transition: all 0.3s ease 0s;
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
}
.category-list__items a:hover {
  opacity: 0.8;
}
.category-item {
  display: inline-block;
  padding: 3.2px 12px;
  padding: 0.2rem 0.75rem;
  background-color: #6F757B;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
}
.category-item--black {
  background-color: #000;
}

/* txt */
.txt p {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
.txt p:last-child {
  margin-bottom: 0;
}

/* align */
.align-right {
  margin: 0 0 11.2px 11.2px;
  margin: 0 0 0.7rem 0.7rem;
  float: right;
}
.align-left {
  margin: 11.2px 11.2px 0 0;
  margin: 0.7rem 0.7rem 0 0;
  float: left;
}
.align-center {
  display: block;
  margin: 0 auto 11.2px;
  margin: 0 auto 0.7rem;
}

/* Preload images */
body:after {
  display: none;
  content: url(../img/common/close.png) url(../img/common/loading.gif) url(../img/common/prev.png) url(../img/common/next.png);
}

body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  display: none;
  z-index: 9999;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

.lightbox {
  z-index: 10000;
  position: absolute;
  left: 0;
  width: 100%;
  font-weight: normal;
  line-height: 0;
  text-align: center;
}

.lightbox .lb-image {
  display: block;
  max-width: inherit;
  height: auto;
  max-height: none;
  /* Image border */
  border: 4px solid white;
  border-radius: 3px;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  *zoom: 1;
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  display: table;
  clear: both;
  content: "";
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  width: 100%;
  height: 25%;
  line-height: 0;
  text-align: center;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../img/common/loading.gif) no-repeat;
}

.lb-nav {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
}

.lb-prev, .lb-next {
  display: block;
  height: 100%;
  cursor: pointer;
}

.lb-nav a.lb-prev {
  -webkit-transition: opacity 0.6s;
  left: 0;
  width: 34%;
  float: left;
  background: url(../img/common/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  -webkit-transition: opacity 0.6s;
  right: 0;
  width: 64%;
  float: right;
  background: url(../img/common/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  *zoom: 1;
  width: 100%;
  margin: 0 auto;
  padding-top: 5px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.lb-dataContainer:after {
  display: table;
  clear: both;
  content: "";
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  padding-top: 8px;
  padding-top: 0.5rem;
  float: left;
  line-height: 1.1em;
  text-align: left;
}

.lb-data .lb-caption {
  font-weight: bold;
  font-size: 13px;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  padding-bottom: 1em;
  clear: left;
  color: #999999;
  font-size: 12px;
}

.lb-data .lb-close {
  -webkit-transition: opacity 0.2s;
  display: block;
  width: 30px;
  height: 30px;
  float: right;
  outline: none;
  background: url(../img/common/close.png) top right no-repeat;
  text-align: right;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/*--------------------------------------------------------------------/
/* common-contact
---------------------------------------------------------------------*/
.common-contact {
  padding: 0 0 64px;
  padding: 0 0 4rem;
  background-image: url(../img/common/common-contact_sp.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}
.common-contact__info {
  text-align: center;
}
.common-contact__tel {
  position: relative;
  color: #fff;
  font-size: calc(2rem + 0.43478vw - 1.21739px);
  font-family: Oswald, sans-serif;
}
.common-contact__tel:before {
  speak: never;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e909";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "icomoon" !important;
  text-transform: none;
}
.common-contact__tel::before {
  margin-right: 8px;
  margin-right: 0.5rem;
  font-size: 0.85em;
}
.common-contact__tel a {
  color: #fff !important;
}
.common-contact__btn {
  width: 90%;
  max-width: 350px;
}
.common-contact .heading-tit2--main {
  width: 90%;
  max-width: 280px;
  margin-right: auto;
  margin-left: auto;
  padding: 16px 0 24px;
  padding: 1rem 0 1.5rem;
  background-color: #FDF405;
}
.common-contact .area {
  width: 94%;
  max-width: 810px;
  margin-right: auto;
  margin-left: auto;
  padding: 24px 0 32px;
  padding: 1.5rem 0 2rem;
  background: rgba(6, 17, 53, .69);
}
.common-contact .area h3 {
  margin-bottom: 0.75em;
}

/*--------------------------------------------------------------------/
/* common-banner
-----------------------------------------------------------------*/
.common-banner {
  padding: 48px 0 32px;
  padding: 3rem 0 2rem;
}
.common-banner__list {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      flex-wrap: wrap;
}
.common-banner__list li {
  margin-bottom: 1.5em;
}
.common-banner__item a {
  -webkit-transition: all 0.3s ease 0s;
  display: block;
  border: 1px solid #E5E9EC;
  transition: all 0.3s ease 0s;
}
.common-banner__item a:hover {
  opacity: 0.7;
}
.common-banner__item a img {
  width: 100%;
}

/*--------------------------------------------------------------------/
	footer
/--------------------------------------------------------------------*/
footer {
  color: #202020;
}
footer .sns-list a {
  color: #979DA4;
  font-size: 16px;
  font-size: 1rem;
}
footer .sns-list a:hover {
  color: #fff;
}

.f-inner {
  padding: 40px 0;
  padding: 2.5rem 0;
  background: #F5F8FB;
}
.f-info__tit {
  max-width: 280px;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
.f-info__tit img {
  width: 100%;
}
.f-info address {
  color: #4B4D4E;
  font-size: 12.96px;
  font-size: 0.81rem;
  line-height: 1.5;
}
.f-nav__items:not(:last-child) {
  padding-right: 48px;
  padding-right: 3rem;
}
.f-nav__items li {
  line-height: 1.5;
}
.f-nav__items a {
  position: relative;
  padding-left: 1.5em;
  color: #4B4D4E;
  font-size: 14.08px;
  font-size: 0.88rem;
  text-decoration: none !important;
  text-indent: 1.5em;
}
.f-nav__items a::before {
  display: inline-block;
  width: 10px;
  height: 1px;
  margin-right: 12px;
  margin-right: 0.75rem;
  margin-left: -1.5em;
  background-color: #4B4D4E;
  content: "";
  vertical-align: middle;
}
.f-nav__items a:hover {
  text-decoration: underline !important;
}
.f-copy {
  padding: 16px;
  padding: 1rem;
  background: #232729;
  color: #fff;
  font-size: 12.96px;
  font-size: 0.81rem;
  text-align: left;
}

/* pagetop
--------------------------------------------------------------------*/
.pagetop {
  z-index: 6;
  position: fixed;
  right: 8px;
  right: 0.5rem;
  bottom: 16px;
  bottom: 1rem;
}
.pagetop a {
  -webkit-transition: all 0.3s ease 0s;
  display: block;
  height: 30px;
  font-size: 30.08px;
  font-size: 1.88rem;
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
}
.pagetop a:hover {
  color: #FDF405;
}
.pagetop i {
  vertical-align: top;
}

/*--------------------------------------------------------------------/
	column
/--------------------------------------------------------------------*/
/* 2column */

.l-col-4 {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      flex-wrap: wrap;
}
.l-col-4 > * {
  -ms-flex-preferred-size: 47.34%;
      flex-basis: 47.34%;
}
.l-col-4 > *:not(:nth-of-type(2n)) {
  margin-right: 5.31%;
}
.l-col-4 > *:nth-last-of-type(-n + 2) {
  margin-bottom: 0 !important;
}

.l-col-non-3 {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      flex-wrap: wrap;
}
.l-col-non-3 > * {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.l-col-non-4 {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      flex-wrap: wrap;
}
.l-col-non-4 > * {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.sns-list__side {
  z-index: 7;
  position: fixed;
  top: 40%;
  right: 8px;
  right: 0.5rem;
}
.sns-list__side ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          flex-direction: column;
          align-items: center;
}
.sns-list__side li {
  -ms-flex-negative: 1;
  -webkit-transform: translateX(42px);
      flex-shrink: 1;
  padding: 6.4px 0;
  padding: 0.4rem 0;
          transform: translateX(42px);
}
.sns-list__side li.active:nth-child(1) {
  -webkit-animation: 0.8s bounceInRight 0.3s forwards;
          animation: 0.8s bounceInRight 0.3s forwards;
}
.sns-list__side li.active:nth-child(2) {
  -webkit-animation: 0.8s bounceInRight 0.4s forwards;
          animation: 0.8s bounceInRight 0.4s forwards;
}
.sns-list__side li.active:nth-child(3) {
  -webkit-animation: 0.8s bounceInRight 0.5s forwards;
          animation: 0.8s bounceInRight 0.5s forwards;
}
.sns-list__side li.active:nth-child(4) {
  -webkit-animation: 0.8s bounceInRight 0.6s forwards;
          animation: 0.8s bounceInRight 0.6s forwards;
}
.sns-list__side li.active:nth-child(5) {
  -webkit-animation: 0.8s bounceInRight 0.7s forwards;
          animation: 0.8s bounceInRight 0.7s forwards;
}
.sns-list__side li a {
  -webkit-transition: all 0.3s ease 0s;
  display: block;
  position: relative;
  width: 32px;
  height: 32px;
  overflow: hidden;
  border-radius: 50%;
  background: #232729;
  line-height: 1;
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
}
.sns-list__side li a::before {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 52%;
          transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 100;
  font-size: 0.85em;
  text-align: center;
  vertical-align: middle;
}
.sns-list__side li a:hover {
  -webkit-transform: scale(1.15, 1.15);
          transform: scale(1.15, 1.15);
  background: #0E246B;
}
.sns-list__side li a.facebook:before {
  speak: never;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e912";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "icomoon" !important;
  text-transform: none;
}
.sns-list__side li a.facebook::before {
  font-size: 1em;
}
.sns-list__side li a.twitter:before {
  speak: never;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90c";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "icomoon" !important;
  text-transform: none;
}
.sns-list__side li a.twitter::before {
  font-size: 0.7em;
}
.sns-list__side li a.instagram:before {
  speak: never;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90a";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "icomoon" !important;
  text-transform: none;
}
.sns-list__side li a.Line:before {
  speak: never;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90d";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "icomoon" !important;
  text-transform: none;
}
.sns-list__side li a.youtube:before {
  speak: never;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e910";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "icomoon" !important;
  text-transform: none;
}

@-webkit-keyframes bounceInRight {
  to {
    -webkit-animation-timing-function: cubic-bezier(0.61, 0, 0.25, 1);
            animation-timing-function: cubic-bezier(0.61, 0, 0.25, 1);
  }
  from {
    -webkit-transform: translateX(42px);
            transform: translateX(42px);
  }
  40% {
    -webkit-transform: translateX(-16px);
            transform: translateX(-16px);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes bounceInRight {
  to {
    -webkit-animation-timing-function: cubic-bezier(0.61, 0, 0.25, 1);
            animation-timing-function: cubic-bezier(0.61, 0, 0.25, 1);
  }
  from {
    -webkit-transform: translateX(42px);
            transform: translateX(42px);
  }
  40% {
    -webkit-transform: translateX(-16px);
            transform: translateX(-16px);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.sns-list__sp {
  margin-right: auto;
  margin-left: auto;
  padding: 24px 10% 0;
  padding: 1.5rem 10% 0;
}
.sns-list__sp ul {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      flex-wrap: wrap;
          align-items: center;
          justify-content: center;
}
.sns-list__sp li {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  padding: 4.8px;
  padding: 0.3rem;
}
.sns-list__sp li a {
  -webkit-transition: all 0.3s ease 0s;
  display: block;
  position: relative;
  width: 32px;
  height: 32px;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  line-height: 1;
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
}
.sns-list__sp li a::before {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 52%;
          transform: translate(-50%, -50%);
  color: #0E246B;
  font-weight: 100;
  font-size: 1.25em;
  text-align: center;
  vertical-align: middle;
}
.sns-list__sp li a:hover {
  background: rgb(26, 66, 197);
}
.sns-list__sp li a.facebook:before {
  speak: never;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e912";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "icomoon" !important;
  text-transform: none;
}
.sns-list__sp li a.facebook::before {
  font-size: 1.25em;
}
.sns-list__sp li a.twitter:before {
  speak: never;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90c";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "icomoon" !important;
  text-transform: none;
}
.sns-list__sp li a.twitter::before {
  font-size: 1em;
}
.sns-list__sp li a.instagram:before {
  speak: never;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90a";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "icomoon" !important;
  text-transform: none;
}
.sns-list__sp li a.Line:before {
  speak: never;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90d";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "icomoon" !important;
  text-transform: none;
}
.sns-list__sp li a.youtube:before {
  speak: never;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e910";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "icomoon" !important;
  text-transform: none;
}

.sns-list__footer {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      flex-wrap: wrap;
}
.sns-list__footer > li:not(:last-child) {
  margin-right: 16px;
  margin-right: 1rem;
}
.sns-list__footer a {
  -webkit-transition: all 0.3s ease 0s;
  position: relative;
  color: #fff;
  font-weight: 400;
  font-size: 20px;
  font-size: 1.25rem;
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
}
.sns-list__footer a:hover {
  color: #979DA4;
}
.sns-list__footer a::before {
  position: absolute;
  top: 4.8px;
  top: 0.3rem;
  left: 0;
  font-weight: 100;
  font-size: 1em;
}
.sns-list__footer a.facebook:before {
  speak: never;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "icomoon" !important;
  text-transform: none;
}
.sns-list__footer a.twitter:before {
  speak: never;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90c";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "icomoon" !important;
  text-transform: none;
}
.sns-list__footer a.instagram:before {
  speak: never;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90a";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "icomoon" !important;
  text-transform: none;
}
.sns-list__footer a.Line:before {
  speak: never;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90d";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "icomoon" !important;
  text-transform: none;
}
.sns-list__footer a.youtube:before {
  speak: never;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e910";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "icomoon" !important;
  text-transform: none;
}

/*--------------------------------------------------------------------/
	pagination
/--------------------------------------------------------------------*/
/*-- next-prev --*/
.next-prev {
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
      flex-wrap: wrap;
          justify-content: center;
  color: #979DA4;
  font-weight: 500;
  font-size: 0;
  text-align: center;
}
.next-prev > * {
  margin-bottom: 8px !important;
  margin-bottom: 0.5rem !important;
}
.next-prev::after::after {
  display: block;
  clear: both;
  content: "";
}
.next-prev a {
  -webkit-transition: all 0.3s ease 0s;
  border: 1px solid #C9CED2;
  color: #979DA4;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.next-prev a:hover {
  border-color: #0E246B;
  background: #0E246B;
  color: #fff;
}
.next-prev__inner {
  display: inline-block;
}
.next-prev .prev, .next-prev .next {
  background: #C9CED2;
  color: #fff;
}

.page-numbers {
  -webkit-transition: 0.2 0.3s ease 0s;
  display: inline-block;
  min-width: 36px;
  min-height: 36px;
  margin: 0 3.2px;
  margin: 0 0.2rem;
  padding: 0 0.75em;
  color: #fff;
  font-size: 14.08px;
  font-size: 0.88rem;
  line-height: 1;
  line-height: 36px;
  vertical-align: top;
  transition: 0.2 0.3s ease 0s;
}
.page-numbers.current {
  border: 1px solid #0E246B;
  color: #0E246B;
}
.page-numbers.dots {
  color: #979DA4;
}

.nav-prev {
  margin-top: 24px;
  margin-top: 24px;
  margin-top: 1.5rem;
  float: left;
}

.nav-next {
  margin-top: 24px;
  margin-top: 24px;
  margin-top: 1.5rem;
  float: right;
}

/* print css
----------------------------------------------------------------*/

@media (min-width: 376px) {
  /*====================================================================/
  /*--iPhone 以上--
  /====================================================================*/
  .l-col-4-xs {
    -ms-flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-wrap: wrap;
  }
  .l-col-4-xs > * {
    -ms-flex-preferred-size: 47.34%;
        flex-basis: 47.34%;
  }
  .l-col-4-xs > *:not(:nth-of-type(2n)) {
    margin-right: 5.31%;
  }
  .l-col-4-xs > *:nth-last-of-type(-n + 2) {
    margin-bottom: 0 !important;
  }
  .l-col-non-3-xs {
    -ms-flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-wrap: wrap;
  }
  .l-col-non-3-xs > * {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .l-col-non-4-xs {
    -ms-flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-wrap: wrap;
  }
  .l-col-non-4-xs > * {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

@media (min-width: 576px) {
  /*====================================================================/
  /*--スマホ 以上--
  /====================================================================*/
  [class*=bg-box] {
    padding: 2rem 6%;
  }
  .c-box2 a {
    padding: 1.5rem 8%;
  }
  .l-col-2-sm {
    -ms-flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-wrap: wrap;
  }
  .l-col-2-sm > * {
    -ms-flex-preferred-size: 46.67%;
        flex-basis: 46.67%;
  }
  .l-col-2-sm > *:not(:nth-of-type(2n)) {
    margin-right: 6.66%;
  }
  .l-col-2-sm > *:nth-last-of-type(-n + 2) {
    margin-bottom: 0 !important;
  }
  .l-col-3-sm {
    -ms-flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-wrap: wrap;
  }
  .l-col-3-sm > * {
    -ms-flex-preferred-size: 47.4%;
        flex-basis: 47.4%;
  }
  .l-col-3-sm > *:not(:nth-of-type(2n)) {
    margin-right: 5.2%;
  }
  .l-col-3-sm > *:nth-last-of-type(-n + 2) {
    margin-bottom: 0 !important;
  }
  .l-col-3-sm2 {
    -ms-flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-wrap: wrap;
  }
  .l-col-3-sm2 > * {
    -ms-flex-preferred-size: 47.4%;
        flex-basis: 47.4%;
  }
  .l-col-3-sm2 > *:not(:nth-of-type(2n)) {
    margin-right: 5.2%;
  }
  .l-col-3-sm2 > *:nth-last-of-type(-n + 2) {
    margin-bottom: 0 !important;
  }
  .l-col-4-sm {
    -ms-flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-wrap: wrap;
  }
  .l-col-4-sm > * {
    -ms-flex-preferred-size: 48.26%;
        flex-basis: 48.26%;
  }
  .l-col-4-sm > *:not(:nth-of-type(2n)) {
    margin-right: 3.47%;
  }
  .l-col-4-sm > *:nth-last-of-type(-n + 2) {
    margin-bottom: 0 !important;
  }
  .l-col-non-4-sm {
    -ms-flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-wrap: wrap;
  }
  .l-col-non-4-sm > * {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  /*====================================================================/
  /*--スマホ以上 タブレット iPadmini未満--
  /====================================================================*/
}

@media (min-width: 768px) {
  /*====================================================================/
  /*--タブレット　iPadmini 以上--
  /====================================================================*/
  body {
    font-size: 15px;
  }
  .h-tel {
    font-size: 1.33em;
  }
  .h-tel i {
    font-size: 0.86em;
  }
  .g-nav > li > a {
    font-size: 1em;
  }
  .g-nav__lv2 ul a {
    font-size: 0.93em;
  }
  .pc-lv2 ul a {
    font-size: 0.93em;
  }
  .works-box__type {
    font-size: 0.93em;
  }
  .c-box3__flex {
    -webkit-box-align: center;
        -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
            align-items: center;
  }
  .c-box3__img {
    max-width: 178px;
    height: 100%;
    max-height: 118px;
  }
  .c-box3__txt {
    width: 85.17%;
    height: 100%;
    padding: 1.5rem 8% 1.5rem 4%;
  }
  .c-box3__txt:after {
    speak: never;
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e907";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    font-family: "icomoon" !important;
    text-transform: none;
  }
  .c-box3__txt::after {
    -webkit-transition: all 0.3s ease 0s;
    -webkit-transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 2%;
            transform: translateY(-50%);
    color: #C9CED2;
    transition: all 0.3s ease 0s;
  }
  .c-box3__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  [class*=heading-tit2] small {
    font-size: 0.73em;
  }
  .common-dl2 dt {
    font-size: 1.2em;
  }
  .common-table {
    font-size: 1em;
  }
  .common-table2 {
    font-size: 0.93em;
  }
  .category-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .category-list__tit {
    position: relative;
    margin-right: 0.5rem;
    padding-top: 0.1rem;
    padding-right: 1rem;
  }
  .category-list__tit::after {
    position: absolute;
    top: 0.3em;
    right: 0;
    width: 1px;
    height: 0.9em;
    background: #979DA4;
    content: "";
  }
  .category-list__items > * {
    font-size: 1.06em;
  }
  .common-contact {
    padding: 0 0 4rem;
    background-image: url(../img/common/common-contact_tb.jpg);
  }
  .common-contact__flex {
    -webkit-box-align: center;
        -ms-flex-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
            align-items: center;
            justify-content: center;
  }
  .common-contact__info {
    padding-right: 4%;
  }
  .common-contact__tel {
    font-size: calc(1.5rem + 1.38889vw - 10.66667px);
  }
  .common-contact__tel::before {
    font-size: 0.8em;
  }
  .f-copy__flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
    -webkit-box-align: center;
        -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
            flex-direction: row-reverse;
            align-items: center;
            justify-content: space-between;
  }
  .pagetop a {
    height: 40px;
    font-size: 2.5rem;
  }
  .l-col-3-md {
    -ms-flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-wrap: wrap;
  }
  .l-col-3-md > * {
    -ms-flex-preferred-size: 48.05%;
        flex-basis: 48.05%;
  }
  .l-col-3-md > *:not(:nth-of-type(2n)) {
    margin-right: 3.9%;
  }
  .l-col-3-md > *:nth-last-of-type(-n + 2) {
    margin-bottom: 0 !important;
  }
  .l-col-4-md {
    -ms-flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-wrap: wrap;
  }
  .l-col-4-md > * {
    -ms-flex-preferred-size: 48.05%;
        flex-basis: 48.05%;
  }
  .l-col-4-md > *:not(:nth-of-type(2n)) {
    margin-right: 3.9%;
  }
  .l-col-4-md > *:nth-last-of-type(-n + 2) {
    margin-bottom: 0 !important;
  }
  .sns-list__footer a::before {
    font-size: 0.93em;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /*====================================================================/
  /*--タブレット iPadmini以上 XGAサイズ iPadPro未満--
  /====================================================================*/
}

@media (min-width: 768px) and (max-width: 1256px) {
  .f-copy__flex {
    padding-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  /*====================================================================/
  /*--XGAサイズ　iPadPro 以上--
  /====================================================================*/
  body {
    font-size: 16px;
  }
  .h-tel {
    font-size: 1.25em;
  }
  .h-tel i {
    font-size: 0.81em;
  }
  .g-nav > li > a {
    font-size: 0.93em;
  }
  .g-nav__lv2 ul a {
    font-size: 0.87em;
  }
  .pc-lv2 ul a {
    font-size: 0.87em;
  }
  .l-box:not(:last-of-type) {
    margin-bottom: 10rem;
  }
  .works-box__tit {
    font-size: 1rem;
  }
  .works-box__type {
    font-size: 0.87em;
  }
  .c-box1__tit {
    font-size: 1rem;
  }
  .c-box2 a {
    padding: 2rem 16%;
  }
  [class*=heading-tit2] small {
    font-size: 0.68em;
  }
  .common-dl2 dt {
    font-size: 1.12em;
  }
  .common-table {
    font-size: 0.93em;
  }
  .common-table th, .common-table td.column-1 {
    width: 25%;
    min-width: 180px;
  }
  .common-table2 {
    font-size: 0.87em;
  }
  .common-table2 {
    font-size: 1.07em;
  }
  .common-table2 th, .common-table2 td.column-1 {
    width: 25%;
    min-width: 180px;
  }
  .category-list__items > * {
    font-size: 1em;
  }
  .common-contact__tel::before {
    font-size: 0.75em;
  }
  .common-banner {
    padding: 5rem 0 4rem;
  }
  .f-flex {
    -webkit-box-align: center;
        -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
            align-items: center;
  }
  .f-nav {
    -ms-flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-wrap: wrap;
    padding-left: 5%;
  }
  .l-col-3-sm > *:not(:nth-of-type(2n)) {
    margin-right: 0;
  }
  .l-col-3-sm > *:nth-last-of-type(-n + 2) {
    margin-bottom: auto;
  }
  .l-col-3-sm > * {
    -ms-flex-preferred-size: 30.66%;
        flex-basis: 30.66%;
  }
  .l-col-3-sm > *:not(:nth-of-type(3n)) {
    margin-right: 4%;
  }
  .l-col-3-sm > *:nth-last-of-type(-n + 3) {
    margin-bottom: 0 !important;
  }
  .l-col-3-sm2 > *:not(:nth-of-type(2n)) {
    margin-right: 0;
  }
  .l-col-3-sm2 > *:nth-last-of-type(-n + 2) {
    margin-bottom: auto;
  }
  .l-col-3-sm2 > * {
    -ms-flex-preferred-size: 31.33%;
        flex-basis: 31.33%;
  }
  .l-col-3-sm2 > *:not(:nth-of-type(3n)) {
    margin-right: 3%;
  }
  .l-col-3-sm2 > *:nth-last-of-type(-n + 3) {
    margin-bottom: 0 !important;
  }
  .l-col-3-md > *:not(:nth-of-type(2n)) {
    margin-right: 0;
  }
  .l-col-3-md > *:nth-last-of-type(-n + 2) {
    margin-bottom: auto;
  }
  .l-col-3-md > * {
    -ms-flex-preferred-size: 30.66%;
        flex-basis: 30.66%;
  }
  .l-col-3-md > *:not(:nth-of-type(3n)) {
    margin-right: 4%;
  }
  .l-col-3-md > *:nth-last-of-type(-n + 3) {
    margin-bottom: 0 !important;
  }
  .l-col-4 > *:not(:nth-of-type(2n)) {
    margin-right: 0;
  }
  .l-col-4 > *:nth-last-of-type(-n + 2) {
    margin-bottom: auto;
  }
  .l-col-4 > * {
    -ms-flex-preferred-size: 23.5%;
        flex-basis: 23.5%;
  }
  .l-col-4 > *:not(:nth-of-type(4n)) {
    margin-right: 2%;
  }
  .l-col-4 > *:nth-last-of-type(-n + 4) {
    margin-bottom: 0 !important;
  }
  .l-col-4-xs > *:not(:nth-of-type(2n)) {
    margin-right: 0;
  }
  .l-col-4-xs > *:nth-last-of-type(-n + 2) {
    margin-bottom: auto;
  }
  .l-col-4-xs > * {
    -ms-flex-preferred-size: 23.5%;
        flex-basis: 23.5%;
  }
  .l-col-4-xs > *:not(:nth-of-type(4n)) {
    margin-right: 2%;
  }
  .l-col-4-xs > *:nth-last-of-type(-n + 4) {
    margin-bottom: 0 !important;
  }
  .l-col-4-sm > *:not(:nth-of-type(2n)) {
    margin-right: 0;
  }
  .l-col-4-sm > *:nth-last-of-type(-n + 2) {
    margin-bottom: auto;
  }
  .l-col-4-sm > * {
    -ms-flex-preferred-size: 23.5%;
        flex-basis: 23.5%;
  }
  .l-col-4-sm > *:not(:nth-of-type(4n)) {
    margin-right: 2%;
  }
  .l-col-4-sm > *:nth-last-of-type(-n + 4) {
    margin-bottom: 0 !important;
  }
  .l-col-4-md > *:not(:nth-of-type(2n)) {
    margin-right: 0;
  }
  .l-col-4-md > * {
    -ms-flex-preferred-size: 23.5%;
        flex-basis: 23.5%;
  }
  .l-col-4-md > *:not(:nth-of-type(4n)) {
    margin-right: 2%;
  }
  .l-col-4-md > *:nth-last-of-type(-n + 4) {
    margin-bottom: 0 !important;
  }
  .l-col-non-3 > * {
    -ms-flex-preferred-size: 33.33%;
        flex-basis: 33.33%;
  }
  .l-col-non-3-xs > * {
    -ms-flex-preferred-size: 33.33%;
        flex-basis: 33.33%;
  }
  .l-col-non-3-lg {
    -ms-flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-wrap: wrap;
  }
  .l-col-non-3-lg > * {
    -ms-flex-preferred-size: 33.33%;
        flex-basis: 33.33%;
  }
  .l-col-non-4 > * {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
  .l-col-non-4-xs > * {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
  .l-col-non-4-sm > * {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
  .sns-list__footer a::before {
    font-size: 0.87em;
  }
}

@media (min-width: 1024px) and (max-width: 1256px) {
  /*====================================================================/
  /*--XGAサイズ iPadPro以上 PC未満--
  /====================================================================*/
}

@media (min-width: 1024px) and (min-width: 768px) {
  .common-table2 {
    font-size: 1em;
  }
}

@media (min-width: 1024px) and (min-width: 1024px) {
  .common-table2 {
    font-size: 0.93em;
  }
}

@media (min-width: 1257px) {
  /*====================================================================/
  /*---PC 以上--
  /====================================================================*/
  [id*=link-],
  .scroll-position {
    margin-top: -6rem;
    padding-top: 6rem;
  }
  .header {
    -webkit-transform: translateX(-50%);
    -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, .14);
    top: 17px;
    left: 50%;
    max-width: 96%;
    height: 70px;
    padding-top: 11px;
            transform: translateX(-50%);
    background: #fff;
            box-shadow: 0px 0px 8px rgba(0, 0, 0, .14);
  }
  .h-inner {
    padding: 0 15px;
  }
  .hamburger {
    display: none;
  }
  .sp-nav {
    display: none;
  }
  .sp-nav__tel__num {
    font-size: 1.75rem;
  }
  .l-cont_lg {
    padding-right: 20px;
    padding-left: 20px;
  }
  .l-cont {
    padding-right: 20px;
    padding-left: 20px;
  }
  .l-cont_l {
    padding-right: 20px;
    padding-left: 20px;
  }
  .l-cont_xxl {
    padding-right: 20px;
    padding-left: 20px;
  }
  .c-box3__tit {
    font-size: 1rem;
  }
  .heading-tit, .table-tit {
    font-size: 1.5rem;
  }
  [class*=heading-tit2] {
    font-size: 1.5rem;
  }
  [class*=heading-tit2] b {
    font-size: 2rem;
  }
  .heading-tit2--main b {
    font-size: 2.63rem;
  }
  .heading-tit2--main small {
    font-size: 0.85em;
  }
  .heading-tit3 {
    font-size: 1.25rem;
  }
  .heading-tit4 {
    font-size: 1.25rem;
  }
  .common-table th, .common-table td.column-1 {
    width: 225px;
  }
  .common-table2 th, .common-table2 td.column-1 {
    width: 225px;
  }
  .common-contact {
    background-image: url(../img/common/common-contact_pc.jpg);
  }
  .common-contact__tel {
    font-size: 3rem;
  }
  .common-contact__btn .btn-arrow--whitebg {
    font-size: 1.19rem;
  }
  .l-col-3-sm > * {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
  }
  .l-col-3-sm > *:not(:nth-of-type(3n)) {
    margin-right: 5%;
  }
  .l-col-3-sm > *:nth-last-of-type(-n + 3) {
    margin-bottom: 0 !important;
  }
  .l-col-3-sm2 > * {
    -ms-flex-preferred-size: 31.11%;
        flex-basis: 31.11%;
  }
  .l-col-3-sm2 > *:not(:nth-of-type(3n)) {
    margin-right: 3.33%;
  }
  .l-col-3-sm2 > *:nth-last-of-type(-n + 3) {
    margin-bottom: 0 !important;
  }
  .l-col-3-md > * {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
  }
  .l-col-3-md > *:not(:nth-of-type(3n)) {
    margin-right: 5%;
  }
  .l-col-3-md > *:nth-last-of-type(-n + 3) {
    margin-bottom: 0 !important;
  }
}

@media (min-width: 1257px) and (max-width: 1639px) {
  /*====================================================================/
  /*--px以上 Large PC未満--
  /====================================================================*/
}

@media (min-width: 1257px) and (min-width: 768px) {
  .heading-tit2--main small {
    font-size: 0.8em;
  }
}

@media (min-width: 1257px) and (min-width: 1024px) {
  .heading-tit2--main small {
    font-size: 0.75em;
  }
}

@media (min-width: 1640px) {
  /*====================================================================/
  /*--Large PC 以上--
  /====================================================================*/
  .h-logo {
    max-width: 395px;
    margin-top: 0.3rem;
  }
}

@media (max-width: 1639px) {
  /*====================================================================/
  /*--Large PC 未満--
  /====================================================================*/
  .sp-nav {
    visibility: hidden;
    z-index: 9;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 36, 107, .9);
    /* クローズボタン　*/
    /* snsボタン　*/
  }
  body.open .sp-nav {
    -webkit-transition: 0.5 0.3s ease 0s;
    visibility: visible;
    cursor: "", auto;
    opacity: 1;
    transition: 0.5 0.3s ease 0s;
  }
  .sp-nav__inner {
    -webkit-overflow-scrolling: touch;
    position: relative;
    width: 80%;
    height: 100%;
    margin: 4rem 10% 0;
    padding-bottom: 8rem;
    overflow-y: auto;
  }
  .sp-nav .close-wrap {
    margin-top: 1rem;
    opacity: 0;
  }
  body.open .sp-nav .close-wrap {
    -webkit-transition: all 0.5s ease 1.4s;
    opacity: 1;
    transition: all 0.5s ease 1.4s;
  }
  .sp-nav .close-wrap a {
    display: block;
    width: 100%;
    height: 60px;
    border: 1px solid #fff;
    color: #fff;
    font-weight: 400;
    line-height: 1.2;
    line-height: 60px;
    font-family: Oswald, sans-serif;
    text-align: center;
    text-decoration: none !important;
  }
  .sp-nav .close-wrap a::before {
    margin-right: 0.3rem;
    content: "×";
    font-family: Noto Sans JP, sans-serif;
  }
  .sp-nav .sns-list__sp {
    opacity: 0;
  }
  body.open .sp-nav .sns-list__sp {
    -webkit-transition: all 0.5s ease 1.2s;
    opacity: 1;
    transition: all 0.5s ease 1.2s;
  }
}

@media (max-width: 1256px) {
  /*====================================================================/
  /*--PC 未満--
  /====================================================================*/
  .h-logo {
    margin-top: 0.5rem;
  }
  .h-tel {
    display: none;
  }
  .global {
    display: none;
  }
  .close-btn a {
    text-decoration: none !important;
  }
  .sns-list__side {
    display: none;
  }
}

@media (max-width: 1023px) {
  /*====================================================================/
  /*--XGAサイズ iPadPro 未満--
  /====================================================================*/
  .common-table th, .common-table td.column-1 {
    display: block;
    padding-bottom: 0;
  }
  .common-table td.column-2 {
    display: block;
    padding-top: 0;
    padding-left: 0;
  }
  .common-table2 th, .common-table2 td.column-1 {
    display: block;
  }
  .common-table2 td {
    display: block;
  }
  .f-nav {
    display: none;
  }
  .l-col-non-3-lg > * {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 767px) {
  /*====================================================================/
  /*--タブレット iPadmini 未満--
  /====================================================================*/
  .works-box {
    max-width: 360px;
    margin-right: auto;
    margin-left: auto;
  }
  .c-box1 {
    max-width: 360px;
    margin-right: auto;
    margin-left: auto;
  }
  .c-box3__img {
    z-index: 1;
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .c-box3__img::before {
    display: block;
    position: relative;
    padding-top: 66.66%;
    content: "";
  }
  .c-box3__img > div,
  .c-box3__img figure,
  .c-box3__img a,
  .c-box3__img picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .category-list__tit {
    margin-bottom: 0.5rem;
  }
  .common-contact__btn {
    margin-top: 1.5rem;
    margin-right: auto;
    margin-left: auto;
  }
  footer .sns-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0.5rem;
  }
  footer .sns-list a {
    font-size: 1.5rem;
  }
  .l-col-3-md > * {
    margin-right: auto;
    margin-left: auto;
  }
  .l-col-4-md > * {
    margin-right: auto;
    margin-left: auto;
  }
  .sns-list__footer a {
    font-size: 1.38rem;
  }
  .sns-list__footer a::before {
    top: 0.5rem;
  }
}

@media (max-width: 575px) {
  /*====================================================================/
  /*--iPhone 以下--
  /====================================================================*/
  .l-col-2-sm > * {
    margin-right: auto;
    margin-left: auto;
  }
  .l-col-3-sm > * {
    margin-right: auto;
    margin-left: auto;
  }
  .l-col-3-sm2 > * {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 375px) {
  .l-col-4-xs > * {
    margin-right: auto;
    margin-left: auto;
  }
  .l-col-non-3-xs > * {
    margin-right: auto;
    margin-left: auto;
  }
}

@media print {
  .header.fixed {
    display: none;
  }
}
/*# sourceMappingURL=map/common.css.map */
