@charset "UTF-8";
/* CSS Information
---------------------------------------------------------------
Site URL:https://
File name:style.css
Summary:base styles
Created:2025-08-01
--------------------------------------------------------------- */
/* Link */
/* ------------------------------------------------------------ */
a {
  color: #000;
  text-decoration: none;
}

a[href^="tel:"] {
  pointer-events: none;
  cursor: text;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

/* Animation */
/* ------------------------------------------------------------ */
a,
img {
  transition: all 0.3s ease;
}

.alpha:hover {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

/* Font */
/* ------------------------------------------------------------ */
sup {
  font-size: 66%;
  font-weight: 700;
  vertical-align: top;
}

sub {
  font-size: 66%;
  font-weight: 700;
  vertical-align: baseline;
}

/* インデント1文字分 */
/* ------------------------------------------------------------ */
.indent {
  text-indent: -1em;
  margin-left: 1em;
}

/* HR */
/* ------------------------------------------------------------ */
hr {
  max-width: 980px;
  height: 1px;
  margin: 0 auto;
  padding: 0;
  display: block;
  border: 0;
  border-top: 1px #000 solid;
}
@media screen and (max-width: 768px) {
  hr {
    margin: 0 min(5.128vw, 20px);
  }
}

/* pc_mode / sp_mode */
/* ------------------------------------------------------------ */
.pc {
  display: inherit;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: inherit;
  }
}
/* Fancybox3 */
/* ------------------------------------------------------------ */
.fancybox-content {
  aspect-ratio: 32/25;
  overflow: hidden !important;
  margin: 0;
}

/* Style */
/* ------------------------------------------------------------ */
html {
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-size: 0.833vw;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 3.59vw;
  }
}
html body {
  background-color: #fff;
}
html body::-webkit-scrollbar {
  display: none;
}
html body #loading {
  position: fixed;
  width: 100vw;
  height: 100svh;
  z-index: 99999;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s ease;
}
html body #loading img {
  width: min(11.979vw, 230px);
  opacity: 1;
  transform: scale(1);
  transition: transform 2s ease, opacity 2s ease;
  will-change: transform, opacity;
}
@media screen and (max-width: 768px) {
  html body #loading img {
    width: 29.487vw;
  }
}
html body #loading.zoomout img {
  transform: scale(1.5);
  opacity: 0;
}
html body #loading.hide {
  opacity: 0;
  pointer-events: none;
}
html body header {
  position: relative;
}
html body header .inner {
  background: rgba(255, 255, 255, 0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: min(6.25vw, 120px);
  padding: 0 min(7.813vw, 160px);
  margin: 0;
  position: fixed;
  top: 0;
  transition: all 0.5s ease;
  z-index: 10;
}
html body header .inner .header_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}
html body header .inner .header_area > h1 {
  width: min(13.021vw, 250px);
}
html body header .inner .header_area #nav_toggle {
  display: none;
}
html body header .inner #global_nav > ul {
  display: flex;
  align-items: center;
  gap: min(4.167vw, 80px);
}
html body header .inner #global_nav > ul > li span {
  display: block;
  color: #fff;
  font-size: min(1.5rem, 24px);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}
html body header .inner #global_nav > ul > li span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: none;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.3s ease;
}
html body header .inner #global_nav > ul > li:hover span::after {
  background: #fff;
  bottom: calc(-1 * min(0.26vw, 5px));
}
html body header .inner #global_nav > ul > li.dropdwn {
  position: relative;
}
html body header .inner #global_nav > ul > li.dropdwn .dropdwn_menu {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  padding-top: min(1.042vw, 20px);
}
html body header .inner #global_nav > ul > li.dropdwn .dropdwn_menu ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: min(1.042vw, 20px);
  border-radius: min(0.26vw, 5px);
  background: #fff;
  padding: min(1.042vw, 20px) min(1.563vw, 30px);
}
html body header .inner #global_nav > ul > li.dropdwn .dropdwn_menu ul li span {
  display: block;
  color: #000;
  font-size: min(1.5rem, 24px);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}
html body header .inner #global_nav > ul > li.dropdwn .dropdwn_menu ul li span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: none;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.3s ease;
}
html body header .inner #global_nav > ul > li.dropdwn .dropdwn_menu ul li:hover span::after {
  background: #000;
  bottom: calc(-1 * min(0.26vw, 5px));
}
html body header .inner #global_nav > ul > li.dropdwn.active .dropdwn_menu {
  opacity: 1;
  visibility: visible;
}
html body header .inner.fixed {
  background: rgb(255, 255, 255);
}
html body header .inner.fixed h1 {
  filter: brightness(1) invert(1);
}
html body header .inner.fixed #global_nav > ul > li span {
  color: #000;
}
html body header .inner.fixed #global_nav > ul > li:hover span {
  color: #000;
}
html body header .inner.fixed #global_nav > ul > li:hover span::after {
  background: #000;
}
@media screen and (max-width: 768px) {
  html body header .inner {
    background: none;
    height: 12.821vw;
    padding: 0;
  }
  html body header .inner .header_area {
    width: 100%;
    padding: 0 0 0 5.128vw;
  }
  html body header .inner .header_area h1 {
    width: 35.897vw;
  }
  html body header .inner .header_area #nav_toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 12.821vw;
    height: 12.821vw;
    cursor: pointer;
    position: relative;
  }
  html body header .inner .header_area #nav_toggle span {
    width: 6.41vw;
    height: 1px;
    display: block;
    background: #fff;
    position: absolute;
    transition: transform 0.3s ease-in-out, top 0.2s ease;
  }
  html body header .inner .header_area #nav_toggle span:nth-child(1) {
    top: calc(50% - 1.282vw);
  }
  html body header .inner .header_area #nav_toggle span:nth-child(2) {
    top: 50%;
  }
  html body header .inner .header_area #nav_toggle span:nth-child(3) {
    top: calc(50% + 1.282vw);
  }
  html body header .inner #global_nav {
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    height: 100dvh;
    opacity: 0;
    z-index: 50;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  html body header .inner #global_nav > ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10.256vw;
    opacity: 0;
    transform: translateY(10.256vw);
    transition: transform 0.5s ease, opacity 0.1s ease;
  }
  html body header .inner #global_nav > ul > li {
    display: block;
  }
  html body header .inner #global_nav > ul > li span {
    text-align: center;
    color: #fff !important;
    font-size: 1.142rem;
    position: initial;
  }
  html body header .inner #global_nav > ul > li span::after {
    content: none;
  }
  html body header .inner #global_nav > ul > li.dropdwn {
    position: initial;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
  }
  html body header .inner #global_nav > ul > li.dropdwn > span {
    cursor: initial;
  }
  html body header .inner #global_nav > ul > li.dropdwn > span:hover {
    filter: alpha(opacity=100);
    opacity: 1;
  }
  html body header .inner #global_nav > ul > li.dropdwn .dropdwn_menu {
    opacity: 1;
    visibility: visible;
    position: initial;
    transform: none;
    padding-top: 5.128vw;
  }
  html body header .inner #global_nav > ul > li.dropdwn .dropdwn_menu ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5.128vw;
    background: none;
    padding: 0;
  }
  html body header .inner #global_nav > ul > li.dropdwn .dropdwn_menu ul li span {
    color: #fff;
    font-size: 0.857rem;
  }
  html body header .inner #global_nav > ul > li.dropdwn .dropdwn_menu ul li span::before {
    content: none;
  }
  html body header .inner.fixed {
    background: none;
  }
  html body header .inner.fixed .header_area {
    background: rgb(255, 255, 255);
  }
  html body header .inner.fixed .header_area h1 {
    filter: brightness(1) invert(1);
  }
  html body header .inner.fixed .header_area #nav_toggle span {
    background: #000;
  }
  html body header .inner.open .header_area {
    background: none;
  }
  html body header .inner.open .header_area h1 {
    filter: brightness(0) invert(1);
  }
  html body header .inner.open .header_area #nav_toggle span {
    background: #fff;
  }
  html body header .inner.open .header_area #nav_toggle span:nth-child(1) {
    top: 50% !important;
    transform: rotate(45deg);
  }
  html body header .inner.open .header_area #nav_toggle span:nth-child(2) {
    width: 0;
  }
  html body header .inner.open .header_area #nav_toggle span:nth-child(3) {
    top: 50% !important;
    transform: rotate(-45deg);
  }
  html body header .inner.open #global_nav {
    visibility: visible;
    opacity: 1;
  }
  html body header .inner.open #global_nav > ul {
    opacity: 1;
    transform: translateY(0);
  }
  html body header .inner.open #global_nav > ul li.dropdwn {
    pointer-events: auto;
  }
}
html body#second header .inner .header_area > h1 {
  filter: brightness(1) invert(1);
}
html body#second header .inner #global_nav > ul > li span {
  color: #000;
}
html body#second header .inner #global_nav > ul > li:hover span::after {
  background: #000;
}
html body#second header .inner #global_nav > ul > li.dropdwn:hover .dropdwn_menu ul li span::after {
  background: none;
}
html body#second header .inner #global_nav > ul > li.dropdwn:hover .dropdwn_menu ul li:hover span::after {
  background: #000;
  bottom: calc(-1 * min(0.26vw, 5px));
}
@media screen and (max-width: 768px) {
  html body#second header .inner .header_area #nav_toggle span {
    background: #000;
  }
  html body#second header .inner.open .header_area {
    background: none;
  }
  html body#second header .inner.open .header_area h1 {
    filter: brightness(0) invert(1);
  }
  html body#second header .inner.open .header_area #nav_toggle span {
    background: #fff;
  }
}
html body main {
  overflow: hidden;
}
html body main#index section#mainvisual {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}
html body main#index section#mainvisual video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}
html body main#index section#mainvisual .inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
html body main#index section#mainvisual .inner h2 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#index section#mainvisual .inner h2 img {
    width: 200%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
html body main#index section:not(#mainvisual) .inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: 0 auto;
  padding: min(7.813vw, 160px) 0;
}
@media screen and (max-width: 768px) {
  html body main#index section:not(#mainvisual) .inner {
    width: 100% !important;
    padding: 15.385vw 5.128vw;
  }
}
html body main#index section#strongpoint {
  background: url("../img/bg_common1.svg") left calc(-1 * min(5.208vw, 100px))/100% auto no-repeat;
}
@media screen and (max-width: 768px) {
  html body main#index section#strongpoint {
    background: url("../img/bg_common1.svg") left top/cover no-repeat;
  }
}
html body main#index section#strongpoint .inner {
  width: 100%;
  padding: 0 0 min(7.813vw, 160px);
}
@media screen and (max-width: 768px) {
  html body main#index section#strongpoint .inner {
    padding: 15.385vw 5.128vw;
  }
}
html body main#index section#strongpoint .inner > figure {
  width: min(28.646vw, 550px);
  margin-top: calc(-1 * min(14.063vw, 270px));
  z-index: 1;
}
@media screen and (max-width: 768px) {
  html body main#index section#strongpoint .inner > figure {
    width: 70.256vw;
    margin-top: 0;
  }
}
html body main#index section#strongpoint .inner > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: min(4.167vw, 80px);
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#index section#strongpoint .inner > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: initial;
    margin-top: 10.256vw;
  }
}
html body main#index section#strongpoint .inner > div h2 {
  width: min(18.542vw, 356px);
  position: absolute;
  top: min(2.083vw, 40px);
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}
@media screen and (max-width: 768px) {
  html body main#index section#strongpoint .inner > div h2 {
    width: 45.641vw;
    position: initial;
    transform: none;
  }
}
html body main#index section#strongpoint .inner > div h2 img {
  width: 100%;
}
html body main#index section#strongpoint .inner > div figure:nth-of-type(1) {
  width: min(41.406vw, 795px);
}
@media screen and (max-width: 768px) {
  html body main#index section#strongpoint .inner > div figure:nth-of-type(1) {
    display: none;
  }
}
html body main#index section#strongpoint .inner > div figure:nth-of-type(2) {
  width: min(30.208vw, 580px);
  margin-right: 7.813vw;
}
@media screen and (max-width: 768px) {
  html body main#index section#strongpoint .inner > div figure:nth-of-type(2) {
    width: 74.359vw;
    margin: 10.256vw auto 0;
  }
}
html body main#index section#strongpoint .inner > div .comment {
  position: absolute;
  left: 7.813vw;
  bottom: 0;
  width: 50.521vw;
  font-size: min(1.375rem, 22px);
  line-height: 1.75;
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#index section#strongpoint .inner > div .comment {
    position: initial;
    width: 100%;
    font-size: 1rem;
    margin-top: 5.128vw;
  }
}
html body main#index section#business {
  padding-top: min(7.813vw, 160px);
}
@media screen and (max-width: 768px) {
  html body main#index section#business {
    padding-top: 20.513vw;
  }
}
html body main#index section#business > .hl + figure {
  background: #fff url("../img/business.jpg") no-repeat center top/100% auto;
  width: 100%;
  aspect-ratio: 640/131;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#index section#business > .hl + figure {
    background: #fff url("../img/business.jpg") no-repeat center top/200% auto;
    aspect-ratio: 384/157;
    margin-top: 5.128vw;
  }
}
html body main#index section#business .inner {
  width: min(83.333vw, 1600px);
}
@media screen and (max-width: 768px) {
  html body main#index section#business .inner {
    padding: 10.256vw 5.128vw 20.513vw;
  }
}
html body main#index section#business .inner > ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(3.125vw, 60px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#index section#business .inner > ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 15.385vw;
  }
}
@media screen and (max-width: 768px) {
  html body main#index section#business .inner > ul li {
    width: 100%;
  }
}
html body main#index section#business .inner > ul li h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff url("../img/h3_bg.png") no-repeat left top/min(6.25vw, 120px) auto;
  color: #000;
  font-family: "Zen Old Mincho";
  font-size: min(2.75rem, 44px);
  padding-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#index section#business .inner > ul li h3 {
    background: #fff url("../img/h3_bg.png") no-repeat left top/15.385vw auto;
    font-size: 2rem;
    padding-top: 0;
  }
}
html body main#index section#business .inner > ul li h3 span {
  display: block;
  color: #9fa0a0;
  font-family: "Alternate Gothic No3 D";
  font-size: min(2.25rem, 36px);
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#index section#business .inner > ul li h3 span {
    font-size: 1.285rem;
    margin-top: 3.846vw;
  }
}
html body main#index section#business .inner > ul li figure {
  width: 100%;
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#index section#business .inner > ul li figure {
    margin-top: 3.846vw;
  }
}
html body main#index section#business .inner > ul li figure figcaption {
  font-size: min(1.375rem, 22px);
  line-height: 1.75;
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#index section#business .inner > ul li figure figcaption {
    font-size: 1rem;
    margin-top: 3.846vw;
  }
}
html body main#index section#business .inner > ul li .btn {
  width: min(16.146vw, 310px);
  margin: min(2.083vw, 40px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#index section#business .inner > ul li .btn {
    width: 41.026vw;
    margin: 5.128vw auto 0;
  }
}
html body main#index section#business .inner > h3 {
  background: #fff url("../img/h3_works.png") no-repeat center bottom/100% auto;
  width: min(29.479vw, 566px);
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: min(2.75rem, 44px);
  letter-spacing: 0.5em;
  padding: 0 0 min(1.563vw, 30px) 0.5em;
  margin-top: min(7.813vw, 160px);
}
@media screen and (max-width: 768px) {
  html body main#index section#business .inner > h3 {
    width: 72.821vw;
    font-size: 1.571rem;
    padding: 0 0 3.846vw 0.5em;
    margin-top: 20.513vw;
  }
}
html body main#index section#news {
  background: url("../img/bg_common2.svg") right calc(-1 * min(5.208vw, 100px))/100% auto no-repeat;
  padding-top: min(7.813vw, 160px);
}
@media screen and (max-width: 768px) {
  html body main#index section#news {
    background: url("../img/bg_common2.svg") right -12.821vw/cover no-repeat;
    padding-top: 20.513vw;
  }
}
html body main#index section#news .inner {
  padding: 0;
}
@media screen and (max-width: 768px) {
  html body main#index section#news .inner {
    padding: 0 5.128vw;
  }
}
html body main#index section#company {
  background: #e5e4ea;
  padding-top: min(7.813vw, 160px);
}
@media screen and (max-width: 768px) {
  html body main#index section#company {
    padding-top: 20.513vw;
  }
}
html body main#index section#company .inner {
  background: url("../img/bg_index_company.jpg") no-repeat center top/cover;
  width: 100%;
  aspect-ratio: 64/23;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#index section#company .inner {
    margin-top: 5.128vw;
  }
}
html body main#index section#company .inner ul {
  width: min(83.333vw, 1600px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#index section#company .inner ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 7.692vw;
    margin-top: 5.128vw;
  }
}
html body main#index section#company .inner ul li {
  width: 100%;
}
html body main#index section#company .inner ul li a {
  position: relative;
  background: #fff;
  border-radius: min(7.292vw, 140px);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: min(7.292vw, 140px);
  color: #595757;
  font-size: min(1.75rem, 28px);
  font-weight: 500;
  box-shadow: 0 min(0.26vw, 5px) 0 0 #595757;
}
@media screen and (max-width: 768px) {
  html body main#index section#company .inner ul li a {
    border-radius: 10.256vw;
    height: 15.385vw;
    font-size: 0.875rem;
    box-shadow: 0 1.282vw 0 0 #595757;
  }
}
html body main#index section#company .inner ul li a::after {
  content: "";
  position: absolute;
  right: min(1.563vw, 30px);
  top: 50%;
  transform: translateY(-50%);
  width: min(4.167vw, 80px);
  height: min(4.167vw, 80px);
  background: url("../img/btn_arrow.svg") no-repeat center/contain;
  z-index: 1;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  html body main#index section#company .inner ul li a::after {
    right: 2.564vw;
    width: 6.41vw;
    height: 6.41vw;
  }
}
html body main#index section#company .inner ul li a:hover::after {
  transform: translateY(-50%) scale(1.2);
}
html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) {
  margin-top: min(13.542vw, 260px);
}
@media screen and (max-width: 768px) {
  html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) {
    margin-top: 25.641vw;
  }
}
html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section .inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: min(83.333vw, 1600px);
  padding: min(7.813vw, 160px) 0 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section .inner {
    width: 100% !important;
    padding: 15.385vw 5.128vw 0;
  }
}
html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > .date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > .date {
    justify-content: space-between;
  }
}
html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > .date time {
  font-size: min(1.75rem, 28px);
  white-space: nowrap;
  margin-right: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > .date time {
    font-size: 0.857rem;
  }
}
html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > .date .category {
  background: #595757;
  color: #fff;
  font-size: min(1.125rem, 18px);
  white-space: nowrap;
  padding: min(0.26vw, 5px) min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > .date .category {
    font-size: 0.714rem;
    padding: 1.282vw 2.564vw;
  }
}
html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > h1 {
  font-size: min(2rem, 32px);
  line-height: 1.5;
  padding-bottom: min(1.042vw, 20px);
  border-bottom: 1px #e5e4ea solid;
  margin: min(1.042vw, 20px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > h1 {
    font-size: 1rem;
    padding-bottom: 2.564vw;
    margin: 2.564vw 0 0;
  }
}
html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > figure {
  width: 100%;
  aspect-ratio: 500/309;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > figure {
    margin-top: 5.128vw;
  }
}
html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > .comment {
  font-size: min(1.75rem, 28px);
  line-height: 2;
  width: 100%;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > .comment {
    font-size: 1rem;
    margin-top: 5.128vw;
  }
}
html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > .comment h1,
html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > .comment h2,
html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > .comment h3,
html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > .comment h4,
html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > .comment h5,
html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > .comment h6,
html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > .comment p {
  all: revert;
}
html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > .comment ul,
html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > .comment ol {
  list-style: revert;
  padding: revert;
}
html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > .comment li {
  display: revert;
  font-size: revert;
  list-style: revert;
  margin: revert;
  padding: revert;
}
html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > .comment img {
  max-width: 100%;
}
html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > .comment a {
  text-decoration: underline;
}
html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > .comment strong {
  font-weight: bold;
}
html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > .comment em {
  font-style: italic;
}
html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > .comment blockquote {
  background: #e5e4ea;
  font-size: 0.75em;
  line-height: 2;
  padding: min(0.26vw, 5px) min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > .comment blockquote {
    padding: 1.282vw 2.564vw;
  }
}
html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > .comment blockquote p {
  margin-top: 0;
}
html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > .comment hr {
  height: 1px;
  padding: 0;
  display: block;
  border: 0;
  background: #000;
}
html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > .comment a {
  color: #924898;
  text-decoration: underline;
  vertical-align: baseline;
}
html body main:not(#index):not(#kaitai):not(#ashiba):not(#kenchiku1):not(#kenchiku2) section#posting .inner > .comment del {
  vertical-align: baseline;
}
html body main#company section h3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #924898;
  font-size: min(2.25rem, 36px);
  margin-bottom: min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#company section h3 {
    font-size: 1.285rem;
    margin-bottom: 7.692vw;
  }
}
html body main#company section h3 img {
  width: min(6.25vw, 120px);
  margin-right: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#company section h3 img {
    width: 10.256vw;
    margin-right: 2.564vw;
  }
}
html body main#company section#title .hl + figure {
  background: #fff url("../img/company.jpg") no-repeat center top/100% auto;
  width: 100%;
  aspect-ratio: 640/131;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#company section#title .hl + figure {
    background: #fff url("../img/company.jpg") no-repeat right top/200% auto;
    aspect-ratio: 384/157;
    margin-top: 5.128vw;
  }
}
html body main#company section#philosophy {
  padding: min(4.167vw, 80px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#company section#philosophy {
    padding: 7.692vw 0 0;
  }
}
html body main#company section#philosophy .wrapper {
  background: url("../img/bg_company.png?date=20251218") no-repeat right top/auto min(35.052vw, 673px);
}
@media screen and (max-width: 768px) {
  html body main#company section#philosophy .wrapper {
    background: url("../img/bg_company.png?date=20251218") no-repeat right top/100% auto;
  }
}
html body main#company section#philosophy .wrapper .inner {
  justify-content: flex-start !important;
  aspect-ratio: 1600/673;
  padding: 0 !important;
}
@media screen and (max-width: 768px) {
  html body main#company section#philosophy .wrapper .inner {
    aspect-ratio: 192/89;
    padding: 0 !important;
  }
}
html body main#company section#philosophy .wrapper .inner h3 {
  padding: min(1.042vw, 20px) min(1.042vw, 20px) min(1.042vw, 20px) 0;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#company section#philosophy .wrapper .inner h3 {
    font-size: 1.285rem;
    background: #fff;
    padding: 1.282vw 2.564vw;
    margin-top: 5.128vw;
    margin-bottom: 5.128vw;
  }
}
html body main#company section#philosophy .wrapper .inner figure {
  background: #fff;
  padding: min(1.042vw, 20px) min(2.083vw, 40px) min(1.042vw, 20px) 0;
}
@media screen and (max-width: 768px) {
  html body main#company section#philosophy .wrapper .inner figure {
    padding: 1.282vw 2.564vw;
  }
}
html body main#company section#philosophy .wrapper .inner figure img {
  width: min(31.042vw, 596px);
}
@media screen and (max-width: 768px) {
  html body main#company section#philosophy .wrapper .inner figure img {
    width: 25.641vw;
  }
}
html body main#company section#philosophy .wrapper .inner p {
  background: #fff;
  padding: min(1.042vw, 20px) min(1.042vw, 20px) min(1.042vw, 20px) 0;
  font-size: min(1.75rem, 28px);
  font-weight: 500;
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#company section#philosophy .wrapper .inner p {
    padding: 1.282vw 2.564vw;
    font-size: 0.857rem;
    line-height: 1.75;
    margin-top: 2.564vw;
  }
}
html body main#company section#greeting .inner strong {
  font-family: "Zen Old Mincho";
  font-size: min(3.5rem, 56px);
}
@media screen and (max-width: 768px) {
  html body main#company section#greeting .inner strong {
    font-size: 2rem;
  }
}
html body main#company section#greeting .inner .comment {
  margin-top: min(3.125vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main#company section#greeting .inner .comment {
    margin-top: 7.692vw;
  }
}
html body main#company section#greeting .inner .signature {
  font-size: min(2rem, 32px);
  font-weight: 500;
  margin-top: min(3.125vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main#company section#greeting .inner .signature {
    font-size: 1.142rem;
    font-weight: 500;
    margin-top: 7.692vw;
  }
}
html body main#company section#greeting .inner .signature img {
  display: block;
  width: min(17.292vw, 332px);
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#company section#greeting .inner .signature img {
    width: 41.026vw;
    margin-top: 3.846vw;
  }
}
html body main#company section#history {
  background: url("../img/bg_common2.svg") right top/cover no-repeat;
}
html body main#company section#history .inner {
  padding: min(7.813vw, 160px) 0 !important;
}
@media screen and (max-width: 768px) {
  html body main#company section#history .inner {
    padding: 15.385vw 5.128vw !important;
  }
}
html body main#company section#history .inner figure {
  width: 100%;
}
html body main#company section#overview .inner dl {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  padding: min(1.042vw, 20px) 0;
  border-bottom: 1px #808080 solid;
}
@media screen and (max-width: 768px) {
  html body main#company section#overview .inner dl {
    display: block;
    padding: 2.564vw 0;
  }
}
html body main#company section#overview .inner dl dt {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-shrink: 0;
  width: min(14.063vw, 270px);
  margin: 0 min(7.813vw, 160px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#company section#overview .inner dl dt {
    display: block;
    width: 100%;
    margin: 0 0 1.282vw 0;
  }
}
html body main#company section#overview .inner dl dt span {
  font-size: min(1.75rem, 28px);
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#company section#overview .inner dl dt span {
    font-size: 1.142rem;
  }
}
html body main#company section#overview .inner dl dd {
  width: 100%;
  font-size: min(1.75rem, 28px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#company section#overview .inner dl dd {
    font-size: 1rem;
  }
}
html body main#company section#overview .inner dl dd ul li {
  font-size: min(1.75rem, 28px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#company section#overview .inner dl dd ul li {
    font-size: 1rem;
  }
}
html body main#company section#overview .inner dl dd ul li ul {
  margin-left: 1em;
}
html body main#business section#business1 .hl + figure {
  background: #fff url("../img/business1.jpg") no-repeat center top/100% auto;
  width: 100%;
  aspect-ratio: 640/131;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#business section#business1 .hl + figure {
    background: #fff url("../img/business1.jpg") no-repeat left top/200% auto;
    aspect-ratio: 384/157;
    margin-top: 5.128vw;
  }
}
html body main#business section#business2 .hl + figure {
  background: #fff url("../img/business2.jpg") no-repeat center top/100% auto;
  width: 100%;
  aspect-ratio: 640/131;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#business section#business2 .hl + figure {
    background: #fff url("../img/business2.jpg") no-repeat left top/200% auto;
    aspect-ratio: 384/157;
    margin-top: 5.128vw;
  }
}
html body main#business section#business3 .hl + figure {
  background: #fff url("../img/business3.jpg") no-repeat center top/100% auto;
  width: 100%;
  aspect-ratio: 640/131;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#business section#business3 .hl + figure {
    background: #fff url("../img/business3.jpg") no-repeat center top/200% auto;
    aspect-ratio: 384/157;
    margin-top: 5.128vw;
  }
}
html body main#business section#contents {
  background: url("../img/bg_common1.svg") left min(20.833vw, 400px)/100% auto no-repeat;
  padding: min(4.167vw, 80px) 0 min(4.167vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main#business section#contents {
    background: url("../img/bg_common1.svg") left calc(46.154vw)/cover no-repeat;
    padding: 7.692vw 0 5.128vw;
  }
}
html body main#business section#contents .wrapper.bg1 {
  background: url("../img/bg_business1.png?date=202512181630") no-repeat right top/auto min(35.052vw, 673px);
}
@media screen and (max-width: 768px) {
  html body main#business section#contents .wrapper.bg1 {
    background: url("../img/bg_business1.png?date=202512181630") no-repeat right top/100% auto;
  }
}
html body main#business section#contents .wrapper.bg2 {
  background: url("../img/bg_business2.png?date=202512251320") no-repeat right top/auto min(35.052vw, 673px);
}
@media screen and (max-width: 768px) {
  html body main#business section#contents .wrapper.bg2 {
    background: url("../img/bg_business2.png?date=202512251320") no-repeat right top/100% auto;
  }
}
html body main#business section#contents .wrapper.bg3 {
  background: url("../img/bg_business3.png") no-repeat right top/auto min(35.052vw, 673px);
}
@media screen and (max-width: 768px) {
  html body main#business section#contents .wrapper.bg3 {
    background: url("../img/bg_business3.png") no-repeat right top/100% auto;
  }
}
html body main#business section#contents .wrapper.bg4 {
  background: url("../img/bg_business4.png") no-repeat right top/auto min(35.052vw, 673px);
}
@media screen and (max-width: 768px) {
  html body main#business section#contents .wrapper.bg4 {
    background: url("../img/bg_business4.png") no-repeat right top/100% auto;
  }
}
html body main#business section#contents .wrapper .inner {
  justify-content: flex-start !important;
  aspect-ratio: 1600/673;
  padding: 0 !important;
}
@media screen and (max-width: 768px) {
  html body main#business section#contents .wrapper .inner {
    aspect-ratio: 192/89;
    padding: 0 !important;
  }
}
html body main#business section#contents .wrapper .inner h3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: #fff;
  color: #000;
  font-family: "Zen Old Mincho";
  font-size: min(4rem, 64px);
  line-height: 1.25;
  white-space: nowrap;
  padding: min(1.042vw, 20px) min(1.042vw, 20px) min(1.042vw, 20px) 0;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#business section#contents .wrapper .inner h3 {
    font-size: 1.285rem;
    padding: 1.282vw 2.564vw;
    margin-top: 5.128vw;
  }
}
html body main#business section#contents .wrapper .inner h3 span {
  display: block;
  color: #9fa0a0;
  font-family: "Alternate Gothic No3 D";
  font-size: min(2.75rem, 44px);
  white-space: normal;
  margin-left: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#business section#contents .wrapper .inner h3 span {
    font-size: 1rem;
    margin-left: 2.564vw;
  }
}
html body main#business section#contents .wrapper .inner h3 img {
  width: min(6.25vw, 120px);
  margin-right: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#business section#contents .wrapper .inner h3 img {
    width: 10.256vw;
    margin-right: 2.564vw;
  }
}
html body main#business section#contents > p {
  width: min(83.333vw, 1600px);
  font-size: min(1.75rem, 28px);
  font-weight: 500;
  line-height: 1.75;
  margin: min(1.563vw, 30px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#business section#contents > p {
    width: 100%;
    padding: 0 5.128vw;
    font-size: 0.857rem;
    margin: 3.846vw auto 0;
  }
}
html body main#business section#works_list .inner {
  align-items: center !important;
  padding: min(7.813vw, 160px) 0 !important;
}
@media screen and (max-width: 768px) {
  html body main#business section#works_list .inner {
    padding: 15.385vw 5.128vw !important;
  }
}
html body main#business section#works_list .inner h3 {
  background: #fff url("../img/h3_works.png") no-repeat center bottom/100% auto;
  width: min(29.479vw, 566px);
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: min(2.75rem, 44px);
  letter-spacing: 0.5em;
  padding: 0 0 min(1.563vw, 30px) 0.5em;
}
@media screen and (max-width: 768px) {
  html body main#business section#works_list .inner h3 {
    width: 72.821vw;
    font-size: 1.571rem;
    padding: 0 0 3.846vw 0.5em;
  }
}
html body main#works section#title .hl + figure {
  background: #fff url("../img/business.jpg") no-repeat center top/100% auto;
  width: 100%;
  aspect-ratio: 640/131;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#works section#title .hl + figure {
    background: #fff url("../img/business.jpg") no-repeat center top/200% auto;
    aspect-ratio: 384/157;
    margin-top: 5.128vw;
  }
}
html body main#works section#works_list .inner {
  align-items: center !important;
  padding: min(7.813vw, 160px) 0 0 !important;
}
@media screen and (max-width: 768px) {
  html body main#works section#works_list .inner {
    padding: 15.385vw 5.128vw 0 !important;
  }
}
html body main#works section#works_list .inner h3 {
  background: #fff url("../img/h3_works.png") no-repeat center bottom/100% auto;
  width: min(29.479vw, 566px);
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: min(2.75rem, 44px);
  letter-spacing: 0.5em;
  padding: 0 0 min(1.563vw, 30px) 0.5em;
}
@media screen and (max-width: 768px) {
  html body main#works section#works_list .inner h3 {
    width: 72.821vw;
    font-size: 1.571rem;
    padding: 0 0 3.846vw 0.5em;
  }
}
html body main#kaitai {
  padding: min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#kaitai {
    padding: 5.128vw;
  }
}
html body main#kaitai section .title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: min(2.604vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#kaitai section .title {
    gap: 5.128vw;
  }
}
html body main#kaitai section .title h1 {
  font-size: min(3.5rem, 56px);
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  html body main#kaitai section .title h1 {
    font-size: 1.714rem;
  }
}
html body main#kaitai section .title button {
  flex-shrink: 0;
  display: block;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  width: min(3.125vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main#kaitai section .title button {
    width: 7.692vw;
  }
}
html body main#kaitai section .contents {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: min(3.125vw, 60px);
  width: 100%;
  margin-top: min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#kaitai section .contents {
    flex-direction: column;
    gap: 7.692vw;
    margin-top: 5.128vw;
  }
}
html body main#kaitai section .contents figure {
  width: 100%;
  aspect-ratio: 4/3;
}
html body main#kaitai section .contents figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#kaitai section .contents div {
  flex-shrink: 0;
  width: 17.925%;
}
@media screen and (max-width: 768px) {
  html body main#kaitai section .contents div {
    width: 100%;
  }
}
html body main#kaitai section .contents div strong {
  display: inline-block;
  background: #674498;
  padding: min(0.521vw, 10px) min(1.042vw, 20px);
  color: #fff;
  font-size: min(1.75rem, 28px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#kaitai section .contents div strong {
    padding: 1.282vw 2.564vw;
    color: #fff;
    font-size: 1.285rem;
  }
}
html body main#kaitai section .contents div p {
  color: #674498;
  font-size: min(2.75rem, 44px);
  font-weight: 700;
  margin: min(1.042vw, 20px) 0 min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#kaitai section .contents div p {
    font-size: 1.714rem;
    margin: 2.564vw 0 2.564vw;
  }
}
html body main#kaitai section .contents div p span {
  display: block;
  color: #000;
  font-size: min(1.25rem, 20px);
  font-weight: 700;
  margin: min(1.042vw, 20px) 0 0 0;
}
@media screen and (max-width: 768px) {
  html body main#kaitai section .contents div p span {
    font-size: 0.857rem;
    margin: 2.564vw 0 0 0;
  }
}
html body main#kaitai section .contents div dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: min(1.042vw, 20px) 0;
  border-bottom: 1px #808080 solid;
}
@media screen and (max-width: 768px) {
  html body main#kaitai section .contents div dl {
    padding: 2.564vw 0;
  }
}
html body main#kaitai section .contents div dl dt {
  font-size: min(1.375rem, 22px);
  font-weight: 700;
  width: 5.3em;
}
@media screen and (max-width: 768px) {
  html body main#kaitai section .contents div dl dt {
    font-size: 1rem;
  }
}
html body main#kaitai section .contents div dl dd {
  font-size: min(1.375rem, 22px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#kaitai section .contents div dl dd {
    font-size: 1rem;
  }
}
html body main#ashiba, html body main#kenchiku1 {
  padding: min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#ashiba, html body main#kenchiku1 {
    padding: 5.128vw;
  }
}
html body main#ashiba section .title, html body main#kenchiku1 section .title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: min(2.604vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#ashiba section .title, html body main#kenchiku1 section .title {
    gap: 5.128vw;
  }
}
html body main#ashiba section .title h1, html body main#kenchiku1 section .title h1 {
  font-size: min(3.5rem, 56px);
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  html body main#ashiba section .title h1, html body main#kenchiku1 section .title h1 {
    font-size: 1.714rem;
  }
}
html body main#ashiba section .title button, html body main#kenchiku1 section .title button {
  flex-shrink: 0;
  display: block;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  width: min(3.125vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main#ashiba section .title button, html body main#kenchiku1 section .title button {
    width: 7.692vw;
  }
}
html body main#ashiba section .contents, html body main#kenchiku1 section .contents {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: min(3.125vw, 60px);
  width: 100%;
  margin-top: min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#ashiba section .contents, html body main#kenchiku1 section .contents {
    flex-direction: column;
    gap: 7.692vw;
    margin-top: 5.128vw;
  }
}
html body main#ashiba section .contents .main-slider, html body main#kenchiku1 section .contents .main-slider {
  width: 100%;
}
html body main#ashiba section .contents .main-slider .swiper-wrapper .swiper-slide, html body main#kenchiku1 section .contents .main-slider .swiper-wrapper .swiper-slide {
  width: 100%;
  aspect-ratio: 4/3;
}
html body main#ashiba section .contents .main-slider .swiper-wrapper .swiper-slide img, html body main#kenchiku1 section .contents .main-slider .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#ashiba section .contents .thumb-slider, html body main#kenchiku1 section .contents .thumb-slider {
  flex-shrink: 0;
  width: 17.925%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  html body main#ashiba section .contents .thumb-slider, html body main#kenchiku1 section .contents .thumb-slider {
    width: 100%;
  }
}
html body main#ashiba section .contents .thumb-slider .swiper-wrapper, html body main#kenchiku1 section .contents .thumb-slider .swiper-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: min(1.563vw, 30px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#ashiba section .contents .thumb-slider .swiper-wrapper, html body main#kenchiku1 section .contents .thumb-slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5.128vw;
  }
}
html body main#ashiba section .contents .thumb-slider .swiper-wrapper .swiper-slide, html body main#kenchiku1 section .contents .thumb-slider .swiper-wrapper .swiper-slide {
  width: 100%;
  aspect-ratio: 4/3;
  cursor: pointer;
}
html body main#ashiba section .contents .thumb-slider .swiper-wrapper .swiper-slide img, html body main#kenchiku1 section .contents .thumb-slider .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#ashiba section .contents .thumb-slider .swiper-slide-thumb-active, html body main#kenchiku1 section .contents .thumb-slider .swiper-slide-thumb-active {
  opacity: 0.5;
}
html body main#kenchiku2 {
  padding: min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#kenchiku2 {
    padding: 5.128vw;
  }
}
html body main#kenchiku2 section .title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: min(2.604vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#kenchiku2 section .title {
    gap: 5.128vw;
  }
}
html body main#kenchiku2 section .title h1 {
  font-size: min(3.5rem, 56px);
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  html body main#kenchiku2 section .title h1 {
    font-size: 1.714rem;
  }
}
html body main#kenchiku2 section .title button {
  flex-shrink: 0;
  display: block;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  width: min(3.125vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main#kenchiku2 section .title button {
    width: 7.692vw;
  }
}
html body main#kenchiku2 section .contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(1.563vw, 30px);
  width: 100%;
  margin-top: min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#kenchiku2 section .contents {
    grid-template-columns: repeat(1, 1fr);
    gap: 5.128vw;
    margin-top: 5.128vw;
  }
}
html body main#kenchiku2 section .contents figure {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
}
html body main#kenchiku2 section .contents figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#kenchiku2 section .contents figure figcaption {
  position: absolute;
  top: min(1.042vw, 20px);
  left: min(1.042vw, 20px);
  display: block;
  background: #674498;
  padding: min(0.521vw, 10px) min(1.042vw, 20px);
  color: #fff;
  font-size: min(1.5rem, 24px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#kenchiku2 section .contents figure figcaption {
    top: 2.564vw;
    left: 2.564vw;
    padding: 1.282vw 2.564vw;
    font-size: 1rem;
  }
}
html body main#news section#title .hl + figure {
  background: #fff url("../img/company.jpg") no-repeat center top/100% auto;
  width: 100%;
  aspect-ratio: 640/131;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#news section#title .hl + figure {
    background: #fff url("../img/company.jpg") no-repeat right top/200% auto;
    aspect-ratio: 384/157;
    margin-top: 5.128vw;
  }
}
html body main#news section#news_list {
  background: url("../img/bg_common2.svg") right calc(-1 * min(5.208vw, 100px))/100% auto no-repeat;
}
@media screen and (max-width: 768px) {
  html body main#news section#news_list {
    background: url("../img/bg_common2.svg") right top/cover no-repeat;
  }
}
html body main#news section#news_list .inner {
  padding: min(7.813vw, 160px) 0 !important;
}
@media screen and (max-width: 768px) {
  html body main#news section#news_list .inner {
    width: 100% !important;
    padding: 15.385vw 5.128vw !important;
  }
}
html body main#news_detail section#posting .inner {
  width: min(62.5vw, 1200px);
}
html body main#news_detail .btn2 {
  margin: min(4.167vw, 80px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#news_detail .btn2 {
    margin: 10.256vw auto 0;
  }
}
html body main#recruit section h3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #924898;
  font-size: min(2.25rem, 36px);
  margin-bottom: min(5.208vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section h3 {
    font-size: 1.285rem;
    margin-bottom: 7.692vw;
  }
}
html body main#recruit section h3 img {
  width: min(6.25vw, 120px);
  margin-right: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section h3 img {
    width: 10.256vw;
    margin-right: 2.564vw;
  }
}
html body main#recruit section#title .hl + figure {
  background: #fff url("../img/recruit.jpg") no-repeat center top/100% auto;
  width: 100%;
  aspect-ratio: 640/131;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#title .hl + figure {
    background: #fff url("../img/recruit.jpg") no-repeat left top/200% auto;
    aspect-ratio: 384/157;
    margin-top: 5.128vw;
  }
}
html body main#recruit section#philosophy {
  padding: min(4.167vw, 80px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#philosophy {
    padding: 7.692vw 0 0;
  }
}
html body main#recruit section#philosophy .wrapper {
  background: url("../img/bg_recruit.png?date=20251218") no-repeat right top/auto min(35.052vw, 673px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#philosophy .wrapper {
    background: url("../img/bg_recruit.png?date=20251218") no-repeat right top/100% auto;
  }
}
html body main#recruit section#philosophy .wrapper .inner {
  justify-content: flex-start !important;
  aspect-ratio: 1600/673;
  padding: 0 !important;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#philosophy .wrapper .inner {
    aspect-ratio: 192/89;
    padding: 0 !important;
  }
}
html body main#recruit section#philosophy .wrapper .inner strong {
  background: #fff;
  font-family: "Zen Old Mincho";
  font-size: min(5rem, 80px);
  padding: min(1.042vw, 20px) min(2.083vw, 40px) min(1.042vw, 20px) 0;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#philosophy .wrapper .inner strong {
    font-size: 1.285rem;
    padding: 1.282vw 2.564vw;
    margin-top: 5.128vw;
  }
}
html body main#recruit section#philosophy .wrapper .inner p {
  background: #fff;
  padding: min(1.042vw, 20px) min(1.042vw, 20px) min(1.042vw, 20px) 0;
  font-size: min(1.75rem, 28px);
  font-weight: 500;
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#philosophy .wrapper .inner p {
    padding: 1.282vw 2.564vw;
    font-size: 0.857rem;
    line-height: 1.75;
    margin-top: 7.692vw;
  }
}
html body main#recruit section#philosophy > p {
  width: min(83.333vw, 1600px);
  font-size: min(1.75rem, 28px);
  font-weight: 500;
  line-height: 1.75;
  margin: min(1.563vw, 30px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#philosophy > p {
    width: 100%;
    padding: 0 5.128vw;
    font-size: 0.857rem;
    margin: 3.846vw auto 0;
  }
}
html body main#recruit section#staff .inner ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(3.125vw, 60px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#staff .inner ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 7.692vw;
  }
}
html body main#recruit section#staff .inner ul li {
  width: 100%;
}
html body main#recruit section#staff .inner ul li figure {
  position: relative;
}
html body main#recruit section#staff .inner ul li figure figcaption {
  position: absolute;
  left: 0;
  bottom: min(3.125vw, 60px);
  background: #fff;
  padding: min(1.042vw, 20px);
  font-size: min(1.75rem, 28px);
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#staff .inner ul li figure figcaption {
    bottom: 15.385vw;
    padding: 2.564vw;
    font-size: 1rem;
  }
}
html body main#recruit section#requirements {
  background: url("../img/bg_common2.svg") right top/cover no-repeat;
}
html body main#recruit section#requirements .inner {
  padding: min(7.813vw, 160px) 0 !important;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#requirements .inner {
    padding: 15.385vw 5.128vw !important;
  }
}
html body main#recruit section#requirements .inner dl {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  padding: min(1.042vw, 20px) 0;
  border-bottom: 1px #808080 solid;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#requirements .inner dl {
    display: block;
    padding: 2.564vw 0;
  }
}
html body main#recruit section#requirements .inner dl dt {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-shrink: 0;
  width: min(14.063vw, 270px);
  margin-right: min(7.813vw, 160px);
}
@media screen and (max-width: 768px) {
  html body main#recruit section#requirements .inner dl dt {
    display: block;
    width: 100%;
    margin-right: 0;
  }
}
html body main#recruit section#requirements .inner dl dt span {
  font-size: min(1.75rem, 28px);
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#requirements .inner dl dt span {
    font-size: 1rem;
  }
}
html body main#recruit section#requirements .inner dl dd {
  width: 100%;
  font-size: min(1.75rem, 28px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#recruit section#requirements .inner dl dd {
    font-size: 1rem;
  }
}
html body main#contact section#title .hl + figure {
  background: #fff url("../img/contact.jpg") no-repeat center top/100% auto;
  width: 100%;
  aspect-ratio: 640/131;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#title .hl + figure {
    background: #fff url("../img/contact.jpg") no-repeat center top/200% auto;
    aspect-ratio: 384/157;
    margin-top: 5.128vw;
  }
}
html body main#contact section#inquiry .inner {
  padding: min(4.167vw, 80px) 0 0 !important;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner {
    padding: 7.692vw 5.128vw 0 !important;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form,
html body main#contact section#inquiry .inner form {
  width: 100%;
}
html body main#contact section#inquiry .inner .mw_wp_form > .note,
html body main#contact section#inquiry .inner form > .note {
  margin-bottom: min(4.167vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form > .note,
  html body main#contact section#inquiry .inner form > .note {
    margin-bottom: 10.256vw;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form > .note p,
html body main#contact section#inquiry .inner form > .note p {
  text-align: center;
  font-size: min(1.75rem, 28px);
  line-height: 1.75;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form > .note p,
  html body main#contact section#inquiry .inner form > .note p {
    text-align: left;
    font-size: 1rem;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form .btn_area,
html body main#contact section#inquiry .inner form .btn_area {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  margin-top: min(4.167vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form .btn_area,
  html body main#contact section#inquiry .inner form .btn_area {
    margin-top: 15.385vw;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form .btn_area p,
html body main#contact section#inquiry .inner form .btn_area p {
  text-align: center;
  font-size: min(1.75rem, 28px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form .btn_area p,
  html body main#contact section#inquiry .inner form .btn_area p {
    text-align: left;
    font-size: 1rem;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form .btn_area p a,
html body main#contact section#inquiry .inner form .btn_area p a {
  color: #924898;
  text-decoration: underline;
}
html body main#contact section#inquiry .inner .mw_wp_form .btn_area .btn_submit,
html body main#contact section#inquiry .inner form .btn_area .btn_submit {
  background: #924898;
  width: min(20.833vw, 800px);
  height: min(4.167vw, 80px);
  color: #fff;
  text-align: center;
  font-size: min(1.75rem, 28px);
  padding: 0;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form .btn_area .btn_submit,
  html body main#contact section#inquiry .inner form .btn_area .btn_submit {
    width: 41.026vw;
    height: 10.256vw;
    font-size: 1rem;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form .btn_area .btn_confirm,
html body main#contact section#inquiry .inner form .btn_area .btn_confirm {
  background: #924898;
  width: min(20.833vw, 800px);
  height: min(4.167vw, 80px);
  color: #fff;
  text-align: center;
  font-size: min(1.75rem, 28px);
  padding: 0;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form .btn_area .btn_confirm,
  html body main#contact section#inquiry .inner form .btn_area .btn_confirm {
    width: 41.026vw;
    height: 10.256vw;
    font-size: 1rem;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form .btn_area .btn_fixes,
html body main#contact section#inquiry .inner form .btn_area .btn_fixes {
  background: #924898;
  width: min(20.833vw, 800px);
  height: min(4.167vw, 80px);
  color: #fff;
  text-align: center;
  font-size: min(1.75rem, 28px);
  padding: 0;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form .btn_area .btn_fixes,
  html body main#contact section#inquiry .inner form .btn_area .btn_fixes {
    width: 41.026vw;
    height: 10.256vw;
    font-size: 1rem;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form .must,
html body main#contact section#inquiry .inner form .must {
  background: #924898;
  color: #fff;
  font-size: min(1.25rem, 20px);
  padding: min(0.26vw, 5px) min(0.781vw, 15px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form .must,
  html body main#contact section#inquiry .inner form .must {
    font-size: 0.714rem;
    padding: 1.282vw 2.564vw;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form .w30,
html body main#contact section#inquiry .inner form .w30 {
  width: 30% !important;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form .w30,
  html body main#contact section#inquiry .inner form .w30 {
    width: 40% !important;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form .w30 + input,
html body main#contact section#inquiry .inner form .w30 + input {
  width: 100%;
  margin-top: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form .w30 + input,
  html body main#contact section#inquiry .inner form .w30 + input {
    margin-top: 1.282vw;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form span.error,
html body main#contact section#inquiry .inner form span.error {
  display: block;
  text-align: left;
  margin-top: min(0.26vw, 5px);
  flex-basis: 100%;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form span.error,
  html body main#contact section#inquiry .inner form span.error {
    margin-top: 1.282vw;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form dl,
html body main#contact section#inquiry .inner form dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: min(3.125vw, 60px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form dl,
  html body main#contact section#inquiry .inner form dl {
    flex-direction: column;
    padding: 5.128vw 0 0;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form dl:last-of-type,
html body main#contact section#inquiry .inner form dl:last-of-type {
  border: none;
}
html body main#contact section#inquiry .inner .mw_wp_form dl dt,
html body main#contact section#inquiry .inner form dl dt {
  flex-shrink: 0;
  width: 30%;
  margin: 0 min(1.563vw, 30px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form dl dt,
  html body main#contact section#inquiry .inner form dl dt {
    width: 100%;
    margin: 0 0 2.564vw 0;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form dl dt .wrap,
html body main#contact section#inquiry .inner form dl dt .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: min(1.75rem, 28px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form dl dt .wrap,
  html body main#contact section#inquiry .inner form dl dt .wrap {
    font-size: 1rem;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form dl dd,
html body main#contact section#inquiry .inner form dl dd {
  display: block;
  width: 100%;
}
html body main#contact section#inquiry .inner .mw_wp_form dl dd .wrap,
html body main#contact section#inquiry .inner form dl dd .wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  font-size: min(1.75rem, 28px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form dl dd .wrap,
  html body main#contact section#inquiry .inner form dl dd .wrap {
    font-size: 0.714rem;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form dl dd .wrap + .wrap,
html body main#contact section#inquiry .inner form dl dd .wrap + .wrap {
  margin-top: min(0.521vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form dl dd .wrap + .wrap,
  html body main#contact section#inquiry .inner form dl dd .wrap + .wrap {
    margin-top: 1.282vw;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form :is(input:not([type=file]):not([type=radio]):not([type=checkbox]):not([type=submit]), select, textarea),
html body main#contact section#inquiry .inner form :is(input:not([type=file]):not([type=radio]):not([type=checkbox]):not([type=submit]), select, textarea) {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px #9fa0a0 solid;
  color: #000;
  font-size: min(1.75rem, 28px);
  letter-spacing: 1px;
  width: 100%;
  height: min(4.167vw, 80px);
  padding: min(0.26vw, 5px) min(0.521vw, 10px);
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form :is(input:not([type=file]):not([type=radio]):not([type=checkbox]):not([type=submit]), select, textarea),
  html body main#contact section#inquiry .inner form :is(input:not([type=file]):not([type=radio]):not([type=checkbox]):not([type=submit]), select, textarea) {
    font-size: 1rem;
    height: 12.821vw;
    padding: 1.282vw 2.564vw;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form :is(input:not([type=file]):not([type=radio]):not([type=checkbox]):not([type=submit]), select, textarea):focus,
html body main#contact section#inquiry .inner form :is(input:not([type=file]):not([type=radio]):not([type=checkbox]):not([type=submit]), select, textarea):focus {
  outline: none;
}
html body main#contact section#inquiry .inner .mw_wp_form textarea,
html body main#contact section#inquiry .inner form textarea {
  height: min(20.833vw, 400px) !important;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form textarea,
  html body main#contact section#inquiry .inner form textarea {
    height: 51.282vw !important;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form input[type=file],
html body main#contact section#inquiry .inner form input[type=file] {
  font-size: min(1.75rem, 28px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form input[type=file],
  html body main#contact section#inquiry .inner form input[type=file] {
    font-size: 1rem;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form .horizontal-item,
html body main#contact section#inquiry .inner form .horizontal-item {
  padding: min(0.26vw, 5px) 0;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form .horizontal-item,
  html body main#contact section#inquiry .inner form .horizontal-item {
    padding: 1.282vw 0;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form .horizontal-item + .horizontal-item,
html body main#contact section#inquiry .inner form .horizontal-item + .horizontal-item {
  margin-left: 0;
}
html body main#contact section#inquiry .inner .mw_wp_form .select,
html body main#contact section#inquiry .inner form .select {
  width: 100%;
  position: relative;
}
html body main#contact section#inquiry .inner .mw_wp_form .select::after,
html body main#contact section#inquiry .inner form .select::after {
  content: "";
  display: block;
  width: min(0.521vw, 10px);
  height: min(0.521vw, 10px);
  border-width: 0 2px 2px 0;
  border-color: #9fa0a0;
  border-style: solid;
  position: absolute;
  right: min(1.042vw, 20px);
  top: calc(50% - min(0.521vw, 10px));
  transform-origin: center;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form .select::after,
  html body main#contact section#inquiry .inner form .select::after {
    width: 1.282vw;
    height: 1.282vw;
    right: 2.564vw;
    top: calc(50% - 1.282vw);
  }
}
html body main#contact section#inquiry .inner .mw_wp_form .radio,
html body main#contact section#inquiry .inner form .radio {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
html body main#contact section#inquiry .inner .mw_wp_form .radio input[type=radio],
html body main#contact section#inquiry .inner form .radio input[type=radio] {
  position: absolute;
  visibility: hidden;
  width: auto;
}
html body main#contact section#inquiry .inner .mw_wp_form .radio .mwform-radio-field label,
html body main#contact section#inquiry .inner form .radio .mwform-radio-field label {
  display: flex;
}
html body main#contact section#inquiry .inner .mw_wp_form .radio .mwform-radio-field label .mwform-radio-field-text,
html body main#contact section#inquiry .inner form .radio .mwform-radio-field label .mwform-radio-field-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(1.75rem, 28px);
  margin: 0 min(1.042vw, 20px) 0 0;
  line-height: 1;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form .radio .mwform-radio-field label .mwform-radio-field-text,
  html body main#contact section#inquiry .inner form .radio .mwform-radio-field label .mwform-radio-field-text {
    font-size: 1rem;
    margin: 0 5.128vw 0 0;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form .radio .mwform-radio-field label .mwform-radio-field-text::before,
html body main#contact section#inquiry .inner form .radio .mwform-radio-field label .mwform-radio-field-text::before {
  content: "";
  display: inline-block;
  position: relative;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  margin: 0 min(0.521vw, 10px) 0 0;
  border: 1px solid #9fa0a0;
  background: #fff;
  box-sizing: border-box;
  border-radius: 50%;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form .radio .mwform-radio-field label .mwform-radio-field-text::before,
  html body main#contact section#inquiry .inner form .radio .mwform-radio-field label .mwform-radio-field-text::before {
    margin: 0 2.564vw 0 0;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form .radio input[type=radio]:checked + .mwform-radio-field-text::before,
html body main#contact section#inquiry .inner form .radio input[type=radio]:checked + .mwform-radio-field-text::before {
  border: 1px solid #9fa0a0;
}
html body main#contact section#inquiry .inner .mw_wp_form .radio input[type=radio]:checked + .mwform-radio-field-text::after,
html body main#contact section#inquiry .inner form .radio input[type=radio]:checked + .mwform-radio-field-text::after {
  display: inline-block;
  position: absolute;
  left: 5px;
  content: "";
  width: 10px;
  height: 10px;
  background: #924898;
  border-radius: 50%;
  box-sizing: border-box;
  vertical-align: middle;
}
html body main#contact section#inquiry .inner .mw_wp_form .check,
html body main#contact section#inquiry .inner form .check {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  font-size: min(1.75rem, 28px);
  line-height: 1.25;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form .check,
  html body main#contact section#inquiry .inner form .check {
    font-size: 1rem;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form .check input[type=checkbox],
html body main#contact section#inquiry .inner form .check input[type=checkbox] {
  position: absolute;
  visibility: hidden;
  width: auto;
}
html body main#contact section#inquiry .inner .mw_wp_form .check .mwform-checkbox-field,
html body main#contact section#inquiry .inner form .check .mwform-checkbox-field {
  display: block;
}
html body main#contact section#inquiry .inner .mw_wp_form .check .mwform-checkbox-field label,
html body main#contact section#inquiry .inner form .check .mwform-checkbox-field label {
  display: flex;
}
html body main#contact section#inquiry .inner .mw_wp_form .check .mwform-checkbox-field label .mwform-checkbox-field-text,
html body main#contact section#inquiry .inner form .check .mwform-checkbox-field label .mwform-checkbox-field-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(1.75rem, 28px);
  line-height: 1.25;
  margin: 0 min(1.042vw, 20px) 0 0;
  cursor: pointer;
  position: relative;
  padding: 0 0 0 calc(20px + min(0.521vw, 10px));
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form .check .mwform-checkbox-field label .mwform-checkbox-field-text,
  html body main#contact section#inquiry .inner form .check .mwform-checkbox-field label .mwform-checkbox-field-text {
    font-size: 1rem;
    margin: 0 5.128vw 0 0;
    padding: 0 0 0 calc(20px + 2.564vw);
  }
}
html body main#contact section#inquiry .inner .mw_wp_form .check .mwform-checkbox-field label .mwform-checkbox-field-text::before, html body main#contact section#inquiry .inner .mw_wp_form .check .mwform-checkbox-field label .mwform-checkbox-field-text::after,
html body main#contact section#inquiry .inner form .check .mwform-checkbox-field label .mwform-checkbox-field-text::before,
html body main#contact section#inquiry .inner form .check .mwform-checkbox-field label .mwform-checkbox-field-text::after {
  content: "";
  display: inline-block;
  position: absolute;
}
html body main#contact section#inquiry .inner .mw_wp_form .check .mwform-checkbox-field label .mwform-checkbox-field-text::before,
html body main#contact section#inquiry .inner form .check .mwform-checkbox-field label .mwform-checkbox-field-text::before {
  top: 50%;
  transform: translate(-50%);
  left: 0;
  background: #fff;
  border: 1px solid #9fa0a0;
  width: 20px;
  height: 20px;
  margin: 0;
  transform: translateY(-50%);
  box-sizing: border-box;
  border-radius: 0;
}
html body main#contact section#inquiry .inner .mw_wp_form .check .mwform-checkbox-field label .mwform-checkbox-field-text::after,
html body main#contact section#inquiry .inner form .check .mwform-checkbox-field label .mwform-checkbox-field-text::after {
  top: calc(50% - min(0.208vw, 4px));
  transform: translate(-50%, -50%);
  left: 3px;
  border-width: 2px;
  border-color: transparent transparent #924898 #924898;
  border-style: solid;
  width: 10px;
  height: 5px;
  transform: translateY(-50%) rotate(-45deg);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form .check .mwform-checkbox-field label .mwform-checkbox-field-text::after,
  html body main#contact section#inquiry .inner form .check .mwform-checkbox-field label .mwform-checkbox-field-text::after {
    top: calc(50% - 0.8vw);
  }
}
html body main#contact section#inquiry .inner .mw_wp_form .check input[type=checkbox]:checked + .mwform-checkbox-field-text::after,
html body main#contact section#inquiry .inner form .check input[type=checkbox]:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
}
html body main#contact section#inquiry .inner .mw_wp_form #complete,
html body main#contact section#inquiry .inner form #complete {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
html body main#contact section#inquiry .inner .mw_wp_form #complete > strong,
html body main#contact section#inquiry .inner form #complete > strong {
  display: block;
  font-size: min(2.25rem, 36px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form #complete > strong,
  html body main#contact section#inquiry .inner form #complete > strong {
    font-size: 1.142rem;
    line-height: 1.75;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form #complete > .comment,
html body main#contact section#inquiry .inner form #complete > .comment {
  font-size: min(1.75rem, 28px);
  line-height: 1.75;
  margin-top: min(4.167vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form #complete > .comment,
  html body main#contact section#inquiry .inner form #complete > .comment {
    font-size: 1rem;
    margin-top: 5.128vw;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form #complete > div,
html body main#contact section#inquiry .inner form #complete > div {
  border-radius: min(1.042vw, 20px);
  background: #e5e4ea;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  padding: min(2.083vw, 40px);
  margin-top: min(4.167vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form #complete > div,
  html body main#contact section#inquiry .inner form #complete > div {
    border-radius: 1.282vw;
    width: 100%;
    padding: 5.128vw;
    margin-top: 10.256vw;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form #complete > div > div,
html body main#contact section#inquiry .inner form #complete > div > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form #complete > div > div,
  html body main#contact section#inquiry .inner form #complete > div > div {
    flex-direction: column;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form #complete > div > div figure,
html body main#contact section#inquiry .inner form #complete > div > div figure {
  width: min(2.083vw, 40px);
  margin: 0 min(1.042vw, 20px) 0 0;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form #complete > div > div figure,
  html body main#contact section#inquiry .inner form #complete > div > div figure {
    width: 10.256vw;
    margin: 0 0 2.564vw 0;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form #complete > div > div div,
html body main#contact section#inquiry .inner form #complete > div > div div {
  width: 100%;
}
html body main#contact section#inquiry .inner .mw_wp_form #complete > div > div div p,
html body main#contact section#inquiry .inner form #complete > div > div div p {
  font-size: min(1.375rem, 22px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form #complete > div > div div p,
  html body main#contact section#inquiry .inner form #complete > div > div div p {
    font-size: 0.857rem;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form #complete > div > em,
html body main#contact section#inquiry .inner form #complete > div > em {
  font-size: min(1.75rem, 28px);
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form #complete > div > em,
  html body main#contact section#inquiry .inner form #complete > div > em {
    font-size: 0.857rem;
    margin-top: 10.256vw;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form #complete > div > p,
html body main#contact section#inquiry .inner form #complete > div > p {
  font-size: min(1.375rem, 22px);
  line-height: 1.75;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form #complete > div > p,
  html body main#contact section#inquiry .inner form #complete > div > p {
    font-size: 0.857rem;
    margin-top: 5.128vw;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form #complete > div > p a,
html body main#contact section#inquiry .inner form #complete > div > p a {
  color: #000;
}
html body main#contact section#inquiry .inner .mw_wp_form #complete .btn2,
html body main#contact section#inquiry .inner form #complete .btn2 {
  margin-top: min(4.167vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner .mw_wp_form #complete .btn2,
  html body main#contact section#inquiry .inner form #complete .btn2 {
    margin: 20.513vw auto 0;
  }
}
html body main#contact section#inquiry .inner .mw_wp_form_confirm {
  width: 100%;
}
html body main#contact section#inquiry .inner .mw_wp_form_confirm .select::after {
  content: none;
}
html body main#complete section#title .hl + figure {
  background: #fff url("../img/contact.jpg") no-repeat center top/100% auto;
  width: 100%;
  aspect-ratio: 640/131;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#title .hl + figure {
    background: #fff url("../img/contact.jpg") no-repeat center top/200% auto;
    aspect-ratio: 384/157;
    margin-top: 5.128vw;
  }
}
html body main#complete section#contents .inner {
  align-items: center;
}
html body main#complete section#contents .inner > strong {
  display: block;
  text-align: center;
  font-size: min(2.25rem, 36px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > strong {
    font-size: 1.142rem;
    line-height: 1.75;
  }
}
html body main#complete section#contents .inner > .comment {
  text-align: center;
  font-size: min(1.75rem, 28px);
  line-height: 1.75;
  margin-top: min(4.167vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > .comment {
    font-size: 1rem;
    margin-top: 5.128vw;
  }
}
html body main#complete section#contents .inner > div {
  border-radius: min(1.042vw, 20px);
  background: #e5e4ea;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  padding: min(2.083vw, 40px);
  margin-top: min(4.167vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > div {
    border-radius: 1.282vw;
    width: 100%;
    padding: 5.128vw;
    margin-top: 10.256vw;
  }
}
html body main#complete section#contents .inner > div > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > div > div {
    flex-direction: column;
  }
}
html body main#complete section#contents .inner > div > div figure {
  width: min(2.083vw, 40px);
  margin: 0 min(1.042vw, 20px) 0 0;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > div > div figure {
    width: 10.256vw;
    margin: 0 0 2.564vw 0;
  }
}
html body main#complete section#contents .inner > div > div div {
  width: 100%;
}
html body main#complete section#contents .inner > div > div div p {
  font-size: min(1.375rem, 22px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > div > div div p {
    font-size: 0.857rem;
  }
}
html body main#complete section#contents .inner > div > em {
  font-size: min(1.75rem, 28px);
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > div > em {
    font-size: 0.857rem;
    margin-top: 10.256vw;
  }
}
html body main#complete section#contents .inner > div > p {
  text-align: center;
  font-size: min(1.375rem, 22px);
  line-height: 1.75;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > div > p {
    font-size: 0.857rem;
    margin-top: 5.128vw;
  }
}
html body main#complete section#contents .inner > div > p a {
  color: #000;
}
html body main#complete section#contents .inner .btn2 {
  margin-top: min(4.167vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner .btn2 {
    margin: 20.513vw auto 0;
  }
}
html body main#privacy section#title .hl + figure {
  background: #fff url("../img/company.jpg") no-repeat center top/100% auto;
  width: 100%;
  aspect-ratio: 640/131;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#title .hl + figure {
    background: #fff url("../img/company.jpg") no-repeat right top/200% auto;
    aspect-ratio: 384/157;
    margin-top: 5.128vw;
  }
}
html body main#privacy section#contents .inner {
  padding: min(4.167vw, 80px) 0 0 !important;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#contents .inner {
    padding: 7.692vw 5.128vw 0 !important;
  }
}
html body main#privacy section#contents .inner strong {
  display: block;
  font-size: min(1.75rem, 28px);
  font-weight: 500;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#contents .inner strong {
    font-size: 1rem;
  }
}
html body main#privacy section#contents .inner em {
  display: block;
  font-size: min(1.75rem, 28px);
  font-weight: 700;
  width: 100%;
  padding-bottom: min(1.042vw, 20px);
  border-bottom: 1px #000 solid;
  margin: min(3.125vw, 60px) 0 min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#contents .inner em {
    font-size: 1rem;
    padding-bottom: 2.564vw;
    margin: 10.256vw 0 2.564vw;
  }
}
html body main#privacy section#contents .inner p {
  font-size: min(1.75rem, 28px);
  line-height: 1.75;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#contents .inner p {
    font-size: 1rem;
  }
}
html body main#privacy section#contents .inner p a {
  color: #000;
}
html body main#privacy section#contents .inner ul li {
  font-size: min(1.375rem, 22px);
  line-height: 1.75;
  text-indent: -1em;
  margin-left: 1em;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#contents .inner ul li {
    font-size: 1rem;
  }
}
html body main#privacy section#contents .inner ul li::before {
  content: "・";
}
html body main#privacy section#contents .inner b {
  font-size: min(2rem, 32px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#contents .inner b {
    font-size: 1.142rem;
  }
}
html body main#notfound section#title .hl + figure {
  background: #fff url("../img/company.jpg") no-repeat center top/100% auto;
  width: 100%;
  aspect-ratio: 640/131;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#title .hl + figure {
    background: #fff url("../img/company.jpg") no-repeat right top/200% auto;
    aspect-ratio: 384/157;
    margin-top: 5.128vw;
  }
}
html body main#notfound section#contents .inner {
  align-items: center;
}
html body main#notfound section#contents .inner strong {
  font-size: min(2.25rem, 36px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#contents .inner strong {
    font-size: 1.285rem;
    line-height: 1.25;
  }
}
html body main#notfound section#contents .inner p {
  font-size: min(1.75rem, 28px);
  line-height: 1.75;
  margin-top: min(2.083vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#contents .inner p {
    font-size: 1rem;
    margin-top: 5.128vw;
  }
}
html body main#notfound section#contents .inner .btn2 {
  margin: min(4.167vw, 80px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#notfound section#contents .inner .btn2 {
    margin: 10.256vw auto 0;
  }
}
html body main#page section#contents .inner p {
  font-size: min(1rem, 16px);
  line-height: 1.75;
}
html body main .hl {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: min(91.667vw, 1760px);
  padding: 0 min(1.042vw, 20px) min(2.083vw, 40px) min(7.813vw, 160px);
  background: url("../img/hl_boader.png?date=20251218") no-repeat left bottom/contain;
}
@media screen and (max-width: 768px) {
  html body main .hl {
    display: block;
    width: 94.791vw;
    padding: 0 0 5.128vw 5.128vw;
    background: url("../img/hl_boader_sp.png?date=20251218") no-repeat left bottom/contain;
  }
}
html body main .hl h2 {
  color: #654d9d;
  font-family: "Aktiv Grotesk";
  font-size: min(4rem, 64px);
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  html body main .hl h2 {
    font-size: 2.571rem;
  }
}
html body main .hl p {
  font-size: min(2rem, 32px);
  letter-spacing: 0.5em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  html body main .hl p {
    font-size: 1.142rem;
    margin-top: 1.282vw;
  }
}
html body main .comment {
  font-size: min(1.75rem, 28px);
  line-height: 1.75;
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main .comment {
    font-size: 1rem;
    margin-top: 3.846vw;
  }
}
html body main .w_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(3.385vw, 65px);
  width: 100%;
  margin-top: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main .w_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 7.692vw;
    margin-top: 3.846vw;
  }
}
html body main .w_list article {
  width: 100%;
}
html body main .w_list article figure {
  width: 100%;
}
html body main .w_list article figure div {
  width: 100%;
  aspect-ratio: 4/3;
}
html body main .w_list article figure div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main .w_list article figure figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: min(1.042vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main .w_list article figure figcaption {
    margin-top: 2.564vw;
  }
}
html body main .w_list article figure figcaption h1 {
  display: block;
  font-size: min(1.375rem, 22px);
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 768px) {
  html body main .w_list article figure figcaption h1 {
    font-size: 1rem;
  }
}
html body main .w_list article figure figcaption p {
  flex-shrink: 0;
  color: #fff;
  font-size: min(1.125rem, 18px);
  padding: min(0.521vw, 10px);
  background: #595757;
}
@media screen and (max-width: 768px) {
  html body main .w_list article figure figcaption p {
    font-size: 0.714rem;
    padding: 1.282vw;
  }
}
html body main .w_list article .btn {
  width: min(16.146vw, 310px);
  margin: min(2.083vw, 40px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main .w_list article .btn {
    width: 41.026vw;
    margin: 5.128vw auto 0;
  }
}
html body main .n_list {
  width: min(83.333vw, 1600px);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main .n_list {
    width: 100%;
  }
}
html body main .n_list article {
  width: 100%;
  border-bottom: 1px #fff solid;
}
html body main .n_list article a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: min(7.692vw, 30px) 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main .n_list article a {
    display: block;
    padding: 3.846vw 0;
  }
}
html body main .n_list article a div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 22%;
}
@media screen and (max-width: 768px) {
  html body main .n_list article a div {
    width: 100%;
  }
}
html body main .n_list article a div time {
  font-size: min(1.375rem, 22px);
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  html body main .n_list article a div time {
    font-size: 0.857rem;
  }
}
html body main .n_list article a div .category {
  color: #fff;
  font-size: min(1.375rem, 22px);
  white-space: nowrap;
  padding: min(0.521vw, 10px) min(1.563vw, 30px);
  border-radius: min(1.563vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main .n_list article a div .category {
    font-size: 0.714rem;
    padding: 1.282vw 2.564vw;
    border-radius: 7.692vw;
  }
}
html body main .n_list article a div .category-bg1 {
  background: #f6ab00;
}
html body main .n_list article a div .category-bg2 {
  background: #00afec;
}
html body main .n_list article a div .category-bg3 {
  background: #89c997;
}
html body main .n_list article a h1 {
  display: block;
  width: 74%;
  font-size: min(1.375rem, 22px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  html body main .n_list article a h1 {
    width: 100%;
    font-size: 1rem;
    margin: 2.564vw 0 0;
  }
}
html body main .n_list .btn {
  width: min(16.146vw, 310px);
  margin: min(2.083vw, 40px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main .n_list .btn {
    width: 41.026vw;
    margin: 5.128vw auto 0;
  }
}
html body main #img .inner {
  width: 100% !important;
  padding: 0 !important;
}
@media screen and (max-width: 768px) {
  html body main #img .inner {
    padding: 0 !important;
  }
}
html body main #img .inner ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 768px) {
  html body main #img .inner ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
html body main .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(0.521vw, 10px);
  padding: 0;
  margin-top: min(4.167vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main .pagination {
    gap: 1.282vw;
    padding: 0;
    margin-top: 10.256vw;
  }
}
html body main .pagination li a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #000;
  height: min(4.167vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main .pagination li a {
    height: 10.256vw;
  }
}
html body main .pagination li a span {
  font-size: min(1.75rem, 28px);
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  html body main .pagination li a span {
    font-size: 0.857rem;
  }
}
html body main .pagination li .page-numbers {
  font-size: min(1.75rem, 28px);
  width: min(4.167vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main .pagination li .page-numbers {
    font-size: 0.857rem;
    width: 10.256vw;
  }
}
html body main .pagination li .page-numbers.current {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  color: #fff;
  height: min(4.167vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main .pagination li .page-numbers.current {
    height: 10.256vw;
  }
}
html body main .btn2 {
  width: min(20.833vw, 400px);
}
@media screen and (max-width: 768px) {
  html body main .btn2 {
    width: 41.026vw;
  }
}
html body main .btn2 a {
  background: #924898;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: min(4.167vw, 80px);
  padding: 0;
  color: #fff;
  font-size: min(1.75rem, 28px);
}
@media screen and (max-width: 768px) {
  html body main .btn2 a {
    height: 10.256vw;
    font-size: 1rem;
  }
}
html body footer {
  background: linear-gradient(to bottom, #b79dc9 0%, #5b1986 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: min(15.625vw, 300px);
}
@media screen and (max-width: 768px) {
  html body footer {
    margin-top: 41.026vw;
  }
}
html body footer .inner {
  width: min(83.333vw, 1600px);
  padding: 0 0 min(3.125vw, 60px);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body footer .inner {
    width: 100% !important;
    padding: 10.256vw 5.128vw;
  }
}
html body footer .inner > p {
  width: min(14.167vw, 272px);
  margin: calc(-1 * min(6.25vw, 120px)) auto 0;
}
@media screen and (max-width: 768px) {
  html body footer .inner > p {
    width: 34.872vw;
    margin: -30.769vw auto 0;
  }
}
html body footer .inner h2 {
  color: #fff;
  font-family: "Aktiv Grotesk";
  font-size: min(2.75rem, 44px);
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  html body footer .inner h2 {
    font-size: 1.571rem;
  }
}
html body footer .inner > div {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  html body footer .inner > div {
    display: flex;
    flex-direction: column !important;
    justify-content: flex-start;
    align-items: center;
  }
}
html body footer .inner > div:nth-of-type(1) {
  flex-direction: row-reverse;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(1) {
    margin-top: 10.256vw;
  }
}
html body footer .inner > div:nth-of-type(1) figure {
  width: min(9.688vw, 186px);
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(1) figure {
    width: 24.103vw;
  }
}
html body footer .inner > div:nth-of-type(1) h1 {
  width: min(32.292vw, 620px);
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(1) h1 {
    width: 71.795vw;
    margin-top: 10.256vw;
  }
}
html body footer .inner > div:nth-of-type(2) {
  align-items: stretch;
  margin-top: min(4.167vw, 80px);
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(2) {
    margin-top: 10.256vw;
  }
}
html body footer .inner > div:nth-of-type(2) address ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: min(3.125vw, 60px);
  margin-top: min(3.125vw, 60px);
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(2) address ul {
    gap: 5.128vw;
    width: 71.795vw;
    margin: 7.692vw auto 0;
  }
}
html body footer .inner > div:nth-of-type(2) address ul li {
  color: #fff;
  font-size: min(1.375rem, 22px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(2) address ul li {
    font-size: 1rem;
  }
}
html body footer .inner > div:nth-of-type(2) > div {
  width: min(52.083vw, 1000px);
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(2) > div {
    width: 100%;
    margin-top: 10.256vw;
  }
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(2) > div h2:nth-of-type(1) {
    display: none;
  }
}
html body footer .inner > div:nth-of-type(2) > div h2:nth-of-type(2) {
  margin-top: min(6.25vw, 120px);
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(2) > div h2:nth-of-type(2) {
    margin-top: 0;
  }
}
html body footer .inner > div:nth-of-type(2) > div > ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: min(3.125vw, 60px);
  width: 100%;
  margin-top: min(3.125vw, 60px);
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(2) > div > ul {
    display: none;
  }
}
html body footer .inner > div:nth-of-type(2) > div > ul li a {
  background: url(../img/footer_arrow.svg) no-repeat left center/min(0.833vw, 16px) min(1.146vw, 22px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: min(1.042vw, 20px);
}
html body footer .inner > div:nth-of-type(2) > div > ul li a span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  font-size: min(1.375rem, 22px);
  white-space: nowrap;
}
html body footer .inner > div:nth-of-type(2) > div > ul li a span::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right top;
  transition: transform 0.3s;
  margin-top: min(0.26vw, 5px);
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(2) > div > ul li a span::after {
    margin-top: 1.282vw;
  }
}
html body footer .inner > div:nth-of-type(2) > div > ul li a:hover span::after {
  transform: scaleX(1);
  transform-origin: left top;
}
html body footer .inner > div:nth-of-type(2) > div > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: min(3.125vw, 60px);
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(2) > div > div {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 7.692vw;
  }
}
html body footer .inner > div:nth-of-type(2) > div > div ul:nth-of-type(1) {
  width: min(26.042vw, 500px);
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(2) > div > div ul:nth-of-type(1) {
    width: 71.795vw;
  }
}
html body footer .inner > div:nth-of-type(2) > div > div ul:nth-of-type(1) li:nth-of-type(1) img {
  width: 100%;
}
html body footer .inner > div:nth-of-type(2) > div > div ul:nth-of-type(1) li:nth-of-type(2) {
  text-align: right;
  margin-top: min(1.823vw, 35px);
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(2) > div > div ul:nth-of-type(1) li:nth-of-type(2) {
    margin-top: 5.128vw;
  }
}
html body footer .inner > div:nth-of-type(2) > div > div ul:nth-of-type(1) li:nth-of-type(2) img {
  width: min(16.146vw, 310px);
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(2) > div > div ul:nth-of-type(1) li:nth-of-type(2) img {
    width: 35.897vw;
  }
}
html body footer .inner > div:nth-of-type(2) > div > div ul:nth-of-type(2) {
  width: min(23.958vw, 460px);
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(2) > div > div ul:nth-of-type(2) {
    width: 71.795vw;
    margin-top: 10.256vw;
  }
}
html body footer .inner > div:nth-of-type(2) > div > div ul:nth-of-type(2) li:nth-of-type(1) img {
  width: 100%;
}
html body footer .inner > div:nth-of-type(2) > div > div ul:nth-of-type(2) li:nth-of-type(2) {
  display: flex;
  justify-content: flex-end;
  gap: min(1.823vw, 35px);
  margin-top: min(1.823vw, 35px);
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(2) > div > div ul:nth-of-type(2) li:nth-of-type(2) {
    justify-content: center;
    gap: 5.128vw;
    margin-top: 5.128vw;
  }
}
html body footer .inner > div:nth-of-type(2) > div > div ul:nth-of-type(2) li:nth-of-type(2) img {
  width: min(3.646vw, 70px);
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(2) > div > div ul:nth-of-type(2) li:nth-of-type(2) img {
    width: 10.256vw;
  }
}
html body footer .inner > div:nth-of-type(3) {
  justify-content: flex-start;
  margin-top: min(4.167vw, 80px);
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(3) {
    justify-content: center;
    margin-top: 10.256vw;
  }
}
html body footer .inner > div:nth-of-type(3) small {
  color: #fff;
  text-align: center;
  font-size: min(1rem, 16px);
}
@media screen and (max-width: 768px) {
  html body footer .inner > div:nth-of-type(3) small {
    font-size: 0.714rem;
  }
}/*# sourceMappingURL=style.css.map */