@charset "UTF-8";

:root {
  --c-blue: #005BAC;
  --c-blue-l: #DDE6EA;
  --c-black: #333;
  --c-gry: #A5A5A5;
}

/* ---------------------
base 
--------------------- */
html,
:host {
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family: "Noto Sans JP", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  line-height: inherit;
  color: var(--c-black);
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* ---------------------
layout 
--------------------- */
body {
  padding-top: 65px;
}

.wrap-common {
  padding-left: 8vw;
  padding-right: 8vw;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.hidden {
  display: none;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

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

.justify-between {
  justify-content: space-between;
}

.object-cover {
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 768px) {
  .md\:absolute {
    position: absolute;
  }

  .md\:order-1 {
    order: 1;
  }

  .md\:order-2 {
    order: 2;
  }

  .md\:order-3 {
    order: 3;
  }

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:justify-center {
    justify-content: center;
  }

  .md\:justify-between {
    justify-content: space-between;
  }

  .md\:text-left {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .lg\:static {
    position: static;
  }

  .lg\:absolute {
    position: absolute;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:items-center {
    align-items: center;
  }

}

@media (min-width: 1280px) {
  .wrap-common {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .xl\:static {
    position: static;
  }

  .xl\:absolute {
    position: absolute;
  }

  .xl\:flex {
    display: flex;
  }

  .xl\:block {
    display: block;
  }

  .xl\:hidden {
    display: none;
  }

  .xl\:flex-row {
    flex-direction: row;
  }

  .xl\:items-center {
    align-items: center;
  }

}

/* ---------------------
font-style 
--------------------- */
.mincho {
  font-family: "Noto Serif JP", serif;
}

.text-center {
  text-align: center;
}

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

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.not-italic {
  font-style: normal;
}

/* ---------------------
link-style 
--------------------- */
a,
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

a[href^="tel:"],
a[href^="mailto:"] {
  text-decoration: none;
  color: var(--c-black);
}

.underline {
  text-decoration: underline;
  color: var(--c-black);
}

/* ---------------------
loading-style 
--------------------- */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loading.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

#loading span {
  width: 60px;
  height: 60px;
  border: 6px solid var(--c-green);
  border-top: 6px solid #eee;
  border-radius: 50%;
}

/* ---------------------
header-style 
--------------------- */
.header {
  align-items: center;
  padding: 1rem 5vw;
  width: 100%;
  height: 65px;
  position: fixed;
  top: 0;
  z-index: 55;
  background: rgba(255, 255, 255, 1);
  font-size: 0.875rem;
}

.header.scroll:before {
  top: 0;
}

.header .logo {
  width: 35%;
  max-width: 192px;
  position: relative;
  z-index: 51;
  margin: 0;
}

.header .logo img {
  vertical-align: baseline;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.header .logo:hover img {
  opacity: .6;
}

#menu-toggle {
  background: none;
  border: none;
  width: 60px;
  height: 100%;
  font-size: 12px;
  position: absolute;
  right: 0;
  z-index: 51;
}

#menu-toggle .bar {
  width: 22px;
  height: 2px;
  background: var(--c-black);
  transition: all 0.3s ease;
}

#menu-toggle .bar-top,
#menu-toggle .bar-mid {
  margin-bottom: 4px;
}

#menu-toggle .bar-top.open {
  transform: rotate(45deg) translate(4px, 4px);
}

#menu-toggle .bar-mid.open {
  opacity: 0;
}

#menu-toggle .bar-bottom.open {
  transform: rotate(-45deg) translate(4px, -4px);
}

#menu {
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  z-index: 51;
  overflow-y: auto;
  padding: 4rem 5vw;
  background: rgb(0 0 0 / 80%);
  width: 60%;
  max-width: 420px;
  height: 100%;
  max-height: none;
  margin: 0 0 0 auto;
}

.gnavi {
  margin: 0;
}

.gnavi a {
  color: #fff;
  display: block;
  text-decoration: none;
}

.gnavi li {
  font-weight: 500;
  letter-spacing: 0.05em;
}

.gnavi>li {
  width: 100%;
  border-bottom: solid 1px #D0D0D0;
  line-height: 3.5rem;
}

.gnavi>li:last-child {
  border-bottom: none;
}

.gnavi>li>a {
  position: relative;
  padding-right: 45px;
}

.gnavi>li.btn-pull>a:before,
.gnavi>li.btn-pull>a:after {
  content: "";
  position: absolute;
  right: 17px;
  top: 0;
  bottom: 0;
  z-index: 10;
  margin: auto 0;
  width: 12px;
  height: 2px;
  background: var(--c-green);
  transition: all 0.3s ease;
}

.gnavi>li.btn-pull>a:after {
  transform: rotate(90deg);
}

.gnavi>li.btn-pull.open>a:after {
  transform: rotate(180deg);
}

.gnavi .pull {
  display: flex;
  flex-wrap: wrap;
  border-top: solid 1px #D0D0D0;
  overflow: hidden;
  height: 0;
  transition: opacity .2s ease;
}

.gnavi .pull li {
  width: 100%;
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 180%;
}

.gnavi .pull li a {
  position: relative;
  padding: .6rem 1.8rem;
}

.header .btn-recruit {
  position: absolute;
  top: 0;
  right: 60px;
  z-index: 51;
  height: 100%;
  padding: 0 4vw;
  display: flex;
  background: var(--c-blue);
  color: #fff;
  text-decoration: none;
}

.header .btn-recruit:hover {
  background: var(--c-black);
}

@media (min-width: 768px) {}

@media (min-width: 1024px) {
  .header {
    padding: 0 0 0 3vw;
    transition: all 0.3s ease;
  }

  .header.scroll {
    background: rgba(255, 255, 255, .8);
  }

  .header .logo {
    width: 16%;
    /* max-width: 282px; */
    transition: all 0.3s ease;
  }

  /* .header.scroll .logo {
    max-width: 200px;
  } */

  #menu {
    position: relative;
    top: 0;
    background-color: transparent;
    height: auto;
    overflow-y: visible;
    padding: 0;
    width: auto;
    max-width: none;
    margin: 0 17% 0 auto;
    transform: translateX(0) !important;
    opacity: 1 !important;
  }

  .gnavi {
    align-items: center;
  }

  .gnavi li {
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 150%;
    width: auto;
    border-bottom: none;
  }

  .gnavi a {
    color: var(--c-black);
  }

  .gnavi>li.btn-pull {
    width: auto;
  }

  .gnavi>li>a {
    border-bottom: none;
  }

  .gnavi .pull {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 10;
    width: max-content;
    max-width: 180px;
    height: min-content;
    padding: 30px 30px 20px;
    margin: 0 auto;
    border-radius: 0 0 15px 15px;
    background: var(--c-blue);
  }

  .gnavi li:hover>.pull {
    visibility: visible;
    opacity: 1;
  }

  .gnavi .purpose .pull {
    width: 256px;
    left: -20%;
  }

  .gnavi .aboutus .pull {
    width: 195px;
  }

  .gnavi .pull li {
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
  }

  .gnavi .pull li a {
    padding: 5px 0;
    position: relative;
    color: #fff;
  }

  .gnavi>li {
    position: relative;
    padding: 0;
  }

  .gnavi>li .link {
    padding: 1.4rem .5rem;
    position: relative;
  }

  .gnavi>li .link:before,
  .gnavi>li.btn-pull>a:before {
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    margin: 0 auto;
    width: 14px;
    height: 7px;
    border-radius: 14px 14px 0 0;
    background: var(--c-blue);
  }

  .gnavi>li.btn-pull>a:after {
    display: none;
  }

  .gnavi>li:hover .link:before,
  .gnavi>li.btn-pull:hover>a:before {
    opacity: 1;
    transform: translateY(0);
  }

  .header .btn-recruit {
    position: absolute;
    right: 0;
    width: 14%;
    max-width: 200px;
    height: 100%;
    padding: 0 2rem;
  }

  .header .btn-recruit:hover {}
}

/* ---------------------
footer-style 
--------------------- */
#totop {
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 99;
  margin: 0 auto;
  text-align: center;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
}

#totop img {
  filter: invert(10%) sepia(93%) saturate(7383%) hue-rotate(199deg) brightness(95%) contrast(100%);
}

.footer {
  margin-top: 5rem;
  position: relative;
}

.footer:before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.251;
  background-image: url(../img/common/f-img.jpg);
  background-size: cover;
}

.f-cv {
  width: 100%;
  gap: 15px 5%;
  transform: translateY(-5vw);
  margin-bottom: 2rem;
}

.f-cv .btn-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  background: var(--c-blue);
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 1rem;
  border-radius: 20px 20px 3px 3px;
}

.f-cv .btn-contact i {
  margin-right: 1rem;
}

.f-cv .btn-contact i img {
  width: 30px;
  filter: invert(90%) sepia(0%) saturate(7461%) hue-rotate(54deg) brightness(113%) contrast(108%);
}

.f-cv .btn-contact:hover {
  background: #06467f;
}

.f-cv .btn-wh {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 47.5%;
  height: 60px;
  background: #fff;
  border: solid 1px var(--c-black);
  color: var(--c-black);
  text-decoration: none;
  text-align: center;
  padding: 0;
  border-radius: 20px 20px 3px 3px;
}

.f-cv .btn-wh i img {
  width: 43px;
}

.f-cv .btn-wh:hover {
  background: var(--c-blue-l);
}

.f-info {
  width: 100%;
}

.f-info .logo {
  display: block;
  width: 50%;
  max-width: 177px;
  margin: 0 0 2rem;
}


.f-info .company,
.f-info .address,
.f-info .tel {
  letter-spacing: 0.03em;
  margin: 0 0 .5rem;
}

.f-info .company,
.f-info .address {
  font-size: 0.75rem;
}

.f-info .address {
  font-style: normal;
}

.f-nav {
  width: 100%;
}

.f-nav .f-nav-list {
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  gap: 22px 16px;
  margin: 2rem 0 3.5rem;
}

.f-nav .f-nav-list a {
  color: var(--c-black);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.f-nav .f-nav-list a:hover {
  color: var(--c-blue);
}

.footer .block-bottom {
  font-size: 0.75rem;
}

.footer .block-bottom .list-link {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer .block-bottom .list-link a {
  color: var(--c-black);
  text-decoration: none;
}

.footer .block-bottom .list-link a:hover {
  color: var(--c-blue);
}


.footer .block-bottom .copyright {
  width: 100%;
  padding: 1rem 0 2rem;
  margin: 0;
}

@media (min-width: 768px) {
  .f-cv {
    gap: 15px 3%;
    margin-bottom: 0;
  }

  .f-cv .btn-contact {
    width: 47%;
  }

  .f-cv .btn-wh {
    width: 23.5%;
  }

  .f-info {
    width: 100%;
  }

  .f-info .logo {
    margin: 0 0 2rem;
  }

  .f-info .company,
  .f-info .address,
  .f-info .tel {
    text-align: left;
  }

  .f-nav .f-nav-list {
    grid-template-rows: repeat(2, auto);
    gap: 16px;
  }

  .footer .block-bottom {
    width: 100%;
    align-items: flex-end;
    justify-content: space-between;
    gap: 5%;
    margin-bottom: 3rem;
  }

  .footer .block-bottom .list-link {
    order: 2;
    width: auto;
  }

  .footer .block-bottom .copyright {
    order: 1;
    width: auto;
    margin: 0;
    padding: 0;
  }

}

@media (min-width: 1024px) {
  .footer .inner {
    gap: 2rem 5%;
    align-items: flex-end;
  }

  .f-cv {
    transform: translateY(-2rem);
  }

  .f-cv .btn-contact,
  .f-cv .btn-wh {
    height: 81px;
    font-size: 1.25rem;
    border-radius: 30px 30px 5px 5px;
  }

  .f-info {
    width: 40%;
  }

  .f-info .company,
  .f-info .address {
    font-size: 0.75rem;
  }

  .f-info .tel {
    font-size: 0.875rem;
  }

  .f-nav {
    width: 55%;
  }

  .f-nav .f-nav-list {
    margin: 0;
    justify-content: flex-end;
    gap: 1.5rem 3rem;
    font-size: 0.875rem;
  }

  .footer .block-bottom {
    margin: 3rem 0;
  }
}

/* ---------------------
btn 
--------------------- */
.btn-arrow {
  display: inline-block;
  color: #fff;
  background-color: var(--c-blue);
  text-decoration: none;
  letter-spacing: 0.1em;
  border: solid 1px #fff;
  padding: .8rem 5rem;
  position: relative;
}

.btn-arrow::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -25px;
  margin: auto 0;
  width: 40px;
  height: 7px;
  background-image: url(../img/common/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  filter: invert(98%) sepia(95%) saturate(69%) hue-rotate(208deg) brightness(121%) contrast(100%);
  transition: all 0.3s ease;
}

.btn-arrow:hover {
  background-color: var(--c-black);
}

.btn-arrow:hover::after {
  right: -30px;
}

.btn-arrow-wh {
  display: inline-block;
  color: var(--c-blue);
  background-color: #fff;
  text-decoration: none;
  letter-spacing: 0.1em;
  border: solid 1px var(--c-blue);
  padding: .8rem 5rem;
  position: relative;
}

.btn-arrow-wh::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -25px;
  margin: auto 0;
  width: 40px;
  height: 7px;
  background-image: url(../img/common/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  filter: invert(10%) sepia(93%) saturate(7383%) hue-rotate(199deg) brightness(95%) contrast(100%);
  transition: all 0.3s ease;
}

.btn-arrow-wh:hover {
  background-color: var(--c-blue-l);
}

.btn-arrow-wh:hover::after {
  right: -30px;
}

.btn-arrow-lb {
  display: inline-block;
  color: var(--c-blue);
  background-color: #DDE6EA;
  text-decoration: none;
  letter-spacing: 0.1em;
  padding: .8rem 5rem;
  position: relative;
}

.btn-arrow-lb::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -25px;
  margin: auto 0;
  width: 40px;
  height: 7px;
  background-image: url(../img/common/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  filter: invert(10%) sepia(93%) saturate(7383%) hue-rotate(199deg) brightness(95%) contrast(100%);
  transition: all 0.3s ease;
}

.btn-arrow-lb:hover {
  background-color: #e5f1f6;
}

.btn-arrow-lb:hover::after {
  right: -30px;
}

/* ---------------------
breadcrumbs-style 
--------------------- */
.breadcrumbs {
  margin-bottom: 2rem;
}

.breadcrumbs .breadcrumbs-inner {
  margin: 0;
  text-align: center;
  justify-content: center;
  gap: 0 .9rem;
}

.breadcrumbs .breadcrumbs-inner .item {
  font-size: 12px;
  line-height: 32px;
}

.breadcrumbs .breadcrumbs-inner .item,
.breadcrumbs .breadcrumbs-inner .item a {
  color: var(--c-black);
  text-decoration: none;
}

.breadcrumbs .breadcrumbs-inner .item:after {
  content: "／";
  display: inline-block;
  margin-left: 1rem;
}

.breadcrumbs .breadcrumbs-inner .item:nth-last-child(1):after {
  display: none;
}

@media (min-width: 1024px) {
  .breadcrumbs {
    margin-bottom: 5rem;
  }

  .breadcrumbs .breadcrumbs-inner .item a:hover {
    color: var(--c-green);
  }
}


/* ---------------------
pager-style 
--------------------- */
.pager {
  list-style: none;
  padding: 0;
  justify-content: center;
  gap: 0.2rem 0.5rem;
}

.pager .pager-item {
  aspect-ratio: 1/1;
  min-width: 46px;
}

.pager .pager-item .link {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  font-size: 18px;
  line-height: 45px;
  text-align: center;
  color: #A5A5A5;
  background-color: #fff;
}

.pager .pager-item.active .link {
  color: #fff;
  background-color: var(--c-blue);
}

@media (min-width: 1024px) {
  .pager .pager-item .link:hover {
    color: #fff;
    background-color: var(--c-blue);
  }
}

/* ---------------------
下層ページ
--------------------- */
/* ページタイトル */
.page-title {
  font-weight: 500;
  font-size: 8vw;
  letter-spacing: 0.05em;
  margin: 4rem 0;
}

.page-title .en {
  font-size: 3vw;
  letter-spacing: 0.2em;
  display: block;
  color: #676767;
}

@media (min-width: 768px) {
  .page-title {
    font-size: 5vw;
  }

  .page-title .en {
    font-size: 1.7vw;
  }
}

@media (min-width: 1024px) {
  .page-title {
    font-size: 3vw;
    margin: 10rem 0 7rem;
  }

  .page-title .en {
    font-size: 1vw;
  }
}

/* ページ内セクションタイトル */
.page-sec-title {
  font-size: 1.5rem;
  position: relative;
  padding-left: 18px;
}

.page-sec-title::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  width: 16px;
  height: 16px;
  background: var(--c-blue);
  border-radius: 50%;
}

.page-sec-title::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
  width: 90%;
  height: 1px;
  background: #D9D9D9;
}

.page-sec-title span {
  display: inline-block;
  padding: 0 1.5rem 0 0;
  background: #fff;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {

  .page-sec-title {
    font-size: 2rem;
    padding-left: 24px;
  }

  .page-sec-title::before {
    width: 18px;
    height: 18px;
  }
}

@media (min-width: 1024px) {
  .page-sec-title {
    margin: 10rem 0 5rem;
  }
}

/* ナビゲーション */
.anchor-nav {
  margin: 4rem 0;
}

.anchor-nav .nav-list {
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.anchor-nav a {
  letter-spacing: 0.1em;
  text-decoration: none;
  font-size: 0.875rem;
  color: #a5a5a5;
  position: relative;
}

.anchor-nav a:before {
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s ease;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1rem;
  bottom: auto;
  margin: 0 auto;
  width: 10px;
  height: 6px;
  border-radius: 14px 14px 0 0;
  background: var(--c-blue);
}

.anchor-nav a:hover {
  border-bottom: solid 1px;
  color: var(--c-blue);
}

.anchor-nav a:hover::before {
  opacity: 1;
  transform: translateY(0);
}

/* ページ内セクションサブタイトル */
.page-sec-subtitle {
  color: var(--c-blue);
  font-size: 1.25rem;
  margin: 0;
  padding: 1rem 0 1rem 20px;
  position: relative;
}

.page-sec-subtitle:before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.5rem;
  width: 11px;
  height: 18px;
  border-radius: 0 18px 18px 0;
  background: var(--c-blue);
}

@media (min-width: 1024px) {
  .page-sec-subtitle {
    font-size: 1.5rem;
  }

  .page-sec-subtitle:before {
    top: 1.7rem;
  }
}

/* ページ内セクションサブタイトル */
.page-mainimg {
  gap: 1.5rem;
}

.page-mainimg .block-txt {
  justify-content: center;
  order: 2;
  padding: 0 8vw;
}

.page-mainimg .block-txt .ico {
  display: block;
  width: 20%;
  max-width: 132px;
}

.page-mainimg .block-txt .page-title {
  text-align: center;
  width: 100%;
  margin: 1.5rem 0;
}

.page-mainimg .block-txt .lead {
  margin: 0;
  line-height: 200%;
}

.page-mainimg .mainimg {
  order: 1;
  width: 100%;
  aspect-ratio: 5 / 2;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .page-mainimg {
    justify-content: space-between;
    padding: 5rem 0 0;
  }

  .page-mainimg .block-txt {
    justify-content: flex-start;
    align-content: center;
    width: 50%;
    order: 1;
  }

  .page-mainimg .block-txt .page-title {
    text-align: left;
    font-size: 3.125rem;
  }

  .page-mainimg .mainimg {
    width: calc(50% - 1.5rem);
    aspect-ratio: 1 / 0.667;
    order: 2;
  }
}

@media (min-width: 1280px) {
  .page-mainimg .block-txt {
    padding: 0 10vw;
  }

  .page-mainimg .block-txt .ico {
    width: 30%;
  }
}

/* iframe */
.map {
  width: 100%;
  aspect-ratio: 1 / 0.528;
}

.map iframe {
  width: 100%;
  height: 100%;
}

/* ページバナーリンク群 */
.wrap-pagelink {
  background: #EBF0F4;
  padding: 3rem 0 6rem;
}

.wrap-pagelink .inner {
  flex-direction: column;
  gap: 2rem 10%;
}

.pagelink-title {
  display: inline-block;
  text-decoration: none;
  color: var(--c-gry);
}

.pagelink-title span {
  display: flex;
  gap: .5rem;
  align-items: center;
  letter-spacing: 0.2em;
}

.pagelink-title span::after {
  content: "";
  display: inline-block;
  width: 58px;
  height: 58px;
  padding: 10px 0 0;
  border: solid 1px #000;
  border-radius: 50%;
  background: url(../img/common/arrow.svg) no-repeat;
  background-size: 27px auto;
  background-position: center;
  filter: invert(14%) sepia(67%) saturate(6100%) hue-rotate(198deg) brightness(92%) contrast(101%);
}

.pagelink-title:hover{
  color: var(--c-blue);
}

.pagelink-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem 4%;
}

.pagelink-card {
  width: 48%;
}

.pagelink-card .link {
  text-decoration: none;
  color: var(--c-black);
}

.pagelink-card .link .img {
  overflow: hidden;
}
.pagelink-card .link .img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s ease;
}

.pagelink-card .link:hover .img img {
  transform: scale(1.05);
}

.pagelink-card .title {
  letter-spacing: 0.05em;
  margin: .5rem 0 0;
}

@media (min-width: 768px) {
  .pagelink-card {
    width: 30.666%;
  }
}

@media (min-width: 1280px) {
  .wrap-pagelink {
    padding: 6rem 0;
  }

  .wrap-pagelink .inner {
    flex-direction: unset;
  }

  .wrap-pagelink .btn-wrap {
    width: 58px;
  }

  .pagelink-title {
    writing-mode: tb;
  }

  .pagelink-grid {
    width: calc(90% - 58px);
    gap: 3rem 8%;
  }

  .pagelink-card {
    width: 28%;
  }

  .pagelink-card .title {
    font-size: 1.25rem;
  }
}

/* 2カラムリスト */
.col2-grid {
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 2rem 5%;
}

.col2-grid-item .title {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

.col2-grid-item .comment {
  font-size: 0.875rem;
  line-height: 200%;
}

.col2-grid-item .btn {
  justify-content: flex-start;
  align-items: center;
  gap: 0 .5rem;
  color: var(--c-black);
  background-color: #fff;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.05em;
  border: solid 1px rgba(217, 217, 217, 1);
  margin-top: 2rem;
  padding: 1rem 50px 1rem 1rem;
  position: relative;
}

.col2-grid-item .btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto 0;
  width: 40px;
  height: 7px;
  background-image: url(../img/common/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  filter: invert(10%) sepia(93%) saturate(7383%) hue-rotate(199deg) brightness(95%) contrast(100%);
  transition: all 0.3s ease;
}

.col2-grid-item .btn i {
  display: inline-block;
  width: 20%;
  max-width: 75px;
}

.col2-grid-item .btn:hover {
  background-color: var(--c-blue-l);
}

.col2-grid-item .btn:hover::after {
  right: 10px;
}

@media (min-width: 768px) {
  .col2-grid {
    align-items: flex-start;
  }

  .col2-grid-item {
    width: 47.5%;
  }
}

@media (min-width: 1280px) {
  .col2-grid {
    gap: 2rem 8%;
  }

  .col2-grid-item {
    width: 46%;
  }
}

/* リストインデント */
ul.list-style-indent {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.list-style-indent li {
  padding-left: 1em;
  text-indent: -1em;
}

/* ---------------------
animation-style
--------------------- */
.js-fade-up {
  opacity: 0;
  transform: translateY(-20px);
}