@charset "UTF-8";
/*
Theme Name: proport
Description: ProPort Themes
Author: Masato Goto
Author URI: https://re-side.net/
Version: 2.0.3
*/
.delay {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.fade-in {
  opacity: 1;
}

.linkbtn {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  line-height: 1.3;
  background: #e6eb00;
  padding: 8px 24px;
}
.linkbtn-label {
  font-size: 16px;
  color: #000;
}
.linkbtn::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  font-size: 80%;
  color: #000;
}

:root {
  --base-fontSize: 16px;
  --header-height: 80px;
  --element-width: calc(100% - 32px);
  --element-maxWidth: 1280px;
}
@media screen and (max-width: 1023px) {
  :root {
    --base-fontSize: 15px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --header-height: 48px;
  }
}
@media screen and (max-width: 480px) {
  :root {
    --base-fontSize: 14px;
  }
}

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

a {
  text-decoration: none;
}

ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hgroup,
p,
blockquote,
figure,
form,
fieldset,
input,
legend,
pre,
abbr,
button {
  margin: 0;
  padding: 0;
}

button {
  border: none;
  background: none;
}

ul {
  list-style: none;
}
ul.list-disc {
  list-style: disc;
  padding-left: 24px;
}
ul.list-num {
  list-style: decimal;
  padding-left: 24px;
}

html.gnav-noscroll body {
  overflow: hidden;
}

#gnav-menu-anchor {
  display: none;
}
#gnav-menu-anchor:checked ~ header {
  height: 100%;
  /* background: #005bab; */
  transition: background 0.36s cubic-bezier(0.32, 0.08, 0.24, 1), height 0.56s cubic-bezier(0.52, 0.16, 0.24, 1);
  background: rgba(0, 139, 213, 0.9);
}
#gnav-menu-anchor:checked ~ header .gnav-header {
  height: 100%;
  /* background: rgba(255,255,255,0.7);
  height: 48px; */
}
#gnav-menu-anchor:checked ~ header .gnav-menu-sp {
  visibility: visible;
  position: relative;
  transform: none;
  height: auto;
  transition: transform 0.3s ease;
}
#gnav-menu-anchor:checked ~ header .gnav-menu-toggle-line.--01 {
  transform: translateY(6px) rotate(-45deg);
}
#gnav-menu-anchor:checked ~ header .gnav-menu-toggle-line.--02 {
  opacity: 0;
  transition: opacity 0.36s cubic-bezier(0.32, 0.08, 0.24, 1);
}
#gnav-menu-anchor:checked ~ header .gnav-menu-toggle-line.--03 {
  transform: translateY(-6px) rotate(45deg);
}

body {
  position: relative;
  width: 100%;
  min-width: 320px;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--base-fontSize);
  background: #fff;
  color: #000;
  -webkit-text-size-adjust: 100%;
  margin: 0 auto;
  padding: 0;
}

header {
  z-index: 99;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 8px 0px;
}
@media screen and (max-width: 767px) {
  header {
    transition: background 0.44s 0.2s cubic-bezier(0.52, 0.16, 0.24, 1), height 0.56s cubic-bezier(0.52, 0.16, 0.24, 1);
  }
}

.gnav-header {
  position: relative;
  width: 100%;
  max-width: var(--element-maxWidth);
  height: var(--header-height);
  margin-right: auto;
  margin-left: auto;
}
.gnav-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: var(--header-height);
}
@media screen and (max-width: 767px) {
  .gnav-title {
    width: 144px;
    /* width: 100%;
    background-size: contain; */
  }
}
@media screen and (max-width: 767px) {
  .gnav-title-wrap {
    width: 100%;
    background: white;
    height: 48px;
  }
}
.gnav-title-label {
  position: absolute;
  height: 1px;
  width: 1px;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
          clip-path: inset(0px 0px 99.9% 99.9%);
  padding: 0;
  overflow: hidden;
}
.gnav-title-logo {
  aspect-ratio: 58/19;
  display: block;
  width: 100%;
  height: var(--header-height);
  background-image: url("/wp-content/themes/proport/assets/img/ci.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.gnav-menu {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
}
@media screen and (max-width: 767px) {
  .gnav-menu {
    display: none;
  }
}
.gnav-menu-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .gnav-menu-sp {
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-100px);
    display: block;
    width: var(--element-width);
    max-width: 540px;
    height: 0;
    margin-right: auto;
    margin-left: auto;
    padding-top: 32px;
    overflow: hidden;
  }
}
.gnav-menu-sp-wrap {
  display: none;
}
@media screen and (max-width: 767px) {
  .gnav-menu-sp-wrap {
    display: block;
    position: absolute;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: scroll;
  }
}
.gnav-menu-toggle {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: #005bab;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .gnav-menu-toggle {
    display: block;
  }
}
.gnav-menu-toggle-line {
  position: absolute;
  left: 15px;
  width: 18px;
  height: 2px;
  background: #fff;
  transition: transform 0.56s cubic-bezier(0.52, 0.16, 0.24, 1);
}
.gnav-menu-toggle-line.--01 {
  top: 16px;
}
.gnav-menu-toggle-line.--02 {
  top: 22px;
  transition: opacity 0.44s cubic-bezier(0.52, 0.16, 0.24, 1);
}
.gnav-menu-toggle-line.--03 {
  top: 28px;
}
.gnav-item.active .gnav-item-head {
  filter: brightness(96%);
  transition: filter 0.2s ease-out;
}
.gnav-item.active .gnav-item-content-wrap {
  transition: height 0.54s 0s ease-out;
}
.gnav-item.has-content .gnav-item-head span {
  padding-bottom: 16px;
}
.gnav-item.has-content .gnav-item-head span::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  content: "\f078";
  line-height: 1;
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  font-size: 12px;
}
.gnav-item-head {
  position: relative;
  display: flex;
  align-items: center;
  height: var(--header-height);
  background: #fff;
  padding: 0 16px;
}
@media screen and (max-width: 767px) {
  .gnav-item-head {
    background: transparent;
  }
}
.gnav-item-head a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.gnav-item-head span {
  position: relative;
  color: #000;
  pointer-events: none;
}
.gnav-item-content {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  -moz-column-gap: 60px;
       column-gap: 60px;
  width: var(--element-width);
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  padding: 48px 0;
}
@media screen and (max-width: 1023px) {
  .gnav-item-content {
    -moz-column-gap: 32px;
         column-gap: 32px;
    padding: 32px 0;
  }
}
.gnav-item-content-wrap {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #f5f4f5;
  overflow: hidden;
}
.gnav-item-sp {
  position: relative;
  text-align: center;
  padding: 16px 0;
}
.gnav-item-sp > a {
  display: inline-block;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
}
.gnav-submenu {
  align-self: flex-start;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media screen and (max-width: 1023px) {
  .gnav-submenu {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.gnav-submenu-item {
  background: #fff;
}
.gnav-submenu-item a {
  position: relative;
  display: block;
  color: #005bab;
  padding: 16px 24px 16px 16px;
}
.gnav-submenu-item a::after {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  content: "\f054";
  line-height: 1;
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  font-size: 85%;
}
.gnav-content-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0.8);
}
.gnav-content-img.--about {
  background-image: url("/wp-content/themes/proport/assets/img/gn-about-image.jpg");
}
.gnav-content-img.--business {
  background-image: url("/wp-content/themes/proport/assets/img/gn-business-image.jpg");
}
.gnav-content-img.--company {
  background-image: url("/wp-content/themes/proport/assets/img/gn-company-image.jpg");
}
.gnav-content-img-wrap {
  aspect-ratio: 3/2;
  position: relative;
  background: #fff;
}
.gnav-content-label {
  display: block;
  color: #fff;
}
.gnav-content-label-wrap {
  position: absolute;
  bottom: 16px;
  left: 16px;
}
.gnav-content-label.--jp {
  font-size: 24px;
}
.gnav-content-label.--en {
  text-transform: uppercase;
  font-family: "Montserrat", Arial;
  font-size: 14px;
}
.gnav-contact {
  margin-left: 16px;
}
.gnav-contact .gnav-item-head {
  background: #e6eb00;
}
.gnav-inner {
  visibility: hidden;
  z-index: 98;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
}
.gnav-inner.visible {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s ease-out;
}

footer {
  position: relative;
  overflow: hidden;
}
footer .footer-content {
  width: 100%;
  background: #005bab;
  color: #fff;
  padding: 48px 0 24px;
}
@media screen and (max-width: 767px) {
  footer .footer-content {
    padding: 12px 0 24px;
  }
}
footer .footer-title {
  aspect-ratio: 58/19;
  width: 48%;
  max-width: 232px;
  margin-right: auto;
  margin-top: 24px;
  margin-bottom: 32px;
  margin-left: auto;
}
footer .footer-title-logo {
  aspect-ratio: 58/19;
  display: block;
  width: 100%;
  background-image: url("/wp-content/themes/proport/assets/img/ci.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
footer .footer-cr {
  display: block;
  text-align: center;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  footer .footer-cr {
    margin-top: 16px;
  }
}
footer .fn-menu {
  display: flex;
  flex-wrap: nowrap;
  width: var(--element-width);
  max-width: 1024px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  footer .fn-menu {
    display: block;
  }
}
footer .fn-menu-column {
  flex-basis: 33.3333333333%;
}
@media screen and (max-width: 767px) {
  footer .fn-menu-column {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  footer .fn-item {
    overflow: hidden;
    border-bottom: 1px solid #fff;
  }
}
footer .fn-item:not(:last-child) {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  footer .fn-item:not(:last-child) {
    margin-bottom: 0;
  }
}
footer .fn-item-txt-label {
  font-size: 16px;
}
footer .fn-item-txt-label.--ad {
  display: block !important;
}
@media screen and (max-width: 767px) {
  footer .fn-item-txt-label.--ad {
    font-size: 14px;
  }
  footer .fn-item-txt-label.--ad > a {
    display: block;
    padding: 12px 0;
  }
}
@media screen and (max-width: 767px) {
  footer .fn-item-txt-label {
    display: none;
  }
}
footer .fn-item-txt-btn {
  display: none;
  z-index: 2;
  position: relative;
  width: 100%;
  text-align: left;
  background: #005bab;
  font-size: 15px;
  padding: 12px 0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  footer .fn-item-txt-btn {
    display: block;
  }
  footer .fn-item-txt-btn[aria-expanded=true]::after {
    transform: rotate(45deg);
    transition: transform 0.3s linear;
  }
  footer .fn-item-txt-btn[aria-expanded=true] + .fn-submenu {
    display: block;
  }
}
footer .fn-item-txt-btn::after {
  position: absolute;
  top: 18px;
  right: 12px;
  content: "+";
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  font-size: 10px;
  color: #fff;
}
footer .fn-item a {
  color: #fff;
}
footer .fn-submenu {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  footer .fn-submenu {
    visibility: hidden;
    z-index: -1;
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(-100px);
    width: 100%;
    will-change: transform;
    margin-top: 0;
    padding-top: 5px;
    padding-bottom: 24px;
    overflow: hidden;
  }
  footer .fn-submenu.active {
    position: static;
    visibility: visible;
    z-index: 1;
    transform: none;
    transition: transform 300ms ease;
  }
}
footer .fn-submenu-item {
  position: relative;
  font-size: 16px;
  padding-left: 24px;
}
@media screen and (max-width: 767px) {
  footer .fn-submenu-item {
    font-size: 14px;
  }
}
footer .fn-submenu-item:not(:last-child) {
  margin-bottom: 16px;
}
footer .fn-submenu-item::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 16px;
  height: 2px;
  background: #fff;
}

.page-home {
  padding-top: var(--header-height);
}
.page-home-item {
  margin-top: 80px;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .page-home-item {
    margin-top: 48px;
    margin-bottom: 60px;
  }
}
.page-home .mainvisual {
  position: relative;
  aspect-ratio: 24/13;
  width: 100%;
  max-width: 1440px;
  min-height: 240px;
  margin-right: auto;
  margin-left: auto;
}
.page-home .mainvisual-txt {
  display: block;
  color: #fff;
}
.page-home .mainvisual-txt-wrap {
  z-index: 1;
  position: absolute;
}
.page-home .mainvisual-txt-wrap.--top-right {
  top: 8%;
  right: 16px;
}
.page-home .mainvisual-txt-wrap.--btm-right {
  bottom: 8%;
  right: 16px;
}
.page-home .mainvisual-txt-wrap.--btm-left {
  bottom: 8%;
  left: 5%;
}
.page-home .mainvisual-txt.--corp {
  font-family: "Montserrat", Arial;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}
@media screen and (max-width: 480px) {
  .page-home .mainvisual-txt.--corp {
    font-size: 12px;
  }
}
.page-home .mainvisual-txt.--catch {
  line-height: 1.3;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.5rem, 0.309rem + 5.08vw, 4.375rem);
}
.page-home .mainvisual-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-home .mainvisual-img.--01 {
  background-image: url("/wp-content/themes/proport/assets/img/mainvisual.jpg");
}
.page-home .mainvisual-img.--02 {
  background-image: url("/wp-content/themes/proport/assets/img/mainvisual02.jpg");
}
.page-home .mainvisual-img.--03 {
  background-image: url("/wp-content/themes/proport/assets/img/mainvisual03.jpg");
}
.page-home-info .info-list {
  position: relative;
}
.page-home-info .info-item {
  position: relative;
  width: 100%;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .page-home-info .info-item {
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
.page-home-info .info-item:not(:last-child) {
  margin-bottom: 60px;
}
.page-home-info .info-item:not(:last-child)::after {
  position: absolute;
  right: 0;
  bottom: -30px;
  left: 0;
  content: "";
  height: 2px;
  background: #005bab;
}
.page-home-info .info-item .post-thumb {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.page-home-info .info-item .post-thumb-wrap {
  aspect-ratio: 3/2;
  pointer-events: none;
  position: relative;
  background: #fff;
}
.page-home-info .info-item .post-thumb-default {
  -o-object-fit: contain;
     object-fit: contain;
}
.page-home-info .info-item .post-txt {
  display: block;
}
.page-home-info .info-item .post-txt-wrap {
  pointer-events: none;
  align-self: center;
  position: relative;
}
.page-home-info .info-item .post-date {
  display: block;
  line-height: 1.3;
  font-size: 18px;
  color: #000;
  margin-bottom: 4px;
}
@media screen and (max-width: 1023px) {
  .page-home-info .info-item .post-date {
    font-size: 16px;
  }
}
@media screen and (max-width: 599px) {
  .page-home-info .info-item .post-date {
    font-size: 14px;
  }
}
.page-home-info .info-item .post-title {
  display: block;
  line-height: 1.3;
  font-size: 24px;
  color: #005bab;
}
@media screen and (max-width: 1023px) {
  .page-home-info .info-item .post-title {
    font-size: 21px;
  }
}
@media screen and (max-width: 599px) {
  .page-home-info .info-item .post-title {
    font-size: 16px;
  }
}
.page-home-info .info-item .post-link {
  display: grid;
  grid-template-columns: minmax(80px, 20%) 1fr;
  -moz-column-gap: 32px;
       column-gap: 32px;
  width: 100%;
}
@media (hover: hover) {
  .page-home-info .info-item .post-link:hover {
    opacity: 0.8;
    transition: opacity 0.2s ease-out;
  }
}
.page-home-info .sec-title-wrap {
  flex-shrink: 3;
}
.page-home-about .linkbtn-wrap {
  display: flex;
  justify-content: flex-end;
}
.page-home-about .about-wrap {
  position: relative;
  width: 100%;
}
.page-home-about .about-img {
  pointer-events: none;
  position: relative;
  aspect-ratio: 2/1;
  width: 100%;
  height: 450px;
  background-color: #f2f2f2;
  background-image: url("/wp-content/themes/proport/assets/img/home_about.jpg");
  background-size: contain;
  background-position: center 42%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .page-home-about .about-img {
    height: 400px;
  }
}
@media screen and (max-width: 599px) {
  .page-home-about .about-img {
    height: 350px;
  }
}
.page-home-about .about-txt {
  /* position: relative; */
  line-height: 1.8;
  background: rgba(0, 91, 171, 0.7);
  color: #fff;
  font-size: clamp(0.875rem, 0.514rem + 1.54vw, 1.5rem);
  padding: 20px 60px;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .page-home-about .about-txt {
    line-height: 1.5;
    padding: 10px 60px;
  }
}
@media screen and (max-width: 480px) {
  .page-home-about .about-txt {
    padding: 20px;
  }
}
.page-home-about .about-txt::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 0;
  height: 0;
  border-width: 60px 60px 0 0;
  border-style: solid;
  border-color: rgba(230, 235, 0, 0.5) transparent transparent transparent;
}
@media screen and (max-width: 480px) {
  .page-home-about .about-txt::after {
    border-width: 25px 25px 0 0;
  }
}
.page-home-business .content-bottomer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 8px;
       column-gap: 8px;
  margin-top: 24px;
}
.page-home-business .content-bottomer .linkbtn {
  align-self: flex-start;
  flex-shrink: 0;
}
.page-home-business .business-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media screen and (max-width: 1023px) {
  .page-home-business .business-list {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media screen and (max-width: 599px) {
  .page-home-business .business-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page-home-business .business-item {
  position: relative;
  width: 100%;
  background: #f5f4f5;
  box-shadow: 2px 6px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (hover: hover) {
  .page-home-business .business-item:hover {
    opacity: 0.8;
    transition: opacity 0.2s ease-out;
  }
}
@media screen and (max-width: 1023px) {
  .page-home-business .business-item:nth-child(5n+1), .page-home-business .business-item:nth-child(5n+2) {
    grid-column: auto/span 3;
  }
  .page-home-business .business-item:nth-child(5n+3), .page-home-business .business-item:nth-child(5n+4), .page-home-business .business-item:nth-child(5n+5) {
    grid-column: auto/span 2;
  }
}
@media screen and (max-width: 599px) {
  .page-home-business .business-item {
    grid-column: initial !important;
  }
}
.page-home-business .business-item-container {
  pointer-events: none;
  display: grid;
  grid-template-rows: 120px auto;
  justify-content: center;
  row-gap: 16px;
  max-height: 230px;
  margin-right: auto;
  margin-left: auto;
  padding: 24px 16px;
}
@media screen and (max-width: 480px) {
  .page-home-business .business-item-container {
    grid-template-rows: 96px auto;
  }
}
.page-home-business .business-item-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
}
.page-home-business .business-item::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  width: 0;
  height: 0;
  border-width: 0 0 25px 25px;
  border-style: solid;
  border-color: transparent transparent #e6eb00 transparent;
}
.page-home-business .business-content-img {
  align-self: center;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 120px;
  height: 100%;
  max-height: 120px;
  margin: 0 auto;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.page-home-business .business-content-img.--01 {
  background-image: url("/wp-content/themes/proport/assets/img/bus01.png");
}
.page-home-business .business-content-img.--02 {
  background-image: url("/wp-content/themes/proport/assets/img/bus02.png");
}
.page-home-business .business-content-img.--03 {
  background-image: url("/wp-content/themes/proport/assets/img/bus03.png");
}
.page-home-business .business-content-img.--04 {
  background-image: url("/wp-content/themes/proport/assets/img/bus04.png");
}
.page-home-business .business-content-img.--05 {
  background-image: url("/wp-content/themes/proport/assets/img/bus05.png");
}
.page-home-business .business-content-txt {
  align-self: center;
  line-height: 1.3;
  text-align: center;
}
.page-home .point-num {
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.page-home .point-num-item {
  width: 33.3333333333%;
  text-align: center;
  border: 2px solid #005bab;
  color: #005bab;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 0.633rem + 3.7vw, 3rem);
}
.page-home .point-num-item.active {
  background: #005bab;
  color: #fff;
}
.page-home .point-item {
  background: #f5f4f5;
}
.page-home .point-item-content {
  display: grid;
  grid-template-columns: minmax(160px, 36%) 1fr;
  -moz-column-gap: 60px;
       column-gap: 60px;
  width: var(--element-width);
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 0;
}
@media screen and (max-width: 767px) {
  .page-home .point-item-content {
    -moz-column-gap: 32px;
         column-gap: 32px;
  }
}
@media screen and (max-width: 480px) {
  .page-home .point-item-content {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 24px;
    padding: 32px 0;
  }
}
.page-home .point-item-content .linkbtn {
  position: absolute;
  right: 0;
  bottom: 0;
}
.page-home .point-txt {
  align-self: center;
}
.page-home .point-head {
  font-size: clamp(1.25rem, 0.817rem + 1.85vw, 2rem);
  font-weight: 400;
  color: #005bab;
  margin-bottom: 12px;
}
.page-home .point-desc {
  font-size: clamp(1rem, 0.711rem + 1.23vw, 1.5rem);
}
.page-home .point-img {
  aspect-ratio: 3/2;
  width: 100%;
  max-width: 382px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.page-home .point-img.--01 {
  background-image: url("/wp-content/themes/proport/assets/img/home-point01.jpg");
  background-size: cover;
}
.page-home .point-img.--02 {
  background-image: url("/wp-content/themes/proport/assets/img/home-point02.jpg");
  background-size: cover;
  background-position-y: 20%;
}
.page-home .point-img.--03 {
  background-image: url("/wp-content/themes/proport/assets/img/home-point03.jpg");
  background-size: cover;
  background-position-y: 20%;
}
.page-home .staff {
  /* ▼staff */
}
.page-home .staff-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}
@media screen and (max-width: 1023px) {
  .page-home .staff-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .page-home .staff-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 599px) {
  .page-home .staff-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page-home .staff-list .noimage .staff-profile-img {
  background-image: url("/wp-content/themes/proport/assets/img/ci.png");
  background-size: contain;
}
.page-home .staff-item {
  position: relative;
  aspect-ratio: 2/3;
  background: #d9d9d9;
  box-shadow: 2px 6px 4px 0px rgba(0, 0, 0, 0.25);
}
.page-home .staff-item::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  width: 0;
  height: 0;
  border-width: 0 0 25px 25px;
  border-style: solid;
  border-color: transparent transparent #e6eb00 transparent;
}
.page-home .staff-profile {
  display: block;
  color: #fff;
}
.page-home .staff-profile-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.page-home .staff-profile-txt {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 16px 16px 24px;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
}
.page-home .staff-profile.--pos {
  font-size: clamp(0.75rem, 0.606rem + 0.62vw, 1rem);
  margin-bottom: 4px;
}
.page-home .staff-profile.--name {
  line-height: 1.3;
  font-size: clamp(1rem, 0.856rem + 0.62vw, 1.25rem);
}
.page-home .staff-nagata .staff-profile-img {
  background-image: url("/wp-content/themes/proport/assets/img/staff/nagata.jpg");
}
.page-home .staff-yamamoto .staff-profile-img {
  background-image: url("/wp-content/themes/proport/assets/img/staff/yamamoto.jpg");
}
.page-home .staff-okada .staff-profile-img {
  background-image: url("/wp-content/themes/proport/assets/img/staff/okada.jpg");
}
.page-home .staff-aoyama .staff-profile-img {
  background-image: url("/wp-content/themes/proport/assets/img/staff/aoyama.jpg");
}
.page-home .staff-takaghi .staff-profile-img {
  background-image: url("/wp-content/themes/proport/assets/img/staff/takaghi.jpg");
}
.page-home .staff-iwamoto .staff-profile-img {
  background-image: url("/wp-content/themes/proport/assets/img/staff/iwamoto.jpg");
}
.page-home .staff-kusunoki .staff-profile-img {
  background-image: url("/wp-content/themes/proport/assets/img/staff/kusunoki.jpg");
}
.page-home .staff-kouya .staff-profile-img {
  background-image: url("/wp-content/themes/proport/assets/img/staff/kouya.jpg");
}
.page-home .staff-masu .staff-profile-img {
  background-image: url("/wp-content/themes/proport/assets/img/staff/masu.jpg");
}
.page-home .staff-takahashi_a .staff-profile-img {
  background-image: url("/wp-content/themes/proport/assets/img/staff/takahashi-a.jpg");
}
.page-home .staff-takahashi_m .staff-profile-img {
  background-image: url("/wp-content/themes/proport/assets/img/staff/takahashi-m.jpg");
}
.page-home-recruit {
  position: relative;
  max-width: 1440px;
  background: linear-gradient(to right, #f5f4f5 36%, transparent);
  margin-right: auto;
  margin-left: auto;
  padding: 48px 0;
}
.page-home-recruit::after {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 100%;
  max-width: 881px;
  background-image: url("/wp-content/themes/proport/assets/img/recruit-img.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: auto;
}
.page-about {
  padding-top: var(--header-height);
}
.page-about-item {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .page-about-item {
    margin-top: 48px;
  }
}
.page-about-item:not(:last-child) {
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .page-about-item:not(:last-child) {
    margin-bottom: 60px;
  }
}
.page-about-oname .oname-item {
  width: var(--element-width);
  max-width: var(--element-maxWidth);
  margin-right: auto;
  margin-left: auto;
}
.page-about-oname .oname-item:not(:first-child) {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .page-about-oname .oname-item:not(:first-child) {
    margin-top: 32px;
  }
}
.page-about-oname .oname-ov {
  display: grid;
  grid-template-columns: minmax(240px, 44%) 1fr;
  -moz-column-gap: 60px;
       column-gap: 60px;
}
@media screen and (max-width: 1023px) {
  .page-about-oname .oname-ov {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 32px;
  }
}
.page-about-oname .oname-ov-img {
  width: 100%;
  height: 100%;
  max-width: 240px;
  background-image: url("/wp-content/themes/proport/assets/img/ci.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: auto;
  margin-left: auto;
}
.page-about-oname .oname-ov-img-wrap {
  align-self: flex-start;
  aspect-ratio: 3/2;
  background-color: #f5f4f5;
}
@media screen and (max-width: 1023px) {
  .page-about-oname .oname-ov-img-wrap {
    width: 100%;
    max-width: 320px;
    margin-right: auto;
  }
}
.page-about-oname .oname-ov-txt p {
  line-height: 1.8;
  font-size: clamp(0.875rem, 0.658rem + 0.92vw, 1.25rem);
}
.page-about-oname .oname-ov-txt p:not(:last-child) {
  margin-bottom: 4px;
}
.page-about-oname .no1-head {
  line-height: 1.3;
  text-align: center;
  font-weight: 600;
  font-size: 28px;
  color: #005bab;
  margin-bottom: 32px;
  letter-spacing: 4px;
}
@media screen and (max-width: 767px) {
  .page-about-oname .no1-head {
    font-size: 22px;
    margin-bottom: 24px;
  }
}
.page-about-oname .no1-head .row {
  display: inline-block;
}
.page-about-oname .no1-head .stg {
  font-size: 150%;
  font-style: italic;
  margin-right: 8px;
}
.page-about-oname .no1-img {
  aspect-ratio: 1059/738;
  width: 100%;
  max-width: 854px;
  background-image: url("/wp-content/themes/proport/assets/img/about-no1-img.jpg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto;
}
.page-about-oname .no1-img-wrap {
  position: relative;
  width: 100% !important;
}
.page-about-oname .no1-detail-menu {
  position: relative;
  width: 100% !important;
  background: #f5f4f5;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .page-about-oname .no1-detail-menu {
    margin-top: 0 !important;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.page-about-oname .no1-detail-item {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 60px;
  width: var(--element-width);
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .page-about-oname .no1-detail-item {
    grid-template-columns: minmax(0, 1fr);
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
  }
  .page-about-oname .no1-detail-item .no1-detail-item-img {
    max-width: 400px;
    margin-right: auto;
  }
  .page-about-oname .no1-detail-item .no1-detail-item-img-wrap {
    order: 2;
  }
  .page-about-oname .no1-detail-item .no1-detail-item-txt-wrap {
    order: 1;
  }
}
.page-about-oname .no1-detail-item:nth-of-type(even) .no1-detail-item-img-wrap {
  order: 2;
}
.page-about-oname .no1-detail-item:nth-of-type(even) .no1-detail-item-txt-wrap {
  order: 1;
}
.page-about-oname .no1-detail-item:first-of-type .no1-detail-item-head {
  background: #666666;
  color: #fff;
}
.page-about-oname .no1-detail-item:nth-of-type(2) .no1-detail-item-head {
  background: #0073b5;
  color: #fff;
}
.page-about-oname .no1-detail-item:nth-of-type(3) .no1-detail-item-head {
  background: #60a1c8;
  color: #fff;
}
.page-about-oname .no1-detail-item:nth-of-type(4) .no1-detail-item-head {
  background: #88afc6;
  color: #fff;
}
.page-about-oname .no1-detail-item:not(:last-child) {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .page-about-oname .no1-detail-item:not(:last-child) {
    margin-bottom: 60px;
  }
}
.page-about-oname .no1-detail-item-head {
  display: flex;
  font-size: var(--base-fontSize);
  -moz-column-gap: 24px;
       column-gap: 24px;
  line-height: 1.4;
  border-radius: 8px;
  overflow: hidden;
}
.page-about-oname .no1-detail-item-head-label.--jp {
  font-size: clamp(1.125rem, 0.762rem + 1.55vw, 2rem);
  letter-spacing: 4px;
}
.page-about-oname .no1-detail-item-head-label.--en {
  align-self: flex-end;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.75rem, 0.595rem + 0.66vw, 1.125rem);
  text-transform: uppercase;
  letter-spacing: 2.4px;
  margin-bottom: 0.2em;
}
.page-about-oname .no1-detail-item-head-label-wrap {
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
  padding: 16px 0;
}
.page-about-oname .no1-detail-item-head-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 48px;
  background: #000;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
}
.page-about-oname .no1-detail-item-subhead {
  font-weight: 600;
  font-size: clamp(1rem, 0.793rem + 0.88vw, 1.5rem);
  margin: 24px 0;
}
.page-about-oname .no1-detail-item-desc {
  border-top: 1px solid #000;
  padding-top: 24px;
}
.page-about-oname .no1-detail-item-desc p {
  line-height: 1.8;
  font-size: clamp(0.875rem, 0.658rem + 0.92vw, 1.25rem);
}
.page-about-oname .no1-detail-item-img {
  aspect-ratio: 3/2;
  width: 100%;
  background: #d9d9d9;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-clip-path: polygon(60px 0, 100% 0, 100% calc(100% - 60px), calc(100% - 60px) 100%, 0 100%, 0% 60px);
          clip-path: polygon(60px 0, 100% 0, 100% calc(100% - 60px), calc(100% - 60px) 100%, 0 100%, 0% 60px);
}
.page-about-oname .no1-detail-item-img-wrap {
  align-self: center;
  order: 1;
  position: relative;
}
.page-about-oname .no1-detail-item-txt-wrap {
  align-self: flex-start;
  order: 2;
}
.page-about-oname .no1-detail-item.--promise .no1-detail-item-img {
  background-image: url("/wp-content/themes/proport/assets/img/about-no1-promise.jpg");
  background-size: 130%;
}
.page-about-oname .no1-detail-item.--progress .no1-detail-item-img {
  background-image: url("/wp-content/themes/proport/assets/img/about-no1-progress.jpg");
}
.page-about-oname .no1-detail-item.--professional .no1-detail-item-img {
  background-image: url("/wp-content/themes/proport/assets/img/about-no1-professional.jpg");
}
.page-about-oname .no1-detail-item.--port .no1-detail-item-img {
  background-image: url("/wp-content/themes/proport/assets/img/about-no1-port.jpg");
}
.page-about-oname .sec-content {
  width: 100%;
  max-width: inherit;
}
.page-about-development .development-img {
  aspect-ratio: 72/17;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-image: url("/wp-content/themes/proport/assets/img/development-img.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 32px;
}
@media screen and (max-width: 480px) {
  .page-about-development .development-img {
    padding: 0;
  }
}
.page-about-development .development-txt {
  width: 100%;
  max-width: var(--element-maxWidth);
  line-height: 1.8;
  background: rgba(251, 251, 251, 0.9);
  color: #111;
  font-size: clamp(1rem, 0.711rem + 1.23vw, 1.5rem);
  margin-right: auto;
  margin-left: auto;
  padding: 32px;
}
.page-about-development .sec-content {
  max-width: 1400px;
}
.page-about .about-head {
  width: var(--element-width);
  max-width: var(--element-maxWidth);
  margin-top: 120px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 80px;
}
.page-about .about-head-image {
  aspect-ratio: 16/9;
  width: var(--element-width);
  max-width: 739px;
  background-image: url("/wp-content/themes/proport/assets/img/about-head-img02.jpg");
  background-position: center 30%;
  background-size: 128%;
  background-repeat: no-repeat;
  margin-right: auto;
}
.page-about .about-head-txt {
  position: relative;
  width: var(--element-width);
  max-width: 805px;
  background: #f5f4f5;
  margin-top: -23%;
  margin-left: auto;
  padding: 48px;
}
@media screen and (max-width: 1023px) {
  .page-about .about-head-txt {
    background: rgba(245, 244, 245, 0.8);
  }
}
@media screen and (max-width: 480px) {
  .page-about .about-head-txt {
    padding: 24px;
  }
}
.page-about .about-head-txt::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  width: 0;
  height: 0;
  border-width: 0 0 50px 50px;
  border-style: solid;
  border-color: transparent transparent #e6eb00 transparent;
}
@media screen and (max-width: 480px) {
  .page-about .about-head-txt::after {
    border-width: 0 0 24px 24px;
  }
}
.page-about .about-head-title {
  color: #005bab;
  font-size: clamp(1.125rem, 0.764rem + 1.54vw, 1.75rem);
}
.page-about .about-head-desc {
  line-height: 1.8;
  color: #111;
  margin-top: 24px;
  font-size: clamp(0.875rem, 0.658rem + 0.92vw, 1.25rem);
}
.page-about .greeting-txt {
  line-height: 1.8;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-size: clamp(1rem, 0.711rem + 1.23vw, 1.5rem);
  margin-top: 32px;
}
.page-about .greeting-president-sign {
  text-align: right;
  margin-top: 32px;
}
.page-about .greeting-president-sign-pos {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(1rem, 0.711rem + 1.23vw, 1.5rem);
}
.page-about .greeting-president-sign-img {
  aspect-ratio: 487/114;
  display: block;
  width: 42%;
  max-width: 256px;
  max-height: 56px;
  background-image: url("/wp-content/themes/proport/assets/img/president-sign.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 12px;
  margin-left: auto;
}
.page-about .greeting-president-sign-label {
  position: absolute;
  height: 1px;
  width: 1px;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
          clip-path: inset(0px 0px 99.9% 99.9%);
  padding: 0;
  overflow: hidden;
}
.page-about .greeting-president-img {
  aspect-ratio: 3/2;
  width: 100%;
  max-width: 600px;
  background-image: url("/wp-content/themes/proport/assets/img/president.jpg");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: auto;
  margin-left: auto;
}
.page-about .policy-menu {
  background: #f5f4f5;
  padding: 60px 16px;
}
@media screen and (max-width: 599px) {
  .page-about .policy-menu {
    padding: 32px 16px;
  }
}
.page-about .policy-item:not(:last-child) {
  margin-bottom: 32px;
}
.page-about .policy-item-head {
  position: relative;
  text-align: center;
  font-size: clamp(1.125rem, 0.908rem + 0.92vw, 1.5rem);
  color: #005bab;
  padding-bottom: 8px;
}
.page-about .policy-item-head::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 100%;
  max-width: 420px;
  height: 1px;
  background: #005bab;
}
.page-about .policy-item-desc {
  text-align: center;
  font-size: clamp(1rem, 0.711rem + 1.23vw, 1.5rem);
  margin-top: 8px;
}
.page-about .page-image {
  background-image: url("/wp-content/themes/proport/assets/img/page-about-img.jpg");
}
.page-business {
  padding-top: var(--header-height);
}
.page-business-item {
  margin-top: 80px;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .page-business-item {
    margin-top: 48px;
    margin-bottom: 60px;
  }
}
.page-business-case .case-content:not(:last-child) {
  margin-bottom: 80px;
}
@media screen and (max-width: 480px) {
  .page-business-case .case-content:not(:last-child) {
    margin-bottom: 48px;
  }
}
.page-business-case .case-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: clamp(1.125rem, 0.619rem + 2.16vw, 2rem);
  margin-bottom: 24px;
}
.page-business-case .case-head::before, .page-business-case .case-head::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
}
.page-business-case .case-head::before {
  align-self: flex-start;
  border-width: 30px 30px 0 0;
  border-color: #e6eb00 transparent transparent transparent;
  margin-right: 30px;
}
@media screen and (max-width: 480px) {
  .page-business-case .case-head::before {
    border-width: 16px 16px 0 0;
    margin-right: 16px;
  }
}
.page-business-case .case-head::after {
  align-self: flex-end;
  border-width: 0 0 30px 30px;
  border-color: transparent transparent #e6eb00 transparent;
  margin-left: 30px;
}
@media screen and (max-width: 480px) {
  .page-business-case .case-head::after {
    border-width: 0 0 16px 16px;
    margin-left: 16px;
  }
}
.page-business-case .case-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: var(--element-width);
  max-width: var(--element-maxWidth);
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1023px) {
  .page-business-case .case-menu {
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .page-business-case .case-menu {
    /* grid-template-columns: repeat(2, 1fr); */
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .page-business-case .case-menu {
    gap: 8px;
  }
}
.page-business-case .case-item {
  line-height: 1.3;
  text-align: center;
  background: #fff;
  font-size: clamp(0.875rem, 0.514rem + 1.54vw, 1.5rem);
  padding: 16px 15px;
  display: flex;
  overflow-wrap: anywhere;
}
/* 実績投稿機能追加対応 add */
.page-business-case .case-item a,a:visited{
  color: black;
}
.page-business-case .case-item a{
  color: black;
}
/* 実績投稿機能追加対応 end */
.page-business-case .case-image {
  aspect-ratio: 128/33;
  width: 100%;
  max-width: 1280px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 24px;
  margin-right: auto;
  margin-left: auto;
}
.page-business-case .case-image.--01 {
  background-image: url("/wp-content/themes/proport/assets/img/case-img01.jpg");
}
.page-business-case .case-image.--02 {
  background-image: url("/wp-content/themes/proport/assets/img/case-img02.jpg");
  background-size: cover;
}
/* sasaki add */
/* .page-business-case .page-business-img {
  height: 150px;
  width: 150px;
}
@media screen and (max-width: 1023px) {
  .page-business-case .page-business-img{
    height: 150px;
    width: 150px;
  }
}
@media screen and (max-width: 767px) {
  .page-business-case .page-business-img {
    height: 100px;
    width: 100px;
  }
}
@media screen and (max-width: 480px) {
  .page-business-case .page-business-img {
    height: 100px;
    width: 100px;
  }
} */
.page-business-case .case-item-thumb {
  /* background-image: url("/wp-content/themes/proport/assets/img/ci.png"); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 150px;
  width: 150px;
}
@media screen and (max-width: 1023px) {
  .page-business-case .case-item-thumb{
    height: 150px;
    width: 150px;
  }
}
@media screen and (max-width: 767px) {
  .page-business-case .case-item-thumb {
    height: 100px;
    width: 100px;
  }
}
@media screen and (max-width: 480px) {
  .page-business-case .case-item-thumb {
    height: 100px;
    width: 100px;
  }
}
.page-business-case .case-item-thumb.--01 {
  background-image: url("/wp-content/themes/proport/assets/img/kyoto-universe.jpg");
}
.page-business-case .case-item-thumb.--02 {
  background-image: url("/wp-content/themes/proport/assets/img/seiki-high-school.jpg");
}
.page-business-case .case-item-thumb.--03 {
  background-image: url("/wp-content/themes/proport/assets/img/bit-group-company.jpg");
}
.page-business-case .case-item-thumb.--04 {
  background-image: url("/wp-content/themes/proport/assets/img/kyoto-education-universe.jpg");
}
.page-business-case .case-item-thumb.--05 {
  background-image: url("/wp-content/themes/proport/assets/img/hachiyou-engineer-company.jpg");
}
.page-business-case .case-item-thumb.--06 {
  background-image: url("/wp-content/themes/proport/assets/img/boueisho--kyosai-union.jpg");
}
.page-business-case .case-item-thumb.--07 {
  background-image: url("/wp-content/themes/proport/assets/img/kyoto-advanced-chemistry-universe.jpg");
}
.page-business-case .case-item-thumb.--08 {
  background-image: url("/wp-content/themes/proport/assets/img/kyoto-education-momoyama-elementary-school.jpg");
}
.page-business-case .case-item-thumb.--09 {
  background-image: url("/wp-content/themes/proport/assets/img/giken-trust-company.jpg");
}
.page-business-case .case-item-thumb.--10 {
  background-image: url("/wp-content/themes/proport/assets/img/japanese-red-cross-society.jpg");
}
.page-business-case .case-item-thumb.--11 {
  background-image: url("/wp-content/themes/proport/assets/img/kyoto-aird-company.jpg");
}
.page-business-case .case-item-thumb.--12 {
  background-image: url("/wp-content/themes/proport/assets/img/kyoto-techsolution-service-company.jpg");
}
.page-business-case .case-item-thumb.--13 {
  background-image: url("/wp-content/themes/proport/assets/img/institute-of-systems-science.jpg");
}
.page-business-case .case-item-thumb.--14{
  background-image: url("/wp-content/themes/proport/assets/img/kyoto-union-of-healthcare.jpg");
}
.page-business-case .case-item-thumb.--15{
  background-image: url("/wp-content/themes/proport/assets/img/ryuukoku-affiliated-high-school.jpg");
}
.page-business-case .case-item-txt {
  pointer-events: none;
  align-self: center;
  position: relative;
  width: 70%;
  text-align: left;
  padding-left: 70px;
  font-size: clamp(0.875rem, 0.658rem + 0.92vw, 1.25rem);
  color: black;
}
@media screen and (max-width: 767px) {
  .page-business-case .case-item-txt {
    padding-left: 50px;
  }
}
@media screen and (max-width: 480px) {
  .page-business-case .case-item-txt {
    padding-left: 20px;
  }
}
.page-business-case .case-item-txt .case-title {
  display: block;
  line-height: 1.3;
  margin-bottom: 4px;
  font-size: 22px;
  /* font-size: clamp(1.125rem, 0.619rem + 2.16vw, 2rem); */
}
.page-business-case .case-item-txt .case-conten {
  display: block;
  line-height: 1.3;
  font-size: 16px;
  /* font-size: clamp(0.875rem, 0.731rem + 0.62vw, 1.125rem); */
}
@media screen and (max-width: 480px) {
  .page-business-case .case-item-txt .case-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .page-business-case .case-item-txt .case-conten {
    font-size: 10px;
  }
}
/* sasaki add */
.page-business-case .sec-content {
  width: 100%;
  max-width: 1440px;
  background: #f5f4f5;
  padding: 48px 0;
}
@media screen and (max-width: 480px) {
  .page-business-case .sec-content {
    padding-top: 32px;
  }
}
.page-business .business-item:not(:last-child) {
  margin-bottom: 80px;
}
@media screen and (max-width: 480px) {
  .page-business .business-item:not(:last-child) {
    margin-bottom: 48px;
  }
}
.page-business .business-item:nth-of-type(even) .business-item-img {
  margin-left: auto;
}
.page-business .business-item:nth-of-type(even) .business-item-txt {
  margin-right: auto;
}
.page-business .business-item:nth-of-type(odd) .business-item-img {
  margin-right: auto;
}
.page-business .business-item:nth-of-type(odd) .business-item-txt {
  margin-left: auto;
}
.page-business .business-item-txt {
  position: relative;
  width: var(--element-width);
  max-width: 804px;
  min-height: 340px;
  background: #f5f4f5;
  margin-top: -25%;
  padding: 32px 48px;
}
@media screen and (max-width: 480px) {
  .page-business .business-item-txt {
    min-height: 234px;
    padding: 24px;
    margin-top: 0;
  }
  /* 20231230 sasak add */
  /* .page-business .business-item-img-sp {
    aspect-ratio: 16/9;
    width: var(--element-width);
    max-width: 606px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  } */
  /* 20231230 sasak end */
}
.page-business .business-item-txt::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  width: 0;
  height: 0;
  border-width: 0 0 50px 50px;
  border-style: solid;
  border-color: transparent transparent #e6eb00 transparent;
}
@media screen and (max-width: 480px) {
  .page-business .business-item-txt::after {
    border-width: 0 0 24px 24px;
  }
}
.page-business .business-item-img {
  aspect-ratio: 16/9;
  width: var(--element-width);
  max-width: 606px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-business .business-item-img.--01 {
  background-image: url("/wp-content/themes/proport/assets/img/business-content01.jpg");
}
.page-business .business-item-img.--02 {
  background-image: url("/wp-content/themes/proport/assets/img/business-content02.jpg");
}
.page-business .business-item-img.--03 {
  background-image: url("/wp-content/themes/proport/assets/img/business-content03.jpg");
}
.page-business .business-item-img.--04 {
  background-image: url("/wp-content/themes/proport/assets/img/business-content04.jpg");
}
.page-business .business-item-img.--05 {
  background-image: url("/wp-content/themes/proport/assets/img/business-content05.jpg");
}
.page-business .business-item-img.--06 {
  background-image: url("/wp-content/themes/proport/assets/img/business-content06.jpg");
}
/* 20231230 sasak add */
.page-business .business-item-img-sp {
  display: none;
}
.page-business .business-item-img-sp.--01 {
  background-image: url("/wp-content/themes/proport/assets/img/business-content01.jpg");
}
.page-business .business-item-img-sp.--02 {
  background-image: url("/wp-content/themes/proport/assets/img/business-content02.jpg");
  margin-left: auto;
}
.page-business .business-item-img-sp.--03 {
  background-image: url("/wp-content/themes/proport/assets/img/business-content03.jpg");
}
.page-business .business-item-img-sp.--04 {
  background-image: url("/wp-content/themes/proport/assets/img/business-content04.jpg");
  margin-left: auto;
}
.page-business .business-item-img-sp.--05 {
  background-image: url("/wp-content/themes/proport/assets/img/business-content05.jpg");
}
.page-business .business-item-img-sp.--06 {
  background-image: url("/wp-content/themes/proport/assets/img/business-content06.jpg");
  margin-left: auto;
}
@media screen and (max-width: 480px) {
  /* 20231230 sasak add */
  .page-business .business-item-img-sp {
    aspect-ratio: 16/9;
    width: var(--element-width);
    max-width: 606px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
  }
  .page-business .business-item-img {
    display: none;
  }
  /* 20231230 sasak end */
}
/* 20231230 sasak end */
.page-business .business-head {
  position: relative;
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  gap: 4px 32px;
  color: #005bab;
  font-weight: 400;
  padding-bottom: 24px;
}
@media screen and (max-width: 480px) {
  .page-business .business-head {
    padding-bottom: 16px;
  }
}
.page-business .business-head-main {
  font-size: clamp(1.25rem, 0.961rem + 1.23vw, 1.75rem);
}
.page-business .business-head-sub {
  font-size: clamp(0.875rem, 0.731rem + 0.62vw, 1.125rem);
}
.page-business .business-head::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  background: #d7d7d7;
}
.page-business .business-desc {
  line-height: 1.8;
  color: #111;
  margin-top: 24px;
  font-size: clamp(0.875rem, 0.658rem + 0.92vw, 1.25rem);
}
@media screen and (max-width: 480px) {
  .page-business .business-desc {
    margin-top: 16px;
  }
}
.page-business .feature-item:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (max-width: 480px) {
  .page-business .feature-item:not(:last-child) {
    margin-bottom: 32px;
  }
}
.page-business .feature-head {
  position: relative;
  font-weight: 400;
  font-size: clamp(1.125rem, 0.908rem + 0.92vw, 1.5rem);
  padding: 0 24px 24px;
}
@media screen and (max-width: 480px) {
  .page-business .feature-head {
    padding-bottom: 16px;
  }
}
.page-business .feature-head::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  background: #005bab;
}
.page-business .feature-desc {
  line-height: 1.6;
  font-size: clamp(0.875rem, 0.658rem + 0.92vw, 1.25rem);
  margin-top: 24px;
  padding: 0 24px;
}
@media screen and (max-width: 480px) {
  .page-business .feature-desc {
    margin-top: 16px;
  }
}
.page-business .group-list-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  border: 2px solid #ebebeb;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.25);
  padding: 48px;
}
@media screen and (max-width: 1023px) {
  .page-business .group-list-item {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .page-business .group-list-item {
    padding: 24px 16px;
  }
}
.page-business .group-list-item:not(:last-child) {
  margin-bottom: 32px;
}
.page-business .group-name {
  font-weight: 400;
  font-size: clamp(1.25rem, 0.961rem + 1.23vw, 1.75rem);
}
.page-business .group-detail {
  line-height: 1.6;
  font-size: clamp(0.875rem, 0.658rem + 0.92vw, 1.25rem);
  margin-top: 24px;
}
.page-business .group-img {
  align-self: center;
  position: relative;
  width: 100%;
  max-width: 460px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: auto;
  margin-left: auto;
}
.page-business .group-img.--mitsubachi {
  height: 150px;
  background-image: url("/wp-content/themes/proport/assets/img/mitsubachi-logo.png");
}
.page-business .group-img.--prohome {
  height: 141px;
  background-image: url("/wp-content/themes/proport/assets/img/prohome-logo.png");
}
.page-business .page-image {
  background-image: url("/wp-content/themes/proport/assets/img/page-business-img.jpg");
}
.page-company {
  padding-top: var(--header-height);
}
.page-company-item {
  margin-top: 80px;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .page-company-item {
    margin-top: 48px;
    margin-bottom: 60px;
  }
}
.page-company .info-content {
  display: grid;
  grid-template-columns: minmax(160px, 24%) 1fr;
  gap: 16px;
  width: 100%;
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .page-company .info-content {
    grid-template-columns: minmax(0, 1fr);
  }
}
.page-company .info-content:not(:last-child) {
  margin-bottom: 48px;
}
.page-company .info-head {
  align-self: flex-start;
  position: relative;
  font-weight: 400;
  font-size: 20px;
  padding-bottom: 12px;
}
.page-company .info-head::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  max-width: 120px;
  height: 2px;
  background: #005bab;
}
.page-company .info-menu {
  border: 1px solid #a1a1a1;
}
.page-company .info-item {
  display: grid;
  grid-template-columns: minmax(96px, 24%) 1fr;
}
.page-company .info-item:not(:last-child) {
  border-bottom: 1px solid #a1a1a1;
}
.page-company .info-item-head {
  font-size: clamp(0.875rem, 0.658rem + 0.92vw, 1.25rem);
  padding: 8px;
  border-right: 1px solid #a1a1a1;
}
.page-company .info-item-content {
  font-size: clamp(0.875rem, 0.658rem + 0.92vw, 1.25rem);
  padding: 8px;
}
/* 20240121 sasaki add */
.page-company .info-item-content-president{
  font-size: clamp(0.875rem, 0.658rem + 0.92vw, 1.25rem);
  padding: 8px;
  font-family: Yuji Syuku;
}
/* 20240121 sasaki end */
.page-company .history-menu {
  position: relative;
  width: 100%;
  max-width: 928px;
  margin-right: auto;
  margin-left: auto;
}
.page-company .history-menu::before {
  position: absolute;
  top: 8px;
  bottom: -8px;
  left: 8px;
  content: "";
  width: 4px;
  background: #d9d9d9;
}
.page-company .history-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(72px, 20%) 1fr;
  -moz-column-gap: 8px;
       column-gap: 8px;
  font-size: clamp(0.875rem, 0.658rem + 0.92vw, 1.25rem);
  padding-left: 36px;
}
.page-company .history-item:not(:last-child) {
  margin-bottom: 32px;
}
@media screen and (max-width: 599px) {
  .page-company .history-item:not(:last-child) {
    margin-bottom: 16px;
  }
}
.page-company .history-item::before {
  position: absolute;
  top: 6px;
  left: 0;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("/wp-content/themes/proport/assets/img/history-item-circle.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1023px) {
  .page-company .history-item::before {
    top: 4px;
  }
}
@media screen and (max-width: 480px) {
  .page-company .history-item::before {
    top: 2px;
  }
}
.page-company .sec-title {
  flex-basis: 100%;
  text-align: center;
}
.page-company .sec-title.--jp {
  display: block;
}
.page-company .sec-title.--jp::after {
  display: none;
}
.page-company .sec-title-wrap {
  display: flex;
  flex-flow: row wrap;
}
.page-contact {
  padding-top: var(--header-height);
}
.page-contact .contact-menu {
  width: 100%;
  max-width: 768px;
  margin-right: auto;
  margin-left: auto;
}
.page-contact .contact-item {
  display: grid;
  grid-template-columns: minmax(120px, 24%) 1fr;
  gap: 4px 8px;
}
@media screen and (max-width: 480px) {
  .page-contact .contact-item {
    grid-template-columns: minmax(0, 1fr);
  }
}
.page-contact .contact-item:not(:last-child) {
  margin-bottom: 16px;
}
.page-contact .contact-item-head {
  align-self: flex-start;
}
.page-contact .contact-bottomer {
  position: relative;
  width: 100%;
  max-width: 768px;
  border: 1px solid #d9d9d9;
  background: #f5f4f5;
  margin-top: 48px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 16px;
  padding: 32px;
}
@media screen and (max-width: 480px) {
  .page-contact .contact-bottomer {
    margin-top: 24px;
    padding: 24px 16px;
  }
}
.page-contact .contact-submit {
  position: relative;
  margin-top: 16px;
}
.page-contact .page-oview {
  aspect-ratio: initial;
  min-height: initial;
  padding: 48px 0;
}
.page-contact .page-title {
  text-align: center;
  color: #005bab;
}
.page-contact .page-title.--jp {
  order: 1;
  margin-bottom: 4px;
}
.page-contact .page-title.--en {
  order: 2;
  margin-bottom: 0;
}
.page-contact .page-title-wrap {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
}
.page-contact .sec-content {
  margin-top: 0;
  margin-bottom: 60px;
}
.page-policy {
  padding-top: var(--header-height);
}
.page-policy .policy-desc {
  width: 100%;
  max-width: 1080px;
  line-height: 1.6;
  font-size: 85%;
  margin-right: auto;
  margin-left: auto;
}
.page-policy .policy-menu {
  width: 100%;
  max-width: 768px;
  margin-top: 48px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 48px;
}
.page-policy .policy-item:not(:last-child) {
  margin-bottom: 32px;
}
.page-policy .policy-head {
  position: relative;
  color: #005bab;
  padding-bottom: 8px;
}
.page-policy .policy-head::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  background: #d7d7d7;
}
.page-policy .policy-content {
  line-height: 1.8;
  font-size: 85%;
  margin-top: 8px;
  padding-left: 16px;
}
.page-policy .page-oview {
  aspect-ratio: initial;
  min-height: initial;
  padding: 48px 0;
}
.page-policy .page-title {
  text-align: center;
  color: #005bab;
}
.page-policy .page-title.--jp {
  order: 1;
  margin-bottom: 4px;
}
.page-policy .page-title.--en {
  order: 2;
  margin-bottom: 0;
}
.page-policy .page-title-wrap {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
}
.page-policy .sec-content {
  margin-top: 0;
}
.page-single {
  padding-top: var(--header-height);
}
.page-single .post-main {
  width: 100%;
  background: #f5f4f5;
  padding-top: 60px;
  padding-bottom: 80px;
}
.page-single .post-container {
  width: 100%;
  max-width: var(--element-maxWidth);
  background: #fff;
  margin-right: auto;
  margin-left: auto;
  padding: 8px 0 36px;
}
.page-single .post-head {
  position: relative;
  width: var(--element-width);
  max-width: 854px;
  line-height: 1.3;
  margin-right: auto;
  margin-left: auto;
  padding-top: 24px;
  padding-bottom: 24px;
}
.page-single .post-head::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: #d9d9d9;
}
.page-single .post-content {
  position: relative;
  width: var(--element-width);
  max-width: 854px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 24px;
}
.page-single .post-title {
  font-size: 24px;
  color: #005bab;
}
@media screen and (max-width: 767px) {
  .page-single .post-title {
    font-size: 21px;
  }
}
@media screen and (max-width: 480px) {
  .page-single .post-title {
    font-size: 18px;
  }
}
.page-single .post-date {
  margin-bottom: 6px;
}

.sec-title {
  display: block;
  color: #005bab;
}
.sec-title-wrap {
  width: var(--element-width);
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}
.sec-title.--jp {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.086rem + 1.77vw, 2.5rem);
}
.sec-title.--jp::after {
  content: "";
  width: 100px;
  height: 4px;
  background: #005bab;
  margin-left: 16px;
}
@media screen and (max-width: 767px) {
  .sec-title.--jp::after {
    width: 72px;
  }
}
@media screen and (max-width: 480px) {
  .sec-title.--jp::after {
    width: 48px;
    height: 3px;
  }
}
.sec-title.--en {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(0.875rem, 0.72rem + 0.66vw, 1.25rem);
  text-transform: uppercase;
}
.sec-content {
  position: relative;
  width: var(--element-width);
  max-width: 1280px;
  margin-top: 32px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 480px) {
  .sec-content {
    margin-top: 16px;
  }
}

.page-oview {
  aspect-ratio: 36/13;
  position: relative;
  width: 100%;
  max-width: 1440px;
  min-height: 210px;
  margin-right: auto;
  margin-left: auto;
}
.page-title {
  flex-basis: 100%;
  line-height: 1.3;
  color: #fff;
}
.page-title.--jp {
  /* order: 2; */
  font-size: clamp(1.5rem, 0.633rem + 3.7vw, 3rem);
  text-align: center;
}
.page-title.--en {
  /* order: 1; */
  text-transform: uppercase;
  font-family: "Montserrat", Arial;
  font-size: 14px;
  margin-bottom: 6px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .page-title.--en {
    font-size: 12px;
  }
}
.page-title-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-flow: row wrap;
  width: var(--element-width);
  max-width: var(--element-maxWidth);
  margin-right: auto;
  margin-left: auto;
}
.page-image {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (hover: hover) {
  .hover-darken:hover {
    filter: brightness(96%);
    transition: filter 0.2s ease-out;
  }
  .hover-thin:hover {
    filter: opacity(0.8);
    transition: filter 0.2s ease-out;
  }
  .hover-scaleup:hover {
    transform: scale(106%);
    transition: transform 0.6s ease-out;
  }
  .linkbtn:hover {
    filter: brightness(96%);
    transition: filter 0.2s ease-out;
  }
}
.paddle-wrap {
  position: relative;
  overflow: hidden;
}
.paddle-content-wrap {
  /* overflow-x: scroll; */
}
.paddle-btn {
  z-index: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24px;
  background: rgba(0, 0, 0, 0.4);
  transform: none;
  transition: 0.2s transform ease-out;
  cursor: pointer;
}
@media (hover: hover) {
  .paddle-btn:hover {
    background: rgba(0, 0, 0, 0.48);
    transition: 0.2s background ease-out;
  }
  .paddle-btn:hover::after {
    opacity: 0.8;
    transition: 0.2s opacity ease-out;
  }
}
.paddle-btn::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  font-size: 14px;
  color: #fff;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
@keyframes toLeft {
  0% {
    transform: translateX(0) translateY(-50%);
  }
  100% {
    transform: translateX(-4px) translateY(-50%);
  }
}
@keyframes toRight {
  0% {
    transform: translateX(0) translateY(-50%);
  }
  100% {
    transform: translateX(4px) translateY(-50%);
  }
}
.paddle-btn.left {
  left: 0;
}
.paddle-btn.left::after {
  left: 6px;
  content: "\f053";
  animation-name: toLeft;
}
.paddle-btn.left:disabled {
  transform: translateX(-24px);
}
.paddle-btn.right {
  right: 0;
}
.paddle-btn.right::after {
  right: 6px;
  content: "\f054";
  animation-name: toRight;
}
.paddle-btn.right:disabled {
  transform: translateX(24px);
}
.paddle-btn:disabled {
  transition: 0.2s transform ease-out;
}

.wpcf7 .required {
  display: inline-block;
  font-weight: 700;
  font-size: 11px;
  background: #e6eb00;
  color: #000;
  margin-left: 8px;
  padding: 2px 8px;
}
.wpcf7-text {
  width: 100%;
  height: 48px;
  font-size: 16px;
  background: #f5f4f5;
  border: 1px solid #d9d9d9;
  border-radius: 0;
  padding: 0 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.wpcf7-textarea {
  width: 100% !important;
  font-size: 16px;
  background: #f5f4f5;
  border: 1px solid #d9d9d9;
  padding: 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}
.wpcf7-spinner {
  z-index: 1;
  position: absolute !important;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  border-radius: 50%;
  margin: 0 !important;
}
.wpcf7-acceptance input[type=checkbox] {
  display: none;
}
.wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background: #005bab;
  border: none;
}
.wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  position: absolute;
  top: 1px;
  left: 8px;
  transform: rotate(45deg);
  content: "";
  display: block;
  width: 10px;
  height: 16px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.wpcf7-acceptance .wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 24px;
  font-weight: 400;
  font-size: 80%;
  color: #000;
  padding-left: 36px;
}
.wpcf7-acceptance .wpcf7-list-item-label > span > a {
  text-decoration: underline;
  color: #000;
}
.wpcf7-acceptance .wpcf7-list-item-label::before {
  align-self: flex-start;
  flex-shrink: 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 1px solid #d9d9d9;
  background: #fff;
  transition: background-color 0.2s;
  margin-right: 8px;
}
.wpcf7-acceptance .wpcf7-list-item-label::after {
  content: "";
}
.wpcf7-submit {
  position: relative;
  width: 100%;
  max-width: 280px;
  height: 48px;
  border: none;
  background: #005bab;
  color: #fff;
  margin: 0 auto;
}
.wpcf7-submit:disabled {
  opacity: 0.8;
}
.wpcf7-form.sent .wpcf7-response-output {
  background: lightgreen;
  color: #000;
}
.wpcf7-form.failed .wpcf7-response-output, .wpcf7-form.aborted .wpcf7-response-output {
  background: red;
  color: #fff;
}
.wpcf7-form.spam .wpcf7-response-output {
  background: pink;
  color: #000;
}
.wpcf7-form.invalid .wpcf7-response-output, .wpcf7-form.unaccepted .wpcf7-response-output, .wpcf7-form.payment-required .wpcf7-response-output {
  background: #e6eb00;
  color: #000;
}
.wpcf7-response-output {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.3;
  border-radius: 5px;
  border: none !important;
  font-style: italic;
  font-size: 14px;
  margin-top: 16px !important;
  margin-right: auto !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  padding: 8px 16px !important;
}
/* 実績詳細ページ */
body main.post__works {
  padding-top: var(--header-height);
}
body main.post__works section#works {
  background: #fff;
}
body main.post__works section#works > div.post__main {
  position: relative;
  min-height: 280px;
}
body main.post__works div.post__thumb {
  position: relative;
  width: 100%;
  max-width: 854px;
  max-height: 340px;
  min-height: 280px;
  margin: 0 auto;
  overflow: hidden;
}
body main.post__works div.post__thumb > img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  opacity: 0.3;
}
body main.post__works div.post__thumb::after {
  content: "";
  display: block;
  padding-top: 56.25%;
}
body main.post__works div.post__title {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  max-width: 854px;
  text-align: center;
  margin: 0 auto;
}
body main.post__works div.post__title > h2.post__title {
  font-size: clamp(16px, 2.865vw, 22px);
  font-style: initial;
  color: #000;
}
body main.post__works div.post__title > span.post__date {
  font-size: 14px;
  color: #000;
}
body main.post__works div.post__body {
  width: 95%;
  max-width: 854px;
  line-height: 1.8;
  background: #fff;
  color: #000;
  font-size: clamp(14px, 3.33vw, 16px);
  overflow-wrap: break-word;
  word-wrap: break-word;
  margin: 0 auto;
  padding: 32px 0 54px;
}
body main.post__works div.post__body .aligncenter {
  margin: 0 auto !important;
}
body main.post__works div.post__body .alignright {
  margin-left: auto !important;
}
body main.post__works div.post__body .alignleft {
  margin-right: auto !important;
}
body main.post__works div.post__body a {
  color: #02abf5;
}
body main.post__works div.post__body img {
  display: block;
  width: auto;
  max-width: 480px;
  height: auto;
}
body main.post__works div.post__body h1,
body main.post__works div.post__body h2,
body main.post__works div.post__body h3,
body main.post__works div.post__body h4,
body main.post__works div.post__body h5,
body main.post__works div.post__body h6 {
  font-weight: 700;
  font-size: 100%;
  padding: 0.5em 1em;
}
body main.post__works div.post__body h1 {
  background: #000;
  color: #fff;
}
body main.post__works div.post__body h2 {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: 700;
  font-style: italic;
}
body main.post__works div.post__body h3 {
  background: rgba(0, 0, 0, 0.2);
}
body main.post__works div.post__body h4,
body main.post__works div.post__body h5,
body main.post__works div.post__body h6 {
  position: relative;
  background: transparent;
}
body main.post__works div.post__body h4::before,
body main.post__works div.post__body h5::before,
body main.post__works div.post__body h6::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  width: 4px;
}
body main.post__works div.post__body h4::before {
  background: #000;
}
body main.post__works div.post__body h5::before {
  background: rgba(0, 0, 0, 0.5);
}
body main.post__works div.post__body h6::before {
  background: rgba(0, 0, 0, 0.2);
}
body main.post__works div.post__body ul {
  list-style: disc;
  padding: revert;
}
body main.post__works div.post__body ol {
  padding: revert;
}
body main.post__works div.post__body blockquote {
  position: relative;
  font-style: italic;
  border: 1px solid #000;
  background: transparent;
  padding: 1.5em 1em 1.5em 60px;
}
body main.post__works div.post__body blockquote cite {
  display: block;
  text-align: right;
  color: #000;
  font-size: 85%;
}
body main.post__works div.post__body blockquote::before {
  display: inline-block;
  position: absolute;
  top: 16px;
  left: 15px;
  content: "\f10d";
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: 30px;
  color: #000;
}
body main.archive__works section#works {
  background: #fff;
}
/*# sourceMappingURL=style.css.map */