@charset "UTF-8";

/* ==== color ========================== */
:root {
  --color-black: #333;
  --color-white: #fff;
  --color-primary-b: #5C78D4;
  --color-primary-l-b: #D0D8F3;
  --color-primary-p: #3F3277;
  --color-bg-p: #F8F8FC;
  --color-gray: #CCCDD1;

  --noto: "Noto Sans JP", sans-serif;
  --inter: "Inter", sans-serif;


  --fs18: 1.8rem;
  --fs20: 2rem;
  --fs24: 2.4rem;
  --fs32: 3.2rem;


  --al04s: all .4s;


  --header: 10rem;
  scroll-padding: var(--header);
}

@media screen and (max-width:767px) {
  :root {
    --fs32: 2.4rem;
    --fs24: 1.8rem;
    --fs20: 1.4rem;
    --fs18: 1.2rem;

    --header: 8rem;
    scroll-padding: var(--header);
  }
}



/*================================================
 *  一般・共通設定
 ================================================*/
html {
  font-size: 62.5%;
  /* scroll-behavior: smooth; */
}

body {
  font-family: var(--noto);
  background: var(--color-white);
  color: var(--color-black);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.65;
  word-break: break-word;

}

.wrap,
.narrow {
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.wrap {
  max-width: 1230px;
}

.narrow {
  max-width: 1030px;
}

a {
  color: var(--color-black);
  text-decoration: none;
  transition: var(--al04s);
  display: block;
}

a:hover {
  opacity: 1;

}

a[href^="tel:"] {
  text-decoration: none !important;
}

a[x-apple-data-detectors] {
  text-decoration: none !important;
  color: inherit !important;
}

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

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ol {
  margin-left: 1.5em;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}

p,
table,
li,
dl,
dt,
dd {
  font-weight: 400;
}

iframe {
  display: block;
  width: 100%;
}


main {
  margin-top: 10rem;
  overflow: hidden;
}

/* #contents {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
} */

/* タイトル */
.c-hd {
  line-height: 1.2;
  margin-bottom: 4rem;
}

.c-hd span {
  display: block;
}

.c-hd .ja {
  color: var(--color-primary-p);
  position: relative;
  padding-left: 4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-hd .ja::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/hd_icon.png);
  width: 2.984rem;
  height: 1.343rem;
  top: 10%;
  left: 0.3rem;
  /* transform: translateY(-50%); */
}


.c-hd .en {
  font-size: 7rem;
  font-family: var(--inter);
  color: var(--color-primary-l-b);
  letter-spacing: 0.06em;
  font-weight: 400;
}

.c-hd.ac .ja {
  margin-left: auto;
  margin-right: auto;
}


.c-hd.sub .ja {
  font-size: var(--fs24);
  margin: 0 auto;
  padding-left: 0;
  padding-bottom: 2.5rem;
}

.c-hd.sub .ja::before {
  top: auto;
  bottom: 0;
  left: 51%;
  transform: translateX(-50%);
}

.c-line_hd {
  font-size: var(--fs20);
  padding-bottom: 0.75em;
  border-bottom: 1px solid var(--color-gray);
  position: relative;
}

.c-line_hd::before {
  position: absolute;
  content: "";
  width: 10rem;
  height: 1px;
  bottom: -1px;
  left: 0;
  background: var(--color-primary-b);
}

/* c-label */
.c-label {
  background: var(--color-primary-p);
  color: var(--color-white);
  font-size: 1.2rem;
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 100000000px;
  line-height: 1;
}

.c-label:not(:first-of-type) {
  margin-right: 0.5rem;
}

.c-dot_list li {
  position: relative;
  padding-left: 1.2em;
}

.c-dot_list li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.c-dot_list li::before {
  position: absolute;
  content: "・";
  color: var(--color-primary-b);
  top: 0;
  left: 0;
}

@media screen and (max-width:767px) {
  body {
    font-size: 1.4rem;
  }

  body:has(.open_nav) {
    overflow: hidden;
  }

  .wrap,
  .narrow {
    width: 100%;
  }

  main {
    margin-top: 6rem;
  }


  .c-hd {
    margin-bottom: 2rem;
  }

  .c-hd .ja {
    font-size: 1.4rem;
  }

  .c-hd .en {
    font-size: 4rem;
  }
}

/*================================================
 *  header / ヘッダー
 ================================================*/
header#mainnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: transform 0.3s ease;
  transform: translateY(0%);
  background: var(--color-white);
}



#mainnav.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.nav_inner {
  padding: 1.5rem 1rem 0.5rem;
  margin: 0 auto;
  max-width: 1340px;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

/* nav_left */
header .nav_left {
  width: 19%;
  min-width: 18rem;
  padding-bottom: 0.5rem;
}

/* nav_right */
.nav_right-inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}

nav.gnav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  order: 1;
}

nav.gnav ul li {
  margin-left: 2rem;
}

nav.gnav ul a i {
  margin-left: 0.5rem;
}

nav.gnav ul a:hover {
  color: var(--color-primary-b);
}

nav.gnav ul li.contact a {
  background: var(--color-primary-b);
  border: 1px solid var(--color-primary-b);
  color: var(--color-white);
  display: grid;
  place-content: center;
  line-height: 1;
  padding: 0.85rem 4rem;
  padding-left: clamp(2rem, 2vw, 4rem);
  padding-right: clamp(2rem, 2vw, 4rem);
  border-radius: 10000000px;
}

nav.gnav ul li.contact.download a {
  background: var(--color-primary-p);
  border: 1px solid var(--color-primary-p);
}


nav.gnav ul li.contact a:hover {
  background: var(--color-white);
  color: var(--color-primary-b);
}

nav.gnav ul li.contact.download a:hover {
  background: var(--color-white);
  color: var(--color-primary-p);
}


.nav_right-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
  margin-bottom: 0.5rem;
}

.nav_right-top a {
  font-family: var(--inter);
  font-size: var(--fs20);
  color: var(--color-primary-p);
  display: flex;
  align-items: center;
  gap: 0.2rem;

  text-decoration: underline;
}


.nav_right-top p {
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin-left: 1.5rem;
  border-left: 1px solid;
  color: #7E7E7E;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
}

@media screen and (max-width:1024px) {
  nav.gnav ul li {
    font-size: 1.2rem;
    margin-left: 1rem;
  }
}

@media screen and (max-width:767px) {
  #mainnav.hide {
    transform: translateY(0);
    transition: transform 0.3s ease;
  }

  /* ハンバーガーメニュー内 */
  nav.global__nav {
    position: absolute;
    right: -100%;
    top: 0;
    width: 70%;
    height: 100%;
    min-height: 100vh;
    background: var(--color-white);
    transition: all .2s ease-out;
    z-index: 200;
    overflow-y: scroll;
    padding: 4rem 1rem 20rem;
  }

  nav.gnav ul {
    display: block;
    order: 0;
    width: 100%;
    max-width: 35rem;
    margin: 0 auto;
    text-align: center;
  }

  nav.gnav ul li {
    margin-top: 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-gray);
    margin-left: 0;
    font-size: 1.6rem;
  }



  nav.gnav ul li:nth-child(7),
  nav.gnav ul li:last-child {
    border-bottom: none;
  }

  .nav_right-top {
    order: 1;
    width: 100%;
    margin-top: 1rem;
    justify-content: center;
  }

  .nav_right-top p {
    font-size: 1.2rem;
  }

  nav.gnav ul li a {
    padding: 1rem 0;
  }

  nav.gnav ul li.contact a {
    padding: 1rem 0;
    font-size: 1.8rem;
  }

  /* hamburger */
  .hamburger {
    position: absolute;
    right: 0.5rem;
    top: 1rem;
    width: 4rem;
    height: 4rem;
    cursor: pointer;
    z-index: 300;
  }


  /* line open */
  .hamburger__line {
    position: absolute;
    left: 50%;
    width: 70%;
    height: 1px;
    transform: translateX(-50%);
    background-color: var(--color-black);
    transition: all .2s ease-out;
  }

  .hamburger__line--1 {
    top: calc(50% - 0.75rem);
  }

  .hamburger__line--2 {
    top: 50%;
  }

  .hamburger__line--3 {
    top: calc(50% + 0.75rem);
  }

  /* back__bg */
  .back__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }

  /* 表示された時用のCSS */
  .open_nav .global__nav {
    right: 0;
  }

  .open_nav .back__bg {
    opacity: .8;
    visibility: visible;
  }

  /* line close */
  .open_nav .hamburger__line--1 {
    transform: translateX(-50%) rotate(45deg);
    top: 50%;
  }

  .open_nav .hamburger__line--2 {
    width: 0;
    left: 50%;
  }

  .open_nav .hamburger__line--3 {
    transform: translateX(-50%) rotate(-45deg);
    top: 50%;
  }

}

@media screen and (max-width:520px) {
  nav.global__nav {
    width: 100%;
  }
}


/*================================================
 *  section btn
 ================================================*/
section {
  padding-bottom: 8rem;
  position: relative;
}

.section {
  padding-top: 8rem;
}

/* section a {
  text-decoration: underline;
} */

.btnArea a,
.btnArea span {
  font-size: var(--fs18);
  color: var(--color-white);
  background: var(--color-primary-p);
  border: 1px solid var(--color-primary-p);
  border-radius: 1000000000px;
  width: 26rem;
  height: 6rem;
  display: flex;
  align-items: center;
  padding-left: 3rem;
  position: relative;
  text-decoration: unset;
}

.btnArea a:hover .btnArea span:hover {
  color: var(--color-primary-p);
  background: transparent;
}

.btnArea a::before,
.btnArea span::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/c-arrow_bg.png);
  width: 4rem;
  height: 4rem;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  transition: var(--al04s);
}

.btnArea a:hover::before,
.btnArea span:hover::before {
  background-image: url(/_wp/wp-content/uploads/2025/06/arrow.png);
}

.btnArea.ar a {
  margin-left: auto;
}

.btnArea.ac a {
  margin-left: auto;
  margin-right: auto;
}

/* icon */
i.icon {
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  transition: var(--al04s);
}


.icon_tel {
  background-image: url(../images/icon_tel.png);
  width: 0.9em;
  height: 0.9em;
}

.icon_blank {
  background-image: url(../images/icon_blank.png);
  width: 1em;
  height: 1em;
}


.icon_blank.wt {
  background-image: url(../images/icon_blank_w.png);
}

.icon_arrow-bg {
  background-image: url(../images/c-arrow_bg.png);
  width: 1.94em;
  height: 1.94em;
}

a:hover .icon_arrow-bg {
  background-image: url(../images/c-arrow_b.png);
}

/* ボタン */

@media screen and (max-width:767px) {
  section {
    padding-bottom: 4rem;
  }

  .section {
    padding-top: 4rem;
  }

  .btnArea a {
    font-size: 1.2rem;
    width: 18rem;
    height: 4rem;
  }

  .btnArea a::before {
    width: 2rem;
    height: 2rem;
  }
}


/*================================================
 *   c-contact
 ================================================*/
#c-contact {
  text-align: center;
}

.top #c-contact {
  padding-top: 4rem;
}

#c-contact .wrap {
  padding: 8rem 0;
  background: var(--color-bg-p);
  position: relative;
  border-radius: 1rem;
}

#c-contact .wrap::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color-primary-b);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(1deg);
  z-index: -1;
  border-radius: 1rem;
}

#c-contact h3 {
  font-size: var(--fs24);
  margin: 2rem 0;
}

#c-contact .btnArea {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

#c-contact .btnArea a {
  background: var(--color-primary-b);
  border-color: var(--color-primary-b);
  padding-left: 0;
  text-align: center;
  justify-content: center;
}

#c-contact .btnArea a.download {
  background: var(--color-primary-p);
  border-color: var(--color-primary-p);
}

#c-contact .btnArea a:hover {
  background: transparent;
  color: var(--color-primary-b);
}

#c-contact .btnArea a.download:hover {
  color: var(--color-primary-p);
}

#c-contact .btnArea a::before {
  content: none;
}

#c-contact .c-tel {
  margin-top: 4rem;
}

#c-contact .c-tel a {
  font-family: var(--inter);
  font-size: 3.4rem;
  color: var(--color-primary-p);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

#c-contact .c-tel p {
  font-weight: 400;
}

#c-contact .c-tel p small {
  font-size: 1.4rem;
}

@media screen and (max-width:767px) {
  #c-contact .wrap {
    width: 95%;
  }

  #c-contact .c-tel a {
    font-size: 3.2rem;
  }

  #c-contact .btnArea {
    flex-direction: column;
    gap: 1rem;
  }
}

/*================================================
 *  
 ================================================*/


@media screen and (max-width:767px) {}


/*================================================
 *  フッター
 ================================================*/
footer {
  background: #03061D;
  color: var(--color-white);
  font-weight: 400;
  position: relative;
}

footer::before {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% + 33rem);
  left: 0;
  top: -33rem;
  z-index: -1;
  background: #03061D;
}

.ft_inner {
  position: relative;
  overflow-x: hidden;
  padding-bottom: 8rem;
  z-index: 1;
}

.ft_inner.ft_inner::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/ft_bg.png);
  width: 1173px;
  height: 411px;
  bottom: 0;
  left: 82%;
  transform: translateX(-50%);
  z-index: -1;
}

footer a {
  color: var(--color-white);
}

footer a:hover {
  opacity: .6;
}

/* ft_company */
.ft_company a,
.ft_group div {
  display: flex;
  align-items: end;
  margin-bottom: 2rem;
  gap: 1rem;
}

.ft_company a {
  font-size: var(--fs18);

}

.ft_company a img,
.ft_group div img {
  max-width: 28rem;
}

/* ft_group */
.ft_group {
  margin: 6rem 0 5rem;
}


.ft_group a {
  display: inline-block;
  margin-right: 1rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.ft_group a:hover {}

/* ft_menu */
.ft_menu {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 6rem;
  border-bottom: 1px solid #A8A8A8;
}

.ft_menu li {
  margin-top: 1.5rem;
}

.ft_menu li a {
  font-weight: 400;
  font-size: 1.4rem;
}


.ft_menu li.ft_ttl a,
.ft_menu li.ft_ttl span {
  font-weight: 600;
  font-size: var(--fs18);
}

.ft_menu a[target="_blank"] {
  padding-right: 1.5em;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.ft_menu a[target="_blank"]::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/icon_blank_w.png);
  width: 1em;
  height: 1em;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* ft_policy */
.ft_policy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4rem;
  font-weight: 400;
}

.ft_policy div a {
  display: inline-block;
  margin-right: 3em;
  font-size: 1.4rem;
  border-bottom: 1px solid transparent;
}


.ft_policy .copy {
  font-size: 1.2rem;
  font-family: var(--inter);
}

@media screen and (max-width:1024px) {
  .ft_menu {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width:767px) {
  .ft_inner {
    padding-bottom: 4rem;
  }

  .ft_inner.ft_inner::before {
    width: 193.8vw;
    height: 66.15vw;
  }

  .ft_company a,
  .ft_group div {
    flex-wrap: wrap;
  }

  .ft_menu {
    grid-template-columns: repeat(1, 1fr);
  }

  .ft_menu li {
    margin-top: 1rem;
  }

  .ft_menu li a {
    font-size: 1.2rem;
  }

  .ft_policy {
    flex-wrap: wrap;
    gap: 2rem;
  }
}

/*================================================
 *  ページトップへの戻り
 ================================================*/
#pagetop {
  position: fixed;
  right: 30px;
  bottom: 10px;
  cursor: pointer;
  z-index: 1000;
  overflow: unset !important;
}

#pagetop .arrow-up {
  width: 15px;
  height: 15px;
  border: 1px solid;
  border-color: #333 #333 transparent transparent;
  transform: rotate(-45deg);
}

/*================================================
 *  breadcrumbs
 ================================================*/
#breadcrumbs {
  background: var(--color-primary-b);
  color: var(--color-white);
  padding: 2rem 0;
}

#breadcrumbs ul {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 1rem 6rem;
  font-size: 1.4rem;
}

#breadcrumbs ul li {
  position: relative;
  font-weight: 400;
}

#breadcrumbs ul li:not(:last-child)::before {
  position: absolute;
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--color-white);
  top: 50%;
  right: -4rem;
}

#breadcrumbs ul li a {
  text-decoration: underline;
  color: var(--color-white);
}


@media screen and (max-width:767px) {
  #breadcrumbs ul {
    gap: 0.5rem 3.2rem;
  }

  #breadcrumbs ul li:not(:last-child)::before {
    width: 1.6rem;
    right: -2.4rem;
  }
}


/*================================================
 *  subVisual
 ================================================*/
#subVisual {
  padding: 6rem 0;
  margin-bottom: 6rem;
}

#subVisual .wrap {
  position: relative;
}

#subVisual .wrap::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/sub_bg.png);
  width: 886px;
  height: 206px;
  top: 0;
  left: 0;
  transform: translateX(-50%);
  z-index: -1;
}

@media screen and (max-width:767px) {
  #subVisual {
    max-height: 196px;
  }

  #subVisual .wrap::before {
    top: -5rem;
    left: 50%;
  }

  #subVisual .c-hd {
    margin-bottom: 0;
  }
}



/*================================================
 * case
================================================*/
#case {
  overflow-x: hidden;
}

.case_list {
  display: grid;
  gap: 2rem 3%;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 8rem;
}

.case_list a {
  display: block;
  background: var(--color-bg-p);
  padding: 3rem 2rem 8rem;
  border-radius: 1rem;
  position: relative;
}

.case_list a::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/c-arrow_bg.png);
  width: 4rem;
  height: 4rem;
  bottom: 3rem;
  right: 2rem;
  transition: var(--al04s);
}

.case_list a::after {
  position: absolute;
  content: "";
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: var(--color-primary-b);
  border-radius: 1rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: var(--al04s);
}

.case_list a:hover::after {
  transform: translate(-50%, -50%) rotate(2deg);
}


.case_list a .thumbnail,
.case_list a img {
  display: block;
  overflow: hidden;
  object-fit: cover;
  aspect-ratio: 16/9;
  border-radius: 0.5rem;
}

.case_list a .thumbnail {
  margin-bottom: 2rem;
  border: 1px solid var(--color-primary-l-b);

  /* aspect-ratio: 1/1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 1rem; */
}

/* .case_list a .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
} */

.case_list a span {
  background: var(--color-primary-p);
  color: var(--color-white);
  font-size: 1.2rem;
  display: inline-block;
  padding: 0.4rem 2rem;
  border-radius: 100000000px;
  line-height: 1;
}

.case_list a span:not(:last-of-type) {
  margin-right: 0.5rem;
}

.case_list a h3 {
  color: var(--color-primary-p);
  margin: 1.5rem 0;
}

.case_list a p {
  font-weight: 400;
}

@media screen and (max-width:767px) {
  .case_list {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 4rem;
  }
}

/*================================================
 *
 ================================================*/

.cardPost_list {
  display: grid;
  gap: 8rem 3%;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 6rem;
}

.cardPost_list a .thumbnail,
.cardPost_list a .thumbnail img {
  aspect-ratio: 16/9;
  overflow: hidden;
  object-fit: cover;
  border-radius: 0.5rem;
  border-radius: 1rem;
  transition: var(--al04s);
}

/* .cardPost_list a .thumbnail {
  transition: var(--al04s);
  aspect-ratio: 1 /1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 1rem;
} */

.cardPost_list a .thumbnail {
  border: 1px solid var(--color-primary-l-b);
  margin-bottom: 1.5rem;
}

.cardPost_list a:hover .thumbnail {
  transform: scale(1.1);
}

/* .cardPost_list a .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
} */

.cardPost_list a .meta div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.works_list a .meta div {
  gap: 0.5rem;
}

.cardPost_list a .meta .date {
  font-family: var(--inter);
  font-weight: 400;
  margin-right: 0.5rem;
}


.cardPost_list a h3 {
  transition: var(--al04s);
  padding-right: 6rem;
  position: relative;
}

.cardPost_list a h3::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/c-arrow_g.png);
  width: 4rem;
  height: 4rem;
  top: 20%;
  right: 0;
  transform: translateY(-50%);
  transition: var(--al04s);
}

.cardPost_list a:hover h3::before {
  background-image: url(../images/c-arrow_bg.png);
}

.cardPost_list a:hover h3 {
  color: var(--color-primary-b);
}

/* pnav */
.pnav,
.p-pnav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10rem auto 0;
}

.pnav a,
.pnav span {
  display: grid;
  place-content: center;
  width: 4rem;
  aspect-ratio: 1/1;
  border-radius: 100000px;
  line-height: 1;
}

.pnav a:hover,
.pnav span:not(.dots) {
  background-color: var(--color-primary-p);
  color: var(--color-white);
}


.pnav {
  padding: 0 8rem;
}

.pnav .prev,
.pnav .next {
  position: absolute;
  left: 0;
}

.pnav .next {
  left: auto;
  right: 0;
}


/* p-pnav */
.p-pnav {
  gap: 8rem;
  border-top: 1px solid var(--color-gray);
  padding-top: 8rem;
  width: 100%;
}

.p-pnav a {
  color: var(--color-primary-p);
  text-decoration: underline;
}


.p-pnav a:hover {
  color: var(--color-primary-b);
}



.pnav .prev,
.pnav .next {
  text-decoration: none;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/c-arrow_bg.png);
}

.pnav .prev {
  transform: rotate(180deg);
}

.pnav .prev:hover,
.pnav .next:hover {
  background-image: url(../images/c-arrow_b.png);
}


@media screen and (max-width:767px) {
  .cardPost_list {
    gap: 4rem 0;
    grid-template-columns: repeat(1, 1fr);
  }

  .cardPost_list a h3 {
    padding-right: 3.5rem;
  }

  .cardPost_list a h3::before {
    width: 3rem;
    height: 3rem;
  }

  .pnav,
  .p-pnav {
    width: 100%;
    flex-wrap: wrap;
    padding: 0 3rem;
  }

  .p-pnav {
    gap: 1rem;
    padding: 5rem 0 0 0;
  }
}

/*================================================
 * topics
================================================*/
#sec_topics .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#sec_topics:has(.topics_list) .wrap {
  align-items: start;
}

.topics_list.list_type {
  width: 70%;
  display: block;
  margin-top: 0;
}

.topics_list li {
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--color-gray);
}


.topics_list ul a {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 0 0 3rem 0;
  position: relative;
}

.topics_list ul a .thumbnail,
.topics_list ul a .thumbnail img {
  width: 19rem;
  margin: 0;
}

.topics_list ul a .meta {
  width: calc(100% - 22rem);
}


.topics_list .btnArea {
  margin-top: 2rem;
}

@media screen and (max-width:767px) {

  #sec_topics .wrap,
  #sec_topics:has(.topics_list) .wrap {
    flex-wrap: wrap;
    align-items: start;
  }

  .topics_list.list_type {
    width: 100%;
  }

  .topics_list ul a {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .topics_list ul a .thumbnail {
    width: 25%;
  }


  .topics_list ul a .thumbnail img {
    width: 100%;
  }

  .topics_list ul a .meta {
    width: calc(75% - 1.5rem);
  }
}


/*================================================
 *  policy
 ================================================*/
#anc02 .narrow,
#anc03 .narrow {
  border-top: 2px solid var(--color-primary-b);
}

.policy_btn {
  display: flex;
}

.policy_btn {
  gap: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.policy_btn a {
  width: 25rem;
  height: 5rem;
  display: grid;
  place-content: center;
  border-radius: 10000px;
  background: #EDEDED;
  border: 1px solid #DDDDDD;
  color: #ACACAC;
  font-weight: 600;
}

.policy_btn a:hover,
.policy_btn a.current {
  background: var(--color-primary-p);
  color: var(--color-white);
}

#policy .c-hd .ja {
  margin-left: 0;
  padding-left: 2em;
  padding-bottom: 0;
}

#policy .c-hd .ja::before {
  transform: translateX(0);
  left: 0;
  bottom: auto;
  top: 20%;
}


#policy ol li {
  margin-top: 1.5rem;
}

#policy ol li ol,
#policy ol li li {
  list-style: none;
  margin-left: 0;
}

#policy a {
  display: inline-block;
  color: var(--color-primary-p);
  text-decoration: underline;
}

#policy a:hover {
  color: var(--color-primary-b);
}

#policy *,
#thanks p {
  font-weight: 400;
}

#policy p:not(:last-of-type) {
  margin-bottom: 1.5rem;
}

#policy h3 {
  color: var(--color-primary-p);
  font-weight: 700;
  margin-top: 4rem;
}

#policy ul li {
  position: relative;
  padding-left: 1em;
  margin-top: 0.5rem;
}

#policy ul li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}

#policy span {
  margin-top: 1.5rem;
  display: block;
}

#policy span+ul {

  margin-top: 0.5rem;
}

#thanks .btnArea {
  margin-top: 6rem;
}

@media screen and (max-width:767px) {
  .policy_btn {
    gap: 1rem;
    justify-content: start;
    padding: 0 10px;
  }

  .policy_btn a {
    width: calc(50% - 0.5rem);
    font-size: 12px;
  }
}

/*================================================
 *  c-co-nav
 ================================================*/
#co-nav {
  margin-bottom: 10rem;
}

.co-nav_list {
  display: grid;
  gap: 6rem 3%;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 6rem;
}


.co-thumbnail {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.co-thumbnail::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color-primary-b);
  top: 0;
  left: 0;
  opacity: 0.2;
  border-radius: 1rem;
}

.co-nav_list a span {
  font-size: var(--fs24);
  color: var(--color-primary-p);
  transition: var(--al04s);
  position: relative;
  display: block;
  padding-right: 6rem;
  margin-top: 2rem;
}

.co-nav_list a span::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/c-arrow_g.png);
  width: 1.6em;
  height: 1.6em;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: var(--al04s);
}

.co-nav_list a:hover span::before {
  background-image: url(../images/c-arrow_bg.png);
}




@media screen and (max-width:767px) {
  .co-nav_list {
    gap: 2rem 1rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .co-nav_list a span {
    font-size: 1.4rem;
    margin-top: 1rem;
    padding-right: 2.5rem;
  }
}


/*================================================
 *  
 ================================================*/
/* topCompany_qualified */
.topCompany_qualified {
  max-width: 91rem;
  background: #E7EBF9;
  padding: 5rem;
  border-radius: 1rem;
  margin: 8rem auto 0;
}

.topCompany_qualified ul {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(7, 1fr);

}

.topCompany_qualified ul li {
  border-radius: 0.5rem;
  overflow: hidden;
  aspect-ratio: 1/1;
  transition: all .4s;
  border: 1px solid transparent;
}

.topCompany_qualified ul li:hover {
  border: 1px solid var(--color-primary-p);
  border-radius: 0.5rem;
}

.topCompany_qualified ul li a:hover {
  opacity: .6;

}

@media screen and (max-width:767px) {
  .topCompany_qualified {
    max-width: unset;
    min-width: unset;
    width: 100%;
    margin: 6rem auto;
    padding: 2rem;
  }

  .topCompany_qualified ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*================================================
 *  
 ================================================*/

@media screen and (max-width:767px) {}