@charset "UTF-8";

@font-face {
  font-family: 'notosansjp';
  font-weight: 100;
  src: url("../../fonts/notosans/NotoSansJP-Thin.ttf") format('truetype');
}
@font-face {
  font-family: 'notosansjp';
  font-weight: 200;
  src: url("../../fonts/notosans/NotoSansJP-ExtraLight.ttf") format('truetype');
}
@font-face {
  font-family: 'notosansjp';
  font-weight: 300;
  src: url("../../fonts/notosans/NotoSansJP-Light.ttf") format('truetype');
}
@font-face {
  font-family: 'notosansjp';
  font-weight: 400;
  src: url("../../fonts/notosans/NotoSansJP-Regular.ttf") format('truetype');
}
@font-face {
  font-family: 'notosansjp';
  font-weight: 500;
  src: url("../../fonts/notosans/NotoSansJP-Medium.ttf") format('truetype');
}
@font-face {
  font-family: 'notosansjp';
  font-weight: 600;
  src: url("../../fonts/notosans/NotoSansJP-SemiBold.ttf") format('truetype');
}
@font-face {
  font-family: 'notosansjp';
  font-weight: 700;
  src: url("../../fonts/notosans/NotoSansJP-Bold.ttf") format('truetype');
}
@font-face {
  font-family: 'notosansjp';
  font-weight: 800;
  src: url("../../fonts/notosans/NotoSansJP-ExtraBold.ttf") format('truetype');
}
@font-face {
  font-family: 'notosansjp';
  font-weight: 900;
  src: url("../../fonts/notosans/NotoSansJP-Black.ttf") format('truetype');
}
html {
  font-size: 10px;
  width: 100%;
}
body {
  font-size: 1.6rem;
  line-height: 1.6;
  font-family: 'notosansjp', sans-serif;
  font-weight: 400;
  color: #000;
}
.inner {
  width: 100%;
  max-width: 120rem;
  margin: auto;
  padding: 0 6rem;
}
.only_sp {
  display: none!important;
}
@media screen and (max-width: 999px) {
  .inner {
    max-width: 100%;
    padding: 0 2rem;
  }
  .only_pc {
    display: none!important;
  }
  .only_sp {
    display: block!important;
  }
}


/* ---------------------------------
  header
--------------------------------- */
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background-color: #fff;
  height: 8.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  border-bottom: .1rem solid #000;
}
.header_logo {
  display: flex;
  column-gap: 3.2rem;
  align-items: center;
}
.header_logo a:hover {
  opacity: .5;
}
.header_logo img {
  width:  14.7rem;
}
.header_logo p {
  font-size: 1.4rem;
}
.header_link {
  display: flex;
  align-items: center;
  column-gap: 4rem;
}
.header_page_link ul:not(.card_links) {
  display: flex;
  column-gap: 3.2rem;
}
.header_page_link li {
  position: relative;
  font-weight: 500;
}
 .header_page_link li:has(.sub_nav) {
  display: flex;
  align-items: center;
  column-gap: 1.2rem;
}
.header_page_link li:has(.sub_nav)::after {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  border-top: .2rem solid #000;
  border-right:.2rem solid #000;
  transform: rotate(135deg);
  margin-top: -.5rem;
}
.header_page_link .sub_nav {
  display: none;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 4rem;
}
.header_page_link .sub_nav ul {
  background-color: #000;
  padding: 2.4rem 2rem;
  color: #fff;
  border-radius: 1rem;
  width: 20rem;
  flex-flow: column;
}
.header_page_link .entry_block {
  display: none;
}
@media screen and (min-width: 1000px) {
  .header_page_link li:has(.sub_nav):hover .sub_nav {
    display: block;
  }
}
.header_page_link .sub_nav li:not(:last-child) {
  margin-bottom: 1.6rem;
}
.header_link a:not(.entry_btn):hover {
  opacity: .5;
}
.header_link .entry_btn {
  width: 14rem;
}
.sp_menu_btn {
  display: none;
}
.header_page_link.sp_menu {
  display: none;
}
@media screen and (max-width: 1230px) {
  header {
    height: 6.4rem;
    padding: 1.2rem 1.6rem;
  }
  .header_logo {
    column-gap: 1.6rem;
  }
  .header_logo img {
    width:  10rem;
  }
  .header_logo p {
    font-size: 1rem;
  }
  .header_link {
    column-gap: 1.2rem;
  }
  .header_page_link.pc_menu {
    display: none;
  }
  .header_page_link.sp_menu {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 90;
    transform: translateY(-100%);
    transition: transform .5s;
    overflow: auto;
    max-height: 100dvh;
    display: block;
  }
  .header_page_link.active {
    transform: translateY(0);
    top: 6.4rem
  }
  .header_page_link ul:not(.card_links) {
    flex-flow: column;
  }
  .header_page_link  li {
    font-weight: 700;
    background-color: #fff;
    border-bottom: .1rem solid #000;
  }
  .header_page_link li .parent_category {
    padding: 1.6rem 6rem 1.6rem 2rem;
    display: block;
    width: 100%;
  }
  .header_page_link li:has(.sub_nav) {
    align-items: flex-start;
    flex-direction: column;
  }
  .header_page_link li:has(.sub_nav)::after {
    display: none;
  }
  .header_page_link li:has(.sub_nav) .parent_category {
    position: relative;
  }
  .header_page_link li:has(.sub_nav) .parent_category::before,
  .header_page_link li:has(.sub_nav) .parent_category::after {
    content: "";
    position: absolute;
    top: 50%;
    width: .2rem;
    height: 1.4rem;
    background-color: #000;
    right: 2.5rem;
  }
  .header_page_link li:has(.sub_nav) .parent_category::after {
    transform: translateY(-50%) rotate(90deg);
  }
  .header_page_link li:has(.sub_nav) .parent_category::before {
    transform: translateY(-50%);
  }
  .header_page_link li:has(.sub_nav).active .parent_category::before {
    display: none;
  }
  .header_page_link .entry_block {
    display: block;
  }
   .header_page_link .sub_nav {
    display: none;
    position: relative;
    top: 0;
    left: 0;
    transform: translateX(0);
    padding-top: 0;
    width: 100%;
  }
  .header_page_link .sub_nav ul {
    border-radius: 0;
    width: 100%;
    padding: 2rem;
  }
  .header_page_link .sub_nav li {
    background-color: transparent;
    font-size: 1.4rem;
    font-weight: 400;
    padding: 0;
  }
  .header_page_link .entry_block::before {
    display: none;
  }
  .header_page_link .entry_block {
    padding: 4rem 0;
  }
  .header_page_link .entry_title {
    margin-bottom: 1.6rem;
  }
  .header_page_link .entry_title img {
    width: 13.7rem;
  }
  .header_page_link .entry_block .card_links::before,
  .header_page_link .entry_block .card_links::after {
    width: 8rem;
    height: 6.5rem;
  }
  .header_page_link .entry_block .card_links::before {
    left: 1.6rem;
    transform: translateY(calc(-100% + 1.3rem));
  }
  .header_page_link .entry_block .card_links::after {
    right: 1.6rem;
  }
  .header_page_link .entry_block li {
    border-bottom: 0;
    font-weight: 500;
  }
  .header_page_link_sp .entry_block .card_links li a {
    padding: 2.4rem 0 4rem;
  }
  .header_link .entry_btn {
    display: none;
  }
  .sp_menu_btn {
    display: flex;
    flex-flow: column;
    row-gap: .7rem;
    position: relative;
    width: 4rem;
    height: 4rem;
    cursor: pointer;
    padding: 1rem .8rem;
  }
  .sp_menu_btn span {
    left: 0;
    width: 100%;
    height: .2rem;
    background-color: #000;
    display: block;
  }
  .sp_menu_btn, .sp_menu_btn span {
    transition: all .5s;
    box-sizing: border-box;
  }
  .sp_menu_btn.active span:nth-of-type(1) {
    transform: rotate(45deg);
    margin-top: .9rem;
  }
  .sp_menu_btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .sp_menu_btn.active span:nth-of-type(3) {
    transform: rotate(-45deg);
    margin-top: -1.8rem;
  }
  .sp_menu_bg {
    height: 100dvh;
    position: fixed;
    background-color: rgba(0,0,0,.5);
    display: none;
    z-index: 80;
    top: 0;
    left: 0;
    width: 100%;
  }
}


/* ---------------------------------
  footer
--------------------------------- */
footer {
  position: relative;
  z-index: 20;
  background-color: #fff;
}
.footer_top {
  border-bottom: .1rem solid #000;
}
.footer_top_content {
  padding-top: 4rem;
  border-top: .1rem solid #000;
  display: flex;
  position: relative
}
.footer_top_content::before,
.footer_top_content::after {
  content: "";
  width: 4rem;
  position: absolute;
  height: calc(100% - 4rem);
  top: 4rem;
}
.footer_top_content::before {
  border-right: .1rem solid #000;
  left: 0;
}
.footer_top_content::after {
  border-left: .1rem solid #000;
  right: 0;
}
.footer_top .logo_block {
  padding: 4rem 4rem 4rem 8rem;
  border-top: .1rem solid #000;
  width: 100%;
}
.footer_top .logo_block .company_logo {
  width: 29.4rem;
  margin-bottom: 4rem;
  display: inline-block;
}
.footer_top .logo_block .company_logo:hover {
  opacity: .5;
}
.footer_top .logo_block .company_logo img {
  width: 100%;
}
.footer_top .logo_block .sns_icon {
  display: flex;
  column-gap: 2rem;
}
.footer_top .logo_block .sns_icon li {
  width: 4rem;
}
.footer_top .logo_block .sns_icon li a:hover {
  opacity: .5;
}
.footer_top .link_block {
  flex-shrink: 0;
  border-top: .1rem solid #000;
  border-left: .1rem solid #000;
  padding: 4rem 10.4rem 10rem 6.4rem;
  display: flex; 
  column-gap: 4rem;
}
.footer_top .link_block ul {
  min-width: 14rem;
}
.footer_top .link_block .main_category {
  font-weight: 700;
}
.footer_top .link_block .main_category:not(:last-child) {
  margin-bottom: 1.6rem;
}
.footer_top .link_block .sub_category {
  font-weight: 400;
  font-size: 1.4rem;
}
.footer_top .link_block .sub_category li:not(:last-child) {
  margin-bottom: .8rem;
}
.footer_top .link_block a:hover {
  opacity: .5;
}
.footer_bottom {
  background-color: #F4F2EA;
  padding: 2rem 4rem 4rem;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.footer_bottom .footer_bottom_link {
  display: flex;
  font-size: 1.2rem;
  line-height: 1.4;
  flex-wrap: wrap;
  column-gap: 1.6rem;
  row-gap: 1.2rem;
}
.footer_bottom .footer_bottom_link li a:hover {
  opacity: .5;
}
.footer_bottom .footer_bottom_link li:not(:last-child) {
  display: flex;
  align-items: center;
  column-gap: 1.6rem;
}
.footer_bottom .footer_bottom_link li:not(:last-child)::after {
  content: "｜";
}
.footer_bottom .link_newwindow {
  display: flex;
  align-items: center;
  column-gap: .8rem;
}
.footer_bottom .link_newwindow::after {
  content: "";
  background-image: url("../../images/common/icon_newwiindow.svg");
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
}
.footer_bottom .copy_right {
  font-size: 1.2rem;
  line-height: 1.4rem;
  flex-shrink: 0;
  padding-left: 2rem;
}
.footer_bottom .page_top {
  width: 6.4rem;
  height: 6.4rem;
  z-index: 50;
  position: fixed;
  bottom: 2.4rem;
  right: 6.4rem;
  cursor: pointer;
}
.footer_bottom .page_top.bottom {
  position: absolute;
  bottom: auto;
  top: -2.4rem;
  transform: translateY(-100%);
}
@media screen and (max-width: 1230px) {
  .footer_top_content {
    flex-flow: column;
  }
  .footer_top_content::before,
  .footer_top_content::after {
    width: 2.4rem;
    height: calc(100% - 4rem);
  }
  .footer_top .logo_block {
    padding: 4rem 2.4rem 8rem 5.6rem;
    border-top: .1rem solid #000;
    width: 100%;
  }
  .footer_top .logo_block .company_logo {
    width: 22rem;
  }
  .footer_top .link_block {
    border-left: 0;
    padding: 0 2.4rem 9.8rem;
    display: flex; 
    flex-flow: column;
    border-top: 0;
  }
  .footer_top .link_block ul {
    min-width: 0;
  }
  .footer_top .link_block > ul:first-child {
    border-top: .1rem solid #000;
  }
  .footer_top .link_block .main_category {
    border-bottom: .1rem solid #000;
  }
  .footer_top .link_block p.main_category {
    padding: 1.6rem 2rem;
    position: relative;
  }
  .footer_top .link_block p.main_category:before,
  .footer_top .link_block p.main_category::after {
   content: "";
    position: absolute;
    top: 50%;
    width: .2rem;
    height: 1.4rem;
    background-color: #000;
    right: 2.5rem;
  }
  .footer_top .link_block p.main_category::after {
    transform: translateY(-50%) rotate(90deg);
  }
  .footer_top .link_block p.main_category::before {
    transform: translateY(-50%);
  }
  .footer_top .link_block p.main_category.active::before {
    display: none;
  }
  .footer_top .link_block li.main_category a {
    display: block;
    padding: 1.6rem 2rem;
  }
  .footer_top .link_block .main_category:not(:last-child) {
    margin-bottom: 0;
  }
  .footer_top .link_block .sub_category {
    padding: 2rem;
    background-color: #000;
    color: #fff;
    display: none;
  }
  .footer_top .link_block a:hover {
    opacity: .5;
  }
  .footer_bottom {
    background-color: #F4F2EA;
    padding: 2rem 2.4rem;
    display: flex;
    justify-content: space-between;
    flex-flow: column;
    row-gap: 4rem;
  }
  .footer_bottom .copy_right {
    font-size: 1rem;
    padding-left: 0;
  }
  .footer_bottom .page_top {
    width: 5rem;
    height: 5rem;
    right: 4rem;
  }
}


/* ---------------------------------
  page_title
--------------------------------- */
.page_title {
  margin-top: 8.2rem;
  height: 21rem;
  line-height: 1.4;
  font-size: 2.4rem;
  font-weight: 700;
  display: flex;
  flex-flow: column;
  row-gap: 2rem;
  align-items: center;
  justify-content: center;
  border-bottom: .1rem solid #000;
  position: relative;
  z-index: 20;
  background-color: #fff;
}

@media screen and (max-width: 1230px) {
  .page_title {
    margin-top: 6.4rem;
  }
}
@media screen and (max-width: 999px) {
  .page_title {
    height: 16rem;
    font-size: 2rem;
    row-gap: 1.2rem;
  }
  .page_title img {
    width: auto!important;
    height: 4rem;
  }
}


/* ---------------------------------
  pankuzu
--------------------------------- */
.pankuzu {
  background-color: #84D6E6;
  border-bottom: .1rem solid #000;
  font-size: 1.2rem;
  line-height: 1.4;
  position: relative;
  z-index: 20;
}
.pankuzu ul {
  display: flex;
  column-gap: .8rem;
  padding: .8rem 0 .8rem 8rem;
  position: relative;
}
.pankuzu ul::before {
  content: "";
  background-image: url("../../images/common/book_mark.svg");
  width: 5rem;
  height: 10.8rem;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 1.2rem;
  top: -2rem;
  z-index: 10;
}
.pankuzu li {
  display: flex;
  column-gap: .8rem;
  align-items: center;
}
.pankuzu ul li:not(:last-child)::after {
  content: "";
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: .6rem;
  height: .7rem;
  background-color: #000;
}
.pankuzu a {
  text-decoration: underline;
  text-underline-offset: .3rem;
}
@media screen and (max-width: 999px) {
  .pankuzu .inner {
    padding: 0 2.4rem;
  }
  .pankuzu ul {
    padding: .8rem 0 .8rem 4rem;
  }
  .pankuzu ul::before {
    content: "";
    background-image: url("../../images/common/book_mark.svg");
    width: 3.4rem;
    height: 7.3rem;
    left: -.7rem;
    top: -1rem;
    z-index: 20;
  }
}


/* ---------------------------------
  main_content
--------------------------------- */
.main_content {
  background-color: #f4f2ea;
  background-image: linear-gradient(90deg, rgba(0,0,0,.15) 0.05rem, transparent 0.05rem), linear-gradient(rgba(0,0,0,.15) 0.05rem, transparent 0.05rem);
  background-position: 2.5rem 2.5rem;
  background-size: 5rem 5rem;
  padding: 8rem 0 calc(10rem + 8.1vw);;
  position: relative;
}
.main_content .side_meassage {
  height: 100dvh;
  width: 4rem;
  position: fixed;
  top: 0;
  font-size: 1.4rem;
  background-color: #F4F2EA;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  letter-spacing: .5rem;
  text-orientation: sideways;
  writing-mode: vertical-rl;
  border-right: .1rem solid #000;
  z-index: 10;
}
.main_content .side_meassage.left {
  left: 0;
}
.main_content .side_meassage.right {
  right: 0;
  transform: rotate(180deg);
}
.main_content .side_meassage span {
  color: #FF6766;
}
@media screen and (max-width: 999px) {
  .main_content {
    padding: 4rem 2.4rem calc(6rem + 9vw);
    position: relative;
  }
  .main_content .side_meassage {
    width: 2.4rem;
    font-size: 1rem;
  }
  .main_content .side_meassage.at_bottom {
    height: 50dvh;
  }
}


/* ---------------------------------
  lead_text
--------------------------------- */
.lead_text {
  font-weight: 500;
  line-height: 2;
  margin-bottom: 4rem;
  text-align: center;
  padding: 0 2rem;
}
.lead_text span {
  font-weight: 700;
  font-size: 2rem;
  color: #FF6766;
}


/* ---------------------------------
  box
--------------------------------- */
.box_white {
  background-color: #fff;
  border-radius: 3rem;
  padding: 4rem 8rem;
  border: .1rem solid #000;
}
@media screen and (max-width: 999px) {
  .box_white {
    border-radius: 0;
    padding: 1.6rem 2rem;
    border-right: 0;
    border-left: 0;
    width: calc(100% + 4rem);
    transform: translateX(-2rem);
  }
}


/* ---------------------------------
  entry_block
--------------------------------- */
.entry_block {
  background-color: #84D6E6;
  position: relative;
  padding: 1.6rem 0 4rem;
  font-weight: 500;
  z-index: 20;
}
.entry_block::before {
  content: "";
  background-image: url("../../images/common/entory_top_img.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  width: 100%;
  height: 8.1vw;
  position: absolute;
  top: -8.1vw;
  z-index: 20;
}
.entry_title {
  margin-bottom: 2rem;
  text-align: center;
}
.entry_title img {
  width: 27.4rem;
}
.entry_lead_text {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 20;
}
.entry_block .card_links::before,
.entry_block .card_links::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  z-index: 30;
  top: 0;
  max-width: 32rem;
  width: 20%;
}
.entry_block .card_links::before {
  background-image: url("../../images/common/entry_img01.svg");
  height: 25.4rem;
  left: min(6.4rem, 3%);
  transform: translateY(calc(-100% + 5.2rem));
}
.entry_block .card_links::after {
  background-image: url("../../images/common/entry_img02.svg");
  height: 25.9rem;
  right: min(6.4rem, 3%);
  transform: translateY(calc(-100% - .1rem));
}
.entry_block .card_links li {
  width: 50%;
  font-size: 2rem;
}
.entry_block .card_links li a {
  row-gap: 1.6rem;
  padding: 6.4rem 0;
}
.entry_block .card_links li:hover a {
  padding-left: .1rem;
  padding: 6.2rem 0 6.2rem .1rem;
}
.entry_block .card_links li:first-child:hover {
  border-left: 0;
}
.entry_block .card_links li:last-child:hover {
  border-left: .1rem solid #000;
  border-right: 0;
  padding-right: .2rem;
}
.entry_block .card_links li:last-child:hover::before {
  right: 0rem;
  bottom: -.1rem;
}
.entry_block .card_links li:last-child:hover::after {
  right: .8rem;
}
.entry_block .card_links li img {
  height: 8rem;
}
@media screen and (max-width: 999px) {
  .entry_block {
    background-color: #84D6E6;
    position: relative;
    padding: 3.2rem 0 4rem;
    font-size: 1.4rem;
  }
  .entry_block::before {
    background-image: url("../../images/common/entory_top_img_sp.svg");
    height: 9vw;
    top: -8.8vw;
  }
  .entry_title img {
    width: 18.3rem;
  }
  .entry_lead_text {
    margin-bottom: 11rem;
    font-size: 1.4rem;
  }
  .entry_block .card_links {
    font-size: 1.2rem;
    font-weight: 500;
  }
  .entry_block .card_links::before,
  .entry_block .card_links::after {
    width: 11rem;
    height: 9rem;
  }
  .entry_block .card_links::before {
    left: 4rem;
    transform: translateY(calc(-100% + 1.8rem));
  }
  .entry_block .card_links::after {
    right: 4rem;
  }
  .entry_block .card_links li {
    font-size: 1.2rem;
  }
  .entry_block .card_links li a {
    row-gap: .8rem;
    padding: 4rem 0;
  }
  .entry_block .card_links li:hover a {
    padding: 3.8rem 0;
  }
  .entry_block .card_links li:last-child:hover::after {
    right: .5rem;
  }
  .entry_block .card_links li img {
    height: 4.5rem;
  }
}


/* ---------------------------------
  card_link
--------------------------------- */
.card_link {
  border: .1rem solid #000;
  margin: auto;
  display: block;
  padding: 3.2rem 0;
}
.card_links {
  border-top: .1rem solid #000;
  border-bottom: .1rem solid #000;
  line-height: 1.4;
  position: relative;
  display: flex;
}
.card_link,
.card_links li {
  background-color: #fff;
  text-align: center;
  position: relative;
}
.card_links li:not(:last-child) {
  border-right: .1rem solid #000;
}
.card_link:hover,
.card_links li:hover {
  background-color: #FEE177;
}
.card_link:hover {
  border: .2rem solid #000;
  padding: 3.1rem 0;
}
.card_links li:hover {
  border-top: .1rem solid #000;
  border-bottom: .1rem solid #000;
}
.card_links li:hover {
  border-right: .2rem solid #000;
  border-left: .1rem solid #000;
}
.card_links li:last-child:hover {
  border-right: .1rem solid #000;
}
.card_links li a {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.card_link::before,
.card_links li::before {
  content: "";
  position: absolute;
  bottom: -.1rem;
  right: 0;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background-color: #000;
  width: 6rem;
  height: 6rem;
}
.card_link:hover::before,
.card_links li:hover::before {
  bottom: -.2rem;
  width: 5.9rem;
  height: 5.9rem;
}
.card_link::after,
.card_links li::after {
  content: "";
  background-image: url("../../images/common/icon_arrow.svg");
  width: 1.6rem;
  height: 1.6rem;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: .8rem;
  right: .8rem;
}
.card_link.newwindow::after,
.card_links li.newwindow::after {
  background-image: url("../../images/common/icon_newwiindow_yellow.svg");
}
.card_link:hover::after,
.card_links li:hover::after {
  bottom: .7rem;
  right: .7rem;
}
.card_links .icon_newwindow {
  display: flex;
  align-items: center;
  column-gap: 1.6rem;
  justify-content: center;
}
.card_links .icon_newwindow::after {
  content: "";
  background-image: url("../../../common/images/icon_newwiindow.svg");
  width: 2rem;
  height: 2rem;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 999px) {
  .card_link::before,
  .card_links li::before {
    content: "";
    position: absolute;
    bottom: -.1rem;
    right: 0;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    background-color: #000;
    width: 4rem;
    height: 4rem;
  }
  .card_link:hover::before,
  .card_links li:hover::before {
    width: 3.9rem;
    height: 3.9rem;
  }
  .card_link::after,
  .card_links li::after {
    width: 1.1rem;
    height: 1.1rem;
    bottom: .5rem;
    right: .5rem;
  }
  .card_link:hover::after,
  .card_links li:hover::after {
    bottom: .4rem;
    right: .4rem;
  }
}


/* ---------------------------------
  other_page_link
--------------------------------- */
.other_page_link {
  display: flex;
  column-gap: 4rem;
  margin-top: 4rem;
  justify-content: center;
}
.other_page_link li {
  width: 22rem;
}
.other_page_link li a {
  background-color: #000;
  color: #fff;
  border-radius: 100rem;
  font-weight: 500;
  font-size: 1.4rem;
  text-align: center;
  padding: 1.4rem 1.6rem;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.other_page_link li a:hover {
  background-color: #FEE177;
  color: #000;
  border: .1rem solid #000;
  padding: 1.3rem 1.6rem;
}
@media screen and (max-width: 999px) {
  .other_page_link {
    display: flex;
    flex-flow: column;
    row-gap: 2.4rem;
    align-items: center;
  }
  .other_page_link li {
    width: 24rem;
  }
}


/* ---------------------------------
  people_list
--------------------------------- */
.people_list li {
  width: 33.3rem;
}
.people_list li a {
  display: block;
  border: .3rem solid #000;
  padding: 1rem;
  border-radius: 100rem;
  background-color: #fff;
  height: 100%;
}
.people_list li a:hover {
  background-color: #FEE177;
}
.people_list .message_content {
  border: .1rem solid #000;
  border-radius: 100rem;
  overflow: hidden;
  text-align: center;
  display: block;
  height: 100%;
}
.people_list .message_content .people_number {
  padding: 2.4rem 0 1.6rem;
  color: #999;
  font-weight: 500;
  border-bottom: .1rem solid #000;
}
.people_list .message_content .people_number span {
  color: #000;
  font-weight: 700;
  font-size: 2.4rem;
  display: block;
  line-height: 1.4;
}
.people_list .message_content .people_job {
  padding: 1.6rem 0 .8rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
}
.people_list .message_content .people_detail {
  padding-bottom: 1.6rem;
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: center;
}
.people_list .message_content .people_detail .initial {
  font-weight: 700;
  border-right: .1rem solid #000;
  padding-right: 1.6rem;
  margin-right: 1.6rem;
}
.people_list .message_content .people_detail .year::after {
  content: "｜";
}
.people_list .message_content img {
  border-top: .1rem solid #000;
  border-bottom: .1rem solid #000;
}
.people_list a .message_content .img_hover {
  display: none;
}
.people_list a:hover .message_content .img_normal {
  display: none;
}
.people_list a:hover .message_content .img_hover {
  display: block;
}
.people_list .message_content .people_message {
  padding: 1.6rem 4rem 6.4rem;
  font-weight: 500;
  font-size: 1.8rem;
}

@media screen and (max-width: 999px) {
  .people_list li {
    width: 24.4rem;
  }
  .people_list .message_content .people_number {
    padding: 1.2rem 0;
  }
  .people_list .message_content .people_number span {
    font-size: 2rem;
  }
  .people_list .message_content .people_job {
    padding: 1.2rem 0.4rem .8rem;
    font-size: 1.6rem;
  }
  .people_list .message_content .people_detail {
    font-size: 1.2rem;
  }
  .people_list .message_content .people_message {
    padding: 1.6rem 2.4rem 6.4rem;
    font-size: 1.4rem;
  }
}


/* ---------------------------------
  btn
--------------------------------- */
.btn_l {
  width: 36rem;
  padding: 2.4rem 4.2rem;
  background-color: #000;
  display: block;
  color: #fff;
  margin: auto;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  position: relative;
  border-radius: 100rem;
}
.btn_l::after {
  content: "";
  background-image: url("../../images/common/icon_arrow.svg");
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
}
.btn_l.back::after {
  transform: translateY(-50%) rotate(180deg);
  left: 1.6rem;
}
.btn_l:hover {
  background-color: #FEE177;
  color: #000;
  padding: 2.2rem 4.2rem;
  border: .2rem solid #000;
}
.btn_l:hover::after {
  background-image: url("../../images/common/icon_arrow_black.svg");
}
.btn_m {
  color: #fff;
  background-color: #000;
  border-radius: 100rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 1.4rem 0;
  text-align: center;
  display: block;
  width: 18rem;
}
.btn_m:hover {
  color: #000;
  background-color: #FEE177;
  border: .2rem solid #000;
  padding: 1.2rem 0;
}

@media screen and (max-width: 999px) {
  .btn_l {
    width: 26rem;
    max-width: calc(100% - 4rem);
  }
}

