/*----------------------------------
	Responsive Display Classes
------------------------------------*/
/* PC only - hidden on mobile/tablet (max-width: 991px) */
.pc {
  display: block;
}

@media (max-width: 61.9em) {
  .pc {
    display: none !important;
  }
}

/* SP only - hidden on desktop (min-width: 992px) */
.sp {
  display: none;
}

@media (max-width: 61.9em) {
  .sp {
    display: block;
  }
}

/*----------------------------------
	Common HTML elements and more for easier usage
------------------------------------*/
html {
  overflow-x: hidden;
}

html, html a, body {
  -webkit-font-smoothing: antialiased;
}

html {
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-size: 1rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #222324;
  line-height: 1.6;
  background-color: #fff;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.2;
  color: #242424;
  margin-top: 0;
  margin-bottom: .5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: capitalize;
  margin-bottom: 0.75rem;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #242424;
  transition-duration: 200ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

h1 a:focus, h1 a:hover,
h2 a:focus,
h2 a:hover,
h3 a:focus,
h3 a:hover,
h4 a:focus,
h4 a:hover,
h5 a:focus,
h5 a:hover,
h6 a:focus,
h6 a:hover {
  color: #13b1cd;
  transition-duration: 200ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

em,
li {
  font-size: 1rem;
  font-weight: 300;
  color: #242424;
}

em > a,
li > a {
  color: #242424;
}

em > a:hover,
li > a:hover {
  color: #13b1cd;
}

small {
  color: #656565;
}

label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #242424;
  margin-bottom: .25rem;
}

i {
  line-height: 1;
}

/* Paragraph */
p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: #212121;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Links */
a {
  color: #1e416e;
  text-decoration: none;
}

a:focus, a:hover {
  color: #1e416e;
  text-decoration: none;
}

a:focus {
  outline: none;
}

/*----------------------------------
  Selection
------------------------------------*/
::selection {
  color: #fff;
  background: #1e416e;
  text-shadow: none;
}

::-webkit-selection {
  color: #fff;
  background: #1e416e;
  text-shadow: none;
}

:active,
:focus {
  outline: none;
}

/*----------------------------------
  Button
------------------------------------*/
.s-btn {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  border: none;
  white-space: nowrap;
  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-btn:focus, .s-btn:hover {
  text-decoration: none;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-btn.focus {
  text-decoration: none;
}

.s-btn:active, .s-btn.active {
  background-image: none;
  outline: 0;
}

.s-btn.disabled, .s-btn:disabled,
fieldset[disabled] .s-btn {
  cursor: not-allowed;
  opacity: .65;
}

.s-btn__element--left, .s-btn__element--right {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
}

/* Sizes
------------------------------ */
.s-btn--xs {
  font-size: 0.75rem;
  font-weight: 400;
  padding: 0.5rem 1.25rem;
}

.s-btn--sm {
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.75rem 1.25rem;
}

.s-btn--md {
  font-size: 0.8125rem;
  font-weight: 400;
  padding: 1rem 2.5rem;
}

.s-btn-icon--md {
  font-size: 1rem;
  padding: 0.9375rem 1.5625rem 0.75rem;
}

/* Styles
------------------------------ */
.s-btn--white-brd {
  color: #fff;
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #fff;
}

.s-btn--white-brd:focus, .s-btn--white-brd:hover {
  color: #222324;
  background: #fff;
  border-color: #fff;
}

.s-btn--white-bg {
  color: #222324;
  background: #fff;
}

.s-btn--white-bg:focus, .s-btn--white-bg:hover {
  color: #13b1cd;
  background: #fff;
}

.s-btn--dark-bg {
  color: #fff;
  background: #222324;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #222324;
}

.s-btn--dark-bg:focus, .s-btn--dark-bg:hover {
  color: #fff;
  background: #13b1cd;
  border-color: #13b1cd;
}

.s-btn--dark-brd {
  color: #222324;
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #222324;
}

.s-btn--dark-brd:focus, .s-btn--dark-brd:hover {
  color: #fff;
  background: #222324;
  border-color: #222324;
}

.s-btn--primary-bg {
  color: #fff;
  background: #13b1cd;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #13b1cd;
}

.s-btn--primary-bg:focus, .s-btn--primary-bg:hover {
  color: #fff;
  background: #13b1cd;
  border-color: #13b1cd;
}

.s-btn--primary-brd {
  color: #13b1cd;
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #13b1cd;
}

.s-btn--primary-brd:focus, .s-btn--primary-brd:hover {
  color: #fff;
  background: #13b1cd;
  border-color: #13b1cd;
}

.s-btn-icon--white-brd {
  border-left: none;
}

.s-btn-icon--dark-brd {
  border-left: none;
}

/*----------------------------------
  Clients v1
------------------------------------*/
.s-clients-v1 {
  display: block;
  width: 6.25rem;
  height: auto;
  margin: 0 auto;
  opacity: 1;
  cursor: pointer;
  transition-duration: 200ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-clients-v1:hover {
  opacity: .8;
  transition-duration: 200ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

/*----------------------------------
  FAQ
------------------------------------*/
.s-faq__pseudo {
  position: relative;
}

.s-faq__pseudo:before {
  position: absolute;
  left: 12.5rem;
  bottom: -1rem;
  z-index: -1;
  font-size: 9.375rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: rgba(245, 248, 249, 0.8);
  content: "\0026";
}

.s-faq-grid__divider {
  display: inline-block;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.3);
  margin: .3125rem 0;
}

.s-faq-grid__title {
  font-size: 1rem;
  color: #fff;
  margin: .3125rem 0 0 .5rem;
}

.s-faq .cbp-caption {
  border-bottom: none;
}

/*----------------------------------
  Form Input
------------------------------------*/
/* Form Input v1 */
.s-form-v1__input {
  height: 3.375rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 300;
  background: transparent;
  border-color: #fff;
  border-right: none;
  box-shadow: none;
  letter-spacing: .1rem;
  text-transform: uppercase;
  padding: .625rem 2.5rem;
}

.s-form-v1__input::-webkit-input-placeholder {
  color: #fff;
}

.s-form-v1__input::-moz-placeholder {
  color: #fff;
}

.s-form-v1__input:-ms-input-placeholder {
  color: #fff;
}

.s-form-v1__input::placeholder {
  color: #fff;
}

.s-form-v1__input:focus {
  box-shadow: none;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* Form Input v2 */
.s-form-v2__input {
  height: 3.5rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: #656565;
  border: none;
  box-shadow: none;
  letter-spacing: .1rem;
  text-transform: uppercase;
  padding: .625rem 1.25rem;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-form-v2__input::-webkit-input-placeholder {
  color: #656565;
}

.s-form-v2__input::-moz-placeholder {
  color: #656565;
}

.s-form-v2__input:-ms-input-placeholder {
  color: #656565;
}

.s-form-v2__input::placeholder {
  color: #656565;
}

.s-form-v2__input:focus {
  font-weight: 400;
  color: #656565;
  box-shadow: none;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-form-v2__input:focus::-webkit-input-placeholder {
  color: #656565;
}

.s-form-v2__input:focus::-moz-placeholder {
  color: #656565;
}

.s-form-v2__input:focus:-ms-input-placeholder {
  color: #656565;
}

.s-form-v2__input:focus::placeholder {
  color: #656565;
}

/* Form Input v3 */
.s-form-v3__input {
  position: relative;
  height: 3.125rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  border: none;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.5);
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  letter-spacing: .1rem;
  text-transform: uppercase;
  padding: 0 1.25rem 0 0;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-form-v3__input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.s-form-v3__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.s-form-v3__input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.s-form-v3__input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.s-form-v3__input:focus {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.99);
  box-shadow: none;
}

.s-form-v3__input:focus::-webkit-input-placeholder {
  color: #fff;
}

.s-form-v3__input:focus::-moz-placeholder {
  color: #fff;
}

.s-form-v3__input:focus:-ms-input-placeholder {
  color: #fff;
}

.s-form-v3__input:focus::placeholder {
  color: #fff;
}

/* Form Input v4 */
.s-form-v4__input {
  position: relative;
  height: 3.125rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(34, 35, 36, 0.5);
  border: none;
  border-bottom: .0625rem solid;
  background: rgba(34, 35, 36, 0.3);
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  letter-spacing: .1rem;
  text-transform: uppercase;
  padding: 0 1.25rem .3125rem 1rem;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-form-v4__input::-webkit-input-placeholder {
  color: rgba(34, 35, 36, 0.5);
}

.s-form-v4__input::-moz-placeholder {
  color: rgba(34, 35, 36, 0.5);
}

.s-form-v4__input:-ms-input-placeholder {
  color: rgba(34, 35, 36, 0.5);
}

.s-form-v4__input::placeholder {
  color: rgba(34, 35, 36, 0.5);
}

.s-form-v4__input:focus {
  color: #222324;
  border-color: #222324;
  box-shadow: none;
}

.s-form-v4__input:focus::-webkit-input-placeholder {
  color: #222324;
}

.s-form-v4__input:focus::-moz-placeholder {
  color: #222324;
}

.s-form-v4__input:focus:-ms-input-placeholder {
  color: #222324;
}

.s-form-v4__input:focus::placeholder {
  color: #222324;
}

.s-form-v4__icon {
  font-size: 1.125rem;
  color: rgba(34, 35, 36, 0.7);
  border-bottom: 0.0625rem solid #222324;
  padding: 0 .75rem .95rem;
}

/* Form Input v5 */
.s-form-v5__input {
  height: 3.375rem;
  color: #656565;
  font-size: 0.875rem;
  font-weight: 300;
  background: transparent;
  border-color: #222324;
  border-right: none;
  box-shadow: none;
  letter-spacing: .1rem;
  text-transform: uppercase;
  padding: .625rem 2.5rem;
}

.s-form-v5__input::-webkit-input-placeholder {
  color: #656565;
}

.s-form-v5__input::-moz-placeholder {
  color: #656565;
}

.s-form-v5__input:-ms-input-placeholder {
  color: #656565;
}

.s-form-v5__input::placeholder {
  color: #656565;
}

.s-form-v5__input:focus {
  color: #222324;
  box-shadow: none;
  border-color: #222324;
}

.s-form-v5__input:focus::-webkit-input-placeholder {
  color: #222324;
}

.s-form-v5__input:focus::-moz-placeholder {
  color: #222324;
}

.s-form-v5__input:focus:-ms-input-placeholder {
  color: #222324;
}

.s-form-v5__input:focus::placeholder {
  color: #222324;
}

/*----------------------------------
  Icons
------------------------------------*/
.s-icon {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-icon:focus, .s-icon:hover {
  text-decoration: none;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

/* Sizes
------------------------------ */
.s-icon--sm {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.8125rem;
  padding: 0.6875rem;
}

.s-icon--md {
  width: 3.125rem;
  height: 3.125rem;
  font-size: 1.125rem;
  padding: 0.75rem;
}

.s-icon--lg {
  width: 3.5rem;
  height: 3.5rem;
  font-size: 1.625rem;
  padding: 0.5625rem 1rem;
}

/* Styles
------------------------------ */
.s-icon--white-brd {
  color: #fff;
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #fff;
  line-height: 1.4;
}

.s-icon--white-brd:focus, .s-icon--white-brd:hover {
  color: #fff;
  background: #13b1cd;
  border-color: #13b1cd;
}

.s-icon--white-bg {
  color: #222324;
  background: #fff;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #fff;
  line-height: 1.4;
}

.s-icon--white-bg:focus, .s-icon--white-bg:hover {
  color: #13b1cd;
  background: #fff;
  border-color: #fff;
}

.s-icon--primary-brd {
  color: #13b1cd;
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #13b1cd;
  line-height: 1.4;
}

.s-icon--primary-brd:focus, .s-icon--primary-brd:hover {
  color: #fff;
  background: #13b1cd;
  border-color: #13b1cd;
}

.s-icon--primary-bg {
  color: #fff;
  background: #13b1cd;
  line-height: 1.6;
}

/*----------------------------------
  Promo Block
------------------------------------*/
/* Promo Block v1 */
.s-promo-block-v1__square-effect {
  position: relative;
}

.s-promo-block-v1__square-effect:before {
  position: absolute;
  top: -5rem;
  left: -1.875rem;
  width: 18.75rem;
  height: 10.9375rem;
  border: .625rem solid;
  border-color: rgba(255, 255, 255, 0.2);
  content: " ";
}

.s-promo-block-v1__square-effect:after {
  position: absolute;
  right: 0;
  bottom: -2rem;
  width: 9.375rem;
  height: 9.375rem;
  border: .625rem solid;
  z-index: -1;
  border-color: rgba(108, 184, 237, 0.9);
  content: " ";
}

/* Promo Block v2 */
.s-promo-block-v2 {
  position: relative;
  z-index: 1;
}

.s-promo-block-v2:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(145deg, rgba(152, 119, 234, 0.7) -25%, #13b1cd 100%);
  background-repeat: repeat-x;
  content: " ";
}

.s-promo-block-v2__form {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

@media (max-width: 61.9em) {
  .s-promo-block-v2__form {
    position: static;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* Promo Block v3 */
.s-promo-block-v3__divider {
  position: relative;
  padding-bottom: 1.875rem;
}

.s-promo-block-v3__divider:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0.1875rem;
  background-image: linear-gradient(145deg, rgba(152, 119, 234, 0.9) -25%, #13b1cd 100%);
  background-repeat: repeat-x;
  content: " ";
}

.s-promo-block-v3__date {
  line-height: .8;
  margin-right: 1rem;
}

.s-promo-block-v3__month, .s-promo-block-v3__year {
  display: block;
  line-height: 1.3;
}

.s-promo-block-v3__month {
  vertical-align: top;
}

/* Promo Block v4 */
.s-promo-block-v4 {
  position: relative;
  z-index: 1;
}

.s-promo-block-v4:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(34, 35, 36, 0.3) 0%, rgba(19, 177, 205, 0.6) 100%);
  background-repeat: repeat-x;
  content: " ";
}

/* Promo Block v5 */
.s-promo-block-v5 {
  position: relative;
  z-index: 1;
}

.s-promo-block-v5:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(28, 123, 172, 0.93) 0%, rgba(19, 177, 205, 0.93) 100%);
  background-repeat: repeat-x;
  content: " ";
}

/* Promo Block v6 */
.s-promo-block-v6 {
  position: relative;
  z-index: 1;
}

.s-promo-block-v6:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(-180deg, rgba(28, 123, 172, 0.1) 0%, #13b1cd 80%);
  background-repeat: repeat-x;
  content: " ";
}

/* Promo Block v7 */
.s-promo-block-v7 {
  position: relative;
  z-index: 1;
}

.s-promo-block-v7:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(145deg, rgba(19, 177, 205, 0.97) 0%, rgba(152, 119, 234, 0.97) 100%);
  background-repeat: repeat-x;
  content: " ";
}

/*----------------------------------
  Mockup
------------------------------------*/
/* Mockup v1 */
.s-mockup-v1 {
  position: relative;
  width: 55rem;
  height: auto;
  z-index: 1;
}

@media (max-width: 61.9em) {
  .s-mockup-v1 {
    width: 100%;
    height: auto;
  }
}

/* Mockup v2 */
.s-mockup-v2 {
  position: absolute;
  left: 6.25rem;
  bottom: 6.25rem;
  width: 25rem;
  height: auto;
}

@media (max-width: 33.9em) {
  .s-mockup-v2 {
    display: none;
  }
}

@media (min-width: 34em) {
  .s-mockup-v2 {
    position: absolute;
    left: 0.625rem;
    bottom: 0.625rem;
    width: 18.75rem;
    height: auto;
  }
}

@media (min-width: 48em) {
  .s-mockup-v2 {
    position: absolute;
    left: 5rem;
    bottom: 5rem;
    width: 18.75rem;
    height: auto;
  }
}

/*----------------------------------
  Plan
------------------------------------*/
/* Plan v1 */
.s-plan-v1 {
  box-shadow: 0.625rem 0.625rem 0.9375rem 0 rgba(31, 31, 31, 0.075);
}

.s-plan-v1__price-mark, .s-plan-v1__price-tag {
  color: #13b1cd;
}

.s-plan-v1__price-mark {
  font-size: 1.375rem;
  vertical-align: top;
}

.s-plan-v1__price-tag {
  font-size: 1.875rem;
  line-height: 1.1;
}

/* Plan v2 */
@media (min-width: 62em) {
  .s-plan-v2__main {
    position: relative;
    z-index: 1;
    box-shadow: 0 -1.25rem 3.125rem 0 rgba(34, 35, 36, 0.05);
    margin-top: -.4375rem;
  }
}

/*----------------------------------
  Process v1
------------------------------------*/
.s-process-v1 {
  position: relative;
}

.s-process-v1:before {
  position: absolute;
  top: 3.125rem;
  left: 60%;
  width: 80%;
  height: 0.0625rem;
  background: rgba(255, 255, 255, 0.2);
  content: " ";
  margin-top: -.03125rem;
}

@media (max-width: 47.9em) {
  .s-process-v1:before {
    display: none;
  }
}

.s-process-v1:last-child:before {
  display: none;
}

/*----------------------------------
  Scroll To Section
------------------------------------*/
/* Scroll To Section v1 */
.s-scroll-to-section-v1--bc {
  position: absolute;
  left: 50%;
  bottom: 0.625rem;
  z-index: 1;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  text-align: center;
}

/*----------------------------------
  Team v1
------------------------------------*/
.s-team-v1 {
  position: relative;
  cursor: pointer;
}

.s-team-v1:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: " ";
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-team-v1:hover:before {
  box-shadow: 0 0 1.25rem 0.3125rem rgba(34, 35, 36, 0.07);
}

/*----------------------------------
  Video
------------------------------------*/
.s-video__bg {
  position: relative;
}

.s-video__bg:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(145deg, rgba(103, 181, 241, 0.8) 0, rgba(152, 119, 234, 0.8) 100%);
  background-repeat: repeat-x;
  content: " ";
}

/* Video v2 */
.s-video-v2__bg {
  position: relative;
}

.s-video-v2__bg:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(34, 35, 36, 0.85);
  content: " ";
}

/*----------------------------------
  Header
------------------------------------*/
.s-header__navbar {
  background: transparent;
  transition: all 0.3s ease;
}

/* Container
------------------------------ */
.s-header__container {
  width: 100%;
  height: auto;
  display: table;
  padding: 1.5rem 1.875rem;
  transition: padding 0.3s ease;
}

.s-header__container:before, .s-header__container:after {
  content: " ";
  display: table;
}

.s-header__container:after {
  clear: both;
}

.container-fluid {
  padding-left: 2.1875rem;
  padding-right: 2.1875rem;
}

/* Navbar Row
------------------------------ */
.s-header__navbar-row {
  position: relative;
  display: table-row;
  clear: both;
}

.s-header__navbar-row-col {
  width: 50%;
  display: table-cell;
  vertical-align: middle;
}

/* Logo
------------------------------ */
.s-header__logo {
  position: relative;
  z-index: 9999;
  width: 100%;
  height: auto;
  float: left;
  top: 1.25rem;
  transition: top 0.3s ease;
}

.s-header__shrink .s-header__logo {
  top: 0;
}

.s-header__logo-link {
  display: inline-block;
  /* padding: 1rem 0; */
  padding: 0;
}

.s-header__logo-link:focus, .s-header__logo-link:hover {
  text-decoration: none;
}

.s-header__logo-img-default, .s-header__logo-img-shrink {
  display: block;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header__logo-img-default {
  opacity: 1;
}

.s-header__logo-img-shrink {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

@media (max-width: 61.9em) {
  .s-header__logo {
    width: auto;
    height: auto;
    float: left;
  }
}

/* Trigger
------------------------------ */
.s-header__trigger {
  position: relative;
  z-index: 9999;
  width: 3.125rem;
  height: 3.125rem;
  float: right;
  overflow: hidden;
  transition-duration: 500ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

/* Trigger Icon */
.s-header__trigger-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  width: 1.375rem;
  height: 0.0625rem;
  background: #fff;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  transition-duration: 500ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header__trigger-icon:before, .s-header__trigger-icon:after {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  content: " ";
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: transform 0.5s, width 0.5s, top 0.3s;
  transition: transform 0.5s, width 0.5s, top 0.3s;
}

.s-header__trigger-icon:before {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: translate3d(0, 0.4375rem, 0);
  transform: translate3d(0, 0.4375rem, 0);
}

.s-header__trigger-icon:after {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: translate3d(0, -0.4375rem, 0);
  transform: translate3d(0, -0.4375rem, 0);
}

.s-header__trigger--dark .s-header__trigger-icon {
  background: #222324;
}

.s-header__trigger svg {
  position: absolute;
  top: 0;
  left: 0;
}

.s-header__trigger circle {
  -webkit-transition: stroke-dashoffset 0.4s 0s;
  transition: stroke-dashoffset 0.4s 0s;
}

/* Trigger Is Active Style */
.-is-active.s-header__trigger {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.-is-active .s-header__trigger-icon {
  background: #fff;
}

.-is-active .s-header__trigger-icon:before, .-is-active .s-header__trigger-icon:after {
  width: 50%;
  -webkit-transition: transform 0.5s, width 0.5s;
  transition: transform 0.5s, width 0.5s;
}

.-is-active .s-header__trigger-icon:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.-is-active .s-header__trigger-icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.-is-active.s-header__trigger circle {
  stroke-dashoffset: 0;
  -webkit-transition: stroke-dashoffset 0.4s 0.3s;
  transition: stroke-dashoffset 0.4s 0.3s;
}

/* Overlay
------------------------------ */
.s-header-bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: rgba(34, 35, 36, 0);
  visibility: hidden;
  -webkit-transition: all 1s ease-in 0.4s;
  transition: all 1s ease-in 0.4s;
}

.s-header-bg-overlay.-is-open {
  background: rgba(34, 35, 36, 0.99);
  visibility: visible;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

/* Nav
------------------------------ */
.s-header__nav {
  height: 100%;
  padding: 7.5rem 0;
}

/* Menu List */
.s-header__nav-menu {
  width: 18.75rem;
  float: right;
  text-align: right;
  margin-bottom: 0;
}

@media (max-width: 47.9em) {
  .s-header__nav-menu {
    width: 50%;
  }
}

@media (max-width: 33.9em) {
  .s-header__nav-menu {
    width: 100%;
    float: none;
  }
}

.s-header__nav-menu-item {
  padding: 0 0 0 5.625rem;
  margin-bottom: .3125rem;
}

@media (max-width: 47.9em) {
  .s-header__nav-menu-item {
    padding-left: 0;
  }
}

.s-header__nav-menu-link {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 300;
  color: #fff;
  opacity: .85;
  padding: .3125rem;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header__nav-menu-link-divider {
  position: relative;
}

.s-header__nav-menu-link-divider:before {
  position: absolute;
  top: 50%;
  right: -2.5rem;
  width: 2.1875rem;
  height: 0.0625rem;
  background: rgba(255, 255, 255, 0);
  content: " ";
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header__nav-menu-link-divider[href]:focus, .s-header__nav-menu-link-divider[href]:hover {
  color: #fff;
}

.s-header__nav-menu-link-divider[href]:hover:before {
  right: 0;
  background: white;
}

.s-header__nav-menu-link-divider:focus, .s-header__nav-menu-link-divider:hover {
  color: #fff;
}

.s-header__nav-menu-link-divider:hover {
  opacity: 1;
  padding-right: 2.5rem;
}

.s-header__nav-menu-link-divider.-is-active {
  padding-right: 2.5rem;
}

.s-header__nav-menu-link-divider.-is-active:before {
  right: 0;
  background: white;
}

/* Action
------------------------------ */
.s-header__action {
  margin-bottom: 0;
}

.s-header__action--lb {
  position: absolute;
  left: 1.875rem;
  bottom: 1.875rem;
}

.s-header__action--rb {
  position: absolute;
  right: 1.875rem;
  bottom: 1.875rem;
}

.s-header__action-item {
  padding: 0;
  margin-left: .1875rem;
  margin-right: .3125rem;
}

.s-header__action-link {
  position: relative;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  padding: .3125rem;
}

.s-header__action-link:first-child {
  padding-left: 0;
}

.s-header__action-link:last-child {
  padding-right: 0;
}

.s-header__action-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

.s-header__action-link.-is-active {
  color: white;
}

/* Menu Open/Close
------------------------------ */
.s-header-bg-overlay .s-header__nav-menu-item {
  opacity: 0;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  -webkit-transform: translate3d(0, 1.25rem, 0);
  transform: translate3d(0, 1.25rem, 0);
}

.s-header-bg-overlay .s-header__action-item {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

@media (max-width: 47.9em) {
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item,
  .s-header-bg-overlay.-is-open .s-header__action-item {
    opacity: 1;
  }
}

@media (min-width: 34em) {
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item {
    opacity: 1;
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(1) {
    -webkit-transition: all 0.4s 0.2s ease-out;
    transition: all 0.4s 0.2s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(2) {
    -webkit-transition: all 0.4s 0.4s ease-out;
    transition: all 0.4s 0.4s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(3) {
    -webkit-transition: all 0.4s 0.6s ease-out;
    transition: all 0.4s 0.6s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(4) {
    -webkit-transition: all 0.4s 0.8s ease-out;
    transition: all 0.4s 0.8s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(5) {
    -webkit-transition: all 0.4s 1s ease-out;
    transition: all 0.4s 1s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(6) {
    -webkit-transition: all 0.4s 1.2s ease-out;
    transition: all 0.4s 1.2s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(7) {
    -webkit-transition: all 0.4s 1.4s ease-out;
    transition: all 0.4s 1.4s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(8) {
    -webkit-transition: all 0.4s 1.6s ease-out;
    transition: all 0.4s 1.6s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(9) {
    -webkit-transition: all 0.4s 1.8s ease-out;
    transition: all 0.4s 1.8s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(10) {
    -webkit-transition: all 0.4s 2s ease-out;
    transition: all 0.4s 2s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__action-item {
    opacity: 1;
  }
  .s-header-bg-overlay.-is-open .s-header__action-item:nth-child(1) {
    -webkit-transition: all 0.4s 0.4s ease-out;
    transition: all 0.4s 0.4s ease-out;
  }
  .s-header-bg-overlay.-is-open .s-header__action-item:nth-child(2) {
    -webkit-transition: all 0.4s 0.8s ease-out;
    transition: all 0.4s 0.8s ease-out;
  }
  .s-header-bg-overlay.-is-open .s-header__action-item:nth-child(3) {
    -webkit-transition: all 0.4s 1.2s ease-out;
    transition: all 0.4s 1.2s ease-out;
  }
}

/* Shrink
------------------------------ */
/* Navbar */
.s-header__shrink .s-header__navbar {
  box-shadow: 0 0 0.9375rem 0 rgba(34, 35, 36, 0.05);
}

.s-header__shrink.-is-open .s-header__navbar {
  background: transparent;
}

/* Logo */
.s-header__logo-img-white {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.s-header__shrink .s-header__navbar {
  background: #fff;
}

.s-header__shrink .s-header__container {
  padding: 0.5rem 1.875rem;
}

.s-header__shrink .s-header__logo-img-default {
  opacity: 0;
}

.s-header__shrink .s-header__logo-img-shrink {
  opacity: 1;
}

.s-header__shrink .s-header__logo-img-white {
  opacity: 0;
}

/* ハンバーガーメニューが開いたとき（スクロール位置に関係なく優先） */
.s-header.-is-open .s-header__logo-img-default,
.s-header__shrink.-is-open .s-header__logo-img-default {
  opacity: 0 !important;
}

.s-header.-is-open .s-header__logo-img-shrink,
.s-header__shrink.-is-open .s-header__logo-img-shrink {
  opacity: 0 !important;
}

.s-header.-is-open .s-header__logo-img-white,
.s-header__shrink.-is-open .s-header__logo-img-white {
  opacity: 1 !important;
}

/* Trigger Icon */
.s-header__shrink.-is-open .s-header__trigger-icon {
  background: #fff;
}

.s-header__shrink .s-header__trigger-icon {
  background: #222324;
}

/*----------------------------------
  Header v2
------------------------------------*/
/* Navbar
------------------------------ */
.s-header-v2__navbar {
  position: relative;
  z-index: 1000;
  min-height: 3.125rem;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.3);
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header-v2__navbar:before, .s-header-v2__navbar:after {
  content: " ";
  display: table;
}

.s-header-v2__navbar:after {
  clear: both;
}

@media (max-width: 61.9em) {
  .s-header-v2__navbar {
    background: #fff;
    box-shadow: 0 0 0.9375rem 0.25rem rgba(34, 35, 36, 0.05);
  }
}

/* Navbar Row
------------------------------ */
.s-header-v2__navbar-row {
  display: table-row;
  clear: both;
}

@media (max-width: 61.9em) {
  .s-header-v2__navbar-row {
    display: inherit;
  }
}

/* Columns */
.s-header-v2__navbar-col {
  display: table-cell;
  vertical-align: middle;
}

@media (max-width: 61.9em) {
  .s-header-v2__navbar-col {
    display: block;
  }
}

/* Space */
.s-header-v2__navbar-col-width--180 {
  width: 11.250rem;
}

@media (max-width: 61.9em) {
  .s-header-v2__navbar-col-width--180 {
    width: auto;
  }
}

/* Variations */
@media (min-width: 62em) {
  .s-header-v2__navbar-col--left {
    float: left;
  }
  .s-header-v2__navbar-col--left .dropdown__mega-menu {
    right: auto;
    left: 10rem;
  }
}

@media (min-width: 62em) {
  .s-header-v2__navbar-col--right {
    float: right;
  }
}

/* Navbar Toggle
------------------------------ */
.s-header-v2__toggle {
  position: relative;
  display: none;
  float: right;
  background: transparent;
  border: none;
  outline: none;
  line-height: 4.3rem;
  padding: .5625rem .3125rem .5625rem .625rem;
  margin: 0;
}

.s-header-v2__toggle-icon-bar {
  position: relative;
  width: 1.315rem;
  height: 0.0625rem;
  display: inline-block;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header-v2__toggle-icon-bar, .s-header-v2__toggle-icon-bar:before, .s-header-v2__toggle-icon-bar:after {
  background: #222324;
}

.s-header-v2__toggle-icon-bar:before, .s-header-v2__toggle-icon-bar:after {
  position: absolute;
  left: 0;
  content: " ";
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header-v2__toggle-icon-bar:before {
  width: 0.625rem;
  height: 0.0625rem;
  bottom: .625rem;
}

.s-header-v2__toggle-icon-bar:after {
  width: 1rem;
  height: 0.0625rem;
  top: -.3125rem;
}

.s-header-v2__toggle:hover .s-header-v2__toggle-icon-bar:before, .s-header-v2__toggle:hover .s-header-v2__toggle-icon-bar:after {
  width: 1.315rem;
  height: 0.0625rem;
}

@media (max-width: 61.9em) {
  .s-header-v2__toggle {
    display: block;
  }
}

/* Logo
------------------------------ */
.s-header-v2__logo {
  width: 100%;
  height: auto;
  float: left;
}

.s-header-v2__logo-link {
  display: inline-block;
  padding: 1rem 1.25rem 1rem 0;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header-v2__logo-link:focus, .s-header-v2__logo-link:hover {
  text-decoration: none;
}

.s-header-v2__logo-img {
  display: inline-block;
}

.s-header-v2__logo-img--default {
  display: block;
}

@media (max-width: 61.9em) {
  .s-header-v2__logo-img--default {
    display: none;
  }
}

.s-header-v2__logo-img--shrink {
  display: none;
}

@media (max-width: 61.9em) {
  .s-header-v2__logo-img--shrink {
    display: block;
  }
}

@media (max-width: 61.9em) {
  .s-header-v2__logo {
    width: auto;
    height: auto;
    float: left;
  }
  .s-header-v2__logo-link {
    padding-left: .875rem;
    padding-right: .625rem;
  }
}

/* Collapse
------------------------------ */
@media (max-width: 61.9em) {
  .s-header-v2__navbar-collapse {
    width: 100%;
    padding: 0 .9375rem !important;
  }
}

@media (max-width: 61.9em) {
  .s-header-v2__navbar-collapse.collapse {
    display: none !important;
  }
  .s-header-v2__navbar-collapse.collapse.in {
    display: block !important;
    max-height: 35rem;
    overflow-y: auto !important;
  }
}

/* Nav Menu
------------------------------ */
.s-header-v2__nav {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.s-header-v2__nav:before, .s-header-v2__nav:after {
  content: " ";
  display: table;
}

.s-header-v2__nav:after {
  clear: both;
}

@media (max-width: 61.9em) {
  .s-header-v2__nav {
    background: #fff;
    padding: 1.25rem 0;
  }
}

.s-header-v2__nav-item {
  position: relative;
  display: block;
  float: left;
}

.s-header-v2__nav-item:last-child .s-header-v2__nav-link {
  margin-right: 0;
}

@media (max-width: 61.9em) {
  .s-header-v2__nav-item {
    float: none;
  }
}

.s-header-v2__nav-item .dropdown-backdrop {
  position: relative;
}

.s-header-v2__nav-link {
  position: relative;
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: rgba(255, 255, 255, 0.75);
  line-height: 5.5rem;
  text-transform: uppercase;
  margin: 0 .9rem;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header-v2__nav-link:hover {
  color: #fff;
}

.s-header-v2__nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.s-header-v2__nav-link.-is-active {
  color: #fff;
}

@media (max-width: 61.9em) {
  .s-header-v2__nav-link {
    color: rgba(34, 35, 36, 0.7);
    line-height: 1.6;
    margin: 1.5rem 0;
  }
  .s-header-v2__nav-link:focus, .s-header-v2__nav-link:hover {
    color: rgba(34, 35, 36, 0.7);
  }
  .s-header-v2__nav-link.-is-active {
    color: #13b1cd;
  }
}

/* Dropdown
------------------------------ */
.s-header-v2__dropdown-menu {
  display: none;
  font-size: 0.8125rem;
  min-width: 13.750rem;
  background: #fff;
  border: none;
  border-radius: 0;
  box-shadow: 0 0.3125rem 0.75rem rgba(34, 35, 36, 0.05);
  padding: .9375rem 0;
  margin-top: 0;
}

@media (max-width: 61.9em) {
  .s-header-v2__dropdown-menu {
    position: static;
    float: none;
    box-shadow: none;
  }
}

.s-header-v2__dropdown-menu:focus .s-header-v2__dropdown-menu-link, .s-header-v2__dropdown-menu:hover .s-header-v2__dropdown-menu-link {
  background: transparent;
}

.s-header-v2__dropdown-menu-link {
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: rgba(34, 35, 36, 0.7) !important;
  padding: .4375rem 2rem .4375rem 1.375rem !important;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header-v2__dropdown-menu-link:hover {
  color: #13b1cd !important;
}

.s-header-v2__dropdown-menu-link.-is-active {
  color: #13b1cd !important;
}

/* Dropdown Menu Open On Hover
------------------------------ */
@media (min-width: 62em) {
  .s-header-v2__dropdown-on-hover:hover > .s-header-v2__dropdown-menu {
    display: block;
  }
}

/* Shrink
------------------------------ */
@media (min-width: 62em) {
  .s-header__shrink .s-header-v2__navbar {
    background: #fff;
    box-shadow: 0 0 0.9375rem 0.25rem rgba(34, 35, 36, 0.05);
  }
  /* Toggle */
  .s-header__shrink .s-header-v2__toggle-icon-bar--white, .s-header__shrink .s-header-v2__toggle-icon-bar--white:before, .s-header__shrink .s-header-v2__toggle-icon-bar--white:after {
    background: #222324;
  }
  /* Logo */
  .s-header__shrink .s-header-v2__logo-img--default {
    display: none;
  }
  .s-header__shrink .s-header-v2__logo-img--shrink {
    display: block;
  }
  /* Nav Link */
  .s-header__shrink .s-header-v2__nav-link {
    color: rgba(34, 35, 36, 0.7);
  }
  .s-header__shrink .s-header-v2__nav-link:hover {
    color: #13b1cd;
  }
  .s-header__shrink .s-header-v2__nav-link:focus {
    color: rgba(34, 35, 36, 0.7);
  }
  .s-header__shrink .s-header-v2__nav-link.-is-active {
    color: #13b1cd;
  }
}

/*----------------------------------
  Footer
------------------------------------*/
.s-footer__logo {
  position: relative;
  z-index: 1;
}

.s-footer__logo:before {
  position: absolute;
  top: 0;
  left: 0.9375rem;
  bottom: 0;
  width: 70%;
  height: auto;
  z-index: -1;
  background: url("../img/widgets/worldmap.png") no-repeat center center;
  background-size: cover;
  content: " ";
}

/*----------------------------------
  Back To Top
------------------------------------*/
.s-back-to-top {
  position: fixed;
  right: 2rem;
  bottom: -5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-back-to-top:before {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  font-size: 1.2rem;
  font-style: normal;
  font-family: themify;
  color: #3278b4;
  content: "\e627";
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  margin-bottom: 5px;
}

.s-back-to-top:after {
  content: "TOP";
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.s-back-to-top:hover:before {
  background: #3278b4;
  color: #fff;
}

.s-back-to-top:focus, .s-back-to-top:hover {
  text-decoration: none;
}

/* The button becomes visible */
.s-back-to-top.-is-visible {
  bottom: 2rem;
  opacity: 1;
}

.s-back-to-top.-is-visible:hover {
  opacity: 1;
}

/* If the user keeps scrolling down, the button is out of focus and becomes less visible */
.s-back-to-top.-zoom-out {
  opacity: 0.8;
}

/*----------------------------------
  Cubeportfolio
------------------------------------*/
.s-portfolio__filter-v1-item {
  font-size: 0.8125rem;
  color: #656565 !important;
  text-transform: uppercase;
  margin-bottom: 0 !important;
}

.s-portfolio__filter-v1-item:hover {
  color: #242424 !important;
}

.s-portfolio__filter-v1-item.cbp-filter-item-active {
  color: #13b1cd !important;
}

.s-portfolio__filter-v1.cbp-l-filters-text {
  margin-bottom: 0;
}

/* Image Effect
------------------------------ */
.s-portfolio__img-effect {
  position: relative;
  display: block;
}

.s-portfolio__img-effect:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 177, 205, 0.95);
  content: " ";
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio__item:hover .s-portfolio__img-effect:after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Position
------------------------------ */
.s-portfolio__caption-hover--cc {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  padding: 1.875rem;
  opacity: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio__item:hover .s-portfolio__caption-hover--cc {
  opacity: 1;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

/* Paginations v1
------------------------------ */
.s-portfolio__paginations-v1 .cbp-nav-controls {
  display: none;
}

.s-portfolio__paginations-v1 .cbp-nav-pagination {
  padding-left: .625rem;
}

.s-portfolio__paginations-v1 .cbp-nav-pagination-item {
  margin: 0 .9375rem;
}

.s-portfolio__paginations-v1 .cbp-nav-pagination-active {
  background: #13b1cd;
}

/* Tab v1
------------------------------ */
.s-tab__filter-v1 {
  display: block;
  font-size: 1.75rem;
  color: #fff;
  text-align: center;
  border: none;
  cursor: pointer;
  letter-spacing: .0625rem;
  line-height: 2rem;
  padding: 0 0 2rem;
  margin: 0 0 2rem;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-tab__filter-v1:before {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 5rem;
  height: 0.0625rem;
  background: rgba(255, 255, 255, 0.3);
  content: " ";
  margin-left: -2.5rem;
}

.s-tab__filter-v1:last-child {
  padding: 0;
  margin: 0;
}

.s-tab__filter-v1:last-child:before {
  display: none;
}

.s-tab__filter-v1.cbp-filter-item-active {
  color: #13b1cd;
}

.s-tab__grid-v1-item {
  font-size: 0.9375rem;
  font-weight: 300;
  color: #656565;
}

/*----------------------------------
  Google Map
------------------------------------*/
/* Custom Style */
.s-google-map,
.s-google-map .s-google-container {
  position: relative;
}

/* Info Window: White background and box outline */
.gm-style > div:first-child > div + div > div:last-child > div > div:first-child > div {
  background-color: #fff !important;
  box-shadow: none !important;
}

/* Info Window: Arrow colour */
.gm-style > div:first-child > div + div > div:last-child > div > div:first-child > div > div > div {
  background-color: #fff !important;
  box-shadow: none !important;
}

.gm-style > div:first-child > div + div > div:last-child > div > div:first-child > div:first-child {
  display: none;
}

/* Info Window: Let's remove image icon inside close button */
.gm-style > div:first-child > div + div > div:last-child > div > div:last-child > img {
  display: none;
}

/* Info Window: New arrow style */
.gm-style > div:first-child > div + div > div:last-child > div > div:last-child {
  overflow: inherit !important;
}

.gm-style > div:first-child > div + div > div:last-child > div > div:last-child:after {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.75rem;
  font-family: themify;
  color: #656565;
  content: "\e646";
}

/* Info Window: Positioning of infowindow */
.gm-style-iw {
  top: 1.375rem !important;
  left: 1.375rem !important;
}

/*----------------------------------
  Swiper
------------------------------------*/
.s-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Arrows v1
------------------------------ */
.s-swiper__arrow-v1--left, .s-swiper__arrow-v1--right {
  position: absolute;
  top: 50%;
  z-index: 1;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

@media (max-width: 47.9em) {
  .s-swiper__arrow-v1--left, .s-swiper__arrow-v1--right {
    opacity: 0;
  }
}

.s-swiper__arrow-v1--left {
  left: 2rem;
}

.s-swiper__arrow-v1--right {
  right: 2rem;
}

@media (max-width: 47.9em) {
  .s-swiper:hover .s-swiper__arrow-v1--left, .s-swiper:hover .s-swiper__arrow-v1--right {
    opacity: 1;
  }
}

/* Pagination v1
------------------------------ */
.s-swiper__pagination-v1--bc {
  position: absolute;
  bottom: 1.875rem !important;
  text-align: center;
  z-index: 1;
}

.s-swiper__pagination-v1 .swiper-pagination-bullet {
  width: 1rem;
  height: 0.5625rem;
  border-radius: 0.9375rem;
  opacity: .7;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-swiper__pagination-v1 .swiper-pagination-bullet-active {
  width: 1.875rem;
  background: #13b1cd;
  opacity: 1;
}

.s-swiper__pagination-v1--white .swiper-pagination-bullet {
  background: #fff;
}

.s-swiper__pagination-v1--white .swiper-pagination-bullet-active {
  background: #13b1cd;
}

.s-swiper__pagination-v1--dark .swiper-pagination-bullet {
  background: #b2b2b2;
}

.s-swiper__pagination-v1--dark .swiper-pagination-bullet-active {
  background: #13b1cd;
}

.s-header__logo img{
  height: 45px;
}

header .s-header__navbar .s-header__container{
  max-width: 1040px;
  margin: auto;
}

.midashiArea{
  position: absolute;
  text-align: center;
  display: block;
  width: 100%;
  top: 0;
  left: 0;
  padding: 1.25rem 0 0.75rem;
  border-bottom:1px solid #1e416e;
  transition: all 0.3s ease;
}
.s-header__shrink .midashiArea{
  border-bottom:none;
  padding: 0.5rem 0 0.25rem;
}

.midashiArea p{
  font-size: 25px;
  font-weight: bold;
  color: #1e416e;
  transition: font-size 0.3s ease;
}

.s-header__shrink .midashiArea p{
  font-size: 18px;
}

#grobal-navigation{
  width: 980px;
  margin: 100px auto;
}
.top_header_copy{
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.top_header_copy img{
  width: 100%;
}
#grobal-navigation .topNavigation{
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;

}
#grobal-navigation .topNavigation li{
  font-size: 0.8rem;
  font-weight: 300;
  padding: 0 1.25rem;
  border-right: 1px solid #1e416e;
}
#grobal-navigation .topNavigation li a{
  color: #1e416e;
  font-weight: bold;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
#grobal-navigation .topNavigation li a:hover{
  color: #13b1cd;
}
#grobal-navigation .topNavigation li:last-child{
  border-right: none;
}
#grobal-navigation .topNavigation li a.outLink{
  position: relative;
  padding-right: .65rem;
}
#grobal-navigation .topNavigation li a.outLink::after{
  content: '';
  display: block;
  background-image: url(../img/icon_blank.svg);
  background-repeat: no-repeat;
  width: 0.5rem;
  background-size: contain;
  height: 0.5rem;
  position: absolute;
  top: 0;
  right: 0rem;
}

/* SP Hero Logo - Hidden on PC */
.sp_hero_logo {
  display: none;
}

.hero_swiper{
  width: 94vw;
  margin: auto
}
.hero_swiper .swiper-wrapper {
  /* wrapperのサイズを調整 */
  height: 330px;
}

.hero_swiper .swiper-slide {
  /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
  color: #ffffff;
  height: 100%;
  text-align: center;
  line-height: 300px;
  background-color: #ccc;
  border-radius: 10px;
}

.hero_swiper .swiper-slide {
  /* background-color: #de4439; */
  /* animation: floating-y 1.8s ease-in-out infinite alternate-reverse; */
  position: relative;
  overflow: hidden;
}

/* 背景画像を擬似要素で作成 */
.hero_swiper .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(1px);
  opacity: 0.5;
  transition: filter 0.5s ease, opacity 0.5s ease;
  z-index: -1;
}

.hero_swiper .swiper-slide-prev::before,
.hero_swiper .swiper-slide-next::before {
  filter: blur(0.5px);
  opacity: 0.8;
}

.hero_swiper .swiper-slide-active::before {
  filter: blur(0px);
  opacity: 1;
}

.hero_swiper .swiper-slide.pic01 {
  transform: translateY(-10%);
}
.hero_swiper .swiper-slide.pic01::before {
  background-image: url(../img/home/hero_01.jpg);
}

.hero_swiper .swiper-slide.pic02 {
  transform: translateY(0%);
}
.hero_swiper .swiper-slide.pic02::before {
  background-image: url(../img/home/hero_02.jpg);
  background-position: 33%;
}

.hero_swiper .swiper-slide.pic03 {
  transform: translateY(-10%);
}
.hero_swiper .swiper-slide.pic03::before {
  background-image: url(../img/home/hero_03.jpg);
}

.hero_swiper .swiper-slide.pic04 {
  transform: translateY(-20%);
}
.hero_swiper .swiper-slide.pic04::before {
  background-image: url(../img/home/hero_04.jpg);
}

.hero_swiper .swiper-slide.pic05 {
  transform: translateY(-10%);
}
.hero_swiper .swiper-slide.pic05::before {
  background-image: url(../img/home/hero_05.jpg);
}

.hero_swiper .swiper-slide.pic06 {
  transform: translateY(0%);
}
.hero_swiper .swiper-slide.pic06::before {
  background-image: url(../img/home/hero_06.jpg);
}

.hero_swiper .swiper-slide.pic07 {
  transform: translateY(-10%);
}
.hero_swiper .swiper-slide.pic07::before {
  background-image: url(../img/home/hero_07.jpg);
}

.hero_swiper .swiper-slide.pic08 {
  transform: translateY(-20%);
}
.hero_swiper .swiper-slide.pic08::before {
  background-image: url(../img/home/hero_08.jpg);
  background-position: 12%;
}

.hero_swiper .swiper-slide.pic09 {
  transform: translateY(-10%);
}
.hero_swiper .swiper-slide.pic09::before {
  background-image: url(../img/home/hero_09.jpg);
}

.hero_swiper .swiper-slide.pic10 {
  transform: translateY(0%);
}
.hero_swiper .swiper-slide.pic10::before {
  background-image: url(../img/home/hero_10.jpg);
}
.hero_copy{
  width: 90vw;
  margin: .5rem auto;
  text-align: right;
}
.hero_copy p{
  font-weight: bold;
  color: #1e416e;
}
.top_title{
  width: 95vw;
  max-width: 1040px;
  margin: 6rem auto 1rem;
}
#philosophyArea{
  /* max-width: 1040px;
  margin: auto; */
}
.img_wrap img{
  width: 100%;
  border-radius: 10px;
}
.philosophyText{
  padding:1rem 0 0 3rem;
  font-weight: bold;
}
.philosophyText strong{
  color: #1e416e;
}
#contentsArea .row.justify-content-center.align-items-stretch{
  margin-bottom: 3rem;
}
.businessBox_img img{
  width: 100%;
  border-radius: 5px 5px 0 0;
}
#contentsArea{
  background-color: #1e416e;
  border-radius: 10px;
  margin-top: 7.5rem;
  padding: 5rem 0 3rem;
}
#contentsArea .titleArea{
  padding: 2rem 0 2rem;
  background: url(../img/title2_bg.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 90%;
  margin-bottom: 2rem;
}
#contentsArea .titleArea h2{
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: .25rem;
}
#contentsArea .titleArea .subTitle{
  width:200px;
}
.businessBox .card-body .card-title h3{
  font-size: 1rem;
  line-height: 1.5;
  font-weight: bold;
  color: #1e416e;
  text-align: center;
}
.businessBox .card-link{
    background-color: #3278b4;
    text-align: center;
    font-size: 0.85rem;
    padding: .5rem;
    color: #fff !important;
    border: 1px solid #3278b4;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.businessBox .card-link:hover{
    color: #3278b4 !important;
    background-color: #fff;
}


#trustedArea{
  border-radius: 10px;
  margin-top: 2rem;
  padding: 5rem 0 3rem;
}
#achievementsList{
  margin-top: 5rem;
}
#trustedArea .titleArea{
  padding: 2rem 0 2rem;
  background: url(../img/title3_bg.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 55%;
  margin-bottom: 2rem;
}
#trustedArea .titleArea h2{
  color: #232323;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: .25rem;
}
#trustedArea .titleArea h2 span{
  font-size: 2.5rem;
  color: #3278b4;
}
#trustedArea .titleArea .subTitle{
  width:380px;
}
#achievementsList .titleArea .subTitle{
  width: 120px;
}
.jissekiListBtn{
  border-bottom: 1px solid #1e416e;
  padding-bottom: 6rem;
}

/* Reason Area */
.reazon_item{
  position: relative;
  background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
  border-radius: 10px;
  padding: 3rem 2rem;
  margin-bottom: -20px;
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  transition: all 0.6s ease;
  height: 280px;
}

.reazon_item.is-expanded{
  background: linear-gradient(135deg, #3278b4 0%, #2a5a8a 100%);
  height: auto;
}

.reazon_number{
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 8rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  z-index: 1;
  transition: color 0.6s ease;
}
.reazon_number{
  width: 160px;
}

.reazon_item:not(.is-expanded) .reazon_number{
  color: rgba(58, 120, 180, 0.2);
}

.reazon_left{
  flex: 0 0 280px;
  z-index: 2;
}

.reazon_title{
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.6;
  margin: 0;
  transition: color 0.6s ease;
}

.reazon_item:not(.is-expanded) .reazon_title{
  color: #3278b4;
}

.reazon_center{
  flex: 0 0 280px;
  z-index: 2;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reazon_item:not(.is-expanded) .reazon_center{
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none;
}

.reazon_img{
  width: 100%;
  height: 200px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.reazon_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reazon_right{
  flex: 1;
  z-index: 2;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reazon_item:not(.is-expanded) .reazon_right{
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none;
}

.reazon_subtitle{
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.reazon_text{
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 991px) {
  .reazon_item{
    flex-direction: column;
    align-items: flex-start;
    padding: 4rem 2rem 2rem;
  }

  .reazon_number{
    font-size: 5rem;
    top: 1rem;
    left: 1.5rem;
  }

  .reazon_left,
  .reazon_center{
    flex: 1 1 100%;
    width: 100%;
  }

  .reazon_center{
    margin: 1.5rem 0;
  }

  .reazon_img{
    height: 180px;
  }
}

.jisseki_row{
  transform: scale(1.25);
  margin-top: 3rem;
}

.swaiper-jisseki .swiper-slide img{
  width: 100%;
}


.swiper-container.swaiper-jisseki {
    width: 100%;
    padding: 20px 0 60px;
    overflow: visible;
}
.swaiper-jisseki .swiper-wrapper {
    align-items: center;
}

.swaiper-jisseki .swiper-slide {
    background: transparent;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    overflow: visible;
}

.swaiper-jisseki .swiper-slide a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    width: 100%;
}
/* .swaiper-jisseki .swiper-slide:hover .achievement-card-jisseki {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
} */
.swaiper-jisseki .slide-number {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}
.swaiper-jisseki .slide-content {
    padding: 20px;
    text-align: center;
}
.swaiper-jisseki .slide-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #555;
}
.swaiper-jisseki .slide-description {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

/* ページネーション */
.swaiper-jisseki .swiper-pagination {
    bottom: 20px;
}

.swaiper-jisseki .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #333;
    opacity: 0.3;
}
.swaiper-jisseki .swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff;
}

/* ナビゲーションボタン */
.swaiper-jisseki .swiper-button-next,
.swaiper-jisseki .swiper-button-prev {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.swaiper-jisseki .swiper-button-next:after,
.swaiper-jisseki .swiper-button-prev:after {
    content: none;
}

.swaiper-jisseki .swiper-button-next:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #2b5d8f;
    border-right: 2px solid #2b5d8f;
    transform: rotate(45deg);
}

.swaiper-jisseki .swiper-button-prev:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #2b5d8f;
    border-left: 2px solid #2b5d8f;
    transform: rotate(-45deg);
}

/* レスポンシブ */
@media (max-width: 768px) {
    .swaiper-jisseki .swiper-slide {
        width: 250px;
        height: 350px;
    }
}

#recruitBanner{
  background: linear-gradient(90deg, #e20e33 0%, #e20e33 50%, #ce1234 50%, #ce1234 100%);
}

#recruitBanner .bannerArea img{
  width: 100%;
}

#recruitBanner .bannerArea img.pc {
  display: block;
}

#recruitBanner .bannerArea img.sp {
  display: none;
}

@media (max-width: 61.9em) {
  #recruitBanner .bannerArea img.pc {
    display: none !important;
  }

  #recruitBanner .bannerArea img.sp {
    display: block;
  }

  #footerAddArea .tel,
  #footerAddArea .fax,
  #footerAddArea .tel a,
  #footerAddArea .fax a {
    color: #fff !important;
  }
}

footer{
  padding-top: 100px;
  background: #1e416e;
  padding-bottom: 40px;
}
footer .logoArea{
  width: 350px;
  text-align: center;
  margin: auto;
}
footer .logoArea img{
  width: 220px;
}
footer ul.footerLink{
  display:flex;
  justify-content: center;
  margin-top: 3rem;
}
footer ul.footerLink li{
  list-style: none;
  padding: 0 1.25rem;
  border-right: 1px solid #ccc;
  font-size: .8rem
}
footer ul.footerLink li:last-child{
  border-right: none;
}
footer ul.footerLink li a{
  color: #fff;
  font-size: .8rem;
}
footer #footerAddArea{
  margin: 4rem 0;
}
footer .officeBox{
  /* background: #f00 */
}
footer .officeBox p{
  color: #fff;
  margin: 0;
}
#footerAddArea .add,
#footerAddArea .tel,
#footerAddArea .fax{
  font-size: 0.85rem;
}
#footerAddArea .tel,
#footerAddArea .fax{
  display: inline-block;
  margin-right: 1rem;
}
footer .copyright{
  color: #fff;
  font-size: 0.8rem;
  text-align: center;
}

/* News List Section */
#newsList{
  margin-top: 7.5rem;
  padding: 3rem 0;
}

#newsList .titleArea h2{
  color: #232323;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

#newsList .titleArea .subTitle{
  width: 55px;
}

#newsList .titleArea .subTitle img{
  width: 100%;
}

.newsList_items{
  list-style: none;
  padding: 0;
  margin: 0;
}

.newsList_item{
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 0;
}

.newsList_item:last-child{
  border-bottom: none;
}

.newsList_link{
  display: flex;
  align-items: center;
  padding: 2rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.newsList_link:hover{
  background-color: #f9f9f9;
  text-decoration: none;
}

.newsList_img{
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  margin-right: 2rem;
  overflow: hidden;
  background-color: #e8e8e8;
}

.newsList_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsList_content{
  flex: 1;
  padding-right: 1rem;
}

.newsList_date{
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.newsList_title{
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin: 0;
}

.newsList_arrow{
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow_icon{
  display: block;
  width: 40px;
  height: 40px;
  background-color: #2a5a8a;
  border-radius: 50%;
  position: relative;
  transition: background-color 0.3s ease;
}

.arrow_icon::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.newsList_link:hover .arrow_icon{
  background-color: #3278b4;
}

.link_btn{
  display: block;
  background-color: #3278b4;
  text-align: center;
  font-size: 0.9rem;
  padding: 1rem 2rem;
  color: #fff !important;
  border: 2px solid #3278b4;
  /* border-radius: 5px; */
  transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
  font-weight: bold;
  text-decoration: none;
  margin-top: 2rem;
}

.link_btn:hover{
  color: #3278b4 !important;
  background-color: #fff;
  text-decoration: none;
}

@media (max-width: 767px) {
  .newsList_link{
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 0;
  }

  .newsList_img{
    width: 100%;
    height: 200px;
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .newsList_content{
    width: 100%;
    padding-right: 0;
    margin-bottom: 1rem;
  }

  .newsList_arrow{
    align-self: flex-end;
  }
}

/*----------------------------------
  事業案内セクション (business-section)
------------------------------------*/
.business-section {
  padding: 100px 0;
  margin-left: 1rem;
  margin-right: 1rem;
  margin-bottom: -1rem;
  border-radius: 1rem 1rem 0 0;
  position: relative;
  overflow: hidden;
}

.business-section--dark {
  background: #1e3a5f !important;
}

.business-section--light {
  background: #f4f5f8 !important;
}

.business-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.business-section__subtitle-img {
  height: 12px;
  margin-top: 5px;
}

.business-section p {
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 0;
}

.business-section--dark h2 {
  color: #fff;
}

.business-section--dark p {
  color: rgba(255, 255, 255, 0.7);
}

.business-section--dark .business-accordion__subtitle {
  color: #fff;
}

.business-section--light h2 {
  color: #333;
}

.business-section--light p {
  color: #666;
}

/* タグ表示（赤ラベル） */
.business-section__tag {
  display: inline-block;
  background: #e4032e;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

/* アコーディオン */
.business-accordion__header {
  cursor: pointer;
  position: relative;
}

.business-accordion__header h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.business-accordion__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
}

.business-accordion.is-open .business-accordion__toggle {
  transform: rotate(45deg);
}

.business-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.business-accordion.is-open .business-accordion__content {
  max-height: 3000px;
  padding-top: 40px;
}

.business-section:not(.is-open) > .container-fluid {
  display: none;
}

.business-section > .container-fluid {
  padding-top: 40px;
  padding-left: 0;
  padding-right: 0;
}

.business-accordion__subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #1e416e;
  margin-bottom: 20px;
  line-height: 1.6;
}

.business-accordion--light .business-accordion__subtitle {
  color: #1e416e;
}

.business-accordion--dark .business-accordion__subtitle {
  color: #fff;
}

.business-accordion__text {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 0;
}

.business-accordion--dark .business-accordion__text {
  color: rgba(255, 255, 255, 0.9);
}

.business-accordion__image {
  width: 100%;
  overflow: hidden;
  background: #f5f5f5;
}

.business-accordion__image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  .business-section {
    padding: 60px 0;
  }

  .business-section h2 {
    font-size: 24px;
  }

  .business-section p {
    font-size: 12px;
  }
}

/*----------------------------------
  実績紹介 (achievement)
------------------------------------*/
.achievement-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  margin-bottom: 30px;
  align-items: center;
  background: #f5f5f5;
  border-radius: 35px;
  padding: 0 10px 0 0;
  display: inline-flex;
  /* border: 2px solid #1f3a5f; */
  overflow: hidden;
}

.achievement-filter__label {
  font-size: 16px;
  font-weight: bold;
  color: #18406b;
  /* background: #1e3a5f; */
  padding: 10px 65px 10px 30px;
  border-radius: 25px;
  margin-right: -41px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.achievement-filter__btn {
  background: #fff;
  border: 2px solid #2a608e;
  position: relative;
  z-index: 3;
  color: #1e3a5f;
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 10px 0;
}

.achievement-filter__btn:hover,
.achievement-filter__btn.active {
  background: #2a5f8e;
  color: #fff;
}

.achievement-grid {
  display: flex;
  flex-wrap: wrap;
}

.achievement-item {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.achievement-item.hidden {
  display: none;
}

.achievement-card {
  border: none;
  overflow: visible;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: inherit;
}

.achievement-card__image {
  width: 100%;
  height: 200px;
  overflow: visible;
  background: #d9d9d9;
  position: relative;
}

.achievement-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.achievement-card__label {
  position: absolute;
  top: -7px;
  left: -7px;
  background: #3278b4;
  color: #fff;
  padding: 3px;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  z-index: 2;
  white-space: nowrap;
}

.achievement-card__text {
  font-size: 14px;
  line-height: 1.5;
  padding: 20px;
  color: #333;
  flex-grow: 1;
  margin-bottom: 0;
  position: relative;
  padding-left: 30px;
}

.achievement-card__text:before {
  content: '';
  position: absolute;
  left: 15px;
  top: 20px;
  transform: translateY(0.6em);
  width: 6px;
  height: 6px;
  background: #4a90e2;
  border-radius: 50%;
}

/* Achievement Card Jisseki - Swiper Style */
.achievement-card-jisseki {
    background: #fff;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    min-height: 110px;
    padding: 15px 20px 20px;
    color: inherit;
    background-repeat: no-repeat !important;
    background-color: rgba(255,255,255,0.6) !important;
    background-blend-mode: lighten !important;
    background-size: 30%;
    background-position: left bottom;
}

/* .achievement-card-jisseki:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
} */

.achievement-card-jisseki p {
  margin-bottom: 0.5rem;
}

.achievement-card-jisseki p.cat,
.achievement-item p.cat,
.swiper-slide p.cat {
  background: #5e85b6;
  color: #fff;
  margin-bottom: 0;
  font-size: 0.85rem;
  padding: .25rem .5rem;
  position: relative;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}

.achievement-card-jisseki p.year {
  font-size: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  color: #2b5f90;
  padding: 0 1rem;
  font-weight: bold;
}

.swiper-slide p.cat span.location,
.achievement-item p.cat span.location {
  font-size: 0.65rem;
  background: #2b5f90;
  padding: 0.4rem 0.5rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 0;
  display: inline;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

.achievement-card-jisseki p.genre {
  display: block;
  font-size: 0.75rem;
  margin-top: 0;
  position: absolute;
  bottom: 0px;
  right: 0;
  font-weight: bold;
  font-size: 1.5rem;
  color: #cacaca;
  z-index: -1;
  margin-bottom: 0;
}

.achievement-card-jisseki p.genba {
  line-height: 1;
  font-size: 0.7rem;
  /* position: absolute; */
  margin-bottom: 0;
}

.achievement-card-jisseki p.name {
  line-height: 1.35;
  margin-top: .5rem;
  font-weight: bold;
  color: #2a5d8e;
}

.achievement-card-jisseki p.sekounusi {
  font-size: 0.65rem;
}

.achievement-card-jisseki.g_01 {
  background-image: url(../img/achievement/icon_01_school.svg);
}

.achievement-card-jisseki.g_02 {
  background-image: url(../img/achievement/icon_02_hospital.svg);
}

.achievement-card-jisseki.g_03 {
  background-image: url(../img/achievement/icon_03_hotel.svg);
}

.achievement-card-jisseki.g_04 {
  background-image: url(../img/achievement/icon_04_factory.svg);
}

.achievement-card-jisseki.g_05 {
  background-image: url(../img/achievement/icon_05_public.svg);
}

.achievement-card-jisseki.g_06 {
  background-image: url(../img/achievement/icon_06_others.svg);
  background-position: left 125%;
}

@media (max-width: 767px) {
  .page-header--achievement {
    background-size: 130%;
  }

  .achievement-filter {
    border-radius: 5px;
    padding: 0 0 10px;
  }

  .achievement-filter__label {
    display: block;
    width: 100%;
  }

  .achievement-filter__btn {
    padding: 5px 15px;
    font-size: 12px;
    margin: 0;
  }

  .achievement-card__image {
    height: 150px;
  }

  .achievement-card__text {
    font-size: 13px;
    padding: 12px 15px;
  }

  .achievement-card-jisseki {
    /* min-height: 180px; */
  }
}

/* Achievement Info Block */
.achievement-info-block {
  background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 0;
  transition: background 0.8s ease;
}

.achievement-info-block--last {
  margin-bottom: 80px;
}

.achievement-info-block.is-visible,
.achievement-info-block:not(.achievement-info-block--animated) {
  background: linear-gradient(135deg, #3278b4 0%, #2a5a8a 100%);
}

.achievement-info-block--light {
  background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
}

.achievement-info-block--light.is-visible {
  background: linear-gradient(135deg, #3278b4 0%, #2a5a8a 100%);
}

.achievement-info-block--light .achievement-info-block__title {
  color: #1e3a5f;
}

.achievement-info-block--light.is-visible .achievement-info-block__title {
  color: #fff;
}

.achievement-info-block--animated:not(.is-visible) .achievement-info-block__title {
  color: #3278b4;
}

.achievement-info-block--light .achievement-info-block__label {
  color: rgba(30, 58, 95, 0.7);
}

.achievement-info-block--light .achievement-info-block__value {
  color: #1e3a5f;
  border-bottom-color: rgba(30, 58, 95, 0.2);
}

.achievement-info-block--light .achievement-info-block__bg-number {
  color: rgba(30, 58, 95, 0.08);
}

.achievement-info-block--animated:not(.is-visible) .achievement-info-block__bg-number {
  color: rgba(50, 120, 180, 0.2);
}

.achievement-info-block__bg-number {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 200px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  pointer-events: none;
  font-family: Arial, sans-serif;
  z-index: 0;
}

.achievement-info-block__bg-number img {
  width: 100%;
  height: auto;
}

.achievement-info-block__title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.achievement-info-block__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.achievement-info-block__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.achievement-info-block__label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
}

.achievement-info-block__value {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.achievement-info-block__table {
  width: auto;
  max-width: 600px;
  margin: 0 auto;
  border-collapse: collapse;
  position: relative;
  z-index: 1;
}

.achievement-info-block__table th,
.achievement-info-block__table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
}

.achievement-info-block__table th {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
}

.achievement-info-block__table td {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}

.achievement-info-block--light .achievement-info-block__table th {
  color: rgba(0, 0, 0, 0.7);
}

.achievement-info-block--light .achievement-info-block__table td {
  color: #333;
}

.achievement-info-block--light .achievement-info-block__table th,
.achievement-info-block--light .achievement-info-block__table td {
  border-bottom-color: rgba(0, 0, 0, 0.15);
}

.achievement-info-block--light.is-visible .achievement-info-block__table th {
  color: rgba(255, 255, 255, 0.9);
}

.achievement-info-block--light.is-visible .achievement-info-block__table td {
  color: #fff;
}

.achievement-info-block--light.is-visible .achievement-info-block__table th,
.achievement-info-block--light.is-visible .achievement-info-block__table td {
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.achievement-info-block__list {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 800px;
  margin: 0 auto;
}

.achievement-info-block__list-column {
  flex: 0 0 auto;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.achievement-info-block__list-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.achievement-info-block__list-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.8s ease;
}

.achievement-info-block__list-value {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  transition: color 0.8s ease;
}

.achievement-info-block--animated:not(.is-visible) .achievement-info-block__list-label {
  color: rgba(50, 120, 180, 0.6);
}

.achievement-info-block--animated:not(.is-visible) .achievement-info-block__list-value {
  color: #3278b4;
}

.achievement-info-block--light .achievement-info-block__list-label {
  color: rgba(0, 0, 0, 0.6);
}

.achievement-info-block--light .achievement-info-block__list-value {
  color: #333;
}

@media (max-width: 991px) {
  .achievement-info-block__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 30px;
  }

  .achievement-info-block__list {
    flex-direction: column;
    gap: 30px;
  }

  .achievement-info-block__bg-number {
    font-size: 150px;
    left: 30px;
  }
}

@media (max-width: 767px) {
  .achievement-info-block {
    padding: 60px 0;
    margin-top: 60px;
  }

  .achievement-info-block__title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .achievement-info-block__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .achievement-info-block__list {
    flex-direction: column;
    gap: 25px;
  }

  .achievement-info-block__list-label {
    font-size: 13px;
  }

  .achievement-info-block__list-value {
    font-size: 15px;
  }

  .achievement-info-block__bg-number {
    font-size: 100px;
    left: 20px;
  }

  .achievement-info-block__label {
    font-size: 12px;
  }

  .achievement-info-block__value {
    font-size: 14px;
  }
}

/*----------------------------------
  実績ページネーション
------------------------------------*/
.achievement-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.achievement-pagination__arrow,
.achievement-pagination__number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.achievement-pagination__arrow {
  background: #3b7fb5;
  color: #fff;
}

.achievement-pagination__arrow:hover {
  background: #2a5a8a;
  color: #fff;
}

.achievement-pagination__number {
  background: transparent;
  border: 1px solid #ddd;
  color: #666;
}

.achievement-pagination__number:hover {
  background: #f5f5f5;
  border-color: #3b7fb5;
  color: #3b7fb5;
}

.achievement-pagination__number--active {
  background: #3b7fb5;
  border-color: #3b7fb5;
  color: #fff;
}

.achievement-pagination__number--active:hover {
  background: #3b7fb5;
  border-color: #3b7fb5;
  color: #fff;
}

.achievement-pagination__dots {
  color: #999;
  font-size: 16px;
  padding: 0 5px;
}

@media (max-width: 767px) {
  .achievement-pagination__arrow,
  .achievement-pagination__number {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .achievement-pagination {
    gap: 12px;
  }
}

/*----------------------------------
  実績ブロック スクロールアニメーション
------------------------------------*/
.achievement-info-block--animated .achievement-info-block__content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.8s ease, opacity 0.8s ease;
}

.achievement-info-block--animated.is-visible .achievement-info-block__content {
  max-height: 2000px;
  opacity: 1;
}

/*----------------------------------
  実績詳細ページ
------------------------------------*/
.achievement-detail-content {
  border-top: 1px solid #637c9b;
  border-bottom: 1px solid #637c9b;
  margin-top: 60px;
}

.achievement-detail__image-wrapper {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.achievement-detail__image {
  width: 100%;
  height: auto;
  display: block;
}

.achievement-detail__label-wrapper {
  text-align: center;
  margin-bottom: 20px;
}

.achievement-detail__label {
  display: inline-block;
  background: #3b7fb5;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.achievement-detail__title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
  line-height: 1.6;
}

.achievement-detail__description {
  margin-bottom: 60px;
}

.achievement-detail__description p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.achievement-detail__button-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.achievement-detail__button {
  display: inline-block;
  background: #3b7fb5;
  color: #fff;
  padding: 15px 60px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}

.achievement-detail__button:hover {
  background: #2a5a8a;
  color: #fff;
  text-decoration: none;
}

.achievement-related__heading {
  text-align: center;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 3px;
  color: #ccc;
  margin-bottom: 20px;
}

.achievement-related__heading img {
  height: 36px;
  width: auto;
}

@media (max-width: 767px) {
  .achievement-detail__title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .achievement-detail__description p {
    font-size: 15px;
  }

  .achievement-detail__button {
    padding: 12px 40px;
    font-size: 15px;
  }

  .achievement-related__heading {
    font-size: 24px;
  }
}

/*----------------------------------
  事業案内スライダー (business_slide)
------------------------------------*/
.business_slide {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: visible;
  max-width: 1200px;
}

.business_slide .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.business_slide .swiper-slide {
  width: auto;
  height: auto;
  overflow: visible;
}

.business_slide .business-item-card {
  border: none;
  overflow: visible;
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 4px;
}

.business_slide .business-item-card__image {
  width: 100%;
  height: 200px;
  overflow: visible;
  background: #d9d9d9;
  position: relative;
}

.business_slide .business-item-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business_slide .business-item-card__label {
  position: absolute;
  top: -7px;
  left: -7px;
  background: #3278b4;
  color: #fff;
  padding: 3px;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  z-index: 2;
  white-space: nowrap;
}

.business_slide .business-item-card__text {
  font-size: 14px;
  line-height: 1.5;
  padding: 20px;
  color: #333;
  flex-grow: 1;
  margin-bottom: 0;
  position: relative;
  padding-left: 30px;
}

.business_slide .business-item-card__text:before {
  content: '';
  position: absolute;
  left: 15px;
  top: 20px;
  transform: translateY(0.6em);
  width: 6px;
  height: 6px;
  background: #4a90e2;
  border-radius: 50%;
}

.business-section--dark .business_slide .business-item-card__text {
  color: #fff;
}

/* レスポンシブ対応 */
@media (max-width: 1023px) {
  .business_slide .swiper-slide {
    width: 280px;
  }
}

@media (max-width: 767px) {
  .business_slide {
    overflow: hidden;
  }

  .business_slide .swiper-slide {
    width: 90%;
  }

  .business_slide .business-item-card__image {
    height: 150px;
  }

  .business_slide .business-item-card__label {
    font-size: 13px;
    padding: 6px 12px;
  }

  .business_slide .business-item-card__text {
    font-size: 13px;
    padding: 12px 15px;
  }
}

/*----------------------------------
  Page Header
------------------------------------*/
.page-header {
  position: relative;
  height: 550px;
  overflow: hidden;
  margin-top: 50px;
  margin-left: 1rem;
  margin-right: 1rem;
  border-radius: 8px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}

.page-header__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.page-header__content .row {
  width: 100%;
}

.page-header__content .col-12 {
  padding-left: 80px;
}

.page-header__title {
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
}

.page-header__subtitle-img {
  height: 10px;
}

/* ページ別の背景画像 */
.page-header--business {
  background-image: url('../img/business/hero.jpg');
}

.page-header--achievement {
  background-image: url('../img/achievement/hero.jpg');
}

.page-header--achievement-detail {
  background-image: url('../img/achievement/hero.jpg');
}

.page-header--company {
  background-image: url('../img/company/hero.jpg');
}

.page-header--access {
  background-image: url('../img/access/hero.jpg');
}

.page-header--news {
  background-image: url('../img/news/hero.jpg');
}

.page-header--news-detail {
  background-image: url('../img/news/hero.jpg');
}

.page-header--contact {
  background-image: url('../img/contact/hero.jpg');
}

/* pタグでサブタイトルを表示するページ用 */
.page-header__subtitle {
  color: #fff;
  font-size: 16px;
  letter-spacing: 2px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .page-header {
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 0;
    border-radius: 6px;
    height: 200px;
    background-position: center center;
    background-attachment: scroll;
  }

  .page-header__content .col-12 {
    padding-left: 25px;
  }

  .page-header__title {
    font-size: 24px;
  }

  .page-header__subtitle-img {
    height: 12px;
  }
}

/* メンテナンス・改修セクションの下部マージン */
#maintenance {
  margin-bottom: 3rem;
}

/*----------------------------------
  Business Intro
------------------------------------*/
.business-intro strong {
  color: #3278b4;
  font-weight: bold;
}

/*----------------------------------
  Inline Styles Migration
------------------------------------*/

/* Header Styles */
.s-header.navbar-fixed-top {
  background: rgba(255, 255, 255, 0.95);
}

.midashiArea p {
  color: #1e416e;
}

.s-header__trigger {
  color: #333;
}

.s-header__trigger-icon {
  background: #333;
}

.tiktok-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

/* Breadcrumb Styles */
.breadcrumb-container {
  padding-top: 20px;
  padding-bottom: 20px;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumb li {
  display: inline;
  color: #666;
}

.breadcrumb li a {
  color: #666;
  text-decoration: none;
}

.breadcrumb-separator {
  color: #666;
  margin: 0 8px;
}

.breadcrumb-current {
  color: #333;
}

/* Company Page Styles */
.company-message-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.company-message-bg {
  position: absolute;
  top: 0;
  right: 0;
  /* transform: translateX(15%); */
  z-index: 1;
  /* opacity: 0.05; */
  pointer-events: none;
}
.company-message-bg img{
  height: 70px;
}

.company-message-bg h2 {
  /* font-size: 180px; */
  font-weight: bold;
  color: #000;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}

.company-message-content {
  position: relative;
  z-index: 2;
}

.company-section-title {
  margin-bottom: 10px;
}

.company-section-subtitle {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.company-section-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 10px;
}

.company-section-dot--blue {
  background: #4a90e2;
}

.company-section-dot--red {
  background: #e74c3c;
}

.company-section-subtitle {
  height: 12px;
  display: block;
  margin-top: 5px;
}

.company-greeting-text {
  text-align: justify;
  margin-bottom: 40px;
}

.company-ceo-name {
  font-weight: 600;
}

.company-ceo-photo {
  /* background: #e8e8e8; */
  width: 100%;
  /* padding-top: 75%; */
  position: relative;
}
.company-ceo-photo img{
  width: 100%;
}
/* Philosophy Section */
.philosophy-title-wrapper {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}
.philosophy-title-wrapper img{
  width: 320px;
}

.philosophy-title {
  font-size: 64px;
  font-family: serif;
  letter-spacing: 8px;
}

.philosophy-seal {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-180px);
  width: 40px;
  height: 40px;
  background: #e74c3c;
  border-radius: 50%;
  opacity: 0.8;
}

.philosophy-box {
  /* background: #fff; */
  /* padding: 30px; */
  text-align: center;
  /* border: 1px solid #e0e0e0; */
}

.philosophy-box:not(:last-child) {
  margin-bottom: 20px;
}

.philosophy-box-number {
  margin-bottom: 0px;
  font-weight: 300;
  color: #e0e0e0;
}
.philosophy-box-number img{
  height: 23px;
}

.philosophy-box-subtitle {
  color: #666;
}

/* Company Info Section */
.company-outline-section {
  margin-bottom: 40px;
}

.company-outline-row {
  display: flex;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
}

.company-outline-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.company-outline-label {
  min-width: 100px;
  font-size: 14px;
  color: #4a90e2;
  font-weight: 600;
  padding-right: 20px;
}

.company-outline-content {
  flex: 1;
  font-size: 13px;
  line-height: 1.8;
}

.location-block {
  display: flex;
  align-items: start;
  margin-bottom: 20px;
}

.location-block:last-child {
  margin-bottom: 0;
}

.location-image {
  flex-shrink: 0;
  margin-right: 15px;
}

.location-image img {
  width: 140px;
  height: auto;
  display: block;
}

.location-info {
  flex: 1;
}

.location-name {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 16px;
}

.location-address {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.location-block-simple {
  margin-top: 15px;
}

.company-info-banner {
  text-align: center;
  padding: 12px 20px;
  background: #4a90e2;
  color: #fff;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 600;
}

/* Company Info Table */
.company-info-table {
  border: none;
  width: 100%;
  font-size: 16px;
  background: #fff;
}

.company-info-table tr {
  border-bottom: 1px solid #e8e8e8;
}

.company-info-table tr:last-child {
  border-bottom: none;
}

.company-info-table th {
  width: 120px;
  padding: 15px 12px;
  font-weight: 600;
  vertical-align: top;
  border: none;
  color: #4a90e2;
  background: #fff;
  font-size: 16px;
}

.company-info-table td {
  padding: 15px 12px;
  border: none;
  background: #fff;
  font-size: 16px;
  line-height: 1.8;
}

.company-info-table td .mt-2 {
  margin-top: 8px;
}

/* History Section */
.history-item {
  position: relative;
  margin-bottom: -20px;
  overflow: hidden;
  transition: all 0.6s ease;
  border-radius: 10px;
  background: linear-gradient(135deg, #8ec8ed 0%, #83c6e8 100%);
  padding-bottom: 40px;
}

.history-item:nth-child(1) {
  background: linear-gradient(135deg, #8ec8ed 0%, #83c6e8 100%);
}

.history-item:nth-child(2) {
  background: linear-gradient(135deg, #9dcfef 0%, #92ccea 100%);
}

.history-item:nth-child(3) {
  background: linear-gradient(135deg, #acd6f1 0%, #a1d2ec 100%);
}

.history-item:nth-child(4) {
  background: linear-gradient(135deg, #bbddf3 0%, #b0d8ee 100%);
}

.history-item:nth-child(5) {
  background: linear-gradient(135deg, #cae4f5 0%, #bfdef0 100%);
}

.history-item:nth-child(6) {
  background: linear-gradient(135deg, #d9ebf7 0%, #cee4f2 100%);
}

.history-item:nth-child(7) {
  background: linear-gradient(135deg, #e8f2f9 0%, #dde9f4 100%);
}

.history-item.opened {
  background: linear-gradient(135deg, #3278b4 0%, #2a5a8a 100%);
}

.history-year-bg {
  padding: 50px 0;
  text-align: center;
  position: relative;
  cursor: pointer;
  background: transparent;
  display: inline;
}

.history-year-bg > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.history-year-number {
  /* font-size: 80px; */
  font-weight: 300;
  margin: 0;
  opacity: 0.15;
  color: rgba(255, 255, 255, 0.15);
  transition: color 0.6s ease;
  margin-top: 20px;
  text-align: left;
  position: absolute;
  margin-left: 1rem;
}

.history-year-number img{
  height: 45px;
}
.history-item:not(.opened) .history-year-number {
  color: rgba(58, 120, 180, 0.2);
}

.history-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
  background: transparent;
  min-height: 70px;
}

.history-content > div {
  padding: 10px 0 0 20%;
  /* text-align: center; */
  display: flex;
  /* align-items: flex-start; */
  /* justify-content: center; */
  gap: 40px;
  width: 80%;
  margin: auto;
  /* background: #f00; */
}

.history-content p:first-child {
  margin: 0;
  line-height: 1.8;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

.history-content p:last-child {
  margin: 0;
  line-height: 1.8;
  color: #fff;
  font-size: 16px;
  text-align: left;
}


/* Home Page Specific */
.home-philosophy-image {
  display: block;
  margin: 3rem auto;
}

/* Utility Classes */
.fwb {
  font-weight: bold;
}
.tac{
  text-align:center;
}
.c-white{
  color: #fff;
}
.border-top-blue {
  border-top: 1px solid #1e416e;
}

.border-bottom-blue {
  border-bottom: 1px solid #1e416e;
}

.mx-5rem{
  margin-left: 5rem;
  margin-right: 5rem;
}

/* Access Page Specific */
.access-section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

.access-section-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  color: #4a90e2;
}

.access-info-box {
  /* border: 1px solid #e8e8e8; */
  padding: 20px 0;
  /* background: #f8f9fa; */
  margin-bottom: 20px;
}

.access-info-box strong {
  color: #1e416e;
}

.access-building-image {
  width: 100%;
  height: auto;
  display: block;
}

.access-facility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .access-facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .access-facility-grid {
    grid-template-columns: 1fr;
  }
}

.access-facility-item {
    text-align: left;
    background: #eaf1f7;
    border-radius: 5px;
    overflow: hidden;
}

.access-facility-image {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 15px;
}

.access-facility-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1e416e;
  text-align: center;
}

.access-facility-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  padding: 0 1rem;
}

.access-map-container {
  width: 100%;
  height: 400px;
  background: #e8e8e8;
  position: relative;
  margin-top: 40px;
}

/* News Detail Page Specific */
.news-detail-content {
  border-top: 1px solid #637c9b;
  border-bottom: 1px solid #637c9b;
  margin-top: 60px;
}

.news-detail__image-wrapper {
  width: 100%;
  padding-top: 56.25%;
  background: #d0d0d0;
  margin-bottom: 40px;
  position: relative;
}

.news-detail__title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #333;
}

.news-detail__content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 60px;
}

.news-detail__content p {
  margin-bottom: 20px;
}

.news-detail__button-wrapper {
  text-align: center;
  margin-bottom: 80px;
}

.news-detail__button {
  display: inline-block;
  background: #4a90e2;
  color: #fff;
  padding: 15px 60px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.news-detail__button:hover {
  background: #3278b4;
  color: #fff;
  text-decoration: none;
}

.news-related-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.news-related__heading {
  text-align: center;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 3px;
  color: #ccc;
  margin-bottom: 20px;
}

.news-related__heading img {
  height: 36px;
  width: auto;
}

.news-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  background: #fff;
  overflow: hidden;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-decoration: none;
  color: inherit;
}

.news-card__image {
  width: 100%;
  padding-top: 75%;
  background: #d0d0d0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80px;
  opacity: 0.3;
}

.news-card__body {
  padding: 30px 20px;
}

.news-card__date {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}

.news-card__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 15px;
}

.news-card__arrow {
  text-align: right;
}

.news-card__arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #4a90e2;
  border-radius: 50%;
  color: #fff;
}

/* ========================================
   Contact Page Styles
   ======================================== */

/* Contact page container */
.contact-page__container {
  max-width: 1200px;
}

/* Phone section */
.contact-page__phone-section {
  background: #2c3e50;
  color: #fff;
  padding: 60px 40px;
  position: sticky;
  top: 100px;
}

.contact-page__phone-title {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.contact-page__phone-title img{
  width: 120px;
}


.contact-page__phone-number {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact-page__phone-number i {
  margin-right: 10px;
}

.contact-page__phone-hours {
  color: rgba(255, 255, 255, 0.8);
}

/* Contact form section */
.contact-page__form-section {
  background: #f0f4f8;
  padding: 60px 40px;
}

.contact-page__form-title {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 20px;
  color: rgba(0, 0, 0, 0.4);
}

/* Form labels */
.contact-page__label-required {
  background: #2c3e50;
  color: #fff;
  padding: 2px 8px;
  margin-right: 8px;
  font-size: 12px;
}

.contact-page__label-optional {
  background: #95a5a6;
  color: #fff;
  padding: 2px 8px;
  margin-right: 8px;
  font-size: 12px;
}

.contact-page__form-label {
  margin-bottom: 10px;
  display: block;
}

/* Form inputs */
.contact-page__form-input {
  border: none;
  padding: 15px;
  font-size: 14px;
  background: #fff;
}

.contact-page__form-textarea {
  border: none;
  padding: 15px;
  font-size: 14px;
  background: #fff;
}

/* Privacy policy */
.contact-page__privacy-box {
  background: #fff;
  padding: 20px;
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 20px;
  max-height: 120px;
  overflow-y: auto;
}

.contact-page__privacy-text {
  margin-bottom: 10px;
}

/* Form check alignment fix for Contact Form 7 */
.contact-page__form-section .form-check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-page__form-section .form-check .wpcf7-form-control-wrap {
  display: inline-flex;
  align-items: center;
}

.contact-page__form-section .form-check .wpcf7-list-item {
  margin: 0;
  display: inline-flex;
  align-items: center;
}

.contact-page__form-section .form-check input[type="checkbox"] {
  margin: 0 0 10px 0;
  flex-shrink: 0;
}

.contact-page__form-section .form-check-label {
  margin: 0;
  line-height: 1.5;
  padding-left: .5rem;
}

/* Submit button */
.contact-page__submit-btn {
  background: #4a90e2;
  color: #fff;
  border: none;
  padding: 15px 80px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-page__submit-btn:hover {
  background: #357abd;
}

/* ========================================
   SP Header Styles (767px以下)
   ======================================== */
@media (max-width: 767px) {
  /* Prevent horizontal scroll */
  html,
  body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  /* Set horizontal margins for jisseki swiper */
  .container-fluid.jisseki_row {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    margin-top: 1rem !important;
  }

  /* Remove Bootstrap row negative margins */
  .jisseki_row .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Header */
  .s-header,
  header.s-header {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    left: 0 !important;
    right: 0 !important;
  }

  /* Header Navbar */
  .s-header__navbar {
    width: 100vw !important;
    max-width: 100vw !important;
  }

  /* Header Container */
  .s-header__container,
  header .s-header__navbar .s-header__container {
    display: block !important;
    padding: 12px 20px !important;
    max-width: 100vw !important;
    width: 100vw !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    height: 30vw;
    transition: height 0.3s ease;
  }
  .s-header__shrink .s-header__container{
    height: 18vw !important;
  }

  .s-header__container:before,
  .s-header__container:after {
    display: none !important;
  }

  .s-header__navbar-row {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100% !important;
  }

  .s-header__navbar-row-col {
    display: block !important;
    width: auto !important;
    flex-shrink: 0 !important;
  }

  .s-header__navbar-row-col:first-child {
    flex: 0 0 auto !important;
    order: 1;
  }

  .s-header__navbar-row-col:last-child {
    flex: 0 0 auto !important;
    order: 3;
  }

  /* Logo */
  .s-header__logo {
    width: 50px !important;
    height: 50px !important;
    flex-shrink: 0;
    top: 0 !important;
    float: none !important;
  }

  .s-header__logo img {
    max-height: 45px !important;
    max-width: 45px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
  }
  .s-header.-is-open .s-header__logo-img-white{
    max-height: inherit !important;
    max-width: inherit !important;
    width: 50vw !important;
  }

  /* Midashi Area */
.midashiArea {
    position: fixed !important;
    /* width: auto !important; */
    flex: 1;
    min-width: 0;
    order: 2;
    padding: 0 8px !important;
    border-bottom: none !important;
    text-align: center;
    top: 2.5rem;
    left: 0;
    /* right: 50% !important; */
    position: absolute;
    width: 100%;
    display: block;
    /* background: #f00; */
    width: 100% !important;
    transition: top 0.3s ease;
}

  .s-header__shrink .midashiArea {
    padding: 0 12px !important;
    border-bottom: none !important;
    top: 1rem !important;
  }

  .midashiArea p {
    font-size: 1.25rem !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
    margin: 0 !important;
    color: #1e416e !important;
    letter-spacing: -0.03em !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .s-header__shrink .midashiArea p {
    font-size: 14px !important;
  }

  /* Trigger (Hamburger) */
  .s-header__trigger {
    width: 45px !important;
    height: 45px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .s-header__trigger svg {
    width: 45px !important;
    height: 45px !important;
    max-width: 45px !important;
    max-height: 45px !important;
  }

  /* Hide Global Navigation on SP */
  #grobal-navigation {
    display: none !important;
  }

  /* SP Hero Logo */
  .sp_hero_logo {
      display: block;
      text-align: center;
      padding: 20px 20px 15px;
      background: #fff;
      margin-top: 10vw;
      margin-bottom: 21vw;
      padding-top: 10vw;
      border-top: 1px solid #244671;
  }

  .sp_hero_logo img {
    /* max-width: 260px; */
    width: 100%;
    height: auto;
  }

  /* SP Hero Swiper */
  .hero_swiper {
    width: 100%;
    margin: 0;
    margin-top: 3vw;
    padding: 0 5vw 3vw;
  }

  .hero_swiper .swiper-wrapper {
    height: 82vw;
  }

  .hero_swiper .swiper-slide {
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    height: 82vw;
  }

  .hero_swiper .swiper-slide::before {
    border-radius: 15px;
  }

  /* SP Hero Copy */
  .hero_copy {
    width: 100%;
    padding: 20px 20px 30px;
    margin: 0;
    text-align: center;
    background: #fff;
  }

  .hero_copy p {
    font-size: 13px;
    line-height: 1.7;
    font-weight: 700;
    color: #1e416e;
  }

  /* SP Section Spacing */
  .top_title {
    padding: 8vw 5vw 5vw;
    margin: 0;
  }

  .top_title img {
    max-width: 200px;
    width: 100%;
  }

  #philosophyArea {
    padding: 0 5vw 10vw;
  }

  #philosophyArea .row {
    margin: 0;
  }

  #philosophyArea .col-sm-6,
  #philosophyArea .col-sm-5 {
    padding: 0;
    margin-bottom: 5vw;
  }

  .philosophyText {
    font-size: 14px;
    line-height: 1.8;
    padding: 0 3vw;
  }

  #contentsArea {
    padding: 0vw 5vw;
    margin-top: 0;
    padding-bottom: 2vw;
  }

  #contentsArea .titleArea {
    text-align: center;
    margin-bottom: 8vw;
  }

  #contentsArea .titleArea h2 {
    font-size: 24px;
    margin-bottom: 2vw;
    text-align: left;
    padding: 1rem 1rem 0;
  }

  .businessBox {
    margin-bottom: 6vw;
    padding: 0 3vw;
  }

  .businessBox .card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  }

  .businessBox_img {
    height: 50vw;
    overflow: hidden;
  }

  .businessBox_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .card-body {
    padding: 5vw 4vw;
  }

  .businessBox_text h3 {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 4vw;
  }

  .card-link {
    font-size: 14px;
    padding: 3vw 0;
  }
}


.business_wrap {
    margin: 0 10vw;
    padding: 2rem;
    border-radius: .25rem;
    background-color: #fff;
    border: 1px solid #fff;
    box-sizing: border-box;
    padding-left: 27%;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
}
.business_wrap a{
    position: relative;
}

.business_wrap::before{
  content: '';
  background-repeat: no-repeat;
  display: block;
  width: 33%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
}

.business_wrap.haikan::before{
  background-image: url(../img/home/img_business_bg_01.jpg);
}
.business_wrap.sekoukanri::before{
  background-image: url(../img/home/img_business_bg_02.jpg);
}
.business_wrap.unit::before{
  background-image: url(../img/home/img_business_bg_03.jpg);
}

.business_wrap h3.businessMidashi{
  font-size: 1.25rem;
  color: #1e426e;
}
.business_wrap p.businessLead{
  font-size: 0.75rem;
}
.business_wrap .businessBox{
  padding-right: 5px;
  padding-left: 5px;
}

/* .swaiper-jisseki .swiper-slide p{
  margin-bottom: .5rem;
} */
.swaiper-jisseki .swiper-slide p.year{
    font-size: 1rem;
    top: 0;
    left: 0;
    position: absolute;
    /* background: #2b5f90; */
    color: #2b5f90;
    padding: 0 1rem;
    font-weight: bold;
}
.swiper-slide p.location {
    font-size: 0.65rem;
    top: 0;
    right: 0;
    position: absolute;
    background: #2b5f90;
    padding: .15rem .5rem;
    color: #fff;
    font-weight: bold;
}
.swiper-slide p.genre {
    display: block;
    font-size: 0.75rem;
    margin-top: 0;
    position: absolute;
    bottom: 0px;
    right: 0;
    font-weight: bold;
    font-size: 1.25rem;
    color: #cacaca;
    z-index: -1;
    margin-bottom: 0;
}
/* 古いSwiper用スタイルはコメントアウト - 現在は .achievement-card-jisseki で統一 */
/* .swiper-slide p.genba {
    line-height: 1;
    font-size: 0.65rem;
    position: absolute;
    margin-bottom: 1rem;
    margin-top: 1rem;
}
.swiper-slide p.name{
  line-height: 1.2;
  margin-top: 2rem;
  font-weight: bold;
  color: #2a5d8e;
} */

/* Swiper内のachievement-card-jissekiを調整 - 競合するスタイルだけunset */
.swiper-slide .achievement-card-jisseki {
  /* 基本の .achievement-card-jisseki スタイルを継承 */
  /* Swiperから継承される競合スタイルだけを打ち消し */
}


/* 古いSwiper用背景スタイルはコメントアウト - 現在は .achievement-card-jisseki.g_XX で統一 */
/* .swaiper-jisseki .swiper-slide{
  background-repeat: no-repeat !important;
  background-color:rgba(255,255,255,0.6) !important;
  background-blend-mode:lighten !important;
  min-height: 8vw;
}
.swaiper-jisseki .swiper-slide.g_01{
  background-image: url(../img/achievement/icon_01_school.svg)
}
.swaiper-jisseki .swiper-slide.g_02{
  background-image: url(../img/achievement/icon_02_hospital.svg)
}
.swaiper-jisseki .swiper-slide.g_03{
  background-image: url(../img/achievement/icon_03_hotel.svg)
}
.swaiper-jisseki .swiper-slide.g_04{
  background-image: url(../img/achievement/icon_04_factory.svg)
}
.swaiper-jisseki .swiper-slide.g_05{
  background-image: url(../img/achievement/icon_05_public.svg)
}
.swaiper-jisseki .swiper-slide.g_06{
  background-image: url(../img/achievement/icon_06_others.svg)
} */
.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{
  overflow: visible !important;
}

/* ========================================
   SP Header Styles (767px以下)
   ======================================== */
@media (max-width: 767px) {
.tiktok-icon{
    width: 40px;
    height: 40px;
}
.top_title{
  width: 100%;
}
.top_title img{
  max-width: inherit;
}
.img_wrap img{
  border-radius: 5px;
}
#contentsArea{
  border-radius: 0;
}
#contentsArea .titleArea{
  margin: 0 -1rem;
  background-size: 110%;
  background-position: center 1rem;
}
#contentsArea .titleArea .subTitle{
  padding: 0 1rem;
}
.business_wrap {
    margin: 0;
    padding: 2rem 2rem 0;
    border-radius: .25rem;
    background-color: #fff;
    border: 1px solid #fff;
    box-sizing: border-box;
    padding-left: inherit;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
}
.business_wrap::before {
    content: '';
    background-repeat: no-repeat;
    display: block;
    width: 100%;
    height: 50vw;
    position: absolute;
    left: 0;
    top: 0;
    background-size: cover;
}
.business_wrap>div.col-sm-3{
  margin-top: 50vw;
}
.business_wrap.sekoukanri::before{
  background-position: center;
}
#trustedArea {
  border-radius: 10px;
  margin-top: 0;
  padding: 3rem 0 3rem;
}
#trustedArea .titleArea{
  background-size: 110%;
  margin-bottom: 2rem;
  background-position: center top;
}
#trustedArea .titleArea h2 {
    font-size: 1.75rem;
    margin: 1rem;
}
#trustedArea .titleArea .subTitle {
    width: 160px;
    margin: 0 1rem;
}
.reazon_center{
  margin: 0;
}
.reazon_right{
  margin-bottom: 2rem;
}
#achievementsList{
  margin-top: 2rem;
}
.jisseki_row {
  transform: scale(1);
}
.swaiper-jisseki .swiper-button-next {
  right: -1.75rem !important;
}
.swaiper-jisseki .swiper-button-prev {
  left: -1.75rem !important;
}
.swaiper-jisseki .swiper-slide {
    width: 250px;
    height: 35vw;
}
.jissekiListBtn{
    padding-bottom: 3rem;
}
#newsList{
  margin-top:0;
}
#newsList .titleArea h2 {
    /* color: #232323; */
    font-size: 2rem;
    /* font-weight: bold; */
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}
#newsList .titleArea .subTitle {
    width: 55px;
    margin-left: 1rem;
}
.newsList_img {
    width: 33%;
    height: auto;
    margin-right: 0;
    margin-bottom: 1rem;
}
.newsList_items {
    list-style: none;
    padding: 0;
    margin: 0 1rem;
}
.newsList_link {
    flex-direction: row;
    align-items: flex-start;
    padding: 1.5rem 0;
}
.newsList_content {
    width: 100%;
    padding-right: 0;
    margin-bottom: 1rem;
    margin-left: 1rem;
}
.newsList_title {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    margin: 0;
}
.newsList_arrow {
    align-self: flex-end;
    display: none;
}
#newsList {
    margin-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
.link_btn {
    margin-top: 0;
}
#recruitBanner{
  margin-top: 3rem;
}
#recruitBanner {
    margin-top: 3rem;
    padding: 0;
}
footer ul.footerLink{
  display: block;
}
footer ul.footerLink li {
    list-style: none;
    padding: 0 1.25rem;
    border-right: 1px solid #ccc;
    font-size: 0.8rem;
    display: inline-block;
}
footer {
    padding-top: 15vw;
}
.page-header {
    margin-top: 10vw;
}
.page-header--achievement{
  background-position: 50% -18px !important;
}
.page-header--company{
  background-position: 50% -24px !important;
}
.page-header--business{
      background-position: 50% -37px !important;
}
.page-header--access{
  background-position: 50% -38px !important;
}
.page-header--news{
  background-size: 140%;
}
.company-message-bg {
  position: absolute;
  top: -60px;
  right: 0;
  z-index: -9;
  pointer-events: none;
}
.company-message-bg img {
  width: 100%;
}
.company-outline-row {
  display: block;
}
.company-outline-label {
  min-width: auto;
  margin-bottom: 8px;
  padding-right: 0;
}
.company-outline-content {
  padding-left: 0;
}
.company-info-table,
.company-info-table tbody,
.company-info-table tr,
.company-info-table th,
.company-info-table td {
  display: block;
  width: 100%;
}
.company-info-table tr {
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.company-info-table th {
  width: 100%;
  padding: 8px 0;
  font-weight: 600;
  color: #4a90e2;
}
.company-info-table td {
  width: 100%;
  padding: 8px 0 0 0;
}
.history-content > div {
  padding: 20px 1rem;
  display: block;
  gap: 0;
  width: 100%;
  margin: 0;
}
}

/* News item without link styles */
.news-item-no-link {
  cursor: default;
}

.news-item-no-link:hover {
  transform: none;
}

.newsList_link-no-link {
  cursor: default;
  pointer-events: none;
}

.newsList_link-no-link:hover {
  transform: none;
}