@charset "UTF-8";

/* common
========================================== */

:root {
  --color-primary: #333;
  --color-black: #000;
  --color-black-rgb: 0, 0, 0;
  --color-white: #fff;
  --color-white-rgb: 255, 255, 255;
  --color-standard-red: #DC010B;
  --color-standard-blue: #00479E;
  --color-standard-blue-rgb: 0, 71, 158;
  --color-lightblue: #5493FF;
  --color-whiteblue: #E5F3FF;
  --color-beige: #F6F2EB;
  --color-gray: #808080;
  --color-gray-2: #ccc;
  --color-pink: #FFE6E7;
  --color-category-orange: #F29100;
  --color-category-blue: #5493FF;
  --color-category-red: #DC010B;
  --color-error: #FFE6E6;
}

* {
	box-sizing: border-box;
}
a, button {
	transition: 0.2s ease-in-out;
}
img {
	height: auto;
	max-width: 100%;
}

p:empty {
  display: none !important;
}

/* PC */
@media only screen and (min-width: 769px) {
  a, button {
    cursor: pointer;
  }
  a:hover, button:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
/* SP */
@media only screen and (max-width: 768px) {
}


/* header
========================================== */
#l-header {
  background: var(--color-white);
  height: 72px;
  letter-spacing: 0.08em;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
  padding-left: 20px;
}
.l-header__logo {
  width: 140px;
}
.l-header__logo a {
  display: block;
}
.l-header__menu_inner {
  display: flex;
}
.l-header__navigation nav > ul {
  display: flex;
  flex-wrap: wrap;
}
.l-header__navigation nav > ul > li > span > a,
.l-header__navigation nav > ul > li > span > button {
  color: var(--color-primary);
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.l-header__navigation nav > ul > li.category-parent.is-open > span > button,
.l-header__navigation nav > ul > li.category-parent > span > button:hover {
  color: var(--color-standard-red);
  opacity: 1;
}
.l-secondary-menu__heading {
  border-left: 8px solid var(--color-standard-red);
  color: var(--color-white);
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  padding-left: 12px;
}
.l-header__navigation .l-secondary-menu__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.l-header__navigation .l-secondary-menu__list > li {
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 32px;
}
.l-header__navigation .l-secondary-menu__list > li a {
  color: var(--color-white);
  display: inline-block;
}
.l-header__navigation .l-secondary-menu__list > li > a span {
  display: inline-block;
  padding-right: 24px;
  position: relative;
}
.l-header__navigation .l-secondary-menu__list > li > a span:after {
  background-image: url(/common/images/icon_arrow_lightblue_right.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  content: "";
  height: 16px;
  position: absolute;
  top: 3px;
  right: 0;
  width: 16px;
}
.l-header__submenu {
  height: 100%;
  width: 252px;
}
.l-header__submenu > ul {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.l-header__submenu > ul > li a {
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: bold;
  height: 100%;
  line-height: 1.3;
}
.l-header__submenu > ul > li.recruit a {
  background: var(--color-standard-blue);
}
.l-header__submenu > ul > li.contact a {
  background: var(--color-standard-red);
}
.l-header__submenu > ul > li a span {
  position: relative;
}
.l-header__search_box {
  position: relative;
  width: 100%;
}
.l-header__search_box form input[type="text"] {
  background-color: var(--color-white);
  border: none;
  font-size: 1.4rem;
  height: 36px;
  padding: 12px 36px 12px 12px;
  width: 100%;
}
.l-header__search_box form input[type="text"]:focus {
  outline: none;
}
.l-header__search_box form input[type="submit"] {
  background-color: var(--color-white);
  border-radius: 50%;
  background-image: url(/common/images/icon_search.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 18px auto;
  color: transparent;
  cursor: pointer;
  height: 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2px;
  width: 32px;
}
/* PC */
@media only screen and (min-width: 769px) {
  #l-header {
    min-width: 1280px;
  }
  .l-header__inner {
    border-bottom: 1px solid var(--color-gray-2);
  }
  .l-header__menu {
    display: block !important;
    height: 100%;
    max-width: calc(100% - 180px);
    margin-left: auto;
  }
  .l-header__menu_inner {
    justify-content: flex-end;
    align-items: center;
    height: 100%;
  }
  .l-header__navigation nav > ul {
    justify-content: flex-end;
    align-items: center;
  }
  .l-header__navigation nav > ul > li:nth-of-type(n+2) {
    margin-right: 32px;
  }
  .l-header__navigation nav > ul > li.category-parent > span {
    cursor: pointer;
    display: block;
    position: relative;
    margin-top: 12px;
    padding-bottom: 12px;
  }
  .l-header__navigation nav > ul > li.category-parent > span:after {
    background-image: url(/common/images/icon_arrow_nav.svg);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 100% auto;
    content: "";
    height: 6px;
    margin-inline: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
	  transition: 0.2s ease-in-out;
    width: 12px; 
  }
  .l-header__navigation nav > ul > li.category-parent.is-open > span:after {
    transform: rotate(180deg);
    transform-origin: center center;
  }

  .l-header__navigation nav > ul > li > span >a:hover {
    color: var(--color-standard-red);
    opacity: 1;
  }

  .l-header__navigation .l-secondary-menu {
    background: rgba(var(--color-standard-blue-rgb), 0.9);
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    padding: 24px 20px 40px;
    width: 100%;
  }
  .l-header__navigation .l-secondary-menu__inner {
    margin-inline: auto;
    padding-right: 46px;
    position: relative;
    width: 820px;
  }
  .l-header__navigation .l-secondary-menu__list {
    margin-right: -80px;
    padding-left: 20px;
  }
  .l-header__navigation .l-secondary-menu__list > li {
    margin-right: 80px;
  }
  .l-header__navigation .company .l-secondary-menu__list {
    margin-right: 0;
  }
  .l-header__navigation .company .l-secondary-menu__list > li {
    margin-right: 0;
    width: 25%;
  }
  .l-header__navigation .l-secondary-menu__closeButton {
    height: 32px;
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    z-index: 1;
  }
  .l-header__navigation .l-secondary-menu__closeButton button {
    border-radius: 50%;
    background: var(--color-white);
    background-image: url(/common/images/icon_close_blue.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 16px auto;
    color: transparent;
    cursor: pointer;
    font-size: 0;
    height: 100%;
    vertical-align: top;
    width: 100%;
  }
  /*
  .l-header__navigation nav > ul > li:hover .l-secondary-menu {
    display: block;
  }
  */
  .l-header__navigation .l-header__navigation_banner {
    display: none;
  }
  .l-header__submenu > ul > li.recruit {
    width: calc(100 / 252 * 100%);
  }
  .l-header__submenu > ul > li.recruit a span {
    display: block;
  }
  .l-header__submenu > ul > li.contact {
    width: calc(151 / 252 * 100%);
  }
  .l-header__submenu > ul > li.contact a span {
    padding-left: 28px;
  }
  .l-header__submenu > ul > li.contact a span:before {
    background-image: url(/common/images/icon_mail.svg);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 100% auto;
    content: "";
    height: 24px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
  }
  .l-header__search_triggerButton {
    height: 32px;
    margin-right: 20px;
    width: 32px;
  }
  .l-header__search_triggerButton button {
    border-radius: 50%;
    background-color: var(--color-white);
    background-image: url(/common/images/icon_search.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 18px auto;
    cursor: pointer;
    color: transparent;
    font-size: 0;
    height: 100%;
    opacity: 1 !important;
    vertical-align: top;
    width: 100%;
  }
  .l-header__search_triggerButton.is-open button {
    background-color: var(--color-standard-blue);
    background-image: url(/common/images/icon_search_white.svg);
  }
  .l-header__search_body {
    background: rgba(var(--color-standard-blue-rgb), 0.9);
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    padding: 24px 20px;
    width: 100%;
  }
  .l-header__search_body:before {
    border-color: transparent transparent var(--color-standard-blue) transparent;
    border-style: solid;
    border-width: 0 8px 12px 8px;
    content: "";
    height: 0;
    position: absolute;
    top: -12px;
    right: 280px;
    width: 0;
    z-index: 1;
  }
  .l-header__search_inner {
    margin-inline: auto;
    padding-right: 46px;
    position: relative;
    width: 820px;
  }
  .l-header__search_closeButton {
    background: var(--color-white);
    border-radius: 50%;
    overflow: hidden;
    height: 32px;
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
  }
  .l-header__search_closeButton button {
    background-image: url(/common/images/icon_close_blue.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 16px auto;
    color: transparent;
    cursor: pointer;
    font-size: 0;
    height: 100%;
    vertical-align: top;
    width: 100%;
  }
  #l-nav-trigger {
    display: none;
  }
  #l-header + #l-overlay {
    height: calc(100% - 72px);
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 72px;
    left: 0;
	  transition: 0.2s ease-in-out;
    width: 100%;
    z-index: -1;
  }
  #l-header.overlay-open + #l-overlay {
    opacity: 1;
    pointer-events: initial;
    z-index: 99;
  }
}
/* SP */
@media only screen and (max-width: 768px) {
  #l-header {
    height: 60px;
  }
  #l-header:after {
    background: linear-gradient(to bottom, rgba(0,71,158,0.08), rgba(0,71,158,0));
    content: "";
    height: 16px;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 0;
  }
  .l-header__inner {
    padding-left: 12px;
  }
  #l-header.is-open:after {
    display: none;
  }
  .l-header__logo {
    max-width: 215px;
  }
  .l-header__submenu {
    margin-left: auto;
    width: 120px;
  }
  .l-header__submenu > ul > li {
    width: 50%;
  }
  .l-header__submenu > ul > li a {
    font-size: calc(1rem * 0.9);
    letter-spacing: -0.01em;
    height: 100%;
    line-height: 1.3;
  }
  .l-header__submenu > ul > li a span {
    padding-top: 32px;
  }
  .l-header__submenu > ul > li a span:before {
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 100% auto;
    content: "";
    height: 28px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 28px;
  }
  .l-header__submenu > ul > li.recruit a span:before {
    background-image: url(/common/images/icon_recruit.svg);
  }
  .l-header__submenu > ul > li.contact a span:before {
    background-image: url(/common/images/icon_mail.svg);
  }
  #l-nav-trigger {
    height: 60px;
    min-width: 60px;
    position: relative;
  }
  #l-nav-trigger:before {
    border-color: transparent transparent var(--color-standard-blue) transparent;
    border-style: solid;
    border-width: 0 8px 12px 8px;
    content: "";
    height: 0;
    opacity: 0;
    position: absolute;
    pointer-events: none;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
	  transition: 0.2s ease-in-out;
    width: 0;
    z-index: 1;
  }
  #l-header.is-open #l-nav-trigger:before {
    opacity: 1;
  }
  #l-nav-trigger button {
    cursor: pointer;
    display: block;
    height: 100%;
    position: relative;
    width: 100%;
  }
  #l-nav-trigger button span {
    background: #333333;
    height: 2px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
	  transition: 0.2s ease-in-out;
    transform: translateY(-50%);
    width: 26px;
  }
  #l-nav-trigger button span.line1 {
    top: calc(50% - 8px);
  }
  #l-nav-trigger button span.line2 {
    top: 50%;
    transform: translateY(-50%);
  }
  #l-nav-trigger button span.line3 {
    top: calc(50% + 8px);
  }
  #l-header.is-open #l-nav-trigger button span.line1 {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  #l-header.is-open #l-nav-trigger button span.line2 {
    opacity: 0;
  }
  #l-header.is-open #l-nav-trigger button span.line3 {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
  .l-header__menu {
    background: var(--color-standard-blue);
    border-top: 2px solid var(--color-gray-2);
    display: none;
    overflow-y: auto;
    padding: 24px 20px 60px;
    position: fixed;
    top: 60px;
    left: 0;
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
    width: 100vw;
  }
  .l-header__menu_inner {
    flex-direction: column-reverse;
  }
  .l-header__navigation {
    margin-top: 24px;
  }
  .l-header__navigation nav > ul {
    justify-content: space-between;
  }
  .l-header__navigation nav > ul > li {
    width: 47%;
  }
  .l-header__navigation nav > ul > li:nth-of-type(n+3) {
    margin-top: 32px;
  }
  .l-header__navigation nav > ul > li.category-parent {
    width: 100%;
  }
  .l-header__navigation nav > ul > li > span {
    border-left: 5px solid var(--color-standard-red);
    display: block;
    font-weight: bold;
    line-height: 1;
    padding-left: 8px;
    position: relative;
  }
  .l-header__navigation nav > ul > li > span > a,
  .l-header__navigation nav > ul > li > span > button {
    color: var(--color-white);
    display: block;
    cursor: pointer;
  }
  .l-header__navigation nav > ul > li > span > a {
    padding-right: 18px;
    position: relative;
  }
  .l-header__navigation nav > ul > li > span > a:after {
    background-image: url(/common/images/icon_arrow_lightblue_right.svg);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 100% auto;
    content: "";
    height: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 16px;
  }
  .l-header__navigation nav > ul > li > span > button {
    background: none;
  }
  .l-header__navigation nav > ul > li.category-parent > span a {
    pointer-events: none;
  }
  .l-header__navigation .l-secondary-menu__list {
    justify-content: space-between;
  }
  .l-header__navigation .l-secondary-menu__list > li {
    font-size: 1.3rem;
    font-weight: normal;
    margin-top: 24px;
    padding-left: 13px;
    width: 47%;
  }
  .l-header__navigation .l-secondary-menu__list > li > a {
    display: block;
  }
  .l-header__navigation .l-secondary-menu__list > li > a span {
    display: block;
    padding-right: 18px;
  }
  .l-header__navigation .l-secondary-menu__list > li > a span:after {
    top: 50%;
    transform: translateY(-50%);
  }
  .l-header__navigation_banner {
    margin-top: 32px;
  }
  .l-header__navigation_banner > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .l-header__navigation_banner > ul > li {
    height: 56px;
    letter-spacing: 0.04em;
    text-align: center;
    width: 48%; 
  }
  .l-header__navigation_banner > ul > li a {
    background: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    width: 100%;
  }
  .l-header__navigation_banner > ul > li.contact a {
    background: var(--color-standard-red);
  }
  .l-header__navigation_banner > ul > li .image-logo {
    display: block;
    line-height: 1;
  }
  .l-header__navigation_banner > ul > li .image-logo img {
    max-height: 20px;
  }
  .l-header__navigation_banner > ul > li .text-heading {
    color: var(--color-standard-blue) !important;
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 4px;
  }
  .l-header__navigation .l-secondary-menu__closeButton,
  .l-secondary-menu__heading,
  .l-header__search_triggerButton,
  .l-header__search_closeButton {
    display: none;
  }
  #l-header + #l-overlay {
    display: none !important;
  }
}




/* main
========================================== */
#l-main {
  overflow: hidden;
  padding-top: 72px;
}
/* PC */
@media only screen and (min-width: 769px) {
  #l-main {
    min-width: 1280px;
  }
}
/* SP */
@media only screen and (max-width: 768px) {
  #l-main {
    padding-top: 60px;
  }
}




/* footer
========================================== */
#l-footer {
}
.l-footer__body {
  background: var(--color-standard-blue);
  padding: 32px 40px 0;
}
.l-footer__body a {
  color: var(--color-white);
}
.l-footer__informationBlock {
  color: var(--color-white);
}
.l-footer__informationBlock_logo {
  width: 140px;
}
.l-footer__informationBlock_logo a {
  display: block;
}
.l-footer__informationBlock_logo img {
  width: 100%;
}
.l-footer__informationBlock_text {
  margin-top: 16px;
}
.l-footer__informationBlock .text-companyname {
  font-size: 1.6rem;
  font-weight: bold;
}
.l-footer__informationBlock .text-address,
.l-footer__informationBlock .text-telephone {
  font-size: 1.2rem;
  margin-top: 10px;
}
.l-footer__navBlock_menu {
  color: var(--color-white);
  letter-spacing: 0.08em;
}
.l-footer__navBlock_menu_item .item-heading {
  border-left: 5px solid var(--color-standard-red);
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  padding-left: 8px;
}
.l-footer__navBlock_menu_item .item-link {
  padding-left: 13px;
}
.l-footer__navBlock_banner {
  margin-top: 32px;
}
.l-footer__navBlock_banner > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.l-footer__navBlock_banner > ul > li {
  height: 48px;
  text-align: center;
}
.l-footer__navBlock_banner > ul > li a {
  background: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  width: 100%;
}
.l-footer__navBlock_banner > ul > li.contact a {
  background: var(--color-standard-red);
}
.l-footer__navBlock_banner > ul > li .link-inner {
}
.l-footer__navBlock_banner > ul > li .image-logo {
  display: block;
  line-height: 1;
}
.l-footer__navBlock_banner > ul > li .image-logo img {
  max-height: 20px;
}
.l-footer__navBlock_banner > ul > li .text-heading {
  display: block;
  font-size: 1.1rem;
  font-weight: bold;
}
.l-footer__navBlock_banner > ul > li:not(.contact) .text-heading {
  color: var(--color-standard-blue) !important;
}
.l-footer__navBlock_banner > ul > li.contact .text-heading {
  font-size: 1.2rem;
  padding-left: 28px;
  position: relative;
}
.l-footer__navBlock_banner > ul > li.contact .text-heading:before {
  background-image: url(/common/images/icon_mail.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  content: "";
  height: 24px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
}
.l-footer__lower {
  border-top: 1px solid rgba(var(--color-white-rgb), 0.5);
  margin-top: 32px;
  padding-block: 20px;
}
.l-footer__otherlink {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.l-footer__otherlink > li a {
  color: var(--color-white);
  font-size: 1.1rem;
}
.l-footer__copyright {
  color: var(--color-white);
  font-size: 1.2rem;
  text-align: right;
}
/* pagetop */
#l-pagetop {
  background: var(--color-white);
  border-radius: 50%;
	color: transparent;
	font-size: 0;
	height: 48px;
	position: fixed;
	bottom: 32px;
	right: 44px;
	text-align: center;
	width: 48px;
	z-index: 99;
}
#l-pagetop > a {
	background-image: url(/common/images/btn_pagetop.svg);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 100% auto;
	border-radius: 50%;
	display: block;
	height: 100%;
	width: 100%;
}
/* PC */
@media only screen and (min-width: 769px) {
  #l-footer {
    min-width: 1280px;
  }
  .l-footer__inner {
    margin-inline: auto;
    width: 1200px;
  }
  .l-footer__upper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-inline: auto;
    max-width: 880px;
  }
  .l-footer__informationBlock {
    width: 160px;
  }
  .l-footer__navBlock {
    width: calc(100% - 190px)
  }
  .l-footer__navBlock_menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .l-footer__navBlock_menu_item {
    max-width: 265px;
  }
  .l-footer__navBlock_menu_item:nth-of-type(n+2) {
    margin-left: 40px;
  }
  .l-footer__navBlock_menu_item[data-layout-pc="2col"] {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .l-footer__navBlock_menu_item .item-content:nth-of-type(n+2) {
    margin-top: 32px;
  }
  .l-footer__navBlock_menu_item[data-layout-pc="2col"] .item-content {
    width: calc(50% - 15px);
  }
  .l-footer__navBlock_menu_item[data-layout-pc="2col"] .item-content:nth-of-type(-n+2) {
    margin-top: 0;
  }
  .l-footer__navBlock_menu_item .item-link > li {
    font-size: 1rem;
    margin-top: 12px;
  }
  .l-footer__navBlock_menu_item .item-link[data-layout-pc="2col"] {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .l-footer__navBlock_menu_item .item-link[data-layout-pc="2col"] > li {
    width: calc(50% - 15px);
  }
  .l-footer__navBlock_banner > ul > li {
    width: 168px;
  }
  .l-footer__navBlock_banner > ul > li:nth-of-type(n+2) {
    margin-left: 12px;
  }
  .l-footer__lower {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .l-footer__otherlink > li:nth-of-type(n+2) {
    margin-left: 32px;
  }
}
/* SP */
@media only screen and (max-width: 768px) {
  .l-footer__body {
    padding: 20px 20px 24px;
  }
  .l-footer__informationBlock_text {
    margin-top: 20px;
  }
  .l-footer__informationBlock .text-address {
    margin-top: 6px;
  }
  .l-footer__informationBlock .text-telephone {
    margin-top: 0;
  }
  .l-footer__navBlock {
    margin-top: 40px;
  }
  .l-footer__navBlock_menu_item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -24px;
  }
  .l-footer__navBlock_menu_item:nth-of-type(n+2) {
    margin-top: 24px;
  }
  .l-footer__navBlock_menu_item .item-content {
    margin-bottom: 24px;
    width: 49%;
  }
  .l-footer__navBlock_menu_item .item-content[data-size-sp="width-full"] {
    width: 100%;
  }
  .l-footer__navBlock_menu_item .item-heading {
    font-size: 1.4rem;
  }
  .l-footer__navBlock_menu_item .item-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 16px;
  }
  .l-footer__navBlock_menu_item .item-link > li {
    font-size: 1.2rem;
    margin-top: 20px;
    width: 49%;
  }
  .l-footer__navBlock_banner {
    margin-top: 40px;
  }
  .l-footer__navBlock_banner > ul {
    justify-content: space-between;
  }
  .l-footer__navBlock_banner > ul > li {
    height: 56px;
    width: 48%; 
  }
  .l-footer__navBlock_banner > ul > li.contact {
    margin-top: 12px;
    width: 100%;
  }
  .l-footer__navBlock_banner > ul > li .text-heading {
    font-size: 1.2rem;
    margin-top: 4px;
  }
  .l-footer__navBlock_banner > ul > li.contact .text-heading {
    font-size: 1.4rem;
  }
  .l-footer__lower {
    margin-top: 24px;
    padding-top: 24px;
    padding-bottom: 0;
  }
  .l-footer__otherlink {
    justify-content: space-between;
  }
  .l-footer__otherlink > li {
    width: 49%;
  }
  .l-footer__otherlink > li:nth-of-type(n+3) {
    margin-top: 20px;
  }
  .l-footer__otherlink > li a {
    font-size: 1.2rem;
  }
  .l-footer__copyright {
    margin-top: 40px;
    text-align: center;
  }
  #l-pagetop {
    right: 20px;
    bottom: 20px;
  }
}



/* parts
========================================== */

/* section
------------------------------------------ */
.l-section {
  overflow: hidden;
  padding-block: 64px;
  padding-inline: 40px;
  position: relative;
  z-index: 0;
}
.l-section__inner > *:first-child {
  margin-top: 0 !important;
}
.l-section__title {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.33;
}
.l-section__summaryText p {
  color: var(--color-standard-blue);
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.08em;
}
.l-section__summaryText + * {
  margin-top: 64px;
}t
.l-section__content > *:first-child {
  margin-top: 0 !important;
}
/* PC */
@media only screen and (min-width: 769px) {
  .l-section__inner {
    margin-inline: auto;
    max-width: 880px;
  }
  .l-section__summaryText p {
    text-align: center;
  }
}
/* SP */
@media only screen and (max-width: 768px) {
  .l-section {
    padding-block: 40px;
    padding-inline: 20px;
  }
  .l-section__title {
    font-size: 2.4rem;
  }
  .l-section__summaryText + * {
    margin-top: 40px;
  }
}



/* breadcrumb
------------------------------------------ */
.c-breadcrumb > nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
.c-breadcrumb > nav ul > li {
  font-size: 1.2rem;
}
.c-breadcrumb > nav ul > li:nth-of-type(n+2) {
  margin-left: 8px;
  padding-left: 20px;
  position: relative;
}
.c-breadcrumb > nav ul > li:nth-of-type(n+2):before {
  background-image: url(/common/images/icon_arrow_blue_right.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  content: "";
  height: 12px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
}
.c-breadcrumb > nav ul > li * {
  color: var(--color-standard-blue);
}
.c-breadcrumb > nav ul > li a {
  text-decoration: underline;
}
#l-footer > .c-breadcrumb {
  background: var(--color-beige);
  padding: 16px 40px;
}
/* PC */
@media only screen and (min-width: 769px) {
  #l-footer > .c-breadcrumb > nav {
    margin-inline: auto;
    max-width: 880px;
  }
}
/* SP */
@media only screen and (max-width: 768px) {
  .c-breadcrumb > nav ul > li:nth-of-type(n+2) {
    margin-left: 4px;
    padding-left: 16px;
  }
  #l-footer > .c-breadcrumb {
    padding: 14px 20px;
  }
}



/* heading
------------------------------------------ */
/* c-pagetitle */
.c-pagetitle {
  background: var(--color-beige);
  padding: 40px;
}
.c-pagetitle h1 {
  color: var(--color-standard-blue);
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.08em;
}
.c-pagetitle h1 + .c-breadcrumb {
  margin-top: 16px;
}
/* PC */
@media only screen and (min-width: 769px) {
  .c-pagetitle__inner {
    margin-inline: auto;
    max-width: 880px;
  }
}
/* SP */
@media only screen and (max-width: 768px) {
  .c-pagetitle {
    padding: 32px 20px;
  }
  .c-pagetitle h1 {
    font-size: 2.4rem;
  }
  .c-pagetitle h1 + .c-breadcrumb {
    margin-top: 12px;
  }
}


/* c-primarytitle */
.c-primarytitle {
  color: var(--color-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 170px;
  letter-spacing: 0.08em;
  margin-top: 64px;
  overflow: hidden;
  padding: 40px;
  position: relative;
  z-index: 0;
}
.c-primarytitle__heading {
  font-size: 3.2rem;
  font-weight: bold;
}
.c-primarytitle__summaryText {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: bold;
}
.c-primarytitle__backgroundImage {
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  z-index: -1;
}
.c-primarytitle__backgroundImage img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
/*
.c-primarytitle__backgroundImage:before {
  background-image: url(/common/images/line.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  content: "";
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
}
*/
/* PC */
@media only screen and (min-width: 769px) {
  .c-primarytitle {
    margin-inline: auto;
    max-width: 880px;
  }
}
/* SP */
@media only screen and (max-width: 768px) {
  .c-primarytitle {
    height: 140px;
    margin-top: 24px;
    padding: 20px;
  }
  .c-primarytitle__heading {
    font-size: 2.4rem;
  }
  .c-primarytitle__summaryText {
    font-size: 1.4rem;
  }
  /*
  .c-primarytitle__backgroundImage:before {
    background-image: url(/common/images/line_sp.svg);
  }
  */
  .c-primarytitle[data-sp-layout="block"] {
    display: block;
  }
  .c-primarytitle[data-sp-layout="block"] .c-primarytitle__summaryText {
    margin-top: 8px;
  }
  .l-section .c-primarytitle {
    margin-inline: -20px;
  }
}


/* c-heading */
[class^="c-heading-"] {
  color: var(--color-standard-blue);
  font-weight: bold;
  letter-spacing: 0.08em;
}
.c-heading-02 {
  border-bottom: 1px solid var(--color-standard-blue);
  font-size: 2.4rem;
  line-height: 1.125;
  padding-bottom: 20px;
}
.c-heading-02--order {
  padding-left: 1.4167em;
  text-indent: -1.4167em;
}
* + .c-heading-02 {
  margin-top: 64px;
}
.c-heading-02 + * {
  margin-top: 24px !important;
}
.c-heading-03 {
  font-size: 1.8rem;
  line-height: 1.35;
}
* + .c-heading-03 {
  margin-top: 32px;
}
.c-heading-03 + * {
  margin-top: 24px !important;
}
/* SP */
@media only screen and (max-width: 768px) {
  .c-heading-02 {
    font-size: 1.8rem;
    line-height: 1.5;
    padding-bottom: 12px;
  }
  * + .c-heading-02 {
    margin-top: 40px;
  }
  .c-heading-03 {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  * + .c-heading-03 {
    margin-top: 24px;
  }
  .c-heading-03 + * {
    margin-top: 16px !important;
  }
}



/* text
------------------------------------------ */
.c-text-bold {
  font-weight: bold !important;
}
.c-text-blue {
  color: var(--color-standard-blue) !important;
}
.c-text-red {
  color: var(--color-standard-red) !important;
}
/* PC */
@media only screen and (min-width: 769px) {
}
/* SP */
@media only screen and (max-width: 768px) {
}


/* list
------------------------------------------ */
* + [class^="c-list-"] {
	margin-top: 16px;
}
.c-list-disc > li {
	padding-left: 1em;
	text-indent: -1em;
}
.c-list-disc > li:nth-of-type(n+2) {
  margin-top: 12px;
}
.c-list-disc > li:before {
	content: "・";
}
.c-list--margin-none > li {
  margin-top: 0 !important;
}
.c-list-order {
	counter-reset: orderlist;
}
.c-list-order > li {
	padding-left: 1.5em;
  position: relative;
}
.c-list-order > li:nth-of-type(n+2) {
  margin-top: 12px;
}
.c-list-order > li:before {
	counter-increment: orderlist;
	content: counter(orderlist) ".";
	display: block;
	min-width: 1.5em;
	position: absolute;
	left: 0;
	top: 0;
	text-align: left;
}
.c-list-order--parenthese {
	counter-reset: orderParentheselist;
}
.c-list-order--parenthese > li {
	padding-left: 3em;
  position: relative;
}
.c-list-order--parenthese > li:nth-of-type(n+2) {
  margin-top: 12px;
}
.c-list-order--parenthese > li:before {
	counter-increment: orderParentheselist;
  content: "（" counter(orderParentheselist) "）";
  display: block;
  min-width: 3em;
  position: absolute;
  left: 0;
  top: 0;
  text-align: left;
}
.c-list-pdf > li {
  line-height: 1.5;
}
.c-list-pdf > li:nth-of-type(n+2) {
  margin-top: 12px;
}
.c-list-pdf > li a {
  color: var(--color-lightblue);
  display: inline-block;
  position: relative;
  /* text-decoration: underline; */
}
.c-list-pdf > li a[href$=".pdf"] {
  padding-left: 36px;
}
.c-list-pdf > li a[href$=".pdf"]:before {
  background-image: url(/common/images/icon_pdf.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  content: "";
  height: 16px;
  position: absolute;
  top: 3px;
  left: 0;
  width: 28px;
}
.c-list-pdf > li a[href$=".pdf"]:after {
  background-image: url(/common/images/icon_download_lightblue.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  content: "";
  height: 14px;
  position: absolute;
  top: 3px;
  right: -17px;
  width: 14px;
}
/* PC */
@media only screen and (min-width: 769px) {
}
/* SP */
@media only screen and (max-width: 768px) {
  .c-list-disc > li:nth-of-type(n+2) {
    margin-top: 8px;
  }
  .c-list-pdf > li {
    font-size: 1.2rem;
  }
  .c-list-pdf > li a[href$=".pdf"]:before {
    top: 2px;
  }
}



/* button
------------------------------------------ */
.c-button {
  background: var(--color-white);
  display: table;
  margin-inline: auto;
  max-width: 100%;
  min-width: 275px;
  text-align: center;
}
* + .c-button {
  margin-top: 32px;
}
.c-button__inner {
  background: var(--color-white);
  border: 1px solid var(--color-standard-blue);
  color: var(--color-standard-blue);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  height: 100%;
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 15px;
  width: 100%;
}
.c-button__inner > span {
  padding-left: 28px;
  position: relative;
}
.c-button__inner > span:before {
  background-image: url(/common/images/icon_arrow_blue_right.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  content: "";
  height: 24px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
}
.c-button__inner[target="_blank"] > span:before {
  background-image: url(/common/images/icon_blank.svg);
  height: 20px;
  width: 20px;
}
.c-button--red .c-button__inner {
  background: var(--color-white) !important;
  border-color: var(--color-standard-red) !important;
  color: var(--color-primary) !important;
}
.c-button--red .c-button__inner > span:before {
  background-image: url(/common/images/icon_arrow_red_right.svg);
}
.c-button--lightblue .c-button__inner {
  background: var(--color-lightblue) !important;
  border-color: var(--color-lightblue) !important;
  color: var(--color-white) !important;
}
.c-button--lightblue .c-button__inner > span:before {
  background-image: url(/common/images/icon_arrow_white_right.svg);
}
.c-button--back .c-button__inner {
  background: var(--color-standard-blue);
  color: var(--color-white);
}
.c-button--back .c-button__inner > span {
  padding-left: 32px;
}
.c-button--back .c-button__inner > span:before {
  background-image: url(/common/images/icon_back_white.svg);
}
.c-button--download .c-button__inner > span {
  padding-left: 24px;
}
.c-button--download .c-button__inner > span:before {
  background-image: url(/common/images/icon_download.svg);
  height: 19px;
  width: 19px;
}
* + .c-button--back {
  margin-top: 64px;
}
* + .c-button-list {
  margin-top: 40px;
}
/* PC */
@media only screen and (min-width: 769px) {
  .c-button__inner:hover {
    background-color: var(--color-whiteblue);
    opacity: 1;
  }
  .c-button--back {
    min-width: 320px;
  }
  .c-button--back .c-button__inner {
    padding-block: 20px;
  }
  .c-button-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-inline: -10px;
  }
  .c-button-list__item {
    margin-inline: 10px;
  }
}
/* SP */
@media only screen and (max-width: 768px) {
  .c-button {
    min-width: initial !important;
    width: 100%;
  }
  * + .c-button {
    margin-top: 24px;
  }
  .c-button--back {
    width: 100%;
  }
  * + .c-button--back {
    margin-top: 40px;
  }
  * + .c-button-list {
    margin-top: 32px;
  }
  .c-button-list__item:nth-of-type(n+2) {
    margin-top: 12px;
  }
}


/* link
------------------------------------------ */
a.c-text-link {
  color: var(--color-lightblue) !important;
  text-decoration: underline !important;
}
/* PC */
@media only screen and (min-width: 769px) {
}
/* SP */
@media only screen and (max-width: 768px) {
}


/* table
------------------------------------------ */
* + .c-table {
  margin-top: 24px;
}
.c-table * + table {
  margin-top: 16px;
}
.c-table table {
  border-top: 1px solid var(--color-lightblue);
  width: 100%;
}
.c-table table th,
.c-table table td {
  border-bottom: 1px solid var(--color-lightblue);
  font-size: 1.4rem;
  padding: 24px;
  vertical-align: top;
  text-align: left;
}
.c-table table th {
  background: var(--color-whiteblue);
  color: var(--color-standard-blue);
  font-weight: bold;
}
.c-table table tdh {
  background: var(--color-white);
}
/* PC */
@media only screen and (min-width: 769px) {
  .c-table table tbody th {
    min-width: 240px;
  }
}
/* SP */
@media only screen and (max-width: 768px) {
  .c-table * + table {
    margin-top: 12px;
  }
  .c-table[data-sp-layout="vertical"] table {
    border: 1px solid var(--color-lightblue);
    border-bottom: none;
  }
  .c-table[data-sp-layout="vertical"] table colgroup {
    display: none;
  }
  .c-table[data-sp-layout="vertical"] table,
  .c-table[data-sp-layout="vertical"] table thead,
  .c-table[data-sp-layout="vertical"] table tbody,
  .c-table[data-sp-layout="vertical"] table tr,
  .c-table[data-sp-layout="vertical"] table th,
  .c-table[data-sp-layout="vertical"] table td {
    display: block;
    width: 100%;
  }
  .c-table[data-sp-layout="vertical"] table th {
    border-bottom: none;
    line-height: 1.5 !important;
  }
  .c-table table th,
  .c-table table td {
    padding: 16px;
  }
}


/* c-container-categoryBlock
------------------------------------------ */
.c-container-categoryBlock__tab {
  border-bottom: 1px solid var(--color-standard-blue);
  padding-top: 4px;
}
.c-container-categoryBlock__tab > ul {
  display: flex;
  justify-content: space-between;
}
.c-container-categoryBlock__tab > ul > li {
  box-shadow: 2px 0 0px rgba(179, 179, 179, 0.5);
  min-height: 50px;
  margin-inline: 2px;
  max-width: 50%;
  position: relative;
  width: 100%;
}
.c-container-categoryBlock__tab > ul > li a {
  background: #F3F5FB;
  border: 1px solid #F3F5FB;
  border-bottom: none !important;
  color: var(--color-gray);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  font-weight: bold;
  line-height: 1.25;
  padding: 4px 12px;
  width: 100%;
}
.c-container-categoryBlock__tab > ul > li a span {
  padding-left: 36px;
  position: relative;
}
.c-container-categoryBlock__tab > ul > li a span:before {
  background-image: url(/common/images/icon_arrow_gray_right.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  content: "";
  height: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 24px;
}
.c-container-categoryBlock__tab > ul > li.current:before {
  background: var(--color-standard-red);
  content: "";
  height: 4px;
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
}
.c-container-categoryBlock__tab > ul > li.current a span:before {
  margin-top: 1px;
  transform: translateY(-50%) rotate(90deg);
}
.c-container-categoryBlock__tab > ul > li.current a {
  pointer-events: none;
}
.c-container-categoryBlock--type01 .c-container-categoryBlock__tab > ul > li.current a {
  background: var(--color-white);
  border-color: var(--color-standard-blue);
  color: var(--color-standard-blue);
}
.c-container-categoryBlock--type01 .c-container-categoryBlock__tab > ul > li.current:after {
  background: var(--color-white);
  content: "";
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 1px;
  width: calc(100% - 2px);
}
.c-container-categoryBlock--type01 .c-container-categoryBlock__tab > ul > li.current a span:before {
  background-image: url(/common/images/icon_arrow_red_right.svg);
}
.c-container-categoryBlock--type01 .c-container-categoryBlock__body {
  background: var(--color-white);
  border: 1px solid var(--color-standard-blue);
  border-top: none;
  padding: 30px 30px 40px;
}
.c-container-categoryBlock--type02 .c-container-categoryBlock__tab > ul > li.current a {
  background: var(--color-standard-blue);
  border-color: var(--color-standard-blue);
  color: var(--color-white);
}
.c-container-categoryBlock--type02 .c-container-categoryBlock__tab > ul > li.current a span:before {
  background-image: url(/common/images/icon_arrow_white_right.svg);
}
.c-container-categoryBlock--type02 .c-container-categoryBlock__body {
  padding-top: 64px;
}
.c-container-categoryBlock--type02 .c-container-categoryBlock__body > *:first-child {
  margin-top: 0 !important;
}
/* PC */
@media only screen and (min-width: 769px) {
  .c-container-categoryBlock__tab > ul > li:first-child {
    margin-left: 0;
  }
  .c-container-categoryBlock__tab > ul > li:last-child {
    box-shadow: none;
    margin-right: 0;
  }
  .c-container-categoryBlock__tab > ul > li>a:hover::before {
    background: var(--color-standard-red);
    content: "";
    height: 4px;
    position: absolute;
    top: -4px;
    left: 0;
    width: 100%;
  }
}
/* SP */
@media only screen and (max-width: 768px) {
  .c-container-categoryBlock--type01 .c-container-categoryBlock__tab > ul > li:first-child {
    margin-left: 0;
  }
  .c-container-categoryBlock--type01 .c-container-categoryBlock__tab > ul > li:last-child {
    box-shadow: none;
    margin-right: 0;
  }
  .c-container-categoryBlock--type01 .c-container-categoryBlock__tab > ul > li {
    margin-inline: calc(2 / 390 * 100vw);
  }
  .c-container-categoryBlock--type01 .c-container-categoryBlock__tab > ul > li a {
    justify-content: center;
    font-size: 1.2rem;
    line-height: 1.33;
    padding: 12px 6px;
  }
  .c-container-categoryBlock--type01 .c-container-categoryBlock__tab > ul > li a span {
    padding-left: 18px;
  }
  .c-container-categoryBlock--type01 .c-container-categoryBlock__tab > ul > li a span:before {
    height: 14px;
    left: -2px;
    width: 14px;
  }
  .c-container-categoryBlock--type01 .c-container-categoryBlock__body {
    padding: 32px 20px;
  }
  .c-container-categoryBlock--type02 .c-container-categoryBlock__tab {
    border-bottom: none;
  }
  .c-container-categoryBlock--type02 .c-container-categoryBlock__tab > ul {
    flex-wrap: wrap;
  }
  .c-container-categoryBlock--type02 .c-container-categoryBlock__tab > ul > li {
    border-bottom: 1px solid var(--color-standard-blue);
    margin-inline: 0;
    width: calc(50% - 2px);
  }
  .c-container-categoryBlock--type02 .c-container-categoryBlock__tab > ul > li:nth-of-type(odd) {
    box-shadow: 2px 0 0px rgba(179, 179, 179, 0.5);
  }
  .c-container-categoryBlock--type02 .c-container-categoryBlock__tab > ul > li:nth-of-type(even) {
    box-shadow: none;
  }
  .c-container-categoryBlock--type02 .c-container-categoryBlock__tab > ul > li:nth-of-type(n+3) {
    margin-top: 2px;
  }
  .c-container-categoryBlock--type02 .c-container-categoryBlock__tab > ul > li a {
    font-size: 1.4rem;
    line-height: 1.3;
    padding: 8px 12px;
  }
  .c-container-categoryBlock--type02 .c-container-categoryBlock__tab > ul > li span {
    display: table;
    margin-inline: auto;
    padding-left: 24px;
  }
  .c-container-categoryBlock--type02 .c-container-categoryBlock__tab > ul > li span:before {
    height: 16px;
    width: 16px;
  }
  .c-container-categoryBlock--type02 .c-container-categoryBlock__body {
    padding-top: 32px;
  }
}



/* c-categoryindex
------------------------------------------ */
.c-categoryindex {
  border-bottom: 1px solid var(--color-standard-blue);
  margin-top: 64px;
  padding-top: 4px;
}
.c-categoryindex > ul {
  display: flex;
  justify-content: space-between;
}
.c-categoryindex > ul > li {
  box-shadow: 2px 0 0px rgba(179, 179, 179, 0.5);
  min-height: 50px;
  min-width: 123px;
  max-width: 50%;
  position: relative;
}
.c-categoryindex > ul > li a {
  background: #F3F5FB;
  border: 1px solid #F3F5FB;
  border-bottom: none !important;
  color: var(--color-gray);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.25;
  padding: 4px 20px 4px 10px;
  width: 100%;
}
.c-categoryindex > ul > li a span {
  padding-left: 28px;
  position: relative;
}
.c-categoryindex > ul > li a span:before {
  background-image: url(/common/images/icon_arrow_blue_right.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  content: "";
  height: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 24px;
}
.c-categoryindex > ul > li.current:before {
  background: var(--color-standard-red);
  content: "";
  height: 4px;
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
}
.c-categoryindex > ul > li.current a {
  pointer-events: none;
  background: var(--color-standard-blue);
  border-color: var(--color-standard-blue);
  color: var(--color-white);
}
.c-categoryindex > ul > li.current a span:before {
  background-image: url(/common/images/icon_arrow_white_right.svg);
  margin-top: 1px;
  transform: translateY(-50%) rotate(90deg);
}
/* PC */
@media only screen and (min-width: 769px) {
  .c-categoryindex {
    margin-inline: auto;
    max-width: 880px;
  }
  .c-categoryindex > ul > li:first-child {
    margin-left: 0;
  }
  .c-categoryindex > ul > li:last-child {
    box-shadow: none;
    margin-right: 0;
  }
  .c-categoryindex > ul > li:hover::before {
    background: var(--color-standard-red);
    content: "";
    height: 4px;
    position: absolute;
    top: -4px;
    left: 0;
    width: 100%;
  }
}
/* SP */
@media only screen and (max-width: 768px) {
  .c-categoryindex {
    border-bottom: none;
    margin-top: 32px;
    padding-inline: 20px;
  }
  .c-categoryindex > ul {
    flex-wrap: wrap;
  }
  .c-categoryindex > ul > li {
    border-bottom: 1px solid var(--color-standard-blue);
    margin-inline: 0;
    min-width: initial;
    width: calc(50% - 2px);
  }
  .c-categoryindex > ul > li:nth-of-type(odd) {
    box-shadow: 2px 0 0px rgba(179, 179, 179, 0.5);
  }
  .c-categoryindex > ul > li:nth-of-type(even) {
    box-shadow: none;
  }
  .c-categoryindex > ul > li:nth-of-type(n+3) {
    margin-top: 2px;
  }
  .c-categoryindex > ul > li a {
    line-height: 1.3;
    padding: 7px 15px;
  }
  .c-categoryindex > ul > li a span {
    padding-left: 24px;
  }
  .c-categoryindex > ul > li a span:before {
    height: 16px;
    width: 16px;
  }
  .c-container-categoryBlock__body {
    padding-top: 32px;
  }
}




/* c-anchor
------------------------------------------ */
* + .c-anchor {
  margin-top: 40px;
}
.c-anchor > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: -24px;
}
.c-anchor > ul li {
  font-size: 1.6rem;
  margin-bottom: 24px;
  margin-inline: 32px;
}
.c-anchor > ul li a {
  color: var(--color-standard-blue);
  font-weight: bold;
  display: inline-block;
  letter-spacing: 0.08em;
  padding-left: 32px;
  position: relative;
}
.c-anchor > ul li a:before {
  background-image: url(/common/images/icon_arrow_anchor.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  content: "";
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
	transition: 0.2s ease-in-out;
  width: 24px;
}
/* PC */
@media only screen and (min-width: 769px) {
  .c-anchor {
    margin-inline: auto;
    max-width: 880px;
  }
  .c-anchor > ul li a:hover {
    opacity: 1;
  }
  .c-anchor > ul li a:hover:before {
    background-color: var(--color-whiteblue);
  }
}
/* SP */
@media only screen and (max-width: 768px) {
  .c-anchor {
    padding-inline: 20px;
  }
  .c-anchor > ul li {
    margin-inline: 20px;
  }
  .c-anchor[data-layout-sp="1col"] {
    display: table;
    margin-inline: auto;
  }
  .c-anchor[data-layout-sp="1col"] > ul {
    display: block;
  }
  .c-anchor[data-layout-sp="1col"] > ul li {
    margin-inline: 10px;
    width: auto;
  }
  .c-anchor[data-layout-sp="2col"] > ul {
    justify-content: space-between;
  }
  .c-anchor[data-layout-sp="2col"] > ul li {
    margin-inline: 10px;
    width: calc(50% - 20px);
  }
}