@charset "UTF-8";
/*共通スタイル*/
/* main colors */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  word-break: break-all;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  font-family: "Noto Serif JP", serif;
  color: #272727;
  background-color: #f7f7f7;
  line-height: 1.75;
  font-size: 14px;
}
@media (min-width: 920px) {
  body {
    font-size: 16px;
    line-height: 2;
  }
}

img,
svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  max-width: 100%;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer !important;
  text-decoration: none;
  color: inherit;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ul.disc {
  list-style-type: disc;
  padding-left: 1.5em;
  list-style-position: outside;
}

.site_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.site_body {
  margin-bottom: auto;
}

.container-base {
  width: 100%;
  max-width: 1422px;
  padding: 0 30px;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .container-base {
    padding: 0 40px;
  }
}

.hover_line {
  display: inline-block;
  position: relative;
  line-height: 1.5;
}
.hover_line::before {
  background-color: #000;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
  width: 100%;
}
.hover_line:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.circle_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #000;
  border-radius: 999px;
  max-width: 190px;
  padding: 12px 24px;
  transition: background-color 0.3s ease;
}
.circle_btn_text {
  line-height: 1;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.circle_btn_arrow {
  display: inline-block;
  width: 15px;
  height: 10px;
  background-color: #000;
  mask-image: url("../img/common/btn_arrow.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-image: url("../img/common/btn_arrow.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.circle_btn:hover {
  background-color: #000;
}
.circle_btn:hover .circle_btn_text {
  color: #fff;
}
.circle_btn:hover .circle_btn_arrow {
  background-color: #fff;
  transform: translateX(6px);
}

.hover_line {
  display: inline-block;
  position: relative;
  line-height: 1.5;
}
.hover_line::before {
  background-color: #000;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
  width: 100%;
}
.hover_line:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.section_title {
  margin-bottom: 46px;
}
@media (min-width: 920px) {
  .section_title {
    margin-bottom: 64px;
  }
}
.section_title_en {
  font-size: 60px;
  line-height: 1;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 0.025em;
}
@media (min-width: 920px) {
  .section_title_en {
    font-size: 70px;
    margin-bottom: 12px;
  }
}
.section_title_ja {
  font-size: 17px;
}

.flowing_text {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s ease;
  display: inline-block;
}
.flowing_text.is-animated {
  clip-path: inset(0);
}

.br_sp {
  display: block;
}
@media (min-width: 920px) {
  .br_sp {
    display: none;
  }
}

.br_pc {
  display: none;
}
@media (min-width: 920px) {
  .br_pc {
    display: block;
  }
}

/*ヘッダーのスタイル*/
.site_header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #f7f7f7;
}
@media (min-width: 920px) {
  .site_header {
    padding: min(1.7361111111vw, 30px) 36px;
    justify-content: space-between;
  }
}
.site_header_logo {
  display: none;
}
@media (min-width: 920px) {
  .site_header_logo {
    display: block;
  }
}

@media (min-width: 920px) {
  .home .site_header {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }
}
@media (min-width: 920px) {
  .home .site_header.is_visible {
    opacity: 1;
    visibility: visible;
  }
}

.global_nav {
  position: relative;
  z-index: 99;
}
.global_nav_toggle {
  box-shadow: none;
  display: block;
  width: 42px;
  height: 42px;
  border: none;
  position: relative;
  z-index: 1001;
  background: transparent;
  color: #fff;
  transition: 0.3s linear;
  text-align: left;
  padding: 0;
  border-radius: 0;
}
@media (min-width: 920px) {
  .global_nav_toggle {
    display: none;
  }
}
.global_nav_toggle_bar {
  height: 1px;
  background: #272727;
  display: block;
  position: absolute;
  transition: 0.3s linear;
  transition-property: transform, opacity, width;
  transform-origin: 100% 50%;
  right: 0;
  width: 34px;
  left: 50%;
  transform: translateX(-50%);
}
.global_nav_toggle_bar-top {
  top: 10px;
}
.global_nav_toggle_bar-btm {
  bottom: 25px;
}
.global_nav_toggle.is-active .global_nav_toggle_bar {
  background-color: #272727 !important;
}
.global_nav_toggle.is-active .global_nav_toggle_bar-top {
  transform: translateX(-50%) rotate(-11deg);
}
.global_nav_toggle.is-active .global_nav_toggle_bar-btm {
  transform: translateX(-50%) rotate(11deg);
}
.global_nav_toggle .nav_toggle_text {
  font-size: 10px;
  font-weight: 500;
  color: #000;
  bottom: 3px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  letter-spacing: 0.15em;
}
@media (max-width: 919px) {
  .global_nav_overlay {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transition: all 0.3s linear;
    overflow-y: auto;
    background: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}
@media (max-width: 919px) {
  .global_nav_overlay.is-open {
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 919px) {
  .global_nav_container {
    padding: 145px 20px 50px;
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    width: 100%;
    min-height: 100%;
  }
}
.global_nav_container_logo {
  display: block;
  margin-bottom: 60px;
}
@media (min-width: 920px) {
  .global_nav_container_logo {
    display: none;
  }
}
.global_nav_list {
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  align-items: stretch;
  width: 100%;
}
@media (max-width: 919px) {
  .global_nav_list {
    gap: 28px;
  }
}
@media (min-width: 920px) {
  .global_nav_list {
    flex-direction: row;
    gap: 1em;
    width: auto;
    align-items: center;
  }
}
@media (min-width: 920px) and (min-width: 1200px) {
  .global_nav_list {
    gap: 2em;
  }
}
@media (min-width: 920px) {
  .global_nav_list_item {
    padding: 20px 0;
    display: flex;
    align-items: center;
  }
}
.global_nav_list_link {
  display: block;
  line-height: 1.4;
  transition: opacity 0.3s ease-out;
  font-size: 18px;
  position: relative;
  overflow: hidden;
  letter-spacing: 1px;
  color: #272727;
  font-weight: 500;
}
@media (max-width: 919px) {
  .global_nav_list_link {
    text-align: center;
    padding-bottom: 28px;
    position: relative;
  }
}
@media (max-width: 919px) {
  .global_nav_list_link::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 13px;
    height: 1;
    background-color: #a8a8a8;
  }
}
.global_nav_list_link.last {
  padding-bottom: 0;
}
@media (max-width: 919px) {
  .global_nav_list_link.last {
    padding-bottom: 30px;
  }
}
@media (max-width: 919px) {
  .global_nav_list_link.last::before {
    display: none;
  }
}
@media (min-width: 920px) {
  .global_nav_list_link {
    font-size: 14px;
  }
}
@media (min-width: 920px) and (min-width: 1400px) {
  .global_nav_list_link {
    font-size: 16px;
  }
}
.global_nav_list_link_btn {
  text-align: center;
}
@media (min-width: 1400px) {
  .global_nav_list_link_btn {
    text-align: unset;
  }
}
.global_nav_list_link_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  border: 1px solid #000;
  border-radius: 999px;
  padding: 13px;
  transition: background-color 0.3s ease;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .global_nav_list_link_btn a {
    margin: 0;
  }
}
.global_nav_list_link_btn a span {
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  transition: color 0.3s ease;
}
.global_nav_list_link_btn a:hover {
  background-color: #000;
}
.global_nav_list_link_btn a:hover span {
  color: #fff;
}

/*フッターのスタイル*/
.site_footer {
  padding: 66px 0 22px;
  background-color: #000;
}
@media (min-width: 920px) {
  .site_footer {
    padding: 162px 0 55px;
  }
}
.site_footer .container-base {
  padding: 0 20px;
}
.site_footer .section_title {
  margin-bottom: 72px;
}
@media (min-width: 920px) {
  .site_footer .section_title {
    margin-bottom: 68px;
  }
}
.site_footer .section_title_en,
.site_footer .section_title_ja {
  color: #fff;
  text-align: center;
  display: block;
  clip-path: none;
  transition: none;
}
.site_footer_contact {
  display: flex;
  flex-direction: column;
  gap: 82px;
}
@media (min-width: 920px) {
  .site_footer_contact {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 128px;
    gap: 0;
  }
}
.site_footer_contact_btn {
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 11px 12px 13px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 216px;
  transition: background-color 0.3s ease;
}
@media (min-width: 920px) {
  .site_footer_contact_btn {
    margin: 0 71px 0 0;
    padding: 20px 12px 22px;
    max-width: 312px;
  }
}
.site_footer_contact_btn_text {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  transition: color 0.3s ease;
}
@media (min-width: 920px) {
  .site_footer_contact_btn_text {
    font-size: 18px;
  }
}
.site_footer_contact_btn:hover {
  background-color: #fff;
}
.site_footer_contact_btn:hover .site_footer_contact_btn_text {
  color: #000;
}
.site_footer_contact_tel {
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}
@media (min-width: 920px) {
  .site_footer_contact_tel {
    padding-left: 71px;
    border-left: 1px solid #cfcfcf;
    font-size: 38px;
  }
}
.site_footer_contact_tel .en {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
}
@media (min-width: 920px) {
  .site_footer_contact_tel .en {
    font-size: 28px;
  }
}
.site_footer_contact_tel .small {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
@media (min-width: 920px) {
  .site_footer_contact_tel .small {
    font-size: 18px;
  }
}
.site_footer_address_top {
  font-size: 20px;
  text-align: center;
  color: #fff;
  margin-bottom: 94px;
}
@media (min-width: 920px) {
  .site_footer_address_top {
    margin-bottom: 8px;
  }
}
.site_footer_address_bottom {
  font-size: 16px;
  text-align: center;
  color: #fff;
  margin-bottom: 44px;
}
@media (min-width: 920px) {
  .site_footer_address_bottom {
    margin-bottom: 40px;
  }
}
.site_footer .copyright {
  font-size: 12px;
  font-weight: 300;
  text-align: center;
  color: #fff;
}

.message {
  margin-bottom: 109px;
}
.message .container-base {
  width: 100%;
  max-width: 980px;
  padding: 0 30px;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .message .container-base {
    padding: 0 40px;
  }
}
.message_text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
@media (min-width: 920px) {
  .message_text {
    gap: 28px;
  }
}
.message_text_inr {
  font-size: 16px;
  line-height: 1.9;
}
.message .name {
  font-size: 18px;
  font-weight: 500;
  text-align: right;
  letter-spacing: 0.1em;
}

.philosophy {
  padding: 0 20px;
  margin-bottom: 20px;
}
@media (min-width: 920px) {
  .philosophy {
    padding: 0 45px;
    margin-bottom: 32px;
  }
}
.philosophy .section_title {
  margin: 0 auto 49px;
  width: fit-content;
  border-bottom: 1px solid #000;
  line-height: 1.75;
}
@media (min-width: 920px) {
  .philosophy .section_title {
    margin-bottom: 32px;
  }
}
.philosophy_body {
  background-color: #fff;
  margin: 0 auto;
  max-width: 1638px;
  padding: 30px 20px;
}
@media (min-width: 920px) {
  .philosophy_body {
    padding: 70px 40px 80px;
  }
}
.philosophy_body_text {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 13px;
}
@media (min-width: 920px) {
  .philosophy_body_text {
    font-size: 24px;
    letter-spacing: 0.075em;
  }
}
.philosophy_body_text:last-child {
  margin-bottom: 0;
}

.vision {
  padding: 0 20px;
}
@media (min-width: 920px) {
  .vision {
    padding: 0 45px;
  }
}
.vision .section_title {
  margin: 0 auto 49px;
  width: fit-content;
  border-bottom: 1px solid #000;
  margin-bottom: 42px;
  line-height: 1.75;
}
.vision_body {
  background-color: #fff;
  margin: 0 auto;
  max-width: 1638px;
  padding: 30px 20px;
}
@media (min-width: 920px) {
  .vision_body {
    padding: 70px 40px 80px;
  }
}
.vision_body_text {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
@media (min-width: 920px) {
  .vision_body_text {
    font-size: 24px;
    letter-spacing: 0.075em;
  }
}
.vision_body_text_wrap {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 920px) {
  .vision_body_text_wrap {
    flex-direction: row;
    gap: 24px;
  }
}

.overview {
  padding: 80px 0 0;
}
@media (min-width: 920px) {
  .overview {
    padding: 140px 0 0;
  }
}
.overview_img {
  width: 100%;
  max-width: 896px;
  margin: 0 auto;
}
.overview_img img {
  width: 100%;
}
.overview dl {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .overview dl {
    display: grid;
    grid-template-columns: 23% 1fr;
    max-width: 896px;
    margin: 0 auto;
    margin-bottom: 79px;
  }
}
.overview dl .link_text {
  margin-top: 6px;
}
.overview dl dt {
  padding: 10px 0 2px;
  font-size: 14px;
  letter-spacing: -0.05em;
}
@media (min-width: 920px) {
  .overview dl dt {
    border-bottom: 1px solid #d9d9d9;
    padding: 19px 0 18px;
    font-size: 16px;
  }
}
.overview dl dt.first {
  padding-top: 0;
}
.overview dl dt span {
  font-size: 12px;
}
@media (min-width: 920px) {
  .overview dl dt span {
    font-size: 16px;
  }
}
.overview dl dd {
  padding: 0 0 10px 0;
  font-size: 14px;
  border-bottom: 1px solid #d9d9d9;
}
@media (min-width: 920px) {
  .overview dl dd {
    font-size: 16px;
    padding: 19px 0 18px;
  }
}
.overview dl dd.first {
  padding-top: 0;
}
.overview dl dd.last {
  padding-bottom: 0;
}

.page_contents .overview .section_title {
  margin-bottom: 32px;
}
@media (min-width: 920px) {
  .page_contents .overview .section_title {
    margin-bottom: 67px;
  }
}

.attempt {
  padding: 80px 20px 40px;
}
@media (min-width: 920px) {
  .attempt {
    padding: 135PX 45px 47px;
  }
}
.attempt_body {
  background-color: #fff;
  margin: 0 auto;
  max-width: 1638px;
  padding: 30px 20px;
}
@media (min-width: 920px) {
  .attempt_body {
    padding: 94px 40px 98px;
  }
}
.attempt_body_inr {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 896px;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .attempt_body_inr {
    flex-direction: row;
    justify-content: center;
    gap: min(6.7272727273vw, 74px);
  }
}
@media (min-width: 920px) {
  .attempt_body_inr_text {
    width: 400px;
  }
}
.attempt_body_inr_text_top {
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 8px;
}
.attempt_body_inr_text_sub {
  font-size: 18px;
  margin-bottom: 28px;
}
@media (min-width: 920px) {
  .attempt_body_inr_text_sub {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
.attempt_body_inr_text_contents {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.9;
}
@media (min-width: 920px) {
  .attempt_body_inr_text_contents {
    margin-bottom: 30px;
  }
}
.attempt_body_inr_text_contents.last {
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .attempt_body_inr_text_contents.last {
    margin-bottom: 60px;
  }
}
.attempt_body_inr_img {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
@media (min-width: 920px) {
  .attempt_body_inr_img {
    width: 422px;
  }
}
.attempt_body_inr_img_bottom {
  display: flex;
  gap: 13px;
}
.attempt .circle_btn {
  max-width: 282px;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .attempt .circle_btn {
    margin: 0;
  }
}

.work_body {
  display: flex;
  flex-direction: column;
  gap: 42px;
  margin-bottom: 100px;
}
@media (min-width: 920px) {
  .work_body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: min(4.7453703704vw, 82px);
    row-gap: 89px;
    margin-bottom: 120px;
  }
}
.work_body_item {
  display: inline-block;
}
.work_body_item_img {
  margin-bottom: 24px;
  overflow: hidden;
}
.work_body_item_img img {
  transition: transform 0.3s ease;
  width: 100%;
}
.work_body_item.hide-on-sp {
  display: none;
}
@media (min-width: 920px) {
  .work_body_item.hide-on-sp {
    display: block;
  }
}
.work_body_item_info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  line-height: 1;
}
.work_body_item_info .category {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.work_body_item_info .category_tag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: 1px solid #000;
  border-radius: 999px;
  line-height: 1;
  width: fit-content;
  min-width: 106px;
  line-height: 1;
  font-size: 13px;
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 920px) {
  .work_body_item_info .category_tag {
    font-size: 15px;
    min-width: 116px;
  }
}
.work_body_item_info .area {
  font-size: 16px;
}
.work_body_item_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 8px;
}
.work_body_item_bottom .title {
  font-size: 22px;
  width: 86%;
}
@media (min-width: 920px) {
  .work_body_item_bottom .title {
    font-size: min(1.8333333333vw, 22px);
  }
}
.work_body_item_bottom .arrow {
  display: inline-block;
  width: 15px;
  height: 10px;
  background-color: #000;
  mask-image: url("../img/common/btn_arrow.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-image: url("../img/common/btn_arrow.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  transition: transform 0.3s ease;
}
.work_body_item:hover .arrow {
  transform: translateX(8px);
}
.work_body_item:hover .work_body_item_img img {
  transform: scale(1.1);
}

.work_category_nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}
@media (min-width: 920px) {
  .work_category_nav {
    flex-direction: row;
    gap: 56px;
    margin-bottom: 124px;
  }
}
.work_category_nav_text {
  font-size: 16px;
  font-weight: 500;
}
.work_category_nav .work_category_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  align-items: center;
}
@media (min-width: 920px) {
  .work_category_nav .work_category_list {
    display: flex;
    gap: 13px;
    align-items: center;
  }
}
.work_category_nav .work_category_list li .category_filter_btn {
  line-height: 1;
  min-width: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 2px 6px;
  font-size: 15px;
  border: 1px solid #000;
  border-radius: 999px;
  font-family: "Noto Sans JP", sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.work_category_nav .work_category_list li .category_filter_btn:hover {
  background-color: #000;
  color: #fff;
}
.work_category_nav .work_category_list li .category_filter_btn.is-active {
  background-color: #000;
  color: #fff;
}

.pagination {
  text-align: center;
}
.pagination .pagination_list {
  display: inline-flex;
  gap: 6px;
  justify-content: center;
  padding: 0;
  list-style: none;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .pagination .pagination_list {
    gap: 8px;
  }
}
.pagination .pagination_list .pagination_item a,
.pagination .pagination_list .pagination_item span {
  font-size: 14px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.pagination .pagination_list .pagination_item a:not(:has(img)),
.pagination .pagination_list .pagination_item span:not(:has(img)) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #000;
}
@media (min-width: 920px) {
  .pagination .pagination_list .pagination_item a:not(:has(img)),
  .pagination .pagination_list .pagination_item span:not(:has(img)) {
    width: 34px;
    height: 34px;
    line-height: 34px;
  }
}
.pagination .pagination_list .pagination_item .dots {
  border: none;
  width: 10px;
  height: 32px;
}
@media (min-width: 920px) {
  .pagination .pagination_list .pagination_item .dots {
    height: 34px;
  }
}
.pagination .pagination_list .pagination_item.is-active span:not(:has(img)) {
  background-color: #000;
  color: #fff;
  border-color: #000;
}
.pagination .pagination_list .pagination_item img {
  width: 12px;
  height: 12px;
  vertical-align: middle;
}

.archive .page_contents {
  padding-top: 80px;
  padding-bottom: 120px;
}
@media (min-width: 920px) {
  .archive .page_contents {
    padding-top: 204px;
    padding-bottom: 128px;
  }
}

.single .circle_btn {
  margin: 0 auto;
}
.single .page_contents {
  padding-bottom: 144px;
}
.single .page_contents .page_title {
  margin-bottom: 80px;
}
@media (min-width: 920px) {
  .single .page_contents .page_title {
    margin-bottom: 186px;
  }
}
.single .work_single_inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 96px;
}
@media (min-width: 920px) {
  .single .work_single_inner {
    flex-direction: row;
    gap: min(7.8703703704vw, 136px);
    justify-content: space-between;
    margin-bottom: 96px;
  }
}
@media (min-width: 920px) {
  .single .work_single_inner_main {
    max-width: 320px;
  }
}
.single .work_single_inner_main .category {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .single .work_single_inner_main .category {
    margin-bottom: 66px;
  }
}
.single .work_single_inner_main .category_tag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: 1px solid #000;
  border-radius: 999px;
  line-height: 1;
  width: fit-content;
  min-width: 106px;
  line-height: 1;
  font-size: 13px;
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 920px) {
  .single .work_single_inner_main .category_tag {
    font-size: 15px;
    min-width: 116px;
  }
}
.single .work_single_inner_main .area {
  font-size: 16px;
  margin-bottom: 6px;
}
.single .work_single_inner_main .work_title {
  font-size: 22px;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.6;
}
@media (min-width: 920px) {
  .single .work_single_inner_main .work_title {
    margin-bottom: 54px;
  }
}
.single .work_single_inner_main .work_content {
  margin-bottom: 60px;
}
@media (min-width: 920px) {
  .single .work_single_inner_main .work_content {
    margin-bottom: 78px;
  }
}
.single .work_single_inner_main .work_content p {
  font-size: 16px;
  line-height: 1.9;
}
.single .work_single_inner_main .work_detail_info_top {
  font-size: 16px;
  font-weight: 300;
  border-bottom: 1px solid #a8a8a8;
  padding-bottom: 14px;
}
.single .work_single_inner_main .work_detail_info_list {
  display: grid;
  grid-template-columns: 28% 1fr;
}
.single .work_single_inner_main .work_detail_info_list dt {
  font-size: 16px;
  font-weight: 300;
  border-bottom: 1px solid #a8a8a8;
  position: relative;
  padding: 8px 0;
}
@media (min-width: 920px) {
  .single .work_single_inner_main .work_detail_info_list dt {
    font-size: min(1.6vw, 16px);
  }
}
.single .work_single_inner_main .work_detail_info_list dt::before {
  position: absolute;
  content: "";
  right: 0;
  width: 1px;
  height: 17px;
  background-color: #a8a8a8;
  top: 50%;
  transform: translateY(-50%);
}
.single .work_single_inner_main .work_detail_info_list dd {
  font-size: 16px;
  font-weight: 300;
  border-bottom: 1px solid #a8a8a8;
  padding: 8px 0;
  padding-left: 22px;
}
@media (min-width: 920px) {
  .single .work_single_inner_main .work_detail_info_list dd {
    font-size: min(1.6vw, 16px);
  }
}
@media (min-width: 920px) {
  .single .work_single_inner_side_slider {
    width: min(59vw, 885px);
  }
}
.single .work_single_inner_side_slider .swiper {
  width: 100%;
}
.single .work_single_inner_side_slider .swiper:first-child {
  margin-bottom: 10px;
}
.single .work_single_inner_side_slider .swiper.slider {
  height: 56vw;
  overflow: hidden;
}
@media (min-width: 920px) {
  .single .work_single_inner_side_slider .swiper.slider {
    width: min(59vw, 885px);
    height: min(39.4666666667vw, 592px);
  }
}
.single .work_single_inner_side_slider .swiper.slider img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.single .work_single_inner_side_slider .swiper.slider-thumbnail .swiper-wrapper .swiper-slide {
  opacity: 0.5;
  width: 23.7333333333vw;
  height: 16vw;
  overflow: hidden;
}
@media (min-width: 920px) {
  .single .work_single_inner_side_slider .swiper.slider-thumbnail .swiper-wrapper .swiper-slide {
    width: min(8.6vw, 129px);
    height: min(5.7333333333vw, 86px);
  }
}
.single .work_single_inner_side_slider .swiper.slider-thumbnail .swiper-wrapper .swiper-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.single .work_single_inner_side_slider .swiper.slider-thumbnail .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.single .work_single_inner_side_slider .slider.swiper.swiper-fade .swiper-slide {
  width: 100%;
  opacity: 0;
  transition: opacity 0.75s ease;
  z-index: 0;
}
.single .work_single_inner_side_slider .slider.swiper.swiper-fade .swiper-slide-active {
  opacity: 1;
  z-index: 1;
}
.single .work_single_inner_side_slider .slider {
  position: relative;
}
.single .work_single_inner_side_slider .slider .swiper-button-prev,
.single .work_single_inner_side_slider .slider .swiper-button-next {
  z-index: 10;
  width: 30px;
  height: 30px;
  cursor: pointer;
  margin: 0 !important;
}
@media (min-width: 920px) {
  .single .work_single_inner_side_slider .slider .swiper-button-prev,
  .single .work_single_inner_side_slider .slider .swiper-button-next {
    width: 34px;
    height: 34px;
  }
}
.single .work_single_inner_side_slider .slider .swiper-button-prev img,
.single .work_single_inner_side_slider .slider .swiper-button-next img {
  width: 100%;
  height: auto;
  display: block;
}
.single .work_single_inner_side_slider .slider .swiper-button-prev {
  left: 10px;
}
.single .work_single_inner_side_slider .slider .swiper-button-next {
  right: 10px;
}
.single .work_single_inner_side_slider .slider-thumbnail {
  margin-top: 16px;
}
.single .work_single_inner_side_slider .slider-thumbnail .swiper-slide {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.single .work_single_inner_side_slider .slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.single .work_single_inner_side_slider .slider-thumbnail .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.category-news .page_contents .page_title {
  margin-bottom: 80px;
}
@media (min-width: 920px) {
  .category-news .page_contents .page_title {
    margin-bottom: 152px;
  }
}
@media (min-width: 920px) {
  .category-news.archive .page_contents {
    padding-top: 204px;
    padding-bottom: 112px;
  }
}

.news .section_title {
  margin-bottom: 28px;
}
.news .no_post {
  font-size: 18px;
  color: #fff;
}
.news_body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .news_body {
    flex-direction: row;
    gap: 40px;
    justify-content: center;
    margin-bottom: 62px;
  }
}
.news_list {
  width: 100%;
}
@media (min-width: 920px) {
  .news_list {
    width: min(66.8666666667vw, 1003px);
  }
}
.news_link {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 15px 0;
  text-decoration: none;
}
@media (min-width: 920px) {
  .news_link {
    padding: 24px 20px 24px 0;
    align-items: center;
  }
}
.news_link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #cfcfcf;
}
.news_link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
  z-index: 1;
}
.news_link:hover::after {
  transform: scaleX(1);
}
.news_link:hover .arrow {
  transform: translateX(12px);
}
.news_link_meta {
  display: flex;
  flex-direction: column;
  width: 76%;
}
@media (min-width: 920px) {
  .news_link_meta {
    flex-direction: row;
    gap: 58px;
    width: auto;
  }
}
.news_link_meta .date {
  font-size: 14px;
  color: #676767;
  margin-bottom: 3px;
}
@media (min-width: 920px) {
  .news_link_meta .date {
    margin-bottom: 0;
  }
}
.news_link_meta .title {
  font-size: 16px;
  line-height: 1.6;
}
@media (min-width: 920px) {
  .news_link_meta .title {
    line-height: 2;
  }
}
.news_link .arrow {
  display: inline-block;
  width: 15px;
  height: 10px;
  background-color: #000;
  mask-image: url("../img/common/btn_arrow.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-image: url("../img/common/btn_arrow.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  transition: transform 0.3s ease;
}

.single.postid-230 .page_contents {
  padding-bottom: 174px;
}
.single.postid-230 .page_contents .page_title {
  margin-bottom: 80px;
}
@media (min-width: 920px) {
  .single.postid-230 .page_contents .page_title {
    margin-bottom: 162px;
  }
}
.single .news_single .container-base {
  max-width: 1083px;
}
.single .news_single_date {
  font-size: 14px;
  color: #676767;
  margin-bottom: 6px;
}
.single .news_single_title {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .single .news_single_title {
    margin-bottom: 70px;
  }
}
.single .news_single_content {
  margin-bottom: 80px;
}
@media (min-width: 920px) {
  .single .news_single_content {
    margin-bottom: 140px;
  }
}
.single .news_single_content .wp-block-image {
  margin-bottom: 20px;
  width: 100%;
}
@media (min-width: 920px) {
  .single .news_single_content .wp-block-image {
    margin-bottom: 56px;
  }
}
.single .news_single_content .wp-block-image img {
  width: 100%;
}
.single .news_single_content .wp-block-image:last-child {
  margin-bottom: 0;
}
.single .news_single_content p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.9;
}
@media (min-width: 920px) {
  .single .news_single_content p {
    margin-bottom: 50px;
  }
}
.single .news_single_content p:last-child {
  margin-bottom: 0;
}

.page_contents_contact {
  padding-bottom: 80px;
}
@media (min-width: 920px) {
  .page_contents_contact {
    padding-bottom: 102px;
  }
}
.page_contents_contact.page_contents .page_title {
  margin-bottom: 80px;
}
@media (min-width: 920px) {
  .page_contents_contact.page_contents .page_title {
    margin-bottom: 168px;
  }
}

.contact_body .container-base {
  max-width: 600px;
}
@media (min-width: 920px) {
  .contact_body .container-base {
    max-width: 976px;
  }
}
.contact_body .form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  gap: 12px;
}
@media (min-width: 920px) {
  .contact_body .form-row {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 29px;
  }
}
.contact_body .form-row.last {
  margin-bottom: 86px;
}
@media (min-width: 920px) {
  .contact_body .form-row.last {
    margin-bottom: 86px;
  }
}
.contact_body .form-row label {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (min-width: 920px) {
  .contact_body .form-row label {
    width: min(30.618556701vw, 297px);
    justify-content: space-between;
    padding-top: 4px;
  }
}
.contact_body .form-row label .required {
  display: block;
  font-size: 11px;
  color: #fff;
  width: max-content;
  font-weight: 500;
  line-height: 1;
  background-color: #cc1111;
  border-radius: 2px;
  padding: 3px 6px;
  font-family: "Noto Sans JP", sans-serif;
}
.contact_body .form-row input {
  border: 1px solid #a8a8a8;
  border-radius: 5px;
  height: 40px;
  width: 100%;
  background-color: #f7f7f7;
  padding: 0 12px;
}
@media (min-width: 920px) {
  .contact_body .form-row input {
    width: min(59.175257732vw, 574px);
  }
}
.contact_body .form-row textArea {
  border: 1px solid #a8a8a8;
  border-radius: 5px;
  width: 100%;
  max-height: 214px;
  background-color: #f7f7f7;
  padding: 0 12px;
}
@media (min-width: 920px) {
  .contact_body .form-row textArea {
    width: min(59.175257732vw, 574px);
  }
}
.contact_body .wpcf7-submit {
  box-sizing: border-box;
  display: block;
  position: relative;
  width: 100%;
  max-width: 190px;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: 1px solid #000;
  background-color: #f7f7f7;
  border-radius: 999px;
  cursor: pointer;
  margin: 0 auto;
  transition: all 0.3s;
  padding: 12px;
}
.contact_body .wpcf7-submit:hover {
  background-color: #000;
  color: #fff;
}

input,
textarea,
select {
  font-size: 16px;
}/*# sourceMappingURL=base.css.map */


.grecaptcha-badge {
  z-index: 99;
}