<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* ==========================================================================//
//
//　A Modern CSS Reset  https://piccalil.li/blog/a-modern-css-reset/
//
// ========================================================================== */
/* Box sizing rules */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500&amp;family=Noto+Sans+JP:wght@400;500;700&amp;display=swapp");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

ul, ol {
  list-style-type: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  margin: 0;
  padding: 0;
}

em {
  font-style: normal;
}

/* Break point
---------------------------------------------------------- */
/* Animation
---------------------------------------------------------- */
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  35% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  35.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  70%, 100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  35% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  35.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  70%, 100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@-webkit-keyframes scroll-sub {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  40% {
  }
  80% {
    -webkit-transform: translate(0, 20px);
            transform: translate(0, 20px);
  }
  100% {
  }
}

@keyframes scroll-sub {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  40% {
  }
  80% {
    -webkit-transform: translate(0, 20px);
            transform: translate(0, 20px);
  }
  100% {
  }
}

/* 設定いろいろ
---------------------------------------------------------- */
/* Font
---------------------------------------------------------- */
/* Color
---------------------------------------------------------- */
/* 
---------------------------------------------------------- */
/* フェードイン
---------------------------------------------------------- */
@-webkit-keyframes fadein-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadein-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.animation-fadein {
  opacity: 0;
  -webkit-animation-name: fadein-bottom;
          animation-name: fadein-bottom;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadeup {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    -webkit-filter: blur(4px);
            filter: blur(4px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}

@keyframes fadeup {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    -webkit-filter: blur(4px);
            filter: blur(4px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}

.animation-fadeup {
  -webkit-animation-name: fadeup;
          animation-name: fadeup;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

/* 遷移
---------------------------------------------------------- */
@-webkit-keyframes PageAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@keyframes PageAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

#transition-top {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1001;
}

.transition-top-back {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #1976BD;
  z-index: 1000;
  width: 100%;
  height: 100%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-animation-name: PageAnime;
          animation-name: PageAnime;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

#transition {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: #fff;
  opacity: 1;
}

.appear #transition {
  display: none;
}

/* 表示・非表示
---------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}

@media screen and (max-width: 640px) {
  .sp-only {
    display: block;
  }
}

/* Font
---------------------------------------------------------- */
html {
  font-size: 10px;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #000;
  font-weight: 400;
  line-height: 2.37;
  font-size: 16px;
  letter-spacing: 0.02em;
}

p {
  line-height: 2;
}

a {
  word-wrap: break-word;
}

a[target="_blank"]::after {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  margin-left: 0.5em;
  background-image: url(/assets/images/common/icon_blank.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.c-footer a[target="_blank"]::after {
  background-image: url(/assets/images/common/icon_blank-white.svg);
}

/* title
---------------------------------------------------------- */
.ttl-blue {
  padding-bottom: 1em;
  display: block;
  text-align: center;
  color: #1976BD;
  font-weight: normal;
}

.en {
  font-family: 'EB Garamond', serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.head-ttl {
  font-size: 22px;
  line-height: 0.5;
  position: relative;
}

.head-ttl::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #1976BD;
}

.head-ttl span {
  padding-left: 1em;
}

@media screen and (max-width: 640px) {
  .head-ttl span {
    padding: 0;
  }
}

/* 背景
---------------------------------------------------------- */
.c-sec-top {
  padding-bottom: 180px;
  background-image: url(/assets/images/common/back.svg);
  background-repeat: repeat-y;
  background-size: 100%;
}

.c-sec-top.p-intro {
  padding-bottom: 0;
  background: none;
}

/* text
---------------------------------------------------------- */
.ttl-mid {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
}

@media screen and (max-width: 960px) {
  .ttl-mid {
    font-size: 1.8rem;
  }
}

.ttl-bg {
  display: block;
  font-size: 30px;
  line-height: 1.4;
  text-align: center;
  font-weight: 700;
}

@media screen and (max-width: 960px) {
  .ttl-bg {
    font-size: 2.6rem;
  }
}

.ttl-huge {
  display: block;
  font-size: 48px;
  line-height: 1.4;
  text-align: center;
  font-weight: 700;
}

@media screen and (max-width: 960px) {
  .ttl-huge {
    font-size: 3rem;
  }
}

.em {
  line-height: 2.68;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .em {
    text-align: left;
  }
}

.small {
  font-size: 1.4rem;
  font-weight: 300;
}

.font-m {
  font-weight: 500;
}

.font-b {
  font-weight: 700;
}

.blue-back {
  background-color: #E3EEF7;
  color: #1976BD;
}

.c-bottom-line {
  position: relative;
}

.c-bottom-line::after {
  content: "";
  display: block;
  width: 70px;
  height: 1px;
  margin: 30px auto;
  background-color: #c8c8c8;
}

.c-footer-aside {
  padding-top: 2em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 640px) {
  .c-footer-aside {
    padding-top: 1em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-footer-aside-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 640px) {
  .c-footer-aside-link {
    padding-bottom: 2em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-footer-aside-link li {
  padding-left: 2em;
  font-weight: 300;
  font-size: 1.4rem;
}

@media screen and (max-width: 640px) {
  .c-footer-aside-link li {
    padding: 0;
  }
}

.c-figcaption {
  font-size: 1.4rem;
  font-weight: 300;
  color: #888;
}

/* layout
---------------------------------------------------------- */
.l-wd-s {
  max-width: 1060px;
  padding: 0 20px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.l-wd-m {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.l-wd-l {
  max-width: 1340px;
  padding: 0 20px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.l-pt-s {
  padding-top: 40px;
}

@media screen and (max-width: 640px) {
  .l-pt-s {
    padding-top: 20px;
  }
}

.l-pt-m {
  padding-top: 60px;
}

@media screen and (max-width: 640px) {
  .l-pt-m {
    padding-top: 30px;
  }
}

.l-pt-l {
  padding-top: 100px;
}

@media screen and (max-width: 640px) {
  .l-pt-l {
    padding-top: 70px;
  }
}

.l-pt-ll {
  padding-top: 180px;
}

@media screen and (max-width: 640px) {
  .l-pt-ll {
    padding-top: 100px;
  }
}

.l-mt-0 {
  margin-top: 0 !important;
}

/* component
---------------------------------------------------------- */
/*------　header -------*/
.c-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  height: 80px;
  z-index: 100;
  background-color: #fff;
}

@media screen and (max-width: 960px) {
  .c-header {
    height: 50px;
  }
}

.c-header-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.c-logo {
  width: 260px;
  height: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 640px) {
  .c-logo {
    width: 240px;
  }
}

.c-logo a {
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.c-logo a:hover {
  opacity: 0.8;
}

.c-menu-btn {
  width: 50px;
  height: 50px;
  background-color: #1976BD;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  display: none;
}

@media screen and (max-width: 960px) {
  .c-menu-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.c-menu-btn span {
  display: inline-block;
  width: 25px;
  height: 1px;
  position: relative;
  background: #fff;
  -webkit-transition: background 10ms 300ms ease;
  transition: background 10ms 300ms ease;
}

.c-menu-btn span::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 1px;
  -webkit-transition: top 300ms 350ms ease,
 -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease,
 -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease,
 transform 300ms 50ms ease;
  transition: top 300ms 350ms ease,
 transform 300ms 50ms ease,
 -webkit-transform 300ms 50ms ease;
  position: absolute;
  background: #fff;
  bottom: 8px;
}

.c-menu-btn span::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 1px;
  -webkit-transition: top 300ms 350ms ease,
 -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease,
 -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease,
 transform 300ms 50ms ease;
  transition: top 300ms 350ms ease,
 transform 300ms 50ms ease,
 -webkit-transform 300ms 50ms ease;
  position: absolute;
  background: #fff;
  top: 8px;
}

.c-menu-btn.open span {
  background-color: transparent;
}

.c-menu-btn.open span::before {
  -webkit-transition: top 300ms 50ms ease,
 -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease,
 -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease,
 transform 300ms 350ms ease;
  transition: top 300ms 50ms ease,
 transform 300ms 350ms ease,
 -webkit-transform 300ms 350ms ease;
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-menu-btn.open span::after {
  -webkit-transition: top 300ms 50ms ease,
 -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease,
 -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease,
 transform 300ms 350ms ease;
  transition: top 300ms 50ms ease,
 transform 300ms 350ms ease,
 -webkit-transform 300ms 350ms ease;
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-header-nav {
  height: 100%;
}

@media screen and (max-width: 960px) {
  .c-header-nav {
    background-color: white;
    position: fixed;
    top: 50px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    height: calc(100vh);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    visibility: hidden;
    -webkit-transition: visibility  0.3s ease, 
 -webkit-transform 0.3s ease-in-out;
    transition: visibility  0.3s ease, 
 -webkit-transform 0.3s ease-in-out;
    transition: visibility  0.3s ease, 
 transform 0.3s ease-in-out;
    transition: visibility  0.3s ease, 
 transform 0.3s ease-in-out, 
 -webkit-transform 0.3s ease-in-out;
  }
}

.c-header-nav.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  visibility: visible;
}

.c-header-nav-wrap {
  height: 100%;
}

.c-header-nav__list {
  padding-top: 1.4em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

@media screen and (max-width: 960px) {
  .c-header-nav__list {
    padding: 1.2em 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: auto;
  }
}

.c-header-nav__list .list-item {
  padding-left: 2em;
  /*------currentスタイル -------*/
  /*------ナビゲーションホバースタイル -------*/
}

@media screen and (max-width: 960px) {
  .c-header-nav__list .list-item {
    padding: 0.5em 0;
    font-size: 1.8rem;
    font-weight: 700;
    width: 100%;
    text-align: center;
    position: relative;
  }
  .c-header-nav__list .list-item::after {
    content: "";
    display: inline-block;
    height: 1px;
    background-image: -webkit-linear-gradient(left, #b5b5b5, #b5b5b5 1px, transparent 2px, transparent 0px);
    background-image: linear-gradient(to right, #b5b5b5, #b5b5b5 1px, transparent 2px, transparent 0px);
    background-size: 3px 1px;
    background-repeat: repeat-x;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
  }
}

.c-header-nav__list .list-item:last-of-type {
  padding-right: 0;
}

.c-header-nav__list .list-item a {
  display: inline-block;
  width: 100%;
  position: relative;
  font-weight: 700;
}

.c-header-nav__list .list-item .c-header-nav__plus {
  display: none;
  width: calc(50vw - 6em);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 960px) {
  .c-header-nav__list .list-item .c-header-nav__plus {
    display: inline-block;
  }
}

.c-header-nav__list .list-item .c-header-nav__plus::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 2px;
  background-color: #B5B5B5;
  position: absolute;
  top: 1.5em;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-header-nav__list .list-item .c-header-nav__plus::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 2px;
  background-color: #B5B5B5;
  position: absolute;
  top: 1.5em;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-header-nav__list .list-item .c-header-nav__plus.open::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  opacity: 0;
}

.c-header-nav__list .list-item.current a {
  color: #1976BD;
}

.c-header-nav__list .list-item:hover &gt; .c-header-nav__list--sub-wrap {
  visibility: visible;
}

.c-header-nav__list .list-item a:hover {
  color: #1976BD;
}

.c-header-nav__list--sub-wrap {
  padding: 44px 0;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9);
  visibility: hidden;
}

@media screen and (max-width: 960px) {
  .c-header-nav__list--sub-wrap {
    visibility: visible;
    display: none;
    position: static;
    max-width: 250px;
    margin: 0 auto;
    background-color: transparent;
  }
}

.c-header-nav__list--sub {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 960px) {
  .c-header-nav__list--sub {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-size: 1.6rem;
    font-weight: normal;
  }
}

.c-header-nav__list--sub .list-item--sub {
  margin-right: 60px;
}

@media screen and (max-width: 960px) {
  .c-header-nav__list--sub .list-item--sub {
    margin: 0;
    width: 100%;
    text-align: left;
  }
}

.c-header-nav__list--sub .list-item--sub:last-of-type {
  margin-right: 0;
}

.c-header-nav__list--sub .list-item--sub a {
  font-weight: 300;
  color: #000 !important;
}

@media screen and (max-width: 640px) {
  .c-header-nav__list--sub .list-item--sub a {
    display: inline-block;
    width: 100%;
  }
}

.c-header-nav__list--sub .c-header-link {
  padding-top: 1em;
  position: relative;
  color: #000;
}

.c-header-nav__list--sub .c-header-link::before {
  margin-right: 0.5em;
  content: "";
  display: inline-block;
  width: 2em;
  height: 1px;
  background-color: #000;
  opacity: 0.5;
  vertical-align: middle;
  position: relative;
  bottom: 2px;
}

@media screen and (max-width: 960px) {
  .c-header-nav__list--sub .c-header-link::before {
    width: 1.2em;
  }
}

.c-header-nav__list--bottom {
  text-align: center;
  font-size: 1.2rem;
  display: none;
}

.c-header-nav__list--bottom li a {
  display: inline-block;
  width: 100%;
}

@media screen and (max-width: 960px) {
  .c-header-nav__list--bottom {
    display: block;
  }
}

/*------ footer -------*/
.c-footer__contact {
  padding: 3em 0;
  background-color: #E3EEF7;
}

.c-footer-txt {
  text-align: center;
}

.c-footer-btn {
  margin: 2em auto;
  text-align: center;
}

.c-footer-btn a {
  padding: 1em 2em;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  background-color: #1976BD;
  max-width: 300px;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}

@media screen and (max-width: 640px) {
  .c-footer-btn a {
    font-size: 1.6rem;
  }
}

.c-footer-btn a:hover {
  color: #1976BD;
  background-color: #fff;
  outline: 2px solid #1976BD;
}

.c-footer__content {
  padding: 80px 0 130px 0;
  color: #fff;
  background-color: #0C2233;
}

@media screen and (max-width: 640px) {
  .c-footer__content {
    padding-bottom: 80px;
  }
}

.c-footer-logo img {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

.c-footer-nav {
  padding: 50px 0 60px 0;
  max-width: 600px;
  margin: 0 auto;
}

.c-footer-nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.8rem;
}

@media screen and (max-width: 640px) {
  .c-footer-nav__list {
    font-size: 1.6rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-footer-nav__list a:hover {
  color: #00B9FF;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}

.c-footer-nav__list li.current a {
  color: #00B9FF;
}

.c-footer-office {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 960px) {
  .c-footer-office {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 250px;
    margin: 0 auto;
  }
}

.c-footer-office dl {
  padding: 0 2em;
  position: relative;
  -webkit-flex-basis: calc(100% / 4);
      -ms-flex-preferred-size: calc(100% / 4);
          flex-basis: calc(100% / 4);
}

@media screen and (max-width: 960px) {
  .c-footer-office dl {
    padding: 2em 0;
  }
}

.c-footer-office dl::after {
  content: "";
  display: inline-block;
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 100%;
  right: 0;
  background-image: -webkit-linear-gradient(top, #b5b5b5, #b5b5b5 1px, transparent 2px, transparent 0px);
  background-image: linear-gradient(to bottom, #b5b5b5, #b5b5b5 1px, transparent 2px, transparent 0px);
  background-size: 3px 5px;
  background-position: left top;
  background-repeat: repeat-y;
}

@media screen and (max-width: 960px) {
  .c-footer-office dl::after {
    display: inline-block;
    height: 1px;
    background-image: -webkit-linear-gradient(left, #b5b5b5, #b5b5b5 1px, transparent 2px, transparent 0px);
    background-image: linear-gradient(to right, #b5b5b5, #b5b5b5 1px, transparent 2px, transparent 0px);
    background-size: 3px 1px;
    background-repeat: repeat-x;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
}

.c-footer-office dl:first-of-type::before {
  display: inline-block;
  height: 1px;
  background-image: -webkit-linear-gradient(left, #b5b5b5, #b5b5b5 1px, transparent 2px, transparent 0px);
  background-image: linear-gradient(to right, #b5b5b5, #b5b5b5 1px, transparent 2px, transparent 0px);
  background-size: 3px 1px;
  background-repeat: repeat-x;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  content: "";
  top: 0;
}

@media screen and (max-width: 960px) {
  .c-footer-office dl:first-of-type::before {
    display: inline-block;
  }
}

.c-footer-office dd {
  padding-top: 0.5em;
}

.c-has-panel .c-sec-top {
  padding-bottom: 0;
}

/*------下層ページトップスタイル -------*/
.c-page-top {
  width: 100%;
  height: calc(100vh - 80px);
  position: relative;
  top: 80px;
  margin-bottom: 80px;
}

@media screen and (max-width: 960px) {
  .c-page-top {
    top: 50px;
    margin-bottom: 50px;
  }
}

.c-page-top.small-top {
  max-height: 280px;
}

.c-page-top.small-top .c-page-top__mv {
  max-height: 280px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-page-top.small-top .c-page-top__mv .c-page-top__ttl-wrap {
  padding: 0;
}

.c-page-top__mv {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.c-page-top__mv::after {
  content: "";
  background-color: #1976BD;
  opacity: 0.3;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  opacity: 0.6;
  z-index: -1;
}

.c-page-top__ttl {
  color: #fff;
}

.c-page-top__ttl--main {
  font-weight: 500;
}

.c-page-top__ttl--sub {
  display: block;
  text-align: center;
  font-size: 2rem;
}

.c-page-top__txt {
  text-align: center;
  color: #fff;
  font-weight: 300;
}

@media screen and (max-width: 640px) {
  .c-page-top__txt {
    font-size: 1.4rem;
  }
}

/*------　セクション共通スタイル -------*/
.sec-inner {
  padding-top: 120px;
}

@media screen and (max-width: 640px) {
  .sec-inner {
    padding-top: 100px;
  }
}

.c-sec-ttl {
  padding-bottom: 60px;
}

.c-sec-ttl-bg {
  padding-bottom: 70px;
}

.c-sec-ttl-txt {
  padding-bottom: 90px;
}

/*------　パネル -------*/
.c-panel__ttl {
  padding-bottom: 50px;
}

@media screen and (max-width: 640px) {
  .c-panel__ttl {
    padding-bottom: 0;
  }
}

.c-panel__ttl--sub {
  display: block;
  text-align: center;
  font-size: 2rem;
}

.c-company-panel-wrap,
.c-business-panel-wrap {
  margin-top: 120px;
  padding-top: 60px;
  padding-bottom: 180px;
  background-color: rgba(227, 238, 247, 0.4);
}

.c-company-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 640px) {
  .c-company-panel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.c-company-panel__item {
  text-align: center;
  width: calc(100% / 4 - 15px);
  max-width: 250px;
}

@media screen and (max-width: 640px) {
  .c-company-panel__item {
    padding-top: 2em;
    width: 100%;
  }
}

.c-company-panel__item a img, .c-company-panel__item a p {
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}

.c-company-panel__item a:hover img {
  opacity: 0.6;
}

.c-company-panel__item a:hover p {
  color: #1976BD;
}

.c-company-panel__item p {
  padding-top: 0.8em;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.c-company-panel__item:first-of-type a img {
  -webkit-box-shadow: 0px 0px 5px 0px rgba(181, 181, 181, 0.5);
          box-shadow: 0px 0px 5px 0px rgba(181, 181, 181, 0.5);
}

.c-business-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 788px;
  margin: 0 auto;
}

@media screen and (max-width: 640px) {
  .c-business-panel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.c-business-panel__item {
  text-align: center;
  width: calc(100% / 3 - 15px);
  max-width: 250px;
}

@media screen and (max-width: 640px) {
  .c-business-panel__item {
    padding-top: 2em;
    width: 100%;
  }
}

.c-business-panel__item a img, .c-business-panel__item a p {
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}

.c-business-panel__item a:hover img {
  opacity: 0.6;
}

.c-business-panel__item a:hover p {
  color: #1976BD;
}

.c-business-panel__item p {
  padding-top: 0.8em;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/*------　リスト -------*/
.c-dl {
  position: relative;
  letter-spacing: 0.04em;
}

.c-dl dt {
  padding: 1em 0 1em 2em;
  font-weight: 500;
  position: relative;
}

@media screen and (max-width: 640px) {
  .c-dl dt {
    padding: 1em 0 1em 0;
  }
}

.c-dl dt::after {
  content: "";
  position: relative;
  display: inline-block;
  height: 1px;
  background-image: -webkit-linear-gradient(left, #b5b5b5, #b5b5b5 1px, transparent 2px, transparent 0px);
  background-image: linear-gradient(to right, #b5b5b5, #b5b5b5 1px, transparent 2px, transparent 0px);
  background-size: 3px 1px;
  background-repeat: repeat-x;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
}

@media screen and (max-width: 640px) {
  .c-dl dt::after {
    content: none;
  }
}

.c-dl dd {
  padding: 1em 0 1em 2em;
  position: relative;
}

@media screen and (max-width: 640px) {
  .c-dl dd {
    padding: 0 0 1em 0;
  }
}

.c-dl dd::after {
  content: "";
  position: relative;
  display: inline-block;
  height: 1px;
  background-image: -webkit-linear-gradient(left, #b5b5b5, #b5b5b5 1px, transparent 2px, transparent 0px);
  background-image: linear-gradient(to right, #b5b5b5, #b5b5b5 1px, transparent 2px, transparent 0px);
  background-size: 3px 1px;
  background-repeat: repeat-x;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
}

.c-dl.dl-top dt:first-of-type::before {
  content: "";
  position: relative;
  display: inline-block;
  height: 1px;
  background-image: -webkit-linear-gradient(left, #b5b5b5, #b5b5b5 1px, transparent 2px, transparent 0px);
  background-image: linear-gradient(to right, #b5b5b5, #b5b5b5 1px, transparent 2px, transparent 0px);
  background-size: 3px 1px;
  background-repeat: repeat-x;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  bottom: auto;
}

.c-dl.dl-top dd:first-of-type::before {
  content: "";
  position: relative;
  display: inline-block;
  height: 1px;
  background-image: -webkit-linear-gradient(left, #b5b5b5, #b5b5b5 1px, transparent 2px, transparent 0px);
  background-image: linear-gradient(to right, #b5b5b5, #b5b5b5 1px, transparent 2px, transparent 0px);
  background-size: 3px 1px;
  background-repeat: repeat-x;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  bottom: auto;
}

@media screen and (max-width: 640px) {
  .c-dl.dl-top dd:first-of-type::before {
    content: none;
  }
}

.c-list-line li {
  padding: 0.5em 0;
  position: relative;
}

.c-list-line li::after {
  content: "";
  display: inline-block;
  height: 1px;
  background-image: -webkit-linear-gradient(left, #b5b5b5, #b5b5b5 1px, transparent 2px, transparent 0px);
  background-image: linear-gradient(to right, #b5b5b5, #b5b5b5 1px, transparent 2px, transparent 0px);
  background-size: 3px 1px;
  background-repeat: repeat-x;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
}

.c-list-line li:first-of-type::before {
  content: "";
  display: inline-block;
  height: 1px;
  background-image: -webkit-linear-gradient(left, #b5b5b5, #b5b5b5 1px, transparent 2px, transparent 0px);
  background-image: linear-gradient(to right, #b5b5b5, #b5b5b5 1px, transparent 2px, transparent 0px);
  background-size: 3px 1px;
  background-repeat: repeat-x;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  bottom: auto;
}

.c-business-name-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.c-business-name-list .list-item {
  font-weight: 500;
  margin-top: 15px;
  width: calc(100% / 3 - 10px);
  border: 1px solid #D8D8D8;
  background-color: #fff;
}

@media screen and (max-width: 640px) {
  .c-business-name-list .list-item {
    width: 100%;
  }
}

.c-business-name-list .list-item a {
  padding: 0.4em 1em;
  display: inline-block;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}

.c-business-name-list .list-item a:hover {
  background-color: #E3EEF7;
}

.c-business-name-list .list-item span {
  padding: 0.4em 1em;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.c-business-name-list::after {
  content: "";
  display: block;
  width: calc(100% / 3 - 10px);
  height: 0px;
}

/*------テンプレートいろいろ -------*/
.c-link {
  display: inline-block;
  padding-left: 2.2em;
  position: relative;
  color: #fff;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}

.c-link:hover {
  padding-left: 3.5em;
}

.c-link::before {
  margin-right: 0.5em;
  content: "";
  display: inline-block;
  width: 2em;
  height: 1px;
  background-color: #fff;
  opacity: 0.5;
  vertical-align: middle;
  position: absolute;
  top: 2.1em;
  left: 0;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  -webkit-transition-delay: 0.08s;
          transition-delay: 0.08s;
}

.c-link:hover::before {
  -webkit-transform: scale(1.5, 1);
          transform: scale(1.5, 1);
}

.c-link a {
  display: inline-block;
  padding: 1em 0;
}

a.link {
  color: #1976BD !important;
}

.csr-link-wrap {
  width: 8.5em;
  margin: auto 0 auto auto;
  position: relative;
}

@media screen and (max-width: 640px) {
  .csr-link-wrap {
    display: none;
  }
}

.csr-link-wrap::before {
  margin-right: 0.5em;
  content: "";
  display: inline-block;
  width: 2em;
  height: 1px;
  background-color: #fff;
  opacity: 0.5;
  vertical-align: middle;
  position: absolute;
  top: 2em;
  left: 0;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  -webkit-transition-delay: 0.08s;
          transition-delay: 0.08s;
}

.csr-link-wrap:hover::before {
  -webkit-transform: scale(1.5, 1);
          transform: scale(1.5, 1);
}

.csr-link-wrap .csr-link {
  display: inline-block;
  padding-top: 1em;
  padding-left: 2.2rem;
  position: absolute;
  right: 0;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}

.csr-link-wrap .csr-link:hover {
  right: -1em;
}

.c-text-link {
  text-decoration: underline;
  color: #1976BD;
}

.c-move-link {
  padding: 1em 2em 1em 1em;
  display: inline-block;
  background-color: #1976BD;
  color: #fff;
  position: relative;
}

.c-move-link::before {
  content: "";
  position: relative;
  left: 0;
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  margin: 0 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-color: #fff;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}

.c-move-link:hover {
  font-weight: normal;
}

.c-move-link:hover::before {
  left: 5px;
}

.c-file-link {
  display: inline-block;
  margin-top: 1em;
  color: #1976BD;
  font-weight: 300;
  position: relative;
}

.c-file-link::before {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  margin: 0 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: relative;
  left: 0;
  border-color: #1976BD;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}

.c-file-link::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.5em;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(/assets/images/common/icon_file.svg);
  position: relative;
  top: 1px;
}

.c-file-link:hover::before {
  left: 5px;
}

.c-pdf-link {
  display: inline-block;
  margin-top: 1em;
  color: #1976BD;
  font-weight: 300;
  position: relative;
}

.c-pdf-link::before {
  content: "";
  position: relative;
  left: 0;
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  margin: 0 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-color: #1976BD;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}

.c-pdf-link::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.5em;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(/assets/images/common/icon_pdf.svg);
  position: relative;
  top: 1px;
}

.c-pdf-link:hover::before {
  left: 5px;
}

.c-hover-item a {
  -webkit-transition: 0.15s;
  transition: 0.15s;
}

.c-hover-item a:hover {
  opacity: 0.6;
}

.c-layer {
  position: relative;
}

.c-layer::after {
  content: "";
  background-color: #1976BD;
  opacity: 0.3;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}

.c-layer-gradation-r {
  position: relative;
}

.c-layer-gradation-r::after {
  content: "";
  background-color: #1976BD;
  opacity: 0.3;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.37)), color-stop(13%, rgba(255, 255, 255, 0.37)), color-stop(64%, rgba(10, 102, 164, 0.37)), to(rgba(3, 78, 129, 0.37)));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.37) 0%, rgba(255, 255, 255, 0.37) 13%, rgba(10, 102, 164, 0.37) 64%, rgba(3, 78, 129, 0.37) 100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.37) 0%, rgba(255, 255, 255, 0.37) 13%, rgba(10, 102, 164, 0.37) 64%, rgba(3, 78, 129, 0.37) 100%);
  opacity: 0.5;
}

.c-layer-gradation-l {
  position: relative;
}

.c-layer-gradation-l::after {
  content: "";
  background-color: #1976BD;
  opacity: 0.3;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.37)), color-stop(13%, rgba(255, 255, 255, 0.37)), color-stop(64%, rgba(10, 102, 164, 0.37)), to(rgba(3, 78, 129, 0.37)));
  background: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.37) 0%, rgba(255, 255, 255, 0.37) 13%, rgba(10, 102, 164, 0.37) 64%, rgba(3, 78, 129, 0.37) 100%);
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0.37) 0%, rgba(255, 255, 255, 0.37) 13%, rgba(10, 102, 164, 0.37) 64%, rgba(3, 78, 129, 0.37) 100%);
  opacity: 0.7;
}

.c-scroll {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 15px;
}

.c-scroll--main {
  display: inline-block;
  width: 1px;
  height: 16vh;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
}

@media screen and (max-width: 640px) {
  .c-scroll--main {
    height: 8vh;
  }
}

.c-scroll--main::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 16vh;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-animation: scroll 2.5s cubic-bezier(1, 0, 0, 1) infinite;
          animation: scroll 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@media screen and (max-width: 640px) {
  .c-scroll--main::before {
    height: 8vh;
  }
}

.c-scroll--sub {
  display: inline-block;
  width: 15px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  position: relative;
  margin-top: 12px;
}

.c-scroll--sub::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 4px;
  -webkit-animation: scroll-sub 2.3s infinite;
          animation: scroll-sub 2.3s infinite;
}

.c-btn-wrap {
  text-align: center;
}

.c-btn {
  padding: 0.5em 0;
  display: inline-block;
  width: 16em;
  background-color: #000;
  color: #fff;
  text-align: center;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}

.c-btn:hover {
  background-color: #1976BD;
}

.c-btn-blue {
  display: inline-block;
  color: #fff;
  background-color: #1976BD;
  width: 100%;
  text-align: center;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}

.c-btn-blue:hover {
  color: #1976BD;
  background-color: #E3EEF7;
}

.c-btn-link {
  margin-top: 2em;
}

.c-btn-link a {
  display: inline-block;
  padding: 1em 2em;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  background-color: #1976BD;
}

.c-btn-link a:hover {
  color: #1976BD;
  background-color: #fff;
  outline: 2px solid #1976BD;
}

.c-dot-line {
  display: inline-block;
  height: 1px;
  background-image: -webkit-linear-gradient(left, #b5b5b5, #b5b5b5 1px, transparent 2px, transparent 0px);
  background-image: linear-gradient(to right, #b5b5b5, #b5b5b5 1px, transparent 2px, transparent 0px);
  background-size: 3px 1px;
  background-repeat: repeat-x;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
}

.c-border-blue {
  padding: 50px;
  border: 8px solid #E3EEF7;
  background-color: #fff;
}

@media screen and (max-width: 640px) {
  .c-border-blue {
    padding: 30px 20px;
  }
}

.c-current-arrow {
  position: relative;
}

.c-current-arrow::after {
  margin-top: 10px;
  content: "";
  display: inline-block;
  width: 100%;
  height: 60px;
  background-image: url(/assets/images/business/products/products_icon-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.c-current-arrow a {
  color: #1976BD;
  background-color: #E3EEF7;
}

.c-anc-word {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1976BD;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 6px 4px #E3EEF7;
          box-shadow: 0px 0px 6px 4px #E3EEF7;
  width: 60px;
  height: 60px;
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

.c-anc-word a {
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}

.c-anc-word a:hover {
  background-color: #E3EEF7;
}

.c-news__list-item {
  position: relative;
  padding: 0.4em 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 640px) {
  .c-news__list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-news__list-item .news-info-wrap {
  -webkit-flex-basis: 25%;
      -ms-flex-preferred-size: 25%;
          flex-basis: 25%;
  min-width: 180px;
}

.c-news__list-item a {
  -webkit-transition: 0.1s;
  transition: 0.1s;
  -webkit-flex-basis: 70%;
      -ms-flex-preferred-size: 70%;
          flex-basis: 70%;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}

.c-news__list-item a:hover {
  color: #1976BD;
}

.c-news__list-item .c-news-cat {
  margin-left: 2em;
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1;
  width: 66px;
  padding: 0.4em 0;
  text-align: center;
  color: #fff;
  background-color: #BAD1E3;
}

.c-news__list-item .c-news-ttl {
  display: inline-block;
  margin-left: 1em;
}

@media screen and (max-width: 640px) {
  .c-news__list-item .c-news-ttl {
    margin: 0;
  }
}

.c-news__list-item::after {
  content: "";
  display: inline-block;
  height: 1px;
  background-image: -webkit-linear-gradient(left, #b5b5b5, #b5b5b5 1px, transparent 2px, transparent 0px);
  background-image: linear-gradient(to right, #b5b5b5, #b5b5b5 1px, transparent 2px, transparent 0px);
  background-size: 3px 1px;
  background-repeat: repeat-x;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
}

.c-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-pagination .c-pagination-item {
  margin: 0 0.5em;
  font-size: 1.4rem;
  font-weight: 300;
  color: #fff;
  background-color: #BAD1E3;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  overflow: hidden;
}

.c-pagination .c-pagination-item.current {
  background-color: #1976BD;
}

.c-pagination .c-pagination-item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}

.c-pagination .c-pagination-item a:hover {
  opacity: 0.4;
}

/* ==========================================================================//
//
//　p-engineering
//
// ========================================================================== */
.p-engineering__mv {
  background-image: url(/assets/images/business/engineering/engineering_visual.jpg);
}

.p-engineering__content h3 {
  padding-left: 20px;
  padding-right: 20px;
}

.p-engineering__content h3 + p {
  padding-left: 20px;
  padding-right: 20px;
}

.p-engineering__sec .sec-visual {
  height: 45vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: -1;
}

.p-engineering__sec .sec-visual .figure-engineering {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .p-engineering__sec .sec-visual .figure-engineering {
    margin-top: 20%;
    position: relative;
    top: -90%;
  }
}

.p-engineering__sec .sec-visual .figure-engineering img {
  display: inline-block;
  height: 100%;
  min-height: 310px;
}

@media screen and (max-width: 640px) {
  .p-engineering__sec .sec-visual .figure-engineering img {
    min-height: 100%;
    width: 70%;
    height: auto;
  }
}

.p-engineering__sec.intro {
  padding-bottom: 40px;
}

.p-engineering__sec.intro .sec-visual {
  background-image: url(/assets/images/business/engineering/engineering_img01.jpg);
}

@media screen and (max-width: 640px) {
  .p-engineering__sec.intro .sec-visual {
    background-size: 100%;
  }
}

.p-engineering__sec.sec-01 .sec-visual {
  background-image: url(/assets/images/business/engineering/engineering_img03.jpg);
}

.p-engineering__sec.sec-02 .sec-visual {
  background-image: url(/assets/images/business/engineering/engineering_img05.jpg);
}

.p-engineering__sec.sec-03 .sec-visual {
  background-image: url(/assets/images/business/engineering/engineering_img07.jpg);
}

.p-engineering__sec__ttl {
  margin-top: -100px;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-engineering__sec__ttl--sub {
  padding: 10px 30px;
  margin-bottom: 5px;
  font-size: 2rem;
  line-height: 1.4;
  background-color: rgba(12, 34, 51, 0.9);
}

.p-engineering__sec__ttl--main {
  display: inline-block;
  padding: 15px 30px;
  text-align: left;
  background-color: rgba(12, 34, 51, 0.9);
}

.p-engineering__sec__txt {
  position: relative;
}

.p-engineering__sec__txt .role-list {
  padding: 30px 0 70px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
}

@media screen and (max-width: 640px) {
  .p-engineering__sec__txt .role-list {
    display: block;
    width: 100%;
    text-align: center;
  }
}

.p-engineering__sec__txt .role-list .list-item {
  padding: 0 1em;
  margin-right: 8px;
}

@media screen and (max-width: 640px) {
  .p-engineering__sec__txt .role-list .list-item {
    margin: 1em 0 0 0;
  }
}

.p-engineering__sec__txt .comment-ttl {
  margin-top: 0;
}

.p-engineering__sec__txt .comment-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 640px) {
  .p-engineering__sec__txt .comment-wrap {
    display: block;
  }
}

.p-engineering__sec__txt .comment-wrap p {
  padding-right: 40px;
  -webkit-flex-basis: 60%;
      -ms-flex-preferred-size: 60%;
          flex-basis: 60%;
}

@media screen and (max-width: 640px) {
  .p-engineering__sec__txt .comment-wrap p {
    padding: 0 0 2em 0;
  }
}

.p-engineering__sec__txt .comment-wrap figure {
  -webkit-flex-basis: 40%;
      -ms-flex-preferred-size: 40%;
          flex-basis: 40%;
  max-width: 400px;
  margin: 0 auto;
}

.p-engineering__sec__ttl + .p-engineering__sec__txt::before {
  margin-bottom: 30px;
  content: "";
  display: block;
  width: 100%;
  height: 40px;
  background-image: url(/assets/images/common/icon_arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
}
</pre></body></html>