@charset "UTF-8";
:root {
  --container-width: 1650px;
  --header-height: 104px;
}

:root {
  --blue: #007bff;
  --gray-blue: #275181;
  --light-blue: #e6ebf2;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #364756;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body, div, p, h1, h2, h3, h4, h5, table, tr, td, section, article, ul, ol, li, dt, dd {
  margin: 0;
  padding: 0;
}

html {
  height: -webkit-fill-available;
  scroll-behavior: smooth;
  font-size: 62.5%;
}

a {
  text-decoration: none !important;
}

img {
  border: 0;
}

button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

input {
  display: block;
}

input[type=checkbox],
input[type=radio] {
  cursor: pointer;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}
.breadcrumb li {
  position: relative;
  padding-right: 1.5em;
  margin-right: 10px;
  font-size: 1rem;
  font-weight: 400;
}
.breadcrumb li :after {
  color: #333;
  display: block;
  content: "＞";
  position: absolute;
  top: 0.65em;
  right: 0;
  transform: translateY(-50%);
}
.breadcrumb li:last-child :after {
  content: "";
}
.breadcrumb li a {
  color: #333;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
table tr {
  border-top: 1px solid #5c7092;
  border-bottom: 1px solid #5c7092;
}
table th {
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 20px 25px;
  width: 220px;
  text-align: left;
  color: var(--gray-dark);
}
table td {
  font-weight: 400;
  letter-spacing: 0.03em;
  padding: 20px 25px;
  color: var(--gray-dark);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: 100%;
  color: var(--gray-dark);
}

.wrapper h3 {
  border-bottom: 5px solid;
  -o-border-image: linear-gradient(to right, #32486e, #8496b5) 1;
     border-image: linear-gradient(to right, #32486e, #8496b5) 1;
  padding: 0 0 8px 10px;
  margin-bottom: 80px;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  color: var(--gray-dark);
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--gray-dark);
}

#contents {
  font-size: 18px;
  font-variant-ligatures: none;
  margin: 0 auto;
  padding-bottom: 367px;
  padding-top: 0;
  position: relative;
  text-align: left;
  width: 100%;
  z-index: 0;
}

.wrapper {
  padding-top: 114px;
}
.wrapper .inner {
  width: 95%;
  max-width: 1650px;
  margin: 0 auto;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  text-decoration: underline;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.8em;
  margin-bottom: 7px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-dark);
}

img {
  vertical-align: middle;
  border-style: none;
}

a img {
  opacity: 1;
  transition: 0.3s;
}

hr {
  box-sizing: content-box;
  height: 0;
}

ul {
  list-style: none;
}

/* =======================================================================
margin
padding
======================================================================= */
.mt-xs {
  margin-top: 10px;
}

.mt-s {
  margin-top: 20px;
}

.mt-m {
  margin-top: 30px;
}

.mt-l {
  margin-top: 40px;
}

.mt-xl {
  margin-top: 60px;
}

.mt-2xl {
  margin-top: 80px;
}

.mt-3xl {
  margin-top: 100px;
}

.mb-xs {
  margin-bottom: 10px;
}

.mb-s {
  margin-bottom: 20px;
}

.mb-m {
  margin-bottom: 30px;
}

.mb-l {
  margin-bottom: 40px;
}

.mb-xl {
  margin-bottom: 60px;
}

.mb-2xl {
  margin-bottom: 80px;
}

.mb-3xl {
  margin-bottom: 100px;
}

.m-xs {
  margin: 10px;
}

.m-s {
  margin: 20px;
}

.m-m {
  margin: 30px;
}

.m-l {
  margin: 40px;
}

.m-xl {
  margin: 60px;
}

.m-2xl {
  margin: 80px;
}

.m-3xl {
  margin: 100px;
}

.pt-xs {
  padding-top: 10px;
}

.pt-s {
  padding-top: 20px;
}

.pt-m {
  padding-top: 30px;
}

.pt-l {
  padding-top: 40px;
}

.pt-xl {
  padding-top: 60px;
}

.pt-2xl {
  padding-top: 80px;
}

.pt-3xl {
  padding-top: 100px;
}

.pb-xs {
  padding-bottom: 10px;
}

.pb-s {
  padding-bottom: 20px;
}

.pb-m {
  padding-bottom: 30px;
}

.pb-l {
  padding-bottom: 40px;
}

.pb-xl {
  padding-bottom: 60px;
}

.pb-2xl {
  padding-bottom: 80px;
}

.pb-3xl {
  padding-bottom: 100px;
}

.p-xs {
  padding: 10px;
}

.p-s {
  padding: 20px;
}

.p-m {
  padding: 30px;
}

.p-l {
  padding: 40px;
}

.p-xl {
  padding: 60px;
}

.p-2xl {
  padding: 80px;
}

.p-3xl {
  padding: 100px;
}

/* フェードアニメーション */
.load-fade {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

.load-fade.is-show {
  opacity: 1;
  visibility: visible;
}

.scroll-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 0.5s;
}

.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* 404 */
.page-404 .img_404 {
  position: relative;
}
.page-404 .img_404 .sub_img {
  display: block;
  max-width: 100%;
  margin: 30px auto;
  width: 13rem;
  position: absolute;
  top: -50px;
  left: calc(50% - 275px);
}
.page-404 .img_404 .main_img {
  display: block;
  max-width: 100%;
  margin: 30px auto;
  width: 15rem;
}
.page-404 h3 {
  font-size: 25px;
  padding: 0;
  margin-bottom: 20px;
  border-bottom: 0;
  text-align: center;
}
.page-404 p {
  text-align: center;
}
.page-404 .btn a:before {
  top: 43%;
  left: min(18px, 1.125rem);
  transform: rotate(180deg);
}

* {
  box-sizing: border-box;
}

*:before, *:after {
  box-sizing: border-box;
}

/* btn */
.btn {
  max-width: 300px;
  position: relative;
}
.btn.center {
  margin: auto;
}
.btn a {
  border-radius: 4px;
  display: block;
  background: var(--gray-blue);
  color: #fff;
  text-align: center;
  padding: 19px 30px 17px;
  font-size: 17px;
  letter-spacing: 0.075em;
  transition: 1s;
  font-weight: 400;
  text-decoration: none;
}
.btn a:before {
  position: absolute;
  top: 50%;
  right: min(18px, 1.125rem);
  content: "";
  background-image: url(../image/contents/icon_link_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  width: 6px;
  height: 11px;
}
.btn a:hover {
  transition: 1s;
  opacity: 0.7;
  text-decoration: none;
}
.btn a:hover::before {
  background-image: url(../image/contents/icon_link_arrow.svg);
}

.btn.icon_arrow a:after {
  content: " ";
  display: inline-block;
  width: 16px;
  height: 18px;
  background: url("../img/icon_arrow_white.svg") no-repeat left top;
  background-size: 16px 15px;
  margin-left: 14px;
  vertical-align: middle;
}

/* header */
.header {
  position: fixed;
  height: auto;
  width: 100%;
  max-width: 100%;
  z-index: 1001;
  background-color: var(--white);
  box-shadow: 0px 7px 15px 0px rgba(17, 35, 65, 0.2196078431), inset 0px -3px 6px -2px rgba(17, 35, 65, 0.2196078431);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  width: var(--container-width);
  margin: 0 auto;
}
.header__logo a img {
  transition: 0.5s;
  width: 225px;
  height: 73px;
}
.header__logo a img:hover {
  transition: 0.5s;
  opacity: 0.5;
}
.header__nav {
  display: block;
}
.header__nav li {
  padding: 30px 75px;
}
.header__nav ul li a {
  transition: 0.5s;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.header__nav ul li a:hover {
  transition: 0.5s;
  opacity: 0.5;
}
.header__nav ul li:last-child {
  padding-right: 0;
}
.header__nav-menu {
  display: flex;
}
.header__nav-menu-link {
  font-size: 23px;
  color: #333;
}
.header__nav-menu-link:hover {
  text-decoration: none;
}

.header.is-scroll {
  box-shadow: 0px 1px 10px 0px rgba(17, 35, 65, 0.2196078431), inset 0px -3px 6px -2px rgba(17, 35, 65, 0.2196078431);
}
.header.is-scroll .header__inner {
  padding: 15px 0;
}
.header.is-scroll .header__logo a img {
  width: 155px;
  height: 53px;
}
.header.is-scroll .header__nav-menu-link {
  font-size: 18px;
}
.header.is-scroll .header__nav {
  display: block;
}
.header.is-scroll .header__nav li {
  padding: 10px 45px;
}
.header.is-scroll .header__nav li:last-child {
  padding-right: 0;
}
.header.is-scroll .header__nav .header__nav-menlink {
  font-size: 20px;
}

/* hamburger */
.hamburger {
  display: none;
}

/* 下層共通ヘッダー */
.head__inner {
  padding: 70px 0;
  background-image: linear-gradient(to bottom, #e9f6ff 45%, #fff, #fffaf7);
}
.head__inner h2 {
  font-size: 30px;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}

/* footer */
.footer__area {
  background-image: linear-gradient(#8596b5, #32486e);
}
.footer__inner {
  margin: auto;
  padding: 37px 20px 17px;
}
.footer__logo {
  margin: 0 auto;
  width: 185px;
  height: 65px;
}
.footer__logo img {
  width: 185px;
  height: 65px;
  transition: 0.5s;
}
.footer__logo img:hover {
  transition: 0.5s;
  opacity: 0.5;
}
.footer__nav-menu {
  display: flex;
  align-items: end;
  justify-content: center;
  margin: 30px 0;
}
.footer__nav-menu li {
  padding: 0 30px;
  border-right: 1px solid #fff;
  line-height: 0.7em;
}
.footer__nav-menu li a {
  color: #fff;
  font-size: 18px;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: 0.5s;
}
.footer__nav-menu li a:hover {
  transition: 0.5s;
  opacity: 0.5;
}
.footer__nav-menu li:first-child {
  border-left: 1px solid #fff;
}

.copyright {
  margin: 0 auto;
}
.copyright p {
  color: #fff;
  text-align: center;
  font-size: 0.6em;
  margin-bottom: 0;
}

.work__category {
  border: 2px solid #d3dbe8;
  background-color: #f2f7fb;
  padding: 20px;
  margin: 35px auto 55px;
  position: sticky;
  top: 0;
}
.work__category .work__nav-category ul {
  display: flex;
  grid-template-columns: repeat(8, 1fr);
  justify-content: center;
}
.work__category .work__nav-category ul li {
  border-right: 2px solid #9b9da1;
  padding: 0 15px;
  transition: 0.5s;
}
.work__category .work__nav-category ul li:hover {
  transition: 0.5s;
}
.work__category .work__nav-category ul li:hover p {
  transition: 0.5s;
  background-color: #fff;
  cursor: pointer;
}
.work__category .work__nav-category ul li p {
  font-size: 17px;
  color: #333;
  padding: 8px 25px;
  transition: 0.5s;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: 0.03em;
}
.work__category .work__nav-category ul li.active p {
  background-color: #fff;
}
.work__category .work__nav-category ul li:first-child {
  border-left: 2px solid #9b9da1;
}

.work__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.work__list .work__item {
  box-shadow: 0px 1px 10px 0px rgba(17, 35, 65, 0.2196078431), inset 0px -3px 6px -2px rgba(17, 35, 65, 0.2196078431);
  transition: 0.5s;
  display: none;
}
.work__list .work__item.is-active {
  display: block;
}
.work__list .work__item .post-item-txt {
  padding: 28px;
}
.work__list .work__item .post-item-title {
  font-size: 18px;
  letter-spacing: 0.075em;
  margin: 0 auto 30px;
  color: #333;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}
.work__list .work__item .post-item-category {
  margin-bottom: 12px;
}
.work__list .work__item .post-item-category span {
  padding: 3px 8px;
  background-color: #e6edf2;
  margin-right: 8px;
}
.work__list .work__item .post-item-category, .work__list .work__item .post-item-date {
  font-size: 14px;
  letter-spacing: 0.03em;
  color: #333;
  font-weight: 400;
}
.work__list .work__item:hover {
  transition: 0.5s;
  opacity: 0.5;
}
.work__list .work__item:hover a {
  text-decoration: none;
}
.work__list .post-item-thumbnail {
  width: 100%;
  aspect-ratio: 385/320;
  overflow: hidden;
}
.work__list img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2em 0;
  font-weight: 700;
}
.pagination .page-numbers {
  display: block;
  margin: 0 7px;
  padding: 0.7em 0.2em;
  min-width: 25px;
  min-height: 40px;
  text-align: center;
  position: relative;
  color: #122140;
  font-size: 0.8em;
  font-weight: 400;
  transition: 0.5s;
  line-height: 1em;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  font-size: 0.5em;
  padding: 1em 0.2em 0.5em;
}
.pagination .page-numbers:hover {
  text-decoration: none;
  transition: 0.5s;
  opacity: 0.5;
}
.pagination .page-numbers.is-active {
  border-bottom: 2px solid #122140;
}
.pagination .page-numbers.is-active:hover {
  opacity: 1;
}

.nav-links .prev,
.nav-links .next {
  display: block;
  min-width: 30px;
  min-height: 40px;
  text-align: center;
}

.slide-items {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.slide-items img {
  margin: auto;
}

/* Dots */
.slick-prev:before, .slick-next:before {
  display: none !important;
}

.slick-next {
  right: 0 !important;
}

.slick-slide {
  height: 500px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  outline: none;
}

.slick-dotted.slick-slider {
  width: 100%;
  max-width: 50rem;
  margin: 0 auto;
}

.slide-items .slick-slide img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  -o-object-fit: contain;
     object-fit: contain;
}

.slide-items .slick-track {
  display: flex;
  align-items: center;
}

.slide-items .slick-slide {
  height: 700px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.slide-dots {
  position: absolute;
  bottom: -40px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slide-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 2px;
  padding: 0;
  cursor: pointer;
}

.slide-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
}

.slide-dots li button:hover,
.slide-dots li button:focus {
  outline: none;
}

.slide-dots li button:hover:before,
.slide-dots li button:focus:before {
  opacity: 0.8;
}

.slide-dots li button:before {
  font-style: normal;
  line-height: 24px;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  content: "";
  text-align: center;
  background: #aaa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slide-dots li.slick-active button:before {
  opacity: 0.75;
  color: red;
  border: none;
  background: #000;
}

.single-work .work__area {
  margin-top: 90px;
}
.single-work .work__area.child {
  margin-top: 0;
}
.single-work .work__area .work__inner {
  display: flex;
  position: relative;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  margin: 80px auto 0;
}
.single-work .work__area .work__inner .table__work table th {
  font-size: 20px;
  background-color: #d3e2eb;
}
.single-work .work__area .work__inner .table__work table td {
  padding: 1em;
  border: 1px solid #32486e;
}
.single-work .work__area .work__inner .table__work table th, .single-work .work__area .work__inner .table__work table td {
  padding: 1em;
  border: 1px solid #32486e;
}
.single-work .work__area .point-item {
  padding: 30px;
  background-color: #e6edf2;
}
.single-work .work__area .point-item p:last-child {
  margin-bottom: 0;
}

.page-navbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 45px 0;
  margin-top: 70px;
  border-radius: 100px;
  background: #fff;
  width: 50%;
  margin: auto;
}
.page-navbox.model {
  width: 100%;
  justify-content: center;
  background-color: var(--light-blue);
  border-radius: 0;
}
.page-navbox.model .back a {
  margin: auto;
  font-weight: 400;
  transition: 0.5s;
}
.page-navbox.model .back a:hover {
  transition: 0.5s;
  opacity: 0.5;
}
.page-navbox.is-first-post {
  justify-content: flex-end;
}
.page-navbox.is-last-post {
  justify-content: flex-start;
}
.page-navbox .prev, .page-navbox .next {
  width: 220px;
}
.page-navbox .prev {
  order: 1;
  margin-right: 20px;
}
.page-navbox .prev a:before {
  transform: rotate(180deg);
  right: unset;
  left: min(18px, 1.125rem);
  top: 20%;
}
.page-navbox .prev a {
  align-items: flex-start;
}
.page-navbox .back {
  order: 2;
  max-width: 300px;
  margin: auto;
}
.page-navbox .back a {
  border-radius: 4px;
  display: block;
  background-color: var(--gray-blue);
  color: #fff;
  text-align: center;
  padding: 18px 95px;
  font-size: 18px;
  letter-spacing: 0.075em;
  transition: 1s;
  font-weight: bold;
  box-shadow: 0px 1px 5px 0px rgba(17, 35, 65, 0.32), inset 0px -3px 0 -2px rgba(17, 35, 65, 0.2196078431);
}
.page-navbox .back a:before {
  content: none;
}
.page-navbox .next {
  order: 3;
  margin-left: 20px;
}
.page-navbox .next a {
  align-items: flex-end;
}
.page-navbox a {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 35px;
  color: var(--gray-blue);
  font-size: 1.1rem;
}
.page-navbox a:before {
  position: absolute;
  top: 40%;
  right: min(18px, 1.125rem);
  content: "";
  background-image: url(../image/contents/icon_link_blue_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  width: 8px;
  height: 15px;
}

.slide__area {
  width: 50rem;
}
.slide__area .slick-dots {
  bottom: -45px;
}
.slide__area .slick-dots li:only-child {
  display: none;
}

.table__area {
  width: calc(100% - 40rem);
  padding-left: 4rem;
}

.solid__area {
  background-color: var(--light-blue);
  padding: 100px 0;
}
.solid__area .inner {
  background: #fff;
  padding: 70px 50px;
}
.solid__area h3 {
  margin-bottom: 0;
}
.solid__area .dimension-model-area :hover .icon {
  background-image: url(../image/contents/work/solid_icon_border.svg);
  transition: 0.5s;
  filter: none;
}
.solid__area .dimension-model-box {
  display: flex;
  flex-flow: wrap;
  gap: 40px 30px;
  width: 100%;
}
.solid__area .dimension-model-box .list {
  width: calc((100% - 90px) / 4);
}
.solid__area .dimension-model-box img {
  width: 55%;
}
.solid__area .dimension-model-box img.small {
  width: 100%;
  margin: 50px 0;
}
.solid__area .dimension-model-area {
  position: relative;
  transition: 0.5s;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 70px auto auto;
}
.solid__area .dimension-model-area img {
  max-width: 100%;
}
.solid__area .dimension-model-area:hover img {
  transition: 0.5s;
  opacity: 0.4;
}
.solid__area .dimension-model-area .icon {
  width: 70px;
  height: 70px;
  background-image: url(../image/contents/work/solid_icon.svg);
  display: flex;
  justify-content: flex-end;
  position: absolute;
  right: 0;
  top: -7%;
  z-index: 100;
  transition: 0.5s;
  filter: drop-shadow(-2px 4px 4px rgba(31, 52, 77, 0.35));
}
.solid__area .dimension-model {
  width: 100%;
  height: 100%;
  opacity: 0.7;
  display: flex;
  justify-content: center;
  margin: auto;
  position: relative;
  z-index: 10;
  transition: 0.5s;
}
.solid__area .dimension-model.filter {
  filter: grayscale(0.5) drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.5));
}
.solid__area.child-3d {
  background-color: transparent;
  padding: 0;
}
.solid__area.child-3d .dimension-model {
  width: 100%;
  height: 600px;
}

@media screen and (max-width: 1800px) {
  .header__inner {
    width: 95%;
  }
}
@media screen and (max-width: 1500px) {
  table th {
    padding: 20px 15px;
    width: 170px;
  }
  table td {
    padding: 20px 15px;
  }
  .work__list {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 1250px) {
  .wrapper {
    padding-top: 94px;
  }
  .work__list .work__item .post-item-title {
    font-size: 15px;
    letter-spacing: 0.05em;
    margin: 0 auto 10px;
  }
  .work__list .work__item .post-item-txt {
    padding: 13px 13px 18px;
  }
  .work__list .work__item .post-item-title {
    font-size: 15px;
    letter-spacing: 0.05em;
    margin: 0 auto 10px;
  }
  .work__list .work__item .post-item-category span {
    padding: 2px 6px;
    margin-right: 5px;
    font-size: 12px;
  }
  .work__list .work__item .post-item-category, .work__list .work__item .post-item-date {
    font-size: 12px;
    letter-spacing: 0.03em;
  }
  .header__nav li {
    padding: 20px 45px;
  }
  .header__logo a img {
    width: 185px;
    height: 60px;
  }
  .header__nav li a {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  /* =======================================================================
  margin
  padding
  ======================================================================= */
  .mt-xs {
    margin-top: 5px;
  }
  .mt-s {
    margin-top: 10px;
  }
  .mt-m {
    margin-top: 15px;
  }
  .mt-l {
    margin-top: 20px;
  }
  .mt-xl {
    margin-top: 30px;
  }
  .mt-2xl {
    margin-top: 40px;
  }
  .mt-3xl {
    margin-top: 60px;
  }
  .mb-xs {
    margin-bottom: 5px;
  }
  .mb-s {
    margin-bottom: 10px;
  }
  .mb-m {
    margin-bottom: 15px;
  }
  .mb-l {
    margin-bottom: 20px;
  }
  .mb-xl {
    margin-bottom: 30px;
  }
  .mb-2xl {
    margin-bottom: 40px;
  }
  .mb-3xl {
    margin-bottom: 60px;
  }
  .m-xs {
    margin: 5px;
  }
  .m-s {
    margin: 10px;
  }
  .m-m {
    margin: 15px;
  }
  .m-l {
    margin: 20px;
  }
  .m-xl {
    margin: 30px;
  }
  .m-2xl {
    margin: 40px;
  }
  .m-3xl {
    margin: 60px;
  }
  .pt-xs {
    padding-top: 5px;
  }
  .pt-s {
    padding-top: 10px;
  }
  .pt-m {
    padding-top: 15px;
  }
  .pt-l {
    padding-top: 20px;
  }
  .pt-xl {
    padding-top: 30px;
  }
  .pt-2xl {
    padding-top: 40px;
  }
  .pt-3xl {
    padding-top: 60px;
  }
  .pb-xs {
    padding-bottom: 5px;
  }
  .pb-s {
    padding-bottom: 10px;
  }
  .pb-m {
    padding-bottom: 15px;
  }
  .pb-l {
    padding-bottom: 20px;
  }
  .pb-xl {
    padding-bottom: 30px;
  }
  .pb-2xl {
    padding-bottom: 40px;
  }
  .pb-3xl {
    padding-bottom: 60px;
  }
  .p-xs {
    padding: 5px;
  }
  .p-s {
    padding: 10px;
  }
  .p-m {
    padding: 15px;
  }
  .p-l {
    padding: 20px;
  }
  .p-xl {
    padding: 30px;
  }
  .p-2xl {
    padding: 40px;
  }
  .p-3xl {
    padding: 60px;
  }
  .wrapper {
    padding-top: 84px;
  }
  /* hamburger */
  .header.is-scroll .header__nav {
    display: none;
  }
  .header__nav {
    display: none;
  }
  .header .hamburger {
    display: block;
  }
  .header .hamburger__btn {
    position: fixed;
    top: 25px;
    right: 20px;
    width: 30px;
    cursor: pointer;
    z-index: 20;
  }
  .header .hamburger__btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    margin: 5px 0;
    transition: 0.4s;
  }
  .header .hamburger__btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .header .hamburger__btn.active span:nth-child(2) {
    opacity: 0;
  }
  .header .hamburger__btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .header .hamburger__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    color: #333;
    box-sizing: border-box;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    /* メニューが開いているとき */
  }
  .header .hamburger__menu.open {
    opacity: 1;
    visibility: visible;
  }
  .header .hamburger__menu ul {
    list-style-type: none;
    padding: 0 10px;
    margin-top: 80px;
  }
  .header .hamburger__menu ul li {
    padding: 20px 0;
    border-bottom: 1px solid #32486e;
  }
  .header .hamburger__menu ul li a {
    color: #333;
    text-decoration: none;
    display: block;
    font-weight: 400;
    font-size: 23px;
  }
  .header .hamburger__header__logo img {
    width: 155px;
    height: 53px;
  }
  .header .hamburger__menu__box {
    width: 95%;
    margin: auto;
    padding: 15px 0;
  }
  .header.is-scroll .header__nav-menu-link {
    font-size: 23px;
  }
  .work .slide-prev,
  .work .slide-next {
    position: absolute;
    top: 44%;
    cursor: pointer;
    outline: none;
    border-top: 2px solid #272727;
    border-right: 2px solid #272727;
    height: 20px;
    width: 20px;
    z-index: 5;
  }
  .work .slide-prev {
    left: 30px;
    transform: rotate(-135deg);
  }
  .work .slide-next {
    right: 30px;
    transform: rotate(45deg);
  }
  .work__list {
    gap: 1rem;
  }
  .work__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.section__ttl-box {
  text-align: center;
  margin-bottom: 3rem;
}
.section__ttl {
  font-size: 4.5rem;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  font-weight: 400;
  font-family: "Plus Jakarta Sans", sans-serif;
  padding-bottom: 5px;
}
.section__ttl.sub {
  font-size: 1.5rem;
  letter-spacing: 0.075em;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

@media screen and (max-width: 959px) {
  .head__inner {
    padding: 35px 0;
  }
  .head__inner h2 {
    font-size: 20px;
    letter-spacing: 0.05em;
  }
  .head__inner .section__ttl-box {
    margin-bottom: 2rem;
  }
  .head__inner .section__ttl {
    font-size: 3.5rem;
  }
  .head__inner .single-work .work__area {
    margin-top: 50px;
  }
  .head__inner .single-work .work__area .work__inner .table__work table th {
    font-size: 15px;
  }
  .page-404 .img_404 .main_img {
    width: 10rem;
  }
  .page-404 .img_404 .sub_img {
    width: 8rem;
    left: calc(50% - 165px);
  }
  .page-404 h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 559px) {
  :root {
    --container-width: 90%;
    --header-height: 72px;
  }
  p {
    font-size: 0.9rem;
  }
  .breadcrumb {
    padding: 0.5rem 0.7rem;
    margin-bottom: 1rem;
  }
  .breadcrumb li {
    font-size: 0.8rem;
  }
  table th {
    width: 120px;
  }
  .section__ttl-box {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .work__list {
    gap: 0.5rem;
  }
  .work__list .work__item .post-item-txt {
    padding: 8px 8px 13px;
  }
  .work__list .work__item .post-item-title {
    font-size: 14px;
    letter-spacing: 0.03em;
    margin: 0 auto 8px;
  }
  .work__list .work__item .post-item-category, .work__list .work__item .post-item-date {
    font-size: 10px;
    letter-spacing: 0.03em;
  }
  .work__list .work__item .post-item-category, .work__list .work__item .post-item-date {
    font-size: 10px;
    letter-spacing: 0.03em;
  }
  .work__list .work__item .post-item-category span {
    padding: 1px 4px;
    margin-right: 3px;
    font-size: 10px;
  }
  .section__ttl {
    font-size: 2.5rem;
  }
  .section__ttl.sub {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
  .slide__area .slick-dots {
    bottom: -40px;
  }
  .page-navbox .back {
    max-width: 100%;
  }
  .single-work .work__area .point-item {
    padding: 15px;
  }
  .footer__nav-menu li {
    padding: 0 20px;
  }
  .footer__nav-menu li a {
    font-size: 16px;
  }
  .single-work .work__area {
    margin-top: 40px;
  }
  .wrapper h3 {
    margin-bottom: 30px;
  }
  .single-work .work__area .work__inner .table__work table th {
    font-size: 14px;
  }
  .solid__area .dimension-model-area {
    margin: 30px auto auto;
  }
  .solid__area .dimension-model-box img.small {
    margin: 30px 0;
  }
  .solid__area.mb-3xl {
    margin-bottom: 20px;
  }
  .page-404 h3, .page-404 p {
    text-align: left;
  }
  .btn a {
    padding: 14px 30px 13px;
    font-size: 14px;
    letter-spacing: 0.005em;
  }
}/*# sourceMappingURL=common.css.map */