@charset "UTF-8";
body.menu-open { overflow: hidden; }
/* Fonts */
/* Break Point */
/* *** mixin *** */
/* break point */
html {
  font-size: 16px;
  width: 100%;
  --c-white: #ffffff;
  --c-off-white: #fbfeff;
  --c-black: #50514F;
  --c-gray: #99A1AF;
  --c-blue: #3180DB;
  --c-dark-blue: #2B2D42;
  --c-orange: #FF8811;
  --color-bg: var(--c-off-white);
  --color-primary: var(--c-blue);
  --color-secondary: var(--c-dark-blue);
  --color-accent: var(--c-blue);
  --color-sub: var(--c-gray);
  --color-text: var(--c-black);
  --color-attention: var(--c-orange);
  --color-conversion-bg: linear-gradient(135deg, #ffc652 0%, #fba30a 100%);
  --max-content-width-pc: 1920px;
  --content-width-pc-s: 33.75rem;
  --content-width-pc: 56rem;
  --content-width-pc-m: 60rem;
  --content-width-pc-l: 62.5rem;
  --shadow-default: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  html {
    --shadow-default: 0px 4px 4px rgba(0, 0, 0, 0.1);
  }
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: underline;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

#body {
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Verdana, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  width: 100%;
  overflow-x: hidden;
  position: relative;
}
#body:has(#wpadminbar) .tp-header {
  top: 32px;
}
@media (max-width: 767.89px) {
  #body:has(#wpadminbar) .tp-header {
    top: 46px;
  }
}

@media (max-width: 767.89px) {
  #wpadminbar {
    position: fixed;
  }
}

.c-white {
  color: var(--c-white);
}

.tp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media (max-width: 767.89px) {
  .tp-header {
    background-color: var(--c-white);
  }
}
.tp-header .tp-header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.625rem;
  max-width: var(--max-content-width-pc);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .tp-header .tp-header_inner {
    padding-inline: 2.5rem;
  }
}
@media (max-width: 767.89px) {
  .tp-header .tp-header_inner {
    padding-inline: 1.25rem;
    height: 2.8125rem;
  }
}
@media (min-width: 768px) {
  .tp-header .tp-header_inner .tp-header_logo {
    width: 18.75rem;
  }
}
@media (max-width: 767.89px) {
  .tp-header .tp-header_inner .tp-header_logo {
    width: 8.75rem;
  }
}
.tp-header .tp-header_inner .tp-header_logo img {
  width: 100%;
  height: auto;
}
.tp-header .tp-header_inner .tp-header_logo img {
  width: 100%;
  height: auto;
}
.tp-header .tp-header_inner .tp-header_menu_btn span {
  display: block;
  width: 1.5rem;
  height: 0.125rem;
  background-color: var(--c-black);
  margin-block: 0.3rem;
  transition: all 0.3s ease;
}

@media (max-width: 767.89px) {
  .tp-header_nav {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--c-white);
    z-index: 99;
    padding-block: 6.25rem;
    animation: fadeOut 0.3s ease forwards;
  }
}
@media (max-width: 767.89px) {
  .tp-header_nav.active {
    animation: fadeIn 0.3s ease forwards;
  }
}
.tp-header_nav ul {
  display: flex;
  gap: 2rem;
}
@media (max-width: 767.89px) {
  .tp-header_nav ul {
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    height: 100%;
  }
}
@media (min-width: 768px) {
  .tp-header_nav ul li a {
    color: var(--c-black);
    font-size: 1.125rem;
    transition: color 0.3s ease;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .tp-header_nav ul li a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: width 0.3s ease;
  }
  .tp-header_nav ul li a:hover::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: currentColor;
  }
  .tp-header_nav ul li a.current::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: currentColor;
  }
}
@media (min-width: 768px) {
  .tp-header_nav.light ul li a {
    color: var(--c-white);
  }
}

@keyframes fadeIn {
  from {
    display: block;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    display: none;
  }
}
@media (max-width: 767.89px) {
  .tp-sec p {
    font-size: 0.875rem;
    letter-spacing: 10%;
  }
}
.tp-sec .tp-sec_inn {
  max-width: var(--content-width-pc);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .tp-sec .tp-sec_inn {
    padding: 4rem 1rem;
  }
}
@media (max-width: 767.89px) {
  .tp-sec .tp-sec_inn {
    padding: 3.125rem 1.25rem;
  }
}
@media (min-width: 768px) {
  .tp-sec.tp-sec_shadow {
    margin-block-end: 5rem;
    padding-inline: 2.5rem;
  }
}
@media (max-width: 767.89px) {
  .tp-sec.tp-sec_shadow {
    margin-block-end: 6.25rem;
    padding-inline: 1.5625rem;
  }
}
.tp-sec.tp-sec_shadow .tp-sec_inn {
  overflow: hidden;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .tp-sec.tp-sec_shadow .tp-sec_inn {
    width: 100%;
    max-width: var(--max-content-width-pc);
    border-radius: 1.25rem;
    box-shadow: 15px 15px 25px rgba(0, 0, 0, 0.1), inset 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 767.89px) {
  .tp-sec.tp-sec_shadow .tp-sec_inn {
    border-radius: 0.625rem;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.1), inset 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  }
}

.tp-container {
  max-width: var(--content-width-pc);
  margin: 0 auto;
}

@media (max-width: 767.89px) {
  .tp-container-s {
    padding-inline: 1.875rem;
  }
}

.tp-container-m {
  max-width: var(--content-width-pc-m);
}

.tp-container-l {
  max-width: var(--content-width-pc-l);
}

.tp-block {
  display: flex;
}
@media (max-width: 767.89px) {
  .tp-block {
    flex-direction: column;
    gap: 1.875rem;
  }
}
@media (min-width: 768px) {
  .tp-block:not(:last-child) {
    margin-block-end: 5rem;
  }
}
@media (max-width: 767.89px) {
  .tp-block:not(:last-child) {
    margin-block-end: 3.125rem;
  }
}
@media (min-width: 768px) {
  .tp-block.reverse {
    flex-direction: row-reverse;
  }
}
.tp-block .tp-block_img {
  flex-shrink: 0;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .tp-block .tp-block_img {
    width: 54%;
    box-shadow: 30px 30px 50px rgba(0, 0, 0, 0.15);
  }
}
@media (max-width: 767.89px) {
  .tp-block .tp-block_img {
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.15);
  }
}
.tp-block .tp-block_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.tp-block .tp-block_content .tp-block_title {
  text-align: center;
  margin-block-end: 1em;
}
@media (min-width: 768px) {
  .tp-block .tp-block_content .tp-block_title h4 {
    font-size: 1.75rem;
  }
}
@media (max-width: 767.89px) {
  .tp-block .tp-block_content .tp-block_title h4 {
    font-size: 1rem;
    letter-spacing: 20%;
  }
}
.tp-block .tp-block_content .tp-block_title .tp-block_title_sub {
  color: var(--color-sub);
}
@media (min-width: 768px) {
  .tp-block .tp-block_content .tp-block_title .tp-block_title_sub {
    letter-spacing: 10%;
    margin-block-start: -0.6em;
  }
}
@media (max-width: 767.89px) {
  .tp-block .tp-block_content .tp-block_title .tp-block_title_sub {
    font-size: 0.625rem;
    margin-block-start: -0.4em;
    letter-spacing: 20%;
  }
}
@media (min-width: 768px) {
  .tp-block .tp-block_content .tp-block_discription {
    padding-inline: 3.75rem;
  }
}
@media (max-width: 767.89px) {
  .tp-block .tp-block_content .tp-block_discription {
    letter-spacing: 20%;
  }
}

.tp-button_area {
  text-align: center;
  margin-block-start: 1.25rem;
}

.cp-button_arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  overflow: hidden;
  position: relative;
  font-weight: 400;
  gap: 0.5em;
  padding-inline: 0.5em 1.5em;
  padding-block-end: 0.2em;
  letter-spacing: 10%;
}
.cp-button_arrow::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  animation: line-slide 2s ease infinite;
}
.cp-button_arrow::after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  position: absolute;
  top: 47%;
  right: 0;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}
.cp-button_arrow:hover {
  text-decoration: none;
}
.cp-button_arrow:hover::before {
  animation: none;
}

.cp-button_arrow {
  --button_arrow_gap: 0.5em;
  --button_arrow_padding_x_start: 0.5em;
  --button_arrow_padding_x_end: 1.5em;
  --button_arrow_padding_y_end: 0.2em;
  --button_arrow_font_size: 1rem;
  --button_arrow_font_weight: 400;
  --button_arrow_letter_spacing: 0.1em;
  --button_arrow_line_height: 1px;
  --button_arrow_head_size: 0.5em;
  --button_arrow_head_stroke: 2px;
  --button_arrow_anim_duration: 2s;
  --button_arrow_anim_timing: ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  gap: var(--button_arrow_gap);
  padding-inline: var(--button_arrow_padding_x_start) var(--button_arrow_padding_x_end);
  padding-block-end: var(--button_arrow_padding_y_end);
  font-size: var(--button_arrow_font_size);
  font-weight: var(--button_arrow_font_weight);
  letter-spacing: var(--button_arrow_letter_spacing);
}

.cp-button_arrow::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--button_arrow_line_height);
  background-color: currentColor;
  animation: line-slide var(--button_arrow_anim_duration) var(--button_arrow_anim_timing) infinite;
}

.cp-button_arrow::after {
  content: "";
  position: absolute;
  top: 47%;
  right: 0;
  width: var(--button_arrow_head_size);
  height: var(--button_arrow_head_size);
  border-top: var(--button_arrow_head_stroke) solid currentColor;
  border-right: var(--button_arrow_head_stroke) solid currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

.cp-button_arrow:hover {
  text-decoration: none;
}

.cp-button_arrow:hover::before {
  animation: none;
}

.cp-button_arrow span {
  position: relative;
}
.cp-button_arrow span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
  transform: skewX(-20deg);
  animation: moveShine 2s ease-in-out infinite;
}

.c-white .cp-button_arrow span::after {
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
}

@keyframes moveShine {
  0% {
    transform: translateX(-100%) skewX(-20deg);
  }
  14.3% {
    transform: translateX(500%) skewX(-20deg);
  }
  100% {
    transform: translateX(500%) skewX(-20deg);
  }
}
.cp-button_square {
  --button_square_min_width: 7.5rem;
  --button_square_padding_y: 1.5em;
  --button_square_padding_x: 4em;
  --button_square_bg: transparent;
  --button_square_color: currentColor;
  --button_square_border_width: 1;
  --button_square_dash_offset_start: 0;
  --button_square_dash_offset_end: -330;
  --button_square_anim_duration: 1.2s;
  --button_square_anim_timing: ease;
  --button_square_transition_duration: 600ms;
  --button_square_transition_timing: ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--button_square_min_width);
  min-height: var(--button_square_min_height);
  padding: var(--button_square_padding_y) var(--button_square_padding_x);
  border: none;
  background: var(--button_square_bg);
  color: var(--color-secondary);
  text-decoration: none;
  line-height: 1;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  font-size: 0.75rem;
  letter-spacing: 10%;
}

.c-white .cp-button_square {
  color: var(--c-white);
}

.cp-button_square:hover,
.cp-button_square:focus-visible {
  text-decoration: none;
  outline: none;
}

.cp-button_square_label {
  position: relative;
  z-index: 2;
}

.cp-button_square_border {
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  fill: none;
  stroke: currentColor;
  stroke-dasharray: 150 480;
  stroke-dashoffset: 150;
  transition: 1s ease-in-out;
}

.cp-button_square_border_base {
  stroke: currentColor;
  stroke-dasharray: none;
  animation: none;
  opacity: 0.3;
}

.cp-button_square_border_line {
  fill: none;
  stroke: currentColor;
  stroke-width: var(--button_square_border_width);
  vector-effect: non-scaling-stroke;
  stroke-linecap: butt;
  stroke-dashoffset: var(--button_square_dash_offset_start);
  animation: cp_button_square_border_spin var(--button_square_anim_duration) var(--button_square_anim_timing) infinite;
  transition: stroke-dasharray var(--button_square_transition_duration) var(--button_square_transition_timing), stroke-dashoffset var(--button_square_transition_duration) var(--button_square_transition_timing);
}

.cp-button_square:hover .cp-button_square_border_line,
.cp-button_square:focus-visible .cp-button_square_border_line {
  stroke-dasharray: 1000 0;
  stroke-dashoffset: 0;
  animation: none;
}

.cp-button_square_icon.arrow {
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  margin-inline-start: 1em;
}
.cp-button_square_icon.plus {
  width: 1em;
  height: 1em;
  position: relative;
  margin-inline-start: 1em;
}
.cp-button_square_icon.plus::before, .cp-button_square_icon.plus::after {
  content: "";
  position: absolute;
  background-color: currentColor;
}
.cp-button_square_icon.plus::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.cp-button_square_icon.plus::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

@keyframes cp_button_square_border_spin {
  from {
    stroke-dashoffset: var(--button_square_dash_offset_start);
  }
  to {
    stroke-dashoffset: var(--button_square_dash_offset_end);
  }
}
.tp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.tp-table th,
.tp-table td {
  padding: 1.25rem;
  border-bottom: 1px solid var(--c-gray);
}
@media (min-width: 768px) {
  .tp-table th,
  .tp-table td {
    font-size: 1rem;
  }
}
@media (max-width: 767.89px) {
  .tp-table th,
  .tp-table td {
    font-size: 0.875rem;
  }
}
.tp-table th {
  font-weight: normal;
  vertical-align: top;
  padding-inline-start: 0;
}
.tp-table ul {
  padding-left: 1.25rem;
  margin: 0;
  list-style-type: disc;
}
.tp-table .business_content_title:not(:first-child) {
  margin-block-start: 2em;
}

.tp-footer {
  background-image: url("../img/bg_footer.png");
  background-size: cover;
  background-position: center;
  color: var(--c-white);
}

.tp-footer .tp-footer_inn {
  display: flex;
}
@media (min-width: 768px) {
  .tp-footer .tp-footer_inn {
    padding-block: 2.5rem;
    padding-inline: 2.5rem;
    margin-inline: auto;
    justify-content: space-between;
    max-width: var(--max-content-width-pc);
  }
}
@media (max-width: 767.89px) {
  .tp-footer .tp-footer_inn {
    flex-direction: column;
    padding-block: 3.125rem;
    padding-inline: 1.25rem;
    font-size: 0.75rem;
    gap: 1.5rem;
  }
}
@media (min-width: 768px) {
  .tp-footer .tp-footer_inn .tp-footer_company_info .logo {
    width: 17.5rem;
    margin-block-end: 1rem;
  }
}
@media (max-width: 767.89px) {
  .tp-footer .tp-footer_inn .tp-footer_company_info .logo {
    width: 8.75rem;
    margin-block-end: 0.5rem;
  }
}
.tp-footer .tp-footer_inn .tp-footer_company_info p {
  margin-block-end: 0.5em;
}
.tp-footer .tp-footer_inn .privacy-policy {
  display: inline-block;
  margin-block-start: 0.5em;
}
.tp-footer .tp-footer_inn .tp-footer_map {
  overflow: hidden;
}
@media (min-width: 768px) {
  .tp-footer .tp-footer_inn .tp-footer_map {
    width: 17.5rem;
    height: 9.375rem;
    border-radius: 0.3125rem;
    box-shadow: 20px 20px 25px rgba(0, 0, 0, 0.15);
  }
}
@media (max-width: 767.89px) {
  .tp-footer .tp-footer_inn .tp-footer_map {
    border-radius: 0.625rem;
    margin-inline: 2.5rem;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.15);
  }
}
.tp-footer .tp-footer_inn .tp-footer_map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.tp-footer .tp-footer_copyright {
  text-align: center;
  font-size: 0.75rem;
  padding-block: 1em;
  color: var(--c-white);
}

.cp-kv {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  color: var(--c-white);
  overflow: hidden;
}
@media (min-width: 768px) {
  .cp-kv {
    height: 22.625rem;
  }
}
@media (max-width: 767.89px) {
  .cp-kv {
    height: 12.5rem;
    margin-block-start: 2.8125rem;
  }
}
.cp-kv .cp-kv_inn {
  position: relative;
  z-index: 1;
  padding-inline: 1.25rem;
  width: 100%;
  max-width: var(--max-content-width-pc);
  margin: 0 auto;
}
.cp-kv .cp-kv_inn .cp-kv_title_wrap {
  margin-inline: 1.25rem;
}
.cp-kv .cp-kv_inn .cp-kv_title_wrap h1 {
  letter-spacing: 10%;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .cp-kv .cp-kv_inn .cp-kv_title_wrap h1 {
    font-weight: bold;
    font-size: 3.125rem;
  }
}
@media (max-width: 767.89px) {
  .cp-kv .cp-kv_inn .cp-kv_title_wrap h1 {
    font-weight: 500;
    font-size: 1.875rem;
  }
}
.cp-kv .cp-kv_inn .cp-kv_title_wrap p {
  font-weight: 100;
  opacity: 0.6;
}
@media (min-width: 768px) {
  .cp-kv .cp-kv_inn .cp-kv_title_wrap p {
    letter-spacing: 20%;
    font-size: 1.125rem;
  }
}
@media (max-width: 767.89px) {
  .cp-kv .cp-kv_inn .cp-kv_title_wrap p {
    font-size: 0.75rem;
  }
}
.cp-kv.kv-top {
  height: 100vh;
}
.cp-kv.kv-top .cp-kv_title_wrap {
  margin-inline: 1.25rem;
}
.cp-kv.kv-top .cp-kv_title_wrap h1 {
  letter-spacing: 10%;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .cp-kv.kv-top .cp-kv_title_wrap h1 {
    font-weight: bold;
    font-size: clamp(3.125rem, 1.875rem + 2.6vw, 5rem);
  }
}
@media (max-width: 767.89px) {
  .cp-kv.kv-top .cp-kv_title_wrap h1 {
    font-weight: 500;
    font-size: clamp(1.875rem, 0.982rem + 4.47vw, 3.125rem);
  }
}
.cp-kv.kv-top .cp-kv_title_wrap p {
  font-weight: 100;
  opacity: 0.6;
}
@media (min-width: 768px) {
  .cp-kv.kv-top .cp-kv_title_wrap p {
    letter-spacing: 20%;
    font-size: clamp(1.125rem, 0.708rem + 0.87vw, 1.75rem);
  }
}
@media (max-width: 767.89px) {
  .cp-kv.kv-top .cp-kv_title_wrap p {
    margin-block-start: 1.5625rem;
    font-size: clamp(0.75rem, 0.393rem + 1.79vw, 1.25rem);
  }
}
.cp-kv.kv-top .scroll_marker {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border-bottom: solid 2px var(--c-white);
  border-right: solid 2px var(--c-white);
  animation: scroll_marker_anim 1.2s ease-out infinite;
}
@media (min-width: 768px) {
  .cp-kv.kv-top .scroll_marker {
    bottom: 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media (max-width: 767.89px) {
  .cp-kv.kv-top .scroll_marker {
    bottom: 4rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}
.cp-kv.kv-top .scroll_marker::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: 2px solid var(--c-white);
  border-right: 2px solid var(--c-white);
  transform: translate(-20%, -20%);
}
.cp-kv .cp-kv_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.cp-kv .cp-kv_bg img,
.cp-kv .cp-kv_bg picture,
.cp-kv .cp-kv_bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cp-kv .cp-kv_bg .cp-kv_bg_mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
}
.cp-kv .cp-breadcrumbs {
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  color: var(--c-white);
  width: 100%;
}
.cp-kv .cp-breadcrumbs ul {
  display: flex;
  gap: 0.5em;
  max-width: var(--max-content-width-pc);
  padding-inline: 2.5rem;
  margin: 0 auto;
  font-size: 0.625rem;
}
.cp-kv .cp-breadcrumbs ul li {
  font-size: 0.875rem;
  opacity: 0.8;
}
.cp-kv .cp-breadcrumbs ul li:not(:last-child)::after {
  content: ">";
  margin-inline: 0.5em;
  opacity: 0.5;
}

.cp-sec_title {
  text-align: center;
  margin-bottom: 2rem;
}
.cp-sec_title .cp-sec_title_sub {
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .cp-sec_title .cp-sec_title_sub {
    margin-block-end: -0.4em;
    font-size: 1.25rem;
    letter-spacing: 20%;
  }
}
@media (max-width: 767.89px) {
  .cp-sec_title .cp-sec_title_sub {
    margin-block-end: -0.2em;
    font-size: 0.75rem;
  }
}
.cp-sec_title .cp-sec_title_main {
  font-weight: 800;
  letter-spacing: 10%;
}
@media (min-width: 768px) {
  .cp-sec_title .cp-sec_title_main {
    font-size: 3rem;
  }
}
@media (max-width: 767.89px) {
  .cp-sec_title .cp-sec_title_main {
    font-size: 1.5rem;
  }
}

.tp-news_card_wrap {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .tp-news_card_wrap {
    gap: 2.5rem;
  }
}
@media (max-width: 767.89px) {
  .tp-news_card_wrap {
    flex-direction: column;
    gap: 1.25rem;
  }
}
@media (min-width: 768px) {
  .tp-news_card_wrap + .tp-button_area {
    margin-block-start: 2.5rem;
  }
}
@media (max-width: 767.89px) {
  .tp-news_card_wrap + .tp-button_area {
    margin-block-start: 1.5rem;
  }
}

.tp-category_list {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .tp-category_list {
    margin-block-end: 2.5rem;
  }
}
@media (max-width: 767.89px) {
  .tp-category_list {
    flex-wrap: wrap;
    gap: 1em;
    padding-inline: 2.5rem;
    margin-block-end: 6.25rem;
  }
}
@media (max-width: 767.89px) {
  .tp-category_list li {
    flex-basis: calc(50% - 1em);
  }
}
.tp-category_list li a {
  display: block;
  padding: 0.4em 1.8em;
  color: var(--c-white);
  background-color: var(--color-primary);
  border-radius: 9999px;
  font-size: 0.625rem;
  transition: background-color 0.3s ease;
  border: solid 1px var(--color-primary);
}
@media (max-width: 767.89px) {
  .tp-category_list li a {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.tp-category_list li a:hover {
  background-color: var(--c-white);
  color: var(--color-primary);
  text-decoration: none;
  border: solid 1px var(--color-primary);
}

.cp-news_card {
  display: flex;
  border: solid 1px #E5E7EB;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cp-news_card {
    flex-direction: column;
    width: calc(33.3333333333% - 1.6666666667rem);
    padding: 1.25rem;
    box-shadow: 15px 15px 25px rgba(0, 0, 0, 0.1);
    gap: 1.25rem;
    border-radius: 1.25rem;
  }
}
@media (max-width: 767.89px) {
  .cp-news_card {
    gap: 0.625rem;
    padding: 0.625rem;
    border-radius: 0.625rem;
    box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.1);
  }
}
.cp-news_card:hover {
  text-decoration: none;
}
.cp-news_card:hover .cp-news_card_thumbnail img {
  transform: scale(1.1);
}
.cp-news_card .cp-news_card_thumbnail {
  width: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cp-news_card .cp-news_card_thumbnail {
    aspect-ratio: 16/9;
    border-radius: 1.25rem;
  }
}
@media (max-width: 767.89px) {
  .cp-news_card .cp-news_card_thumbnail {
    width: 4.375rem;
    height: 4.375rem;
    flex-shrink: 0;
    border-radius: 0.625rem;
  }
}
.cp-news_card .cp-news_card_thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.cp-news_card .cp-news_card_content .cp-news_card_title {
  font-size: 0.875rem;
  font-weight: 500;
}
@media (max-width: 767.89px) {
  .cp-news_card .cp-news_card_content .cp-news_card_title {
    font-size: 0.75rem;
  }
}

.cp-news_card_info_area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-block-end: 0.625rem;
}
@media (max-width: 767.89px) {
  .cp-news_card_info_area {
    display: inline-flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.625rem;
    color: var(--c-white);
    background-color: var(--color-primary);
    padding: 0.4em 0.8em;
    border-radius: 9999px;
  }
}
@media (min-width: 768px) {
  .cp-news_card_info_area .cp-news_card_date {
    color: var(--color-sub);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 767.89px) {
  .cp-news_card_info_area .cp-news_card_date {
    font-size: inherit;
  }
}
@media (min-width: 768px) {
  .cp-news_card_info_area .cp-news_card_category {
    display: flex;
    align-items: center;
    font-size: 0.625rem;
    color: var(--c-white);
    background-color: var(--color-primary);
    padding: 0.4em 0.8em;
    border-radius: 0.375rem;
  }
}
@media (max-width: 767.89px) {
  .cp-news_card_info_area .cp-news_card_category {
    font-size: inherit;
  }
}

.sec-recruit {
  background-size: cover;
  background-position: top center;
}
@media (min-width: 768px) {
  .sec-recruit {
    background-image: url("../img/bg_recruit_pc.jpg");
  }
}
@media (max-width: 767.89px) {
  .sec-recruit {
    background-image: url("../img/bg_recruit_sp.jpg");
  }
}
.sec-recruit .tp-discription {
  text-align: center;
}

.sec-partner-cta {
  background-color: var(--c-off-white);
  text-align: center;
}
.sec-partner-cta .tp-discription {
  text-align: center;
}

.tp_sns_share {
  display: flex;
  align-items: center;
  border-top: solid 1px #E5E7EB;
  padding-block-start: 0.875rem;
}
@media (min-width: 768px) {
  .tp_sns_share {
    gap: 0.875rem;
    font-size: 0.875rem;
    margin-block-start: 5.25rem;
  }
}
@media (max-width: 767.89px) {
  .tp_sns_share {
    gap: 0.5rem;
    font-size: 0.75rem;
    margin-block-start: 2.5rem;
  }
}
.tp_sns_share .tp_sns_share_title {
  margin-block-end: 0 !important;
  font-size: 0.875rem;
}
.tp_sns_share .tp_sns_share_list {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.tp_sns_share .tp_sns_share_list .tp_sns_share_item a {
  background-color: var(--color-attention);
  color: var(--c-white);
  display: block;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
  border: solid 1px var(--color-attention);
}
@media (min-width: 768px) {
  .tp_sns_share .tp_sns_share_list .tp_sns_share_item a {
    padding: 0.375rem 1.125rem;
  }
}
@media (max-width: 767.89px) {
  .tp_sns_share .tp_sns_share_list .tp_sns_share_item a {
    padding: 0.25rem 0.625rem;
    font-size: 0.875rem;
  }
}
.tp_sns_share .tp_sns_share_list .tp_sns_share_item a:hover {
  text-decoration: none;
  background-color: var(--c-white);
  color: var(--color-attention);
}

.wp_pagenation {
  display: flex;
  justify-content: center;
  margin-block-start: 2.5rem;
}
@media (max-width: 767.89px) {
  .wp_pagenation {
    margin-block-start: 3.125rem;
  }
}
.wp_pagenation .page-numbers {
  display: flex;
  gap: 0.5rem;
}
.wp_pagenation .page-numbers li a,
.wp_pagenation .page-numbers li span {
  display: block;
  padding: 0.5em 0.75em;
  color: var(--color-secondary);
  border: solid 1px var(--color-secondary);
  border-radius: 0.625rem;
  transition: all 0.3s ease;
}
.wp_pagenation .page-numbers li a:hover {
  background-color: var(--color-secondary);
  color: var(--c-white);
  text-decoration: none;
}
.wp_pagenation .page-numbers li .current {
  background-color: var(--color-secondary);
  color: var(--c-white);
  border-color: var(--color-secondary);
}

@media (min-width: 768px) {
  .wp_post {
    padding: 2.8125rem 5.625rem;
    border-radius: 1.5rem;
    box-shadow: 15px 15px 25px rgba(0, 0, 0, 0.1), inset 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  }
}
.wp_post h3 {
  letter-spacing: 20%;
}
@media (min-width: 768px) {
  .wp_post h3 {
    font-size: 2rem;
    margin-block-end: 2.5rem;
  }
}
@media (max-width: 767.89px) {
  .wp_post h3 {
    font-size: 1.25rem;
    margin-block-end: 3.125rem;
  }
}
@media (min-width: 768px) {
  .wp_post .cp-news_card_info_area {
    justify-content: flex-start;
  }
}
@media (max-width: 767.89px) {
  .wp_post .cp-news_card_info_area {
    display: flex;
    width: fit-content;
    margin-inline: auto;
  }
}
@media (max-width: 767.89px) {
  .wp_post .wp_post_content {
    padding: 1.5rem;
    border-radius: 0.625rem;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.1), inset 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  }
}
.wp_post .wp_post_content h4 {
  margin-block-end: 1em;
  color: var(--color-primary);
  letter-spacing: 20%;
}
@media (min-width: 768px) {
  .wp_post .wp_post_content h4 {
    font-size: 1.25rem;
  }
}
@media (max-width: 767.89px) {
  .wp_post .wp_post_content h4 {
    font-size: 0.875rem;
  }
}
.wp_post .wp_post_content p {
  margin-block-end: 2em;
  letter-spacing: 20%;
}
@media (min-width: 768px) {
  .wp_post .wp_post_content p {
    font-size: 1rem;
  }
}
@media (max-width: 767.89px) {
  .wp_post .wp_post_content p {
    font-size: 0.875rem;
  }
}
.wp_post .wp_post_content .wp-block-list {
  letter-spacing: 20%;
  padding-inline-start: 1.5em;
}
.wp_post .wp_post_content .wp-block-list li {
  margin-block-end: 1em;
}
.wp_post .wp_post_content .wp-block-image {
  overflow: hidden;
}
@media (min-width: 768px) {
  .wp_post .wp_post_content .wp-block-image {
    border-radius: 1.25rem;
    margin-block-end: 2.25rem;
  }
}
@media (max-width: 767.89px) {
  .wp_post .wp_post_content .wp-block-image {
    border-radius: 0.625rem;
    margin-block-end: 1.5rem;
  }
}

@media (max-width: 767.89px) {
  .pc_only {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .sp_only {
    display: none !important;
  }
}

@keyframes line-slide {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes scroll_marker_anim {
  0% {
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, calc(-50% + 10px)) rotate(45deg);
    opacity: 0;
  }
}

/*# sourceMappingURL=common.css.map */
