@charset "UTF-8";
/* stylelint-disable scss/load-no-partial-leading-underscore */
/* stylelint-disable comment-empty-line-before */
/* stylelint-disable no-descending-specificity */
/* stylelint-disable selector-class-pattern */
/* stylelint-disable comment-empty-line-before */
/* stylelint-disable scss/dollar-variable-pattern */
/* color */
/* font-family */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4 {
  font-weight: bold;
}

body {
  margin: 0;
  font-family: "游ゴシック体", "YuGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  background-color: #EFF5F7;
}
@media screen and (max-width: 760px) {
  body {
    font-size: 11px;
  }
}

a {
  z-index: 2;
  color: inherit;
  text-decoration: none;
}
a:hover {
  filter: contrast(0.9);
  opacity: 0.8;
}

iframe {
  max-width: 100%;
}

.page .mb-20 {
  margin-bottom: 20px;
}
@media screen and (max-width: 760px) {
  .page .mb-20 {
    margin-bottom: 10px;
  }
}
.page .mb-30 {
  margin-bottom: 30px;
}
@media screen and (max-width: 760px) {
  .page .mb-30 {
    margin-bottom: 15px;
  }
}
.page .mb-50 {
  margin-bottom: 50px;
}
@media screen and (max-width: 760px) {
  .page .mb-50 {
    margin-bottom: 25px;
  }
}
.page .mb-80 {
  margin-bottom: 80px;
}
@media screen and (max-width: 760px) {
  .page .mb-80 {
    margin-bottom: 40px;
  }
}
.page .mb-100 {
  margin-bottom: 100px;
}
@media screen and (max-width: 760px) {
  .page .mb-100 {
    margin-bottom: 50px;
  }
}
.page .mt-100 {
  margin-top: 100px;
}
@media screen and (max-width: 760px) {
  .page .mt-100 {
    margin-top: 50px;
  }
}
.page .mt-40 {
  margin-top: 40px;
}
@media screen and (max-width: 760px) {
  .page .mt-40 {
    margin-top: 20px;
  }
}
.page .mt-150 {
  margin-top: 150px;
}
@media screen and (max-width: 760px) {
  .page .mt-150 {
    margin-top: 75px;
  }
}

section:not(:first-child) > * {
  opacity: 0;
  transition: 0.3s ease -in;
  transform: translate(0, 10px);
}

.top_page section > * {
  opacity: 1;
  transform: none;
}

section > *.is-active {
  opacity: 1;
  transition: 1s;
  transform: none;
}

.history_item {
  opacity: 0;
  transition: 0.3s ease -in;
  transform: translate(0, 10px);
}

.history_item.is-active {
  opacity: 1;
  transition: 1s;
  transform: none;
}

.pc-br {
  display: block;
}
@media screen and (max-width: 760px) {
  .pc-br {
    display: none;
  }
}

.sp-br {
  display: none;
}
@media screen and (max-width: 760px) {
  .sp-br {
    display: block;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 760px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 760px) {
  .sp {
    display: block;
  }
}

/* icons */
.svgIcon {
  position: relative;
  display: inline-block;
  height: auto;
  vertical-align: baseline;
  fill: currentcolor;
}
.svgIcon-hidden {
  position: fixed;
  bottom: 0;
  width: 0;
  visibility: hidden;
}
.svgIcon-arrow-right svg {
  width: 15px;
  rotate: 180deg;
}
.svgIcon-arrow-left svg {
  width: 15px;
}

.icon {
  margin: auto;
}
.icon-insta {
  display: block;
  width: 35px;
  height: auto;
  aspect-ratio: 1;
  background-image: url("/wp-content/uploads/icon_instagram.webp");
  background-repeat: no-repeat;
  background-size: contain;
}
.icon-facebook {
  display: block;
  width: 35px;
  height: auto;
  aspect-ratio: 1;
  background-image: url("/wp-content/uploads/logo_facebook.webp");
  background-repeat: no-repeat;
  background-size: contain;
}
.icon-line {
  display: block;
  width: 35px;
  height: auto;
  aspect-ratio: 1;
  background-image: url("/wp-content/uploads/icon_LINE.webp");
  background-repeat: no-repeat;
  background-size: contain;
}
.icon_pageTitle {
  position: absolute;
  top: 50%;
  left: 5%;
  z-index: -1;
  display: block;
  width: auto;
  height: auto;
  transform: translateY(-50%);
}
.icon_breadcrumb {
  position: absolute;
  left: -30px;
  padding-right: 5px;
}
@media screen and (max-width: 760px) {
  .icon_breadcrumb {
    left: -15px;
    padding-right: 0;
  }
}
@media screen and (max-width: 760px) {
  .icon_breadcrumb svg {
    width: 10px;
  }
}

/* header */
.header {
  position: fixed;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100px;
  padding: 0 3%;
  padding-top: 25px;
  transition: 0.2s;
}
.header.scrolled {
  background: white;
  transition: 0.2s;
}
@media screen and (max-width: 760px) {
  .header {
    top: 0;
    height: 50px;
    padding: 0;
    padding-left: 15px;
  }
}
.header_link {
  display: flex;
  gap: 20px;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 760px) {
  .header_link {
    gap: 10px;
  }
}
.header_title {
  height: 100%;
  margin: 0;
}
.header_img {
  display: block;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 760px) {
  .header_img {
    max-width: 60%;
    margin-top: 5px;
  }
}
.header_text {
  font-size: 22px;
}
@media screen and (max-width: 760px) {
  .header_text {
    font-size: 13px;
  }
}
.header-sp {
  display: none;
}

.gNav_container {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  height: 100%;
}
.gNav_item {
  font-size: 13px;
  font-weight: bold;
}
@media screen and (max-width: 760px) {
  .gNav {
    display: none;
  }
}

.hamburger {
  display: none;
}
@media screen and (max-width: 760px) {
  .hamburger {
    display: flex;
    align-items: center;
  }
}
.hamburger_nav {
  padding: 0;
  margin: 0;
  list-style: none;
}
.hamburger_list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100svh;
  padding: 50px 15px;
  padding-bottom: 200px;
  overflow-y: scroll;
  overscroll-behavior: none;
  visibility: hidden;
  background-color: rgba(167, 211, 224, 0.9);
  opacity: 0;
  transition: transform 0.3s ease-in-out;
  transform: translateY(-100%);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hamburger_list::-webkit-scrollbar {
  display: none;
}
.hamburger_list.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.hamburger_item {
  position: relative;
  margin-top: -1px;
  font-size: 20px;
  font-weight: bold;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}
.hamburger_item a {
  position: relative;
  display: block;
  padding: 25px 0;
  color: #333;
  text-decoration: none;
}
.hamburger_item a::before {
  position: absolute;
  top: 47%;
  right: 0;
  display: block;
  width: 8px;
  height: auto;
  aspect-ratio: 1;
  color: white;
  content: "";
  border-right: 2px solid;
  border-bottom: 2px solid;
  transform: translateY(-50%) rotate(315deg);
}
.hamburger_list-parentBox {
  padding-bottom: 15px;
}
.hamburger_list-child {
  font-size: 15px;
  font-weight: normal;
}
.hamburger_list-child a {
  position: relative;
  display: block;
  padding: 15px 0 15px 18px;
}
.hamburger_list-child a::before {
  left: 0;
}
.hamburger .hamburger_btn {
  position: relative;
  display: block;
  width: 50px;
  height: 30px;
  padding: 10px;
  cursor: pointer;
  background: none;
}
.hamburger .hamburger_btn .hamburger_icon {
  position: relative;
  display: block;
  width: 25px;
  height: 2px;
  background-color: #333;
}
.hamburger .hamburger_btn .hamburger_icon::before, .hamburger .hamburger_btn .hamburger_icon::after {
  position: absolute;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #333;
}
.hamburger .hamburger_btn .hamburger_icon::before {
  top: -8px;
}
.hamburger .hamburger_btn .hamburger_icon::after {
  top: 8px;
}
.hamburger .hamburger_item.hamburger_list-child.other {
  display: inline-block;
  width: 32%;
  margin-top: 15px;
  font-size: 12px;
  font-weight: bold;
  border: none;
}
.hamburger .hamburger_item.hamburger_list-child.other a {
  padding: 15px 0 15px 10px;
}
.hamburger .hamburger_item.hamburger_list-child.other a::before {
  top: 50%;
  width: 5px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

/* hamburger is-open 挙動 */
.header:has(.is-open) {
  background-color: rgba(167, 211, 224, 0.9);
}
.header:has(.is-open) .hamburger_icon {
  background-color: unset;
}
.header:has(.is-open) .hamburger_icon::before {
  top: 0;
  width: 120%;
  transition: 0.3s;
  rotate: 45deg;
}
.header:has(.is-open) .hamburger_icon::after {
  top: 0;
  width: 120%;
  transition: 0.3s;
  rotate: -45deg;
}

/* stylelint-disable scss/load-no-partial-leading-underscore */
/* stylelint-disable comment-empty-line-before */
/* stylelint-disable no-descending-specificity */
/* stylelint-disable selector-class-pattern */
.footer {
  padding: 130px;
  background-color: white;
}
@media screen and (max-width: 760px) {
  .footer {
    padding: 50px 15px;
  }
}
.footerLayout {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: auto;
}
@media screen and (max-width: 760px) {
  .footerLayout {
    flex-direction: column-reverse;
  }
}
.footerLayout::before {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 1.5px;
  content: "";
  background-color: #263770;
}
@media screen and (max-width: 760px) {
  .footerLayout::before {
    content: none;
  }
}

@media screen and (max-width: 760px) {
  .footerNavi {
    margin-bottom: 50px;
  }
}
.footerNavi_item {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
@media screen and (max-width: 760px) {
  .footerNavi_item a {
    position: relative;
    display: block;
    padding: 12px 0;
    padding-right: 25px;
    margin: -1px 0;
    border-top: 1px solid #C4C4C4;
    border-bottom: 1px solid #C4C4C4;
  }
  .footerNavi_item a::before {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 6px;
    height: auto;
    aspect-ratio: 1;
    content: "";
    border-right: 2px solid #263770;
    border-bottom: 2px solid #263770;
    transform: translateY(-50%) rotate(-45deg);
  }
}
.footerNavi_list {
  display: flex;
  flex-flow: column wrap;
  gap: 15px 100px;
  min-width: 660px;
  height: 260px;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 760px) {
  .footerNavi_list {
    display: block;
    gap: 0;
    -moz-column-gap: 30px;
         column-gap: 30px;
    min-width: 100%;
    height: auto;
    font-size: 11px;
    -moz-column-count: 2;
         column-count: 2;
  }
}
.footerNavi_list-parentBox {
  font-size: 14px;
  font-weight: normal;
}
@media screen and (max-width: 760px) {
  .footerNavi_list-parentBox {
    font-size: 10px;
  }
}
.footerNavi_list-child {
  margin-top: 10px;
}
@media screen and (max-width: 760px) {
  .footerNavi_list-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 760px) {
  .footerNavi_list-child a {
    padding: 15px;
    padding-right: 0;
    border-top: none;
    border-bottom: none;
  }
  .footerNavi_list-child a::before {
    left: 5px;
    width: 7px;
    height: 1px;
    background-color: #C4C4C4;
    border: none;
    transform: translateY(-50%) rotate(0deg);
    rotate: none;
  }
}

.footerInfo {
  font-weight: bold;
  line-height: 2;
}
@media screen and (max-width: 760px) {
  .footerInfo {
    font-size: 11px;
    text-align: center;
  }
}
.footerInfo_name {
  margin-bottom: 30px;
}
@media screen and (max-width: 760px) {
  .footerInfo_name {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 760px) {
  .footerInfo_name img {
    height: 75px;
  }
}
.footerInfo_banner {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 760px) {
  .footerInfo_banner {
    justify-content: center;
    margin: 25px 0;
  }
}
.footerInfo_banner img {
  width: 25px;
}
@media screen and (max-width: 760px) {
  .footerInfo_banner img {
    width: 20px;
  }
}
.footerInfo_contact dt,
.footerInfo_contact dd {
  display: inline-block;
}

.copyRight {
  text-align: end;
}
@media screen and (max-width: 760px) {
  .copyRight {
    font-size: 9px;
    font-weight: bold;
    text-align: center;
  }
}

.topFooter {
  padding-bottom: 16%;
}

/* stylelint-disable selector-class-pattern */
.siteLayout {
  display: flex;
  flex-direction: row-reverse;
  gap: 50px;
  justify-content: flex-end;
  max-width: 1280px;
  padding-left: 4%;
  margin: auto;
}
@media screen and (max-width: 760px) {
  .siteLayout {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0;
  }
}
.siteContent {
  width: 790px;
}
@media screen and (max-width: 760px) {
  .siteContent {
    width: 100%;
    padding: 0 15px;
  }
}
.siteHeader {
  margin-bottom: 100px;
}
@media screen and (max-width: 760px) {
  .siteHeader {
    margin-bottom: 40px;
  }
}

.siteLayout-single {
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  padding-left: 0;
}
.siteLayout-single .siteContent {
  width: 100%;
}

.pageTitle {
  padding-top: 100px;
  font-weight: bold;
}
@media screen and (max-width: 760px) {
  .pageTitle {
    padding-top: 80px;
    margin-bottom: 30px;
  }
}
.pageTitle_text {
  position: relative;
  display: flex;
  gap: 34px;
  align-items: center;
  width: 1000px;
  height: 220px;
  margin: auto;
  color: #263770;
}
@media screen and (max-width: 760px) {
  .pageTitle_text {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
    width: 100%;
    height: auto;
    padding-right: 27px;
    padding-left: 38px;
  }
}
.pageTitle_text::before {
  position: absolute;
  left: -70px;
  z-index: 0;
  width: 138px;
  height: auto;
  aspect-ratio: 1;
  content: "";
  background-image: url("data:image/svg+xml;charset=utf8,%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20150%20150%22%3E%0A%20%20%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M86%206H64A88%2088%200%200%201%206%2064v22a88%2088%200%200%201%2058%2058h22a88%2088%200%200%201%2058-58V64A88%2088%200%200%201%2086%206M75%20133a103%20103%200%200%200-58-58%20103%20103%200%200%200%2058-58%20103%20103%200%200%200%2058%2058%20102%20102%200%200%200-58%2058%22%2F%3E%0A%3C%2Fsvg%3E");
}
@media screen and (max-width: 760px) {
  .pageTitle_text::before {
    top: -15px;
    left: 20px;
    width: 50px;
  }
}
.pageTitle_en {
  position: relative;
  font-family: "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 65px;
}
@media screen and (max-width: 760px) {
  .pageTitle_en {
    font-size: 20px;
  }
}
.pageTitle_ja {
  position: relative;
  padding: 10px 20px;
  font-size: 16px;
  border: 2px solid;
  border-radius: 50px;
}
@media screen and (max-width: 760px) {
  .pageTitle_ja {
    padding: 5px 10px;
    font-size: 11px;
  }
}
.pageTitle_ja::before {
  position: absolute;
  top: 50%;
  left: -14px;
  display: block;
  width: 12px;
  height: 1px;
  content: "";
  background-color: #263770;
  transform: translateY(-50%);
}
.pageTitle_img {
  text-align: center;
}
.pageTitle_img img {
  width: 100%;
  max-width: 1180px;
  margin-top: 50px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 30px;
}
@media screen and (max-width: 760px) {
  .pageTitle_img img {
    margin-top: 5px;
    border-radius: 0;
  }
}

.heading {
  position: relative;
  margin-bottom: 60px;
  font-size: 28px;
  color: #1D528B;
}
@media screen and (max-width: 760px) {
  .heading {
    margin-bottom: 30px;
    font-size: 21px;
  }
  .heading-typeA:has(.circleNumber) {
    font-size: 18px;
  }
}
.heading-typeA::before {
  position: absolute;
  bottom: -20px;
  width: 100%;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, #1D528B 50px, white 0%);
}
@media screen and (max-width: 760px) {
  .heading-typeA::before {
    bottom: -10px;
    height: 5px;
    background: linear-gradient(90deg, #1D528B 25px, white 0%);
  }
}
.heading-typeB {
  padding: 8px 15px;
  margin-top: 50px;
  margin-bottom: 40px;
  background: white;
  border-left: 5px solid;
}
@media screen and (max-width: 760px) {
  .heading-typeB {
    margin-top: 25px;
    margin-bottom: 20px;
  }
}
.heading-typeC {
  margin-bottom: 30px;
  font-size: 20px;
  color: black;
}
@media screen and (max-width: 760px) {
  .heading-typeC {
    margin-bottom: 15px;
    font-size: 15px;
  }
}
.heading-typeD {
  text-align: center;
}

.whiteBG {
  padding: 50px 50px 60px;
  margin-bottom: 100px;
  background: white;
  border-radius: 30px;
}
@media screen and (max-width: 760px) {
  .whiteBG {
    padding: 25px 22px 30px;
    margin-bottom: 50px;
    border-radius: 15px;
  }
}
.whiteBG .heading-typeA::before {
  background: linear-gradient(90deg, #1D528B 6%, #AFC2C9 0%);
}

.pageSub {
  background-color: #EFF5F7;
}

.paragraph {
  line-height: 1.7;
}

.paragraph_list {
  padding-left: 20px;
  list-style: disc;
}

.sectionTitle {
  z-index: 0;
  padding-top: 200px;
  margin-top: -200px;
}

.relatedPage {
  background: white;
}
.relatedPage_icon {
  position: absolute;
  bottom: 100px;
  left: 50%;
  z-index: 1;
  width: 45px;
  filter: invert(1);
  transform: translateX(-50%);
}
@media screen and (max-width: 760px) {
  .relatedPage_icon {
    bottom: 55px;
    width: 22px;
  }
}
.relatedPage_img {
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: #7ebbdf;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.relatedPage_container {
  padding: 100px 0;
}
@media screen and (max-width: 760px) {
  .relatedPage_container {
    padding: 25px 0;
  }
}
.relatedPage_title {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 30px;
  margin: auto;
  margin-bottom: 50px;
  font-size: 24px;
  font-weight: bold;
  color: #263770;
  text-align: center;
  border: 1px solid;
  border-radius: 30px;
}
@media screen and (max-width: 760px) {
  .relatedPage_title {
    padding: 5px 15px;
    margin-bottom: 25px;
    font-size: 12px;
    border-radius: 15px;
  }
}
.relatedPage_list {
  display: flex;
  flex-flow: row wrap;
  gap: 15px;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 760px) {
  .relatedPage_list {
    gap: 10px;
  }
}
.relatedPage_item {
  position: relative;
  width: 240px;
  max-width: 90%;
  height: 200px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 17px 10px rgba(29, 82, 139, 0.3);
}
@media screen and (max-width: 760px) {
  .relatedPage_item {
    width: 170px;
    height: 106px;
    border-radius: 15px;
    box-shadow: 0 8px 5px rgba(29, 82, 139, 0.3);
  }
}
.relatedPage_item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.relatedPage_item a::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: #1D528B;
  opacity: 0.5;
}
.relatedPage_item span {
  position: absolute;
  bottom: 50px;
  z-index: 1;
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  color: white;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .relatedPage_item span {
    bottom: 25px;
    font-size: 11px;
  }
}

.relatedPage-company .relatedPage_item {
  width: 492px;
}

/* hover */
.relatedPage_item a:hover {
  filter: none;
  opacity: 1;
}
.relatedPage_item a:hover::after {
  opacity: 0;
}
.relatedPage_item a:hover .relatedPage_img {
  transition: 0.3s;
  scale: 1.08;
}

.breadcrumb {
  margin: auto;
}
.breadcrumb_list {
  display: flex;
  gap: 20px 40px;
  width: 1000px;
  padding-left: 30px;
  margin: auto;
}
@media screen and (max-width: 760px) {
  .breadcrumb_list {
    flex-wrap: wrap;
    gap: 10px 20px;
    width: calc(100% - 30px);
    padding-left: 15px;
  }
}
.breadcrumb .categoryHeading.is-active {
  position: relative;
  width: 1000px;
  padding-left: 25px;
  margin: auto;
  margin-top: 70px;
  font-size: 28px;
  color: #1D528B;
}
@media screen and (max-width: 760px) {
  .breadcrumb .categoryHeading.is-active {
    width: calc(100% - 30px);
    padding-left: 15px;
    margin-top: 20px;
    font-size: 14px;
  }
}
.breadcrumb .categoryHeading.is-active::before {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 5px;
  height: 27px;
  content: "";
  background: #1D528B;
}
@media screen and (max-width: 760px) {
  .breadcrumb .categoryHeading.is-active::before {
    bottom: 2px;
    width: 2px;
    height: 14px;
  }
}
.breadcrumb_item {
  display: inline;
  font-size: 12px;
  font-weight: bold;
}
@media screen and (max-width: 760px) {
  .breadcrumb_item {
    font-size: 11px;
  }
}
.breadcrumb_item:not(:last-child) {
  position: relative;
}
.breadcrumb_item:not(:last-child)::before {
  position: absolute;
  right: -20px;
  width: 2px;
  height: 100%;
  content: "";
  background: #AFC2C9;
}
@media screen and (max-width: 760px) {
  .breadcrumb_item:not(:last-child)::before {
    right: -10px;
  }
}
.breadcrumb_itemLink {
  transition: opacity 0.6s;
}
.breadcrumb_itemLink:hover {
  opacity: 0.6;
}
.breadcrumb_itemLink:nth-last-child(n+2)::after {
  display: inline-block;
  width: 5px;
  height: 5px;
  vertical-align: 3px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
}
.breadcrumb_itemLink-top {
  color: #AFC2C9;
}

/* stylelint-disable scss/load-no-partial-leading-underscore */
/* stylelint-disable comment-empty-line-before */
/* stylelint-disable no-descending-specificity */
/* stylelint-disable selector-class-pattern */
/* stylelint-disable selector-attribute-quotes */
.sideMenu_container {
  position: sticky;
  top: 150px;
  width: 250px;
  margin-bottom: 100px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 760px) {
  .sideMenu_container {
    width: calc(100% - 30px);
    margin: auto;
    margin-bottom: 50px;
  }
}
.sideMenu_title {
  padding: 20px;
  margin: 0;
  font-family: "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: #1D528B;
  border-radius: 10px;
}
@media screen and (max-width: 760px) {
  .sideMenu_title {
    padding: 15px 0 15px 22px;
    font-size: 16px;
  }
}
.sideMenu_list {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  list-style: none;
}
@media screen and (max-width: 760px) {
  .sideMenu_list {
    font-size: 11px;
  }
}
.sideMenu_item {
  position: relative;
}
.sideMenu_item a {
  display: block;
  padding: 30px 0 25px 15px;
}
@media screen and (max-width: 760px) {
  .sideMenu_item a {
    width: 100%;
    padding: 15px 17px 15px 22px;
  }
}
.sideMenu_item a::before {
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 2;
  display: block;
  width: 14px;
  height: 14px;
  content: "";
  background-image: url("/wp-content/themes/template/svg/icon_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}
.sideMenu_item a[target=_blank]::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.3 12.3"><g fill="%23AFC2C9"><path d="M11.2 6.6a.6.6 0 0 0-.6.6v3a.9.9 0 0 1-.9.9H2.1a.9.9 0 0 1-.9-.9V2.6a.9.9 0 0 1 .9-1h3a.6.6 0 0 0 0-1.1h-3a2 2 0 0 0-2.1 2v7.7a2 2 0 0 0 2 2.1h7.7a2 2 0 0 0 2.1-2V7.1a.6.6 0 0 0-.6-.6"/><path d="M11.2 0H7.9a.6.6 0 0 0 0 1.2h2.3L3.4 8.1a.6.6 0 0 0 0 .8.6.6 0 0 0 .8 0l6.9-6.8v2.3a.6.6 0 0 0 1.2 0V1.1A1.1 1.1 0 0 0 11.2 0"/></g></svg>');
}
.sideMenu_item:not(:last-child)::after {
  position: absolute;
  bottom: 0;
  width: 250px;
  height: 1px;
  content: "";
  background-color: lightgray;
}
@media screen and (max-width: 760px) {
  .sideMenu_item:not(:last-child)::after {
    width: 100%;
  }
}

.postSideMenu {
  position: sticky;
  top: 150px;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 100px;
  font-weight: bold;
}
@media screen and (max-width: 760px) {
  .postSideMenu {
    margin-bottom: 50px;
  }
}
.postSideMenu_container {
  width: 250px;
}
@media screen and (max-width: 760px) {
  .postSideMenu_container {
    width: calc(100% - 30px);
    margin: auto;
  }
}
.postSideMenu_title {
  padding: 20px;
  margin: 0;
  font-family: "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #1D528B;
  background-color: white;
  border-radius: 10px;
}
@media screen and (max-width: 760px) {
  .postSideMenu_title {
    padding: 15px 0 15px 22px;
    font-size: 16px;
  }
}
.postSideMenu_list {
  margin: 0;
  font-size: 16px;
  color: #AFC2C9;
  list-style: none;
}
@media screen and (max-width: 760px) {
  .postSideMenu_list {
    font-size: 11px;
  }
}
.postSideMenu_item {
  position: relative;
}
.postSideMenu_item a {
  display: block;
  padding: 30px 0 30px 35px;
}
@media screen and (max-width: 760px) {
  .postSideMenu_item a {
    padding: 15px 0 15px 35px;
  }
}
.postSideMenu_item.is-selected {
  color: black;
}
.postSideMenu_item.is-selected a {
  position: relative;
}
@media screen and (max-width: 760px) {
  .postSideMenu_item.is-selected a {
    width: 100%;
  }
}
.postSideMenu_item.is-selected a::before {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 15px;
  height: auto;
  aspect-ratio: 1;
  content: "";
  background-image: url("/wp-content/themes/template/svg/icon_symbolOuter.svg");
  transform: translateY(-50%);
}

.card {
  margin-bottom: 40px;
  background-color: white;
  border-radius: 30px;
  box-shadow: 0 17px 10px 0 hsla(211, 65%, 33%, 0.3);
}
@media screen and (max-width: 760px) {
  .card {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 5px 0 hsla(211, 65%, 33%, 0.3);
  }
}
.card_container {
  display: flex;
  height: 100%;
}
@media screen and (max-width: 760px) {
  .card_container {
    flex-direction: column;
    align-items: center;
  }
}
.card_text {
  max-width: 440px;
  padding: 50px;
}
@media screen and (max-width: 760px) {
  .card_text {
    max-width: 100%;
    padding: 30px 22px;
  }
}
.card_title {
  position: relative;
  margin-bottom: 35px;
  font-size: 24px;
  color: #1D528B;
}
@media screen and (max-width: 760px) {
  .card_title {
    margin-bottom: 17px;
    font-size: 22px;
  }
}
.card_title::after {
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #CCC;
}
@media screen and (max-width: 760px) {
  .card_title::after {
    bottom: -11px;
  }
}
.card_description {
  margin-bottom: 40px;
  font-size: 15px;
  line-height: 2;
}
@media screen and (max-width: 760px) {
  .card_description {
    margin-bottom: 20px;
    font-size: 11px;
  }
}
.card_img {
  width: 350px;
  overflow: hidden;
  border-radius: 30px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
@media screen and (max-width: 760px) {
  .card_img {
    width: 100%;
    height: 370px;
    border-radius: 0;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
  }
}
.card_img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.card_btnWrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 760px) {
  .card_btnWrap:has(> :nth-child(2)) {
    flex-flow: row wrap;
  }
  .card_btnWrap:has(.card_sns) {
    flex-flow: column;
    align-items: center;
  }
}
.card_btn a {
  position: relative;
  display: block;
  width: 240px;
  max-width: 100%;
  padding: 13px;
  font-size: 14px;
  font-weight: bold;
  color: white;
  text-align: center;
  background: #212121;
  border-radius: 30px;
}
@media screen and (max-width: 760px) {
  .card_btn a {
    width: auto;
    min-width: 145px;
    max-width: 195px;
    height: 50px;
    padding: 20px;
    margin: auto;
    font-size: 11px;
    border-radius: 100px;
  }
}
.card_btn a::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: auto;
  aspect-ratio: 33/50;
  content: "";
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2012.1%2018.4%22%3E%0A%20%20%3Cpath%20fill%3D%22white%22%20d%3D%22m12.1%209.2-9.3%209.2L0%2015.7l6.5-6.5L0%202.7%202.8%200Z%22%2F%3E%0A%3C%2Fsvg%3E");
  background-size: cover;
  transition: 0.3s;
  transform: translateY(-50%);
}
.card_btn a[target=_blank]::after {
  width: 15px;
  aspect-ratio: 1;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.3 12.3"><g fill="%23fff"><path d="M11.2 6.6a.6.6 0 0 0-.6.6v3a.9.9 0 0 1-.9.9H2.1a.9.9 0 0 1-.9-.9V2.6a.9.9 0 0 1 .9-1h3a.6.6 0 0 0 0-1.1h-3a2 2 0 0 0-2.1 2v7.7a2 2 0 0 0 2 2.1h7.7a2 2 0 0 0 2.1-2V7.1a.6.6 0 0 0-.6-.6"/><path d="M11.2 0H7.9a.6.6 0 0 0 0 1.2h2.3L3.4 8.1a.6.6 0 0 0 0 .8.6.6 0 0 0 .8 0l6.9-6.8v2.3a.6.6 0 0 0 1.2 0V1.1A1.1 1.1 0 0 0 11.2 0"/></g></svg>');
  background-repeat: no-repeat;
  background-size: contain;
}
.card-typeC {
  background: none;
  box-shadow: none;
}
@media screen and (max-width: 760px) {
  .card-typeC {
    margin-bottom: 50px;
  }
}
.card-typeC .card_container {
  flex-direction: row-reverse;
}
@media screen and (max-width: 760px) {
  .card-typeC .card_container {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 760px) {
  .card-typeC .card_title {
    text-align: center;
  }
}
.card-typeC .card_img {
  border-radius: 30px;
}
@media screen and (max-width: 760px) {
  .card-typeC .card_img {
    border-radius: 30px;
  }
}
.card-typeC .card_text {
  padding: 20px 0 0 50px;
}
@media screen and (max-width: 760px) {
  .card-typeC .card_text {
    padding: 20px 0;
  }
}
.card-typeC .card_snsList {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media screen and (max-width: 760px) {
  .card-typeC .card_snsList {
    gap: 0;
    justify-content: space-between;
    margin-top: 20px;
  }
}
@media screen and (max-width: 760px) {
  .card-typeC .card_snsItem {
    width: 65px;
  }
}
@media screen and (max-width: 760px) and (max-width: 760px) {
  .card-typeC .card_snsItem img {
    width: 100%;
  }
}
.card-typeC .uniqueTitle {
  font-size: 20px;
  color: black;
}
@media screen and (max-width: 760px) {
  .card-typeC .uniqueTitle {
    text-align: center;
  }
}
.card-typeC .uniqueTitle img {
  height: 80px;
  mix-blend-mode: darken;
}
.card-typeC .uniqueTitle_text {
  display: block;
  margin-bottom: 21px;
}
.card-typeD {
  position: relative;
  margin-bottom: 80px;
}
@media screen and (max-width: 760px) {
  .card-typeD {
    margin-top: 30px;
  }
}
.card-typeD .card_container {
  flex-direction: column-reverse;
}
.card-typeD .card_img {
  width: 100%;
  height: 370px;
  border-radius: 0 30px 0 0;
}
@media screen and (max-width: 760px) {
  .card-typeD .card_img {
    height: 185px;
    border-radius: 0 15px 0 0;
  }
}
.card-typeD .card_text {
  width: auto;
  max-width: 100%;
}
.card-typeD .card_title {
  position: absolute;
  top: -40px;
  left: 0;
  z-index: 1;
  display: flex;
  gap: 20px;
  align-items: center;
  width: 470px;
  height: 140px;
  padding: 20px;
  background: #1D528B;
  border-radius: 30px;
}
@media screen and (max-width: 760px) {
  .card-typeD .card_title {
    gap: 10px;
    width: 280px;
    height: 70px;
    padding: 10px;
    border-radius: 15px;
  }
}
.card-typeD .card_icon {
  display: block;
  width: 90px;
  padding: 26px;
  background: #d2e7ed;
  border-radius: 50%;
}
@media screen and (max-width: 760px) {
  .card-typeD .card_icon {
    width: 55px;
    padding: 13px;
  }
}
.card-typeD .card_icon img {
  filter: invert(15%) sepia(71%) saturate(1390%) hue-rotate(191deg) brightness(107%) contrast(113%);
}
.card-typeD .card_title_text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 760px) {
  .card-typeD .card_title_text {
    gap: 7px;
  }
}
.card-typeD .card_title_text-ja {
  padding-left: 10px;
  color: white;
}
@media screen and (max-width: 760px) {
  .card-typeD .card_title_text-ja {
    padding-left: 5px;
    font-size: 12px;
  }
}
.card-typeD .card_title_text-en {
  font-size: 12px;
  color: #EA5B29;
}
@media screen and (max-width: 760px) {
  .card-typeD .card_title_text-en {
    font-size: 6px;
  }
}
.card-typeD .card_title::after {
  content: none;
}
.card-typeD .card_btnWrap {
  align-items: center;
}
.card-typeD .card_description {
  font-weight: bold;
  text-align: center;
}

/* hover */
.card:has(a:hover) .card_img img {
  transition: 0.3s;
  scale: 1.1;
}

.card_btn a:hover::after {
  transition: 0.3s;
  transform: translateY(-50%) translateX(5px);
}

.contact {
  padding: 120px;
  font-weight: bold;
  color: white;
  text-align: center;
  background: #212121;
}
@media screen and (max-width: 760px) {
  .contact {
    padding: 50px 0;
  }
}
.contact_title {
  margin-bottom: 50px;
}
@media screen and (max-width: 760px) {
  .contact_title {
    margin-bottom: 25px;
  }
}
.contact_title-en {
  display: block;
  margin-bottom: 20px;
  font-size: 55px;
}
@media screen and (max-width: 760px) {
  .contact_title-en {
    margin-bottom: 10px;
    font-size: 32px;
  }
}
.contact_title-ja {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 135px;
  height: 36px;
  margin: auto;
  border: 1px solid;
  border-radius: 30px;
}
@media screen and (max-width: 760px) {
  .contact_title-ja {
    width: 91px;
    height: 24px;
    font-size: 11px;
  }
}
.contact_title-ja::before {
  position: absolute;
  top: -27px;
  width: 2px;
  height: 27px;
  content: "";
  background: white;
}
@media screen and (max-width: 760px) {
  .contact_title-ja::before {
    top: -13px;
    height: 12px;
  }
}
.contact_description {
  max-width: 650px;
  margin: auto;
  margin-bottom: 50px;
  line-height: 2;
}
@media screen and (max-width: 760px) {
  .contact_description {
    width: 95%;
    margin-bottom: 25px;
  }
}
.contact_btn {
  display: flex;
  gap: 50px;
  justify-content: center;
}
@media screen and (max-width: 760px) {
  .contact_btn {
    flex-direction: column;
    gap: 15px;
    max-width: 90%;
    margin: auto;
    font-size: 15px;
  }
}
.contact_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 60px;
  padding: 0 60px;
  font-family: "源ノ角ゴシック JP";
  font-weight: bold;
  border-radius: 100px;
}
.contact_btn-tell a {
  color: #212121;
  background: white;
}
.contact_btn-tell img {
  width: 23px;
  margin-right: 10px;
  filter: invert(1);
}
.contact_btn-mail a {
  border: 2px solid white;
  border-radius: 100px;
}
.contact_btn-mail img {
  width: 29px;
  margin-right: 10px;
  filter: invert(1);
}

/* stylelint-disable scss/load-no-partial-leading-underscore */
/* stylelint-disable comment-empty-line-before */
/* stylelint-disable no-descending-specificity */
/* stylelint-disable selector-class-pattern */
.btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 315px;
  height: 60px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background: #212121;
  border-radius: 40px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.btn a::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 12px;
  height: auto;
  aspect-ratio: 33/50;
  content: "";
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2012.1%2018.4%22%3E%0A%20%20%3Cpath%20fill%3D%22white%22%20d%3D%22m12.1%209.2-9.3%209.2L0%2015.7l6.5-6.5L0%202.7%202.8%200Z%22%2F%3E%0A%3C%2Fsvg%3E");
  background-size: cover;
  transform: translateY(-50%);
}
@media screen and (max-width: 760px) {
  .btn a::after {
    right: 10px;
    width: 9px;
  }
}

.btn-blue a {
  background-color: #263770;
}

.btn-green a {
  background-color: #267037;
}

.btn-white a {
  color: #263770;
  background-color: white;
}
@media screen and (max-width: 760px) {
  .btn-white a {
    margin: auto;
  }
}
.btn-white a::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2012.1%2018.4%22%3E%0A%20%20%3Cpath%20fill%3D%22%23263770%22%20d%3D%22m12.1%209.2-9.3%209.2L0%2015.7l6.5-6.5L0%202.7%202.8%200Z%22%2F%3E%0A%3C%2Fsvg%3E");
}

.btn-typeB {
  width: -moz-fit-content;
  width: fit-content;
  margin: 80px auto 100px;
}
@media screen and (max-width: 760px) {
  .btn-typeB {
    width: 100%;
    margin: 30px 0 60px;
  }
}
.btn-typeB a {
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: 520px;
  height: auto;
  padding: 20px;
  border-radius: 500px;
}
@media screen and (max-width: 760px) {
  .btn-typeB a {
    gap: 5px;
    width: 100%;
    height: auto;
    padding: 10px;
  }
}
.btn-typeB a::after {
  content: none;
}

.btn_number {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-family: "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 38px;
  font-weight: bold;
}
@media screen and (max-width: 760px) {
  .btn_number {
    gap: 5px;
    font-size: 19px;
  }
}
.btn_number img {
  width: 25px;
}
@media screen and (max-width: 760px) {
  .btn_number img {
    width: 12px;
  }
}

.btn_text {
  padding-bottom: 6px;
  font-size: 14px;
  font-weight: normal;
  border-bottom: 1px solid;
}

.btn_text-bold {
  padding-bottom: 6px;
  font-size: 16px;
  border-bottom: 1px solid;
}
@media screen and (max-width: 760px) {
  .btn_text-bold {
    font-size: 14px;
  }
}

/* salse contact */
.btn-salesContact {
  margin-bottom: 100px;
}
@media screen and (max-width: 760px) {
  .btn-salesContact {
    margin-bottom: 50px;
  }
}
.btn-salesContact a {
  width: 100%;
  height: auto;
  padding: 45px;
  background-color: #263770;
}
@media screen and (max-width: 760px) {
  .btn-salesContact a {
    padding: 22px;
  }
}
.btn-salesContact a::after {
  content: none;
}
.btn-salesContact_wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 480px;
  margin: auto;
}
@media screen and (max-width: 760px) {
  .btn-salesContact_wrapper {
    gap: 10px;
    width: 230px;
  }
}
.btn-salesContact .btn_text,
.btn-salesContact .btn_text-bold {
  width: 100%;
  padding: 0;
  font-size: 14px;
  text-align: center;
  border: none;
}
@media screen and (max-width: 760px) {
  .btn-salesContact .btn_text,
  .btn-salesContact .btn_text-bold {
    font-size: 11px;
    line-height: 1.7;
    letter-spacing: -1px;
  }
}
.btn-salesContact .btn_number {
  width: 100%;
  padding: 10px 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
}
@media screen and (max-width: 760px) {
  .btn-salesContact .btn_number {
    padding: 5px 0;
  }
}
.btn-salesContact .btn_text-enhance {
  display: inline-block;
  padding: 7px 12px;
  margin: 0 7px;
  color: #1D528B;
  background: white;
  border-radius: 30px;
}
@media screen and (max-width: 760px) {
  .btn-salesContact .btn_text-enhance {
    padding: 4px 7px;
    margin: 0 3px;
    line-height: 1.7;
    border-radius: 30px;
  }
}
.btn-salesContact .btn_text-enhance-full {
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn-center a {
  margin: auto;
}

/* stylelint-disable scss/load-no-partial-leading-underscore */
/* stylelint-disable comment-empty-line-before */
/* stylelint-disable no-descending-specificity */
/* stylelint-disable selector-class-pattern */
.pagenation {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  height: 200px;
  font-family: "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #263770;
}
@media screen and (max-width: 760px) {
  .pagenation {
    height: 100px;
  }
}
.pagenation_arrow a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: auto;
  aspect-ratio: 1;
  background: white;
  border: 2px solid #263770;
  border-radius: 50%;
}
.pagenation_numbers a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: auto;
  aspect-ratio: 1;
  background: white;
  border-radius: 100%;
}
.pagenation_numbers.current a {
  color: white;
  background-color: #263770;
}

.next {
  margin-left: 50px;
}

.prev {
  margin-right: 50px;
}

.table th {
  align-items: flex-start;
  width: 200px;
  color: white;
  text-align: center;
  vertical-align: middle;
  background: #1d528b;
  border-bottom: 1px solid;
}
@media screen and (max-width: 760px) {
  .table th {
    width: 100px;
  }
}
.table td {
  padding: 20px;
  line-height: 2;
  vertical-align: middle;
  background: white;
  border-bottom: 1px solid #CCC;
}
.table td a {
  color: blue;
  text-decoration: underline;
  word-break: break-all;
}
.table table {
  width: 100%;
  margin: 0 0 30px;
  overflow: hidden;
  background: #CCC;
  border: 1px solid #CCC;
  border-radius: 10px;
}
@media screen and (max-width: 760px) {
  .table table {
    border-radius: 5px;
  }
}
.table-typeB th {
  width: 315px;
  padding: 30px;
  font-weight: normal;
  line-height: 2;
  text-align: left;
}
@media screen and (max-width: 760px) {
  .table-typeB th {
    width: 157px;
    padding: 15px;
  }
}
.table-typeC {
  margin-bottom: 35px;
}
.table-typeC table {
  table-layout: fixed;
}
.table-typeC th {
  width: auto;
  min-width: 124px;
  height: 66px;
  padding-left: 50px;
  text-align: justify;
  border-right: 2px solid white;
}
@media screen and (max-width: 760px) {
  .table-typeC th {
    padding-left: 12px;
  }
}
.table-typeC th:first-child {
  width: 234px;
}
@media screen and (max-width: 760px) {
  .table-typeC th:first-child {
    width: auto;
  }
}
.table-typeC th:last-child {
  width: 265px;
  border: none;
}
@media screen and (max-width: 760px) {
  .table-typeC th:last-child {
    width: auto;
  }
}
.table-typeC td {
  padding: 20px;
  border: 2px solid #E6E8E8;
}
@media screen and (max-width: 760px) {
  .table-typeC td {
    padding: 10px;
  }
}
.table-typeC .table_tell a {
  display: flex;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  color: black;
  text-decoration: none;
  border-bottom: 1px solid lightgray;
}
@media screen and (max-width: 760px) {
  .table-typeC .table_tell a {
    font-size: 10px;
  }
}
.table-typeC .table_tell a img {
  width: 16px;
  filter: invert(0.8);
}
@media screen and (max-width: 760px) {
  .table-typeC .table_tell a img {
    width: 8px;
  }
}

/* stylelint-disable scss/load-no-partial-leading-underscore */
/* stylelint-disable comment-empty-line-before */
/* stylelint-disable no-descending-specificity */
/* stylelint-disable selector-class-pattern */
.grid_container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  justify-items: center;
}
@media screen and (max-width: 760px) {
  .grid_container {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}
.grid_item {
  font-weight: bold;
  text-align: center;
}
.grid_img {
  width: 230px;
  overflow: hidden;
  border-radius: 30px;
}
@media screen and (max-width: 760px) {
  .grid_img {
    width: 100%;
  }
}
.grid_img img {
  width: 100%;
}
.grid_title {
  margin-top: 15px;
}

.post.columnPage {
  max-width: 700px;
}
@media screen and (max-width: 760px) {
  .post.columnPage {
    width: 100%;
    padding: 0 15px;
  }
}
.post.columnPage .wp-block-paragraph {
  font-size: 18px;
}
@media screen and (max-width: 760px) {
  .post.columnPage .wp-block-paragraph {
    font-size: 11px;
  }
}
.post.columnPage h2.wp-block-heading {
  position: relative;
  padding-left: 0;
  color: #1D528B;
  border: none;
}
.post.columnPage h3.wp-block-heading {
  position: relative;
  padding-left: 15px;
  margin-bottom: 30px;
  font-size: 20px;
  color: #1D528B;
  border-left: 5px solid #1D528B;
}

.post {
  max-width: 900px;
  margin: auto;
}
@media screen and (max-width: 760px) {
  .post {
    width: 100%;
    padding: 0 15px;
  }
}
.post_thumbnail {
  max-width: 100%;
  margin-bottom: 50px;
}
.post_thumbnail img {
  width: 100%;
  height: 100%;
}
.post_header {
  position: relative;
  padding: 20px 0 20px 50px;
  margin-bottom: 50px;
  font-weight: bold;
  background: white;
}
@media screen and (max-width: 760px) {
  .post_header {
    padding: 10px 0 10px 25px;
    margin-bottom: 25px;
  }
}
.post_header::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  content: "";
  background-color: #263770;
}
.post_cat a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px 40px;
  font-size: 13px;
  color: white;
  background: #AFC2C9;
  border-radius: 5px;
}
@media screen and (max-width: 760px) {
  .post_cat a {
    padding: 3px 20px;
    font-size: 11px;
  }
}
.post_cat-blue a {
  background: #263770;
}
.post_heading {
  padding-right: 30px;
  margin: 15px 0;
  font-size: 30px;
}
@media screen and (max-width: 760px) {
  .post_heading {
    padding-right: 15px;
    margin: 7px;
    font-size: 18px;
  }
}
.post_time {
  display: inline;
  padding-left: 5px;
  font-family: "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 14px;
  color: #AFC2C9;
}
@media screen and (max-width: 760px) {
  .post_time {
    font-size: 11px;
  }
}
.post .btn a {
  height: 50px;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 100px;
}
@media screen and (max-width: 760px) {
  .post .btn a {
    max-width: 230px;
    height: 55px;
    margin-top: 25px;
    margin-bottom: 50px;
    font-size: 11px;
  }
}

figure.wp-block-image {
  margin-bottom: 50px;
}
@media screen and (max-width: 760px) {
  figure.wp-block-image {
    margin-bottom: 25px;
  }
}
figure.wp-block-image.size-full {
  text-align: center;
}

h2.wp-block-heading {
  position: relative;
  padding-left: 15px;
  margin-bottom: 40px;
  font-size: 24px;
  color: #1D528B;
  border-left: 5px solid #1D528B;
}
@media screen and (max-width: 760px) {
  h2.wp-block-heading {
    padding-left: 7px;
    margin-bottom: 20px;
    font-size: 15px;
  }
}

h3.wp-block-heading {
  position: relative;
  padding-left: 15px;
  margin-bottom: 30px;
  font-size: 20px;
  color: #1D528B;
  border-left: 5px solid #1D528B;
}
@media screen and (max-width: 760px) {
  h3.wp-block-heading {
    padding-left: 7px;
    margin-bottom: 15px;
    font-size: 12px;
  }
}

.wp-block-paragraph {
  margin-bottom: 50px;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 760px) {
  .wp-block-paragraph {
    margin-bottom: 25px;
    font-size: 11px;
  }
}

figure.wp-block-image img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.news {
  margin-bottom: 100px;
}
.news_title a {
  display: flex;
  align-items: center;
  width: 450px;
  height: 90px;
}
@media screen and (max-width: 760px) {
  .news_title a {
    width: 100%;
    height: 40px;
    font-size: 10px;
  }
}
.news_info {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media screen and (max-width: 760px) {
  .news_info {
    gap: 12px;
  }
}
.news_time {
  font-family: cursive;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 760px) {
  .news_time {
    font-size: 9px;
  }
}
.news_cat a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 145px;
  height: 30px;
  font-size: 14px;
  font-weight: bold;
  color: white;
  background: #AFC2C9;
  border-radius: 6px;
}
@media screen and (max-width: 760px) {
  .news_cat a {
    width: 95px;
    font-size: 9px;
  }
}
.news_item {
  display: flex;
  gap: 80px;
  align-items: center;
  height: 100px;
  border-bottom: 2px solid #C4C4C4;
  -o-border-image: linear-gradient(to right, #212121 35%, #C4C4C4 0%);
     border-image: linear-gradient(to right, #212121 35%, #C4C4C4 0%);
  border-image-slice: 1;
}
@media screen and (max-width: 760px) {
  .news_item {
    gap: 9px;
    height: 60px;
    border-bottom: 1px solid #C4C4C4;
    -o-border-image: linear-gradient(to right, #212121 45%, #C4C4C4 0%);
       border-image: linear-gradient(to right, #212121 45%, #C4C4C4 0%);
    border-image-slice: 1;
  }
}
.news_item:first-child {
  border-top: 2px solid #C4C4C4;
}
@media screen and (max-width: 760px) {
  .news_item:first-child {
    border-top: 1px solid #C4C4C4;
  }
}

.wp-block-paragraph a {
  color: blue;
  text-decoration: underline;
  word-break: break-word;
}

.contactForm_title {
  display: flex;
  justify-content: space-between;
  width: 235px;
  margin-right: 50px;
}
@media screen and (max-width: 425px) {
  .contactForm_title {
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
  }
}
.contactForm_input {
  flex-direction: row-reverse;
  padding-bottom: 48px;
}
@media screen and (max-width: 425px) {
  .contactForm_input {
    display: block;
    padding-bottom: 24px;
  }
  .contactForm_input:has(.contactForm_policyCheck) {
    text-align: center;
  }
}
.contactForm_input input {
  padding: 13px;
  padding-left: 20px;
  margin-bottom: 10px;
  border: 1px solid #A5A5A5;
  border-radius: 5px;
}
@media screen and (max-width: 425px) {
  .contactForm_input input {
    display: block;
    width: 100%;
  }
}
.contactForm_input textarea {
  width: 100%;
  height: 270px;
  padding: 13px;
  padding-left: 20px;
  border: 1px solid #A5A5A5;
  border-radius: 5px;
}
.contactForm_policyCheck {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contactForm_btn input {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 430px;
  height: 85px;
  margin: auto;
  color: white;
  background: #1d528b;
  border-radius: 500px;
}
@media screen and (max-width: 425px) {
  .contactForm_btn input {
    width: 100%;
    height: 55px;
  }
}
.contactForm .must {
  padding: 5px 20px;
  font-size: 14px;
  font-weight: bold;
  color: white;
  background: #1d528b;
  border-radius: 60px;
}
@media screen and (max-width: 760px) {
  .contactForm .must {
    padding: 3px 10px;
    font-size: 8px;
  }
}
.contactForm .wpcf7-form-control.wpcf7-radio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 425px) {
  .contactForm .wpcf7-form-control.wpcf7-radio {
    grid-template-columns: 1fr;
  }
}
.contactForm .wpcf7-list-item-label {
  margin-left: 10px;
}
.contactForm input[type=radio] {
  margin: 0;
}
@media screen and (max-width: 425px) {
  .contactForm input[type=radio] {
    display: inline;
    width: auto;
  }
}

.contactForm_input:has(.contactForm_policyCheck) input {
  display: inline-block;
  width: auto;
  margin-bottom: 5px;
}

.column {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 790px;
}
@media screen and (max-width: 760px) {
  .column {
    gap: 10px;
    justify-content: center;
    width: 100%;
  }
}
.column_item {
  width: 385px;
  background-position: center;
  background-size: cover;
  border-radius: 30px;
  box-shadow: 0 17px 10px rgba(29, 82, 139, 0.4);
}
@media screen and (max-width: 760px) {
  .column_item {
    width: 285px;
    border-radius: 15px;
    box-shadow: 0 8px 5px rgba(29, 82, 139, 0.4);
  }
}
.column_item a {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 256px;
  padding: 25px;
}
@media screen and (max-width: 760px) {
  .column_item a {
    height: 175px;
    padding: 12px;
  }
}
.column_time {
  margin-bottom: 10px;
  font-family: "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 12px;
  font-weight: bold;
  color: white;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.7);
}
.column_cat {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: auto;
  height: 31px;
  font-size: 14px;
  font-weight: bold;
  color: white;
  background: #263770;
  border-radius: 5px;
}
.column_title {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding-left: 16px;
  font-size: 15px;
  font-weight: bold;
  color: #263770;
  background: white;
  border-radius: 5px;
}
.column_title_text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.relatedPage .column {
  width: 1000px;
}
@media screen and (max-width: 760px) {
  .relatedPage .column {
    width: 100%;
  }
}
.relatedPage .column_item {
  width: 300px;
  height: 200px;
}
.relatedPage .column_item a {
  height: 100%;
}
.relatedPage .column_cat {
  width: 120px;
  height: 24px;
  font-size: 12px;
}

.pickup {
  width: 1000px;
  margin: auto;
  margin-bottom: 90px;
}
@media screen and (max-width: 760px) {
  .pickup {
    width: 100%;
    margin-bottom: 0;
  }
}
.pickup .column-pickup {
  display: flex;
  justify-content: space-between;
  width: 1000px;
}
@media screen and (max-width: 760px) {
  .pickup .column-pickup {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
  }
}
.pickup .column_item {
  position: relative;
  width: 470px;
}
@media screen and (max-width: 760px) {
  .pickup .column_item {
    width: 285px;
  }
}
.pickup .column_item a {
  height: 350px;
}
@media screen and (max-width: 760px) {
  .pickup .column_item a {
    height: 175px;
  }
}
.pickup .column_item::before {
  position: absolute;
  top: -40px;
  left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: auto;
  aspect-ratio: 1;
  font-family: "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 19px;
  font-weight: bold;
  line-height: 1.7;
  color: white;
  text-align: center;
  white-space: pre;
  content: "PICK \aUP!";
  background-color: #ea5b29;
  border-radius: 50%;
}
@media screen and (max-width: 760px) {
  .pickup .column_item::before {
    top: -20px;
    left: -5px;
    width: 52px;
    font-size: 11px;
  }
}

.tableOfContents_container {
  padding: 30px 40px 45px;
  margin-bottom: 60px;
  font-weight: bold;
  background: white;
  border-radius: 30px;
}
@media screen and (max-width: 760px) {
  .tableOfContents_container {
    padding: 15px 20px 22px;
    margin-bottom: 30px;
    border-radius: 15px;
  }
}
.tableOfContents_title {
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 760px) {
  .tableOfContents_title {
    margin-bottom: 10px;
  }
}
.tableOfContents_item {
  position: relative;
  padding-left: 20px;
  border-top: 1px solid #CCC;
}
@media screen and (max-width: 760px) {
  .tableOfContents_item {
    padding-left: 10px;
  }
}
.tableOfContents_item::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 8px;
  height: auto;
  aspect-ratio: 1;
  content: "";
  background: #98A6B5;
  border-radius: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 760px) {
  .tableOfContents_item::before {
    width: 4px;
  }
}
.tableOfContents_item a {
  display: block;
  padding: 15px 0;
}
@media screen and (max-width: 760px) {
  .tableOfContents_item a {
    padding: 7px 0;
  }
}
.tableOfContents_item:last-child {
  border-bottom: 1px solid #CCC;
}

/* stylelint-disable no-descending-specificity */
/* TOPPAGE */
body:has(.page_top) {
  background-color: #A7D3E0;
}

.hero {
  position: relative;
  height: 100vh;
  background-image: url("/wp-content/uploads/topPage_hero_background_1.webp");
  background-position: bottom;
  background-size: cover;
}
@media screen and (max-width: 760px) {
  .hero {
    background-image: url("/wp-content/uploads/sp_top_hero.webp");
  }
}
.hero_catch {
  position: absolute;
  top: 30%;
  width: 100%;
  font-weight: bold;
  color: #263770;
  text-align: center;
}
.hero_catch-main {
  margin-bottom: 20px;
  font-size: 70px;
}
@media screen and (max-width: 760px) {
  .hero_catch-main {
    font-size: 30px;
  }
}
.hero_catch-sub {
  font-size: 23px;
}
@media screen and (max-width: 760px) {
  .hero_catch-sub {
    font-size: 11px;
    line-height: 2;
  }
}

.stickyLady {
  position: fixed;
  bottom: 0;
  z-index: 29;
  width: 100%;
}
.stickyLady img {
  width: 100%;
}
.stickyLady .body_lady {
  position: absolute;
  bottom: -0.5px;
  left: 50%;
  width: 23%;
  margin: auto;
  text-align: center;
  transform: translateX(-50%);
}

.loopText {
  margin-bottom: 100px;
  overflow: hidden;
}
@media screen and (max-width: 760px) {
  .loopText {
    margin-bottom: 40px;
  }
}
.loopText_box {
  display: flex;
  width: 100vw;
}
.loopText_item {
  flex: 0 0 auto;
  padding-right: 25px;
  padding-left: 25px;
  font-family: "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 100px;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
  opacity: 0.5;
}
@media screen and (max-width: 760px) {
  .loopText_item {
    width: 100%;
    padding: 10px 0;
    font-size: 45px;
    line-height: 1.1;
    text-align: center;
  }
}
.loopText_item:nth-child(odd) {
  animation: loop 50s -25s linear infinite;
}
@media screen and (max-width: 760px) {
  .loopText_item:nth-child(odd) {
    animation: none;
  }
}
.loopText_item:nth-child(even) {
  animation: loop2 50s linear infinite;
}
@media screen and (max-width: 760px) {
  .loopText_item:nth-child(even) {
    animation: none;
  }
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
.catch {
  position: relative;
  font-weight: bold;
  text-align: center;
}
.catch_text {
  line-height: 2;
}
.catch_heading {
  margin-bottom: 40px;
  font-size: 45px;
}
@media screen and (max-width: 760px) {
  .catch_heading {
    margin-bottom: 5px;
    font-size: 22px;
    line-height: 1.9;
  }
}

.gallery {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1300px;
  margin: auto;
  margin-top: 100px;
  margin-bottom: 150px;
}
@media screen and (max-width: 760px) {
  .gallery-typeA {
    flex-direction: column;
    padding: 0 15px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 760px) {
  .gallery {
    margin-top: 25px;
  }
}
.gallery_container {
  display: flex;
}
.gallery_container-B {
  flex-direction: column;
}
.gallery_container-C {
  flex-direction: column;
}
.gallery_img {
  flex: 1;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 17px 10px rgba(29, 82, 139, 0.4);
}
@media screen and (max-width: 760px) {
  .gallery_img {
    border-radius: 15px;
  }
}
.gallery_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.topHeading {
  margin-bottom: 70px;
}
@media screen and (max-width: 760px) {
  .topHeading {
    padding-left: 15px;
    margin-bottom: 28px;
  }
  .topHeading .topHeading_text.sp-change {
    flex-direction: row;
    align-items: center;
  }
  .topHeading .topHeading_text.sp-change .topHeading_text-ja::before {
    position: absolute;
    top: 50%;
    left: -17px;
    width: 17px;
    height: 1px;
    transform: translateY(-50%);
  }
}
.topHeading_text {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  color: #263770;
}
.topHeading_text-en {
  font-family: "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 55px;
  text-shadow: 0 10px 10px rgba(38, 55, 112, 0.4);
}
@media screen and (max-width: 760px) {
  .topHeading_text-en {
    font-size: 32px;
    text-shadow: 0 5px 5px rgba(38, 55, 112, 0.4);
  }
}
.topHeading_text-ja {
  position: relative;
  padding: 6px 30px;
  border: 2px solid;
  border-radius: 30px;
}
@media screen and (max-width: 760px) {
  .topHeading_text-ja {
    padding: 3px 15px;
    border: 1px solid;
  }
}
.topHeading_text-ja::before {
  position: absolute;
  top: -26px;
  left: 50%;
  width: 2px;
  height: 25px;
  content: "";
  background: #263770;
  transform: translateX(-50%);
}

.topHeading-typeB .topHeading_text {
  flex-direction: row;
  gap: 50px;
}
@media screen and (max-width: 760px) {
  .topHeading-typeB .topHeading_text {
    gap: 20px;
  }
}
.topHeading-typeB .topHeading_text-ja::before {
  position: absolute;
  top: 50%;
  left: -35px;
  width: 35px;
  height: 2px;
  content: "";
  background: #263770;
  transform: translateY(-50%);
}
@media screen and (max-width: 760px) {
  .topHeading-typeB .topHeading_text-ja::before {
    left: -17px;
    width: 17px;
    height: 1px;
  }
}

.topHeading-white .topHeading_text {
  color: white;
}
.topHeading-white .topHeading_text-ja::before {
  background-color: white;
}

.swipeCard_list {
  white-space: nowrap;
}
.swipeCard_item {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 380px;
  min-height: 530px;
  margin: 0 10px;
}
.swipeCard_item::before {
  position: absolute;
  bottom: 16%;
  left: 50%;
  z-index: 1;
  width: 150px;
  height: 120px;
  content: "";
  background: white;
  border-radius: 50%;
  transform: translateX(-50%) scaleY(0.9);
}
@media screen and (max-width: 760px) {
  .swipeCard_item::before {
    bottom: 24%;
  }
}
.swipeCard_item::after {
  position: absolute;
  top: 370px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 130px;
  content: "";
  background: white;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  box-shadow: 0 17px 10px rgba(29, 82, 139, 0.4);
}
@media screen and (max-width: 760px) {
  .swipeCard_item::after {
    top: 180px;
    box-shadow: 0 9px 5px rgba(29, 82, 139, 0.4);
  }
}
.swipeCard_img {
  top: 0;
  z-index: -1;
  height: 100%;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
}
.swipeCard_img img {
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
@media screen and (max-width: 760px) {
  .swipeCard_img img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 230px;
  }
}
.swipeCard_icon {
  position: absolute;
  bottom: 22%;
  left: 50%;
  z-index: 2;
  width: 55px;
  fill: #263770;
  stroke: #1D528B;
  stroke-width: 1px;
  transform: translateX(-50%);
}
@media screen and (max-width: 760px) {
  .swipeCard_icon {
    bottom: 33%;
    fill: white;
  }
}
.swipeCard_icon img {
  min-height: 55px;
  filter: invert(15%) sepia(71%) saturate(1390%) hue-rotate(191deg) brightness(107%) contrast(113%);
}
.swipeCard_heading {
  position: absolute;
  bottom: 10%;
  left: 50%;
  z-index: 4;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  font-weight: bold;
  transform: translateX(-50%);
}
@media screen and (max-width: 760px) {
  .swipeCard_heading {
    bottom: 16%;
  }
}
.swipeCard_heading-ja {
  font-size: 18px;
}
@media screen and (max-width: 760px) {
  .swipeCard_heading-ja {
    font-size: 16px;
  }
}
.swipeCard_heading-en {
  font-size: 10px;
  color: #EA5B29;
  text-align: center;
}
.swipeCard-typeA {
  width: 1200px;
  margin: 100px auto;
}
@media screen and (max-width: 760px) {
  .swipeCard-typeA {
    width: 100%;
    margin: 25px auto;
  }
}

.swipeCard-typeB .swipeCard_item {
  width: 400px;
  height: 370px;
  border-radius: 30px;
}
@media screen and (max-width: 760px) {
  .swipeCard-typeB .swipeCard_item {
    width: 260px;
    height: 261px;
  }
}
.swipeCard-typeB .swipeCard_img {
  position: unset;
  top: 0;
  z-index: -1;
  height: unset;
}
.swipeCard-typeB .swipeCard_img img {
  display: block;
  width: 100%;
  height: 100%;
  background-color: white;
}
.swipeCard-typeB .swipeCard_logo {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 120px;
  padding-top: 20px;
  background: #F0F4F8;
}
@media screen and (max-width: 760px) {
  .swipeCard-typeB .swipeCard_logo {
    height: 74px;
    padding-top: 5px;
  }
}
.swipeCard-typeB .swipeCard_logo img {
  max-width: 200px;
  max-height: 60px;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 760px) {
  .swipeCard-typeB .swipeCard_logo img {
    max-height: 30px;
  }
}
.swipeCard-typeB .swipeCard_heading {
  font-size: 12px;
  text-align: center;
}
.swipeCard-typeB .swipeCard_sns {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  height: 55px;
}
@media screen and (max-width: 760px) {
  .swipeCard-typeB .swipeCard_sns {
    height: 39px;
  }
}
.swipeCard-typeB .swipeCard_sns img {
  height: 30px;
}
@media screen and (max-width: 760px) {
  .swipeCard-typeB .swipeCard_sns img {
    height: 19px;
  }
}
.swipeCard-typeB .swipeBar {
  width: 500px;
  height: 2px;
  margin: 50px;
  background: red;
}

.rightEnd {
  position: relative;
  width: calc(50% + 500px);
  padding: 55px 0 10px 100px;
  margin-top: 100px;
  margin-bottom: 150px;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.4);
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
@media screen and (max-width: 760px) {
  .rightEnd {
    width: calc(100% - 15px);
    margin-bottom: 50px;
  }
}
.rightEnd-nobg {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  background: none;
}
.rightEnd_container {
  display: flex;
  gap: 50px;
  justify-content: flex-start;
}
.rightEnd_img {
  flex: 1;
  max-height: 588px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 17px 10px rgba(29, 82, 139, 0.4);
}
@media screen and (max-width: 760px) {
  .rightEnd_img {
    border-radius: 15px;
    box-shadow: 0 8px 5px rgba(29, 82, 139, 0.4);
  }
}
.rightEnd_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.textBlock {
  display: flex;
  gap: 90px;
  margin-bottom: 30px;
  font-weight: bold;
}
@media screen and (max-width: 760px) {
  .textBlock {
    flex-direction: column;
    gap: 20px;
  }
}
.textBlock_heading {
  font-size: 29px;
}
@media screen and (max-width: 760px) {
  .textBlock_heading {
    font-size: 22px;
    line-height: 1.7;
  }
}
.textBlock_description {
  font-size: 15px;
  line-height: 2;
}
@media screen and (max-width: 760px) {
  .textBlock_description {
    font-size: 11px;
  }
}

.topNews {
  position: relative;
  width: 1000px;
  padding: 80px 120px;
  margin: auto;
  margin-bottom: -300px;
  background: white;
  border-radius: 30px;
  box-shadow: 0 17px 10px rgba(29, 82, 139, 0.3);
}
@media screen and (max-width: 760px) {
  .topNews {
    width: calc(100% - 30px);
    padding: 35px 12px;
    margin-bottom: -200px;
  }
}
.topNews_layout {
  display: flex;
  justify-content: space-between;
}
.topNews_content {
  font-size: 14px;
  font-weight: bold;
}
.topNews_title {
  width: 160px;
  font-size: 14px;
}
.topNews_time {
  padding-right: 42px;
  font-family: "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 14px;
  font-weight: bold;
}
.topNews_item {
  position: relative;
}
.topNews_item::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-image: linear-gradient(90deg, black 250px, #C4C4C4 0%);
}
.topNews_item a {
  display: flex;
  align-items: center;
  height: 80px;
}
.topNews_btn a {
  width: 240px;
  height: 40px;
}
@media screen and (max-width: 760px) {
  .topNews_btn a {
    width: 100%;
    height: 60px;
    margin-top: 25px;
  }
}
.topNews .news_cat a {
  color: black;
  background: none;
}
.topNews .news_item {
  position: relative;
  z-index: 1;
  height: 80px;
}
@media screen and (max-width: 760px) {
  .topNews .news_item {
    height: 40px;
  }
}

.topCompany {
  padding-top: 400px;
  padding-bottom: 100px;
  background-color: #6B9DAC;
}
@media screen and (max-width: 760px) {
  .topCompany {
    padding-top: 250px;
    padding-bottom: 50px;
  }
}

.topCompanyCard {
  margin-bottom: 150px;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .topCompanyCard {
    margin-bottom: 60px;
  }
}
.topCompanyCard_item {
  position: relative;
  display: inline-block;
  width: 320px;
  height: 400px;
}
@media screen and (max-width: 760px) {
  .topCompanyCard_item {
    width: 50%;
    height: 220px;
  }
}
.topCompanyCard_list {
  position: relative;
  display: flex;
  justify-content: center;
  white-space: nowrap;
}
@media screen and (max-width: 760px) {
  .topCompanyCard_list {
    flex-flow: row wrap;
    gap: 50px 0;
    width: calc(100% - 30px);
    margin: auto;
  }
}
.topCompanyCard_list::after {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3.93;
  content: "";
  background-image: url("/wp-content/themes/template/svg/icon_FGHD.svg");
  filter: invert(1);
  opacity: 0.05;
  transform: translateY(-100%);
}
.topCompanyCard_bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: 30px;
}
@media screen and (max-width: 760px) {
  .topCompanyCard_bg {
    border-radius: 17px;
  }
}
.topCompanyCard_bg img {
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.topCompanyCard_heading {
  position: absolute;
  right: 0;
  bottom: -90px;
  width: 200px;
  height: 140px;
  background: white;
  border-radius: 30px;
  box-shadow: 0 17px 10px rgba(38, 55, 112, 0.4);
}
@media screen and (max-width: 760px) {
  .topCompanyCard_heading {
    bottom: -20px;
    width: 100px;
    height: 70px;
    border-radius: 15px;
    box-shadow: 0 9px 5px rgba(38, 55, 112, 0.4);
  }
}
.topCompanyCard_heading::after {
  position: absolute;
  right: 20px;
  bottom: 10px;
  width: 12px;
  height: auto;
  aspect-ratio: 33/50;
  content: "";
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2012.1%2018.4%22%3E%0A%20%20%3Cpath%20fill%3D%22%23263770%22%20d%3D%22m12.1%209.2-9.3%209.2L0%2015.7l6.5-6.5L0%202.7%202.8%200Z%22%2F%3E%0A%3C%2Fsvg%3E");
}
@media screen and (max-width: 760px) {
  .topCompanyCard_heading::after {
    right: 10px;
    width: 6px;
  }
}
.topCompanyCard_heading a {
  display: block;
  height: 100%;
  padding: 20px;
}
@media screen and (max-width: 760px) {
  .topCompanyCard_heading a {
    padding: 10px;
  }
}
.topCompanyCard_headingText {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
  font-weight: bold;
}
@media screen and (max-width: 760px) {
  .topCompanyCard_headingText {
    gap: 5px;
  }
}
.topCompanyCard_headingText-ja {
  font-size: 20px;
}
@media screen and (max-width: 760px) {
  .topCompanyCard_headingText-ja {
    font-size: 12px;
  }
}
.topCompanyCard_headingText-en {
  font-size: 14px;
  line-height: 1.4;
  color: #263770;
  text-align: left;
}
@media screen and (max-width: 760px) {
  .topCompanyCard_headingText-en {
    font-size: 8px;
  }
}

@media screen and (max-width: 760px) {
  .topHeading-typeB .topHeading_text {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 15px;
  }
  .topHeading-typeB .topHeading_text .topHeading_text-ja {
    margin-left: 15px;
  }
}
.topColumn {
  padding-top: 150px;
  padding-bottom: 200px;
  background-color: rgba(200, 235, 255, 0.9);
  background-image: url("/wp-content/uploads/topPage_column_bg1.webp");
  background-position: bottom;
  background-size: cover;
  background-blend-mode: lighten;
}
@media screen and (max-width: 760px) {
  .topColumn {
    padding-top: 70px;
    padding-bottom: 50px;
  }
}
.topColumn li {
  box-shadow: 0 17px 10px rgba(29, 82, 139, 0.4);
  transition: 0.3s;
}
@media screen and (max-width: 760px) {
  .topColumn li {
    box-shadow: 0 9px 5px rgba(29, 82, 139, 0.4);
  }
}
.topColumn li:hover {
  border-radius: 10px;
  opacity: 0.8;
  transition: 0.3s;
}
.topColumn_container {
  width: 1000px;
  margin: auto;
}
@media screen and (max-width: 760px) {
  .topColumn_container {
    width: 100%;
    padding: 0 15px;
  }
}
.topColumn_layout {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 100px;
}
@media screen and (max-width: 760px) {
  .topColumn_layout {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 50px;
  }
}
.topColumn_layout .catch {
  text-align: left;
}
@media screen and (max-width: 760px) {
  .topColumn_layout .catch_heading {
    margin-bottom: 5px;
  }
}
.topColumn_list {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
@media screen and (max-width: 760px) {
  .topColumn_list {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
    margin-bottom: 35px;
  }
}
.topColumn_list_item {
  background-position: center;
  background-size: cover;
  border-radius: 30px;
}
@media screen and (max-width: 760px) {
  .topColumn_list_item {
    border-radius: 15px;
  }
}
.topColumn_list_item a {
  position: relative;
  display: block;
  width: 300px;
  height: 200px;
}
@media screen and (max-width: 760px) {
  .topColumn_list_item a {
    width: 320px;
    max-width: 100%;
    height: 235px;
  }
}
.topColumn_list_img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.topColumn_list_text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  width: 100%;
}
@media screen and (max-width: 760px) {
  .topColumn_list_text {
    max-width: 250px;
  }
}
.topColumn_list_time {
  font-size: 14px;
  font-weight: bold;
  color: white;
}
.topColumn_list_cat {
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 20px;
  margin-top: 5px;
  font-size: 13px;
  font-weight: bold;
  color: white;
  background: #263770;
  border-radius: 5px;
}
.topColumn_list_title {
  width: 90%;
  padding: 10px;
  margin-top: 0;
  font-size: 15px;
  font-weight: bold;
  color: #263770;
  background: white;
  border-radius: 2px;
}
.topColumn_pickup {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 760px) {
  .topColumn_pickup {
    flex-direction: column;
    gap: 40px;
    padding: 0 15px;
  }
}
.topColumn_pickup_item {
  position: relative;
  background-position: center;
  background-size: cover;
  border-radius: 30px;
}
@media screen and (max-width: 760px) {
  .topColumn_pickup_item {
    border-radius: 15px;
  }
}
.topColumn_pickup_item::before {
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 5;
  width: 101px;
  height: auto;
  aspect-ratio: 1;
  content: "";
  background: #EA5B29;
  border-radius: 50%;
}
@media screen and (max-width: 760px) {
  .topColumn_pickup_item::before {
    left: -10px;
    width: 50px;
  }
}
.topColumn_pickup_item::after {
  position: absolute;
  top: 12px;
  left: 9px;
  z-index: 5;
  font-family: "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 19px;
  font-weight: bold;
  color: white;
  text-align: center;
  white-space: pre;
  content: "PICK\aUP!";
}
@media screen and (max-width: 760px) {
  .topColumn_pickup_item::after {
    top: -3px;
    left: 5px;
    font-size: 9px;
  }
}
.topColumn_pickup_item a {
  position: relative;
  display: block;
  width: 470px;
  height: 350px;
}
@media screen and (max-width: 760px) {
  .topColumn_pickup_item a {
    width: 320px;
    height: 235px;
  }
}
.topColumn_pickup_img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.topColumn_pickup_text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  width: 100%;
}
@media screen and (max-width: 760px) {
  .topColumn_pickup_text {
    max-width: 250px;
  }
}
.topColumn_pickup_time {
  font-size: 14px;
  font-weight: bold;
  color: white;
}
.topColumn_pickup_cat {
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 20px;
  margin-top: 5px;
  font-size: 13px;
  font-weight: bold;
  color: white;
  background: #263770;
  border-radius: 5px;
}
.topColumn_pickup_title {
  width: 90%;
  padding: 10px;
  margin-top: 0;
  font-size: 18px;
  font-weight: bold;
  color: #263770;
  background: white;
  border-radius: 2px;
}

.topRecruit {
  position: relative;
  padding: 150px 0;
}
@media screen and (max-width: 760px) {
  .topRecruit .topHeading {
    margin-bottom: 95px;
  }
}
@media screen and (max-width: 760px) {
  .topRecruit {
    padding: 50px 0;
  }
  .topRecruit .recruit_sp_layout {
    display: flex;
    gap: 16px;
    width: 100%;
  }
}
.topRecruit::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 90%;
  height: 100%;
  content: "";
  background-color: #f0f0f0;
  background-image: radial-gradient(#d2d4dd 1%, transparent 13%);
  background-size: 25px 25px;
  border-top-right-radius: 30px;
}
@media screen and (max-width: 760px) {
  .topRecruit::after {
    width: 100%;
    border-radius: 0;
  }
}
@media screen and (max-width: 760px) {
  .topRecruit .topHeading-typeB .topHeading_text {
    flex-direction: row;
    align-items: center;
  }
}
.topRecruit .btn_container {
  display: flex;
  gap: 50px;
  justify-content: flex-start;
}
@media screen and (max-width: 760px) {
  .topRecruit .btn_container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
  }
  .topRecruit .btn_container a {
    width: auto;
    max-width: 155px;
    height: 36px;
  }
}
.topRecruit .icon-insta {
  width: 60px;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0;
  background-repeat: no-repeat;
}
@media screen and (max-width: 760px) {
  .topRecruit .icon-insta {
    width: 25px;
  }
}
.topRecruit .icon-insta a {
  display: block;
  width: 100%;
  height: 100%;
}

.recruitCatch {
  position: absolute;
  width: 760px;
}
@media screen and (max-width: 760px) {
  .recruitCatch {
    top: 0;
    width: 100%;
    transform: translateY(70%);
  }
}
.recruitCatch img {
  width: 100%;
}

.recruitText {
  margin-top: 250px;
  margin-bottom: 40px;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.5;
  color: #263770;
}
@media screen and (max-width: 760px) {
  .recruitText {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0;
    margin-bottom: 16px;
    font-size: 13px;
  }
}

.btn.btn-mynavi {
  max-width: 315px;
  margin-top: 30px;
}
@media screen and (max-width: 760px) {
  .btn.btn-mynavi {
    margin-top: 16px;
  }
}
.btn.btn-mynavi a {
  width: 100%;
  height: 100%;
  background-color: unset;
  box-shadow: 0 0 0;
}
.btn.btn-mynavi a::after {
  content: none;
}
.btn.btn-mynavi img {
  width: 100%;
}

.FGHDPins {
  position: relative;
}

.js-pin {
  position: absolute;
  width: 60px;
  height: auto;
  aspect-ratio: 1;
  background-image: url("/wp-content/themes/template/svg/icon_FUJI.svg");
  filter: invert(15%) sepia(71%) saturate(1390%) hue-rotate(191deg) brightness(107%) contrast(113%);
  opacity: 0;
}
@media screen and (max-width: 760px) {
  .js-pin {
    transform: scale(0.7);
    scale: 0.7;
  }
}
.js-pin::after {
  position: absolute;
  top: 70px;
  left: 50%;
  display: block;
  width: 1px;
  height: 50px;
  content: "";
  background: black;
  transform: translateX(-50%);
}

.show .js-pin {
  animation-name: fadeDownAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#js-pin1 {
  bottom: 10%;
  left: 5%;
  animation-delay: 0.1s;
}
@media screen and (max-width: 760px) {
  #js-pin1 {
    bottom: 27%;
    left: 1%;
  }
}

#js-pin2 {
  bottom: 9%;
  left: 10%;
  animation-delay: 1.2s;
}
@media screen and (max-width: 760px) {
  #js-pin2 {
    bottom: 24%;
    left: 18%;
  }
}

#js-pin3 {
  bottom: 13%;
  left: 19%;
  animation-delay: 2.3s;
}
@media screen and (max-width: 760px) {
  #js-pin3 {
    bottom: 28%;
    left: 59%;
  }
}

#js-pin4 {
  bottom: 11%;
  left: 30%;
  animation-delay: 1.4s;
}
@media screen and (max-width: 760px) {
  #js-pin4 {
    bottom: 22%;
    left: 70%;
    transform: scale(0.5);
    scale: 0.5;
  }
}

#js-pin5 {
  bottom: 10%;
  left: 34%;
  animation-delay: 0.5s;
}
@media screen and (max-width: 760px) {
  #js-pin5 {
    bottom: 25%;
    left: 82%;
    transform: scale(0.5);
    scale: 0.5;
  }
}

#js-pin6 {
  right: 25%;
  bottom: 8%;
  animation-delay: 2.6s;
}

#js-pin7 {
  right: 19%;
  bottom: 11%;
  animation-delay: 1.7s;
}

#js-pin8 {
  right: 8%;
  bottom: 9%;
  animation-delay: 1.8s;
}

#js-pin9 {
  right: 6%;
  bottom: 8%;
  animation-delay: 0.9s;
}

#js-pin10 {
  right: 0;
  bottom: 10%;
  animation-delay: 1.1s;
}

#js-pin11 {
  bottom: 10%;
  left: 15%;
  animation-delay: 1.1s;
}
@media screen and (max-width: 760px) {
  #js-pin11 {
    bottom: 100px;
    left: 5%;
  }
}

#js-pin12 {
  right: 8%;
  bottom: 7%;
}
@media screen and (max-width: 760px) {
  #js-pin12 {
    bottom: 130px;
  }
}

#js-pin13 {
  right: 0;
  bottom: 10%;
  animation-delay: 1.1s;
}

#js-pin14 {
  right: 10%;
  bottom: -300px;
  animation-delay: 0.5s;
}
@media screen and (max-width: 760px) {
  #js-pin14 {
    display: none;
  }
}

#js-pin15 {
  bottom: -200px;
  left: 10%;
  animation-delay: 1.1s;
}
@media screen and (max-width: 760px) {
  #js-pin15 {
    left: 3%;
  }
}

#js-pin16 {
  right: 25%;
  bottom: -60px;
}
@media screen and (max-width: 760px) {
  #js-pin16 {
    right: 2%;
    bottom: -210px;
    transform: scale(0.4);
    scale: 0.4;
  }
}

#js-pin17 {
  bottom: 8%;
  left: 30%;
}
@media screen and (max-width: 760px) {
  #js-pin17 {
    bottom: -180px;
    left: 70%;
    z-index: 5;
    transform: scale(0.5);
    scale: 0.5;
  }
}

#js-pin18 {
  bottom: 50px;
  left: 40%;
}
@media screen and (max-width: 760px) {
  #js-pin18 {
    bottom: 50px;
    left: 10%;
    transform: scale(0.5);
    scale: 0.5;
  }
}

#js-pin19 {
  right: 20%;
  bottom: 150px;
}
@media screen and (max-width: 760px) {
  #js-pin19 {
    display: none;
  }
}

#js-pin20 {
  bottom: 50px;
  left: 25%;
}
@media screen and (max-width: 760px) {
  #js-pin20 {
    left: 75%;
    transform: scale(0.4);
    scale: 0.4;
  }
}

#js-pin21 {
  right: 90px;
  bottom: -100px;
}
@media screen and (max-width: 760px) {
  #js-pin21 {
    right: 30px;
    bottom: -170px;
    transform: scale(0.5);
    scale: 0.5;
  }
}

#js-pin22 {
  right: 30%;
  bottom: 40px;
}
@media screen and (max-width: 760px) {
  #js-pin22 {
    right: 36%;
    bottom: -140px;
    z-index: 2;
    transform: scale(0.5);
    scale: 0.5;
  }
}

.js-pin-s {
  transform: scale(0.4);
  scale: 0.4;
}

.js-pin-m {
  transform: scale(0.5);
  scale: 0.5;
}

.js-pin-bs::after {
  height: 15px;
}

.js-pin-bm::after {
  height: 25px;
}

.slick-arrow {
  width: 53px;
  height: auto;
  aspect-ratio: 1;
}
.slick-arrow img {
  height: 100%;
}

.next-arrow.slick-arrow {
  position: absolute;
  top: 40%;
  right: 0;
  z-index: 12;
}
@media screen and (max-width: 760px) {
  .next-arrow.slick-arrow {
    right: 15px;
  }
}

.prev-arrow.slick-arrow {
  position: absolute;
  top: 40%;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 760px) {
  .prev-arrow.slick-arrow {
    left: 20px;
  }
}

.slide-dots {
  position: absolute;
  bottom: -50px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  text-align: center;
  list-style: none;
}

.slide-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0 5px;
  cursor: pointer;
}

.slide-dots li button {
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  font-size: 0;
  line-height: 0;
  color: transparent;
  cursor: pointer;
  background: transparent;
  border: 0;
  outline: none;
}

.slide-dots li.slick-active button::before {
  color: #263770;
}

.slide-dots li button::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  /* stylelint-disable-next-line font-family-no-missing-generic-family-keyword */
  font-family: slick;
  font-size: 10px;
  line-height: 20px;
  color: white;
  text-align: center;
  content: "•";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-list {
  padding-left: 5px;
}

.slide-bar.slide-dots li.slick-active button::before {
  color: #959595;
}

.slide-bar.slide-dots li button::before {
  position: absolute;
  width: 60px;
  height: 5px;
  content: "";
}

.slide-bar.slide-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  background: white;
}

.slide-bar.slide-dots li {
  width: 60px;
  height: 2px;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 760px) {
  .slide-bar.slide-dots li {
    width: 30px;
  }
}

.slide-bar.slide-dots li.slick-active button {
  background: #959595;
}

.js-slider-sub .next-arrow.slick-arrow {
  top: auto;
  right: 23%;
  bottom: -70px;
}
@media screen and (max-width: 760px) {
  .js-slider-sub .next-arrow.slick-arrow {
    right: 5%;
  }
}

.js-slider-sub .prev-arrow.slick-arrow {
  inset: auto 30% -70px auto;
  z-index: 1;
}
@media screen and (max-width: 760px) {
  .js-slider-sub .prev-arrow.slick-arrow {
    inset: auto 25% -70px auto;
  }
}

.rightEnd.sevice-sub {
  padding: 55px 0 80px 100px;
}
@media screen and (max-width: 760px) {
  .rightEnd.sevice-sub {
    padding: 50px 0 110px 15px;
    margin-top: 50px;
  }
}

.slide-bar.slide-dots {
  bottom: -55px;
  width: 86%;
}
@media screen and (max-width: 760px) {
  .slide-bar.slide-dots {
    bottom: -50px;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.js-slider-sub .swipeCard_item::after {
  top: 235px;
}
@media screen and (max-width: 760px) {
  .js-slider-sub .swipeCard_item::after {
    top: 196px;
    height: 40px;
  }
}

.js-slider-sub .slick-slide {
  min-height: 400px !important;
}
@media screen and (max-width: 760px) {
  .js-slider-sub .slick-slide {
    min-height: unset !important;
  }
}

.js-slider-sub .swipeCard_item::before {
  content: none;
}

.slick-track {
  display: flex;
}

.slick-slide {
  min-height: 530px !important;
}
@media screen and (max-width: 760px) {
  .slick-slide {
    min-height: 340px !important;
  }
}

/* hover */
.topCompanyCard_item:has(a:hover) img {
  transform: scale(1.08);
  scale: 1.08;
}

.swipeCard_item a:hover {
  filter: none;
  opacity: 1;
}

.swipeCard_item:hover::after {
  background: #263770;
  transition: 0.3s;
}

.swipeCard_item:hover::before {
  background: #263770;
  transition: 0.3s;
}

.swipeCard_item:hover .swipeCard_heading-ja {
  color: white;
  transition: 0.8s;
}

.swipeCard_item:hover .swipeCard_icon img {
  filter: invert(1);
}

.swipeCard_item:hover .swipeCard_img img {
  transition: 0.3s;
  transform: scale(1.1);
  scale: 1.1;
}

.swipeCard_item:hover svg {
  color: white;
  fill: white;
  stroke: white;
}
@media screen and (max-width: 760px) {
  .swipeCard_item:hover svg {
    color: #1D528B;
    stroke: #1D528B;
  }
}

.topSDGs {
  width: 700px;
  max-width: 80%;
  padding: 2% 5%;
  margin: auto;
  margin-top: 100px;
  background: white;
  border-radius: 30px;
  box-shadow: 0 17px 10px rgba(38, 51, 112, 0.16);
}
@media screen and (max-width: 760px) {
  .topSDGs {
    margin-top: 50px;
    border-radius: 15px;
  }
}

.topSDGs_btn a {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px;
  font-weight: bold;
  color: white;
  text-align: center;
  background: #1D528B;
  border-radius: 100px;
}

.topSDGs_img img {
  width: 100%;
  margin-bottom: 4%;
}

.topSDGs_btn a::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: auto;
  aspect-ratio: 1;
  content: "";
  border-right: 3px solid white;
  border-bottom: 3px solid;
  transform: rotate(-45deg) translateY(-50%);
}

/* テキスト左画像右のコンテンツ */
.textImg_layout {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 760px) {
  .textImg_layout {
    flex-direction: column;
    gap: 25px;
  }
}

.textImg_text {
  flex: 1;
  line-height: 1.7;
}
@media screen and (max-width: 760px) {
  .textImg_text {
    font-size: 11px;
    line-height: 1.7;
  }
}

.textImg_img {
  flex: 1;
  width: 100%;
  max-width: 338px;
}
@media screen and (max-width: 760px) {
  .textImg_img {
    margin: auto;
  }
}

.textImg_img img {
  width: 100%;
  border-radius: 30px;
}
@media screen and (max-width: 760px) {
  .textImg_img img {
    border-radius: 15px;
  }
}

/* 白背景のキャッチ */
.whiteCatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 45px 0;
  margin-bottom: 60px;
  background: white;
  border-radius: 30px;
}
@media screen and (max-width: 760px) {
  .whiteCatch {
    padding: 22px 10px;
    margin-bottom: 30px;
    border-radius: 15px;
  }
}
.whiteCatch_text {
  font-size: 28px;
  font-weight: bold;
  line-height: 48px;
  color: #1D528B;
}
@media screen and (max-width: 760px) {
  .whiteCatch_text {
    font-size: 12px;
    line-height: 2;
  }
}

/* case */
.case {
  display: flex;
  gap: 5px;
  margin-top: 30px;
  margin-bottom: 90px;
}
@media screen and (max-width: 760px) {
  .case {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 25px;
    margin-bottom: 25px;
  }
}
.case_item {
  width: 260px;
  min-height: 370px;
  padding: 0 25px 25px;
  background: white;
  border-radius: 30px;
}
@media screen and (max-width: 760px) {
  .case_item {
    width: calc(50% - 3px);
    min-height: 225px;
    padding: 0 12px 12px;
    border-radius: 15px;
  }
}
.case_img img {
  width: 100%;
}
.case_text {
  padding-top: 30px;
  line-height: 1.7;
  border-top: 2px solid #AFC2C9;
}

section {
  counter-reset: number 0;
}

/* tag */
.tag {
  display: flex;
  gap: 20px;
  margin-bottom: 120px;
}
@media screen and (max-width: 760px) {
  .tag {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.tag_item {
  flex: 1;
  background: #1D528B;
  border-radius: 30px;
}
.tag_text {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  height: 95px;
  font-size: 22px;
  font-weight: bold;
  color: white;
}
.tag_text img {
  height: 40px;
  filter: invert(1);
}

/* 画像画面幅いっぱいの */
.fullImg {
  width: 100%;
  text-align: center;
}
.fullImg img {
  width: 100%;
  border-radius: 30px;
}
@media screen and (max-width: 760px) {
  .fullImg img {
    border-radius: 15px;
  }
}

/* point */
.point {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 760px) {
  .point {
    gap: 15px;
    margin-bottom: 25px;
  }
}
.point_item {
  background: white;
  border-radius: 30px;
}
@media screen and (max-width: 760px) {
  .point_item {
    border-radius: 15px;
  }
}
.point_title {
  position: relative;
  display: flex;
  gap: 50px;
  align-items: center;
  height: 70px;
  overflow: hidden;
  font-size: 20px;
  font-weight: bold;
  color: white;
  background: #1D528B;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
@media screen and (max-width: 760px) {
  .point_title {
    gap: 25px;
    height: 35px;
    font-size: 10px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }
}
.point_title::before {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 150px;
  height: 100%;
  padding-left: 80px;
  font-family: "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 44px;
  color: #263770;
  content: counter(number);
  counter-increment: number 1;
  background: #AFC2C9;
}
@media screen and (max-width: 760px) {
  .point_title::before {
    width: 75px;
    padding-left: 40px;
    font-size: 22px;
  }
}
.point_title::after {
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  width: 110px;
  height: 100%;
  padding-left: 20px;
  color: #263770;
  content: "Point";
}
@media screen and (max-width: 760px) {
  .point_title::after {
    padding-left: 10px;
  }
}
.point_content {
  display: flex;
  padding: 40px 45px;
}
@media screen and (max-width: 760px) {
  .point_content {
    padding: 20px 22px;
  }
}
.point_text {
  flex: 1;
  max-width: 545px;
  line-height: 2;
}
@media screen and (max-width: 760px) {
  .point_text {
    max-width: 270px;
    font-size: 11px;
  }
}
.point_img {
  width: 165px;
}
@media screen and (max-width: 760px) {
  .point_img {
    width: 80px;
  }
}
.point_img img {
  width: 100px;
  height: 60px;
}
@media screen and (max-width: 760px) {
  .point_img img {
    width: 50px;
    height: 30px;
  }
}

/* 自動販売機ページの二つのカード */
.compareCard {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-bottom: 10px;
}
@media screen and (max-width: 760px) {
  .compareCard {
    flex-direction: column;
    gap: 15px;
  }
}
.compareCard_item {
  flex: 1;
  padding: 30px;
  background: white;
  border-radius: 30px;
}
@media screen and (max-width: 760px) {
  .compareCard_item {
    padding: 22px;
  }
}
.compareCard_img {
  margin-bottom: 25px;
}
.compareCard_img img {
  width: 100%;
}
.compareCard_heading {
  margin-bottom: 35px;
  font-size: 24px;
  font-weight: bold;
  color: #1D528B;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .compareCard_heading {
    margin-bottom: 30px;
    font-size: 17px;
  }
}
.compareCard_text {
  line-height: 2;
}

.maker_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 100px;
}
@media screen and (max-width: 760px) {
  .maker_list {
    margin-bottom: 50px;
  }
}

.maker_item {
  width: 190px;
  height: 85px;
  padding: 10px;
  background: white;
  border-radius: 10px;
}
@media screen and (max-width: 760px) {
  .maker_item {
    width: 108px;
    height: 48px;
  }
}

.maker_item img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.flow_heading {
  font-size: 20px;
  color: #1D528B;
}
@media screen and (max-width: 760px) {
  .flow_heading {
    font-size: 11px;
  }
}
.flow_heading-henhance {
  font-size: 24px;
}
@media screen and (max-width: 760px) {
  .flow_heading-henhance {
    font-size: 12px;
  }
}
.flow_list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 0;
  counter-reset: number 0;
}
.flow_list::before {
  position: absolute;
  left: 46px;
  width: 5px;
  height: 100%;
  content: "";
  background-image: linear-gradient(to bottom, #afc2c9 5px, transparent 5px);
  background-size: 10px 10px;
}
@media screen and (max-width: 760px) {
  .flow_list::before {
    left: 23px;
  }
}
.flow_item {
  position: relative;
  display: flex;
  min-height: 100px;
  overflow: hidden;
  color: white;
  background: #1d528b;
  border-radius: 10px;
}
@media screen and (max-width: 425px) {
  .flow_item {
    min-height: 50px;
    font-size: 8px;
  }
}
.flow_item::before {
  display: flex;
  place-content: center center;
  align-items: center;
  width: 100px;
  padding-top: 20px;
  font-family: "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 43px;
  font-weight: bold;
  color: #1d528b;
  text-align: center;
  content: counter(number);
  counter-increment: number 1;
  background: #afc2c9;
}
@media screen and (max-width: 425px) {
  .flow_item::before {
    width: 50px;
    padding-top: 10px;
    font-size: 21px;
  }
}
.flow_item::after {
  position: absolute;
  top: calc(50% - 30px);
  left: 30px;
  font-family: "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: bold;
  color: #1d528b;
  content: "STEP";
}
@media screen and (max-width: 425px) {
  .flow_item::after {
    top: calc(50% - 20px);
    left: 15px;
  }
}
.flow_item_text {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 30px 35px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.7;
}
@media screen and (max-width: 760px) {
  .flow_item_text {
    padding: 15px 17px;
    font-size: 11px;
  }
}
.flow_item_info {
  font-size: 14px;
  font-weight: normal;
}
@media screen and (max-width: 760px) {
  .flow_item_info {
    font-size: 11px;
  }
}
.flow hr {
  margin-bottom: 50px;
  color: #CCC;
}
@media screen and (max-width: 760px) {
  .flow hr {
    margin-bottom: 25px;
  }
}

.whiteBG .QandA_item {
  background: #EFF5F7;
}

.QandA_item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  background: white;
  border-radius: 30px;
}
@media screen and (max-width: 760px) {
  .QandA_item {
    gap: 10px;
    padding: 15px;
    border-radius: 15px;
  }
}
.QandA_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.QandA_Q {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: flex-end;
  font-size: 24px;
  font-weight: bold;
  color: #1d528b;
}
.QandA_Q::before {
  position: relative;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: auto;
  aspect-ratio: 1;
  font-size: 16px;
  color: white;
  content: "Q";
  background: #263770;
  border-radius: 50%;
}
.QandA_A {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
}
.QandA_A::before {
  position: relative;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: auto;
  aspect-ratio: 1;
  font-size: 16px;
  color: white;
  content: "A";
  background: #afc2c9;
  border-radius: 50%;
}
.QandA_Q, .QandA_A {
  align-items: flex-start;
}
@media screen and (max-width: 760px) {
  .QandA_Q, .QandA_A {
    font-size: 12px;
  }
  .QandA_Q::before, .QandA_A::before {
    width: 18px;
    font-size: 10px;
  }
}
.QandA_text {
  flex: 1;
  line-height: 1.7;
}
@media screen and (max-width: 760px) {
  .QandA_text {
    font-size: 12px;
  }
}

/* TOPメッセージ */
.chatch-typeB {
  width: 420px;
  max-width: 100%;
  padding: 30px 0;
  margin: auto;
  margin-bottom: 50px;
  font-size: 24px;
  font-weight: bold;
  color: #1d528b;
  text-align: center;
  border-top: 5px solid;
  border-bottom: 5px solid;
}
@media screen and (max-width: 760px) {
  .chatch-typeB {
    padding: 15px 0;
    margin-bottom: 25px;
    font-size: 12px;
    border-top: 2px solid;
    border-bottom: 2px solid;
  }
}

.messageCard {
  margin-top: 50px;
  overflow: hidden;
  background: #eff5f7;
  border-radius: 30px;
}
@media screen and (max-width: 760px) {
  .messageCard {
    margin-top: 25px;
    border-radius: 15px;
  }
}
.messageCard_layout {
  display: flex;
}
.messageCard_text {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: center;
  padding-left: 50px;
  font-weight: bold;
}
@media screen and (max-width: 760px) {
  .messageCard_text {
    gap: 5px;
    padding-right: 12px;
    padding-left: 12px;
  }
}
.messageCard_name {
  font-size: 20px;
}
@media screen and (max-width: 760px) {
  .messageCard_name {
    font-size: 12px;
  }
}
@media screen and (max-width: 760px) {
.messageCard_corp {
   font-size: 12px;
}
}
.messageCard_img {
  width: 258px;
}
@media screen and (max-width: 760px) {
  .messageCard_img {
    width: 120px;
  }
}
.messageCard_img img {
  width: 100%;
  border-radius: 30px;
}
@media screen and (max-width: 760px) {
  .messageCard_img img {
    border-radius: 15px;
  }
}

.uniqueHeading {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #1d528b;
}
@media screen and (max-width: 760px) {
  .uniqueHeading {
    padding-bottom: 20px;
    margin-bottom: 10px;
  }
}
.uniqueHeading::after {
  position: absolute;
  bottom: 0;
  width: 3px;
  height: 23px;
  content: "";
  background: #1d528b;
}
@media screen and (max-width: 760px) {
  .uniqueHeading::after {
    width: 1px;
    height: 12px;
  }
}
.uniqueHeading_eng {
  font-family: "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 36px;
  color: #1d528b;
  text-transform: uppercase;
}
@media screen and (max-width: 760px) {
  .uniqueHeading_eng {
    font-size: 18px;
  }
}

.uniqueCatch {
  margin-bottom: 100px;
}
.uniqueCatch_text {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  font-size: 80px;
  font-weight: bold;
  color: #1d528b;
  border-bottom: 7px solid;
}

.philosophy_item {
  position: relative;
  padding: 50px 50px 60px 35px;
  line-height: 2;
  text-align: center;
  background: white;
  border-radius: 30px;
}
@media screen and (max-width: 760px) {
  .philosophy_item {
    padding: 25px 25px 30px 17px;
    border-radius: 15px;
  }
}
.philosophy_list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  counter-reset: number;
}
@media screen and (max-width: 760px) {
  .philosophy_list {
    gap: 25px;
  }
}
.philosophy_title {
  margin-bottom: 7px;
  font-size: 24px;
  color: #1d528b;
}
@media screen and (max-width: 760px) {
  .philosophy_title {
    font-size: 12px;
  }
}
.philosophy_title-big {
  margin: 30px 0 40px;
  font-size: 35px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .philosophy_title-big {
    margin: 15px 0 20px;
    font-size: 17px;
  }
}
.philosophy_item::before {
  position: absolute;
  top: -60px;
  left: 50%;
  font-family: "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 65px;
  font-weight: bold;
  color: #afc2c9;
  content: "0" counter(number);
  counter-increment: number 1;
  transform: translateX(-50%);
}
@media screen and (max-width: 760px) {
  .philosophy_item::before {
    top: -30px;
    font-size: 32px;
  }
}
.philosophy_paragraph {
  font-weight: bold;
  text-align: center;
}
.philosophy_message_text {
  padding: 65px 0;
  font-weight: bold;
  line-height: 30px;
  text-align: center;
  background: white;
  border-radius: 30px;
}
@media screen and (max-width: 760px) {
  .philosophy_message_text {
    padding: 32px 0;
    line-height: 1.7;
    border-radius: 15px;
  }
}
.philosophy_message {
  margin-bottom: 50px;
}
@media screen and (max-width: 760px) {
  .philosophy_message {
    margin-bottom: 25px;
  }
}

.circleNumber {
  display: inline-block;
  width: 60px;
  height: 60px;
  aspect-ratio: 1;
  padding-top: 8px;
  margin-right: 5px;
  font-size: 44px;
  text-align: center;
  background: white;
  border-radius: 50%;
}
@media screen and (max-width: 760px) {
  .circleNumber {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}
.circleNumber-blue {
  display: inline-block;
  width: 36px;
  height: auto;
  aspect-ratio: 1;
  padding-top: 8px;
  margin: 50px 5px;
  font-size: 20px;
  color: white;
  text-align: center;
  background: #1d528b;
  border-radius: 50%;
}
@media screen and (max-width: 760px) {
  .circleNumber-blue {
    width: 18px;
    padding-top: 4px;
    margin: 10px 3px;
    font-size: 10px;
  }
}

@media screen and (max-width: 760px) {
  .philosophy_paragraph:has(.circleNumber-blue) {
    margin: 25px 0;
  }
}

.enhance {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 23px;
  margin: 0 10px;
  color: white;
  text-align: center;
  background: #1d528b;
  border-radius: 50px;
}

.enhance-single {
  display: block;
  margin: auto;
}

.philosophySection .paragraph {
  margin-bottom: 30px;
}
.philosophySection hr {
  margin-bottom: 30px;
  color: #CCC;
}

.guidlines {
  margin-bottom: 40px;
  counter-reset: number 0;
}
.guidlines_item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 25px;
  margin: 25px 0;
  font-weight: bold;
}
.guidlines_item::before {
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: auto;
  aspect-ratio: 1;
  font-family: "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 16px;
  color: white;
  content: counter(number);
  counter-increment: number 1;
  background: #1D528B;
  border-radius: 50%;
}

.history {
  padding: 50px;
  background: white;
  border-radius: 30px;
}
.history_when {
  position: relative;
  padding-right: 60px;
  padding-bottom: 30px;
  font-family: "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 20px;
  color: #263770;
}
.history_when::after {
  position: absolute;
  top: 7px;
  right: 26px;
  display: block;
  width: 6.7px;
  height: auto;
  aspect-ratio: 1;
  content: "";
  background: #263770;
  transform: rotate(45deg);
}
.history_when::before {
  position: absolute;
  top: 9px;
  right: 25.3px;
  display: block;
  width: 9px;
  height: 100%;
  content: "";
  background: #ebebeb;
}
.history_what {
  padding-top: 0;
  padding-bottom: 30px;
  line-height: 1.5;
}

.history_item:last-child .history_when::before {
  content: none;
}

/* contact page */
.contactCard {
  margin-bottom: 100px;
}
@media screen and (max-width: 760px) {
  .contactCard {
    margin-bottom: 50px;
  }
}
.contactCard_list {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  justify-content: center;
  width: 1000px;
  margin: auto;
}
@media screen and (max-width: 760px) {
  .contactCard_list {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}
.contactCard_item {
  position: relative;
  width: 320px;
  padding: 40px 20px 75px;
  background: white;
  border-radius: 30px;
}
@media screen and (max-width: 760px) {
  .contactCard_item {
    width: 100%;
    height: auto;
    padding: 20px 15px 60px;
    border-radius: 15px;
  }
}
.contactCard_btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 85%;
  transform: translateX(-50%);
}
.contactCard_btn a {
  max-width: 100%;
  height: 45px;
}
@media screen and (max-width: 760px) {
  .contactCard_btn a {
    height: 35px;
    font-size: 11px;
  }
}
.contactCard_btn a::after {
  width: 7px;
}
.contactCard_title {
  margin-bottom: 30px;
  font-size: 20px;
  color: #1D528B;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .contactCard_title {
    margin-bottom: 15px;
    font-size: 12px;
  }
}
.contactCard_text {
  margin-bottom: 20px;
  line-height: 2;
}


/* ポリシーページ */
.policy_list {
  margin-top: 50px;
}
@media screen and (max-width: 760px) {
  .policy_list {
    margin-top: 25px;
  }
}

.policy_item {
  padding: 45px 0;
  border-top: 1px solid lightgray;
}
@media screen and (max-width: 760px) {
  .policy_item {
    padding: 22px 0;
  }
}

.policy_title {
  margin-bottom: 15px;
  font-size: 20px;
  color: #1D528B;
}
@media screen and (max-width: 760px) {
  .policy_title {
    margin-bottom: 7px;
    font-size: 10px;
  }
}

.sns_intoro img {
  width: 70px;
}

.sns_intoro {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 425px) {
  .sns_intoro {
    flex-direction: column;
  }
}

ol.policy_list .policy_title {
  position: relative;
  padding-left: 43px;
  font-size: 28px;
  color: black;
}
@media screen and (max-width: 760px) {
  ol.policy_list .policy_title {
    padding-left: 21px;
    font-size: 14px;
  }
}
ol.policy_list .policy_title::before {
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: auto;
  aspect-ratio: 1;
  font-family: "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 21px;
  color: white;
  content: counter(number);
  counter-increment: number 1;
  background: #1D528B;
  border-radius: 50%;
}
@media screen and (max-width: 760px) {
  ol.policy_list .policy_title::before {
    width: 16px;
    font-size: 14px;
  }
}

.policy_list_sub {
  padding-left: 25px;
  margin-top: 20px;
}
@media screen and (max-width: 760px) {
  .policy_list_sub {
    padding-left: 12px;
    margin-top: 10px;
  }
}

/* ol の指定を外さない */
ol.policy_list_sub {
  counter-reset: number 0;
}

.policy_item_sub {
  position: relative;
  padding-bottom: 20px;
}
@media screen and (max-width: 760px) {
  .policy_item_sub {
    padding-bottom: 10px;
  }
}
.policy_item_sub::before {
  position: absolute;
  left: -25px;
  width: 16px;
  height: auto;
  aspect-ratio: 1;
  border: 1px solid;
  border-radius: 50%;
}
@media screen and (max-width: 760px) {
  .policy_item_sub::before {
    left: -15px;
    width: 12px;
  }
}
.policy_item_sub-number::before {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  content: counter(number);
  counter-increment: number 1;
}
@media screen and (max-width: 760px) {
  .policy_item_sub-number::before {
    padding-top: 1px;
    font-size: 10px;
  }
}
.policy_item_sub-circle::before {
  display: block;
  content: "";
}

/* 会社案内 */
.companyTop {
  margin-bottom: 100px;
}
.companyTop_list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
}
.companyTop_item {
  position: relative;
  overflow: hidden;
  background-color: rgba(29, 82, 139, 0.5);
  border-radius: 30px;
  transition: 0.3s;
}
.companyTop_item a {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  justify-content: center;
  width: 492px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 492/320;
  font-size: 24px;
  font-weight: bold;
  color: white;
  text-align: center;
}
.companyTop_img {
  position: absolute;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.companyTop_icon img {
  width: 52px;
  color: white;
  filter: invert(1);
  fill: white;
}

/* hover */
.companyTop_item:hover {
  background-color: transparent;
}

.companyTop_item a:hover {
  filter: none;
  opacity: 1;
}

.companyTop_item a:hover .companyTop_img {
  transition: 0.3s;
  scale: 1.08;
}

/* サイトマップ */
.sitemap {
  width: 1000px;
  margin: auto;
  margin-bottom: 100px;
}
@media screen and (max-width: 425px) {
  .sitemap {
    width: auto;
  }
}
.sitemap_list {
  display: flex;
  flex-flow: column wrap;
  gap: 15px;
  align-items: center;
  min-width: 660px;
  height: 754px;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 425px) {
  .sitemap_list {
    min-width: unset;
    height: auto;
  }
}
.sitemap_item {
  width: 322px;
}
.sitemap_item:nth-child(5) {
  margin-bottom: 300px;
}
@media screen and (max-width: 760px) {
  .sitemap_item:nth-child(5) {
    margin-bottom: auto;
  }
}
.sitemap_link {
  position: relative;
  display: flex;
  align-items: center;
  width: 322px;
  height: auto;
  padding-left: 20px;
}
.sitemap_link::after {
  position: absolute;
  right: auto;
  left: 0;
  width: 11px;
  height: auto;
  aspect-ratio: 1;
  content: "";
  background-image: url("/wp-content/themes/template/svg/icon_arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.sitemap_parent {
  height: 55px;
  font-size: 20px;
  background: white;
  border-left: 5px solid #1D528B;
}
.sitemap_parent::after {
  right: 20px;
  left: auto;
}
.sitemap_child {
  margin-top: 30px;
  font-weight: normal;
}
.sitemap_baby {
  margin-top: 30px;
  margin-left: 25px;
  color: #939393;
}

.bgText {
  width: 100%;
  height: 300px;
  font-size: 80px;
  font-weight: bold;
  color: transparent;
  background-image: url("https://webparts.cman.jp/image/shizen550.jpg");
  -webkit-background-clip: text;
  background-size: cover;
}

.uniqueTitleB_title {
  position: relative;
  font-weight: bold;
}
.uniqueTitleB-ja {
  position: absolute;
  top: 26px;
  left: 50%;
  z-index: 1;
  color: #1D528B;
  transform: translateX(-50%);
}
@media screen and (max-width: 760px) {
  .uniqueTitleB-ja {
    top: 13px;
  }
}
.uniqueTitleB-en {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  font-family: "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 60px;
  color: white;
}
@media screen and (max-width: 760px) {
  .uniqueTitleB-en {
    font-size: 30px;
  }
}
.uniqueTitleB-en::before, .uniqueTitleB-en::after {
  position: absolute;
  top: 26px;
  width: 86px;
  height: 5px;
  content: "";
  background-color: white;
}
@media screen and (max-width: 760px) {
  .uniqueTitleB-en::before, .uniqueTitleB-en::after {
    top: 13px;
    width: 43px;
    height: 3px;
  }
}
.uniqueTitleB-en::before {
  left: -110px;
}
@media screen and (max-width: 760px) {
  .uniqueTitleB-en::before {
    left: -55px;
  }
}
.uniqueTitleB-en::after {
  right: -110px;
}
@media screen and (max-width: 760px) {
  .uniqueTitleB-en::after {
    right: -55px;
  }
}
.uniqueTitleB_img {
  position: relative;
  display: flex;
  justify-content: center;
  width: 600px;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 150px;
}
@media screen and (max-width: 760px) {
  .uniqueTitleB_img {
    width: 300px;
    margin-top: 25px;
    margin-bottom: 75px;
  }
}
.uniqueTitleB_img::before, .uniqueTitleB_img::after {
  position: absolute;
  bottom: -70px;
  width: 100px;
  height: auto;
  aspect-ratio: 1;
  content: "";
  background-image: url("/wp-content/themes/template/svg/icon_onlyone_deco.svg");
  filter: invert(8%) sepia(76%) saturate(5056%) hue-rotate(206deg) brightness(93%) contrast(101%);
  background-repeat: no-repeat;
}
@media screen and (max-width: 760px) {
  .uniqueTitleB_img::before, .uniqueTitleB_img::after {
    transform: scale(0.3);
  }
}
.uniqueTitleB_img::before {
  left: -90px;
  background-image: url("/wp-content/themes/template/svg/icon_onlyone_deco_reverse.svg");
  filter: none;
}
@media screen and (max-width: 760px) {
  .uniqueTitleB_img::before {
    left: -60px;
  }
}
.uniqueTitleB_img::after {
  right: -60px;
}
.uniqueTitleB_img img {
  display: block;
  width: 100%;
}

.section_topService {
  position: relative;
}
@media screen and (max-width: 760px) {
  .section_topService .topHeading.topHeading-typeA {
    margin-bottom: 10px;
  }
}

.innerLink_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}
@media screen and (max-width: 760px) {
  .innerLink_list {
    gap: 5px;
    margin-bottom: 25px;
  }
}

.innerLink_item {
  flex: 1;
}

.innerLink_item a {
  position: relative;
  display: block;
  width: 100%;
  padding: 12px 0;
  font-weight: bold;
  color: #1D528B;
  text-align: center;
  background-color: white;
  border-radius: 30px;
}
@media screen and (max-width: 760px) {
  .innerLink_item a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 10px;
  }
}

.innerLink_item a::after {
  position: absolute;
  top: 50%;
  right: 30px;
  display: block;
  width: 8px;
  height: auto;
  aspect-ratio: 1;
  content: "";
  border-right: 3px solid;
  border-bottom: 3px solid;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 760px) {
  .innerLink_item a::after {
    top: 47%;
    right: 10px;
  }
}

.innerLink_item-head {
  flex: auto;
  width: 100%;
}

.innerLink_item-head a {
  padding: 20px 0;
  font-size: 20px;
  color: white;
  background-color: #1D528B;
}
@media screen and (max-width: 760px) {
  .innerLink_item-head a {
    font-size: 12px;
  }
}

.pagetop {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 999;
  display: none;
  width: 66px;
  height: auto;
  aspect-ratio: 1;
  cursor: pointer;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.24);
}

.pagetop svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 23px;
  transform: translate(-50%, -50%);
}

.card_sns {
  position: relative;
  z-index: 2;
}