@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;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  color: hsl(13, 21%, 8%);
}

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;
}
@media screen and (min-width: 1024px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default !important;
  }
}

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: 1400px;
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .container-base {
    padding: 0 40px;
  }
}

/*ヘッダーのスタイル*/
.site_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2000;
  pointer-events: none;
}
.site_header_logo {
  z-index: 2;
  max-width: 137px;
  pointer-events: auto;
  transition: opacity 0.3s ease-out;
  padding: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .site_header_logo {
    max-width: 240px;
  }
}
.site_header_logo a img {
  width: 100%;
}
.site_header_logo:hover {
  opacity: 0.6;
}
.site_header_logo.is-subpage {
  background-color: #FFECEE;
  padding: 20px;
  border-radius: 0 0 20px 0;
  display: inline-block;
  line-height: 0;
  overflow: hidden;
  max-width: 137px;
  width: 100%;
}
@media (min-width: 768px) {
  .site_header_logo.is-subpage {
    padding: 24px 30px;
    max-width: 220px;
  }
}

.global_nav {
  position: relative;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 200;
}
@media (min-width: 768px) {
  .global_nav {
    top: 40px;
    right: 40px;
    z-index: 99;
  }
}
.global_nav_toggle {
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 40px;
  height: 40px;
  background: #DC000B;
  border-radius: 999px;
  border: none;
  position: relative;
  z-index: 1001;
  color: hsl(0, 0%, 100%);
  transition: 0.3s linear;
  text-align: left;
  padding: 14px 10px;
  pointer-events: auto;
  touch-action: manipulation;
}
@media screen and (min-width: 981px) {
  .global_nav_toggle {
    display: none;
  }
}
.global_nav_toggle_bar {
  height: 1px;
  background: hsl(0, 0%, 100%);
  display: block;
  transition: 0.3s linear;
  transition-property: transform, opacity, width;
  transform-origin: center;
  width: 20px;
  height: 2px;
  border-radius: 999px;
}
.global_nav_toggle.is-active .global_nav_toggle_bar-top {
  transform: translateY(5px) rotate(-45deg);
}
.global_nav_toggle.is-active .global_nav_toggle_bar-mid {
  opacity: 0;
}
.global_nav_toggle.is-active .global_nav_toggle_bar-btm {
  transform: translateY(-5px) rotate(45deg);
}
@media screen and (max-width: 980px) {
  .global_nav_overlay {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    transition: all 0.3s linear;
    overflow-y: auto;
    background: #FFECEE;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}
@media screen and (max-width: 980px) {
  .global_nav_overlay.is-open {
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (max-width: 980px) {
  .global_nav_container {
    padding: 80px 20px 50px;
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    width: 100%;
    min-height: 100%;
  }
}
.global_nav_list {
  display: flex;
  gap: 24px;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 981px) {
  .global_nav_list {
    flex-direction: row;
    align-items: stretch;
    gap: 20px;
  }
}
.global_nav_list_wrapper {
  position: relative;
  width: 100%;
  background: hsl(0, 0%, 100%);
  padding: 80px 20px;
  border-radius: 40px;
  box-shadow: 0px 0px 20px 0px hsla(0, 0%, 0%, 0.08);
}
@media screen and (min-width: 981px) {
  .global_nav_list_wrapper {
    padding: 12px 32px;
    border-radius: 999px;
  }
}
.global_nav_list_wrapper_img {
  position: absolute;
  bottom: -86px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 981px) {
  .global_nav_list_wrapper_img {
    display: none;
  }
}
@media screen and (min-width: 981px) {
  .global_nav_list_item {
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 981px) {
  .global_nav_list_item.sp {
    display: none;
  }
}
.global_nav_list_item_externalLink circle {
  transition: fill 0.3s ease-out;
}
.global_nav_list_item_externalLink:hover circle {
  fill: hsl(13, 21%, 8%);
}
.global_nav_list_item_externalLink svg {
  width: 40px;
}
@media screen and (min-width: 981px) {
  .global_nav_list_item_externalLink svg {
    width: 32px;
  }
}
.global_nav_list_item_externalLink_wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 981px) {
  .global_nav_list_item_externalLink_wrap {
    gap: 10px;
  }
}
.global_nav_list_link {
  transition: opacity 0.3s ease-out;
  position: relative;
  color: hsl(13, 21%, 8%);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 980px) {
  .global_nav_list_link {
    text-align: center;
    font-size: 15px;
  }
}
.global_nav_list_link.is-current {
  color: #DC000B;
}
.global_nav_list_link.is-current::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #DC000B;
  transform: scaleX(0);
  transform-origin: right top;
  transition: transform 0.3s ease-out;
}
@media screen and (max-width: 980px) {
  .global_nav_list_link.is-current::after {
    display: none;
  }
}
.global_nav_list_link.is-current::after:hover::after {
  transform-origin: left top;
  transform: scaleX(1);
}
.global_nav_list_link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: hsl(13, 21%, 8%);
  transform: scaleX(0);
  transform-origin: right top;
  transition: transform 0.3s ease-out;
}
@media screen and (max-width: 980px) {
  .global_nav_list_link::after {
    display: none;
  }
}
.global_nav_list_link:hover::after {
  transform-origin: left top;
  transform: scaleX(1);
}
.global_nav_list_link.contact_global_nav_list_link {
  color: hsl(0, 0%, 100%);
  background: #DC000B;
  padding: 12px 20px;
  border-radius: 999px;
  width: fit-content;
}
.global_nav_list_link.contact_global_nav_list_link::after {
  display: none;
}
@media screen and (min-width: 981px) {
  .global_nav_list_link.contact_global_nav_list_link {
    transition: background-color 0.3s ease-out;
  }
  .global_nav_list_link.contact_global_nav_list_link:hover {
    background-color: hsl(13, 21%, 8%);
  }
}

.common_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
}

@keyframes smooth-poyon {
  0% {
    transform: translateY(0) scale(1, 1);
  }
  20% {
    transform: translateY(2px) scale(1.1, 0.9);
  }
  50% {
    transform: translateY(-20px) scale(0.9, 1.1);
  }
  100% {
    transform: translateY(0) scale(1, 1);
  }
}
.common_link_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 216px;
  padding: 20px;
  background: #DC000B;
  color: hsl(0, 0%, 100%);
  border-radius: 999px;
  text-decoration: none;
  backface-visibility: hidden;
  transition: all 0.3s ease;
}
.common_link_btn:hover {
  background-color: hsl(13, 21%, 8%);
  animation: smooth-poyon 0.55s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.common_link_btn.news {
  order: 3;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .common_link_btn.news {
    margin: 0;
  }
}
.common_link_btn.works {
  order: 3;
  margin: 40px auto 0;
}
@media (min-width: 768px) {
  .common_link_btn.works {
    margin: 0;
  }
}
.common_link_btn_text {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
}
.common_link_btn_arrow {
  display: flex;
  align-items: center;
}
.common_link_btn_arrow img {
  width: 8px;
  height: auto;
}

.back_top_arrow {
  transform: rotate(180deg);
}

.text_center {
  text-align: center;
}

.text_white {
  color: hsl(0, 0%, 100%);
}

/*フッターのスタイル*/
.site_footer {
  background: #C2000A;
  position: relative;
}
.site_footer_center {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .site_footer_center {
    padding: 230px 0 80px;
  }
}
.site_footer_img {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .site_footer_img {
    margin-top: 0;
  }
}
.site_footer_bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-top: 1px solid hsl(0, 0%, 100%);
}
@media (min-width: 768px) {
  .site_footer_bottom {
    padding: 20px 80px;
    justify-content: space-between;
    gap: 40px;
  }
}
.site_footer_link {
  padding: 110px 20px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
.site_footer_link.recruit {
  background: #FF8100;
}
.site_footer_link.contact {
  background: #DC000B;
}
.site_footer_link_wrap {
  background: hsl(0, 0%, 99%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 80px 20px 20px;
}
@media (min-width: 768px) {
  .site_footer_link_wrap {
    display: none;
  }
}
.site_footer_link_wrap.is-subpage {
  background: #FFECEE;
}
.site_footer_link_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.site_footer_link_main_text {
  color: hsl(0, 0%, 100%);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.03em;
}
.site_footer_link_main_text_wrap {
  display: flex;
  gap: 10px;
}
@media (min-width: 768px) {
  .site_footer_link_main_text_wrap {
    gap: 20px;
  }
}
.site_footer_link_main_text_wrap.recruit {
  align-items: flex-start;
}
.site_footer_link_main_text_wrap.contact {
  align-items: center;
}
.site_footer_link_main_text_img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site_footer_link_text {
  color: hsl(0, 0%, 100%);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}
.site_footer_swiper_wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 40px;
}
@media (min-width: 768px) {
  .site_footer_swiper_wrapper {
    padding-top: 0;
  }
}
.site_footer_swiper_wrapper .footer_swiper_right,
.site_footer_swiper_wrapper .footer_swiper_left {
  overflow: hidden;
  white-space: nowrap;
}
.site_footer_swiper_wrapper .footer_swiper_right .swiper-wrapper,
.site_footer_swiper_wrapper .footer_swiper_left .swiper-wrapper {
  display: flex;
  width: max-content;
  /* JSの制御を無効化してCSSで動かす */
  transition-property: none !important;
  animation-timing-function: linear !important;
  animation-iteration-count: infinite;
}
.site_footer_swiper_wrapper .footer_swiper_right .swiper-wrapper {
  animation-name: scroll-right;
  animation-duration: 300s;
}
.site_footer_swiper_wrapper .footer_swiper_left .swiper-wrapper {
  animation-name: scroll-left;
  animation-duration: 300s;
}
@keyframes scroll-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.site_footer_swiper_wrapper .swiper-slide {
  width: auto !important;
  flex-shrink: 0;
}
.site_footer_swiper_wrapper .swiper-slide.hover-switch {
  position: relative;
  width: 124px !important;
  height: 162px;
  cursor: pointer;
  margin: 0 15px;
}
.site_footer_swiper_wrapper .swiper-slide.hover-switch .img-default,
.site_footer_swiper_wrapper .swiper-slide.hover-switch .img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* 切り替え速度：0sにすると「瞬間的」になります */
  transition: opacity 0s;
}
.site_footer_swiper_wrapper .swiper-slide.hover-switch .img-hover {
  opacity: 0;
  z-index: 2;
}
.site_footer_swiper_wrapper .swiper-slide.hover-switch .img-default {
  opacity: 1;
  z-index: 1;
}
.site_footer_swiper_wrapper .swiper-slide.hover-switch:hover .img-hover {
  opacity: 1;
}
.site_footer_swiper_wrapper .swiper-slide.hover-switch:hover .img-default {
  opacity: 0;
}

.footer_link_wrap {
  display: none;
}
@media (min-width: 768px) {
  .footer_link_wrap {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1320px;
    width: 100%;
    z-index: 20;
  }
}
.footer_link_wrap .footer_link {
  flex: 1;
  padding: 110px 40px;
  border-radius: 40px;
  max-width: 610px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease-out;
}
.footer_link_wrap .footer_link.recruit {
  background: #FF8100;
}
.footer_link_wrap .footer_link.recruit:hover {
  background-color: rgb(204, 103.2, 0);
}
.footer_link_wrap .footer_link.contact {
  background: #DC000B;
}
.footer_link_wrap .footer_link.contact:hover {
  background-color: rgb(169, 0, 8.45);
}
.footer_link_wrap .footer_link_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer_link_wrap .footer_link_main_text {
  color: hsl(0, 0%, 100%);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.03em;
}
.footer_link_wrap .footer_link_main_text_wrap {
  display: flex;
  gap: 10px;
}
.footer_link_wrap .footer_link_main_text_wrap.recruit {
  align-items: flex-start;
}
.footer_link_wrap .footer_link_main_text_wrap.contact {
  align-items: center;
}
.footer_link_wrap .footer_link_main_text_img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_link_wrap .footer_link_text {
  color: hsl(0, 0%, 100%);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (min-width: 920px) {
  .footer_link_wrap .footer_link_text br {
    display: none;
  }
}

.copyright {
  color: hsl(0, 0%, 100%);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
}

.to_page_top {
  display: none;
}
@media (min-width: 768px) {
  .to_page_top {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease-out;
  }
  .to_page_top:hover {
    opacity: 0.6;
  }
}
.to_page_top_text {
  color: hsl(0, 0%, 100%);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: right;
}
.to_page_top_arrow {
  display: flex;
  align-items: center;
}

.to_page_top_sp {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid hsl(0, 0%, 100%);
  border-radius: 3px;
}
@media (min-width: 768px) {
  .to_page_top_sp {
    display: none;
  }
}
.to_page_top_sp_text {
  color: hsl(0, 0%, 100%);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: right;
}
.to_page_top_sp_arrow {
  display: flex;
  align-items: center;
}

.subPage_top_pinkBox {
  padding: 20px 20px 0 20px;
}

.subPage_top_bg {
  width: 100%;
  display: flex;
  flex-direction: column;
  /* 中身を縦に並べる */
  justify-content: flex-end;
  /* 垂直方向で下（終点）に寄せる */
  align-items: flex-start;
  gap: 24px;
  padding: 40px 20px;
  /* 背景画像の設定 */
  background-image: url("../img/common/subpage_title.svg");
  background-repeat: no-repeat;
  background-position: left top;
  /* 左上を絶対に動かさない */
  background-size: auto 100%;
  /* 高さは100%に固定し、幅は画像の実寸(1360px)を維持 */
  /* 画像の右側が足りなくなった時のための塗りつぶし色 */
  background-color: #FAD8DC;
  border-radius: 0 20px 20px 20px;
  overflow: hidden;
  height: 266px;
}
@media (min-width: 768px) {
  .subPage_top_bg {
    padding: 40px 60px;
    height: 364px;
    gap: 40px;
    background-image: url("../img/common/subpage_title_pc.svg");
  }
}

.subPage_wrapper {
  background-color: #FFECEE;
}

.subPage_title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
}
@media (min-width: 768px) {
  .subPage_title {
    font-size: 64px;
  }
}
.subPage_title_wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.subPage_title_jp {
  color: hsl(0, 0%, 71%);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}
@media (min-width: 768px) {
  .breadcrumb {
    justify-content: flex-end;
  }
}
.breadcrumb_item_link {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  position: relative;
  display: inline-block;
}
.breadcrumb_item_link::after {
  background-color: hsl(13, 21%, 8%);
  /* 下線の色 */
  bottom: 0;
  /* 要素の下端からの距離 */
  content: "";
  /* 要素に内容を追加 */
  height: 1px;
  /* 下線の高さ */
  left: 0;
  /* 要素の左端からの距離 */
  position: absolute;
  /* 絶対位置指定 */
  transform: scale(0, 1);
  /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: right top;
  /* 変形の原点を右上に指定 */
  transition: transform 0.3s;
  /* 変形をアニメーション化 */
  width: 100%;
  /* 要素の幅 */
}
.breadcrumb_item_link:hover::after {
  transform-origin: left top;
  /* 変形の原点を左上に指定 */
  transform: scale(1, 1);
  /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}
.breadcrumb_item_link.home {
  font-family: "Montserrat", sans-serif;
}
.breadcrumb_item_link.jp {
  font-family: "Noto Sans JP", sans-serif;
}
.breadcrumb_item {
  flex-shrink: 0;
}
.breadcrumb_item_circle {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: hsl(0, 0%, 71%);
  margin-top: 5px;
}

.subPage_main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 920px) {
  .subPage_main {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1082px;
    margin: 0 auto;
  }
}
.subPage_main.company {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .subPage_main.company {
    padding: 120px 0;
    align-items: flex-start;
  }
}
.subPage_main.service {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (min-width: 920px) {
  .subPage_main.service {
    flex-direction: row-reverse;
  }
}
.subPage_main_title {
  color: #DC000B;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .subPage_main_title {
    font-size: 32px;
  }
}
@media (min-width: 768px) {
  .subPage_main_title.company {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .subPage_main_title.company br {
    display: none;
  }
}
.subPage_main_title_wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.subPage_main_title_small {
  color: #DC000B;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
.subPage_main_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  font-feature-settings: "palt";
}
.subPage_main_text_container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 920px) {
  .subPage_main_text_container {
    max-width: 452px;
  }
}
@media (min-width: 920px) {
  .subPage_main_text_container.company {
    margin-top: 26PX;
  }
}
.subPage_main_text_inner {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 24px;
}
.subPage_main_text_wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 920px) {
  .subPage_main_text_wrap {
    gap: 22px;
  }
}
@media (min-width: 920px) {
  .subPage_main_img {
    max-width: 527px;
  }
}
.subPage_main_img img {
  width: 100%;
}

.philosophy_container {
  position: relative;
  padding-top: 16.4102564103vw;
  overflow: hidden;
}
@media (min-width: 920px) {
  .philosophy_container {
    padding-top: 17.0714285714vw;
    padding-bottom: 2.8571428571vw;
  }
}
.philosophy_container .company_curve_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}
.philosophy_container .company_curve_img img,
.philosophy_container .company_curve_img svg {
  display: block;
  width: 100%;
  height: 22.8571vw;
  object-fit: contain;
  max-width: none;
}
.philosophy_container .company_curve_bottom_img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}
.philosophy_container .company_curve_bottom_img img,
.philosophy_container .company_curve_bottom_img svg {
  display: block;
  width: 100%;
  height: 8.5714vw;
  object-fit: contain;
  max-width: none;
}
.philosophy_container .philosophy_wrap {
  display: flex;
  flex-direction: column;
  height: auto;
  z-index: 1;
}
@media (min-width: 920px) {
  .philosophy_container .philosophy_wrap {
    flex-direction: row;
    height: 100vh;
  }
}
.philosophy_container .philosophy_wrap .philosophy_content {
  flex: 1;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 40px 20px;
}
@media (min-width: 920px) {
  .philosophy_container .philosophy_wrap .philosophy_content {
    padding: 0 40px;
    height: 100%;
  }
}
.philosophy_container .philosophy_wrap .philosophy_content.content_01 {
  background-image: image-set(url(../img/company/philosophy_bg01.png) 1x, url(../img/company/philosophy_bg01@2x.png) 2x);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  min-height: clamp(567px, 145.3846153846vw, 800px);
}
@media (min-width: 920px) {
  .philosophy_container .philosophy_wrap .philosophy_content.content_01 {
    min-height: 0;
  }
}
.philosophy_container .philosophy_wrap .philosophy_content.content_02 {
  background-image: image-set(url(../img/company/philosophy_bg02.png) 1x, url(../img/company/philosophy_bg02@2x.png) 2x);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  min-height: clamp(625px, 160.2564102564vw, 800px);
}
@media (min-width: 920px) {
  .philosophy_container .philosophy_wrap .philosophy_content.content_02 {
    min-height: 0;
  }
}
.philosophy_container .philosophy_wrap .philosophy_content.content_03 {
  background-image: image-set(url(../img/company/philosophy_bg03.png) 1x, url(../img/company/philosophy_bg03@2x.png) 2x);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  min-height: clamp(629px, 161.2820512821vw, 800px);
}
@media (min-width: 920px) {
  .philosophy_container .philosophy_wrap .philosophy_content.content_03 {
    min-height: 0;
  }
}
.philosophy_container .philosophy_wrap .philosophy_content_bgIcon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 40px 0;
}
@media (min-width: 920px) {
  .philosophy_container .philosophy_wrap .philosophy_content_bgIcon {
    padding: 0;
  }
}
.philosophy_container .philosophy_wrap .philosophy_content_bgIcon img {
  max-width: none;
}
.philosophy_container .philosophy_wrap .philosophy_content_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: calc(100% - 40px);
}
@media (min-width: 768px) {
  .philosophy_container .philosophy_wrap .philosophy_content_inner {
    width: calc(100% - 80px);
    gap: clamp(40px, 7.1428571429vw, 100px);
  }
}
@media (min-width: 920px) {
  .philosophy_container .philosophy_wrap .philosophy_content_inner {
    top: 31.25vh;
    transform: translateX(-50%);
  }
}
.philosophy_container .philosophy_wrap .philosophy_content_main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.philosophy_container .philosophy_wrap .philosophy_content_main_text {
  color: hsl(0, 0%, 100%);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (min-width: 768px) {
  .philosophy_container .philosophy_wrap .philosophy_content_main_text {
    font-size: clamp(20px, 1.7142857143vw, 24px);
  }
}
@media (min-width: 920px) {
  .philosophy_container .philosophy_wrap .philosophy_content_text_img.img_03 {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.philosophy_container .philosophy_wrap .philosophy_content_02_text_br {
  display: none;
}
@media (min-width: 920px) {
  .philosophy_container .philosophy_wrap .philosophy_content_02_text_br {
    display: block;
  }
}
@media screen and (min-width: 980px) {
  .philosophy_container .philosophy_wrap .philosophy_content_02_text_br {
    display: none;
  }
}
@media screen and (min-width: 390px) {
  .philosophy_container .philosophy_wrap .philosophy_content_03_text_br {
    display: none;
  }
}
@media (min-width: 920px) {
  .philosophy_container .philosophy_wrap .philosophy_content_03_text_br {
    display: block;
  }
}
@media screen and (min-width: 1275px) {
  .philosophy_container .philosophy_wrap .philosophy_content_03_text_br {
    display: none;
  }
}

.philosophy_section {
  padding-top: 40px;
}
.philosophy_main {
  max-width: 984px;
  margin: 0 auto;
}
.philosophy_title {
  color: hsl(357, 100%, 43%);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (min-width: 768px) {
  .philosophy_title {
    font-size: 60px;
  }
}
.philosophy_title_jp {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.22em;
  text-align: center;
}
@media (min-width: 768px) {
  .philosophy_title_jp {
    font-size: clamp(16px, 1.4285714286vw, 20px);
  }
}
.philosophy_message {
  color: hsl(357, 100%, 43%);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 36px;
  text-box-trim: trim-both;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .philosophy_message {
    font-size: min(4vw, 56px);
  }
}
.philosophy_message_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  text-align: justify;
  font-feature-settings: "palt";
}
@media (min-width: 768px) {
  .philosophy_message_text {
    width: min(40.0714285714vw, 561px);
    margin-top: min(1.8571428571vw, 26px);
  }
}
.philosophy_message_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0;
}
@media (min-width: 768px) {
  .philosophy_message_wrap {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin: 44px 0 64px;
  }
}
.philosophy_text_content {
  flex: 1;
  padding: 20px;
  background: hsl(353, 77%, 91%);
  border-radius: 10px;
}
@media (min-width: 768px) {
  .philosophy_text_content {
    border-radius: 20px;
    padding: 48px 20px;
  }
}
@media (min-width: 920px) {
  .philosophy_text_content.value {
    padding: 48px clamp(20px, 2.6428571429vw, 37px);
  }
}
.philosophy_text_content_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .philosophy_text_content_container {
    gap: 36px;
  }
}
.philosophy_text_content_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .philosophy_text_content_wrap {
    flex-direction: row;
    gap: 36px;
  }
}
.philosophy_text_content_message {
  color: hsl(357, 100%, 43%);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
  font-feature-settings: "palt";
}
@media (min-width: 768px) {
  .philosophy_text_content_message {
    font-size: min(2.2857142857vw, 32px);
  }
}
.philosophy_text_content_inner {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  text-align: justify;
  margin: 0 auto;
  font-feature-settings: "palt";
}
@media (min-width: 768px) {
  .philosophy_text_content_inner {
    max-width: 354px;
  }
}
.philosophy_text_content_bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .philosophy_text_content_bottom {
    gap: 24px;
    margin-top: 28px;
  }
}
.philosophy_common_title {
  color: hsl(357, 100%, 43%);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (min-width: 768px) {
  .philosophy_common_title {
    font-size: min(4.2857142857vw, 60px);
  }
}
.philosophy_common_title_jp {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.22em;
  text-align: center;
}
@media (min-width: 768px) {
  .philosophy_common_title_jp {
    font-size: clamp(16px, 1.4285714286vw, 20px);
  }
}

.value_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 920px) {
  .value_list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr;
    gap: 0;
  }
}
.value_list_wrap {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .value_list_wrap {
    gap: 20px;
  }
}
.value_item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
@media (min-width: 920px) {
  .value_item {
    border-right: 1px solid hsl(13, 21%, 8%);
    max-width: 182px;
    flex-direction: column;
    align-items: center;
    padding: 0 clamp(8px, 1.1428571429vw, 16px);
    gap: 26px;
  }
}
.value_item:last-child {
  border-right: none;
}
.value_num {
  background: hsl(357, 100%, 43%);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value_num_inner {
  color: hsl(0, 0%, 100%);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  text-align: center;
}
.value_common_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: justify;
  font-feature-settings: "palt";
}
.value_common_text_wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 920px) {
  .value_common_text_wrap {
    gap: 26px;
  }
}
.value_common_title {
  color: hsl(357, 100%, 43%);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  vertical-align: middle;
  font-feature-settings: "palt";
}
@media (min-width: 920px) {
  .value_common_title {
    text-align: center;
    font-size: clamp(16px, 1.2857142857vw, 18px);
  }
}
@media (min-width: 920px) {
  .value_common_title.letter_space {
    letter-spacing: -0.1em;
  }
}
.value_common_title .br_pc {
  display: none;
}
@media (min-width: 920px) {
  .value_common_title .br_pc {
    display: block;
  }
}
@media screen and (min-width: 390px) {
  .value_common_title .br_sp {
    display: none;
  }
}
@media (min-width: 920px) {
  .value_common_title .br_sp {
    display: block;
  }
}

.overview {
  padding: 80px 0 60px;
}
@media (min-width: 768px) {
  .overview {
    padding: 120px 0 270px;
  }
}
.overview_inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  padding: 40px 20px;
  background: hsl(0, 0%, 100%);
}
@media (min-width: 768px) {
  .overview_inner {
    padding: 40px;
    border-radius: 40px;
  }
}
@media (min-width: 920px) {
  .overview_inner {
    flex-direction: row;
    align-items: flex-start;
    padding: clamp(40px, 5vw, 70px) clamp(40px, 5.7142857143vw, 80px);
    max-width: 1240px;
    margin: 0 auto;
  }
}
.overview_inner .company_map {
  width: 100%;
  aspect-ratio: 531/434;
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 920px) {
  .overview_inner .company_map {
    border-radius: 32px;
    max-width: 531px;
  }
}
.overview_inner .company_map iframe {
  width: 100%;
  height: 100%;
}
.overview_container {
  display: flex;
  flex-direction: column;
}
.overview_content {
  display: flex;
  flex-direction: column;
  padding-bottom: 16px;
  border-bottom: 1px solid hsl(0, 0%, 71%);
}
@media screen and (min-width: 1200px) {
  .overview_content {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}
.overview_content:nth-child(n+2) {
  padding-top: 16px;
}
.overview_content:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.overview_title {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  min-width: 120px;
}
.overview_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (min-width: 1200px) {
  .overview_text {
    width: 73.5%;
  }
}
.overview_address {
  display: block;
  text-decoration: none;
}
.overview_address span {
  display: inline;
  position: relative;
  line-height: 2;
  background-image: linear-gradient(to right, hsl(13, 21%, 8%), hsl(13, 21%, 8%));
  background-size: 100% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.overview_address:hover span {
  animation: linkLineReverse 0.6s ease-out forwards;
}
.overview_tel {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .overview_tel {
    text-decoration: none;
  }
}
.overview_fax {
  text-decoration: none !important;
  pointer-events: none;
}
@keyframes linkLineReverse {
  0% {
    background-size: 100% 1px;
    background-position: 100% 100%;
  }
  50% {
    background-size: 0% 1px;
    background-position: 100% 100%;
  }
  51% {
    background-position: 0% 100%;
  }
  100% {
    background-size: 100% 1px;
    background-position: 0% 100%;
  }
}

@media (min-width: 920px) {
  .subPage_main_img.service {
    max-width: 529px;
  }
}

.subPage_main_text.service {
  line-height: 1.8;
}

.feature_section {
  position: relative;
  padding-top: 35.8974358974vw;
}
@media (min-width: 768px) {
  .feature_section {
    padding-top: 31.4285714286vw;
  }
}
.feature_curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.feature_curve img {
  width: 100%;
}
.feature_main {
  background: hsl(0, 0%, 100%);
  border-radius: 20px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (min-width: 600px) {
  .feature_main {
    gap: 60px;
  }
}
@media (min-width: 768px) {
  .feature_main {
    border-radius: 40px;
    gap: 40px;
    padding: 0 40px;
  }
}
@media (min-width: 920px) {
  .feature_main {
    padding: 0 79px 0 92px;
    gap: clamp(20px, 7.0714285714vw, 99px);
  }
}
.feature_illust {
  position: absolute;
  bottom: -82px;
  right: 20px;
  max-width: 200px;
}
@media (min-width: 768px) {
  .feature_illust {
    bottom: -15px;
    right: 60px;
    max-width: none;
    width: clamp(180px, 18.5714285714vw, 260px);
  }
}
.feature_title {
  padding-top: 40px;
  padding-right: 20px;
  border-right: 1px dashed hsl(0, 0%, 71%);
  flex-shrink: 0;
  max-width: 40px;
}
@media screen and (min-width: 600px) {
  .feature_title {
    max-width: none;
  }
}
@media (min-width: 768px) {
  .feature_title {
    padding-top: 80px;
    padding-right: 40px;
  }
}
@media (min-width: 920px) {
  .feature_title {
    padding-right: clamp(20px, 6.5vw, 91px);
  }
}
.feature_content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature_content_container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 150px;
}
@media (min-width: 768px) {
  .feature_content_container {
    padding-top: 80px;
    padding-bottom: 75px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 32px;
    grid-row-gap: 20px;
  }
}
@media (min-width: 920px) {
  .feature_content_container {
    grid-template-columns: repeat(3, 1fr);
    max-width: 847px;
  }
}
@media screen and (min-width: 1000px) {
  .feature_content_container {
    grid-column-gap: clamp(32px, 6.8571428571vw, 96px);
    grid-row-gap: clamp(20px, 4.4285714286vw, 64px);
  }
}
.feature_content_img {
  max-width: 200px;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .feature_content_img {
    max-width: 300px;
  }
}
@media (min-width: 768px) {
  .feature_content_img {
    width: 100%;
    max-width: none;
    margin: 0;
  }
}
.feature_content_img img {
  width: 100%;
}
.feature_content_text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.service_section_wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 100px 0 60px;
}
@media (min-width: 768px) {
  .service_section_wrapper {
    flex-direction: row;
    gap: clamp(20px, 3.4285714286vw, 48px);
    padding: 108px 0 270px;
  }
}
.service_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .service_content {
    gap: 24px;
  }
}
.service_content_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .service_content_container {
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(20px, 3.4285714286vw, 48px);
    max-width: 1240px;
    margin: 0 auto;
  }
}
.service_content_box {
  background: hsl(353, 77%, 91%);
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-radius: 16px;
  padding: 40px 20px;
  flex: 1;
}
@media (min-width: 768px) {
  .service_content_box {
    border-radius: 32px;
    padding: 80px clamp(20px, 2.2857142857vw, 32px);
  }
}
.service_content_head {
  color: hsl(357, 100%, 43%);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
}
@media (min-width: 768px) {
  .service_content_head {
    font-size: clamp(20px, 2.8571428571vw, 40px);
  }
}
.service_content_wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.service_content_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
}
.service_content_text.bold {
  font-weight: 700;
}
.service_content_text.bold a {
  background-image: linear-gradient(to right, hsl(13, 21%, 8%), hsl(13, 21%, 8%));
  /* 線の色 */
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  /* 背景を繰り返さない */
  padding-bottom: 0;
}
.service_content_text.bold a:hover {
  animation: linkLineReverse 0.3s ease forwards;
}
@keyframes linkLineReverse {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }
  50% {
    background-size: 0 1px;
    /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
    background-position: bottom right;
  }
  51% {
    background-position: bottom left;
  }
  100% {
    background-size: 100% 1px;
  }
}
.service_content_text.bold {
  font-weight: 700;
}
.service_content_text_wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .service_content_text_wrap {
    gap: 16px;
  }
}
.service_content_text_wrap_inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 768px) {
  .service_content_text_wrap_inner {
    gap: 22px;
  }
}
.service_content_main_text {
  color: hsl(357, 100%, 43%);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .service_content_main_text {
    font-size: clamp(18px, 1.7142857143vw, 24px);
  }
}

.archive_section {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .archive_section {
    padding: 120px 0 270px;
  }
}

.news_archive_main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .news_archive_main {
    max-width: 924px;
    margin: 0 auto;
    flex-direction: row;
    align-items: flex-start;
  }
}

.news_archive_category_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .news_archive_category_list {
    flex-direction: column;
    align-items: flex-start;
  }
}
.news_archive_category_list_item_link {
  background: #FAD8DC;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
  padding: 4px 6px;
  border-radius: 4px;
  border: 1px solid #FAD8DC;
}
.news_archive_category_list_item_link.is-active {
  color: #969696;
  background: transparent;
  border: 1px solid #969696;
}
.news_archive_category_list_item_link.single .news_archive_category_list_item_link.is-active {
  color: #969696;
  background: transparent;
  border: 1px solid #969696;
}

.news_content_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .news_content_list {
    max-width: 767px;
    gap: 40px;
  }
}
@media (min-width: 768px) {
  .news_content_list.latest {
    gap: 24px;
  }
}
.news_content_list_item_link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
@media (min-width: 768px) {
  .news_content_list_item_link {
    gap: 24px;
  }
}
.news_content_list_item_link.latest {
  gap: 12px;
}
@media (min-width: 768px) {
  .news_content_list_item_link.latest {
    gap: 16px;
  }
}
.news_content_list_item_link.latest .news_content_img {
  border-radius: 8px;
  flex: 0 0 41%;
}
.news_content_list_item_link:hover .news_content_img img {
  transform: scale(1.05);
}
.news_content_list_item_link:hover .news_content_title span {
  background-size: 100% 1px;
}
.news_content_img {
  aspect-ratio: 150/100;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  flex: 0 0 42.9%;
  border: 1px solid hsl(0, 0%, 71%);
  background: hsl(0, 0%, 100%);
}
@media (min-width: 768px) {
  .news_content_img {
    aspect-ratio: 300/200;
    border-radius: 16px;
    max-width: 300px;
  }
}
.news_content_img.is-placeholder {
  object-fit: cover;
}
.news_content_img.latest {
  aspect-ratio: 150/100;
  border-radius: 8px;
}
.news_content_img img {
  width: 100%;
  height: 100%;
  transform: scale(1.008);
  object-fit: contain;
  transition: transform 0.6s ease-out;
}
.news_content_text_wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .news_content_text_wrap {
    gap: 24px;
  }
}
.news_content_text_wrap.latest {
  gap: 8px;
}
.news_content_text_top {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .news_content_text_top {
    gap: 16px;
  }
}
.news_content_text_top.latest {
  gap: 8px;
}
.news_content_date {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .news_content_date {
    font-size: 14px;
  }
}
.news_content_date.latest {
  font-size: 12px;
}
.news_content_category {
  font-weight: 700;
  font-size: 11px;
  line-height: 1.8;
  padding: 4px 6px;
  background: #FAD8DC;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .news_content_category {
    font-size: 12px;
  }
}
.news_content_category.latest {
  font-size: 10px;
}
.news_content_title span {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  display: inline;
  background-image: linear-gradient(hsl(13, 21%, 8%), hsl(13, 21%, 8%));
  background-repeat: no-repeat;
  background-position: left bottom 2px;
  background-size: 0% 1px;
  transition: background-size 0.3s;
}
@media (min-width: 768px) {
  .news_content_title span {
    font-size: 16px;
    line-height: 1.8;
  }
  .news_content_title span::after {
    display: none;
  }
}
.news_content_title.latest span {
  font-size: 13px;
}

.archive_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (min-width: 768px) {
  .archive_container {
    gap: 80px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
@media (min-width: 768px) {
  .nav-links {
    gap: 24px;
  }
}

.page-numbers {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1;
  position: relative;
}
@media (min-width: 768px) {
  .page-numbers {
    font-size: 14px;
  }
}
.page-numbers.current > span {
  position: relative;
  z-index: 2;
}
.page-numbers.current::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #FAD8DC;
  border-radius: 999px;
  width: 24px;
  height: 24px;
  z-index: 1;
}

.pagenation .page-numbers.is-disabled {
  cursor: default;
  opacity: 0.8;
  width: 32px;
  height: 32px;
}

.prev.page-numbers,
.next.page-numbers {
  width: 32px;
  height: 32px;
}

.prev.page-numbers {
  margin-right: 8px;
}

.next.page-numbers {
  margin-left: 8px;
}

.pagenation .page-numbers.is-disabled svg circle {
  fill: #969696 !important;
}

.pagenation .page-numbers.is-disabled svg path {
  fill: hsl(0, 0%, 100%) !important;
}

.is-article-title {
  flex-shrink: 1;
  min-width: 0;
  text-align: right;
  pointer-events: none;
}
.is-article-title .breadcrumb_item_link {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.single_section {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .single_section {
    padding: 120px 0 270px;
  }
}
.single_section .news_single_main {
  display: flex;
  flex-direction: column-reverse;
  gap: 60px;
}
@media (min-width: 768px) {
  .single_section .news_single_main {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    max-width: 1240px;
    margin: 0 auto;
  }
}

.category_newArticle {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .category_newArticle {
    gap: 80px;
  }
}
@media (min-width: 768px) {
  .category_newArticle.news {
    max-width: 280px;
  }
}
@media (min-width: 920px) {
  .category_newArticle.news {
    max-width: 366px;
  }
}

.category_newArticle_title {
  color: #DC000B;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  padding-bottom: 8px;
  border-bottom: 1px dashed hsl(0, 0%, 71%);
}
@media (min-width: 768px) {
  .category_newArticle_title {
    font-size: 24px;
  }
}

.news_single_category_list_item_link {
  background: #FAD8DC;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
  padding: 4px 6px;
  border-radius: 4px;
}

.singleCategory_wrap,
.article_latest {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .singleCategory_wrap,
  .article_latest {
    gap: 40px;
  }
}

.post_contents {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .post_contents {
    gap: 80px;
  }
}
.post_contents.news {
  width: 100%;
}
@media (min-width: 920px) {
  .post_contents.news {
    max-width: 767px;
    gap: 64px;
  }
}

.post_header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid hsl(13, 21%, 8%);
}
@media (min-width: 768px) {
  .post_header {
    gap: 24px;
    padding-bottom: 24px;
  }
}
.post_header.news {
  padding-bottom: 16px;
  border-bottom: 1px solid hsl(13, 21%, 8%);
  gap: 8px;
}
@media (min-width: 768px) {
  .post_header.news {
    gap: 24px;
    padding-bottom: 24px;
  }
}
.post_header_top {
  display: flex;
  align-items: center;
  gap: 16px;
}
.post_header_top .post_category_news {
  background: #FAD8DC;
  padding: 4px 6px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}
.post_header .post_date {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
}
.post_header .post_title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .post_header .post_title {
    font-size: 28px;
  }
}

.post_body > *:first-child {
  margin-top: 0 !important;
}
.post_body h2,
.post_body h3,
.post_body h4 {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .post_body h2,
  .post_body h3,
  .post_body h4 {
    margin-top: 80px;
  }
}
.post_body h2 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  background: #FAD8DC;
  padding: 12px 20px;
  border-radius: 4px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .post_body h2 {
    font-size: 24px;
    padding: 16px 24px;
    margin-bottom: 40px;
  }
}
.post_body h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  position: relative;
  padding-top: 8px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .post_body h3 {
    padding-top: 16px;
    font-size: 20px;
    margin-bottom: 32px;
  }
}
.post_body h3::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 80px;
  height: 2px;
  background-color: #DC000B;
}
.post_body h4 {
  color: #DC000B;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .post_body h4 {
    font-size: 18px;
    margin-bottom: 24px;
  }
}
.post_body p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  margin-top: 0;
}
.post_body p + p {
  margin-top: 1.8em !important;
}
@media (min-width: 768px) {
  .post_body p + p {
    margin-top: 1.8em !important;
  }
}
.post_body a {
  color: #20B6EC;
  text-decoration: underline;
}
.post_body .wp-element-caption {
  text-align: center;
}
.post_body figure {
  margin: 20px 0;
}
@media (min-width: 768px) {
  .post_body figure {
    margin: 40px 0;
  }
}
.post_body figure img {
  margin: 0 auto;
  display: block;
}
.post_body figure video {
  width: 100%;
}
.post_body iframe {
  width: 100% !important;
  aspect-ratio: 16/9;
  height: auto !important;
}

.news_single_category_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 768px) {
  .news_single_category_list {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
}

.post_navigation_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 12px;
}
@media (min-width: 768px) {
  .post_navigation_inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 16px;
    max-width: 598px;
    margin: 0 auto;
  }
}

.post_navigation_item a {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .post_navigation_item a {
    gap: 16px;
  }
}
.post_navigation_item .archive_link {
  display: inline-block;
  color: hsl(0, 0%, 100%);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5;
  padding: 12px 40px;
  border-radius: 999px;
  background: #DC000B;
  text-decoration: none;
  backface-visibility: hidden;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .post_navigation_item .archive_link {
    font-size: 14px;
  }
}
.post_navigation_item .archive_link:hover {
  background-color: hsl(13, 21%, 8%);
  opacity: 0.9;
  animation: smooth-poyon 0.55s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.post_navigation_item.is-prev {
  order: 1;
  width: calc(50% - 10px);
  display: flex;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .post_navigation_item.is-prev {
    width: auto;
  }
}
.post_navigation_item.is-next {
  order: 2;
  width: calc(50% - 10px);
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .post_navigation_item.is-next {
    width: auto;
  }
}
.post_navigation_item.is-archive {
  order: 3;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .post_navigation_item.is-archive {
    margin-top: 0;
    width: fit-content;
  }
}
@media (min-width: 768px) {
  .post_navigation_item {
    width: auto;
    margin-top: 0;
  }
  .post_navigation_item.is-prev, .post_navigation_item.is-next, .post_navigation_item.is-archive {
    order: unset;
  }
}
.post_navigation_item .is-disabled {
  cursor: default;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .post_navigation_item .is-disabled {
    gap: 16px;
  }
}
.post_navigation_item .is-disabled .nav_text {
  color: #969696;
}
.post_navigation_item .is-disabled svg circle {
  fill: #969696;
}
.post_navigation_item .is-disabled svg path {
  fill: hsl(0, 0%, 100%);
  opacity: 0.8;
}

.nav_text {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
}

.works_list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 64px;
}
@media (min-width: 768px) {
  .works_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    gap: clamp(32px, 2.8571428571vw, 40px);
    margin-top: 80px;
  }
}
@media (min-width: 768px) {
  .works_list.works_archive_list {
    gap: clamp(32px, 4.2857142857vw, 60px);
  }
}
.works_list_item_link {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .works_list_item_link {
    gap: 16px;
  }
}
.works_list_item_link.latest {
  gap: 8px;
}
.works_list_item_link:hover .works_img img {
  transform: scale(1.05);
}
.works_list_item_link:hover .works_text_wrap .works_title span {
  display: inline;
  background-image: linear-gradient(hsl(13, 21%, 8%), hsl(13, 21%, 8%));
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
}
.works_list_item_link .works_img {
  aspect-ratio: 320/213;
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
  background: hsl(0, 0%, 100%);
  border: 1px solid hsl(0, 0%, 71%);
}
@media (min-width: 768px) {
  .works_list_item_link .works_img {
    aspect-ratio: 373/249;
    border-radius: 20px;
  }
}
.works_list_item_link .works_img img {
  width: 100%;
  height: 100%;
  transform: scale(1.008);
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s ease-out;
}
.works_list_item_link .works_img img.is-placeholder {
  object-fit: cover;
}
.works_list_item_link .works_text_wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .works_list_item_link .works_text_wrap {
    gap: 16px;
  }
}
.works_list_item_link .works_text_wrap.latest {
  gap: 8px;
}
.works_list_item_link .works_text_wrap .works_category {
  color: hsl(0, 0%, 100%);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.8;
  padding: 4px 6px;
  background: #DC000B;
  border-radius: 4px;
  width: fit-content;
}
.works_list_item_link .works_text_wrap .works_title span {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  display: inline;
  background-image: linear-gradient(hsl(13, 21%, 8%), hsl(13, 21%, 8%));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size 0.3s;
  padding-bottom: 2px;
}
@media (min-width: 768px) {
  .works_list_item_link .works_text_wrap .works_title span {
    font-size: 20px;
  }
}
.works_list_item_link .works_text_wrap .works_title.latest span {
  font-size: 14px;
}

.works_archive_main {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1241px;
  margin: 0 auto;
}

.works_category_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
}
.works_category_list_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .works_category_list_wrap {
    gap: 24px;
  }
}
.works_category_list_text {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}
.works_category_list_item_link {
  color: hsl(0, 0%, 100%);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
  padding: 4px 6px;
  background: #DC000B;
  border-radius: 4px;
  border: 1px solid #DC000B;
}
.works_category_list_item_link.is-active {
  color: #969696;
  background: transparent;
  border: 1px solid #969696;
}

.works_single_main {
  display: flex;
  flex-direction: column-reverse;
  gap: 60px;
}
@media (min-width: 768px) {
  .works_single_main {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    max-width: 1240px;
    margin: 0 auto;
  }
}

.works_singleCategory_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 768px) {
  .works_singleCategory_list {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
}
.works_singleCategory_list_item_link {
  color: hsl(0, 0%, 100%);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
  padding: 4px 6px;
  background: #DC000B;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .works_singleCategory_list_item_link {
    padding: 6px;
  }
}

.works_latest_list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 600px) {
  .works_latest_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
  }
}
@media (min-width: 768px) {
  .works_latest_list {
    display: flex;
    flex-direction: column;
    max-width: 295px;
  }
}

.post_contents.works {
  background: hsl(0, 0%, 100%);
  padding: 40px 20px;
  border-radius: 40px;
  max-width: 847px;
  width: 100%;
}
@media (min-width: 768px) {
  .post_contents.works {
    padding: 80px 40px;
  }
}

.works_category {
  color: hsl(0, 0%, 100%);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.8;
  padding: 4px 6px;
  background: #DC000B;
  border-radius: 4px;
  width: fit-content;
}
.works_category_wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.subPage_contact_section {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .subPage_contact_section {
    padding: 120px 0 270px;
  }
}

.contact_main {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 600px) {
  .contact_main {
    gap: 80px;
  }
}
.contact_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media screen and (min-width: 600px) {
  .contact_head {
    gap: 40px;
  }
}
.contact_head_main_title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .contact_head_main_title {
    font-size: 32px;
  }
}
@media screen and (min-width: 600px) {
  .contact_head_main_title_br {
    display: none;
  }
}
.contact_head_main_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .contact_head_main_text_br {
    display: none;
  }
}
.contact_head_main_text_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 600px) {
  .contact_head_main_text_wrap {
    gap: 14px;
  }
}
.contact_head .contact_tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media screen and (min-width: 600px) {
  .contact_head .contact_tel {
    gap: 16px;
  }
}
.contact_head .contact_tel_head {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact_head .contact_tel_num {
  font-family: "Montserrat", sans-serif;
  color: #DC000B;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .contact_head .contact_tel_num {
    font-size: 40px;
  }
}
.contact_head .contact_tel_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
}
.contact_bottom {
  padding: 40px 20px;
  background: hsl(0, 0%, 100%);
  border-radius: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .contact_bottom {
    padding: 70px 63px 80px;
    border-radius: 40px;
  }
}

.contact_form_container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact_form_wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact_form_title {
  font-weight: 600;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.6;
}

.wpcf7-text,
.wpcf7-textarea {
  width: 100%;
  padding: 12px 16px;
  box-shadow: none;
  border: 1px solid hsl(0, 0%, 83%);
  border-radius: 5px;
  font-weight: 400;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.6;
}

.wpcf7-text::placeholder,
.wpcf7-textarea::placeholder {
  color: hsl(0, 0%, 71%);
  opacity: 1;
}

.wpcf7-textarea {
  max-height: 246px;
}

.privacy_policy {
  background: hsl(0, 0%, 96%);
  padding: 20px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 1.8em;
  margin-top: 32px;
}
@media screen and (min-width: 600px) {
  .privacy_policy {
    padding: 40px;
    margin-top: 40px;
  }
}
.privacy_policy_title {
  font-weight: 700;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 160%;
}
.privacy_policy_text {
  font-weight: 400;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 160%;
}
.privacy_policy_text_wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.acceptance_and_submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 16px;
}
.wpcf7-acceptance .wpcf7-list-item input {
  margin: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.wpcf7-list-item-label {
  font-weight: 400;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.8;
  text-align: center;
}

.wpcf7-submit {
  color: hsl(0, 0%, 100%);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  background-color: #DC000B;
  border-radius: 999px;
  max-width: 207px;
  width: 100%;
  padding: 24px;
  box-shadow: none;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  transition: background-color 0.3s ease-out;
}
.wpcf7-submit:hover {
  background-color: hsl(13, 21%, 8%);
}

.wpcf7-submit:disabled,
.wpcf7-submit[disabled] {
  background-color: hsl(0, 0%, 71%);
  cursor: not-allowed;
  opacity: 0.6;
}

.wpcf7-spinner {
  display: none !important;
}

.thanks_section {
  padding: 100px 0 80px;
}
@media (min-width: 768px) {
  .thanks_section {
    padding: 140px 0 270px;
  }
}
.thanks_main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
@media screen and (min-width: 600px) {
  .thanks_main {
    gap: 40px;
  }
}
.thanks_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 600px) {
  .thanks_head {
    gap: 20px;
  }
}
.thanks_title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .thanks_title {
    font-size: 32px;
  }
}
@media screen and (min-width: 600px) {
  .thanks_title br {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .thanks_text_br {
    display: none;
  }
}
.thanks_bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: hsl(0, 0%, 100%);
  border-radius: 10px;
  padding: 20px;
  max-width: 700px;
}
@media screen and (min-width: 600px) {
  .thanks_bottom {
    gap: 20px;
    border-radius: 20px;
    padding: 40px;
  }
}
.thanks_bottom_title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .thanks_bottom_title {
    font-size: 24px;
  }
}

.contact_form_link {
  color: #DC000B;
  background-image: linear-gradient(to right, #DC000B, #DC000B); /* 線の色 */
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat; /* 背景を繰り返さない */
  padding-bottom: 0;
}
.contact_form_link:hover {
  animation: linkLineReverse 0.5s ease forwards;
}
@keyframes linkLineReverse {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }
  50% {
    background-size: 0 1px; /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
    background-position: bottom right;
  }
  51% {
    background-position: bottom left;
  }
  100% {
    background-size: 100% 1px;
  }
}

.notFound_section {
  padding: 100px 0 80px;
}
@media (min-width: 768px) {
  .notFound_section {
    padding: 140px 0 270px;
  }
}
.notFound_main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
@media screen and (min-width: 600px) {
  .notFound_main {
    gap: 40px;
  }
}
.notFound_title {
  color: #DC000B;
  font-family: "Montserrat", sans-serif;
  font-size: 64px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .notFound_title {
    font-size: 100px;
  }
}
.notFound_title_en {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
}
.notFound_text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .notFound_text {
    font-size: 24px;
  }
}
@media screen and (min-width: 600px) {
  .notFound_text br {
    display: none;
  }
}
.notFound_text_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 600px) {
  .notFound_text_wrap {
    gap: 20px;
  }
}
@media screen and (min-width: 600px) {
  .notFound_small_text {
    display: none;
  }
}/*# sourceMappingURL=base.css.map */