@charset "UTF-8";
/* CSS Document */
/* reset
-------------------*/

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

body {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #0E2130;
  letter-spacing: .1rem;
  line-height: 2.2;
}

a {
  color: #0E2130;
  text-decoration: none;
  transition: .3s ease-in-out;
}

a[href^="tel:"] {
    pointer-events: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.cont-wrap-01 {
  display: flex;
  flex-direction: row-reverse;
}

.cont-wrap-02 {
  width: calc(100% - 90px);
}

.section {
  padding: 0 0 0 3.125%;
  position: relative;
}

section:before {
  content: "";
  display: block;
  background: url(../images/common/deco-triangle-lt-blue.svg) no-repeat;
  background-size: 100% auto;
  width: 90px;
  height: 90px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10rem 0 10rem;
}

.ubuntu {
  font-family: "Ubuntu", sans-serif;
}

.bg-blue {
  background: #ECF3F8;
}

.logo a {
  display: block;
}

.flx {
  display: flex;
}

.center {
  text-align: center;
}

.link-btn {
  width: 200px;
  height: 51px;
  line-height: 51px;
  text-align: center;
}

.link-btn.center {
  margin: 0 auto;
}

.link-btn a {
  color: #FFF;
  background: #3BA4F3;
  border: 2px solid #3BA4F3;
  border-radius: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: relative;
  transition: .3s ease-in-out;
}

.link-btn .icon-link:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #FFF;
  border-right: 0;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: .3s ease-in-out;
}

.link-btn .icon-blank:after {
  content: "";
  display: block;
  background: url(../images/common/ic-blank-white.svg) no-repeat;
  background-size: 100% auto;
  width: 12px;
  height: 11px;
  position: absolute;
  right: 1.5rem;
  transition: .3s ease-in-out;
}

.btn-list {
  display: flex;
  gap: 2rem;
}

.head-ttl {
  line-height: 1;
  position: relative;
  margin-bottom: 9rem;
}

.head-ttl:after {
  content: "";
  display: block;
  background: url(../images/common/deco-line-blue.svg) no-repeat;
  background-size: 100% auto;
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: -50px;
}

.head-ttl.center:after {
  left: 0;
  right: 0;
  margin: auto;
}

.head-ttl .en {
  font-size: clamp(3.4rem, 4.4vw, 4.4rem);
  color: #3BA4F3;
}

.head-ttl .jp {
  font-size: 1.4rem;
  display: block;
  margin-top: .5rem;
}

.spShow {
  display: none;
}

/***** fade-in animation *****/
.cont-wrap-01 {
  opacity: 0;
  pointer-events: none;
}

body.appear .cont-wrap-01 {
  animation-name: PageAnime-content;
  animation-duration: 0.6s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
  pointer-events: auto;
}

.animation .cont-wrap-01 {
  opacity: 1;
  pointer-events: auto;
}

@keyframes PageAnime-content {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .sec-bnr .bnr-list li {
    width: 100%;
  }
}

@media screen and (max-width: 1023px) {
  .cont-wrap-01 {
    display: block;
  }
  .section {
    padding: 0 4%;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.3rem;
  }
  
  .inner {
    padding: 5rem 0;
  }

  .pcShow {
    display: none;
  }

  .spShow {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .logo a:hover {
    opacity: .7;
  }

  .link-btn a:hover {
    background: #FFF;
    color: #3BA4F3;
    border: 2px solid #75BFF6;
  }

  .link-btn .icon-link:hover:after {
    border-style: solid;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #3BA4F3;
  }

  .link-btn .icon-blank:hover:after {
    background: url(../images/common/ic-blank-blue.svg) no-repeat;
    background-size: cover;
  }
}


/* ----------------------------
    header
---------------------------- */
body.fixed {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

.header {
  width: 90px;
  min-width: 90px;
  position: relative;
  z-index: 100;
}

.header .inner {
  position: sticky;
  top: 0;
  padding: 0;
}

  .header .logo {
    display: none;
  }

.header nav {
  height: 100svh;
  display: flex;
  justify-content: center;
  padding-top: 15rem;
  position: relative;
  font-weight: 500;
}

.header nav:before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/common/deco-triangle-blue.svg) no-repeat;
  background-size: 100% auto;
  width: 90px;
  height: 90px;
  top: 0;
  right: 0;
}

.header .overlay-menu-btn {
  display: none;
}

.header .nav-list {
  display: flex;
  writing-mode: vertical-rl;
  align-items: center;
  flex-wrap: wrap;
}

.header .nav-list-item {
  position: relative;
}

.header .nav-list-item:after {
  content: "|";
  display: inline-block;
  color: #C4D4DF;
  padding: 2rem 0;
}

.header .nav-list-item:last-child:after {
  content: none;
}

.header .nav-list-item a {
  transition: .3s ease-in-out;
}

.header .nav-list-item .is-active {
  color: #3BA4F3;
}

.header .nav-list-item figure {
  display: none;
}

@media screen and (max-width: 1023px) {
  .header {
    width: 100%;
    position: relative;
  }

  .header nav {
    padding-top: 0;
    height: auto;
  }

  .header nav:before {
    content: none;
  }

  .header .overlay-menu.open {
    right: 0;
  }

  .header .logo {
    display: block;
    margin-bottom: 2rem;
  }

  .header .logo img {
    width: clamp(200px, 20vw, 280px);
  }

  .header .overlay-menu-btn {
    display: block;
    position: fixed;
    top: 0.6%;
    right: 1rem;
    height: 26px;
    cursor: pointer;
    z-index: 900;
    width: 50px;
    height: 50px;
    padding: 10px;
  }

  .header .overlay-menu-btn span {
    position: relative;
    display: flex;
    width: 30px;
    border: 1px solid #3BA4F3;
    transition: all .3s ease-in-out;
    margin: 0 auto;
  }

  .header .overlay-menu-btn span:nth-child(1) {
    top: 7px;
  }

  .header .overlay-menu-btn span:nth-child(2) {
    top: 13px;
  }
  
  .header .overlay-menu-btn span:nth-child(3) {
    top: 19px;
  }

  .header .overlay-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 400px;
    height: 100svh;
    background: #ECF3F8;
    transition: right 0.4s ease;
    z-index: 800;
  }

  .header .overlay-menu-item {
    padding: 7rem 2rem 0;
    height: 100%;
    position: relative;
    overflow-y: auto;
    margin-bottom: 4rem;
  }

  .header .overlay-menu:after {
    content: "";
    display: block;
    background: url(../images/common/deco-triangle-lt-blue.svg) no-repeat;
    background-size: 100% auto;
    width: 90px;
    height: 90px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
  }

  .header .overlay-menu-item ul li a {
    display: block;
    width: 100%;
    color: #3BA4F3;
    text-decoration: none;
    font-size: clamp(1.5rem, 2vw, 1.8rem);
  }

  .header .overlay-menu-item ul li a:hover {
    opacity: 1;
  }

  .header .nav-list {
    writing-mode: initial;
    align-items: flex-start;
    gap: 1.5rem 4%;
    width: 100%;
  }

  .header .nav-list-item {
    width: 100%
  }

  .header .nav-list-item:after {
    content: none;
  }

  .header .nav-list-item a:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #3ba4f3;
    border-right: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .header .nav-list-item figure {
    display: block;
  }

  .header .nav-list-item figure img {
    vertical-align: bottom;
  }

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

  body.fixed .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14,33,48,0.7);
    opacity: 0; 
    pointer-events: none; 
    transition: .4s ease-in-out;
  }

  body.fixed .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }
}

@media screen and (min-width: 768px) {
  .header .nav-list-item a:hover {
    color: #3BA4F3;
  }
}


/* ----------------------------
    MV
---------------------------- */
.mv {
  position: relative;
  height: 43.75vw;
}

.header-logo {
  position: absolute;
  z-index: 1;
  top: 2.5rem;
  left: 5.495%;
}

.header-logo a {
  display: block;
}

.header-logo img {
  width: clamp(180px, 20vw, 280px);
}

.main-wrap {
  height: 100%;
  display: flex;
  align-items: center;
}

.catch-block {
  width: 35.1648%;
  background: #3BA4F3;
  color: #FFF;
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 5.495%;
  position: relative;
}

.catch-block:after {
  content: "";
  background: url(../images/common/deco-triangle-white.svg) no-repeat;
  background-size: 100% auto;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 90px;
  height: 90px;
}

.mv h1 {
  font-size: clamp(2.2rem, 2vw, 4.2rem);
  line-height: 1.6;
  letter-spacing: .12rem;
}

.mv-slide {
  width: 71.4285%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
}

.mv .mv-slide:before {
  content: "";
  display: block;
  background: url(../images/top/deco-life.svg) no-repeat;
  background-size: 100% auto;
  position: absolute;
  width: clamp(300px, 45vw, 750px);
  height: 125px;
  z-index: 10;
  right: 0;
  top: 80%;
}

.mv .mv-slide:after {
  content: "";
  display: block;
  background: url(../images/top/deco-brain-trust.svg) no-repeat;
  background-size: 100% auto;
  width: 150px;
  height: 150px;
  position: absolute;
  bottom: 3.5%;
  left: -6%;
  animation: 20s linear infinite rotation1;
}

@keyframes rotation1{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}

.mv-slide-item {
  width: 100%;
  right: 0;
}

.mv .slick-slide img {
  max-width: 100%;
  background-size: cover !important;
  background-position: center center !important;
}

.mv .slick-dotted.slick-slider {
  margin-bottom: 0;
}

.mv .slick-dots {
  bottom: auto;
  width: 20px;
  display: flex !important;
  flex-direction: column;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.mv .slick-dots li {
  margin: 2px 0;
}

.slick-dots li button:before {
  color: #1C5C8B;
  font-size: 1.4rem;
  opacity: 1;
}
.slick-dots li.slick-active button:before {
  color: #3BA4F3;
  opacity: 1;
}

@media screen and (min-width: 1921px) and (max-width: 2560px) {
  .mv .slick-slide img {
    width: 100%;
  }
}

@media screen and (max-width: 1366px) {
  .mv .mv-slide:after {
    width: 100px;
    height: 100px;
  }
}

@media screen and (max-width: 1200px) {
  .cont-wrap-02 {
    width: 100%;
  }
}

@media screen and (max-width: 1023px) {
  .header-logo {
    top: 2rem;
    left: 4%;
  }
}

@media screen and (max-width: 768px) {
  .mv {
    height: 50svh;
  }

  .main-wrap {
    display: block;
  }

  .catch-block {
    background: transparent;
    display: block;
    width: 100%;
    padding-left: 0;
  }

  .mv h1 {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 3rem;
    text-shadow: 0px 0px 10px #0E2130;
    text-align: center;
  }

  .slick-list {
    height: 100%;
  }

  .mv-slide {
    width: 100%;
  }

  .mv .mv-slide:before {
    top: 33%;
    left: 0;
    margin: auto;
    width: 64vw;
    height: 7vh;
    transform: rotate(-7deg);
    z-index: 1;
    max-width: 300px;
  }

  .mv .mv-slide:after {
    width: 120px;
    height: 120px;
    bottom: -12.5%;
  }

  .mv .slick-slide img {
    height: 50vh;
  }
}

@media screen and (min-width: 768px) {
  .header-logo a:hover {
    opacity: .7;
  }
}

@media screen and (max-width: 767px) and (orientation: landscape) {
  .mv {
    height: 65svh;
  }
  
  .mv .slick-slide img {
    height: 100%;
  }
}



/* ----------------------------
    NEWS お知らせ
---------------------------- */
.news-sec .inner {
  padding: 8rem 0 10rem;
  gap: 2rem 9%;
}

.news-sec .title-block {
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.news-sec .head-ttl {
  margin-bottom: 0;
}

.news-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.news-list-item {
  background: #ECF3F8;
  border-radius: 10rem;
  max-height: 85px;
}

.news-list-item a {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  padding: 1.771rem 2.5rem;
  transition: .3s ease-in-out;
  border-radius: 10rem;
  line-height: 1.6;
}

.news-list-item a:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid #3BA4F3;
  border-right: 0;
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.news-list-item time {
  color: #3BA4F3;
}

.news-list-item .title {
  display: inline-block;
  display: inline-block;
  margin: 0 2rem;
  border-left: 2px solid #C4D4DF;
  padding-left: 2rem;
  transition: .3s ease-in-out;
}

@media screen and (max-width: 1023px) {
  .news-sec .inner {
    flex-direction: column;
  }

  .news-sec .title-block {
    flex-direction: row;
    align-items: flex-end;
    margin-bottom: 6rem;
    min-height: initial;
  }
}

@media screen and (max-width: 768px) {
  .news-sec .inner {
    padding: 6rem 0;
    gap: 3rem 9%;
  }

  .news-sec .title-block {
    justify-content: center;
  }

  .news-sec .head-ttl {
    text-align: center;
  }

  .news-sec .head-ttl:after {
    left: 0;
    right: 0;
    margin: auto;
  }

  .news-list {
    row-gap: 1.5rem;
  }

  .news-list-item a {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 3rem;
  }

  .news-list-item .title {
    border-style: none;
    margin: 0 2rem 0 0;
    padding-left: 0;
  }

  .news-sec .link-btn {
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .news-list-item a:hover {
    background: #C4D4DF;
    border-radius: 10rem;
  }

  .news-list-item a:hover .title {
    border-left: 2px solid #FFF;
  }
}

/* ----------------------------
    SERIVE 事業内容
---------------------------- */
.service-sec .txt {
  margin-bottom: 5rem;
}

.service-list {
  justify-content: space-between;
  margin-bottom: 5rem;
}

.service-list-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
  width: calc((100% - 5%) / 3);
  padding: 3rem;
}

.service-list-item:nth-child(2) figure {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
}

.service-list-item:nth-child(2) img:nth-of-type(2) {
  width: 148px;
  height: auto;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .service-list {
    flex-direction: column;
    row-gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .service-list-item {
    width: 100%;
    padding: 4%;
    min-height: 160px;
  }

  .service-list-item:nth-child(2) figure {
    row-gap: 2rem;
  }

  .service-list-item img {
    max-width: 160px;
  }

  .service-sec .txt {
    margin-bottom: 3rem;
  }
}



/* ----------------------------
    COMPANY 会社情報
---------------------------- */
.companyPage .section {
  padding: 0 3.125%;
}

.company-sec .company-list {
  justify-content: space-between;
}

.company-sec .inner {
  padding: 10rem 0 15rem;
}

.company-list-item {
  position: relative;
  cursor: pointer;
  width: calc((100% - 3.3333%) / 2);
}

.company-list-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.company-list-item:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #3BA4F3;
  opacity: .3;
  position: absolute;
  left: 0;
  top: 0;
  transition: .3s ease-in-out;
  pointer-events: none;
}

.company-list-item p {
  position: absolute;
  color: #FFF;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-size: clamp(2.2rem, 2vw, 3rem);
  font-weight: 700;
}

.company-list-item p:after {
  content: "";
  display: inline-block;
  background: url(../images/common/ic-circle-arw-white.svg) no-repeat;
  background-size: 100% auto;
  width: 38px;
  height: 38px;
  vertical-align: -8px;
  margin-left: 1.5rem;
}

.company-list-item img {
  vertical-align: bottom;
}

@media screen and (max-width: 768px) {
  .company-sec .inner {
    padding: 5rem 0;
  }

  .company-sec .company-list {
    flex-direction: column;
    row-gap: 2rem;
  }

  .company-list-item {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .company-list-item:hover:after {
    opacity: .85;
  }
}



/* ----------------------------
    footer
---------------------------- */
.footer {
  background: #3BA4F3;
  color: #FFF;
  text-align: center;
}

.footer .inner {
  max-width: initial;
  padding: 0;
  background-image: linear-gradient(to right, #3493DA, #3493DA 5px, transparent 5px, transparent 5px);
  background-size: 10px 5px;
  background-position: left bottom;
  background-repeat: repeat-x;
}

.footer .company-info {
  padding: 6rem 0 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

footer a {
  color: #FFF;
}

.footer .logo {
  margin-bottom: 1.7rem;
}

.footer .logo img {
  width: clamp(180px, 20vw, 280px);
}

.footer .copyright {
  font-size: clamp(1rem, 2vw,1.2rem);
  padding: 2rem 0;
  display: block;
}

.page_top {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 90px;
  height: 90px;
  background: #3BA4F3;
}

.page_top a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}

.page_top a svg {
  transform: rotate(90deg);
}

.page_top span {
  font-size: 5rem;
}

@media screen and (max-width: 1023px) {
  .page_top {
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 768px) {
  .footer .company-info {
    padding: 5rem 0 3rem;
  }
}



/* ----------------------------
    下層ページ
---------------------------- */
.pagetitle {
  height: 50.092vh;
  position: relative;
}

.title-wrap {
  display: flex;
  align-items: center;
  height: 100%;
}

.title-area { 
  background: url('../images/company/pagetitle-company.jpg') no-repeat;
  background-size: cover;
  width: 78.6458%;
  height: 31.877vh;
  position: absolute;
  right: 0;
}
.bg-block {
  background: #3BA4F3;
  width: 33.3333%;
  height: 50.092vh;
}

.page-name {
  color: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-left: 5.298%;
  row-gap: 1rem;
}

.page-name p {
  font-size: clamp(3.6rem, 5vw, 6rem);
  font-weight: 600;
  line-height: 1;
}

.page-name h1 {
  font-size: clamp(1.3rem, 2vw,1.6rem);
  line-height: 1;
}

.breadcrumb {
  padding: 0 3.125%;
  margin-bottom: 8rem;
}

.breadcrumb .inner {
  max-width: 1200px;
  padding: 1.5rem 0 0;
}

.breadcrumb ul {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}

.breadcrumb ul a {
  color: #3BA4F3;
}

.breadcrumb ul a:after {
  content: "/";
  display: inline-block;
  font-family: "Ubuntu", sans-serif;
  font-weight: 600;
  margin: 0 .5rem;
  color: #C4D4DF;
}

.intro-block {
  padding: 0 0 0 3.125%;
}

@media screen and (max-width: 1023px) {
  .intro-block {
    padding: 0 4%;
  }
}

@media screen and (max-width: 768px) {
  .pagetitle {
    height: 37vh;
  }

  .bg-block {
    width: 60%;
    height: 37vh;
  }

  .title-area {
    width: 86%;
    height: 20vh;
    position: absolute;
    right: 0;
  }

  .page-name {
    row-gap: .5rem;
  }

  .breadcrumb {
    margin-bottom: 3rem;
  }

  .breadcrumb ul {
    font-size: 1.1rem;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 768px) {
  .breadcrumb ul a:hover {
    opacity: .7;
  }
}

@media screen and (max-width: 767px) and (orientation: landscape) {
  .pagetitle {
    height: 60vh;
  }

  .bg-block {
    height: 60vh;
  }

  .title-area {
    height: 30vh;
  }
}



/* ----------------------------
    事業案内ページ
---------------------------- */
.servicePage .title-area { 
  background: url('../images/service/pagetitle-service.jpg') no-repeat;
  background-size: cover;
}

.serviceSec .inner {
  padding: 0 0 10rem;
}

.servicePage .intro-block p {
  text-align: center;
}

.servicePage .item {
  background: #ECF3F8;
  gap: 3rem;
  padding: 4rem;
  margin-bottom: 4rem;
  align-items: flex-start;
}

.servicePage .item:last-of-type {
  margin-bottom: 0;
}

.servicePage .item figure {
  background: #FFF;
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  min-height: 246px;
}

.servicePage .item.item-gionbayashi figure {
  flex-direction: column;
  row-gap: 3rem;
}

.servicePage .item .txt-wrap {
  width: 62.4%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 5rem;
}

.servicePage .item .txt {
  margin-bottom: 1.5rem;
}

.sns-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.sns-list li,
p.sns-list {
  line-height: 1.2;
  display: inline-flex;
}

.sns-list a {
  display: flex;
  align-items: center;
  padding: 8px;
  font-size: 1.3rem;
  transition: .3s ease-in-out;
  position: relative;
  border-radius: .5rem;
  background: #FFF;
}

.sns-list .icon-blank:after {
  content: "";
  display: block;
  background: url(../images/common/ic-blank-black.svg) no-repeat;
  background-size: cover;
  width: 12px;
  height: 11px;
  position: absolute;
  right: 8px;
  transition: .3s ease-in-out;
}

.sns-list img {
  border-right: 1px solid #C4D4DF;
  padding-right: 8px;
  margin-right: 8px;
  width: 35px;
  height: auto;
}

.sns-list span {
  display: block;
  margin-right: 28px;
}

.servicePage .btn-list {
  justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  .serviceSec .inner {
    padding: 0 0 5rem;
  }

  .servicePage .item {
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
  }

  .servicePage .item figure {
    width: 100%;
    padding: 2rem;
    min-height: 160px;
  }

  .servicePage .item.item-gionbayashi figure {
    row-gap: 2rem;
  }

  .servicePage .item img {
    max-width: 160px;
  }

  .servicePage .item .txt-wrap {
    width: 100%;
    gap: 2rem;
  }

  .sns-list a {
    font-size: 1.1rem;
  }

  .servicePage .btn-list {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .servicePage .item-gionbayashi .link-btn {
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .sns-list a:hover {
    background: #0E2130;
    color: #FFF;
  }

  .sns-list a:hover:after {
    background: url(../images/common/ic-blank-white.svg) no-repeat;
    background-size: cover;
  }
}



/* ----------------------------
    会社情報ページ
---------------------------- */
.intro-block .inner {
  padding: 0;
  margin-bottom: 6rem;
}

.companyPage .intro-block p {
  text-align: center;
  margin-bottom: 6rem;
}

.page-link-list {
  display: flex;
  justify-content: center;
  column-gap: 4rem;
}

.page-link-list li {
  width: calc((100% - 4rem) / 2);
  max-width: 390px;
  text-align: center;
  height: 70px;
}

.page-link-list li a {
  color: #3BA4F3;
  line-height: 70px;
  display: block;
  border-radius: 4.3rem;
  border: 2px solid #75BFF6;
  transition: .3s ease-in-out;
  position: relative;
}

.page-link-list li a:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 5px solid #3ba4f3;
  border-bottom: 0;
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  transition: .3s ease-in-out;
}

.cont-wrap {
  display: flex;
  height: 100%;
}

.companyPage h2 {
  width: 25%;
  font-size: 1.4rem;
  line-height: 1.3;
  position: sticky;
  top: 0;
  height: 100%;
  position: sticky;
}

.companyPage h2:after {
  content: "";
  display: block;
  background: url('../images/common/deco-line-blue.svg') no-repeat;
  background-size: 100% auto;
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: -47px;
}

.companyPage h2 span {
  font-size: clamp(3.4rem, 4.4vw, 4.4rem);
  color: #3BA4F3;
  display: block;
}

.profileSec .item-wrap {
  width: 75%;
}

.profileSec dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.6;
}

.profileSec dt {
  width: 30%;
  border-bottom: 2px solid #3BA4F3;
  padding: 2rem;
  font-weight: 700;
}

.profileSec dt:first-of-type {
  border-top: 2px solid #3BA4F3;
}

.profileSec dd {
  width: 70%;
  border-bottom: 1px solid #C4D4DF;
  padding: 2rem;
}

.profileSec dd:first-of-type {
  border-top: 1px solid #C4D4DF;
}

.profileSec dt .square,
.profileSec dd .square {
  display: block;
}

.profileSec dt .square {
  font-size: 1.3rem;
}

.profileSec dt .square:before,
.profileSec dd .square:before {
  content: "■";
  color: #3BA4F3;
  font-size: 1rem;
  margin-right: .3rem;
}

.profileSec dd p {
  margin-bottom: 1rem;
}

.profileSec dd p:last-child {
  margin-bottom: 0;
}

.list-01 {
  margin-left: 1.3rem;
}

.list-01 li {
  position: relative;
  text-indent: -1.3rem
}

.list-01 li:before {
  content: "■";
  font-size: 1rem;
  color: #3BA4F3;
  margin-right: .3rem;
  vertical-align: 2px;
}

table {
  border-collapse: collapse;
  line-height: 1.6;
  width: 75%;
}

th {
  background: #3BA4F3;
  color: #FFF;
  padding: 2rem;
  border-bottom: 1px solid #fff;
  width: 30%;
  min-width: 245px;
  font-weight: 500;
  text-align: left;
}

table tr:last-child th {
  border-style: none;
}

td {
  padding: 2.5rem 2rem;
  border-bottom: 1px solid #ECF3F8;
  background: #FFF;
  width: 70%;
}

table tr:last-child td {
  border-style: none;
}

table .tag {
  font-size: 1.3rem;
  color: #3BA4F3;
  border: 1px solid #3BA4F3;
  display: inline-block;
  padding: 0 6px;
  line-height: 1.6;
  border-radius: 2rem;
  margin-right: 5px;
  margin-bottom: 5px;
}

table .tag:last-of-type {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .intro-block .inner {
    margin-bottom: 3rem;
  } 

  .companyPage .intro-block p {
    margin-bottom: 3rem;
    text-align: left;
  }

  .page-link-list {
    column-gap: 1rem;
  }

  .page-link-list li {
    height: 50px;
    width: calc((100% - 1rem) / 2);
  }

  .page-link-list li a {
    line-height: 50px;
  }

  .companyPage h2 {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 8rem;
  }

  .companyPage h2:after {
    left: 0;
    right: 0;
    margin: auto;
  }

  .cont-wrap {
    flex-direction: column;
  }

  .profileSec .item-wrap {
    width: 100%;
    font-size: 1.2rem;
  }

  .profileSec dl {
    flex-direction: column;
  }

  .profileSec dt {
    width: 100%;
    padding: 1rem 0 .8rem;
    font-size: 1.4rem;
  }

  .profileSec dt:first-of-type,
  .profileSec dd:first-of-type {
    border-top: none;
  }


  .profileSec dd {
    width: 100%;
    padding: .8rem 0 1.5rem;
    border-style: none;
  }

  table {
    width: 100%;
    font-size: 1.2rem;
  }

  table .tag {
    font-size: 1rem;
  }

  th, td {
    display: block;
    padding: 1rem;
    width: 100%
  }
}

@media screen and (min-width: 768px) {
  .page-link-list li a:hover {
    background: #3BA4F3;
    color: #FFF;
    border-radius: 4.3rem;
    border: 2px solid #3BA4F3;
  }

  .page-link-list li a:hover:after {
    border-top: 5px solid #FFF;
  }
}



/* ----------------------------
  お知らせ 一覧・詳細ページ
---------------------------- */
.newsPage .title-area {
  background: url(../images/news/pagetitle-news.jpg) 0% 0% / cover no-repeat;
}

.newsPage .section {
  min-height: 60vh;
}
.newsPage .inner {
  gap: 4rem 6.6666%;
}

.newsPage .section .inner {
  padding: 0 0 10rem;
}

.newsPage aside {
  width: 18.8333%;
}

.newsPage aside h2 {
  line-height: 1;
  color: #3BA4F3;
  font-size: clamp(2.2rem, 2vw, 2.4rem);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  background-image: linear-gradient(to right, #75BFF6, #75BFF6 3px, transparent 3px, transparent 3px);
  background-size: 4px 2px;
  background-position: left bottom;
  background-repeat: repeat-x;
}

.newsPage .archive-list a,
.newsPage.detail .archive-list a {
  display: block;
  width: 100%;
  position: relative;
  transition: .3s ease-in-out;
  color: #0E2130;
}

.newsPage .archive-list a:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #3ba4f3;
  border-right: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.newsPage .archive-list {
  font-size: 1.5rem;
}

.newsPage .archive-list .ubuntu {
  font-weight: 500;
  font-size: clamp(2rem, 2vw, 2.2rem);
}

.newsPage .news-list {
  margin-bottom: 6rem;
}

.newsPage .newsCont-wrap {
  width: calc(100% - 6.6666% - 18.8333%);
}

#wp_page_numbers .list-pager {
  display: flex;
  justify-content: center;
  gap: 8px;
}

#wp_page_numbers .page-numbers {
  display: block;
  width: 35px;
  height: 35px;
  color: #3BA4F3;
  border: 1px solid #75BFF6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
}

#wp_page_numbers .page-numbers.current {
  color: #FFF;
  border: 1px solid #3ba4f3;
  background: #3ba4f3;
}

#wp_page_numbers .page-numbers.prev,
#wp_page_numbers .page-numbers.next,
#wp_page_numbers .page-numbers.dots {
  border-style: none;
}

#wp_page_numbers .page-numbers.prev,
#wp_page_numbers .page-numbers.next {
  font-size: 0;
  position: relative;
}

#wp_page_numbers .page-numbers.prev:before,
#wp_page_numbers .page-numbers.next:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #3BA4F3;
  border-right: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

#wp_page_numbers .page-numbers.prev:before {
  transform: scale(-1, 1);
}

#wp_page_numbers .ubuntu {
  font-weight: 500;
}

#wp_page_numbers a {
  transition: .3s ease-in-out;
}

.newsPage.detail .newsSec {
  background: #ECF3F8;
  padding: 4rem;
  margin-bottom: 6rem;
}

.newsPage.detail time {
  color: #3ba4f3;
  font-size: 1.5rem;
}

.newsPage.detail .newsSec > h2 {
  font-size: clamp(2rem, 2.2vw, 2.6rem);
  line-height: 1.4;
  font-weight: 500;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  background-image: linear-gradient(to right, #3ba4f3, #3ba4f3 3px, transparent 3px, transparent 3px);
  background-size: 4px 2px;
  background-position: left bottom;
  background-repeat: repeat-x;
}

.newsPage.detail .news-cont h1 {
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  line-height: 1.4;
  font-weight: 500;
  color: #FFF;
  background: #3BA4F3;
  position: relative;
  padding: 1rem 2rem;
  margin: 2rem 0 1.5rem;
}

.newsPage.detail .news-cont h1:before {
  content: "";
  display: block;background: url(../images/news/deco-triangle-news-white.svg) no-repeat;
  background-size: cover;
  width: 27px;
  height: 27px;
  position: absolute;
  top: 0;
  left: 0;
}

.newsPage.detail .news-cont h2 {
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 1.4;
  font-weight: 500;
  color: #3BA4F3;
  background: #FFF;
  padding: .5rem .8rem;
  border: 1px solid #75BFF6;
  margin: 2rem 0 1.5rem;
  display: flex;
}

.newsPage.detail .news-cont h3 {
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  line-height: 1.4;
  font-weight: 500;
  position: relative;
  padding: 1rem 0 0 2.3rem;
  margin: 2rem 0 1.5rem;
  display: flex;
}

.newsPage.detail .news-cont h3:before {
  content: "";
  display: block;
  background: url(../images/news/deco-triangle-news-blue.svg) no-repeat;
  background-size: cover;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
}

.newsPage.detail .news-cont h4 {
  font-size: 1.7rem;
  line-height: 1.4;
  font-weight: 500;
  color: #3BA4F3;
  margin: 2rem 0 1rem;
}

.newsPage.detail .news-cont h5 {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
  margin: 2rem 0 1rem;
}

.newsPage.detail .news-cont p {
  margin-bottom: 2rem;
}

.newsPage.detail .news-cont blockquote {
  background: #FFF;
  padding: 2rem 2.5rem 2rem 6rem;
  position: relative;
  margin: 2rem 0;
  border-left: 2px solid #75BFF6;
}

.newsPage.detail .news-cont blockquote:before {
  content: "";
  display: block;
  background: url(../images/news/ic-quotation.svg) no-repeat;
  background-size: 100% auto;
  position: absolute;
  width: 22px;
  height: 14px;
  left: 22px;
  top: 30px;
}

.newsPage.detail .news-cont blockquote p {
  margin-bottom: 0;
}

.newsPage.detail .news-cont ul {
  margin: 0 0 2rem 1.7rem;
  line-height: 1.8;
}

.newsPage.detail .news-cont ul li {
  text-indent: -.9rem;
}

.newsPage.detail .news-cont ul li:before {
  content: "■";
  display: inline-block;
  color: #3BA4F3;
  font-size: 1rem;
  margin-right: .7rem;
  vertical-align: 2px;
}

.newsPage.detail .news-cont ol {
  margin: 0 0 2rem 1.7rem;
  line-height: 1.8;
}

.newsPage.detail .news-cont ol li::marker {
  color: #3BA4F3;
  font-family: "Ubuntu", sans-serif;
}

.newsPage.detail .news-cont img {
  display: block;
}

.newsPage.detail .news-cont img.alignleft {
  float: left;
  margin: 0 2rem 1rem auto;
}

.newsPage.detail .news-cont img.aligncenter {
  margin: 2rem auto;
}

.newsPage.detail .news-cont img.alignright {
  float: right;
  margin: 0 auto 2rem 2rem;
}

.newsPage.detail a {
  color: #3BA4F3;
  transition: .3s ease-in-out;
}

.newsPage.detail a[target="_blank"]:after {
  content: "";
  display: inline-block;
  background: url(../images/common/ic-blank-blue.svg) no-repeat;
  background-size: 100% auto;
  width: 12px;
  height: 11px;
  margin-left: .5rem;
  transition: .3s ease-in-out;
}

.newsPage.detail .link-btn.back {
  margin: 0 auto;
}

.newsPage.detail .link-btn.back a {
  border: 2px solid #75BFF6;
  background: #FFF;
  color: #3BA4F3;
}

.newsPage.detail .link-btn.back a:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid #3ba4f3;
  border-left: 0;
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  transition: .3s ease-in-out;
}

@media screen and (max-width: 1023px) {
  .newsPage.detail .news-cont img.alignright,
  .newsPage.detail .news-cont img.alignleft {
    float: none;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .newsPage .section .inner {
    flex-direction: column-reverse;
    padding: 0 0 5rem;
  }

  .newsPage aside {
    width: 100%;
  }

  .newsPage .newsCont-wrap {
    width: 100%;
  }

  .newsPage .news-list {
    margin-bottom: 3rem;
  }

  .newsPage.detail .newsSec {
    padding: 2rem;
  }

  .newsPage.detail .news-cont h4 {
    font-size: 1.5rem;
  }

  .newsPage.detail .news-cont h5 {
    font-size: 1.4rem;
  }

  .newsPage.detail .news-cont blockquote {
    padding: 4% 4% 4% 4rem;
  }

  .newsPage.detail .news-cont blockquote:before {
    width: 18px;
    left: 12px;
    top: 20px;
  }

  .newsPage.detail .news-cont ul li:before {
    vertical-align: 1px;
  }
}

@media screen and (min-width: 768px) {
  .newsPage .archive-list a:hover {
    opacity: .7;
  }

  .newsPage.detail a:hover {
    opacity: .7;
  }

  .newsPage.detail a[target="_blank"]:hover:after {
    opacity: .7;
  }

  #wp_page_numbers a:hover {
    background: #3ba4f3;
    color: #FFF;
    border: 1px solid #3ba4f3;
  }

  #wp_page_numbers a.next:hover,
  #wp_page_numbers a.prev:hover {
    background: transparent;
    border-style: none;
  }

  .newsPage.detail .link-btn.back a:hover {
    background: #3ba4f3;
    border: 2px solid #3ba4f3;
    color: #FFF;
  }

  .newsPage.detail .link-btn.back a:hover:before {
    border-right: 5px solid #FFF;
  }
}



/* ----------------------------
  404ページ
---------------------------- */
.page404 .inner {
  padding: 0 0 10rem;
}

.page404 .box {
  max-width: 600px;
  background: #ECF3F8;
  margin: 0 auto;
  padding: 4rem;
  text-align: center;
}

.page404 h2 {
  margin-bottom: 2rem;
  line-height: 1.4;
}

.page404 .box .txt {
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  .page404 .box {
    text-align: left;
    padding: 3rem;
  }
}

