@charset "UTF-8";
/*!
Theme Name: KANABAN Corporate
Template: blankslate
Description: カナバングラフィックス公式サイト用のテーマです。BlankSlateの子テーマとして作成しているため、BlankSlateテーマは削除しないでください。
Author: Kyoko HORIE
Version: 1.0
*/
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@700;900&family=Noto+Sans+JP:wght@400;700;900&display=swap");
:root {
  --clr-primary: #ff8600;
  --clr-job1: #ff9f72;
  --clr-job2: #d788db;
  --clr-job3: #46cacc;
}

*::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 62px;
}

@media (width >= 768px) {
  html {
    scroll-padding-top: 93px;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  padding-top: 62px;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

@media (width >= 768px) {
  body {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    padding-top: 93px;
  }
}
img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

a:focus-visible {
  outline: var(--clr-primary);
}

dd {
  margin-left: 0;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  color: #000;
  border: none;
  cursor: pointer;
}

button:focus-visible {
  outline: var(--clr-primary);
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=text],
input[type=email],
textarea {
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid #cbcbcb;
  border-radius: 6px;
  box-shadow: inset 0 3px 6px rgba(77, 77, 77, 0.2), 0 2px 0 #fff;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.5555555556;
}

@media (width >= 768px) {
  input[type=text],
  input[type=email],
  textarea {
    padding: 20px;
    border-radius: 12px;
  }
}
input[type=text]:focus-visible,
input[type=email]:focus-visible,
textarea:focus-visible {
  outline-color: var(--clr-primary);
}

input[type=text],
input[type=email] {
  height: 45px;
}

@media (width >= 768px) {
  input[type=text],
  input[type=email] {
    height: 60px;
  }
}
input[type=submit] {
  cursor: pointer;
}

[v-cloak] {
  display: none;
}

/* vue transition用 */
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.3s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

@media (width >= 768px) {
  .for-sp {
    display: none;
  }
}
.for-pc {
  display: none;
}

@media (width >= 768px) {
  .for-pc {
    display: inherit;
  }
}
.type-page {
  padding-bottom: 20px;
}

@media (width >= 768px) {
  .type-page {
    padding-bottom: 22px;
  }
}
.content {
  overflow: hidden;
}

@media (width >= 768px) {
  .content {
    flex: 1;
  }
}
.content_inner {
  padding-right: 10px;
  padding-left: 10px;
  container: content/inline-size;
}

@media (width >= 768px) {
  .content_inner {
    padding-right: 30px;
    padding-left: 30px;
    width: min(100%, 1000px + 60px);
    margin-right: auto;
    margin-left: auto;
  }
}
.section_title,
.page_title_main {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.page_title_group {
  display: grid;
  gap: 5px 0;
  text-align: center;
}

.page_title_group::before {
  content: "";
}

.page_title_main {
  font-size: 2rem;
}

@media (width >= 768px) {
  .page_title_main {
    font-size: 3.25rem;
  }
}
.page_title_sub {
  color: var(--clr-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

@media (width >= 768px) {
  .page_title_sub {
    font-size: 1rem;
  }
}
.button_basic {
  position: relative;
  display: flex;
  align-items: center;
  height: 44px;
  padding-right: 15px;
  padding-left: 15px;
  font-weight: 700;
  font-size: 1.12rem;
  color: #000;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 22px;
  text-align: center;
  overflow: hidden;
  transition: color 0.25s ease;
}

.button_basic::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.25s ease;
  transition-property: transform;
  content: "";
}

.button_basic:hover, .button_basic:focus-visible {
  color: #fff;
}

.button_basic:hover::before, .button_basic:focus-visible::before {
  transform: scaleX(1);
  transform-origin: left;
}

.button_basic .fa-solid,
.button_basic .text {
  position: relative;
}

.button_basic .fa-solid {
  flex-shrink: 0;
  padding-top: 1px;
}

.button_basic .text {
  flex-shrink: 1;
  width: 100%;
}

/* モーダルウィンドウ共通 */
.modal_background {
  position: fixed;
  position: -webkit-fixed;
  z-index: 100000;
  top: 0;
  left: 0;
  display: grid;
  place-items: end center;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

@media (width >= 768px) {
  .modal_background {
    place-items: center;
  }
}
.modal_content {
  width: min(100%, 820px);
  height: calc(100dvh - 109px);
  background-color: #141414;
  border: solid #000;
  border-width: 1px 0 0 0;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  box-shadow: inset 0 1.5px 3px rgba(255, 255, 255, 0.1);
  font-weight: 500;
  color: #fff;
}

.modal_content.layout-portrait {
  padding-top: 10px;
}

@media (width >= 768px) {
  .modal_content {
    position: relative;
    height: auto;
    max-height: calc(100dvh - 200px);
    padding: 40px 40px 50px !important;
    border-width: 1px;
    border-radius: 16px;
  }
}
.modal_scrollable {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

@media (width >= 768px) {
  .modal_scrollable {
    max-height: calc(100dvh - 200px - 40px - 50px - 2px);
  }
  .modal_scrollable::-webkit-scrollbar {
    width: 10px;
  }
  .modal_scrollable::-webkit-scrollbar-track {
    background-color: #141414;
    border-radius: 5px;
  }
  .modal_scrollable::-webkit-scrollbar-thumb {
    background-color: #a3a3a3;
    border-radius: 5px;
  }
}
.modal_inner {
  padding-right: 10px;
  padding-bottom: 57.5px;
  padding-left: 10px;
}

@media (width >= 768px) {
  .modal_inner {
    padding-bottom: 30px;
  }
}
.modal_buttongroup {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 45px;
  background-color: rgba(40, 40, 40, 0.9);
  backdrop-filter: blur(1px);
  border-top: 2px solid #000;
  box-shadow: -5px 0 10px rgba(0, 0, 0, 0.4);
}

@media (width >= 768px) {
  .modal_buttongroup {
    position: absolute;
    justify-content: space-around;
    height: 50px;
    padding-right: 40px;
    padding-left: 40px;
    border-radius: 0 0 16px 16px;
    border-top-width: 4px;
    box-shadow: inset 0 -1px 3px rgba(255, 255, 255, 0.1);
  }
}
.modal_buttongroup::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #414141;
  content: "";
}

@media (width >= 768px) {
  .modal_buttongroup::before {
    top: -4px;
    height: 2px;
  }
}
.modal_button {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 0 6px;
  height: 100%;
  padding-right: 9px;
  padding-left: 9px;
  background-color: transparent;
  font-size: 1rem;
  color: #8d8d8d;
  line-height: 1;
  transition: color 0.3s ease;
}

.modal_button.is-hide {
  visibility: hidden;
}

.modal_button:hover {
  color: #fff;
}

.modal_button .fa-solid {
  color: var(--clr-primary);
}

.modal_close_absolute {
  display: none;
}

@media (width >= 768px) {
  .modal_close_absolute {
    position: absolute;
    top: 12px;
    right: 12px;
    display: block;
    color: var(--clr-primary);
    font-size: 1.25rem;
    background-color: transparent;
  }
}
/* ローディングアニメーション */
.loading-spinner {
  --spinnerDiameter: 40px; /* スピナーの直径 */
  --spinnerRadius: calc(var(--spinnerDiameter) / 2); /* スピナーの半径 */
  --dotCount: 8; /* ドットの数 */
  --dotDiameter: 8px; /* ドットの直径 */
  position: relative;
  width: calc(var(--spinnerDiameter) + var(--dotDiameter));
  margin: auto;
  aspect-ratio: 1;
  padding: calc(var(--dotDiameter) / 2);
}

.loading-spinner .dot {
  --angle: calc((360deg / var(--dotCount)) * var(--i));
  --x: calc(var(--spinnerRadius) * cos(var(--angle))); /* r cosθ */
  --y: calc(var(--spinnerRadius) * sin(var(--angle))); /* r sinθ */
  position: absolute;
  top: 50%;
  left: 50%;
  translate: calc(var(--x) - 50%) calc(var(--y) - 50%);
  scale: 0;
  display: inline-block;
  width: var(--dotDiameter);
  aspect-ratio: 1;
  background: #ededed;
  border-radius: 50%;
  /* Animation Settings */
  --duration: 1s;
  --delay: calc(var(--duration) * (var(--i) / var(--dotCount)));
  animation: loadingAnimation var(--duration) var(--delay) infinite ease-in-out;
}

@keyframes loadingAnimation {
  50% {
    scale: 1;
    background-color: #7e7e7e;
  }
}
.header {
  padding-right: 10px;
  padding-left: 10px;
  position: fixed;
  z-index: 10000;
  top: 0;
  width: 100%;
  background-color: #fff;
}

@media (width >= 768px) {
  .header {
    padding-right: 30px;
    padding-left: 30px;
    background-color: rgba(255, 255, 255, 0.8);
  }
}
.header .button_menu {
  position: relative;
  z-index: 10000;
  width: 30px;
  height: 30px;
  background-color: #fff;
  cursor: pointer;
}

@media (width >= 768px) {
  .header .button_menu {
    display: none;
  }
}
.header .button_menu:focus-visible {
  outline: auto;
}

.header .button_menu .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 23px;
  transform: translate(-50%, -50%);
}

.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1000px);
  height: 62px;
  margin-right: auto;
  margin-left: auto;
}

@media (width >= 768px) {
  .header_inner {
    gap: 0 40px;
    height: 93px;
  }
}
.header_logo {
  width: 220px;
  margin-bottom: 6px;
  transition: opacity 0.3s ease;
}

@media (width >= 768px) {
  .header_logo {
    width: 336px;
    margin-bottom: 10px;
  }
}
.header_logo:hover {
  opacity: 0.7;
}

.header_menu {
  position: fixed;
  top: 62px;
  left: 0;
  width: 100%;
  min-height: calc(100svh - 62px);
  height: calc(100dvh - 62px);
  max-height: calc(100lvh - 62px);
  padding: 45px 45px 145px;
  background: url(assets/img/common/bg_menu_sp.png) no-repeat center top/calc(100% - 20px) calc(100% - 20px);
  background-color: #fff;
  transition: all 0.3s ease;
  overflow: auto;
}

@media (width >= 768px) {
  .header_menu {
    position: unset;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 0 40px;
    width: -moz-fit-content;
    width: fit-content;
    min-height: -moz-min-content;
    min-height: min-content;
    height: auto;
    max-height: -moz-max-content;
    max-height: max-content;
    padding: 0;
    background: none;
    overflow: unset;
  }
}
.header_menu::after {
  position: fixed;
  right: 0;
  bottom: -50px;
  left: 0;
  display: block;
  width: 196px;
  height: 191px;
  margin-right: auto;
  margin-left: auto;
  background: url(assets/img/common/img_menu_machiko.png) no-repeat center top/contain;
  transform: translateY(calc(100% - 50px));
  content: "";
}

@media (width >= 768px) {
  .header_menu::after {
    content: none;
  }
}
@keyframes machiko_jump {
  0% {
    transform: translateY(calc(100% - 50px));
  }
  50% {
    transform: translateY(-10px);
  }
  70% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
.header_menu.is-active::after {
  animation: machiko_jump 0.5s ease-out forwards;
}

.header_langlist {
  position: absolute;
  top: 22px;
  right: 28px;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  padding: 3px;
  background-color: #383838;
  border-radius: 30px;
}

@media (width >= 768px) {
  .header_langlist {
    position: unset;
    gap: 0 2px;
    border-radius: 13px;
  }
}
.header_langlist-item {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.header_langlist-item a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 23px;
  padding-bottom: 2px;
  color: #fff;
  border-radius: 23px;
  box-shadow: inset 0 -2px rgba(77, 77, 77, 0.39);
  font-size: 1rem;
  line-height: 1;
}

@media (width >= 768px) {
  .header_langlist-item a {
    width: 29px;
    height: 20px;
    border-radius: 10px;
  }
}
.header_langlist-item a:hover {
  background-color: #fff;
  color: #000;
}

.header_langlist-item.is-active a {
  background-color: #fff;
  color: #000;
}

@media (width >= 768px) {
  .header_navlist {
    display: flex;
    gap: 0 22px;
  }
}
.header_navlist-item {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
  position: relative;
}

@media (width >= 768px) {
  .header_navlist-item:has(.header_sublist):hover .header_navlist-label, .header_navlist-item:has(.header_sublist):focus .header_navlist-label {
    color: #fff;
  }
  .header_navlist-item:has(.header_sublist):hover::before, .header_navlist-item:has(.header_sublist):focus::before {
    position: absolute;
    z-index: -1;
    top: 0;
    left: -12px;
    display: block;
    width: 91px;
    height: 113px;
    background: url(assets/img/common/bg_hover_recruit.png) no-repeat center/100% 100%;
    content: "";
  }
  .header_navlist-item:has(.header_sublist):hover .header_sublist, .header_navlist-item:has(.header_sublist):focus .header_sublist {
    opacity: 1;
    pointer-events: all;
  }
  .header_navlist-item:has(.header_sublist).is-current .header_navlist-label {
    position: relative;
    color: #fff;
  }
  .header_navlist-item:has(.header_sublist).is-current .header_navlist-label::before {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: url(assets/img/common/bg_current_recruit.png);
  }
  .header_navlist-item.is-focused .header_navlist-label {
    color: #fff;
  }
  .header_navlist-item.is-focused::before {
    position: absolute;
    z-index: -1;
    top: 0;
    left: -12px;
    display: block;
    width: 91px;
    height: 113px;
    background: url(assets/img/common/bg_hover_recruit.png) no-repeat center/100% 100%;
    content: "";
  }
  .header_navlist-item.is-focused .header_sublist {
    opacity: 1;
    pointer-events: all;
  }
}
.header_navlist-link,
.header_navlist-label {
  display: block;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 1.31rem;
  outline: none;
}

@media (width >= 768px) {
  .header_navlist-link,
  .header_navlist-label {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1rem;
  }
}
.header_navlist-link {
  position: relative;
  z-index: 0;
  color: #000;
}

.header_navlist-link:hover, .header_navlist-link:focus {
  color: #fff;
}

@media (width >= 768px) {
  .header_navlist-link:hover::before, .header_navlist-link:focus::before, .header_navlist-link.is-current::before {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .header_navlist-link.is-current {
    color: #fff;
  }
  .header_navlist-link.link_about:hover::before, .header_navlist-link.link_about:focus::before, .header_navlist-link.link_about.is-current::before {
    content: url(assets/img/common/bg_hover_about.png);
  }
  .header_navlist-link.link_works:hover::before, .header_navlist-link.link_works:focus::before, .header_navlist-link.link_works.is-current::before {
    content: url(assets/img/common/bg_hover_works.png);
  }
  .header_navlist-link.link_news:hover::before, .header_navlist-link.link_news:focus::before, .header_navlist-link.link_news.is-current::before {
    content: url(assets/img/common/bg_hover_news.png);
  }
  .header_navlist-link.link_contact:hover::before, .header_navlist-link.link_contact:focus::before, .header_navlist-link.link_contact.is-current::before {
    content: url(assets/img/common/bg_hover_contact.png);
  }
}
.header_navlist-label {
  color: #f3d1ab;
  cursor: pointer;
}

@media (width >= 768px) {
  .header_navlist-label {
    color: #000;
  }
}
.header_sublist {
  margin-top: -7px;
}

@media (width >= 768px) {
  .header_sublist {
    position: absolute;
    left: -10px;
    width: calc(100% + 20px);
    margin-top: 0;
    opacity: 0;
    pointer-events: none;
  }
}
.header_sublist-item {
  display: grid;
  grid-template-columns: 1em auto;
  align-items: center;
}

@media (width >= 768px) {
  .header_sublist-item {
    display: block;
    align-items: unset;
  }
}
.header_sublist-item::before {
  content: "・";
}

@media (width >= 768px) {
  .header_sublist-item::before {
    content: none;
  }
}
.header_sublist-item .header_navlist-link {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 1.12rem;
}

@media (width >= 768px) {
  .header_sublist-item .header_navlist-link {
    padding-top: 9px;
    padding-bottom: 9px;
    text-align: center;
    color: #fff;
    font-size: 0.93rem;
  }
  .header_sublist-item .header_navlist-link:hover, .header_sublist-item .header_navlist-link:focus-visible {
    background-color: rgba(255, 255, 255, 0.2);
  }
}
.footer {
  position: relative;
  padding-top: 30px;
  background-color: #e1e1e1;
}

.footer::before {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  background: url(assets/img/common/edge_footer.png) no-repeat left 9% bottom/auto 100%;
  content: "";
}

@media (width >= 768px) {
  .footer::before {
    height: 22px;
    background-position: center bottom;
  }
}
@media (width >= 1400px) {
  .footer::before {
    background-repeat: repeat-x;
    background-size: contain;
  }
}
.footer_inner {
  position: relative;
  padding-right: 10px;
  padding-bottom: 124px;
  padding-left: 10px;
  overflow: hidden;
}

@media (width >= 768px) {
  .footer_inner {
    padding-right: 30px;
    padding-left: 30px;
    width: min(100%, 1060px);
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 76px;
  }
}
.footer_inner::before {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: calc(50% - 189.25px - 5px);
  width: 378.5px;
  height: 124.5px;
  background: url(assets/img/common/bg_footer_sp.png) no-repeat center/contain;
  content: "";
}

@media (width >= 768px) {
  .footer_inner::before {
    left: calc(50% - 265px);
    width: 766px;
    height: 209px;
    background: url(assets/img/common/bg_footer_pc.png) no-repeat center bottom/contain;
  }
}
.footer_banner {
  width: min(100%, 493px);
  margin-right: auto;
  margin-left: auto;
}

@media (width >= 768px) {
  .footer_banner {
    margin-bottom: 10px;
  }
}
.footer_banner a {
  display: block;
  transition: opacity 0.3s ease;
}

.footer_banner a:hover, .footer_banner a:focus-visible {
  opacity: 0.7;
  outline: none;
}

.footer_companyinfo {
  padding-top: 30px;
  text-align: center;
  font-style: normal;
}

@media (width >= 768px) {
  .footer_companyinfo {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 70px 320px;
    gap: 0 20px;
    text-align: left;
  }
}
.footer_company_logo {
  width: 70.5px;
  margin: 0 auto 15px;
}

@media (width >= 768px) {
  .footer_company_logo {
    width: 100%;
    margin-bottom: 0;
    grid-row: 1/4;
  }
}
.footer_company_name {
  margin-bottom: 14px;
  font-size: 1.25rem;
  font-weight: 900;
}

@media (width >= 768px) {
  .footer_company_name {
    margin-bottom: 10px;
  }
}
.footer_company_address {
  margin-bottom: 17px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
}

@media (width >= 768px) {
  .footer_company_address {
    margin-bottom: 15px;
    font-size: 0.81rem;
  }
}
.footer_link_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11.5px;
}

@media (width >= 768px) {
  .footer_link_wrapper {
    justify-content: start;
    gap: 10px;
  }
}
.footer_link_block {
  width: 36.5px;
}

@media (width >= 768px) {
  .footer_link_block {
    width: 32px;
  }
}
.footer_link {
  display: block;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.footer_link:hover {
  transform: rotate(360deg);
}

.footer_link:focus-visible {
  opacity: 0.7;
}

.footer_copyright {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: grid;
  place-items: center;
  height: 35px;
  background-color: #bababa;
  color: #fff;
}

.footer_copyright small {
  font-size: 0.56rem;
}

@media (width >= 768px) {
  .footer_copyright {
    padding-right: 30px;
    padding-left: 30px;
    position: absolute;
    right: 0;
    bottom: 12px;
    left: 0;
    display: block;
    width: min(100%, 1000px + 60px);
    height: auto;
    margin-right: auto;
    margin-left: auto;
    background: none;
    color: #909090;
  }
  .footer_copyright small {
    font-size: 0.75rem;
  }
}
/* メインビジュアル（スライダー） */
.front_mv {
  margin-right: auto;
  margin-left: auto;
}

.front_mv_pagination {
  display: flex;
  justify-content: flex-end;
  gap: 2px;
  margin-top: 6px;
  padding-right: 7.3%;
  padding-left: 7.3%;
}

@media (width >= 768px) {
  .front_mv_pagination {
    margin-top: 10px;
    padding-right: 14%;
    padding-left: 14%;
  }
}
@media (width >= 1401px) {
  .front_mv_pagination {
    padding-right: calc((100% - 1000px) / 2);
    padding-left: calc((100% - 1000px) / 2);
  }
}
.front_mv_page {
  display: block;
  width: 14px;
  height: 3px;
  padding: 0;
  background-color: #dfdfdf;
  border: none;
}

@media (width >= 768px) {
  .front_mv_page {
    width: 20px;
    height: 4px;
  }
}
.front_mv_page.is-active {
  background-color: var(--clr-primary);
}

.front_mv_link {
  transition: opacity 0.3s ease;
}

.front_mv_link:hover {
  opacity: 0.7;
}

.front_mv_banner {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

@media (width >= 768px) {
  .front_mv_banner {
    border-radius: 24px;
  }
}
/* NEWS */
.front_news {
  padding-top: 30px;
  padding-bottom: 124px;
}

@media (width >= 768px) {
  .front_news {
    padding-top: 70px;
    padding-bottom: 117px;
  }
}
.front_news_inner {
  position: relative;
}

.front_news_title {
  margin-bottom: 25px;
  font-size: 2rem;
  text-align: center;
}

@media (width >= 768px) {
  .front_news_title {
    font-size: 2.25rem;
    text-align: left;
  }
}
.front_news_button {
  width: 200px;
  margin-right: auto;
  margin-left: auto;
}

@media (width >= 768px) {
  .front_news_button {
    position: absolute;
    top: -4px;
    right: 30px;
  }
}
.front_news_button .text {
  padding-right: 0.5em;
}

.front_news_list {
  margin-bottom: 35px;
}

@media (width >= 768px) {
  .front_news_list {
    margin-bottom: 0;
  }
}
.front_news_listitem {
  opacity: 1 !important;
}

/* OUR ANIMATION */
.front_our-animation {
  position: relative;
  padding-top: 22.5px;
  padding-bottom: 44px;
  background-color: #f1f1f1;
}

@media (width >= 768px) {
  .front_our-animation {
    padding-top: 40px;
    padding-bottom: 82px;
  }
}
.front_our-animation::before {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  background: url(assets/img/front-page/edge_our-animation.png) no-repeat left 9% bottom/auto 100%;
  content: "";
}

@media (width >= 768px) {
  .front_our-animation::before {
    height: 22px;
    background-position: center bottom;
  }
}
@media (width >= 1400px) {
  .front_our-animation::before {
    background-repeat: repeat-x;
    background-size: contain;
  }
}
.front_our-animation_title {
  margin-bottom: 20px;
  font-size: 1.31rem;
  text-align: center;
}

@media (width >= 768px) {
  .front_our-animation_title {
    font-size: 2.25rem;
    text-align: left;
  }
}
.front_banner_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (width >= 768px) {
  .front_banner_wrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: 3cqw;
    max-width: 100%;
  }
}
.front_banner {
  border-radius: 10px;
  overflow: hidden;
}

.front_banner a {
  display: block;
  transition: opacity 0.3s ease;
}

.front_banner a:hover, .front_banner a:focus-visible {
  opacity: 0.7;
}

.about_title_group {
  margin-top: 19px;
  margin-bottom: 25px;
}

@media (width >= 768px) {
  .about_title_group {
    margin-top: 27px;
    margin-bottom: 40px;
  }
}
.about_title_group::before {
  height: 53px;
  margin-bottom: 5px;
  background: url(assets/img/about/icn_ttl.png) no-repeat center bottom/contain;
}

@media (width >= 768px) {
  .about_title_group::before {
    height: 56px;
  }
}
/* 代表挨拶 */
.about_message {
  margin-bottom: 56px;
}

@media (width >= 768px) {
  .about_message {
    margin-bottom: 45px;
  }
}
.about_message_title {
  width: min(100%, 316px);
  margin-right: auto;
  margin-bottom: 15px;
  margin-left: auto;
}

@media (width >= 768px) {
  .about_message_title {
    width: 670px;
    margin-bottom: 35px;
  }
}
.about_message_sentence {
  font-size: 1.12rem;
  line-height: 1.5;
}

@media (width >= 768px) {
  .about_message_sentence {
    font-size: min(2.35cqw, 1.25rem);
    line-height: 1.8;
    text-align: center;
  }
}
.about_message_author {
  display: grid;
  gap: 10px 0;
  margin-top: 15px;
  padding-top: 28px;
  font-weight: 700;
  text-align: center;
  background: url(assets/img/about/bdr_dot.png) no-repeat center top/96.5px 6.5px;
}

@media (width >= 768px) {
  .about_message_author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 18px;
    margin-top: 17px;
    padding-top: 27px;
    background-size: 97px 7px;
  }
}
.about_message_author .position {
  font-size: 0.87rem;
  color: var(--clr-primary);
}

.about_message_author .name {
  font-size: 1.12rem;
}

/* 会社概要 */
.about_profile {
  margin-bottom: 43px;
}

@media (width >= 768px) {
  .about_profile {
    margin-bottom: 60px;
  }
}
.about_profile_list {
  margin-right: -10px;
  margin-left: -10px;
}

@media (width >= 768px) {
  .about_profile_list {
    margin-right: 0;
    margin-left: 0;
    border: 1px solid #c4c8cb;
  }
}
@media (width >= 768px) {
  .about_profile_listitem {
    display: grid;
    grid-template-columns: 240px 1fr 0;
    gap: 0 30px;
  }
  .about_profile_listitem::after {
    content: "";
  }
}
.about_profile_listitem dt,
.about_profile_listitem dd {
  padding-right: 10px;
  padding-left: 10px;
}

.about_profile_listitem dt {
  display: grid;
  place-content: center;
  height: 40px;
  font-size: 1rem;
  font-weight: 700;
}

@media (width >= 768px) {
  .about_profile_listitem dt {
    place-content: start center;
    height: auto;
    padding-top: 25px;
    padding-bottom: 25px;
    font-size: 1.12rem;
    line-height: 1.68rem;
    text-align: center;
  }
}
.about_profile_listitem dd {
  padding-top: 12.5px;
  padding-bottom: 15px;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.5;
}

@media (width >= 768px) {
  .about_profile_listitem dd {
    padding: 25px 0;
  }
}
.about_profile_listitem p,
.about_profile_listitem li {
  font-size: 1rem;
  line-height: 1.5;
}

@media (width >= 768px) {
  .about_profile_listitem p,
  .about_profile_listitem li {
    font-size: 1rem;
  }
}
@media (width >= 768px) {
  .about_profile_listitem p {
    line-height: 1.5;
  }
}
.about_profile_listitem li {
  padding-left: 1em;
  text-indent: -1em;
}

@media (width >= 768px) {
  .about_profile_listitem li {
    line-height: 1.375;
  }
}
.about_profile_listitem:nth-child(odd) dt {
  background-color: #f9f9f9;
}

.about_profile_listitem:nth-child(even) dt {
  background-color: #f1f1f1;
}

@media (width >= 768px) {
  .about_profile_listitem:not(:first-child) dt {
    border-top: 1px solid #fff;
  }
  .about_profile_listitem:not(:first-child) dd {
    border-top: 1px solid #c4c8cb;
  }
}
/* セクション共通スタイル */
.about_box_section {
  padding: 30px 20px;
  background-color: #f1f1f1;
  border-radius: 10px;
}

@media (width >= 768px) {
  .about_box_section {
    padding: 40px 40px 30px;
    border-radius: 20px;
  }
}
.about_section_title {
  display: flex;
  align-items: center;
  gap: 0 10px;
}

@media (width >= 768px) {
  .about_section_title {
    gap: 0 20px;
  }
}
.about_section_title_main {
  font-size: 1.68rem;
}

@media (width >= 768px) {
  .about_section_title_main {
    font-size: 2.62rem;
  }
}
.about_section_title_sub {
  display: grid;
  place-items: center;
  width: 87px;
  height: 20px;
  font-size: 0.62rem;
  font-weight: 700;
  border: 1px solid #000;
  border-radius: 4px;
}

@media (width >= 768px) {
  .about_section_title_sub {
    width: 143px;
    height: 33px;
    border-width: 2px;
    font-size: 1rem;
  }
}
/* 主要お取引先 */
.about_client {
  margin-bottom: 30px;
}

@media (width >= 768px) {
  .about_client {
    margin-bottom: 60px;
  }
}
.about_client_title {
  margin-bottom: 10px;
}

@media (width >= 768px) {
  .about_client_title {
    margin-bottom: 20px;
  }
}
.about_client_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 30px;
}

@media (width >= 768px) {
  .about_client_list {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 40px;
  }
}
.about_client_caption {
  margin-top: 10px;
  font-weight: 500;
  font-size: 0.62rem;
}

@media (width >= 768px) {
  .about_client_caption {
    margin-top: 25px;
    font-size: 0.87rem;
    text-align: right;
  }
}
/* 会社への道順 */
.about_access {
  position: relative;
  margin-bottom: 99px;
}

@media (width >= 768px) {
  .about_access {
    margin-bottom: 200px;
  }
}
.about_access::after {
  position: absolute;
  top: -67px;
  right: 16px;
  width: 77px;
  height: 121.5px;
  background: url(assets/img/about/img_machiko.png) no-repeat center top/contain;
  content: "";
}

@media (width >= 768px) {
  .about_access::after {
    top: -38px;
    right: 96px;
    width: 167px;
    height: 265px;
  }
}
.about_access_title {
  margin-bottom: 19px;
}

@media (width >= 768px) {
  .about_access_title {
    margin-bottom: 24px;
  }
}
.about_access_routes {
  display: grid;
  gap: 6px 0;
  margin-bottom: 10px;
}

@media (width >= 768px) {
  .about_access_routes {
    margin-bottom: 15px;
  }
}
.about_access_route {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0 5px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3125;
}

@media (width >= 768px) {
  .about_access_route {
    align-items: center;
    gap: 0 7px;
    line-height: 1.6875;
  }
}
.about_access_route::before {
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 6px solid;
  border-radius: 50%;
  content: "";
}

.about_access_route.marunouchi::before {
  border-color: #f62e36;
}

.about_access_route.oedo::before {
  border-color: #b6007a;
}

.about_access_button {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
  padding-right: 20px;
  padding-left: 20px;
  background-color: transparent;
}

.about_access_map {
  aspect-ratio: 71/55;
  width: calc(100% + 40px);
  height: 100%;
  margin-right: -20px;
  margin-bottom: -30px;
  margin-left: -20px;
  border-radius: 0 0 10px 10px;
}

@media (width >= 768px) {
  .about_access_map {
    aspect-ratio: 2/1;
    width: calc(100% + 80px);
    margin-right: -40px;
    margin-left: -40px;
    border-radius: 0 0 20px 20px;
  }
}
.works {
  padding-bottom: 20px;
}

@media (width >= 768px) {
  .works {
    padding-bottom: 22px;
  }
}
.works_title_group {
  margin-top: 15px;
  margin-bottom: 22.5px;
}

@media (width >= 768px) {
  .works_title_group {
    margin-top: 20px;
    margin-bottom: 60px;
  }
}
.works_title_group::before {
  height: 51px;
  background: url(assets/img/works/icn_ttl.png) no-repeat center bottom/contain;
}

@media (width >= 768px) {
  .works_title_group::before {
    height: 68px;
  }
}
.works_showreel {
  margin-bottom: 57px;
}

@media (width >= 768px) {
  .works_showreel {
    margin-bottom: 100px;
  }
}
.works_showreel_video {
  margin-bottom: 15px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
}

@media (width >= 768px) {
  .works_showreel_video {
    margin-bottom: 24px;
    border-radius: 24px;
  }
}
.works_showreel_video video {
  width: 100%;
  height: 100%;
}

@media (width >= 768px) {
  .works_showreel_text {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0 5cqw;
  }
}
.works_showreel_text h2 {
  margin-bottom: 10px;
  font-size: 1.31rem;
  font-weight: 700;
  line-height: 1.5238095238;
}

@media (width >= 768px) {
  .works_showreel_text h2 {
    margin-bottom: 0;
    font-size: min(2.8cqw, 1.5rem);
    line-height: 1.5;
    border-bottom: 1px solid #000;
  }
}
.works_showreel_text p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5625;
}

@media (width >= 768px) {
  .works_showreel_text p {
    line-height: 1.625;
  }
}
.works_archive {
  padding-bottom: 90px;
}

.works_filter_buttongroup {
  display: none;
}

@media (width >= 768px) {
  .works_filter_buttongroup {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0 4px;
    margin-bottom: 40px;
  }
}
@media (width >= 768px) {
  .works_filter_button {
    height: 46px;
    font-size: 1.7cqw;
    font-weight: 700;
    border-radius: 23px;
    background-color: #e4e4e4;
  }
  .works_filter_button:hover, .works_filter_button.is-active {
    background-color: var(--clr-primary);
    color: #fff;
  }
}
.works_select_container {
  margin-bottom: 40px;
}

@media (width >= 768px) {
  .works_select_container {
    display: none;
  }
}
.works_select_target {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 47.5px;
  padding-right: 10px;
  padding-left: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  background: linear-gradient(0deg, #dfdddb, rgba(246, 243, 241, 0.3));
  border: 1px solid #c4c8cb;
  border-radius: 8px;
  box-shadow: inset 0 0 0 2px #fff;
}

.works_select_target::after {
  position: absolute;
  top: calc(50% - 3.5px);
  right: 10px;
  width: 10px;
  height: 7px;
  background: url(assets/img/works/selectbox_arrow.png) no-repeat center/contain;
  pointer-events: none;
  content: "";
}

.works_select_target:focus-visible {
  outline-style: auto;
}

.works_select_target .fa-solid {
  margin-right: 5px;
}

.works_select_options {
  margin-top: -8px;
  padding-top: 18px;
  padding-bottom: 10px;
  border: solid #c4c8cb;
  border-width: 0 1px 1px 1px;
  border-radius: 0 0 8px 8px;
}

.works_select_optionitem {
  width: 100%;
  padding: 10px;
  font-size: 0.87rem;
  background-color: #fff;
  text-align: left;
}

.works_select_optionitem:hover, .works_select_optionitem:focus-visible {
  background-color: #e4e4e4;
}

.works_content_list {
  display: flex;
  flex-wrap: wrap;
  gap: 35px 10px;
  min-height: 250px;
}

@media (width >= 768px) {
  .works_content_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 3.4cqw;
  }
}
.works_listitem {
  width: calc(50% - 5px);
  opacity: 0;
  transform: translateY(20px);
}

@media (width >= 768px) {
  .works_listitem {
    width: 100% !important;
  }
}
.works_listitem.is-show {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s ease;
}

.works_listitem .thumbnail {
  margin-bottom: 7.5px;
  border-radius: 12px;
  aspect-ratio: 71/40;
  overflow: hidden;
}

@media (width >= 768px) {
  .works_listitem .thumbnail {
    margin-bottom: 15px;
  }
}
.works_listitem .thumbnail img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.works_listitem .label {
  display: grid;
  place-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 20px;
  margin-bottom: 5px;
  padding-right: 10px;
  padding-left: 10px;
  font-size: 0.68rem;
  font-weight: 500;
  border: 1px solid #000;
  border-radius: 3px;
}

@media (width >= 768px) {
  .works_listitem .label {
    height: 25px;
    margin-bottom: 10px !important;
    padding-top: 2px;
    font-size: 0.87rem !important;
    border-radius: 6px;
  }
}
.works_listitem .title {
  display: -webkit-box;
  font-size: 0.87rem;
  font-weight: 700;
  text-align: left;
  line-height: 1.2857142857;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (width >= 768px) {
  .works_listitem .title {
    font-size: 1rem !important;
    line-height: 1.5;
  }
}
.works_listitem.is-large {
  width: 100%;
}

.works_listitem.is-large .thumbnail {
  margin-bottom: 12.5px;
}

.works_listitem.is-large .label {
  margin-bottom: 8px;
  font-size: 0.75rem;
}

.works_listitem.is-large .title {
  font-size: 1rem;
}

.works_modal_target {
  display: grid;
  grid-auto-rows: min-content;
  width: 100%;
  height: 100%;
  background: transparent;
  transition: opacity 0.3s ease;
  color: #000;
}

.works_modal_target:hover, .works_modal_target:focus-visible {
  opacity: 0.7;
}

/* WORKS固有モーダルスタイル */
.works_modal_inner {
  display: grid;
  gap: 12.5px 0;
}

@media (width >= 768px) {
  .works_modal_inner {
    grid-template-columns: 1.188fr 1fr;
    grid-template-rows: max-content max-content 1fr;
    gap: 20px 50px;
  }
  .layout-portrait .works_modal_inner {
    grid-template-columns: 1.244fr 1fr;
    gap: 20px 25px;
  }
}
.works_modal_mainvisual {
  position: relative;
  margin-right: -10px;
  margin-left: -10px;
}

@media (width >= 768px) {
  .works_modal_mainvisual {
    grid-column: 1/3;
    margin-right: 0;
    margin-left: 0;
  }
  .layout-portrait .works_modal_mainvisual {
    grid-column: 1/2;
    grid-row: 1/4;
  }
}
.works_modal_mainvisual .splide.is-initialized:not(.is-active) .splide__list {
  display: flex;
}

.works_modal_mainvisual .splide__slide {
  width: 100%;
}

.layout-portrait .works_modal_mainvisual {
  aspect-ratio: 71/69;
  margin-right: 0;
  margin-left: 0;
  background-color: #282828;
}

@media (width >= 768px) {
  .layout-portrait .works_modal_mainvisual {
    align-self: self-start;
    aspect-ratio: unset;
    margin-top: 0;
    background: none;
  }
}
.layout-portrait .works_modal_mainvisual img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (width >= 768px) {
  .layout-portrait .works_modal_mainvisual img {
    height: auto;
    -o-object-fit: unset;
       object-fit: unset;
  }
}
.layout-portrait .works_modal_mainvisual:has(.splide__slide) {
  aspect-ratio: unset;
}

.layout-portrait .works_modal_mainvisual .splide__slide {
  aspect-ratio: 71/69;
  background-color: #282828;
}

.layout-portrait .works_modal_mainvisual .splide__slide img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (width >= 768px) {
  .layout-portrait .works_modal_mainvisual .splide__slide {
    aspect-ratio: unset;
  }
}
.works_slider_pagination {
  position: absolute;
  bottom: 6px;
  left: 7.5px;
  display: flex;
  gap: 2px;
}

.works_slider_page {
  display: block;
  width: 14px;
  height: 3px;
  padding: 0;
  background-color: #dfdfdf;
  border: none;
}

@media (width >= 768px) {
  .works_slider_page {
    width: 20px;
    height: 4px;
  }
}
.works_slider_page.is-active {
  background-color: var(--clr-primary);
}

.works_iframe_wrapper {
  aspect-ratio: 16/9;
}

.works_iframe_wrapper iframe {
  width: 100%;
  height: 100%;
}

@media (width >= 768px) {
  .works_modal_basic {
    grid-row: 2/4;
  }
  .layout-portrait .works_modal_basic {
    grid-row: 1/2;
  }
  .layout-full .works_modal_basic {
    grid-column: 1/3;
  }
}
.works_modal_basic .title {
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
}

@media (width >= 768px) {
  .works_modal_basic .title {
    margin-bottom: 20px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }
}
.works_modal_basic .labels {
  display: flex;
  gap: 0 5px;
  margin-bottom: 10px;
}

@media (width >= 768px) {
  .works_modal_basic .labels {
    margin-bottom: 20px;
  }
}
.works_modal_basic .label,
.works_modal_basic .year {
  display: grid;
  place-items: center;
  height: 20px;
  padding-right: 10px;
  padding-bottom: 1px;
  padding-left: 10px;
  font-size: 0.75rem;
  border: 1px solid #fff;
  border-radius: 3px;
}

@media (width >= 768px) {
  .works_modal_basic .label,
  .works_modal_basic .year {
    height: 25px;
    padding-right: 13px;
    padding-left: 13px;
    font-size: 0.87rem;
    border-radius: 6px;
  }
}
.works_modal_basic .description {
  font-size: 1rem;
  line-height: 1.5;
}

.works_modal_basic .copyright {
  margin-top: 15px;
  font-size: 0.56rem;
  line-height: 1;
}

@media (width >= 768px) {
  .works_modal_basic .copyright {
    font-size: 0.75rem;
    line-height: 1.4166666667;
  }
}
.works_modal_optional {
  padding: 12px 10px 20px;
  background-color: #282828;
  border-radius: 8px;
}

@media (width >= 768px) {
  .works_modal_optional {
    padding: 17px 13px;
  }
}
.works_modal_optional .credit_title {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 0 5px;
  margin-bottom: 6px;
  font-size: 0.87rem;
}

@media (width >= 768px) {
  .works_modal_optional .credit_title {
    margin-bottom: 8px;
    font-size: 1.12rem;
  }
}
.works_modal_optional .credit {
  font-size: 0.75rem;
  line-height: 1.3333333333;
}

@media (width >= 768px) {
  .works_modal_optional .credit {
    font-size: 0.81rem;
    line-height: 1.3076923077;
  }
}
.works_modal_linkarea {
  border-top: 1px solid #666666;
}

.works_modal_linkarea a {
  display: flex;
  align-items: center;
  gap: 0 6px;
  padding: 10px;
  font-size: 0.87rem;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid #666666;
  transition: background-color 0.3s ease;
}

@media (width >= 768px) {
  .works_modal_linkarea a {
    gap: 0 8px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 1.12rem;
    line-height: 1.3333333333;
  }
}
.works_modal_linkarea a::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0c1";
}

.works_modal_linkarea a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.type-news {
  padding-bottom: 20px;
}

@media (width >= 768px) {
  .type-news {
    padding-bottom: 22px;
  }
}
.type-news .content_inner {
  padding-bottom: 100px;
}

@media (width >= 768px) {
  .type-news .content_inner {
    padding-bottom: 200px;
  }
}
.news_title_group {
  margin-top: 17.5px;
  margin-bottom: 20px;
}

@media (width >= 768px) {
  .news_title_group {
    margin-top: 28px;
  }
}
@media (width >= 768px) {
  .archive .news_title_group {
    margin-bottom: 60px;
  }
}
@media (width >= 768px) {
  .single .news_title_group {
    margin-bottom: 17px;
  }
}
.news_title_group::before {
  height: 56px;
  background: url(assets/img/news/icn_ttl.png) no-repeat center bottom/contain;
}

@media (width >= 768px) {
  .news_title_group::before {
    height: 70px;
  }
}
.news_button_back {
  display: none;
}

@media (width >= 768px) {
  .news_button_back {
    display: flex;
    justify-content: center;
    gap: 0 10px;
  }
  .news_button_back .text {
    width: auto;
  }
  .news_button_back .fa-person-running {
    transform: scaleX(-1);
  }
}
/* ニュース一覧（TOPページと兼用） */
.news_list {
  display: grid;
  gap: 30px 0;
  min-height: 100px;
}

@media (width >= 768px) {
  .news_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 45px 5cqw;
    min-height: 290px;
  }
}
.news_listitem_link {
  display: grid;
  grid-template-columns: 133px 1fr;
  gap: 0 10px;
  color: #000;
  transition: opacity 0.3s ease;
}

@media (width >= 768px) {
  .news_listitem_link {
    display: grid;
    grid-template-columns: 100%;
    place-content: baseline;
    gap: 15px 0;
    height: 100%;
  }
}
.news_listitem_link:hover, .news_listitem_link:focus-visible {
  opacity: 0.7;
}

.news_listitem_thumbnail {
  aspect-ratio: 266/200;
  border-radius: 8px;
  overflow: hidden;
}

@media (width >= 768px) {
  .news_listitem_thumbnail {
    border-radius: 16px;
  }
}
.news_listitem_thumbnail img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news_listitem_text .title {
  display: -webkit-box;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media (width >= 768px) {
  .news_listitem_text .title {
    line-height: 1.5;
  }
}
.news_listitem_text .date {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 0 4px;
  font-size: 0.75rem;
  color: #919191;
}

@media (width >= 768px) {
  .news_listitem_text .date {
    gap: 0 5px;
    font-size: 0.87rem;
  }
}
.news_listitem_text .date::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f073";
  font-size: 0.62rem;
}

@media (width >= 768px) {
  .news_listitem_text .date::before {
    font-size: 0.87rem;
  }
}
.news_button_more {
  width: 200px;
  margin-top: 50px;
  margin-right: auto;
  margin-left: auto;
}

@media (width >= 768px) {
  .news_button_more {
    width: 260px;
    height: 60px;
    margin-top: 80px;
    padding-right: 20px;
    padding-left: 20px;
    font-size: 1.25rem;
    border-radius: 30px;
  }
}
.news_button_more .fa-solid {
  position: absolute;
}

/* ニュース個別記事 */
@media (width >= 768px) {
  .news_detail_wrapper {
    display: grid;
    grid-template-columns: 175px 1fr;
    gap: 0 7.5cqw;
  }
}
.news_detail_date {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 6px;
  margin-top: 13px;
  font-size: 1rem;
}

.news_detail_date::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f073";
}

@media (width >= 768px) {
  .news_detail_mainarea {
    padding-top: 28px;
  }
}
.news_detail_content h1,
.news_detail_content h2,
.news_detail_content h3,
.news_detail_content h4,
.news_detail_content h5,
.news_detail_content h6 {
  margin-bottom: 0.75em;
  font-weight: 700;
  line-height: 1.5;
}

.news_detail_content h1 {
  font-size: 1.31rem;
}

@media (width >= 768px) {
  .news_detail_content h1 {
    font-size: 1.5rem;
  }
}
.news_detail_content h1:has(+ h2) {
  margin-bottom: 1em;
}

.news_detail_content h2 {
  font-size: 1.18rem;
}

@media (width >= 768px) {
  .news_detail_content h2 {
    font-size: 1.37rem;
  }
}
.news_detail_content h3 {
  font-size: 1.12rem;
}

@media (width >= 768px) {
  .news_detail_content h3 {
    font-size: 1.25rem;
  }
}
.news_detail_content h3:has(+ p) {
  margin-bottom: 0.5em;
}

.news_detail_content p,
.news_detail_content li {
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.5;
}

@media (width >= 768px) {
  .news_detail_content p,
  .news_detail_content li {
    line-height: 1.5;
  }
}
.news_detail_content p,
.news_detail_content ul,
.news_detail_content ol {
  margin-bottom: 1em;
}

.news_detail_content li {
  padding-left: 1em;
  text-indent: -1em;
}

.news_detail_content li::before {
  content: "・";
}

.news_detail_content a {
  color: var(--clr-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news_detail_content a:hover {
  text-decoration: none;
}

.news_detail_mainvisual {
  margin-bottom: 22.5px;
  overflow: hidden;
}

.news_detail_mainvisual.movie {
  aspect-ratio: 16/9;
}

.news_detail_mainvisual.movie iframe {
  width: 100%;
  height: 100%;
}

.news_pagination_group {
  display: grid;
  gap: 0 5px;
  grid-template-columns: 44px max-content 44px;
  place-content: center;
  margin: 50px auto 0;
}

@media (width >= 768px) {
  .news_pagination_group {
    gap: 0 10px;
    grid-template-columns: 60px max-content 60px;
    margin-top: 70px;
  }
}
.news_button_prev,
.news_button_next {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid #000;
  border-radius: 50%;
}

@media (width >= 768px) {
  .news_button_prev,
  .news_button_next {
    width: 60px;
    height: 60px;
  }
}
.news_button_prev.disabled,
.news_button_next.disabled {
  visibility: hidden;
}

.news_button_backtolist {
  width: 190px;
}

@media (width >= 768px) {
  .news_button_backtolist {
    width: 240px;
    height: 60px;
    padding-right: 30px;
    padding-left: 30px;
    font-size: 1.25rem;
    border-radius: 30px;
  }
}
.news_button_backtolist .fa-person-running {
  transform: scaleX(-1);
}

@media (width >= 768px) {
  .news_button_backtolist .fa-person-running {
    font-size: 1.5rem;
  }
}
.contact_title_group {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 58px auto 17.5px;
}

@media (width >= 768px) {
  .contact_title_group {
    margin-top: 95px;
    margin-bottom: 40px;
  }
}
.contact_title_group::before {
  position: absolute;
  top: -55px;
  right: -43px;
  width: 53px;
  height: 59px;
  background: url(assets/img/contact/icn_ttl.png) no-repeat center bottom/contain;
}

@media (width >= 768px) {
  .contact_title_group::before {
    width: 71px;
    height: 79px;
    top: -68px;
    right: -54px;
  }
}
.contact_lead,
.contact_thanks {
  margin-bottom: 22.5px;
  font-size: 1.12rem;
  line-height: 1.5;
}

@media (width >= 768px) {
  .contact_lead,
  .contact_thanks {
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.75;
  }
}
.contact_thanks {
  text-align: center;
}

.contact_form {
  margin-bottom: 97.5px;
}

@media (width >= 768px) {
  .contact_form {
    margin-bottom: 145px;
  }
}
.contact_fieldgroup {
  display: grid;
  gap: 1px 0;
  margin-right: -10px;
  margin-bottom: 27.5px;
  margin-left: -10px;
}

@media (width >= 768px) {
  .contact_fieldgroup {
    margin-right: 0;
    margin-bottom: 45px;
    margin-left: 0;
    border-radius: 24px;
    overflow: hidden;
  }
}
.contact_field {
  padding-right: 10px;
  padding-left: 10px;
  display: grid;
  gap: 10px 0;
  padding-top: 18px;
  padding-bottom: 20px;
}

@media (width >= 768px) {
  .contact_field {
    grid-template-columns: 280px 1fr;
    padding-right: 0;
    padding-left: 0;
  }
}
.contact_field:nth-child(odd) {
  background-color: #f7f4ef;
}

.contact_field:nth-child(even) {
  background-color: #ecf0f0;
}

.contact_field dt {
  font-size: 1rem;
  font-weight: 700;
}

@media (width >= 768px) {
  .contact_field dt {
    display: grid;
    place-items: center;
    font-size: 1.12rem;
    line-height: 1.5;
  }
}
@media (width >= 768px) {
  .contact_field dd {
    padding-right: 10cqw;
  }
}
.contact_field textarea {
  resize: none;
}

@media (width >= 768px) {
  .contact_field .wpcf7-form-control-wrap {
    position: relative;
  }
}
.contact_field .wpcf7-not-valid {
  border-color: #d21515;
  border-width: 2px;
}

.contact_field .wpcf7-not-valid-tip {
  display: none;
}

.contact_field:has(.contact_message) {
  padding-top: 28px;
  padding-bottom: 28px;
}

.contact_field:has(.contact_message) dt {
  align-self: baseline;
}

.contact_field:has(.wpcf7-not-valid) label::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f057";
  margin-left: 6px;
  color: #d21515;
}

@media (width >= 768px) {
  .contact_field:has(.wpcf7-not-valid) label::after {
    content: none;
  }
}
.contact_field:has(.wpcf7-not-valid):has(.contact_email_confirm) label::after {
  margin-left: -3px;
}

@media (width >= 768px) {
  .contact_field:has(.wpcf7-not-valid) .wpcf7-form-control-wrap {
    display: block;
  }
  .contact_field:has(.wpcf7-not-valid) .wpcf7-form-control-wrap::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f057";
    position: absolute;
    top: 0;
    left: calc(100% + 20px);
    color: #d21515;
    font-size: 1.25rem;
    line-height: 60px;
  }
}
.invalid .contact_field:not(:has(.wpcf7-not-valid)) label::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f058";
  margin-left: 6px;
  color: #00c875;
}

@media (width >= 768px) {
  .invalid .contact_field:not(:has(.wpcf7-not-valid)) label::after {
    content: none;
  }
}
@media (width >= 768px) {
  .invalid .contact_field:not(:has(.wpcf7-not-valid)) .wpcf7-form-control-wrap::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f058";
    position: absolute;
    top: 0;
    left: calc(100% + 20px);
    color: #00c875;
    font-size: 1.25rem;
    line-height: 60px;
  }
}
.contact_privacy {
  display: none;
  margin-bottom: 27.5px;
  font-size: 0.87rem;
  font-weight: 500;
  line-height: 1.7142857143;
  text-align: center;
}

@media (width >= 768px) {
  .contact_privacy {
    margin-bottom: 35px;
    font-size: 1rem;
    line-height: 1.625;
  }
}
.contact_privacy.is-show {
  display: block;
}

.contact_privacy a {
  color: var(--clr-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact_privacy a:hover, .contact_privacy a:focus-visible {
  text-decoration: none;
}

.contact_submit_wrapper {
  position: relative;
  width: 240px;
  margin: auto;
  background-color: #00c875;
  border: 2px solid #00c875;
  border-radius: 27.5px;
  overflow: hidden;
}

@media (width >= 768px) {
  .contact_submit_wrapper {
    width: 260px;
    border-radius: 30px;
  }
}
.contact_submit_wrapper::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f1d8";
  position: absolute;
  z-index: 1;
  left: 20px;
  color: #fff;
  font-size: 1.25rem;
  line-height: 55px;
}

@media (width >= 768px) {
  .contact_submit_wrapper::before {
    left: 27px;
    font-size: 1.37rem;
    line-height: 60px;
  }
}
.contact_submit_wrapper::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.25s ease;
  transition-property: transform;
  pointer-events: none;
  content: "";
}

.contact_submit_wrapper:has(.contact_submit:hover)::before, .contact_submit_wrapper:has(.contact_submit:focus-visible)::before {
  color: #00c875;
}

.contact_submit_wrapper:has(.contact_submit:hover)::after, .contact_submit_wrapper:has(.contact_submit:focus-visible)::after {
  transform: scaleX(1);
  transform-origin: left;
}

.contact_submit_wrapper:has(.contact_submit:disabled) {
  background-color: #eee;
  border-color: #eee;
  transition: none;
}

.contact_submit_wrapper:has(.contact_submit:disabled)::before {
  color: #fff !important;
}

.contact_submit_wrapper:has(.contact_submit:disabled)::after {
  content: none;
}

.contact_submit {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 55px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  background-color: transparent;
  border: none;
  transition: all 0.25s ease;
}

@media (width >= 768px) {
  .contact_submit {
    height: 60px;
  }
}
.contact_submit:hover, .contact_submit:focus-visible {
  outline: none;
  color: #00c875;
}

.contact_submit:disabled {
  transition: none;
  color: #fff !important;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-response-output {
  padding: 30px !important;
  font-weight: 500;
  border-width: 3px !important;
  border-radius: 6px;
  line-height: 1.5;
  text-align: center;
}

/* CONTACT固有モーダルスタイル */
@media (width >= 768px) {
  .contact_modal_content {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.contact_modal_inner {
  padding-top: 30px;
}

@media (width >= 768px) {
  .contact_modal_inner {
    padding-top: 5px;
  }
}
.contact_modal_inner h2 {
  margin-bottom: 1em;
  font-size: 1.25rem;
  color: var(--clr-primary);
}

@media (width >= 768px) {
  .contact_modal_inner h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
  }
}
.contact_modal_inner h3 {
  margin-top: 1em;
  margin-bottom: 0.25em;
  font-size: 1rem;
  line-height: 1.4;
}

@media (width >= 768px) {
  .contact_modal_inner h3 {
    font-size: 1.25rem;
    line-height: 1.2;
  }
}
.contact_modal_inner p {
  font-size: 0.87rem;
  line-height: 1.5;
}

@media (width >= 768px) {
  .contact_modal_inner p {
    font-size: 1rem;
  }
}
.contact_modal_buttongroup {
  justify-content: center;
}

.error404 .content {
  padding-bottom: 20px;
}

@media (width >= 768px) {
  .error404 .content {
    padding-bottom: 22px;
  }
}
@media (width >= 768px) {
  .error404 .content {
    display: grid;
    place-items: center;
  }
}
.error404 .content_inner {
  display: grid;
  gap: 10px 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (width >= 768px) {
  .error404 .content_inner {
    gap: 20px 0;
  }
}
.title_404,
.text_404 {
  text-align: center;
}

.title_404 {
  font-size: 1.5rem;
  font-weight: 700;
}

@media (width >= 768px) {
  .title_404 {
    font-size: 2.25rem;
  }
}
.text_404 {
  font-size: 0.87rem;
  line-height: 1.5;
}

@media (width >= 768px) {
  .text_404 {
    font-size: 1.12rem;
  }
}